From 73b0d998ff03767cead97c4c51b5ac3d37ff5f4d Mon Sep 17 00:00:00 2001 From: Lycs-D <139197676+Lycs-D@users.noreply.github.com> Date: Tue, 9 Apr 2024 09:20:19 +0800 Subject: [PATCH] [tree_sitter] Add sum type to tree node (#87) --- tree_sitter_v/bindings/node_types.v | 2 + tree_sitter_v/grammar.js | 33 +- tree_sitter_v/src/grammar.json | 244 +- tree_sitter_v/src/node-types.json | 35 +- tree_sitter_v/src/parser.c | 402825 ++++++++------- .../test/corpus/type_declaration.txt | 118 +- tree_sitter_v/test/corpus/types.txt | 35 +- 7 files changed, 204070 insertions(+), 199222 deletions(-) diff --git a/tree_sitter_v/bindings/node_types.v b/tree_sitter_v/bindings/node_types.v index 08c3bcb3..8f43717f 100644 --- a/tree_sitter_v/bindings/node_types.v +++ b/tree_sitter_v/bindings/node_types.v @@ -156,6 +156,7 @@ pub enum NodeType { struct_declaration struct_field_declaration struct_field_scope + sum_type thread_type type_declaration type_initializer @@ -464,6 +465,7 @@ const node_type_name_to_enum = { 'struct_declaration': NodeType.struct_declaration 'struct_field_declaration': NodeType.struct_field_declaration 'struct_field_scope': NodeType.struct_field_scope + 'sum_type': NodeType.sum_type 'thread_type': NodeType.thread_type 'type_declaration': NodeType.type_declaration 'type_initializer': NodeType.type_initializer diff --git a/tree_sitter_v/grammar.js b/tree_sitter_v/grammar.js index 13e17609..19cb3c49 100644 --- a/tree_sitter_v/grammar.js +++ b/tree_sitter_v/grammar.js @@ -104,7 +104,6 @@ module.exports = grammar({ [$.fixed_array_type, $.literal], [$.reference_expression, $.type_reference_expression], [$.is_expression], - [$._type_union_list], [$._expression_without_blocks, $.element_list], ], @@ -209,19 +208,18 @@ module.exports = grammar({ _global_var_value: ($) => seq('=', field('value', $._expression)), type_declaration: ($) => - seq( - optional($.visibility_modifiers), - 'type', - field('name', $.identifier), - optional(field('generic_parameters', $.generic_parameters)), - '=', - field('types', $._type_union_list), + prec.right( + PREC.resolve, + seq( + optional($.visibility_modifiers), + 'type', + field('name', $.identifier), + optional(field('generic_parameters', $.generic_parameters)), + '=', + field('type', choice($.sum_type, $.plain_type)), + ), ), - // int | string | Foo - _type_union_list: ($) => - seq($.plain_type, repeat(seq(optional(terminator), '|', $.plain_type))), - function_declaration: ($) => prec.right( PREC.resolve, @@ -534,7 +532,7 @@ module.exports = grammar({ ), type_initializer: ($) => - prec( + prec.right( PREC.type_initializer, seq(field('type', $.plain_type), field('body', $.type_initializer_body)), ), @@ -957,6 +955,12 @@ module.exports = grammar({ // ==================== TYPES ==================== + // int | string | Foo + sum_type: ($) => + prec.right( + seq($.plain_type, repeat1(seq(optional(/\s+/), token.immediate('|'), $.plain_type))), + ), + plain_type: ($) => prec.right( PREC.primary, @@ -1003,8 +1007,7 @@ module.exports = grammar({ field('element', $.plain_type), ), - array_type: ($) => - prec(PREC.primary, prec.dynamic(2, seq('[', ']', field('element', $.plain_type)))), + array_type: ($) => prec.right(PREC.primary, seq('[', ']', field('element', $.plain_type))), variadic_type: ($) => seq('...', $.plain_type), diff --git a/tree_sitter_v/src/grammar.json b/tree_sitter_v/src/grammar.json index 0d35e8d7..603b249e 100644 --- a/tree_sitter_v/src/grammar.json +++ b/tree_sitter_v/src/grammar.json @@ -684,111 +684,74 @@ ] }, "type_declaration": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "visibility_modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "type" - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "generic_parameters", - "content": { + "type": "PREC_RIGHT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { "type": "SYMBOL", - "name": "generic_parameters" + "name": "visibility_modifiers" + }, + { + "type": "BLANK" } - }, - { - "type": "BLANK" + ] + }, + { + "type": "STRING", + "value": "type" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" } - ] - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "types", - "content": { - "type": "SYMBOL", - "name": "_type_union_list" - } - } - ] - }, - "_type_union_list": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "plain_type" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", + }, + { + "type": "CHOICE", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\n" - }, - { - "type": "STRING", - "value": "\r" - }, - { - "type": "STRING", - "value": "\r\n" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "|" + "type": "FIELD", + "name": "generic_parameters", + "content": { + "type": "SYMBOL", + "name": "generic_parameters" + } }, { - "type": "SYMBOL", - "name": "plain_type" + "type": "BLANK" } ] + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "sum_type" + }, + { + "type": "SYMBOL", + "name": "plain_type" + } + ] + } } - } - ] + ] + } }, "function_declaration": { "type": "PREC_RIGHT", @@ -2886,7 +2849,7 @@ ] }, "type_initializer": { - "type": "PREC", + "type": "PREC_RIGHT", "value": 8, "content": { "type": "SEQ", @@ -6799,6 +6762,50 @@ ] } }, + "sum_type": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "plain_type" + }, + { + "type": "REPEAT1", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "\\s+" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "|" + } + }, + { + "type": "SYMBOL", + "name": "plain_type" + } + ] + } + } + ] + } + }, "plain_type": { "type": "PREC_RIGHT", "value": 7, @@ -7070,32 +7077,28 @@ ] }, "array_type": { - "type": "PREC", + "type": "PREC_RIGHT", "value": 7, "content": { - "type": "PREC_DYNAMIC", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "STRING", - "value": "]" - }, - { - "type": "FIELD", - "name": "element", - "content": { - "type": "SYMBOL", - "name": "plain_type" - } + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "STRING", + "value": "]" + }, + { + "type": "FIELD", + "name": "element", + "content": { + "type": "SYMBOL", + "name": "plain_type" } - ] - } + } + ] } }, "variadic_type": { @@ -8502,9 +8505,6 @@ [ "is_expression" ], - [ - "_type_union_list" - ], [ "_expression_without_blocks", "element_list" diff --git a/tree_sitter_v/src/node-types.json b/tree_sitter_v/src/node-types.json index de1ff904..fbdacc5b 100644 --- a/tree_sitter_v/src/node-types.json +++ b/tree_sitter_v/src/node-types.json @@ -3886,6 +3886,21 @@ "named": true, "fields": {} }, + { + "type": "sum_type", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "plain_type", + "named": true + } + ] + } + }, { "type": "thread_type", "named": true, @@ -3925,29 +3940,17 @@ } ] }, - "types": { - "multiple": true, + "type": { + "multiple": false, "required": true, "types": [ - { - "type": "\n", - "named": false - }, - { - "type": "\r", - "named": false - }, - { - "type": "\r\n", - "named": false - }, { "type": "plain_type", "named": true }, { - "type": "|", - "named": false + "type": "sum_type", + "named": true } ] } diff --git a/tree_sitter_v/src/parser.c b/tree_sitter_v/src/parser.c index b005a879..1cece081 100644 --- a/tree_sitter_v/src/parser.c +++ b/tree_sitter_v/src/parser.c @@ -13,13 +13,13 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 4635 -#define LARGE_STATE_COUNT 1610 -#define SYMBOL_COUNT 360 +#define STATE_COUNT 4708 +#define LARGE_STATE_COUNT 1650 +#define SYMBOL_COUNT 362 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 144 +#define TOKEN_COUNT 146 #define EXTERNAL_TOKEN_COUNT 0 -#define FIELD_COUNT 46 +#define FIELD_COUNT 45 #define MAX_ALIAS_SEQUENCE_LENGTH 9 #define PRODUCTION_ID_COUNT 155 @@ -49,37 +49,37 @@ enum ts_symbol_identifiers { anon_sym_EQ = 23, anon_sym___global = 24, anon_sym_type = 25, - anon_sym_PIPE = 26, - anon_sym_fn = 27, - anon_sym_PLUS = 28, - anon_sym_DASH = 29, - anon_sym_STAR = 30, - anon_sym_SLASH = 31, - anon_sym_PERCENT = 32, - anon_sym_LT = 33, - anon_sym_GT = 34, - anon_sym_EQ_EQ = 35, - anon_sym_BANG_EQ = 36, - anon_sym_LT_EQ = 37, - anon_sym_GT_EQ = 38, - anon_sym_DOT_DOT_DOT = 39, - anon_sym_LBRACK = 40, - anon_sym_LT2 = 41, - anon_sym_RBRACK = 42, - anon_sym_struct = 43, - anon_sym_union = 44, - anon_sym_pub = 45, - anon_sym_mut = 46, - anon_sym_COLON = 47, - anon_sym_enum = 48, - anon_sym_interface = 49, - anon_sym_PLUS_PLUS = 50, - anon_sym_DASH_DASH = 51, - anon_sym_QMARK = 52, - anon_sym_BANG = 53, - anon_sym_go = 54, - anon_sym_spawn = 55, - anon_sym_json_DOTdecode = 56, + anon_sym_fn = 26, + anon_sym_PLUS = 27, + anon_sym_DASH = 28, + anon_sym_STAR = 29, + anon_sym_SLASH = 30, + anon_sym_PERCENT = 31, + anon_sym_LT = 32, + anon_sym_GT = 33, + anon_sym_EQ_EQ = 34, + anon_sym_BANG_EQ = 35, + anon_sym_LT_EQ = 36, + anon_sym_GT_EQ = 37, + anon_sym_DOT_DOT_DOT = 38, + anon_sym_LBRACK = 39, + anon_sym_LT2 = 40, + anon_sym_RBRACK = 41, + anon_sym_struct = 42, + anon_sym_union = 43, + anon_sym_pub = 44, + anon_sym_mut = 45, + anon_sym_COLON = 46, + anon_sym_enum = 47, + anon_sym_interface = 48, + anon_sym_PLUS_PLUS = 49, + anon_sym_DASH_DASH = 50, + anon_sym_QMARK = 51, + anon_sym_BANG = 52, + anon_sym_go = 53, + anon_sym_spawn = 54, + anon_sym_json_DOTdecode = 55, + anon_sym_PIPE = 56, anon_sym_LBRACK2 = 57, anon_sym_TILDE = 58, anon_sym_CARET = 59, @@ -149,244 +149,246 @@ enum ts_symbol_identifiers { anon_sym_static = 123, anon_sym_volatile = 124, anon_sym_shared = 125, - anon_sym_map_LBRACK = 126, - anon_sym_chan = 127, - anon_sym_thread = 128, - anon_sym_atomic = 129, - anon_sym_assert = 130, - anon_sym_defer = 131, - anon_sym_goto = 132, - anon_sym_break = 133, - anon_sym_continue = 134, - anon_sym_return = 135, - anon_sym_DOLLARfor = 136, - anon_sym_for = 137, - anon_sym_DOT_DOT = 138, - anon_sym_POUND = 139, - aux_sym_hash_statement_token1 = 140, - anon_sym_asm = 141, - aux_sym__content_block_token1 = 142, - anon_sym_AT_LBRACK = 143, - sym_source_file = 144, - sym_shebang = 145, - sym_line_comment = 146, - sym_block_comment = 147, - sym_module_clause = 148, - sym_import_list = 149, - sym_import_declaration = 150, - sym_import_spec = 151, - sym_import_path = 152, - sym_import_name = 153, - sym_import_alias = 154, - sym_selective_import_list = 155, - sym_const_declaration = 156, - sym_const_definition = 157, - sym_global_var_declaration = 158, - sym_global_var_definition = 159, - sym__global_var_value = 160, - sym_type_declaration = 161, - sym__type_union_list = 162, - sym_function_declaration = 163, - sym_static_method_declaration = 164, - sym_static_receiver = 165, - sym__function_name = 166, - sym_overridable_operator = 167, - sym_receiver = 168, - sym_signature = 169, - sym_parameter_list = 170, - sym_parameter_declaration = 171, - sym_type_parameter_list = 172, - sym_type_parameter_declaration = 173, - sym_generic_parameters = 174, - sym_generic_parameter = 175, - sym_struct_declaration = 176, - sym__struct_body = 177, - sym_struct_field_scope = 178, - sym_struct_field_declaration = 179, - sym__struct_field_definition = 180, - sym_embedded_definition = 181, - sym_enum_declaration = 182, - sym_enum_backed_type = 183, - sym__enum_body = 184, - sym_enum_field_definition = 185, - sym_interface_declaration = 186, - sym__interface_body = 187, - sym_interface_method_definition = 188, - sym__expression = 189, - sym__expression_without_blocks = 190, - sym__expression_with_blocks = 191, - sym_strictly_expression_list = 192, - sym_inc_expression = 193, - sym_dec_expression = 194, - sym_or_block_expression = 195, - sym_option_propagation_expression = 196, - sym_result_propagation_expression = 197, - sym_anon_struct_value_expression = 198, - sym_go_expression = 199, - sym_spawn_expression = 200, - sym_parenthesized_expression = 201, - sym_call_expression = 202, - sym_type_parameters = 203, - sym_argument_list = 204, - sym_short_lambda = 205, - sym_argument = 206, - sym_special_argument_list = 207, - sym_type_initializer = 208, - sym_type_initializer_body = 209, - sym_element_list = 210, - sym_short_element_list = 211, - sym_keyed_element = 212, - sym_function_literal = 213, - sym_capture_list = 214, - sym_capture = 215, - sym_reference_expression = 216, - sym_type_reference_expression = 217, - sym_unary_expression = 218, - sym_receive_expression = 219, - sym_binary_expression = 220, - sym_as_type_cast_expression = 221, - sym_or_block = 222, - sym__max_group = 223, - sym_literal = 224, - sym_spread_expression = 225, - sym_map_init_expression = 226, - sym_map_keyed_element = 227, - sym_array_creation = 228, - sym_fixed_array_creation = 229, - sym_selector_expression = 230, - sym_compile_time_selector_expression = 231, - sym_index_expression = 232, - sym_slice_expression = 233, - sym_if_expression = 234, - sym_else_branch = 235, - sym_compile_time_if_expression = 236, - sym_is_expression = 237, - sym_in_expression = 238, - sym_enum_fetch = 239, - sym_match_expression = 240, - sym_match_arms = 241, - sym_match_arm = 242, - sym_match_expression_list = 243, - sym_match_arm_type = 244, - sym_match_else_arm_clause = 245, - sym_select_expression = 246, - sym_select_arm = 247, - sym_select_arm_statement = 248, - sym__select_arm_assignment_statement = 249, - sym_select_var_declaration = 250, - sym_select_else_arn_clause = 251, - sym_lock_expression = 252, - sym_unsafe_expression = 253, - sym_sql_expression = 254, - sym_interpreted_string_literal = 255, - sym_c_string_literal = 256, - sym_raw_string_literal = 257, - sym_string_interpolation = 258, - sym_format_specifier = 259, - sym_visibility_modifiers = 260, - sym_mutability_modifiers = 261, - sym_mutable_identifier = 262, - sym_mutable_expression = 263, - sym_identifier_list = 264, - sym_expression_list = 265, - sym_expression_without_blocks_list = 266, - sym_plain_type = 267, - sym__plain_type_without_special = 268, - sym_anon_struct_type = 269, - sym_multi_return_type = 270, - sym_result_type = 271, - sym_option_type = 272, - sym_qualified_type = 273, - sym_fixed_array_type = 274, - sym_array_type = 275, - sym_pointer_type = 276, - sym_wrong_pointer_type = 277, - sym_map_type = 278, - sym_channel_type = 279, - sym_shared_type = 280, - sym_thread_type = 281, - sym_atomic_type = 282, - sym_generic_type = 283, - sym_function_type = 284, - sym__statement_list = 285, - sym__statement = 286, - sym_simple_statement = 287, - sym_assert_statement = 288, - sym_append_statement = 289, - sym_send_statement = 290, - sym_var_declaration = 291, - sym_var_definition_list = 292, - sym_var_definition = 293, - sym_assignment_statement = 294, - sym_block = 295, - sym_defer_statement = 296, - sym_label_reference = 297, - sym_goto_statement = 298, - sym_break_statement = 299, - sym_continue_statement = 300, - sym_return_statement = 301, - sym_label_definition = 302, - sym_labeled_statement = 303, - sym_empty_labeled_statement = 304, - sym_compile_time_for_statement = 305, - sym_for_statement = 306, - sym_is_clause = 307, - sym_range_clause = 308, - sym_for_clause = 309, - sym__definite_range = 310, - sym_range = 311, - sym_hash_statement = 312, - sym_asm_statement = 313, - sym__content_block = 314, - sym_attributes = 315, - sym_attribute = 316, - sym_attribute_expression = 317, - sym_if_attribute = 318, - sym__plain_attribute = 319, - sym_literal_attribute = 320, - sym_value_attribute = 321, - sym_key_value_attribute = 322, - aux_sym_source_file_repeat1 = 323, - aux_sym_block_comment_repeat1 = 324, - aux_sym_import_list_repeat1 = 325, - aux_sym_import_path_repeat1 = 326, - aux_sym_selective_import_list_repeat1 = 327, - aux_sym_const_declaration_repeat1 = 328, - aux_sym_global_var_declaration_repeat1 = 329, - aux_sym__type_union_list_repeat1 = 330, - aux_sym_parameter_list_repeat1 = 331, - aux_sym_type_parameter_list_repeat1 = 332, - aux_sym_generic_parameters_repeat1 = 333, - aux_sym__struct_body_repeat1 = 334, - aux_sym__enum_body_repeat1 = 335, - aux_sym__interface_body_repeat1 = 336, - aux_sym_strictly_expression_list_repeat1 = 337, - aux_sym_type_parameters_repeat1 = 338, - aux_sym_argument_list_repeat1 = 339, - aux_sym_short_lambda_repeat1 = 340, - aux_sym_element_list_repeat1 = 341, - aux_sym_short_element_list_repeat1 = 342, - aux_sym_capture_list_repeat1 = 343, - aux_sym_map_init_expression_repeat1 = 344, - aux_sym__array_repeat1 = 345, - aux_sym_match_arms_repeat1 = 346, - aux_sym_match_expression_list_repeat1 = 347, - aux_sym_select_expression_repeat1 = 348, - aux_sym_interpreted_string_literal_repeat1 = 349, - aux_sym_interpreted_string_literal_repeat2 = 350, - aux_sym_raw_string_literal_repeat1 = 351, - aux_sym_raw_string_literal_repeat2 = 352, - aux_sym_string_interpolation_repeat1 = 353, - aux_sym_identifier_list_repeat1 = 354, - aux_sym_expression_without_blocks_list_repeat1 = 355, - aux_sym__statement_list_repeat1 = 356, - aux_sym_var_definition_list_repeat1 = 357, - aux_sym_attributes_repeat1 = 358, - aux_sym_attribute_repeat1 = 359, - alias_sym_element = 360, - alias_sym_field_name = 361, - alias_sym_interpolation_closing = 362, - alias_sym_interpolation_expression = 363, + aux_sym_sum_type_token1 = 126, + anon_sym_PIPE2 = 127, + anon_sym_map_LBRACK = 128, + anon_sym_chan = 129, + anon_sym_thread = 130, + anon_sym_atomic = 131, + anon_sym_assert = 132, + anon_sym_defer = 133, + anon_sym_goto = 134, + anon_sym_break = 135, + anon_sym_continue = 136, + anon_sym_return = 137, + anon_sym_DOLLARfor = 138, + anon_sym_for = 139, + anon_sym_DOT_DOT = 140, + anon_sym_POUND = 141, + aux_sym_hash_statement_token1 = 142, + anon_sym_asm = 143, + aux_sym__content_block_token1 = 144, + anon_sym_AT_LBRACK = 145, + sym_source_file = 146, + sym_shebang = 147, + sym_line_comment = 148, + sym_block_comment = 149, + sym_module_clause = 150, + sym_import_list = 151, + sym_import_declaration = 152, + sym_import_spec = 153, + sym_import_path = 154, + sym_import_name = 155, + sym_import_alias = 156, + sym_selective_import_list = 157, + sym_const_declaration = 158, + sym_const_definition = 159, + sym_global_var_declaration = 160, + sym_global_var_definition = 161, + sym__global_var_value = 162, + sym_type_declaration = 163, + sym_function_declaration = 164, + sym_static_method_declaration = 165, + sym_static_receiver = 166, + sym__function_name = 167, + sym_overridable_operator = 168, + sym_receiver = 169, + sym_signature = 170, + sym_parameter_list = 171, + sym_parameter_declaration = 172, + sym_type_parameter_list = 173, + sym_type_parameter_declaration = 174, + sym_generic_parameters = 175, + sym_generic_parameter = 176, + sym_struct_declaration = 177, + sym__struct_body = 178, + sym_struct_field_scope = 179, + sym_struct_field_declaration = 180, + sym__struct_field_definition = 181, + sym_embedded_definition = 182, + sym_enum_declaration = 183, + sym_enum_backed_type = 184, + sym__enum_body = 185, + sym_enum_field_definition = 186, + sym_interface_declaration = 187, + sym__interface_body = 188, + sym_interface_method_definition = 189, + sym__expression = 190, + sym__expression_without_blocks = 191, + sym__expression_with_blocks = 192, + sym_strictly_expression_list = 193, + sym_inc_expression = 194, + sym_dec_expression = 195, + sym_or_block_expression = 196, + sym_option_propagation_expression = 197, + sym_result_propagation_expression = 198, + sym_anon_struct_value_expression = 199, + sym_go_expression = 200, + sym_spawn_expression = 201, + sym_parenthesized_expression = 202, + sym_call_expression = 203, + sym_type_parameters = 204, + sym_argument_list = 205, + sym_short_lambda = 206, + sym_argument = 207, + sym_special_argument_list = 208, + sym_type_initializer = 209, + sym_type_initializer_body = 210, + sym_element_list = 211, + sym_short_element_list = 212, + sym_keyed_element = 213, + sym_function_literal = 214, + sym_capture_list = 215, + sym_capture = 216, + sym_reference_expression = 217, + sym_type_reference_expression = 218, + sym_unary_expression = 219, + sym_receive_expression = 220, + sym_binary_expression = 221, + sym_as_type_cast_expression = 222, + sym_or_block = 223, + sym__max_group = 224, + sym_literal = 225, + sym_spread_expression = 226, + sym_map_init_expression = 227, + sym_map_keyed_element = 228, + sym_array_creation = 229, + sym_fixed_array_creation = 230, + sym_selector_expression = 231, + sym_compile_time_selector_expression = 232, + sym_index_expression = 233, + sym_slice_expression = 234, + sym_if_expression = 235, + sym_else_branch = 236, + sym_compile_time_if_expression = 237, + sym_is_expression = 238, + sym_in_expression = 239, + sym_enum_fetch = 240, + sym_match_expression = 241, + sym_match_arms = 242, + sym_match_arm = 243, + sym_match_expression_list = 244, + sym_match_arm_type = 245, + sym_match_else_arm_clause = 246, + sym_select_expression = 247, + sym_select_arm = 248, + sym_select_arm_statement = 249, + sym__select_arm_assignment_statement = 250, + sym_select_var_declaration = 251, + sym_select_else_arn_clause = 252, + sym_lock_expression = 253, + sym_unsafe_expression = 254, + sym_sql_expression = 255, + sym_interpreted_string_literal = 256, + sym_c_string_literal = 257, + sym_raw_string_literal = 258, + sym_string_interpolation = 259, + sym_format_specifier = 260, + sym_visibility_modifiers = 261, + sym_mutability_modifiers = 262, + sym_mutable_identifier = 263, + sym_mutable_expression = 264, + sym_identifier_list = 265, + sym_expression_list = 266, + sym_expression_without_blocks_list = 267, + sym_sum_type = 268, + sym_plain_type = 269, + sym__plain_type_without_special = 270, + sym_anon_struct_type = 271, + sym_multi_return_type = 272, + sym_result_type = 273, + sym_option_type = 274, + sym_qualified_type = 275, + sym_fixed_array_type = 276, + sym_array_type = 277, + sym_pointer_type = 278, + sym_wrong_pointer_type = 279, + sym_map_type = 280, + sym_channel_type = 281, + sym_shared_type = 282, + sym_thread_type = 283, + sym_atomic_type = 284, + sym_generic_type = 285, + sym_function_type = 286, + sym__statement_list = 287, + sym__statement = 288, + sym_simple_statement = 289, + sym_assert_statement = 290, + sym_append_statement = 291, + sym_send_statement = 292, + sym_var_declaration = 293, + sym_var_definition_list = 294, + sym_var_definition = 295, + sym_assignment_statement = 296, + sym_block = 297, + sym_defer_statement = 298, + sym_label_reference = 299, + sym_goto_statement = 300, + sym_break_statement = 301, + sym_continue_statement = 302, + sym_return_statement = 303, + sym_label_definition = 304, + sym_labeled_statement = 305, + sym_empty_labeled_statement = 306, + sym_compile_time_for_statement = 307, + sym_for_statement = 308, + sym_is_clause = 309, + sym_range_clause = 310, + sym_for_clause = 311, + sym__definite_range = 312, + sym_range = 313, + sym_hash_statement = 314, + sym_asm_statement = 315, + sym__content_block = 316, + sym_attributes = 317, + sym_attribute = 318, + sym_attribute_expression = 319, + sym_if_attribute = 320, + sym__plain_attribute = 321, + sym_literal_attribute = 322, + sym_value_attribute = 323, + sym_key_value_attribute = 324, + aux_sym_source_file_repeat1 = 325, + aux_sym_block_comment_repeat1 = 326, + aux_sym_import_list_repeat1 = 327, + aux_sym_import_path_repeat1 = 328, + aux_sym_selective_import_list_repeat1 = 329, + aux_sym_const_declaration_repeat1 = 330, + aux_sym_global_var_declaration_repeat1 = 331, + aux_sym_parameter_list_repeat1 = 332, + aux_sym_type_parameter_list_repeat1 = 333, + aux_sym_generic_parameters_repeat1 = 334, + aux_sym__struct_body_repeat1 = 335, + aux_sym__enum_body_repeat1 = 336, + aux_sym__interface_body_repeat1 = 337, + aux_sym_strictly_expression_list_repeat1 = 338, + aux_sym_type_parameters_repeat1 = 339, + aux_sym_argument_list_repeat1 = 340, + aux_sym_short_lambda_repeat1 = 341, + aux_sym_element_list_repeat1 = 342, + aux_sym_short_element_list_repeat1 = 343, + aux_sym_capture_list_repeat1 = 344, + aux_sym_map_init_expression_repeat1 = 345, + aux_sym__array_repeat1 = 346, + aux_sym_match_arms_repeat1 = 347, + aux_sym_match_expression_list_repeat1 = 348, + aux_sym_select_expression_repeat1 = 349, + aux_sym_interpreted_string_literal_repeat1 = 350, + aux_sym_interpreted_string_literal_repeat2 = 351, + aux_sym_raw_string_literal_repeat1 = 352, + aux_sym_raw_string_literal_repeat2 = 353, + aux_sym_string_interpolation_repeat1 = 354, + aux_sym_identifier_list_repeat1 = 355, + aux_sym_expression_without_blocks_list_repeat1 = 356, + aux_sym_sum_type_repeat1 = 357, + aux_sym__statement_list_repeat1 = 358, + aux_sym_var_definition_list_repeat1 = 359, + aux_sym_attributes_repeat1 = 360, + aux_sym_attribute_repeat1 = 361, + alias_sym_element = 362, + alias_sym_field_name = 363, + alias_sym_interpolation_closing = 364, + alias_sym_interpolation_expression = 365, }; static const char * const ts_symbol_names[] = { @@ -416,7 +418,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_EQ] = "=", [anon_sym___global] = "__global", [anon_sym_type] = "type", - [anon_sym_PIPE] = "|", [anon_sym_fn] = "fn", [anon_sym_PLUS] = "+", [anon_sym_DASH] = "-", @@ -447,6 +448,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_go] = "go", [anon_sym_spawn] = "spawn", [anon_sym_json_DOTdecode] = "json.decode", + [anon_sym_PIPE] = "|", [anon_sym_LBRACK2] = "[", [anon_sym_TILDE] = "~", [anon_sym_CARET] = "^", @@ -516,6 +518,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_static] = "static", [anon_sym_volatile] = "volatile", [anon_sym_shared] = "shared", + [aux_sym_sum_type_token1] = "sum_type_token1", + [anon_sym_PIPE2] = "|", [anon_sym_map_LBRACK] = "map[", [anon_sym_chan] = "chan", [anon_sym_thread] = "thread", @@ -552,7 +556,6 @@ static const char * const ts_symbol_names[] = { [sym_global_var_definition] = "global_var_definition", [sym__global_var_value] = "_global_var_value", [sym_type_declaration] = "type_declaration", - [sym__type_union_list] = "_type_union_list", [sym_function_declaration] = "function_declaration", [sym_static_method_declaration] = "static_method_declaration", [sym_static_receiver] = "static_receiver", @@ -657,6 +660,7 @@ static const char * const ts_symbol_names[] = { [sym_identifier_list] = "identifier_list", [sym_expression_list] = "expression_list", [sym_expression_without_blocks_list] = "expression_list", + [sym_sum_type] = "sum_type", [sym_plain_type] = "plain_type", [sym__plain_type_without_special] = "_plain_type_without_special", [sym_anon_struct_type] = "anon_struct_type", @@ -720,7 +724,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_selective_import_list_repeat1] = "selective_import_list_repeat1", [aux_sym_const_declaration_repeat1] = "const_declaration_repeat1", [aux_sym_global_var_declaration_repeat1] = "global_var_declaration_repeat1", - [aux_sym__type_union_list_repeat1] = "_type_union_list_repeat1", [aux_sym_parameter_list_repeat1] = "parameter_list_repeat1", [aux_sym_type_parameter_list_repeat1] = "type_parameter_list_repeat1", [aux_sym_generic_parameters_repeat1] = "generic_parameters_repeat1", @@ -746,6 +749,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_string_interpolation_repeat1] = "string_interpolation_repeat1", [aux_sym_identifier_list_repeat1] = "identifier_list_repeat1", [aux_sym_expression_without_blocks_list_repeat1] = "expression_without_blocks_list_repeat1", + [aux_sym_sum_type_repeat1] = "sum_type_repeat1", [aux_sym__statement_list_repeat1] = "_statement_list_repeat1", [aux_sym_var_definition_list_repeat1] = "var_definition_list_repeat1", [aux_sym_attributes_repeat1] = "attributes_repeat1", @@ -783,7 +787,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_EQ] = anon_sym_EQ, [anon_sym___global] = anon_sym___global, [anon_sym_type] = anon_sym_type, - [anon_sym_PIPE] = anon_sym_PIPE, [anon_sym_fn] = anon_sym_fn, [anon_sym_PLUS] = anon_sym_PLUS, [anon_sym_DASH] = anon_sym_DASH, @@ -814,6 +817,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_go] = anon_sym_go, [anon_sym_spawn] = anon_sym_spawn, [anon_sym_json_DOTdecode] = anon_sym_json_DOTdecode, + [anon_sym_PIPE] = anon_sym_PIPE, [anon_sym_LBRACK2] = anon_sym_LBRACK, [anon_sym_TILDE] = anon_sym_TILDE, [anon_sym_CARET] = anon_sym_CARET, @@ -883,6 +887,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_static] = anon_sym_static, [anon_sym_volatile] = anon_sym_volatile, [anon_sym_shared] = anon_sym_shared, + [aux_sym_sum_type_token1] = aux_sym_sum_type_token1, + [anon_sym_PIPE2] = anon_sym_PIPE, [anon_sym_map_LBRACK] = anon_sym_map_LBRACK, [anon_sym_chan] = anon_sym_chan, [anon_sym_thread] = anon_sym_thread, @@ -919,7 +925,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_global_var_definition] = sym_global_var_definition, [sym__global_var_value] = sym__global_var_value, [sym_type_declaration] = sym_type_declaration, - [sym__type_union_list] = sym__type_union_list, [sym_function_declaration] = sym_function_declaration, [sym_static_method_declaration] = sym_static_method_declaration, [sym_static_receiver] = sym_static_receiver, @@ -1024,6 +1029,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_identifier_list] = sym_identifier_list, [sym_expression_list] = sym_expression_list, [sym_expression_without_blocks_list] = sym_expression_list, + [sym_sum_type] = sym_sum_type, [sym_plain_type] = sym_plain_type, [sym__plain_type_without_special] = sym__plain_type_without_special, [sym_anon_struct_type] = sym_anon_struct_type, @@ -1087,7 +1093,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_selective_import_list_repeat1] = aux_sym_selective_import_list_repeat1, [aux_sym_const_declaration_repeat1] = aux_sym_const_declaration_repeat1, [aux_sym_global_var_declaration_repeat1] = aux_sym_global_var_declaration_repeat1, - [aux_sym__type_union_list_repeat1] = aux_sym__type_union_list_repeat1, [aux_sym_parameter_list_repeat1] = aux_sym_parameter_list_repeat1, [aux_sym_type_parameter_list_repeat1] = aux_sym_type_parameter_list_repeat1, [aux_sym_generic_parameters_repeat1] = aux_sym_generic_parameters_repeat1, @@ -1113,6 +1118,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_string_interpolation_repeat1] = aux_sym_string_interpolation_repeat1, [aux_sym_identifier_list_repeat1] = aux_sym_identifier_list_repeat1, [aux_sym_expression_without_blocks_list_repeat1] = aux_sym_expression_without_blocks_list_repeat1, + [aux_sym_sum_type_repeat1] = aux_sym_sum_type_repeat1, [aux_sym__statement_list_repeat1] = aux_sym__statement_list_repeat1, [aux_sym_var_definition_list_repeat1] = aux_sym_var_definition_list_repeat1, [aux_sym_attributes_repeat1] = aux_sym_attributes_repeat1, @@ -1228,10 +1234,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_PIPE] = { - .visible = true, - .named = false, - }, [anon_sym_fn] = { .visible = true, .named = false, @@ -1352,6 +1354,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_PIPE] = { + .visible = true, + .named = false, + }, [anon_sym_LBRACK2] = { .visible = true, .named = false, @@ -1628,6 +1634,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_sum_type_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_PIPE2] = { + .visible = true, + .named = false, + }, [anon_sym_map_LBRACK] = { .visible = true, .named = false, @@ -1772,10 +1786,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__type_union_list] = { - .visible = false, - .named = true, - }, [sym_function_declaration] = { .visible = true, .named = true, @@ -2194,6 +2204,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_sum_type] = { + .visible = true, + .named = true, + }, [sym_plain_type] = { .visible = true, .named = true, @@ -2447,10 +2461,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym__type_union_list_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_parameter_list_repeat1] = { .visible = false, .named = false, @@ -2551,6 +2561,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_sum_type_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym__statement_list_repeat1] = { .visible = false, .named = false, @@ -2627,11 +2641,10 @@ enum ts_field_identifiers { field_static_receiver = 39, field_type = 40, field_type_parameters = 41, - field_types = 42, - field_update = 43, - field_value = 44, - field_var_list = 45, - field_variadic = 46, + field_update = 42, + field_value = 43, + field_var_list = 44, + field_variadic = 45, }; static const char * const ts_field_names[] = { @@ -2677,7 +2690,6 @@ static const char * const ts_field_names[] = { [field_static_receiver] = "static_receiver", [field_type] = "type", [field_type_parameters] = "type_parameters", - [field_types] = "types", [field_update] = "update", [field_value] = "value", [field_var_list] = "var_list", @@ -2935,7 +2947,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_value, 1}, [62] = {field_name, 1}, - {field_types, 3}, + {field_type, 3}, [64] = {field_type, 1}, {field_variadic, 0}, @@ -3035,7 +3047,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [128] = {field_generic_parameters, 2}, {field_name, 1}, - {field_types, 4}, + {field_type, 4}, [131] = {field_name, 0}, {field_type, 2}, @@ -3110,7 +3122,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_start, 0}, [183] = {field_name, 2}, - {field_types, 4}, + {field_type, 4}, [185] = {field_body, 4}, {field_name, 2}, @@ -3205,7 +3217,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [255] = {field_generic_parameters, 3}, {field_name, 2}, - {field_types, 5}, + {field_type, 5}, [258] = {field_name, 4}, {field_signature, 5}, @@ -3503,8 +3515,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [61] = 61, [62] = 62, [63] = 63, - [64] = 64, - [65] = 63, + [64] = 63, + [65] = 65, [66] = 66, [67] = 67, [68] = 68, @@ -3526,7 +3538,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [84] = 72, [85] = 85, [86] = 85, - [87] = 87, + [87] = 85, [88] = 85, [89] = 85, [90] = 85, @@ -3534,111 +3546,111 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [92] = 85, [93] = 85, [94] = 85, - [95] = 85, + [95] = 95, [96] = 85, [97] = 85, - [98] = 85, + [98] = 95, [99] = 85, [100] = 85, [101] = 85, [102] = 85, [103] = 85, [104] = 85, - [105] = 87, + [105] = 85, [106] = 85, [107] = 85, [108] = 85, [109] = 85, [110] = 110, - [111] = 111, - [112] = 111, - [113] = 111, + [111] = 110, + [112] = 112, + [113] = 110, [114] = 114, - [115] = 110, - [116] = 111, - [117] = 110, - [118] = 114, - [119] = 111, + [115] = 112, + [116] = 110, + [117] = 112, + [118] = 112, + [119] = 114, [120] = 110, [121] = 114, - [122] = 114, - [123] = 110, - [124] = 111, + [122] = 112, + [123] = 112, + [124] = 114, [125] = 114, - [126] = 114, + [126] = 112, [127] = 110, - [128] = 111, - [129] = 111, + [128] = 114, + [129] = 114, [130] = 114, - [131] = 114, + [131] = 112, [132] = 110, [133] = 110, [134] = 114, - [135] = 111, - [136] = 111, - [137] = 114, - [138] = 111, + [135] = 112, + [136] = 110, + [137] = 112, + [138] = 110, [139] = 110, [140] = 114, - [141] = 114, - [142] = 110, - [143] = 110, + [141] = 112, + [142] = 112, + [143] = 112, [144] = 110, [145] = 114, - [146] = 111, - [147] = 110, - [148] = 111, + [146] = 110, + [147] = 114, + [148] = 114, [149] = 149, [150] = 150, - [151] = 150, - [152] = 150, - [153] = 153, - [154] = 153, - [155] = 153, + [151] = 151, + [152] = 151, + [153] = 150, + [154] = 151, + [155] = 151, [156] = 150, - [157] = 150, - [158] = 153, - [159] = 153, - [160] = 153, - [161] = 150, - [162] = 153, - [163] = 153, - [164] = 150, - [165] = 153, - [166] = 153, + [157] = 151, + [158] = 150, + [159] = 150, + [160] = 151, + [161] = 151, + [162] = 151, + [163] = 151, + [164] = 151, + [165] = 150, + [166] = 150, [167] = 150, [168] = 150, - [169] = 153, + [169] = 151, [170] = 150, - [171] = 153, + [171] = 151, [172] = 150, [173] = 150, - [174] = 153, - [175] = 69, + [174] = 151, + [175] = 175, [176] = 176, - [177] = 177, - [178] = 177, - [179] = 177, - [180] = 67, - [181] = 177, - [182] = 177, - [183] = 68, - [184] = 184, - [185] = 71, - [186] = 70, - [187] = 177, - [188] = 188, - [189] = 177, - [190] = 177, - [191] = 177, - [192] = 177, - [193] = 177, - [194] = 177, - [195] = 195, - [196] = 177, + [177] = 176, + [178] = 68, + [179] = 176, + [180] = 176, + [181] = 69, + [182] = 176, + [183] = 176, + [184] = 176, + [185] = 176, + [186] = 176, + [187] = 187, + [188] = 71, + [189] = 70, + [190] = 67, + [191] = 191, + [192] = 176, + [193] = 176, + [194] = 194, + [195] = 176, + [196] = 176, [197] = 197, [198] = 197, - [199] = 199, + [199] = 197, [200] = 197, [201] = 197, [202] = 197, @@ -3648,14 +3660,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [206] = 197, [207] = 197, [208] = 197, - [209] = 197, + [209] = 209, [210] = 210, - [211] = 66, + [211] = 211, [212] = 212, [213] = 213, [214] = 214, [215] = 215, - [216] = 216, + [216] = 66, [217] = 217, [218] = 218, [219] = 219, @@ -3673,78 +3685,78 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [231] = 231, [232] = 232, [233] = 233, - [234] = 234, - [235] = 234, - [236] = 234, - [237] = 233, + [234] = 232, + [235] = 235, + [236] = 236, + [237] = 231, [238] = 238, - [239] = 234, - [240] = 234, - [241] = 238, - [242] = 233, - [243] = 233, - [244] = 238, - [245] = 232, - [246] = 234, - [247] = 234, - [248] = 234, - [249] = 234, - [250] = 238, - [251] = 232, - [252] = 234, - [253] = 233, - [254] = 233, - [255] = 238, - [256] = 234, - [257] = 234, - [258] = 232, - [259] = 234, - [260] = 238, - [261] = 261, - [262] = 262, - [263] = 233, - [264] = 262, - [265] = 234, - [266] = 234, - [267] = 267, - [268] = 238, - [269] = 234, - [270] = 234, - [271] = 271, - [272] = 234, - [273] = 238, - [274] = 232, - [275] = 233, - [276] = 232, - [277] = 277, - [278] = 233, - [279] = 238, - [280] = 234, - [281] = 281, - [282] = 234, - [283] = 232, - [284] = 233, - [285] = 234, - [286] = 238, - [287] = 232, - [288] = 288, - [289] = 261, - [290] = 238, - [291] = 233, + [239] = 235, + [240] = 240, + [241] = 231, + [242] = 231, + [243] = 232, + [244] = 231, + [245] = 236, + [246] = 231, + [247] = 235, + [248] = 233, + [249] = 231, + [250] = 231, + [251] = 231, + [252] = 232, + [253] = 253, + [254] = 235, + [255] = 236, + [256] = 231, + [257] = 257, + [258] = 236, + [259] = 236, + [260] = 231, + [261] = 253, + [262] = 235, + [263] = 232, + [264] = 231, + [265] = 235, + [266] = 235, + [267] = 235, + [268] = 236, + [269] = 235, + [270] = 231, + [271] = 231, + [272] = 236, + [273] = 232, + [274] = 231, + [275] = 232, + [276] = 231, + [277] = 232, + [278] = 236, + [279] = 231, + [280] = 231, + [281] = 236, + [282] = 235, + [283] = 283, + [284] = 236, + [285] = 231, + [286] = 231, + [287] = 287, + [288] = 232, + [289] = 235, + [290] = 236, + [291] = 231, [292] = 232, - [293] = 232, - [294] = 232, - [295] = 234, - [296] = 231, - [297] = 238, - [298] = 233, - [299] = 233, + [293] = 231, + [294] = 294, + [295] = 236, + [296] = 235, + [297] = 231, + [298] = 283, + [299] = 232, [300] = 300, - [301] = 234, - [302] = 238, - [303] = 232, + [301] = 232, + [302] = 235, + [303] = 236, [304] = 232, - [305] = 277, + [305] = 305, [306] = 306, [307] = 307, [308] = 308, @@ -3754,1176 +3766,1176 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [312] = 312, [313] = 313, [314] = 314, - [315] = 315, - [316] = 316, - [317] = 317, - [318] = 318, + [315] = 305, + [316] = 311, + [317] = 313, + [318] = 305, [319] = 319, [320] = 320, [321] = 321, - [322] = 322, - [323] = 323, + [322] = 308, + [323] = 308, [324] = 324, - [325] = 325, + [325] = 310, [326] = 326, - [327] = 327, - [328] = 328, - [329] = 329, + [327] = 313, + [328] = 308, + [329] = 311, [330] = 330, [331] = 331, [332] = 332, - [333] = 333, - [334] = 334, + [333] = 311, + [334] = 313, [335] = 335, - [336] = 336, - [337] = 337, + [336] = 308, + [337] = 319, [338] = 338, [339] = 339, [340] = 340, - [341] = 341, - [342] = 342, - [343] = 343, + [341] = 308, + [342] = 311, + [343] = 313, [344] = 344, - [345] = 345, + [345] = 308, [346] = 346, - [347] = 347, + [347] = 305, [348] = 348, - [349] = 349, + [349] = 313, [350] = 350, - [351] = 351, + [351] = 311, [352] = 352, - [353] = 353, - [354] = 354, - [355] = 308, - [356] = 356, + [353] = 305, + [354] = 311, + [355] = 310, + [356] = 313, [357] = 357, [358] = 358, [359] = 359, - [360] = 360, - [361] = 317, + [360] = 310, + [361] = 308, [362] = 362, [363] = 363, - [364] = 328, + [364] = 308, [365] = 365, - [366] = 319, - [367] = 312, - [368] = 354, - [369] = 312, - [370] = 370, - [371] = 312, - [372] = 308, + [366] = 366, + [367] = 311, + [368] = 305, + [369] = 369, + [370] = 311, + [371] = 313, + [372] = 372, [373] = 373, - [374] = 317, + [374] = 308, [375] = 375, - [376] = 376, - [377] = 354, - [378] = 328, - [379] = 308, - [380] = 380, - [381] = 354, - [382] = 317, - [383] = 328, - [384] = 384, + [376] = 305, + [377] = 310, + [378] = 378, + [379] = 379, + [380] = 313, + [381] = 314, + [382] = 382, + [383] = 383, + [384] = 305, [385] = 385, - [386] = 312, - [387] = 362, - [388] = 317, - [389] = 312, - [390] = 317, + [386] = 308, + [387] = 308, + [388] = 388, + [389] = 311, + [390] = 313, [391] = 391, - [392] = 392, - [393] = 363, - [394] = 356, - [395] = 354, + [392] = 308, + [393] = 393, + [394] = 394, + [395] = 308, [396] = 308, - [397] = 317, - [398] = 328, + [397] = 308, + [398] = 308, [399] = 399, - [400] = 328, - [401] = 356, + [400] = 308, + [401] = 308, [402] = 402, [403] = 403, [404] = 404, - [405] = 405, - [406] = 312, - [407] = 312, - [408] = 354, - [409] = 308, + [405] = 308, + [406] = 406, + [407] = 407, + [408] = 308, + [409] = 409, [410] = 410, [411] = 411, - [412] = 412, + [412] = 308, [413] = 413, [414] = 414, - [415] = 415, - [416] = 328, - [417] = 363, - [418] = 354, - [419] = 308, - [420] = 328, + [415] = 305, + [416] = 311, + [417] = 313, + [418] = 418, + [419] = 419, + [420] = 308, [421] = 421, - [422] = 308, - [423] = 354, - [424] = 308, + [422] = 422, + [423] = 310, + [424] = 366, [425] = 425, [426] = 426, - [427] = 427, - [428] = 317, - [429] = 354, - [430] = 430, - [431] = 413, + [427] = 313, + [428] = 428, + [429] = 363, + [430] = 311, + [431] = 431, [432] = 432, [433] = 433, [434] = 434, [435] = 435, [436] = 436, - [437] = 328, - [438] = 405, - [439] = 317, + [437] = 305, + [438] = 310, + [439] = 305, [440] = 440, [441] = 441, [442] = 442, - [443] = 443, + [443] = 310, [444] = 444, - [445] = 445, - [446] = 317, - [447] = 447, - [448] = 312, - [449] = 312, - [450] = 328, - [451] = 317, - [452] = 354, - [453] = 308, + [445] = 305, + [446] = 446, + [447] = 238, + [448] = 448, + [449] = 449, + [450] = 310, + [451] = 451, + [452] = 452, + [453] = 453, [454] = 454, [455] = 455, - [456] = 312, + [456] = 314, [457] = 457, [458] = 458, [459] = 459, [460] = 460, [461] = 461, - [462] = 462, - [463] = 328, - [464] = 363, - [465] = 317, - [466] = 356, - [467] = 354, - [468] = 308, - [469] = 312, - [470] = 317, - [471] = 317, + [462] = 319, + [463] = 305, + [464] = 418, + [465] = 465, + [466] = 431, + [467] = 310, + [468] = 319, + [469] = 469, + [470] = 470, + [471] = 471, [472] = 472, - [473] = 328, + [473] = 473, [474] = 474, [475] = 475, [476] = 476, - [477] = 354, - [478] = 308, - [479] = 479, + [477] = 477, + [478] = 406, + [479] = 310, [480] = 480, [481] = 481, - [482] = 328, + [482] = 314, [483] = 483, [484] = 484, [485] = 485, - [486] = 319, - [487] = 328, - [488] = 391, - [489] = 328, - [490] = 328, + [486] = 486, + [487] = 487, + [488] = 406, + [489] = 489, + [490] = 490, [491] = 491, - [492] = 328, - [493] = 493, - [494] = 328, + [492] = 305, + [493] = 310, + [494] = 494, [495] = 495, [496] = 496, - [497] = 328, - [498] = 328, - [499] = 317, + [497] = 497, + [498] = 498, + [499] = 499, [500] = 500, - [501] = 328, - [502] = 328, - [503] = 328, + [501] = 501, + [502] = 502, + [503] = 305, [504] = 504, - [505] = 505, + [505] = 504, [506] = 506, [507] = 507, [508] = 504, - [509] = 509, - [510] = 405, + [509] = 504, + [510] = 506, [511] = 511, - [512] = 512, - [513] = 504, - [514] = 511, - [515] = 504, - [516] = 504, + [512] = 504, + [513] = 513, + [514] = 504, + [515] = 515, + [516] = 516, [517] = 517, - [518] = 511, - [519] = 504, - [520] = 520, - [521] = 506, - [522] = 507, - [523] = 511, - [524] = 504, - [525] = 507, - [526] = 526, - [527] = 527, - [528] = 511, - [529] = 504, - [530] = 507, - [531] = 504, - [532] = 506, - [533] = 507, + [518] = 518, + [519] = 515, + [520] = 504, + [521] = 504, + [522] = 511, + [523] = 506, + [524] = 515, + [525] = 506, + [526] = 504, + [527] = 515, + [528] = 528, + [529] = 506, + [530] = 515, + [531] = 515, + [532] = 511, + [533] = 515, [534] = 504, - [535] = 507, - [536] = 506, - [537] = 504, - [538] = 507, + [535] = 504, + [536] = 504, + [537] = 515, + [538] = 515, [539] = 504, - [540] = 507, - [541] = 504, - [542] = 507, - [543] = 507, - [544] = 511, - [545] = 507, - [546] = 507, - [547] = 504, - [548] = 507, + [540] = 366, + [541] = 515, + [542] = 506, + [543] = 515, + [544] = 515, + [545] = 504, + [546] = 515, + [547] = 547, + [548] = 504, [549] = 504, - [550] = 504, - [551] = 551, + [550] = 511, + [551] = 504, [552] = 552, - [553] = 405, + [553] = 553, [554] = 554, [555] = 555, - [556] = 405, - [557] = 557, + [556] = 556, + [557] = 366, [558] = 558, [559] = 559, - [560] = 560, - [561] = 561, - [562] = 562, - [563] = 563, - [564] = 551, - [565] = 565, + [560] = 555, + [561] = 558, + [562] = 556, + [563] = 553, + [564] = 558, + [565] = 366, [566] = 566, - [567] = 555, - [568] = 555, - [569] = 569, - [570] = 569, - [571] = 558, - [572] = 569, - [573] = 561, - [574] = 565, + [567] = 567, + [568] = 568, + [569] = 567, + [570] = 570, + [571] = 559, + [572] = 553, + [573] = 559, + [574] = 556, [575] = 575, - [576] = 576, - [577] = 565, - [578] = 559, - [579] = 579, - [580] = 554, - [581] = 551, - [582] = 566, + [576] = 366, + [577] = 558, + [578] = 570, + [579] = 568, + [580] = 555, + [581] = 581, + [582] = 582, [583] = 583, - [584] = 559, - [585] = 555, - [586] = 554, - [587] = 405, - [588] = 557, - [589] = 558, - [590] = 551, - [591] = 563, - [592] = 592, - [593] = 562, - [594] = 561, - [595] = 561, - [596] = 562, - [597] = 565, - [598] = 598, - [599] = 554, - [600] = 600, - [601] = 559, - [602] = 554, - [603] = 600, - [604] = 563, - [605] = 563, - [606] = 560, - [607] = 551, - [608] = 405, - [609] = 565, - [610] = 569, - [611] = 562, - [612] = 405, - [613] = 561, - [614] = 592, - [615] = 560, - [616] = 592, - [617] = 555, - [618] = 598, - [619] = 569, - [620] = 592, - [621] = 621, - [622] = 557, - [623] = 557, - [624] = 566, - [625] = 569, - [626] = 561, - [627] = 562, - [628] = 563, - [629] = 551, - [630] = 565, - [631] = 569, - [632] = 561, + [584] = 567, + [585] = 552, + [586] = 553, + [587] = 587, + [588] = 556, + [589] = 552, + [590] = 567, + [591] = 581, + [592] = 582, + [593] = 568, + [594] = 366, + [595] = 558, + [596] = 554, + [597] = 556, + [598] = 568, + [599] = 553, + [600] = 587, + [601] = 568, + [602] = 582, + [603] = 603, + [604] = 568, + [605] = 568, + [606] = 559, + [607] = 555, + [608] = 567, + [609] = 587, + [610] = 556, + [611] = 611, + [612] = 555, + [613] = 552, + [614] = 582, + [615] = 567, + [616] = 616, + [617] = 553, + [618] = 587, + [619] = 553, + [620] = 558, + [621] = 554, + [622] = 554, + [623] = 558, + [624] = 581, + [625] = 366, + [626] = 554, + [627] = 558, + [628] = 587, + [629] = 611, + [630] = 556, + [631] = 552, + [632] = 582, [633] = 633, - [634] = 555, - [635] = 554, - [636] = 562, - [637] = 563, - [638] = 638, - [639] = 569, - [640] = 638, - [641] = 565, - [642] = 642, - [643] = 405, - [644] = 565, - [645] = 551, - [646] = 563, - [647] = 562, - [648] = 557, - [649] = 592, - [650] = 566, - [651] = 569, - [652] = 561, - [653] = 566, - [654] = 560, - [655] = 558, - [656] = 551, - [657] = 565, - [658] = 569, + [634] = 366, + [635] = 366, + [636] = 603, + [637] = 558, + [638] = 582, + [639] = 559, + [640] = 554, + [641] = 582, + [642] = 552, + [643] = 581, + [644] = 555, + [645] = 556, + [646] = 646, + [647] = 559, + [648] = 552, + [649] = 553, + [650] = 567, + [651] = 556, + [652] = 568, + [653] = 587, + [654] = 654, + [655] = 611, + [656] = 581, + [657] = 554, + [658] = 658, [659] = 559, - [660] = 569, - [661] = 565, - [662] = 551, - [663] = 560, - [664] = 551, - [665] = 563, - [666] = 563, - [667] = 563, + [660] = 581, + [661] = 575, + [662] = 567, + [663] = 553, + [664] = 582, + [665] = 616, + [666] = 666, + [667] = 555, [668] = 668, - [669] = 562, - [670] = 560, - [671] = 560, - [672] = 559, - [673] = 558, - [674] = 562, - [675] = 561, - [676] = 557, - [677] = 405, - [678] = 554, - [679] = 559, - [680] = 558, - [681] = 555, - [682] = 557, - [683] = 565, - [684] = 405, - [685] = 554, - [686] = 551, - [687] = 555, - [688] = 554, - [689] = 555, - [690] = 563, - [691] = 405, - [692] = 562, - [693] = 557, - [694] = 561, - [695] = 566, - [696] = 555, - [697] = 554, - [698] = 592, - [699] = 558, - [700] = 558, - [701] = 405, - [702] = 559, - [703] = 561, - [704] = 638, - [705] = 560, - [706] = 600, - [707] = 561, - [708] = 579, - [709] = 561, - [710] = 555, + [669] = 669, + [670] = 587, + [671] = 366, + [672] = 581, + [673] = 587, + [674] = 556, + [675] = 552, + [676] = 556, + [677] = 558, + [678] = 552, + [679] = 582, + [680] = 582, + [681] = 366, + [682] = 558, + [683] = 554, + [684] = 552, + [685] = 575, + [686] = 559, + [687] = 575, + [688] = 587, + [689] = 558, + [690] = 554, + [691] = 554, + [692] = 558, + [693] = 366, + [694] = 566, + [695] = 582, + [696] = 552, + [697] = 556, + [698] = 366, + [699] = 568, + [700] = 567, + [701] = 553, + [702] = 587, + [703] = 559, + [704] = 570, + [705] = 554, + [706] = 555, + [707] = 581, + [708] = 552, + [709] = 583, + [710] = 568, [711] = 559, - [712] = 554, - [713] = 557, - [714] = 558, - [715] = 598, - [716] = 562, - [717] = 554, - [718] = 405, - [719] = 559, - [720] = 405, - [721] = 563, - [722] = 560, - [723] = 554, - [724] = 559, - [725] = 560, - [726] = 638, - [727] = 557, - [728] = 559, - [729] = 551, - [730] = 598, - [731] = 559, - [732] = 558, - [733] = 600, - [734] = 579, - [735] = 554, - [736] = 405, - [737] = 559, - [738] = 559, - [739] = 565, - [740] = 569, - [741] = 405, - [742] = 557, - [743] = 566, - [744] = 576, - [745] = 621, - [746] = 558, - [747] = 560, - [748] = 638, - [749] = 598, - [750] = 600, - [751] = 592, - [752] = 579, - [753] = 559, - [754] = 560, - [755] = 569, - [756] = 405, - [757] = 565, - [758] = 555, - [759] = 598, - [760] = 760, - [761] = 551, - [762] = 579, - [763] = 763, - [764] = 592, - [765] = 554, - [766] = 563, - [767] = 638, - [768] = 562, - [769] = 561, - [770] = 559, - [771] = 598, - [772] = 562, - [773] = 566, + [712] = 558, + [713] = 555, + [714] = 587, + [715] = 556, + [716] = 552, + [717] = 582, + [718] = 366, + [719] = 558, + [720] = 554, + [721] = 366, + [722] = 366, + [723] = 568, + [724] = 567, + [725] = 553, + [726] = 559, + [727] = 555, + [728] = 581, + [729] = 581, + [730] = 633, + [731] = 611, + [732] = 581, + [733] = 654, + [734] = 582, + [735] = 366, + [736] = 556, + [737] = 556, + [738] = 555, + [739] = 552, + [740] = 556, + [741] = 587, + [742] = 568, + [743] = 587, + [744] = 556, + [745] = 552, + [746] = 582, + [747] = 366, + [748] = 558, + [749] = 554, + [750] = 554, + [751] = 575, + [752] = 658, + [753] = 566, + [754] = 582, + [755] = 552, + [756] = 587, + [757] = 567, + [758] = 553, + [759] = 558, + [760] = 366, + [761] = 761, + [762] = 559, + [763] = 581, + [764] = 764, + [765] = 556, + [766] = 570, + [767] = 555, + [768] = 575, + [769] = 559, + [770] = 555, + [771] = 568, + [772] = 616, + [773] = 603, [774] = 774, - [775] = 555, - [776] = 561, - [777] = 560, - [778] = 557, - [779] = 559, - [780] = 642, - [781] = 558, - [782] = 558, - [783] = 559, - [784] = 557, - [785] = 785, - [786] = 554, - [787] = 560, - [788] = 638, - [789] = 555, - [790] = 566, - [791] = 560, - [792] = 598, - [793] = 600, - [794] = 557, - [795] = 558, - [796] = 579, - [797] = 558, - [798] = 560, - [799] = 562, - [800] = 562, - [801] = 579, - [802] = 569, - [803] = 554, - [804] = 561, - [805] = 560, - [806] = 562, - [807] = 563, + [775] = 567, + [776] = 581, + [777] = 559, + [778] = 581, + [779] = 570, + [780] = 780, + [781] = 781, + [782] = 669, + [783] = 587, + [784] = 603, + [785] = 567, + [786] = 556, + [787] = 570, + [788] = 552, + [789] = 582, + [790] = 366, + [791] = 568, + [792] = 558, + [793] = 554, + [794] = 553, + [795] = 616, + [796] = 587, + [797] = 566, + [798] = 553, + [799] = 554, + [800] = 566, + [801] = 801, + [802] = 581, + [803] = 555, + [804] = 559, + [805] = 611, + [806] = 603, + [807] = 558, [808] = 808, - [809] = 405, - [810] = 551, - [811] = 565, - [812] = 565, - [813] = 551, - [814] = 569, - [815] = 638, - [816] = 563, - [817] = 561, - [818] = 600, - [819] = 562, - [820] = 561, - [821] = 562, - [822] = 638, - [823] = 560, - [824] = 600, - [825] = 569, - [826] = 565, - [827] = 563, - [828] = 551, - [829] = 563, - [830] = 562, - [831] = 598, - [832] = 561, - [833] = 566, - [834] = 554, - [835] = 600, - [836] = 551, - [837] = 557, - [838] = 579, - [839] = 565, - [840] = 569, - [841] = 560, - [842] = 559, - [843] = 558, - [844] = 844, - [845] = 560, - [846] = 559, - [847] = 559, - [848] = 848, - [849] = 579, - [850] = 566, - [851] = 598, - [852] = 600, - [853] = 555, - [854] = 569, - [855] = 633, - [856] = 565, - [857] = 551, - [858] = 563, - [859] = 638, - [860] = 569, - [861] = 565, - [862] = 583, - [863] = 562, - [864] = 558, - [865] = 561, - [866] = 785, - [867] = 557, - [868] = 405, - [869] = 554, - [870] = 566, - [871] = 638, - [872] = 554, - [873] = 598, - [874] = 600, - [875] = 555, - [876] = 579, - [877] = 555, - [878] = 551, - [879] = 566, - [880] = 554, - [881] = 592, - [882] = 405, - [883] = 883, - [884] = 563, - [885] = 562, - [886] = 557, - [887] = 561, - [888] = 558, - [889] = 592, - [890] = 558, - [891] = 592, - [892] = 563, - [893] = 592, - [894] = 563, - [895] = 895, - [896] = 566, - [897] = 405, - [898] = 552, - [899] = 557, - [900] = 555, - [901] = 569, - [902] = 638, - [903] = 638, - [904] = 565, - [905] = 555, - [906] = 592, - [907] = 569, - [908] = 554, - [909] = 559, - [910] = 598, - [911] = 560, - [912] = 600, - [913] = 579, - [914] = 555, - [915] = 554, - [916] = 565, - [917] = 551, - [918] = 579, - [919] = 555, - [920] = 561, - [921] = 562, - [922] = 551, - [923] = 405, - [924] = 560, - [925] = 559, - [926] = 563, - [927] = 774, - [928] = 557, - [929] = 555, - [930] = 895, - [931] = 554, - [932] = 405, - [933] = 569, - [934] = 565, - [935] = 848, - [936] = 551, - [937] = 557, - [938] = 558, - [939] = 558, - [940] = 559, - [941] = 557, - [942] = 554, - [943] = 405, - [944] = 557, - [945] = 621, - [946] = 558, - [947] = 947, - [948] = 70, - [949] = 71, - [950] = 69, - [951] = 68, - [952] = 67, - [953] = 953, - [954] = 220, - [955] = 955, + [809] = 809, + [810] = 570, + [811] = 553, + [812] = 581, + [813] = 556, + [814] = 555, + [815] = 554, + [816] = 616, + [817] = 555, + [818] = 559, + [819] = 558, + [820] = 366, + [821] = 582, + [822] = 553, + [823] = 587, + [824] = 568, + [825] = 567, + [826] = 553, + [827] = 567, + [828] = 566, + [829] = 556, + [830] = 559, + [831] = 555, + [832] = 581, + [833] = 552, + [834] = 552, + [835] = 581, + [836] = 555, + [837] = 582, + [838] = 366, + [839] = 556, + [840] = 558, + [841] = 554, + [842] = 611, + [843] = 559, + [844] = 603, + [845] = 553, + [846] = 570, + [847] = 587, + [848] = 566, + [849] = 567, + [850] = 616, + [851] = 567, + [852] = 568, + [853] = 575, + [854] = 568, + [855] = 566, + [856] = 581, + [857] = 575, + [858] = 666, + [859] = 553, + [860] = 611, + [861] = 781, + [862] = 603, + [863] = 566, + [864] = 568, + [865] = 575, + [866] = 567, + [867] = 570, + [868] = 575, + [869] = 646, + [870] = 616, + [871] = 575, + [872] = 587, + [873] = 556, + [874] = 552, + [875] = 582, + [876] = 366, + [877] = 611, + [878] = 558, + [879] = 554, + [880] = 566, + [881] = 603, + [882] = 566, + [883] = 570, + [884] = 616, + [885] = 885, + [886] = 616, + [887] = 581, + [888] = 581, + [889] = 611, + [890] = 555, + [891] = 603, + [892] = 559, + [893] = 553, + [894] = 567, + [895] = 555, + [896] = 575, + [897] = 559, + [898] = 654, + [899] = 568, + [900] = 808, + [901] = 553, + [902] = 558, + [903] = 587, + [904] = 556, + [905] = 552, + [906] = 587, + [907] = 554, + [908] = 567, + [909] = 582, + [910] = 559, + [911] = 603, + [912] = 568, + [913] = 570, + [914] = 554, + [915] = 616, + [916] = 568, + [917] = 616, + [918] = 575, + [919] = 603, + [920] = 582, + [921] = 555, + [922] = 611, + [923] = 581, + [924] = 575, + [925] = 555, + [926] = 801, + [927] = 603, + [928] = 559, + [929] = 553, + [930] = 587, + [931] = 556, + [932] = 552, + [933] = 567, + [934] = 616, + [935] = 568, + [936] = 611, + [937] = 566, + [938] = 582, + [939] = 570, + [940] = 366, + [941] = 558, + [942] = 611, + [943] = 566, + [944] = 567, + [945] = 558, + [946] = 554, + [947] = 616, + [948] = 948, + [949] = 69, + [950] = 68, + [951] = 67, + [952] = 70, + [953] = 71, + [954] = 954, + [955] = 227, [956] = 228, - [957] = 218, - [958] = 222, + [957] = 222, + [958] = 220, [959] = 219, - [960] = 217, - [961] = 221, - [962] = 962, - [963] = 223, - [964] = 227, - [965] = 224, - [966] = 225, - [967] = 230, - [968] = 229, + [960] = 218, + [961] = 961, + [962] = 226, + [963] = 225, + [964] = 224, + [965] = 223, + [966] = 966, + [967] = 221, + [968] = 220, [969] = 969, - [970] = 227, - [971] = 228, + [970] = 230, + [971] = 229, [972] = 972, - [973] = 225, - [974] = 223, - [975] = 217, - [976] = 222, + [973] = 973, + [974] = 227, + [975] = 226, + [976] = 225, [977] = 977, - [978] = 978, - [979] = 220, - [980] = 262, - [981] = 67, - [982] = 68, - [983] = 69, - [984] = 300, - [985] = 281, - [986] = 262, - [987] = 231, - [988] = 231, - [989] = 267, - [990] = 70, - [991] = 71, - [992] = 457, - [993] = 321, - [994] = 421, - [995] = 313, - [996] = 415, - [997] = 384, - [998] = 333, - [999] = 330, - [1000] = 399, - [1001] = 360, - [1002] = 331, - [1003] = 309, - [1004] = 315, - [1005] = 350, - [1006] = 322, - [1007] = 493, - [1008] = 335, - [1009] = 336, - [1010] = 414, - [1011] = 323, - [1012] = 337, - [1013] = 338, - [1014] = 339, - [1015] = 402, - [1016] = 443, - [1017] = 425, - [1018] = 306, - [1019] = 316, - [1020] = 311, - [1021] = 444, - [1022] = 362, - [1023] = 432, - [1024] = 435, - [1025] = 436, - [1026] = 445, - [1027] = 460, - [1028] = 277, - [1029] = 440, - [1030] = 484, - [1031] = 412, - [1032] = 277, - [1033] = 326, - [1034] = 325, - [1035] = 442, - [1036] = 340, - [1037] = 341, - [1038] = 410, - [1039] = 495, - [1040] = 472, - [1041] = 307, - [1042] = 459, - [1043] = 458, - [1044] = 434, - [1045] = 496, - [1046] = 433, - [1047] = 461, - [1048] = 329, - [1049] = 332, - [1050] = 480, - [1051] = 310, - [1052] = 481, - [1053] = 483, - [1054] = 345, - [1055] = 343, - [1056] = 485, - [1057] = 319, - [1058] = 327, - [1059] = 318, - [1060] = 320, - [1061] = 411, - [1062] = 324, - [1063] = 491, - [1064] = 427, - [1065] = 370, - [1066] = 426, - [1067] = 455, - [1068] = 500, - [1069] = 346, - [1070] = 347, - [1071] = 349, - [1072] = 351, - [1073] = 334, - [1074] = 410, - [1075] = 352, - [1076] = 476, - [1077] = 319, - [1078] = 357, - [1079] = 475, - [1080] = 314, - [1081] = 474, - [1082] = 342, - [1083] = 344, - [1084] = 462, - [1085] = 392, - [1086] = 348, - [1087] = 362, - [1088] = 365, - [1089] = 358, - [1090] = 375, - [1091] = 359, - [1092] = 376, - [1093] = 380, - [1094] = 385, - [1095] = 404, - [1096] = 447, - [1097] = 454, - [1098] = 69, - [1099] = 67, - [1100] = 68, - [1101] = 71, - [1102] = 69, - [1103] = 1103, - [1104] = 68, - [1105] = 67, - [1106] = 70, - [1107] = 228, - [1108] = 220, - [1109] = 224, - [1110] = 225, - [1111] = 227, - [1112] = 222, - [1113] = 71, - [1114] = 221, - [1115] = 217, - [1116] = 223, - [1117] = 218, - [1118] = 230, - [1119] = 69, - [1120] = 67, - [1121] = 1121, - [1122] = 1122, - [1123] = 68, + [978] = 224, + [979] = 223, + [980] = 219, + [981] = 69, + [982] = 67, + [983] = 71, + [984] = 70, + [985] = 233, + [986] = 287, + [987] = 233, + [988] = 240, + [989] = 68, + [990] = 253, + [991] = 300, + [992] = 253, + [993] = 393, + [994] = 474, + [995] = 457, + [996] = 436, + [997] = 435, + [998] = 432, + [999] = 461, + [1000] = 487, + [1001] = 480, + [1002] = 471, + [1003] = 481, + [1004] = 470, + [1005] = 483, + [1006] = 500, + [1007] = 494, + [1008] = 458, + [1009] = 448, + [1010] = 339, + [1011] = 338, + [1012] = 428, + [1013] = 452, + [1014] = 425, + [1015] = 475, + [1016] = 332, + [1017] = 324, + [1018] = 382, + [1019] = 419, + [1020] = 385, + [1021] = 388, + [1022] = 402, + [1023] = 404, + [1024] = 434, + [1025] = 442, + [1026] = 449, + [1027] = 451, + [1028] = 350, + [1029] = 489, + [1030] = 490, + [1031] = 320, + [1032] = 495, + [1033] = 501, + [1034] = 498, + [1035] = 312, + [1036] = 441, + [1037] = 496, + [1038] = 331, + [1039] = 330, + [1040] = 477, + [1041] = 383, + [1042] = 306, + [1043] = 358, + [1044] = 359, + [1045] = 486, + [1046] = 406, + [1047] = 433, + [1048] = 238, + [1049] = 414, + [1050] = 352, + [1051] = 369, + [1052] = 372, + [1053] = 375, + [1054] = 378, + [1055] = 413, + [1056] = 411, + [1057] = 399, + [1058] = 394, + [1059] = 455, + [1060] = 379, + [1061] = 459, + [1062] = 465, + [1063] = 469, + [1064] = 346, + [1065] = 344, + [1066] = 340, + [1067] = 497, + [1068] = 473, + [1069] = 410, + [1070] = 357, + [1071] = 446, + [1072] = 410, + [1073] = 499, + [1074] = 409, + [1075] = 472, + [1076] = 485, + [1077] = 362, + [1078] = 335, + [1079] = 491, + [1080] = 484, + [1081] = 502, + [1082] = 440, + [1083] = 348, + [1084] = 421, + [1085] = 363, + [1086] = 476, + [1087] = 444, + [1088] = 406, + [1089] = 460, + [1090] = 326, + [1091] = 426, + [1092] = 391, + [1093] = 307, + [1094] = 365, + [1095] = 309, + [1096] = 363, + [1097] = 238, + [1098] = 453, + [1099] = 69, + [1100] = 70, + [1101] = 67, + [1102] = 67, + [1103] = 69, + [1104] = 70, + [1105] = 68, + [1106] = 69, + [1107] = 71, + [1108] = 67, + [1109] = 1109, + [1110] = 70, + [1111] = 220, + [1112] = 223, + [1113] = 224, + [1114] = 225, + [1115] = 226, + [1116] = 218, + [1117] = 227, + [1118] = 68, + [1119] = 219, + [1120] = 228, + [1121] = 222, + [1122] = 221, + [1123] = 1123, [1124] = 1124, - [1125] = 70, - [1126] = 219, + [1125] = 67, + [1126] = 70, [1127] = 229, - [1128] = 1128, - [1129] = 231, - [1130] = 281, - [1131] = 362, - [1132] = 262, - [1133] = 231, - [1134] = 1134, - [1135] = 262, - [1136] = 267, - [1137] = 300, - [1138] = 340, - [1139] = 335, - [1140] = 352, - [1141] = 480, - [1142] = 481, - [1143] = 483, - [1144] = 426, - [1145] = 421, - [1146] = 410, - [1147] = 458, - [1148] = 323, - [1149] = 309, - [1150] = 333, - [1151] = 332, - [1152] = 461, - [1153] = 360, - [1154] = 457, - [1155] = 322, - [1156] = 500, - [1157] = 334, - [1158] = 343, - [1159] = 447, - [1160] = 436, - [1161] = 326, - [1162] = 357, - [1163] = 325, - [1164] = 435, - [1165] = 69, - [1166] = 315, - [1167] = 68, - [1168] = 455, - [1169] = 358, - [1170] = 67, - [1171] = 359, - [1172] = 318, - [1173] = 314, - [1174] = 342, - [1175] = 344, - [1176] = 348, - [1177] = 331, - [1178] = 365, - [1179] = 476, - [1180] = 330, - [1181] = 310, - [1182] = 375, - [1183] = 376, - [1184] = 475, - [1185] = 474, - [1186] = 380, - [1187] = 462, - [1188] = 1188, - [1189] = 432, - [1190] = 306, - [1191] = 411, - [1192] = 71, - [1193] = 392, - [1194] = 415, - [1195] = 414, - [1196] = 425, - [1197] = 433, - [1198] = 1198, - [1199] = 402, - [1200] = 71, - [1201] = 70, - [1202] = 434, - [1203] = 71, - [1204] = 336, - [1205] = 337, - [1206] = 459, - [1207] = 338, - [1208] = 440, - [1209] = 307, - [1210] = 339, - [1211] = 472, - [1212] = 319, - [1213] = 341, - [1214] = 350, - [1215] = 277, - [1216] = 443, - [1217] = 345, - [1218] = 320, - [1219] = 370, - [1220] = 444, - [1221] = 445, - [1222] = 460, - [1223] = 1198, - [1224] = 412, - [1225] = 313, - [1226] = 384, - [1227] = 327, - [1228] = 491, - [1229] = 484, - [1230] = 485, - [1231] = 493, - [1232] = 321, - [1233] = 454, - [1234] = 404, - [1235] = 385, - [1236] = 324, - [1237] = 427, - [1238] = 399, - [1239] = 442, - [1240] = 362, - [1241] = 495, - [1242] = 496, - [1243] = 329, - [1244] = 351, - [1245] = 349, - [1246] = 347, - [1247] = 346, - [1248] = 311, - [1249] = 316, - [1250] = 70, - [1251] = 67, - [1252] = 68, - [1253] = 69, - [1254] = 319, - [1255] = 224, - [1256] = 221, - [1257] = 218, - [1258] = 70, - [1259] = 1259, - [1260] = 230, - [1261] = 229, - [1262] = 1259, - [1263] = 436, - [1264] = 231, - [1265] = 225, - [1266] = 231, - [1267] = 217, - [1268] = 227, - [1269] = 220, - [1270] = 262, - [1271] = 435, - [1272] = 432, - [1273] = 228, - [1274] = 300, - [1275] = 222, - [1276] = 281, - [1277] = 267, + [1128] = 69, + [1129] = 1129, + [1130] = 230, + [1131] = 71, + [1132] = 233, + [1133] = 1133, + [1134] = 300, + [1135] = 253, + [1136] = 287, + [1137] = 363, + [1138] = 233, + [1139] = 240, + [1140] = 1140, + [1141] = 253, + [1142] = 338, + [1143] = 70, + [1144] = 404, + [1145] = 339, + [1146] = 372, + [1147] = 500, + [1148] = 483, + [1149] = 388, + [1150] = 1150, + [1151] = 385, + [1152] = 481, + [1153] = 480, + [1154] = 382, + [1155] = 365, + [1156] = 309, + [1157] = 359, + [1158] = 369, + [1159] = 458, + [1160] = 67, + [1161] = 461, + [1162] = 324, + [1163] = 71, + [1164] = 434, + [1165] = 421, + [1166] = 442, + [1167] = 358, + [1168] = 238, + [1169] = 68, + [1170] = 363, + [1171] = 449, + [1172] = 326, + [1173] = 460, + [1174] = 331, + [1175] = 441, + [1176] = 485, + [1177] = 457, + [1178] = 501, + [1179] = 444, + [1180] = 472, + [1181] = 71, + [1182] = 69, + [1183] = 446, + [1184] = 490, + [1185] = 70, + [1186] = 340, + [1187] = 491, + [1188] = 494, + [1189] = 495, + [1190] = 307, + [1191] = 426, + [1192] = 436, + [1193] = 435, + [1194] = 499, + [1195] = 502, + [1196] = 484, + [1197] = 453, + [1198] = 477, + [1199] = 496, + [1200] = 432, + [1201] = 487, + [1202] = 67, + [1203] = 498, + [1204] = 497, + [1205] = 391, + [1206] = 428, + [1207] = 440, + [1208] = 425, + [1209] = 1209, + [1210] = 475, + [1211] = 471, + [1212] = 344, + [1213] = 346, + [1214] = 406, + [1215] = 379, + [1216] = 474, + [1217] = 393, + [1218] = 402, + [1219] = 332, + [1220] = 394, + [1221] = 473, + [1222] = 469, + [1223] = 465, + [1224] = 350, + [1225] = 489, + [1226] = 1150, + [1227] = 399, + [1228] = 476, + [1229] = 352, + [1230] = 375, + [1231] = 459, + [1232] = 409, + [1233] = 357, + [1234] = 68, + [1235] = 451, + [1236] = 378, + [1237] = 68, + [1238] = 362, + [1239] = 455, + [1240] = 383, + [1241] = 348, + [1242] = 486, + [1243] = 335, + [1244] = 433, + [1245] = 320, + [1246] = 448, + [1247] = 69, + [1248] = 330, + [1249] = 414, + [1250] = 411, + [1251] = 452, + [1252] = 419, + [1253] = 312, + [1254] = 306, + [1255] = 413, + [1256] = 410, + [1257] = 470, + [1258] = 222, + [1259] = 406, + [1260] = 228, + [1261] = 71, + [1262] = 218, + [1263] = 1263, + [1264] = 1263, + [1265] = 230, + [1266] = 229, + [1267] = 224, + [1268] = 253, + [1269] = 223, + [1270] = 225, + [1271] = 226, + [1272] = 227, + [1273] = 436, + [1274] = 363, + [1275] = 435, + [1276] = 432, + [1277] = 240, [1278] = 223, - [1279] = 442, - [1280] = 472, - [1281] = 307, - [1282] = 262, - [1283] = 225, - [1284] = 227, - [1285] = 220, - [1286] = 217, - [1287] = 222, - [1288] = 362, - [1289] = 223, - [1290] = 392, - [1291] = 1291, - [1292] = 228, - [1293] = 445, - [1294] = 447, - [1295] = 440, - [1296] = 359, - [1297] = 443, - [1298] = 461, - [1299] = 358, - [1300] = 444, - [1301] = 357, - [1302] = 352, - [1303] = 351, - [1304] = 349, - [1305] = 347, - [1306] = 346, - [1307] = 460, - [1308] = 324, - [1309] = 462, - [1310] = 345, - [1311] = 341, - [1312] = 340, - [1313] = 474, - [1314] = 475, - [1315] = 476, - [1316] = 339, - [1317] = 484, - [1318] = 485, - [1319] = 493, - [1320] = 455, - [1321] = 343, - [1322] = 338, - [1323] = 337, - [1324] = 336, - [1325] = 495, - [1326] = 335, - [1327] = 319, - [1328] = 426, - [1329] = 310, - [1330] = 421, - [1331] = 496, - [1332] = 454, - [1333] = 415, - [1334] = 433, - [1335] = 434, - [1336] = 459, - [1337] = 1337, - [1338] = 414, - [1339] = 412, - [1340] = 491, - [1341] = 333, - [1342] = 427, - [1343] = 332, - [1344] = 404, - [1345] = 385, - [1346] = 323, - [1347] = 311, - [1348] = 316, - [1349] = 315, - [1350] = 309, - [1351] = 326, - [1352] = 322, - [1353] = 334, - [1354] = 360, - [1355] = 399, - [1356] = 380, - [1357] = 331, - [1358] = 384, - [1359] = 330, - [1360] = 329, - [1361] = 313, - [1362] = 321, - [1363] = 320, - [1364] = 376, - [1365] = 370, - [1366] = 350, - [1367] = 375, - [1368] = 365, - [1369] = 327, - [1370] = 1370, - [1371] = 348, - [1372] = 344, - [1373] = 342, - [1374] = 314, - [1375] = 500, - [1376] = 483, - [1377] = 325, - [1378] = 402, - [1379] = 318, - [1380] = 481, - [1381] = 458, - [1382] = 480, - [1383] = 425, - [1384] = 457, - [1385] = 306, - [1386] = 411, - [1387] = 362, - [1388] = 277, - [1389] = 1389, - [1390] = 410, - [1391] = 71, + [1279] = 224, + [1280] = 225, + [1281] = 233, + [1282] = 1282, + [1283] = 226, + [1284] = 309, + [1285] = 227, + [1286] = 287, + [1287] = 253, + [1288] = 219, + [1289] = 220, + [1290] = 220, + [1291] = 219, + [1292] = 465, + [1293] = 459, + [1294] = 455, + [1295] = 300, + [1296] = 233, + [1297] = 312, + [1298] = 428, + [1299] = 442, + [1300] = 382, + [1301] = 434, + [1302] = 324, + [1303] = 363, + [1304] = 440, + [1305] = 421, + [1306] = 332, + [1307] = 365, + [1308] = 338, + [1309] = 339, + [1310] = 307, + [1311] = 326, + [1312] = 460, + [1313] = 476, + [1314] = 426, + [1315] = 451, + [1316] = 406, + [1317] = 489, + [1318] = 330, + [1319] = 348, + [1320] = 404, + [1321] = 500, + [1322] = 1322, + [1323] = 388, + [1324] = 449, + [1325] = 335, + [1326] = 483, + [1327] = 481, + [1328] = 480, + [1329] = 391, + [1330] = 352, + [1331] = 477, + [1332] = 472, + [1333] = 441, + [1334] = 444, + [1335] = 357, + [1336] = 362, + [1337] = 474, + [1338] = 473, + [1339] = 469, + [1340] = 446, + [1341] = 383, + [1342] = 452, + [1343] = 419, + [1344] = 306, + [1345] = 501, + [1346] = 448, + [1347] = 497, + [1348] = 453, + [1349] = 498, + [1350] = 378, + [1351] = 375, + [1352] = 372, + [1353] = 369, + [1354] = 1354, + [1355] = 409, + [1356] = 461, + [1357] = 359, + [1358] = 358, + [1359] = 470, + [1360] = 458, + [1361] = 331, + [1362] = 502, + [1363] = 471, + [1364] = 499, + [1365] = 495, + [1366] = 320, + [1367] = 494, + [1368] = 475, + [1369] = 350, + [1370] = 491, + [1371] = 490, + [1372] = 457, + [1373] = 340, + [1374] = 344, + [1375] = 346, + [1376] = 379, + [1377] = 393, + [1378] = 394, + [1379] = 399, + [1380] = 411, + [1381] = 402, + [1382] = 413, + [1383] = 485, + [1384] = 414, + [1385] = 496, + [1386] = 425, + [1387] = 433, + [1388] = 385, + [1389] = 486, + [1390] = 487, + [1391] = 484, [1392] = 1392, - [1393] = 277, - [1394] = 70, - [1395] = 67, + [1393] = 238, + [1394] = 68, + [1395] = 410, [1396] = 1396, - [1397] = 68, + [1397] = 71, [1398] = 1398, - [1399] = 410, + [1399] = 1399, [1400] = 69, - [1401] = 68, + [1401] = 70, [1402] = 67, - [1403] = 69, - [1404] = 267, - [1405] = 1405, - [1406] = 1406, - [1407] = 1407, + [1403] = 238, + [1404] = 410, + [1405] = 287, + [1406] = 70, + [1407] = 69, [1408] = 1408, - [1409] = 71, - [1410] = 1410, - [1411] = 323, - [1412] = 322, + [1409] = 419, + [1410] = 306, + [1411] = 67, + [1412] = 1412, [1413] = 1413, - [1414] = 362, - [1415] = 71, - [1416] = 1416, + [1414] = 1414, + [1415] = 1415, + [1416] = 363, [1417] = 1417, - [1418] = 1418, - [1419] = 345, - [1420] = 1420, - [1421] = 1421, - [1422] = 1422, - [1423] = 318, - [1424] = 1424, - [1425] = 1425, + [1418] = 391, + [1419] = 1419, + [1420] = 499, + [1421] = 441, + [1422] = 470, + [1423] = 409, + [1424] = 495, + [1425] = 494, [1426] = 1426, - [1427] = 1427, - [1428] = 1428, - [1429] = 1429, - [1430] = 1430, - [1431] = 1431, - [1432] = 67, - [1433] = 1433, - [1434] = 1434, - [1435] = 1435, - [1436] = 1436, - [1437] = 359, - [1438] = 329, - [1439] = 1439, - [1440] = 358, - [1441] = 331, - [1442] = 1442, - [1443] = 357, - [1444] = 352, - [1445] = 1445, - [1446] = 1446, - [1447] = 70, + [1427] = 421, + [1428] = 489, + [1429] = 68, + [1430] = 502, + [1431] = 491, + [1432] = 490, + [1433] = 440, + [1434] = 68, + [1435] = 475, + [1436] = 485, + [1437] = 444, + [1438] = 453, + [1439] = 477, + [1440] = 471, + [1441] = 497, + [1442] = 448, + [1443] = 307, + [1444] = 426, + [1445] = 352, + [1446] = 357, + [1447] = 287, [1448] = 1448, - [1449] = 332, - [1450] = 333, - [1451] = 334, + [1449] = 362, + [1450] = 383, + [1451] = 1451, [1452] = 1452, - [1453] = 325, - [1454] = 1454, - [1455] = 351, - [1456] = 349, - [1457] = 326, - [1458] = 347, - [1459] = 346, - [1460] = 1460, - [1461] = 1461, - [1462] = 324, - [1463] = 68, - [1464] = 330, - [1465] = 335, - [1466] = 336, + [1453] = 452, + [1454] = 446, + [1455] = 1455, + [1456] = 1456, + [1457] = 70, + [1458] = 69, + [1459] = 419, + [1460] = 306, + [1461] = 363, + [1462] = 1462, + [1463] = 1463, + [1464] = 1464, + [1465] = 67, + [1466] = 1466, [1467] = 1467, - [1468] = 327, - [1469] = 337, - [1470] = 338, - [1471] = 339, - [1472] = 340, - [1473] = 341, + [1468] = 1468, + [1469] = 1469, + [1470] = 1470, + [1471] = 1471, + [1472] = 1472, + [1473] = 71, [1474] = 1474, - [1475] = 69, + [1475] = 1475, [1476] = 1476, - [1477] = 343, - [1478] = 321, + [1477] = 1477, + [1478] = 1478, [1479] = 1479, [1480] = 1480, [1481] = 1481, [1482] = 1482, [1483] = 1483, - [1484] = 231, + [1484] = 1484, [1485] = 1485, [1486] = 1486, [1487] = 1487, @@ -4932,41 +4944,41 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1490] = 1490, [1491] = 1491, [1492] = 1492, - [1493] = 262, + [1493] = 1493, [1494] = 1494, - [1495] = 1495, + [1495] = 451, [1496] = 1496, - [1497] = 454, + [1497] = 1497, [1498] = 1498, [1499] = 1499, [1500] = 1500, - [1501] = 1501, + [1501] = 441, [1502] = 1502, - [1503] = 1503, - [1504] = 1504, + [1503] = 233, + [1504] = 71, [1505] = 1505, [1506] = 1506, [1507] = 1507, [1508] = 1508, [1509] = 1509, - [1510] = 1510, - [1511] = 1511, - [1512] = 1512, - [1513] = 70, + [1510] = 497, + [1511] = 502, + [1512] = 499, + [1513] = 495, [1514] = 1514, - [1515] = 1515, + [1515] = 494, [1516] = 1516, - [1517] = 1517, - [1518] = 1518, - [1519] = 1519, - [1520] = 71, + [1517] = 491, + [1518] = 490, + [1519] = 489, + [1520] = 485, [1521] = 1521, - [1522] = 1522, + [1522] = 446, [1523] = 1523, - [1524] = 1524, + [1524] = 68, [1525] = 1525, [1526] = 1526, - [1527] = 1527, + [1527] = 391, [1528] = 1528, [1529] = 1529, [1530] = 1530, @@ -4974,39 +4986,39 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1532] = 1532, [1533] = 1533, [1534] = 1534, - [1535] = 1535, - [1536] = 1536, + [1535] = 426, + [1536] = 477, [1537] = 1537, - [1538] = 1538, - [1539] = 1539, - [1540] = 1540, + [1538] = 475, + [1539] = 471, + [1540] = 470, [1541] = 1541, [1542] = 1542, [1543] = 1543, [1544] = 1544, [1545] = 1545, [1546] = 1546, - [1547] = 1547, + [1547] = 452, [1548] = 1548, [1549] = 1549, [1550] = 1550, [1551] = 1551, [1552] = 1552, - [1553] = 1553, + [1553] = 440, [1554] = 1554, - [1555] = 1555, - [1556] = 1556, - [1557] = 1557, + [1555] = 453, + [1556] = 421, + [1557] = 448, [1558] = 1558, [1559] = 1559, [1560] = 1560, [1561] = 1561, - [1562] = 1562, + [1562] = 362, [1563] = 1563, [1564] = 1564, - [1565] = 1565, + [1565] = 444, [1566] = 1566, - [1567] = 1567, + [1567] = 307, [1568] = 1568, [1569] = 1569, [1570] = 1570, @@ -5015,3065 +5027,3138 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1573] = 1573, [1574] = 1574, [1575] = 1575, - [1576] = 71, - [1577] = 70, - [1578] = 67, - [1579] = 68, - [1580] = 69, - [1581] = 70, + [1576] = 352, + [1577] = 1577, + [1578] = 1578, + [1579] = 1579, + [1580] = 1580, + [1581] = 1581, [1582] = 1582, [1583] = 1583, - [1584] = 70, - [1585] = 1585, + [1584] = 1584, + [1585] = 409, [1586] = 1586, [1587] = 1587, [1588] = 1588, - [1589] = 343, - [1590] = 333, - [1591] = 326, - [1592] = 325, - [1593] = 332, - [1594] = 332, - [1595] = 343, - [1596] = 333, - [1597] = 325, - [1598] = 326, - [1599] = 325, - [1600] = 326, - [1601] = 333, - [1602] = 343, - [1603] = 332, + [1589] = 1589, + [1590] = 1590, + [1591] = 1591, + [1592] = 1592, + [1593] = 1593, + [1594] = 1594, + [1595] = 1595, + [1596] = 1596, + [1597] = 1597, + [1598] = 1598, + [1599] = 1599, + [1600] = 1600, + [1601] = 357, + [1602] = 1602, + [1603] = 1603, [1604] = 1604, - [1605] = 326, - [1606] = 332, - [1607] = 333, - [1608] = 343, - [1609] = 325, - [1610] = 223, - [1611] = 224, - [1612] = 225, - [1613] = 226, - [1614] = 227, - [1615] = 228, - [1616] = 221, - [1617] = 217, - [1618] = 218, - [1619] = 220, - [1620] = 222, - [1621] = 214, - [1622] = 215, - [1623] = 230, - [1624] = 231, - [1625] = 229, - [1626] = 262, - [1627] = 334, - [1628] = 351, - [1629] = 288, - [1630] = 330, - [1631] = 220, - [1632] = 329, - [1633] = 281, - [1634] = 335, - [1635] = 336, - [1636] = 219, - [1637] = 337, - [1638] = 338, - [1639] = 339, - [1640] = 340, - [1641] = 341, - [1642] = 345, - [1643] = 222, - [1644] = 228, - [1645] = 346, - [1646] = 347, - [1647] = 349, - [1648] = 331, - [1649] = 227, - [1650] = 225, - [1651] = 288, + [1605] = 1605, + [1606] = 383, + [1607] = 1607, + [1608] = 1608, + [1609] = 1609, + [1610] = 1610, + [1611] = 253, + [1612] = 1612, + [1613] = 1613, + [1614] = 1614, + [1615] = 69, + [1616] = 67, + [1617] = 1617, + [1618] = 71, + [1619] = 70, + [1620] = 68, + [1621] = 1621, + [1622] = 1622, + [1623] = 1623, + [1624] = 1624, + [1625] = 71, + [1626] = 71, + [1627] = 1627, + [1628] = 1628, + [1629] = 307, + [1630] = 426, + [1631] = 489, + [1632] = 421, + [1633] = 440, + [1634] = 426, + [1635] = 421, + [1636] = 440, + [1637] = 307, + [1638] = 489, + [1639] = 426, + [1640] = 1640, + [1641] = 440, + [1642] = 421, + [1643] = 489, + [1644] = 440, + [1645] = 426, + [1646] = 307, + [1647] = 421, + [1648] = 307, + [1649] = 489, + [1650] = 218, + [1651] = 222, [1652] = 223, - [1653] = 1653, - [1654] = 352, - [1655] = 357, - [1656] = 277, - [1657] = 358, - [1658] = 359, - [1659] = 267, - [1660] = 224, - [1661] = 218, - [1662] = 327, - [1663] = 410, - [1664] = 300, - [1665] = 1665, - [1666] = 1665, - [1667] = 362, - [1668] = 221, - [1669] = 217, - [1670] = 495, - [1671] = 375, - [1672] = 392, - [1673] = 462, - [1674] = 474, - [1675] = 475, - [1676] = 365, - [1677] = 480, - [1678] = 313, - [1679] = 436, - [1680] = 435, - [1681] = 348, - [1682] = 344, - [1683] = 476, - [1684] = 491, - [1685] = 376, - [1686] = 455, - [1687] = 432, - [1688] = 306, - [1689] = 380, - [1690] = 425, - [1691] = 385, - [1692] = 402, - [1693] = 277, - [1694] = 310, - [1695] = 404, - [1696] = 433, - [1697] = 434, - [1698] = 459, - [1699] = 307, - [1700] = 472, - [1701] = 442, - [1702] = 229, - [1703] = 230, - [1704] = 447, - [1705] = 342, - [1706] = 454, - [1707] = 362, - [1708] = 231, - [1709] = 262, - [1710] = 314, - [1711] = 319, - [1712] = 277, - [1713] = 311, - [1714] = 316, - [1715] = 315, - [1716] = 309, - [1717] = 324, - [1718] = 360, - [1719] = 399, - [1720] = 384, - [1721] = 323, - [1722] = 322, - [1723] = 411, - [1724] = 321, - [1725] = 458, - [1726] = 412, - [1727] = 414, - [1728] = 415, - [1729] = 421, - [1730] = 426, - [1731] = 370, - [1732] = 427, - [1733] = 440, - [1734] = 443, - [1735] = 444, - [1736] = 318, - [1737] = 445, - [1738] = 461, - [1739] = 457, - [1740] = 481, - [1741] = 483, - [1742] = 500, - [1743] = 460, - [1744] = 484, - [1745] = 485, - [1746] = 319, - [1747] = 496, - [1748] = 320, - [1749] = 350, - [1750] = 493, - [1751] = 221, - [1752] = 277, - [1753] = 410, - [1754] = 281, - [1755] = 222, - [1756] = 362, - [1757] = 228, - [1758] = 227, - [1759] = 225, - [1760] = 267, - [1761] = 223, - [1762] = 300, - [1763] = 222, - [1764] = 228, - [1765] = 227, - [1766] = 217, - [1767] = 225, - [1768] = 224, - [1769] = 223, - [1770] = 221, - [1771] = 1771, - [1772] = 217, - [1773] = 220, - [1774] = 218, - [1775] = 220, - [1776] = 215, - [1777] = 224, - [1778] = 215, - [1779] = 218, - [1780] = 399, - [1781] = 313, - [1782] = 321, - [1783] = 329, - [1784] = 219, - [1785] = 330, - [1786] = 331, - [1787] = 334, - [1788] = 322, - [1789] = 323, - [1790] = 319, - [1791] = 229, - [1792] = 230, - [1793] = 327, - [1794] = 217, - [1795] = 318, - [1796] = 335, - [1797] = 223, - [1798] = 336, - [1799] = 225, - [1800] = 337, - [1801] = 338, - [1802] = 339, - [1803] = 340, - [1804] = 341, - [1805] = 345, - [1806] = 227, - [1807] = 228, - [1808] = 222, - [1809] = 220, - [1810] = 324, - [1811] = 392, - [1812] = 462, - [1813] = 362, - [1814] = 474, - [1815] = 346, - [1816] = 347, - [1817] = 349, - [1818] = 351, - [1819] = 475, - [1820] = 262, - [1821] = 230, - [1822] = 229, - [1823] = 476, - [1824] = 455, - [1825] = 352, - [1826] = 357, - [1827] = 310, - [1828] = 412, - [1829] = 433, - [1830] = 358, - [1831] = 359, - [1832] = 414, - [1833] = 491, - [1834] = 434, - [1835] = 459, - [1836] = 307, - [1837] = 472, - [1838] = 442, - [1839] = 311, - [1840] = 316, - [1841] = 315, - [1842] = 309, - [1843] = 360, - [1844] = 415, - [1845] = 384, - [1846] = 421, - [1847] = 370, - [1848] = 320, - [1849] = 343, - [1850] = 350, - [1851] = 402, - [1852] = 425, - [1853] = 306, - [1854] = 432, - [1855] = 435, - [1856] = 436, - [1857] = 457, - [1858] = 458, - [1859] = 461, - [1860] = 426, - [1861] = 480, - [1862] = 481, - [1863] = 483, - [1864] = 500, - [1865] = 333, + [1653] = 224, + [1654] = 225, + [1655] = 217, + [1656] = 226, + [1657] = 228, + [1658] = 227, + [1659] = 214, + [1660] = 219, + [1661] = 220, + [1662] = 253, + [1663] = 213, + [1664] = 229, + [1665] = 230, + [1666] = 233, + [1667] = 491, + [1668] = 223, + [1669] = 287, + [1670] = 444, + [1671] = 446, + [1672] = 238, + [1673] = 448, + [1674] = 257, + [1675] = 218, + [1676] = 453, + [1677] = 219, + [1678] = 220, + [1679] = 222, + [1680] = 257, + [1681] = 470, + [1682] = 471, + [1683] = 475, + [1684] = 221, + [1685] = 477, + [1686] = 1686, + [1687] = 485, + [1688] = 490, + [1689] = 494, + [1690] = 495, + [1691] = 499, + [1692] = 502, + [1693] = 497, + [1694] = 1694, + [1695] = 1694, + [1696] = 300, + [1697] = 452, + [1698] = 363, + [1699] = 383, + [1700] = 362, + [1701] = 227, + [1702] = 352, + [1703] = 357, + [1704] = 224, + [1705] = 228, + [1706] = 226, + [1707] = 225, + [1708] = 240, + [1709] = 410, + [1710] = 406, + [1711] = 501, + [1712] = 359, + [1713] = 358, + [1714] = 331, + [1715] = 312, + [1716] = 320, + [1717] = 350, + [1718] = 441, + [1719] = 402, + [1720] = 460, + [1721] = 326, + [1722] = 425, + [1723] = 428, + [1724] = 339, + [1725] = 432, + [1726] = 435, + [1727] = 436, + [1728] = 457, + [1729] = 458, + [1730] = 391, + [1731] = 461, + [1732] = 253, + [1733] = 233, + [1734] = 409, + [1735] = 365, + [1736] = 476, + [1737] = 480, + [1738] = 481, + [1739] = 330, + [1740] = 483, + [1741] = 238, + [1742] = 348, + [1743] = 484, + [1744] = 335, + [1745] = 500, + [1746] = 363, + [1747] = 372, + [1748] = 332, + [1749] = 338, + [1750] = 382, + [1751] = 375, + [1752] = 238, + [1753] = 378, + [1754] = 230, + [1755] = 455, + [1756] = 385, + [1757] = 388, + [1758] = 404, + [1759] = 473, + [1760] = 434, + [1761] = 459, + [1762] = 442, + [1763] = 449, + [1764] = 451, + [1765] = 369, + [1766] = 498, + [1767] = 496, + [1768] = 465, + [1769] = 406, + [1770] = 487, + [1771] = 486, + [1772] = 469, + [1773] = 324, + [1774] = 340, + [1775] = 474, + [1776] = 344, + [1777] = 309, + [1778] = 229, + [1779] = 419, + [1780] = 306, + [1781] = 433, + [1782] = 414, + [1783] = 472, + [1784] = 346, + [1785] = 413, + [1786] = 411, + [1787] = 399, + [1788] = 394, + [1789] = 393, + [1790] = 379, + [1791] = 225, + [1792] = 227, + [1793] = 219, + [1794] = 228, + [1795] = 226, + [1796] = 225, + [1797] = 224, + [1798] = 223, + [1799] = 1799, + [1800] = 287, + [1801] = 238, + [1802] = 219, + [1803] = 218, + [1804] = 240, + [1805] = 227, + [1806] = 223, + [1807] = 220, + [1808] = 220, + [1809] = 363, + [1810] = 224, + [1811] = 218, + [1812] = 226, + [1813] = 300, + [1814] = 222, + [1815] = 410, + [1816] = 213, + [1817] = 213, + [1818] = 222, + [1819] = 228, + [1820] = 233, + [1821] = 358, + [1822] = 253, + [1823] = 229, + [1824] = 230, + [1825] = 221, + [1826] = 221, + [1827] = 1827, + [1828] = 220, + [1829] = 219, + [1830] = 426, + [1831] = 307, + [1832] = 451, + [1833] = 421, + [1834] = 440, + [1835] = 489, + [1836] = 340, + [1837] = 344, + [1838] = 346, + [1839] = 391, + [1840] = 379, + [1841] = 393, + [1842] = 394, + [1843] = 399, + [1844] = 411, + [1845] = 413, + [1846] = 414, + [1847] = 433, + [1848] = 352, + [1849] = 486, + [1850] = 487, + [1851] = 496, + [1852] = 409, + [1853] = 498, + [1854] = 501, + [1855] = 357, + [1856] = 449, + [1857] = 442, + [1858] = 434, + [1859] = 404, + [1860] = 388, + [1861] = 385, + [1862] = 362, + [1863] = 382, + [1864] = 383, + [1865] = 324, [1866] = 332, - [1867] = 314, - [1868] = 427, - [1869] = 342, - [1870] = 344, - [1871] = 319, - [1872] = 348, - [1873] = 365, - [1874] = 231, - [1875] = 375, - [1876] = 376, - [1877] = 380, - [1878] = 385, - [1879] = 404, - [1880] = 447, - [1881] = 219, - [1882] = 262, - [1883] = 496, - [1884] = 454, - [1885] = 495, - [1886] = 493, - [1887] = 485, - [1888] = 231, - [1889] = 484, - [1890] = 326, - [1891] = 325, - [1892] = 411, - [1893] = 460, - [1894] = 445, - [1895] = 1895, - [1896] = 444, - [1897] = 443, - [1898] = 440, - [1899] = 267, - [1900] = 281, - [1901] = 1901, - [1902] = 1902, - [1903] = 962, - [1904] = 267, - [1905] = 219, - [1906] = 219, - [1907] = 300, - [1908] = 300, - [1909] = 281, - [1910] = 219, - [1911] = 1911, - [1912] = 362, - [1913] = 426, - [1914] = 445, - [1915] = 460, - [1916] = 345, - [1917] = 329, - [1918] = 359, - [1919] = 277, - [1920] = 362, - [1921] = 362, - [1922] = 352, - [1923] = 341, - [1924] = 362, - [1925] = 495, - [1926] = 1926, - [1927] = 319, - [1928] = 496, - [1929] = 320, - [1930] = 370, - [1931] = 484, - [1932] = 485, - [1933] = 447, - [1934] = 277, - [1935] = 411, - [1936] = 404, - [1937] = 340, - [1938] = 493, - [1939] = 309, - [1940] = 375, - [1941] = 495, - [1942] = 444, - [1943] = 410, - [1944] = 472, - [1945] = 365, - [1946] = 443, - [1947] = 496, - [1948] = 307, - [1949] = 440, - [1950] = 427, - [1951] = 392, - [1952] = 462, - [1953] = 426, - [1954] = 491, - [1955] = 421, - [1956] = 415, - [1957] = 410, - [1958] = 474, - [1959] = 475, - [1960] = 491, - [1961] = 454, - [1962] = 476, - [1963] = 414, - [1964] = 412, - [1965] = 313, - [1966] = 324, - [1967] = 346, - [1968] = 347, - [1969] = 447, - [1970] = 384, - [1971] = 349, - [1972] = 351, - [1973] = 350, - [1974] = 352, - [1975] = 474, - [1976] = 476, - [1977] = 399, - [1978] = 359, - [1979] = 442, - [1980] = 358, - [1981] = 277, - [1982] = 404, - [1983] = 362, - [1984] = 360, - [1985] = 335, - [1986] = 357, - [1987] = 380, - [1988] = 376, - [1989] = 357, - [1990] = 411, - [1991] = 385, - [1992] = 433, - [1993] = 434, - [1994] = 459, - [1995] = 342, - [1996] = 358, - [1997] = 375, - [1998] = 365, - [1999] = 348, - [2000] = 321, - [2001] = 344, - [2002] = 351, - [2003] = 319, - [2004] = 349, - [2005] = 347, - [2006] = 346, - [2007] = 319, - [2008] = 342, - [2009] = 314, - [2010] = 412, - [2011] = 315, - [2012] = 493, - [2013] = 414, - [2014] = 339, - [2015] = 338, - [2016] = 318, - [2017] = 324, - [2018] = 384, - [2019] = 314, - [2020] = 500, - [2021] = 483, - [2022] = 392, - [2023] = 462, - [2024] = 427, - [2025] = 313, - [2026] = 370, - [2027] = 440, - [2028] = 475, - [2029] = 345, - [2030] = 443, - [2031] = 444, - [2032] = 341, - [2033] = 340, - [2034] = 339, - [2035] = 455, - [2036] = 338, - [2037] = 337, - [2038] = 481, - [2039] = 480, - [2040] = 445, - [2041] = 461, - [2042] = 458, - [2043] = 457, - [2044] = 337, - [2045] = 336, - [2046] = 436, - [2047] = 435, - [2048] = 310, - [2049] = 432, - [2050] = 327, - [2051] = 335, - [2052] = 306, - [2053] = 2053, - [2054] = 2054, - [2055] = 484, - [2056] = 307, - [2057] = 472, - [2058] = 442, - [2059] = 318, - [2060] = 425, - [2061] = 485, - [2062] = 316, - [2063] = 310, - [2064] = 425, - [2065] = 336, - [2066] = 311, - [2067] = 316, - [2068] = 315, - [2069] = 309, - [2070] = 306, - [2071] = 327, - [2072] = 321, - [2073] = 360, - [2074] = 399, - [2075] = 329, - [2076] = 454, - [2077] = 459, - [2078] = 330, - [2079] = 331, - [2080] = 311, - [2081] = 320, - [2082] = 334, - [2083] = 415, - [2084] = 350, - [2085] = 322, - [2086] = 323, - [2087] = 322, - [2088] = 500, - [2089] = 334, - [2090] = 455, - [2091] = 323, - [2092] = 344, - [2093] = 348, - [2094] = 331, - [2095] = 402, - [2096] = 421, - [2097] = 433, - [2098] = 460, - [2099] = 410, - [2100] = 330, - [2101] = 376, - [2102] = 319, - [2103] = 432, - [2104] = 435, - [2105] = 436, - [2106] = 457, - [2107] = 458, - [2108] = 461, - [2109] = 434, - [2110] = 402, - [2111] = 480, - [2112] = 481, - [2113] = 483, - [2114] = 380, - [2115] = 385, - [2116] = 333, - [2117] = 325, - [2118] = 326, - [2119] = 343, - [2120] = 332, - [2121] = 2121, - [2122] = 224, - [2123] = 221, - [2124] = 218, - [2125] = 2125, - [2126] = 230, - [2127] = 229, - [2128] = 300, - [2129] = 2129, - [2130] = 267, - [2131] = 2131, - [2132] = 262, - [2133] = 231, - [2134] = 2134, - [2135] = 231, - [2136] = 2136, - [2137] = 2137, - [2138] = 2138, - [2139] = 262, - [2140] = 2140, - [2141] = 281, - [2142] = 231, - [2143] = 2143, - [2144] = 362, - [2145] = 262, - [2146] = 348, - [2147] = 412, - [2148] = 415, - [2149] = 421, - [2150] = 426, - [2151] = 427, - [2152] = 440, - [2153] = 443, - [2154] = 444, - [2155] = 445, - [2156] = 460, - [2157] = 484, - [2158] = 485, - [2159] = 493, - [2160] = 495, - [2161] = 496, - [2162] = 321, - [2163] = 2163, - [2164] = 447, - [2165] = 404, - [2166] = 385, - [2167] = 380, - [2168] = 376, - [2169] = 227, - [2170] = 375, - [2171] = 365, - [2172] = 329, - [2173] = 225, - [2174] = 344, - [2175] = 342, - [2176] = 314, - [2177] = 318, - [2178] = 359, - [2179] = 358, - [2180] = 476, - [2181] = 500, - [2182] = 475, - [2183] = 483, - [2184] = 474, - [2185] = 357, - [2186] = 223, - [2187] = 481, - [2188] = 480, - [2189] = 352, - [2190] = 461, - [2191] = 458, - [2192] = 457, - [2193] = 325, - [2194] = 436, - [2195] = 435, - [2196] = 411, - [2197] = 454, - [2198] = 2198, - [2199] = 330, - [2200] = 432, - [2201] = 351, - [2202] = 349, - [2203] = 347, - [2204] = 346, - [2205] = 306, - [2206] = 217, - [2207] = 414, - [2208] = 425, - [2209] = 324, - [2210] = 343, - [2211] = 402, - [2212] = 332, - [2213] = 333, - [2214] = 455, - [2215] = 350, - [2216] = 326, - [2217] = 331, - [2218] = 491, - [2219] = 2219, - [2220] = 320, - [2221] = 370, - [2222] = 2222, - [2223] = 313, - [2224] = 345, - [2225] = 220, - [2226] = 384, - [2227] = 341, - [2228] = 340, - [2229] = 339, - [2230] = 338, - [2231] = 337, - [2232] = 222, - [2233] = 336, - [2234] = 399, - [2235] = 335, - [2236] = 360, - [2237] = 462, - [2238] = 309, - [2239] = 315, - [2240] = 316, - [2241] = 392, - [2242] = 334, - [2243] = 311, - [2244] = 327, - [2245] = 322, - [2246] = 442, - [2247] = 472, - [2248] = 319, - [2249] = 307, - [2250] = 459, - [2251] = 434, - [2252] = 433, - [2253] = 362, - [2254] = 310, - [2255] = 323, - [2256] = 228, - [2257] = 2257, - [2258] = 2258, - [2259] = 277, - [2260] = 217, - [2261] = 220, - [2262] = 231, - [2263] = 218, - [2264] = 228, - [2265] = 222, - [2266] = 2266, - [2267] = 1122, - [2268] = 224, - [2269] = 225, - [2270] = 221, - [2271] = 1124, - [2272] = 262, - [2273] = 223, - [2274] = 227, - [2275] = 410, - [2276] = 230, - [2277] = 229, - [2278] = 2278, - [2279] = 300, - [2280] = 218, - [2281] = 410, - [2282] = 224, - [2283] = 281, - [2284] = 267, - [2285] = 221, - [2286] = 277, - [2287] = 953, - [2288] = 223, - [2289] = 348, - [2290] = 359, - [2291] = 331, - [2292] = 358, - [2293] = 346, - [2294] = 347, - [2295] = 2295, - [2296] = 376, - [2297] = 349, - [2298] = 370, - [2299] = 339, - [2300] = 345, - [2301] = 219, - [2302] = 384, - [2303] = 2295, - [2304] = 436, - [2305] = 962, - [2306] = 225, - [2307] = 351, - [2308] = 227, - [2309] = 228, - [2310] = 222, - [2311] = 337, - [2312] = 334, - [2313] = 457, - [2314] = 2295, - [2315] = 229, - [2316] = 316, - [2317] = 311, + [1867] = 338, + [1868] = 339, + [1869] = 452, + [1870] = 500, + [1871] = 419, + [1872] = 306, + [1873] = 483, + [1874] = 481, + [1875] = 480, + [1876] = 461, + [1877] = 458, + [1878] = 457, + [1879] = 436, + [1880] = 435, + [1881] = 432, + [1882] = 428, + [1883] = 425, + [1884] = 402, + [1885] = 497, + [1886] = 502, + [1887] = 499, + [1888] = 495, + [1889] = 494, + [1890] = 491, + [1891] = 490, + [1892] = 350, + [1893] = 485, + [1894] = 320, + [1895] = 335, + [1896] = 330, + [1897] = 312, + [1898] = 331, + [1899] = 441, + [1900] = 359, + [1901] = 369, + [1902] = 372, + [1903] = 375, + [1904] = 378, + [1905] = 477, + [1906] = 475, + [1907] = 471, + [1908] = 470, + [1909] = 455, + [1910] = 459, + [1911] = 465, + [1912] = 469, + [1913] = 473, + [1914] = 474, + [1915] = 472, + [1916] = 453, + [1917] = 448, + [1918] = 348, + [1919] = 446, + [1920] = 444, + [1921] = 476, + [1922] = 460, + [1923] = 326, + [1924] = 365, + [1925] = 309, + [1926] = 406, + [1927] = 233, + [1928] = 406, + [1929] = 484, + [1930] = 363, + [1931] = 223, + [1932] = 224, + [1933] = 225, + [1934] = 226, + [1935] = 227, + [1936] = 230, + [1937] = 229, + [1938] = 253, + [1939] = 287, + [1940] = 287, + [1941] = 221, + [1942] = 1942, + [1943] = 1943, + [1944] = 1944, + [1945] = 961, + [1946] = 221, + [1947] = 221, + [1948] = 240, + [1949] = 300, + [1950] = 240, + [1951] = 300, + [1952] = 459, + [1953] = 476, + [1954] = 495, + [1955] = 494, + [1956] = 491, + [1957] = 480, + [1958] = 490, + [1959] = 461, + [1960] = 485, + [1961] = 458, + [1962] = 457, + [1963] = 436, + [1964] = 435, + [1965] = 432, + [1966] = 410, + [1967] = 428, + [1968] = 441, + [1969] = 425, + [1970] = 382, + [1971] = 312, + [1972] = 477, + [1973] = 475, + [1974] = 350, + [1975] = 411, + [1976] = 471, + [1977] = 320, + [1978] = 470, + [1979] = 453, + [1980] = 1980, + [1981] = 413, + [1982] = 448, + [1983] = 335, + [1984] = 331, + [1985] = 446, + [1986] = 444, + [1987] = 358, + [1988] = 359, + [1989] = 369, + [1990] = 372, + [1991] = 375, + [1992] = 378, + [1993] = 340, + [1994] = 344, + [1995] = 393, + [1996] = 394, + [1997] = 399, + [1998] = 411, + [1999] = 455, + [2000] = 459, + [2001] = 465, + [2002] = 469, + [2003] = 473, + [2004] = 413, + [2005] = 414, + [2006] = 474, + [2007] = 486, + [2008] = 487, + [2009] = 449, + [2010] = 406, + [2011] = 472, + [2012] = 442, + [2013] = 434, + [2014] = 348, + [2015] = 385, + [2016] = 388, + [2017] = 404, + [2018] = 476, + [2019] = 460, + [2020] = 326, + [2021] = 404, + [2022] = 388, + [2023] = 434, + [2024] = 365, + [2025] = 309, + [2026] = 399, + [2027] = 309, + [2028] = 365, + [2029] = 433, + [2030] = 442, + [2031] = 363, + [2032] = 394, + [2033] = 460, + [2034] = 324, + [2035] = 449, + [2036] = 486, + [2037] = 332, + [2038] = 393, + [2039] = 500, + [2040] = 348, + [2041] = 363, + [2042] = 306, + [2043] = 330, + [2044] = 419, + [2045] = 452, + [2046] = 383, + [2047] = 484, + [2048] = 363, + [2049] = 362, + [2050] = 451, + [2051] = 428, + [2052] = 357, + [2053] = 472, + [2054] = 425, + [2055] = 409, + [2056] = 238, + [2057] = 352, + [2058] = 2058, + [2059] = 451, + [2060] = 465, + [2061] = 414, + [2062] = 455, + [2063] = 2063, + [2064] = 391, + [2065] = 330, + [2066] = 312, + [2067] = 499, + [2068] = 502, + [2069] = 481, + [2070] = 475, + [2071] = 375, + [2072] = 372, + [2073] = 369, + [2074] = 332, + [2075] = 446, + [2076] = 448, + [2077] = 359, + [2078] = 358, + [2079] = 502, + [2080] = 453, + [2081] = 469, + [2082] = 473, + [2083] = 474, + [2084] = 379, + [2085] = 320, + [2086] = 470, + [2087] = 471, + [2088] = 350, + [2089] = 378, + [2090] = 483, + [2091] = 500, + [2092] = 477, + [2093] = 441, + [2094] = 346, + [2095] = 497, + [2096] = 339, + [2097] = 363, + [2098] = 406, + [2099] = 402, + [2100] = 344, + [2101] = 410, + [2102] = 340, + [2103] = 410, + [2104] = 238, + [2105] = 485, + [2106] = 490, + [2107] = 432, + [2108] = 435, + [2109] = 436, + [2110] = 444, + [2111] = 457, + [2112] = 458, + [2113] = 461, + [2114] = 491, + [2115] = 326, + [2116] = 494, + [2117] = 495, + [2118] = 499, + [2119] = 480, + [2120] = 481, + [2121] = 331, + [2122] = 483, + [2123] = 324, + [2124] = 363, + [2125] = 501, + [2126] = 391, + [2127] = 497, + [2128] = 338, + [2129] = 339, + [2130] = 338, + [2131] = 484, + [2132] = 487, + [2133] = 496, + [2134] = 382, + [2135] = 352, + [2136] = 385, + [2137] = 306, + [2138] = 498, + [2139] = 346, + [2140] = 379, + [2141] = 402, + [2142] = 406, + [2143] = 419, + [2144] = 452, + [2145] = 501, + [2146] = 498, + [2147] = 409, + [2148] = 496, + [2149] = 406, + [2150] = 383, + [2151] = 357, + [2152] = 238, + [2153] = 335, + [2154] = 362, + [2155] = 433, + [2156] = 489, + [2157] = 440, + [2158] = 426, + [2159] = 307, + [2160] = 421, + [2161] = 228, + [2162] = 2162, + [2163] = 222, + [2164] = 218, + [2165] = 230, + [2166] = 2166, + [2167] = 229, + [2168] = 233, + [2169] = 253, + [2170] = 233, + [2171] = 253, + [2172] = 300, + [2173] = 240, + [2174] = 2174, + [2175] = 2175, + [2176] = 363, + [2177] = 2177, + [2178] = 2178, + [2179] = 2179, + [2180] = 253, + [2181] = 233, + [2182] = 2182, + [2183] = 287, + [2184] = 2184, + [2185] = 2185, + [2186] = 344, + [2187] = 421, + [2188] = 220, + [2189] = 219, + [2190] = 224, + [2191] = 225, + [2192] = 451, + [2193] = 363, + [2194] = 453, + [2195] = 448, + [2196] = 226, + [2197] = 348, + [2198] = 227, + [2199] = 440, + [2200] = 335, + [2201] = 2201, + [2202] = 446, + [2203] = 444, + [2204] = 484, + [2205] = 476, + [2206] = 460, + [2207] = 326, + [2208] = 472, + [2209] = 2209, + [2210] = 474, + [2211] = 365, + [2212] = 309, + [2213] = 223, + [2214] = 2214, + [2215] = 473, + [2216] = 469, + [2217] = 465, + [2218] = 406, + [2219] = 340, + [2220] = 346, + [2221] = 391, + [2222] = 459, + [2223] = 379, + [2224] = 393, + [2225] = 394, + [2226] = 399, + [2227] = 411, + [2228] = 413, + [2229] = 414, + [2230] = 433, + [2231] = 352, + [2232] = 455, + [2233] = 486, + [2234] = 487, + [2235] = 496, + [2236] = 409, + [2237] = 498, + [2238] = 501, + [2239] = 357, + [2240] = 449, + [2241] = 442, + [2242] = 434, + [2243] = 404, + [2244] = 388, + [2245] = 385, + [2246] = 362, + [2247] = 382, + [2248] = 383, + [2249] = 324, + [2250] = 332, + [2251] = 338, + [2252] = 339, + [2253] = 452, + [2254] = 500, + [2255] = 419, + [2256] = 306, + [2257] = 470, + [2258] = 471, + [2259] = 483, + [2260] = 481, + [2261] = 480, + [2262] = 2262, + [2263] = 461, + [2264] = 458, + [2265] = 457, + [2266] = 475, + [2267] = 436, + [2268] = 435, + [2269] = 432, + [2270] = 428, + [2271] = 477, + [2272] = 425, + [2273] = 402, + [2274] = 497, + [2275] = 307, + [2276] = 378, + [2277] = 502, + [2278] = 499, + [2279] = 495, + [2280] = 494, + [2281] = 491, + [2282] = 490, + [2283] = 350, + [2284] = 485, + [2285] = 426, + [2286] = 320, + [2287] = 330, + [2288] = 312, + [2289] = 331, + [2290] = 441, + [2291] = 358, + [2292] = 359, + [2293] = 2293, + [2294] = 369, + [2295] = 375, + [2296] = 489, + [2297] = 372, + [2298] = 223, + [2299] = 1129, + [2300] = 219, + [2301] = 228, + [2302] = 220, + [2303] = 222, + [2304] = 233, + [2305] = 410, + [2306] = 2306, + [2307] = 218, + [2308] = 253, + [2309] = 1124, + [2310] = 224, + [2311] = 2311, + [2312] = 227, + [2313] = 226, + [2314] = 225, + [2315] = 238, + [2316] = 2316, + [2317] = 229, [2318] = 230, - [2319] = 2295, - [2320] = 461, - [2321] = 442, - [2322] = 472, - [2323] = 2295, - [2324] = 307, - [2325] = 414, - [2326] = 459, - [2327] = 223, - [2328] = 352, - [2329] = 434, - [2330] = 415, - [2331] = 421, - [2332] = 426, - [2333] = 433, - [2334] = 427, - [2335] = 2295, - [2336] = 225, - [2337] = 309, - [2338] = 440, - [2339] = 443, - [2340] = 444, - [2341] = 445, - [2342] = 460, - [2343] = 484, - [2344] = 227, - [2345] = 485, - [2346] = 322, - [2347] = 228, - [2348] = 310, - [2349] = 323, - [2350] = 319, - [2351] = 360, - [2352] = 493, - [2353] = 330, - [2354] = 222, - [2355] = 2295, - [2356] = 495, - [2357] = 357, - [2358] = 955, - [2359] = 399, - [2360] = 454, - [2361] = 262, - [2362] = 447, - [2363] = 404, - [2364] = 385, - [2365] = 380, - [2366] = 435, - [2367] = 375, - [2368] = 365, - [2369] = 412, - [2370] = 344, - [2371] = 455, - [2372] = 342, - [2373] = 491, - [2374] = 458, - [2375] = 476, - [2376] = 475, - [2377] = 220, - [2378] = 2295, - [2379] = 315, - [2380] = 2295, - [2381] = 314, - [2382] = 500, - [2383] = 474, - [2384] = 231, - [2385] = 336, - [2386] = 335, - [2387] = 313, - [2388] = 2295, - [2389] = 432, - [2390] = 320, - [2391] = 2295, - [2392] = 306, - [2393] = 350, - [2394] = 329, - [2395] = 217, - [2396] = 341, - [2397] = 462, - [2398] = 392, - [2399] = 411, - [2400] = 321, - [2401] = 483, - [2402] = 402, - [2403] = 362, - [2404] = 338, - [2405] = 2295, - [2406] = 327, - [2407] = 318, - [2408] = 2295, - [2409] = 324, - [2410] = 340, - [2411] = 220, - [2412] = 496, - [2413] = 481, - [2414] = 480, - [2415] = 425, - [2416] = 217, - [2417] = 277, - [2418] = 228, - [2419] = 267, - [2420] = 947, - [2421] = 67, - [2422] = 68, - [2423] = 220, - [2424] = 969, - [2425] = 978, - [2426] = 223, - [2427] = 977, - [2428] = 69, - [2429] = 410, - [2430] = 225, - [2431] = 362, - [2432] = 227, - [2433] = 410, - [2434] = 217, - [2435] = 222, - [2436] = 277, - [2437] = 972, - [2438] = 362, - [2439] = 217, - [2440] = 220, - [2441] = 300, - [2442] = 362, - [2443] = 224, - [2444] = 218, - [2445] = 223, - [2446] = 225, - [2447] = 281, - [2448] = 227, - [2449] = 228, - [2450] = 221, - [2451] = 222, - [2452] = 262, - [2453] = 474, - [2454] = 230, - [2455] = 229, - [2456] = 225, - [2457] = 227, - [2458] = 491, - [2459] = 220, - [2460] = 223, - [2461] = 319, - [2462] = 412, - [2463] = 414, - [2464] = 415, - [2465] = 318, - [2466] = 421, - [2467] = 426, - [2468] = 427, - [2469] = 440, - [2470] = 443, - [2471] = 444, - [2472] = 445, - [2473] = 460, - [2474] = 217, - [2475] = 327, - [2476] = 484, - [2477] = 485, - [2478] = 493, - [2479] = 321, - [2480] = 495, - [2481] = 496, - [2482] = 329, - [2483] = 447, - [2484] = 404, - [2485] = 385, - [2486] = 380, - [2487] = 376, - [2488] = 217, - [2489] = 392, - [2490] = 462, - [2491] = 220, - [2492] = 341, - [2493] = 953, - [2494] = 222, - [2495] = 330, - [2496] = 365, - [2497] = 331, - [2498] = 348, - [2499] = 223, - [2500] = 344, - [2501] = 342, - [2502] = 231, - [2503] = 314, - [2504] = 375, - [2505] = 334, - [2506] = 500, - [2507] = 322, - [2508] = 323, - [2509] = 483, - [2510] = 225, - [2511] = 481, - [2512] = 480, - [2513] = 319, - [2514] = 362, - [2515] = 228, - [2516] = 222, - [2517] = 475, - [2518] = 461, - [2519] = 228, - [2520] = 458, - [2521] = 457, - [2522] = 227, - [2523] = 436, - [2524] = 435, - [2525] = 432, - [2526] = 306, - [2527] = 425, - [2528] = 225, - [2529] = 223, - [2530] = 476, - [2531] = 402, - [2532] = 227, - [2533] = 359, - [2534] = 335, - [2535] = 358, - [2536] = 411, - [2537] = 228, - [2538] = 336, - [2539] = 454, - [2540] = 410, - [2541] = 337, - [2542] = 338, - [2543] = 339, - [2544] = 340, - [2545] = 350, - [2546] = 962, - [2547] = 345, - [2548] = 320, - [2549] = 370, - [2550] = 313, - [2551] = 384, - [2552] = 324, - [2553] = 399, - [2554] = 360, - [2555] = 309, - [2556] = 220, - [2557] = 315, - [2558] = 217, - [2559] = 316, - [2560] = 311, - [2561] = 346, - [2562] = 347, - [2563] = 349, - [2564] = 351, - [2565] = 442, - [2566] = 472, - [2567] = 307, - [2568] = 459, - [2569] = 434, - [2570] = 433, - [2571] = 2571, - [2572] = 310, - [2573] = 352, - [2574] = 277, - [2575] = 953, - [2576] = 357, - [2577] = 222, - [2578] = 455, - [2579] = 2579, - [2580] = 2580, - [2581] = 2579, - [2582] = 2579, - [2583] = 2580, - [2584] = 2580, - [2585] = 362, - [2586] = 2579, - [2587] = 2587, - [2588] = 2580, - [2589] = 2580, - [2590] = 2590, - [2591] = 2591, - [2592] = 2579, - [2593] = 2579, - [2594] = 2580, - [2595] = 2580, - [2596] = 319, - [2597] = 2580, - [2598] = 2579, - [2599] = 2579, - [2600] = 281, - [2601] = 2579, - [2602] = 219, - [2603] = 2580, - [2604] = 2580, - [2605] = 410, - [2606] = 2579, - [2607] = 2580, - [2608] = 2608, - [2609] = 219, - [2610] = 962, - [2611] = 267, - [2612] = 219, - [2613] = 2579, - [2614] = 2614, - [2615] = 2579, - [2616] = 2579, - [2617] = 277, - [2618] = 2580, - [2619] = 300, - [2620] = 434, + [2319] = 300, + [2320] = 287, + [2321] = 410, + [2322] = 238, + [2323] = 228, + [2324] = 218, + [2325] = 240, + [2326] = 954, + [2327] = 222, + [2328] = 2328, + [2329] = 324, + [2330] = 459, + [2331] = 2328, + [2332] = 2328, + [2333] = 409, + [2334] = 465, + [2335] = 402, + [2336] = 220, + [2337] = 350, + [2338] = 425, + [2339] = 428, + [2340] = 432, + [2341] = 320, + [2342] = 312, + [2343] = 352, + [2344] = 226, + [2345] = 225, + [2346] = 224, + [2347] = 219, + [2348] = 444, + [2349] = 223, + [2350] = 446, + [2351] = 363, + [2352] = 469, + [2353] = 473, + [2354] = 365, + [2355] = 474, + [2356] = 472, + [2357] = 348, + [2358] = 362, + [2359] = 378, + [2360] = 383, + [2361] = 961, + [2362] = 375, + [2363] = 2328, + [2364] = 448, + [2365] = 433, + [2366] = 436, + [2367] = 372, + [2368] = 223, + [2369] = 224, + [2370] = 2328, + [2371] = 227, + [2372] = 225, + [2373] = 226, + [2374] = 476, + [2375] = 357, + [2376] = 501, + [2377] = 460, + [2378] = 2328, + [2379] = 221, + [2380] = 340, + [2381] = 230, + [2382] = 452, + [2383] = 227, + [2384] = 457, + [2385] = 458, + [2386] = 461, + [2387] = 453, + [2388] = 2328, + [2389] = 470, + [2390] = 471, + [2391] = 331, + [2392] = 2328, + [2393] = 475, + [2394] = 477, + [2395] = 344, + [2396] = 346, + [2397] = 379, + [2398] = 393, + [2399] = 480, + [2400] = 2328, + [2401] = 394, + [2402] = 399, + [2403] = 411, + [2404] = 330, + [2405] = 485, + [2406] = 391, + [2407] = 2328, + [2408] = 358, + [2409] = 490, + [2410] = 491, + [2411] = 414, + [2412] = 413, + [2413] = 229, + [2414] = 435, + [2415] = 326, + [2416] = 441, + [2417] = 495, + [2418] = 499, + [2419] = 335, + [2420] = 502, + [2421] = 497, + [2422] = 2328, + [2423] = 481, + [2424] = 966, + [2425] = 2328, + [2426] = 494, + [2427] = 486, + [2428] = 2328, + [2429] = 455, + [2430] = 487, + [2431] = 406, + [2432] = 496, + [2433] = 498, + [2434] = 451, + [2435] = 449, + [2436] = 442, + [2437] = 434, + [2438] = 253, + [2439] = 359, + [2440] = 309, + [2441] = 404, + [2442] = 388, + [2443] = 233, + [2444] = 220, + [2445] = 219, + [2446] = 369, + [2447] = 484, + [2448] = 306, + [2449] = 483, + [2450] = 419, + [2451] = 385, + [2452] = 382, + [2453] = 500, + [2454] = 339, + [2455] = 338, + [2456] = 332, + [2457] = 223, + [2458] = 240, + [2459] = 287, + [2460] = 219, + [2461] = 410, + [2462] = 220, + [2463] = 227, + [2464] = 226, + [2465] = 225, + [2466] = 969, + [2467] = 224, + [2468] = 223, + [2469] = 218, + [2470] = 972, + [2471] = 363, + [2472] = 67, + [2473] = 238, + [2474] = 70, + [2475] = 69, + [2476] = 219, + [2477] = 220, + [2478] = 238, + [2479] = 227, + [2480] = 226, + [2481] = 222, + [2482] = 410, + [2483] = 225, + [2484] = 363, + [2485] = 973, + [2486] = 300, + [2487] = 224, + [2488] = 363, + [2489] = 228, + [2490] = 948, + [2491] = 977, + [2492] = 335, + [2493] = 253, + [2494] = 375, + [2495] = 340, + [2496] = 344, + [2497] = 346, + [2498] = 372, + [2499] = 458, + [2500] = 461, + [2501] = 379, + [2502] = 485, + [2503] = 393, + [2504] = 225, + [2505] = 394, + [2506] = 448, + [2507] = 399, + [2508] = 226, + [2509] = 227, + [2510] = 219, + [2511] = 476, + [2512] = 411, + [2513] = 413, + [2514] = 414, + [2515] = 433, + [2516] = 369, + [2517] = 219, + [2518] = 359, + [2519] = 220, + [2520] = 954, + [2521] = 358, + [2522] = 486, + [2523] = 460, + [2524] = 954, + [2525] = 487, + [2526] = 402, + [2527] = 496, + [2528] = 312, + [2529] = 406, + [2530] = 498, + [2531] = 326, + [2532] = 220, + [2533] = 501, + [2534] = 330, + [2535] = 320, + [2536] = 449, + [2537] = 223, + [2538] = 410, + [2539] = 365, + [2540] = 455, + [2541] = 453, + [2542] = 309, + [2543] = 475, + [2544] = 457, + [2545] = 442, + [2546] = 471, + [2547] = 425, + [2548] = 434, + [2549] = 459, + [2550] = 233, + [2551] = 404, + [2552] = 470, + [2553] = 388, + [2554] = 465, + [2555] = 378, + [2556] = 385, + [2557] = 331, + [2558] = 382, + [2559] = 406, + [2560] = 324, + [2561] = 363, + [2562] = 332, + [2563] = 391, + [2564] = 484, + [2565] = 469, + [2566] = 352, + [2567] = 473, + [2568] = 338, + [2569] = 339, + [2570] = 961, + [2571] = 474, + [2572] = 409, + [2573] = 220, + [2574] = 227, + [2575] = 226, + [2576] = 436, + [2577] = 357, + [2578] = 451, + [2579] = 223, + [2580] = 224, + [2581] = 362, + [2582] = 225, + [2583] = 225, + [2584] = 383, + [2585] = 224, + [2586] = 226, + [2587] = 452, + [2588] = 419, + [2589] = 306, + [2590] = 238, + [2591] = 223, + [2592] = 435, + [2593] = 472, + [2594] = 227, + [2595] = 444, + [2596] = 446, + [2597] = 477, + [2598] = 350, + [2599] = 224, + [2600] = 428, + [2601] = 483, + [2602] = 432, + [2603] = 481, + [2604] = 480, + [2605] = 500, + [2606] = 441, + [2607] = 348, + [2608] = 229, + [2609] = 2609, + [2610] = 497, + [2611] = 502, + [2612] = 499, + [2613] = 495, + [2614] = 494, + [2615] = 491, + [2616] = 219, + [2617] = 490, + [2618] = 230, + [2619] = 2619, + [2620] = 300, [2621] = 2621, - [2622] = 415, - [2623] = 384, - [2624] = 972, - [2625] = 2625, - [2626] = 313, - [2627] = 370, + [2622] = 406, + [2623] = 221, + [2624] = 2624, + [2625] = 2619, + [2626] = 2619, + [2627] = 961, [2628] = 2628, - [2629] = 225, - [2630] = 433, - [2631] = 460, - [2632] = 459, - [2633] = 421, - [2634] = 493, - [2635] = 227, - [2636] = 225, - [2637] = 223, - [2638] = 2621, - [2639] = 2639, - [2640] = 474, + [2629] = 2628, + [2630] = 2628, + [2631] = 221, + [2632] = 2619, + [2633] = 410, + [2634] = 2619, + [2635] = 2635, + [2636] = 2636, + [2637] = 238, + [2638] = 221, + [2639] = 2628, + [2640] = 2628, [2641] = 2628, - [2642] = 476, - [2643] = 410, - [2644] = 425, - [2645] = 2625, - [2646] = 306, - [2647] = 2621, - [2648] = 496, - [2649] = 495, - [2650] = 392, - [2651] = 375, - [2652] = 365, - [2653] = 342, - [2654] = 314, - [2655] = 500, - [2656] = 483, - [2657] = 481, - [2658] = 2639, - [2659] = 344, - [2660] = 348, - [2661] = 480, - [2662] = 461, - [2663] = 376, - [2664] = 380, - [2665] = 458, - [2666] = 385, - [2667] = 404, - [2668] = 447, - [2669] = 457, - [2670] = 2670, - [2671] = 436, - [2672] = 2639, - [2673] = 485, - [2674] = 484, - [2675] = 435, - [2676] = 227, - [2677] = 432, - [2678] = 445, - [2679] = 444, - [2680] = 443, - [2681] = 440, - [2682] = 427, - [2683] = 426, - [2684] = 231, - [2685] = 414, - [2686] = 412, - [2687] = 410, - [2688] = 228, - [2689] = 2628, - [2690] = 2690, - [2691] = 402, - [2692] = 359, - [2693] = 358, - [2694] = 411, - [2695] = 2621, - [2696] = 223, - [2697] = 229, - [2698] = 357, - [2699] = 228, - [2700] = 350, - [2701] = 2625, - [2702] = 2625, - [2703] = 352, - [2704] = 2704, - [2705] = 230, - [2706] = 351, - [2707] = 349, - [2708] = 347, - [2709] = 346, - [2710] = 324, - [2711] = 2628, - [2712] = 320, - [2713] = 345, - [2714] = 2621, - [2715] = 341, - [2716] = 340, - [2717] = 339, - [2718] = 338, - [2719] = 337, - [2720] = 222, - [2721] = 336, - [2722] = 2628, - [2723] = 335, - [2724] = 2625, - [2725] = 399, - [2726] = 2625, - [2727] = 2727, - [2728] = 323, - [2729] = 322, - [2730] = 334, - [2731] = 360, - [2732] = 309, - [2733] = 331, - [2734] = 330, - [2735] = 454, - [2736] = 329, - [2737] = 321, - [2738] = 315, - [2739] = 327, - [2740] = 316, - [2741] = 311, - [2742] = 318, - [2743] = 2628, - [2744] = 277, - [2745] = 2621, - [2746] = 2639, - [2747] = 262, - [2748] = 277, - [2749] = 2625, - [2750] = 2750, - [2751] = 442, - [2752] = 2621, - [2753] = 277, - [2754] = 472, - [2755] = 307, - [2756] = 2639, - [2757] = 2621, - [2758] = 410, - [2759] = 310, - [2760] = 2639, - [2761] = 2621, - [2762] = 2628, - [2763] = 455, - [2764] = 491, - [2765] = 2639, - [2766] = 2639, + [2642] = 2619, + [2643] = 2619, + [2644] = 287, + [2645] = 2628, + [2646] = 240, + [2647] = 2619, + [2648] = 2628, + [2649] = 2619, + [2650] = 2619, + [2651] = 2651, + [2652] = 2628, + [2653] = 363, + [2654] = 2619, + [2655] = 2628, + [2656] = 2619, + [2657] = 2628, + [2658] = 2628, + [2659] = 2628, + [2660] = 2660, + [2661] = 357, + [2662] = 382, + [2663] = 338, + [2664] = 339, + [2665] = 483, + [2666] = 481, + [2667] = 480, + [2668] = 500, + [2669] = 309, + [2670] = 458, + [2671] = 457, + [2672] = 332, + [2673] = 324, + [2674] = 2674, + [2675] = 436, + [2676] = 388, + [2677] = 404, + [2678] = 434, + [2679] = 442, + [2680] = 449, + [2681] = 435, + [2682] = 432, + [2683] = 233, + [2684] = 410, + [2685] = 487, + [2686] = 486, + [2687] = 402, + [2688] = 2688, + [2689] = 2689, + [2690] = 414, + [2691] = 413, + [2692] = 411, + [2693] = 399, + [2694] = 394, + [2695] = 393, + [2696] = 350, + [2697] = 344, + [2698] = 340, + [2699] = 320, + [2700] = 2660, + [2701] = 2701, + [2702] = 2674, + [2703] = 358, + [2704] = 359, + [2705] = 335, + [2706] = 369, + [2707] = 372, + [2708] = 375, + [2709] = 378, + [2710] = 2710, + [2711] = 455, + [2712] = 498, + [2713] = 459, + [2714] = 2714, + [2715] = 2660, + [2716] = 465, + [2717] = 2701, + [2718] = 2660, + [2719] = 472, + [2720] = 2674, + [2721] = 2701, + [2722] = 2710, + [2723] = 348, + [2724] = 2701, + [2725] = 484, + [2726] = 460, + [2727] = 2710, + [2728] = 2710, + [2729] = 2729, + [2730] = 2674, + [2731] = 365, + [2732] = 2732, + [2733] = 220, + [2734] = 2701, + [2735] = 2701, + [2736] = 227, + [2737] = 2701, + [2738] = 226, + [2739] = 219, + [2740] = 2660, + [2741] = 410, + [2742] = 451, + [2743] = 2710, + [2744] = 225, + [2745] = 2674, + [2746] = 2674, + [2747] = 253, + [2748] = 433, + [2749] = 2749, + [2750] = 2701, + [2751] = 2701, + [2752] = 444, + [2753] = 446, + [2754] = 238, + [2755] = 224, + [2756] = 379, + [2757] = 448, + [2758] = 223, + [2759] = 428, + [2760] = 2710, + [2761] = 2660, + [2762] = 453, + [2763] = 2660, + [2764] = 2764, + [2765] = 470, + [2766] = 471, [2767] = 475, - [2768] = 2639, - [2769] = 2625, - [2770] = 219, - [2771] = 462, - [2772] = 220, - [2773] = 2628, - [2774] = 2621, - [2775] = 2628, - [2776] = 2621, - [2777] = 222, - [2778] = 2639, - [2779] = 2639, - [2780] = 2780, - [2781] = 2625, - [2782] = 217, - [2783] = 2639, - [2784] = 362, - [2785] = 410, - [2786] = 2625, - [2787] = 2787, - [2788] = 2625, - [2789] = 2628, - [2790] = 2621, - [2791] = 2591, - [2792] = 277, - [2793] = 217, - [2794] = 220, - [2795] = 2795, - [2796] = 2628, - [2797] = 2625, - [2798] = 2625, - [2799] = 362, - [2800] = 362, - [2801] = 2801, - [2802] = 2628, - [2803] = 2625, - [2804] = 2804, - [2805] = 2639, - [2806] = 281, - [2807] = 2807, - [2808] = 2807, - [2809] = 2809, - [2810] = 2810, - [2811] = 2807, - [2812] = 2812, - [2813] = 2810, - [2814] = 319, - [2815] = 1392, - [2816] = 2807, - [2817] = 2817, - [2818] = 2807, + [2768] = 477, + [2769] = 441, + [2770] = 2660, + [2771] = 2660, + [2772] = 485, + [2773] = 461, + [2774] = 490, + [2775] = 491, + [2776] = 494, + [2777] = 495, + [2778] = 499, + [2779] = 2710, + [2780] = 502, + [2781] = 497, + [2782] = 2710, + [2783] = 2710, + [2784] = 425, + [2785] = 2674, + [2786] = 306, + [2787] = 419, + [2788] = 452, + [2789] = 331, + [2790] = 410, + [2791] = 383, + [2792] = 362, + [2793] = 385, + [2794] = 409, + [2795] = 221, + [2796] = 352, + [2797] = 312, + [2798] = 2660, + [2799] = 391, + [2800] = 346, + [2801] = 238, + [2802] = 2674, + [2803] = 501, + [2804] = 2660, + [2805] = 223, + [2806] = 330, + [2807] = 219, + [2808] = 220, + [2809] = 2701, + [2810] = 2674, + [2811] = 496, + [2812] = 2660, + [2813] = 2701, + [2814] = 474, + [2815] = 473, + [2816] = 2710, + [2817] = 2701, + [2818] = 2710, [2819] = 2819, - [2820] = 2807, - [2821] = 2807, - [2822] = 2807, + [2820] = 2701, + [2821] = 469, + [2822] = 2701, [2823] = 2823, - [2824] = 2810, - [2825] = 2807, - [2826] = 300, - [2827] = 1902, - [2828] = 2807, - [2829] = 2807, - [2830] = 2807, - [2831] = 2810, - [2832] = 2807, - [2833] = 443, - [2834] = 485, - [2835] = 454, - [2836] = 384, - [2837] = 68, - [2838] = 2838, - [2839] = 2838, - [2840] = 2838, - [2841] = 2838, - [2842] = 434, - [2843] = 2838, - [2844] = 313, - [2845] = 370, - [2846] = 2838, - [2847] = 459, - [2848] = 69, - [2849] = 425, - [2850] = 306, - [2851] = 2838, - [2852] = 433, - [2853] = 2838, - [2854] = 500, - [2855] = 344, - [2856] = 67, - [2857] = 348, - [2858] = 376, - [2859] = 67, - [2860] = 380, - [2861] = 2861, - [2862] = 69, - [2863] = 445, - [2864] = 2838, - [2865] = 474, - [2866] = 2121, - [2867] = 476, - [2868] = 385, - [2869] = 404, - [2870] = 68, - [2871] = 2838, - [2872] = 447, - [2873] = 412, - [2874] = 414, - [2875] = 426, - [2876] = 427, - [2877] = 440, - [2878] = 2878, - [2879] = 2838, - [2880] = 2838, - [2881] = 444, - [2882] = 484, - [2883] = 2838, - [2884] = 2884, - [2885] = 1396, - [2886] = 2886, - [2887] = 2884, - [2888] = 1389, - [2889] = 2886, - [2890] = 1398, + [2824] = 326, + [2825] = 2660, + [2826] = 229, + [2827] = 230, + [2828] = 2701, + [2829] = 2674, + [2830] = 2651, + [2831] = 2831, + [2832] = 224, + [2833] = 2674, + [2834] = 2710, + [2835] = 363, + [2836] = 410, + [2837] = 363, + [2838] = 227, + [2839] = 363, + [2840] = 225, + [2841] = 226, + [2842] = 2674, + [2843] = 238, + [2844] = 476, + [2845] = 973, + [2846] = 238, + [2847] = 300, + [2848] = 2848, + [2849] = 2849, + [2850] = 2848, + [2851] = 406, + [2852] = 2848, + [2853] = 1396, + [2854] = 2848, + [2855] = 2848, + [2856] = 2849, + [2857] = 2848, + [2858] = 2848, + [2859] = 2859, + [2860] = 2848, + [2861] = 240, + [2862] = 2849, + [2863] = 2863, + [2864] = 2848, + [2865] = 2848, + [2866] = 2866, + [2867] = 2867, + [2868] = 2848, + [2869] = 1944, + [2870] = 2870, + [2871] = 2849, + [2872] = 2848, + [2873] = 2848, + [2874] = 500, + [2875] = 2162, + [2876] = 2876, + [2877] = 404, + [2878] = 70, + [2879] = 434, + [2880] = 442, + [2881] = 449, + [2882] = 2876, + [2883] = 487, + [2884] = 486, + [2885] = 414, + [2886] = 413, + [2887] = 326, + [2888] = 411, + [2889] = 324, + [2890] = 2876, [2891] = 2891, - [2892] = 1389, - [2893] = 1398, - [2894] = 1396, - [2895] = 1389, - [2896] = 1398, - [2897] = 1389, - [2898] = 2886, - [2899] = 1396, - [2900] = 1396, - [2901] = 1396, - [2902] = 2902, - [2903] = 1389, - [2904] = 1398, - [2905] = 1398, - [2906] = 1398, - [2907] = 2886, - [2908] = 1396, - [2909] = 2884, - [2910] = 1389, - [2911] = 1389, - [2912] = 2886, - [2913] = 2886, - [2914] = 2886, - [2915] = 2884, - [2916] = 2884, - [2917] = 1398, - [2918] = 2884, - [2919] = 1398, - [2920] = 2884, - [2921] = 2886, - [2922] = 2884, - [2923] = 2886, - [2924] = 1396, - [2925] = 2884, - [2926] = 1389, - [2927] = 1396, - [2928] = 2928, + [2892] = 399, + [2893] = 394, + [2894] = 393, + [2895] = 332, + [2896] = 476, + [2897] = 344, + [2898] = 70, + [2899] = 388, + [2900] = 340, + [2901] = 428, + [2902] = 67, + [2903] = 2903, + [2904] = 425, + [2905] = 2876, + [2906] = 2876, + [2907] = 2876, + [2908] = 2876, + [2909] = 330, + [2910] = 2876, + [2911] = 312, + [2912] = 451, + [2913] = 331, + [2914] = 469, + [2915] = 2876, + [2916] = 2876, + [2917] = 2876, + [2918] = 2876, + [2919] = 473, + [2920] = 474, + [2921] = 69, + [2922] = 2876, + [2923] = 67, + [2924] = 69, + [2925] = 1399, + [2926] = 1398, + [2927] = 2927, + [2928] = 1392, [2929] = 1398, - [2930] = 2886, - [2931] = 2884, - [2932] = 1389, - [2933] = 1396, - [2934] = 1389, - [2935] = 1396, - [2936] = 1398, - [2937] = 1396, - [2938] = 1389, - [2939] = 1398, - [2940] = 1396, - [2941] = 1389, + [2930] = 1398, + [2931] = 1392, + [2932] = 2932, + [2933] = 2933, + [2934] = 1392, + [2935] = 1392, + [2936] = 2933, + [2937] = 2932, + [2938] = 1399, + [2939] = 1399, + [2940] = 2933, + [2941] = 1392, [2942] = 1398, - [2943] = 2886, - [2944] = 2884, - [2945] = 1396, - [2946] = 1398, - [2947] = 1389, - [2948] = 1398, - [2949] = 1396, - [2950] = 1389, - [2951] = 1396, - [2952] = 1389, - [2953] = 2884, - [2954] = 2886, - [2955] = 2955, - [2956] = 1398, - [2957] = 1389, - [2958] = 1398, - [2959] = 1396, - [2960] = 2960, - [2961] = 2960, - [2962] = 2962, - [2963] = 2963, - [2964] = 2962, - [2965] = 2965, - [2966] = 2962, - [2967] = 2967, - [2968] = 2962, - [2969] = 2969, - [2970] = 2965, - [2971] = 2965, - [2972] = 2965, - [2973] = 2962, - [2974] = 2962, - [2975] = 2965, - [2976] = 2962, - [2977] = 2965, - [2978] = 2978, - [2979] = 2965, - [2980] = 2965, - [2981] = 2981, - [2982] = 2962, - [2983] = 2962, - [2984] = 1586, - [2985] = 2965, - [2986] = 2962, - [2987] = 2962, - [2988] = 2965, - [2989] = 2965, - [2990] = 2962, - [2991] = 2965, - [2992] = 2962, - [2993] = 2993, - [2994] = 2994, - [2995] = 2962, - [2996] = 2996, - [2997] = 2997, - [2998] = 2965, - [2999] = 2965, - [3000] = 3000, - [3001] = 3001, - [3002] = 3002, - [3003] = 3003, + [2943] = 2932, + [2944] = 1399, + [2945] = 1398, + [2946] = 2932, + [2947] = 1392, + [2948] = 2933, + [2949] = 1399, + [2950] = 1398, + [2951] = 1399, + [2952] = 1399, + [2953] = 1398, + [2954] = 1392, + [2955] = 1392, + [2956] = 2932, + [2957] = 2932, + [2958] = 2933, + [2959] = 2933, + [2960] = 2933, + [2961] = 1399, + [2962] = 1398, + [2963] = 1392, + [2964] = 2932, + [2965] = 1399, + [2966] = 2933, + [2967] = 1399, + [2968] = 2968, + [2969] = 2932, + [2970] = 2933, + [2971] = 1392, + [2972] = 1398, + [2973] = 1399, + [2974] = 2933, + [2975] = 2932, + [2976] = 2976, + [2977] = 2932, + [2978] = 2933, + [2979] = 1392, + [2980] = 1392, + [2981] = 1398, + [2982] = 1398, + [2983] = 1398, + [2984] = 1399, + [2985] = 1392, + [2986] = 2933, + [2987] = 2932, + [2988] = 1399, + [2989] = 2989, + [2990] = 1392, + [2991] = 1398, + [2992] = 1399, + [2993] = 1399, + [2994] = 1398, + [2995] = 1399, + [2996] = 1398, + [2997] = 1392, + [2998] = 1392, + [2999] = 2932, + [3000] = 1399, + [3001] = 1398, + [3002] = 1398, + [3003] = 1392, [3004] = 3004, - [3005] = 3000, + [3005] = 3004, [3006] = 3006, - [3007] = 3002, + [3007] = 3007, [3008] = 3008, - [3009] = 3002, + [3009] = 3007, [3010] = 3010, [3011] = 3011, - [3012] = 3012, - [3013] = 3013, - [3014] = 3014, - [3015] = 3015, - [3016] = 3002, - [3017] = 3001, - [3018] = 3004, - [3019] = 3013, - [3020] = 3008, - [3021] = 3000, - [3022] = 3022, - [3023] = 3023, - [3024] = 3023, - [3025] = 3006, - [3026] = 3015, - [3027] = 3014, - [3028] = 3012, - [3029] = 3014, - [3030] = 3010, - [3031] = 3002, - [3032] = 3004, + [3012] = 3007, + [3013] = 3010, + [3014] = 3010, + [3015] = 3007, + [3016] = 3007, + [3017] = 3010, + [3018] = 3018, + [3019] = 3019, + [3020] = 3007, + [3021] = 1622, + [3022] = 3010, + [3023] = 3010, + [3024] = 3007, + [3025] = 3007, + [3026] = 3010, + [3027] = 3027, + [3028] = 3007, + [3029] = 3010, + [3030] = 3007, + [3031] = 3010, + [3032] = 3007, [3033] = 3010, - [3034] = 3014, - [3035] = 3011, - [3036] = 3014, - [3037] = 3012, - [3038] = 3010, - [3039] = 3015, - [3040] = 3006, - [3041] = 3002, - [3042] = 3004, - [3043] = 3023, - [3044] = 3008, - [3045] = 3010, - [3046] = 3004, - [3047] = 3011, - [3048] = 3022, - [3049] = 3001, - [3050] = 3000, - [3051] = 3001, - [3052] = 3010, + [3034] = 3010, + [3035] = 3007, + [3036] = 3036, + [3037] = 3010, + [3038] = 3038, + [3039] = 3010, + [3040] = 3007, + [3041] = 3007, + [3042] = 3007, + [3043] = 3010, + [3044] = 3010, + [3045] = 3045, + [3046] = 3046, + [3047] = 3047, + [3048] = 3048, + [3049] = 3049, + [3050] = 3047, + [3051] = 3051, + [3052] = 3052, [3053] = 3053, - [3054] = 3010, - [3055] = 3010, - [3056] = 3011, - [3057] = 3022, - [3058] = 3023, - [3059] = 3000, - [3060] = 3060, - [3061] = 3015, - [3062] = 3010, - [3063] = 3004, - [3064] = 3012, - [3065] = 3011, - [3066] = 3003, - [3067] = 3011, - [3068] = 3068, - [3069] = 3011, - [3070] = 3004, - [3071] = 3010, - [3072] = 3012, - [3073] = 3011, - [3074] = 3013, - [3075] = 3010, - [3076] = 3010, - [3077] = 3022, - [3078] = 3013, - [3079] = 3022, - [3080] = 3015, - [3081] = 3010, - [3082] = 3023, - [3083] = 3001, - [3084] = 3001, - [3085] = 3085, - [3086] = 3000, - [3087] = 3002, - [3088] = 3022, - [3089] = 3004, - [3090] = 3004, - [3091] = 3014, - [3092] = 3010, - [3093] = 3010, - [3094] = 3012, - [3095] = 3004, - [3096] = 3012, - [3097] = 3013, - [3098] = 3010, - [3099] = 3015, - [3100] = 3004, - [3101] = 3010, - [3102] = 3004, - [3103] = 3004, - [3104] = 3104, - [3105] = 3023, - [3106] = 3106, - [3107] = 3002, - [3108] = 3001, - [3109] = 3022, - [3110] = 3000, - [3111] = 3013, - [3112] = 3014, - [3113] = 3001, - [3114] = 3002, - [3115] = 3014, - [3116] = 3000, - [3117] = 3008, - [3118] = 3002, - [3119] = 3022, - [3120] = 3023, - [3121] = 3015, - [3122] = 3023, - [3123] = 3012, - [3124] = 3015, - [3125] = 3008, - [3126] = 3023, - [3127] = 3013, - [3128] = 3015, - [3129] = 3006, - [3130] = 3014, - [3131] = 3010, - [3132] = 3023, - [3133] = 3012, - [3134] = 3023, - [3135] = 3022, - [3136] = 3015, - [3137] = 3012, - [3138] = 3015, - [3139] = 3000, - [3140] = 3006, - [3141] = 3001, - [3142] = 3012, - [3143] = 3011, - [3144] = 3008, - [3145] = 3006, - [3146] = 3008, - [3147] = 3013, - [3148] = 3006, - [3149] = 3006, - [3150] = 3002, - [3151] = 3008, - [3152] = 3014, - [3153] = 3004, - [3154] = 3006, - [3155] = 3006, - [3156] = 3013, - [3157] = 3000, - [3158] = 3011, - [3159] = 3014, - [3160] = 3010, - [3161] = 3022, - [3162] = 3022, - [3163] = 3010, - [3164] = 3000, - [3165] = 3001, - [3166] = 3000, - [3167] = 3013, - [3168] = 3004, - [3169] = 3010, - [3170] = 3013, - [3171] = 3008, - [3172] = 3012, - [3173] = 3015, - [3174] = 3023, - [3175] = 3022, - [3176] = 3000, - [3177] = 3002, - [3178] = 3001, - [3179] = 3022, - [3180] = 3001, - [3181] = 3002, - [3182] = 3010, - [3183] = 3001, - [3184] = 3014, - [3185] = 3023, - [3186] = 3011, - [3187] = 3004, - [3188] = 3015, - [3189] = 3006, - [3190] = 3008, - [3191] = 3002, - [3192] = 3011, - [3193] = 3013, - [3194] = 3012, - [3195] = 3011, - [3196] = 3003, - [3197] = 3015, - [3198] = 3012, - [3199] = 3015, - [3200] = 3014, - [3201] = 3011, - [3202] = 3023, - [3203] = 3203, - [3204] = 3012, - [3205] = 3015, - [3206] = 3012, - [3207] = 3014, - [3208] = 3023, - [3209] = 3001, - [3210] = 3014, - [3211] = 3211, - [3212] = 3022, - [3213] = 3000, - [3214] = 3011, - [3215] = 3001, - [3216] = 3008, - [3217] = 3001, - [3218] = 3006, - [3219] = 3000, - [3220] = 3008, - [3221] = 3022, - [3222] = 3002, - [3223] = 3002, - [3224] = 3014, - [3225] = 3023, - [3226] = 3010, - [3227] = 3022, - [3228] = 3011, - [3229] = 3000, - [3230] = 3013, - [3231] = 3013, - [3232] = 3232, - [3233] = 3233, - [3234] = 3233, - [3235] = 3233, - [3236] = 3233, - [3237] = 3233, - [3238] = 3233, - [3239] = 3233, - [3240] = 3233, - [3241] = 3233, - [3242] = 3242, - [3243] = 3243, - [3244] = 3233, - [3245] = 3233, - [3246] = 3233, - [3247] = 3247, - [3248] = 3248, - [3249] = 326, - [3250] = 343, - [3251] = 325, - [3252] = 332, - [3253] = 333, - [3254] = 1103, + [3054] = 3048, + [3055] = 3047, + [3056] = 3048, + [3057] = 3057, + [3058] = 3053, + [3059] = 3059, + [3060] = 3047, + [3061] = 3046, + [3062] = 3062, + [3063] = 3063, + [3064] = 3046, + [3065] = 3065, + [3066] = 3066, + [3067] = 3051, + [3068] = 3066, + [3069] = 3063, + [3070] = 3066, + [3071] = 3071, + [3072] = 3062, + [3073] = 3065, + [3074] = 3065, + [3075] = 3057, + [3076] = 3076, + [3077] = 3063, + [3078] = 3051, + [3079] = 3062, + [3080] = 3046, + [3081] = 3049, + [3082] = 3082, + [3083] = 3047, + [3084] = 3053, + [3085] = 3062, + [3086] = 3048, + [3087] = 3053, + [3088] = 3053, + [3089] = 3048, + [3090] = 3047, + [3091] = 3059, + [3092] = 3062, + [3093] = 3046, + [3094] = 3057, + [3095] = 3049, + [3096] = 3051, + [3097] = 3053, + [3098] = 3051, + [3099] = 3082, + [3100] = 3057, + [3101] = 3082, + [3102] = 3048, + [3103] = 3063, + [3104] = 3046, + [3105] = 3057, + [3106] = 3063, + [3107] = 3049, + [3108] = 3057, + [3109] = 3059, + [3110] = 3062, + [3111] = 3076, + [3112] = 3057, + [3113] = 3076, + [3114] = 3065, + [3115] = 3063, + [3116] = 3082, + [3117] = 3051, + [3118] = 3066, + [3119] = 3076, + [3120] = 3063, + [3121] = 3049, + [3122] = 3082, + [3123] = 3057, + [3124] = 3124, + [3125] = 3066, + [3126] = 3066, + [3127] = 3066, + [3128] = 3066, + [3129] = 3059, + [3130] = 3062, + [3131] = 3053, + [3132] = 3082, + [3133] = 3057, + [3134] = 3048, + [3135] = 3049, + [3136] = 3059, + [3137] = 3047, + [3138] = 3046, + [3139] = 3057, + [3140] = 3051, + [3141] = 3066, + [3142] = 3063, + [3143] = 3059, + [3144] = 3065, + [3145] = 3065, + [3146] = 3071, + [3147] = 3053, + [3148] = 3053, + [3149] = 3062, + [3150] = 3076, + [3151] = 3076, + [3152] = 3049, + [3153] = 3082, + [3154] = 3046, + [3155] = 3048, + [3156] = 3046, + [3157] = 3051, + [3158] = 3051, + [3159] = 3076, + [3160] = 3076, + [3161] = 3057, + [3162] = 3051, + [3163] = 3053, + [3164] = 3164, + [3165] = 3048, + [3166] = 3059, + [3167] = 3053, + [3168] = 3048, + [3169] = 3048, + [3170] = 3047, + [3171] = 3062, + [3172] = 3063, + [3173] = 3047, + [3174] = 3063, + [3175] = 3062, + [3176] = 3051, + [3177] = 3046, + [3178] = 3047, + [3179] = 3065, + [3180] = 3059, + [3181] = 3066, + [3182] = 3076, + [3183] = 3065, + [3184] = 3066, + [3185] = 3049, + [3186] = 3065, + [3187] = 3057, + [3188] = 3082, + [3189] = 3063, + [3190] = 3190, + [3191] = 3046, + [3192] = 3062, + [3193] = 3082, + [3194] = 3047, + [3195] = 3049, + [3196] = 3053, + [3197] = 3048, + [3198] = 3063, + [3199] = 3059, + [3200] = 3049, + [3201] = 3048, + [3202] = 3062, + [3203] = 3082, + [3204] = 3053, + [3205] = 3047, + [3206] = 3046, + [3207] = 3051, + [3208] = 3076, + [3209] = 3076, + [3210] = 3066, + [3211] = 3063, + [3212] = 3065, + [3213] = 3057, + [3214] = 3063, + [3215] = 3076, + [3216] = 3216, + [3217] = 3062, + [3218] = 3053, + [3219] = 3065, + [3220] = 3051, + [3221] = 3046, + [3222] = 3046, + [3223] = 3059, + [3224] = 3047, + [3225] = 3082, + [3226] = 3053, + [3227] = 3048, + [3228] = 3048, + [3229] = 3046, + [3230] = 3047, + [3231] = 3049, + [3232] = 3071, + [3233] = 3062, + [3234] = 3059, + [3235] = 3048, + [3236] = 3065, + [3237] = 3066, + [3238] = 3057, + [3239] = 3059, + [3240] = 3047, + [3241] = 3057, + [3242] = 3047, + [3243] = 3047, + [3244] = 3051, + [3245] = 3066, + [3246] = 3046, + [3247] = 3065, + [3248] = 3076, + [3249] = 3051, + [3250] = 3059, + [3251] = 3048, + [3252] = 3053, + [3253] = 3059, + [3254] = 3051, [3255] = 3255, - [3256] = 3256, - [3257] = 3257, - [3258] = 332, - [3259] = 333, - [3260] = 326, - [3261] = 325, - [3262] = 343, - [3263] = 3263, - [3264] = 3264, - [3265] = 1103, - [3266] = 2131, - [3267] = 1103, - [3268] = 1442, - [3269] = 3269, - [3270] = 2219, - [3271] = 1410, - [3272] = 3272, + [3256] = 3059, + [3257] = 3076, + [3258] = 3057, + [3259] = 3046, + [3260] = 3051, + [3261] = 3076, + [3262] = 3062, + [3263] = 3076, + [3264] = 3063, + [3265] = 3053, + [3266] = 3059, + [3267] = 3059, + [3268] = 3062, + [3269] = 3065, + [3270] = 3066, + [3271] = 3059, + [3272] = 3082, [3273] = 3273, - [3274] = 3272, - [3275] = 1408, - [3276] = 3272, - [3277] = 3272, - [3278] = 3278, - [3279] = 3279, - [3280] = 3280, - [3281] = 3281, - [3282] = 2258, - [3283] = 2266, - [3284] = 3284, + [3274] = 3059, + [3275] = 3049, + [3276] = 3071, + [3277] = 3059, + [3278] = 3076, + [3279] = 3062, + [3280] = 3066, + [3281] = 3059, + [3282] = 3059, + [3283] = 3065, + [3284] = 3063, [3285] = 3285, - [3286] = 3286, - [3287] = 3287, - [3288] = 362, - [3289] = 3287, - [3290] = 3286, - [3291] = 3291, - [3292] = 3292, - [3293] = 3286, - [3294] = 3294, - [3295] = 323, + [3286] = 3059, + [3287] = 3057, + [3288] = 3066, + [3289] = 3063, + [3290] = 3290, + [3291] = 3290, + [3292] = 3290, + [3293] = 3290, + [3294] = 3290, + [3295] = 3290, [3296] = 3296, - [3297] = 3287, - [3298] = 3286, - [3299] = 322, - [3300] = 3287, - [3301] = 3286, - [3302] = 267, - [3303] = 3303, - [3304] = 3287, - [3305] = 3294, - [3306] = 3286, - [3307] = 3286, - [3308] = 3287, - [3309] = 3287, - [3310] = 3310, - [3311] = 3286, - [3312] = 3287, - [3313] = 3294, + [3297] = 3297, + [3298] = 3290, + [3299] = 3290, + [3300] = 3290, + [3301] = 3290, + [3302] = 3302, + [3303] = 3290, + [3304] = 3304, + [3305] = 3290, + [3306] = 3306, + [3307] = 489, + [3308] = 421, + [3309] = 440, + [3310] = 426, + [3311] = 307, + [3312] = 1109, + [3313] = 3313, [3314] = 3314, - [3315] = 3287, - [3316] = 3286, - [3317] = 3287, - [3318] = 3286, - [3319] = 3294, - [3320] = 3286, - [3321] = 3287, - [3322] = 3287, - [3323] = 3286, + [3315] = 440, + [3316] = 426, + [3317] = 3317, + [3318] = 489, + [3319] = 421, + [3320] = 3320, + [3321] = 307, + [3322] = 1109, + [3323] = 2185, [3324] = 3324, - [3325] = 3325, - [3326] = 3286, - [3327] = 3287, - [3328] = 3287, - [3329] = 3286, + [3325] = 1109, + [3326] = 1477, + [3327] = 3327, + [3328] = 3328, + [3329] = 2201, [3330] = 3330, - [3331] = 318, - [3332] = 3332, - [3333] = 321, - [3334] = 324, - [3335] = 3335, - [3336] = 3336, + [3331] = 3330, + [3332] = 1451, + [3333] = 3333, + [3334] = 3330, + [3335] = 3330, + [3336] = 1448, [3337] = 3337, - [3338] = 3338, - [3339] = 347, - [3340] = 339, - [3341] = 330, - [3342] = 336, - [3343] = 352, - [3344] = 3344, - [3345] = 327, - [3346] = 337, - [3347] = 329, + [3338] = 2306, + [3339] = 2311, + [3340] = 3340, + [3341] = 3341, + [3342] = 3342, + [3343] = 3343, + [3344] = 3343, + [3345] = 3345, + [3346] = 3343, + [3347] = 3343, [3348] = 3348, - [3349] = 3349, - [3350] = 357, - [3351] = 338, - [3352] = 331, - [3353] = 345, - [3354] = 358, - [3355] = 351, - [3356] = 349, - [3357] = 340, - [3358] = 335, - [3359] = 3359, - [3360] = 359, - [3361] = 346, - [3362] = 334, - [3363] = 341, - [3364] = 3364, - [3365] = 3365, - [3366] = 3366, - [3367] = 3367, - [3368] = 3367, - [3369] = 3369, - [3370] = 3367, - [3371] = 3367, - [3372] = 3367, - [3373] = 3367, - [3374] = 3367, - [3375] = 3367, - [3376] = 3367, - [3377] = 411, + [3349] = 3345, + [3350] = 3345, + [3351] = 3345, + [3352] = 3343, + [3353] = 3345, + [3354] = 3343, + [3355] = 363, + [3356] = 3356, + [3357] = 3356, + [3358] = 3343, + [3359] = 3345, + [3360] = 287, + [3361] = 3361, + [3362] = 3343, + [3363] = 3363, + [3364] = 3345, + [3365] = 306, + [3366] = 419, + [3367] = 3356, + [3368] = 3345, + [3369] = 3345, + [3370] = 3343, + [3371] = 3343, + [3372] = 3343, + [3373] = 3343, + [3374] = 3345, + [3375] = 3343, + [3376] = 3345, + [3377] = 3343, [3378] = 3378, - [3379] = 3367, - [3380] = 3380, + [3379] = 3345, + [3380] = 3343, [3381] = 3381, [3382] = 3382, - [3383] = 3367, - [3384] = 3367, + [3383] = 3345, + [3384] = 3356, [3385] = 3385, [3386] = 3386, [3387] = 3387, - [3388] = 3388, - [3389] = 3389, + [3388] = 3345, + [3389] = 3345, [3390] = 3390, - [3391] = 3391, + [3391] = 409, [3392] = 3392, [3393] = 3393, - [3394] = 3394, - [3395] = 3395, + [3394] = 391, + [3395] = 441, [3396] = 3396, [3397] = 3397, [3398] = 3398, - [3399] = 3399, + [3399] = 494, [3400] = 3400, - [3401] = 3401, - [3402] = 3402, - [3403] = 3403, - [3404] = 3404, - [3405] = 3405, - [3406] = 3406, - [3407] = 3404, - [3408] = 3405, - [3409] = 3402, - [3410] = 3406, - [3411] = 3402, + [3401] = 446, + [3402] = 477, + [3403] = 491, + [3404] = 444, + [3405] = 383, + [3406] = 362, + [3407] = 470, + [3408] = 3408, + [3409] = 490, + [3410] = 453, + [3411] = 3411, [3412] = 3412, - [3413] = 3413, - [3414] = 3413, - [3415] = 3402, - [3416] = 3416, - [3417] = 3417, - [3418] = 3418, - [3419] = 3413, - [3420] = 3420, - [3421] = 3402, - [3422] = 3402, - [3423] = 3413, - [3424] = 3418, - [3425] = 3417, - [3426] = 3416, - [3427] = 3416, - [3428] = 3417, - [3429] = 3418, - [3430] = 3418, - [3431] = 3413, - [3432] = 3406, - [3433] = 3433, - [3434] = 3434, - [3435] = 3412, + [3413] = 485, + [3414] = 448, + [3415] = 471, + [3416] = 475, + [3417] = 357, + [3418] = 495, + [3419] = 352, + [3420] = 452, + [3421] = 502, + [3422] = 499, + [3423] = 497, + [3424] = 3424, + [3425] = 3425, + [3426] = 3426, + [3427] = 3427, + [3428] = 335, + [3429] = 3427, + [3430] = 3427, + [3431] = 3431, + [3432] = 3432, + [3433] = 3427, + [3434] = 3427, + [3435] = 3427, [3436] = 3436, - [3437] = 3416, - [3438] = 3405, - [3439] = 3406, - [3440] = 3405, - [3441] = 3441, - [3442] = 3404, - [3443] = 3406, - [3444] = 3444, - [3445] = 3404, - [3446] = 3412, - [3447] = 3404, - [3448] = 3412, - [3449] = 3402, - [3450] = 3406, - [3451] = 3405, - [3452] = 3404, - [3453] = 3405, - [3454] = 3406, - [3455] = 3402, - [3456] = 3416, - [3457] = 3404, - [3458] = 3406, - [3459] = 3405, - [3460] = 3416, + [3437] = 3437, + [3438] = 3427, + [3439] = 3427, + [3440] = 3427, + [3441] = 3427, + [3442] = 3442, + [3443] = 3427, + [3444] = 3427, + [3445] = 3445, + [3446] = 3446, + [3447] = 3447, + [3448] = 3448, + [3449] = 3449, + [3450] = 3450, + [3451] = 3451, + [3452] = 3452, + [3453] = 3453, + [3454] = 3454, + [3455] = 3455, + [3456] = 3456, + [3457] = 3457, + [3458] = 3458, + [3459] = 3459, + [3460] = 3460, [3461] = 3461, - [3462] = 3412, - [3463] = 3417, - [3464] = 3418, - [3465] = 3416, - [3466] = 3417, - [3467] = 3418, - [3468] = 3404, - [3469] = 3417, - [3470] = 3418, - [3471] = 3405, - [3472] = 3413, - [3473] = 3406, + [3462] = 3462, + [3463] = 3463, + [3464] = 3464, + [3465] = 3465, + [3466] = 3466, + [3467] = 3467, + [3468] = 3462, + [3469] = 3469, + [3470] = 3470, + [3471] = 3471, + [3472] = 3471, + [3473] = 3473, [3474] = 3474, - [3475] = 3412, - [3476] = 3418, - [3477] = 3413, - [3478] = 3478, - [3479] = 3479, - [3480] = 3480, - [3481] = 3412, - [3482] = 3417, - [3483] = 3483, - [3484] = 3484, - [3485] = 3485, - [3486] = 3486, - [3487] = 3416, - [3488] = 3417, - [3489] = 3418, - [3490] = 3413, - [3491] = 3406, - [3492] = 3492, + [3475] = 3461, + [3476] = 3476, + [3477] = 3467, + [3478] = 3471, + [3479] = 3470, + [3480] = 3462, + [3481] = 3476, + [3482] = 3461, + [3483] = 3470, + [3484] = 3463, + [3485] = 3463, + [3486] = 3471, + [3487] = 3487, + [3488] = 3467, + [3489] = 3461, + [3490] = 3476, + [3491] = 3461, + [3492] = 3474, [3493] = 3493, - [3494] = 3413, - [3495] = 3402, - [3496] = 3412, + [3494] = 3470, + [3495] = 3495, + [3496] = 3471, [3497] = 3497, - [3498] = 3498, - [3499] = 3417, - [3500] = 3416, - [3501] = 3413, - [3502] = 3413, - [3503] = 3412, - [3504] = 3418, - [3505] = 3404, - [3506] = 3418, - [3507] = 3507, - [3508] = 3417, - [3509] = 3416, - [3510] = 3417, - [3511] = 3404, - [3512] = 3416, - [3513] = 3513, - [3514] = 3412, - [3515] = 3413, - [3516] = 3418, - [3517] = 3417, - [3518] = 3416, - [3519] = 3404, - [3520] = 3404, - [3521] = 3405, - [3522] = 3406, - [3523] = 3402, - [3524] = 3412, - [3525] = 3405, - [3526] = 3405, - [3527] = 3402, - [3528] = 3405, - [3529] = 3412, - [3530] = 3402, - [3531] = 3406, - [3532] = 1408, - [3533] = 1474, - [3534] = 3534, - [3535] = 3535, - [3536] = 3536, - [3537] = 3537, - [3538] = 1413, - [3539] = 3539, - [3540] = 3540, - [3541] = 362, - [3542] = 1467, - [3543] = 267, - [3544] = 1410, - [3545] = 3545, - [3546] = 1416, + [3498] = 3463, + [3499] = 3467, + [3500] = 3462, + [3501] = 3470, + [3502] = 3471, + [3503] = 3503, + [3504] = 3471, + [3505] = 3470, + [3506] = 3467, + [3507] = 3462, + [3508] = 3462, + [3509] = 3463, + [3510] = 3467, + [3511] = 3463, + [3512] = 3463, + [3513] = 3470, + [3514] = 3470, + [3515] = 3471, + [3516] = 3462, + [3517] = 3517, + [3518] = 3471, + [3519] = 3470, + [3520] = 3462, + [3521] = 3493, + [3522] = 3493, + [3523] = 3467, + [3524] = 3474, + [3525] = 3476, + [3526] = 3476, + [3527] = 3467, + [3528] = 3461, + [3529] = 3474, + [3530] = 3493, + [3531] = 3476, + [3532] = 3463, + [3533] = 3462, + [3534] = 3493, + [3535] = 3493, + [3536] = 3474, + [3537] = 3493, + [3538] = 3474, + [3539] = 3461, + [3540] = 3493, + [3541] = 3476, + [3542] = 3463, + [3543] = 3463, + [3544] = 3471, + [3545] = 3470, + [3546] = 3462, [3547] = 3547, - [3548] = 3548, + [3548] = 3467, [3549] = 3549, - [3550] = 3550, - [3551] = 3551, + [3550] = 3474, + [3551] = 3474, [3552] = 3552, - [3553] = 3553, - [3554] = 3550, - [3555] = 3555, - [3556] = 3556, - [3557] = 3557, - [3558] = 3558, - [3559] = 3559, - [3560] = 411, - [3561] = 3561, - [3562] = 1442, + [3553] = 3471, + [3554] = 3467, + [3555] = 3470, + [3556] = 3471, + [3557] = 3462, + [3558] = 3470, + [3559] = 3462, + [3560] = 3467, + [3561] = 3467, + [3562] = 3461, [3563] = 3563, [3564] = 3564, [3565] = 3565, - [3566] = 3566, + [3566] = 3463, [3567] = 3567, - [3568] = 3563, - [3569] = 3569, - [3570] = 3570, - [3571] = 3571, - [3572] = 3572, + [3568] = 3476, + [3569] = 3493, + [3570] = 3474, + [3571] = 3461, + [3572] = 3476, [3573] = 3573, - [3574] = 3574, - [3575] = 3559, - [3576] = 3576, + [3574] = 3476, + [3575] = 3463, + [3576] = 3461, [3577] = 3577, - [3578] = 3578, + [3578] = 3474, [3579] = 3579, - [3580] = 3565, + [3580] = 3493, [3581] = 3581, [3582] = 3582, - [3583] = 3583, - [3584] = 3584, - [3585] = 3564, - [3586] = 3586, - [3587] = 3587, - [3588] = 3588, - [3589] = 3589, - [3590] = 3590, - [3591] = 3591, + [3583] = 3493, + [3584] = 3474, + [3585] = 3585, + [3586] = 3461, + [3587] = 3493, + [3588] = 3476, + [3589] = 3476, + [3590] = 3461, + [3591] = 3474, [3592] = 3592, - [3593] = 3593, + [3593] = 287, [3594] = 3594, - [3595] = 1506, - [3596] = 3589, - [3597] = 3589, - [3598] = 3591, - [3599] = 3588, - [3600] = 3588, - [3601] = 3601, - [3602] = 3601, - [3603] = 3601, - [3604] = 3588, - [3605] = 3591, - [3606] = 3606, - [3607] = 3601, + [3595] = 3595, + [3596] = 3596, + [3597] = 1452, + [3598] = 3598, + [3599] = 3599, + [3600] = 1455, + [3601] = 1448, + [3602] = 1466, + [3603] = 3603, + [3604] = 1451, + [3605] = 363, + [3606] = 1472, + [3607] = 3607, [3608] = 3608, [3609] = 3609, [3610] = 3610, - [3611] = 3588, - [3612] = 3589, + [3611] = 3611, + [3612] = 335, [3613] = 3613, [3614] = 3614, - [3615] = 3589, + [3615] = 3615, [3616] = 3616, - [3617] = 3591, - [3618] = 3614, + [3617] = 3617, + [3618] = 3618, [3619] = 3619, - [3620] = 3589, - [3621] = 3591, - [3622] = 3614, + [3620] = 3620, + [3621] = 3621, + [3622] = 3622, [3623] = 3623, - [3624] = 3589, - [3625] = 3591, - [3626] = 3588, - [3627] = 3601, - [3628] = 3591, - [3629] = 3588, - [3630] = 3601, + [3624] = 3624, + [3625] = 3625, + [3626] = 3613, + [3627] = 3627, + [3628] = 3628, + [3629] = 3619, + [3630] = 3615, [3631] = 3631, - [3632] = 3601, + [3632] = 3632, [3633] = 3633, - [3634] = 3591, - [3635] = 3635, - [3636] = 3588, + [3634] = 3634, + [3635] = 3624, + [3636] = 3636, [3637] = 3637, [3638] = 3638, - [3639] = 3591, + [3639] = 3639, [3640] = 3640, - [3641] = 3591, + [3641] = 1477, [3642] = 3642, - [3643] = 3643, + [3643] = 3642, [3644] = 3644, [3645] = 3645, [3646] = 3646, - [3647] = 3589, + [3647] = 3647, [3648] = 3648, - [3649] = 3644, - [3650] = 3614, + [3649] = 1490, + [3650] = 3650, [3651] = 3651, - [3652] = 3601, - [3653] = 3614, - [3654] = 3614, + [3652] = 3652, + [3653] = 3651, + [3654] = 3654, [3655] = 3655, - [3656] = 3601, - [3657] = 3588, + [3656] = 3652, + [3657] = 3657, [3658] = 3658, - [3659] = 3659, - [3660] = 3589, - [3661] = 3588, - [3662] = 3601, - [3663] = 3614, - [3664] = 3591, - [3665] = 3591, - [3666] = 3644, - [3667] = 3658, - [3668] = 3668, - [3669] = 3591, - [3670] = 3670, - [3671] = 3591, - [3672] = 3644, + [3659] = 3651, + [3660] = 3660, + [3661] = 3661, + [3662] = 3650, + [3663] = 3652, + [3664] = 3664, + [3665] = 3651, + [3666] = 3666, + [3667] = 3654, + [3668] = 3657, + [3669] = 3669, + [3670] = 3652, + [3671] = 3671, + [3672] = 3672, [3673] = 3673, [3674] = 3674, - [3675] = 3675, - [3676] = 3676, - [3677] = 3677, - [3678] = 3658, - [3679] = 3679, - [3680] = 1487, - [3681] = 3614, - [3682] = 3682, - [3683] = 3658, - [3684] = 3684, - [3685] = 1486, - [3686] = 1489, - [3687] = 1508, - [3688] = 3644, - [3689] = 3601, - [3690] = 3588, - [3691] = 3691, - [3692] = 1515, - [3693] = 3658, - [3694] = 3644, - [3695] = 3614, - [3696] = 1485, - [3697] = 3589, - [3698] = 3644, - [3699] = 3589, - [3700] = 3700, - [3701] = 3614, + [3675] = 3651, + [3676] = 3652, + [3677] = 3654, + [3678] = 3678, + [3679] = 3651, + [3680] = 3655, + [3681] = 3652, + [3682] = 3660, + [3683] = 3683, + [3684] = 3651, + [3685] = 3651, + [3686] = 3650, + [3687] = 3652, + [3688] = 3651, + [3689] = 3657, + [3690] = 3657, + [3691] = 3652, + [3692] = 3692, + [3693] = 3651, + [3694] = 3650, + [3695] = 3652, + [3696] = 3651, + [3697] = 3652, + [3698] = 3654, + [3699] = 3655, + [3700] = 3660, + [3701] = 3650, [3702] = 3702, [3703] = 3703, - [3704] = 1507, - [3705] = 1500, - [3706] = 3614, + [3704] = 3704, + [3705] = 3705, + [3706] = 3706, [3707] = 3707, - [3708] = 3591, - [3709] = 3658, - [3710] = 3588, - [3711] = 3711, - [3712] = 3601, + [3708] = 3708, + [3709] = 3709, + [3710] = 3650, + [3711] = 3650, + [3712] = 3655, [3713] = 3713, - [3714] = 3658, - [3715] = 1483, - [3716] = 3589, - [3717] = 1514, - [3718] = 1567, - [3719] = 1557, - [3720] = 1541, - [3721] = 3644, - [3722] = 1540, - [3723] = 1533, - [3724] = 1491, - [3725] = 3644, - [3726] = 3658, + [3714] = 3651, + [3715] = 3654, + [3716] = 1497, + [3717] = 1496, + [3718] = 3718, + [3719] = 3657, + [3720] = 3660, + [3721] = 3657, + [3722] = 3652, + [3723] = 3723, + [3724] = 3724, + [3725] = 1493, + [3726] = 3726, [3727] = 3727, [3728] = 3728, [3729] = 3729, - [3730] = 3591, - [3731] = 3644, - [3732] = 1501, - [3733] = 3733, + [3730] = 1561, + [3731] = 3660, + [3732] = 3652, + [3733] = 1545, [3734] = 3734, [3735] = 3735, [3736] = 3736, - [3737] = 3737, - [3738] = 3614, - [3739] = 3658, - [3740] = 3658, - [3741] = 3658, - [3742] = 3742, - [3743] = 3589, - [3744] = 3744, - [3745] = 3745, - [3746] = 3644, - [3747] = 3747, - [3748] = 3748, - [3749] = 3644, - [3750] = 3601, - [3751] = 3751, - [3752] = 3658, - [3753] = 3588, - [3754] = 3754, - [3755] = 3755, - [3756] = 3756, + [3737] = 3657, + [3738] = 3657, + [3739] = 3739, + [3740] = 3740, + [3741] = 3654, + [3742] = 3655, + [3743] = 3654, + [3744] = 3655, + [3745] = 3657, + [3746] = 3654, + [3747] = 3655, + [3748] = 3654, + [3749] = 3655, + [3750] = 1609, + [3751] = 3660, + [3752] = 3660, + [3753] = 3650, + [3754] = 3650, + [3755] = 1548, + [3756] = 3657, [3757] = 3757, - [3758] = 3758, - [3759] = 3759, - [3760] = 3760, - [3761] = 3761, - [3762] = 3762, - [3763] = 3763, - [3764] = 3761, - [3765] = 3765, + [3758] = 3650, + [3759] = 1598, + [3760] = 3660, + [3761] = 3655, + [3762] = 3654, + [3763] = 1588, + [3764] = 1525, + [3765] = 1581, [3766] = 3766, - [3767] = 3767, - [3768] = 3768, - [3769] = 3755, - [3770] = 3770, - [3771] = 3771, - [3772] = 3772, + [3767] = 1579, + [3768] = 1572, + [3769] = 3657, + [3770] = 1584, + [3771] = 1566, + [3772] = 1564, [3773] = 3773, - [3774] = 3774, - [3775] = 3775, - [3776] = 3776, + [3774] = 3660, + [3775] = 3657, + [3776] = 3660, [3777] = 3777, - [3778] = 3778, - [3779] = 3776, - [3780] = 3777, - [3781] = 3778, - [3782] = 3782, - [3783] = 3755, - [3784] = 3767, - [3785] = 3766, - [3786] = 3772, - [3787] = 1413, + [3778] = 3655, + [3779] = 3654, + [3780] = 3780, + [3781] = 3781, + [3782] = 3657, + [3783] = 3783, + [3784] = 3784, + [3785] = 1568, + [3786] = 3786, + [3787] = 3657, [3788] = 3788, [3789] = 3789, [3790] = 3790, [3791] = 3791, - [3792] = 1408, - [3793] = 3772, + [3792] = 3654, + [3793] = 3793, [3794] = 3794, - [3795] = 3765, - [3796] = 3763, - [3797] = 3765, - [3798] = 3798, - [3799] = 3799, - [3800] = 3763, - [3801] = 3801, - [3802] = 3766, - [3803] = 3767, - [3804] = 3804, - [3805] = 1413, - [3806] = 3761, - [3807] = 2131, - [3808] = 3761, - [3809] = 3760, - [3810] = 3759, - [3811] = 3777, - [3812] = 3772, - [3813] = 3776, + [3795] = 3795, + [3796] = 3655, + [3797] = 3660, + [3798] = 3655, + [3799] = 3654, + [3800] = 3660, + [3801] = 3650, + [3802] = 3802, + [3803] = 3657, + [3804] = 3657, + [3805] = 3657, + [3806] = 3806, + [3807] = 3655, + [3808] = 3808, + [3809] = 3650, + [3810] = 3810, + [3811] = 3811, + [3812] = 3812, + [3813] = 3660, [3814] = 3814, - [3815] = 3755, - [3816] = 3765, - [3817] = 3777, - [3818] = 3778, + [3815] = 3815, + [3816] = 3816, + [3817] = 3817, + [3818] = 3818, [3819] = 3819, - [3820] = 3755, - [3821] = 3760, + [3820] = 3820, + [3821] = 3819, [3822] = 3822, - [3823] = 3759, - [3824] = 3763, - [3825] = 1416, - [3826] = 3755, - [3827] = 3755, - [3828] = 3759, - [3829] = 3755, - [3830] = 3762, - [3831] = 3772, - [3832] = 3832, - [3833] = 3833, - [3834] = 3772, - [3835] = 1408, - [3836] = 3777, - [3837] = 3778, - [3838] = 3761, - [3839] = 3760, - [3840] = 3772, - [3841] = 3763, - [3842] = 3759, - [3843] = 3762, - [3844] = 3760, - [3845] = 3763, - [3846] = 3762, - [3847] = 3760, - [3848] = 3848, - [3849] = 3761, - [3850] = 3850, - [3851] = 3772, + [3823] = 3823, + [3824] = 1455, + [3825] = 3825, + [3826] = 3825, + [3827] = 3820, + [3828] = 3828, + [3829] = 3829, + [3830] = 3828, + [3831] = 3829, + [3832] = 3820, + [3833] = 3819, + [3834] = 1448, + [3835] = 3835, + [3836] = 3822, + [3837] = 3818, + [3838] = 3838, + [3839] = 3839, + [3840] = 3840, + [3841] = 3841, + [3842] = 3842, + [3843] = 3816, + [3844] = 3815, + [3845] = 3820, + [3846] = 3819, + [3847] = 3828, + [3848] = 3842, + [3849] = 3842, + [3850] = 3840, + [3851] = 3822, [3852] = 3852, - [3853] = 3853, - [3854] = 3778, - [3855] = 3777, - [3856] = 3772, - [3857] = 3759, - [3858] = 3760, - [3859] = 3761, - [3860] = 1410, - [3861] = 3776, - [3862] = 1416, - [3863] = 3766, - [3864] = 3761, - [3865] = 3865, - [3866] = 3273, - [3867] = 3765, - [3868] = 3868, - [3869] = 1410, - [3870] = 3870, - [3871] = 3278, - [3872] = 3872, - [3873] = 3762, + [3853] = 1451, + [3854] = 3854, + [3855] = 3840, + [3856] = 3856, + [3857] = 3857, + [3858] = 3858, + [3859] = 3859, + [3860] = 1451, + [3861] = 3838, + [3862] = 3862, + [3863] = 3863, + [3864] = 3825, + [3865] = 1455, + [3866] = 3816, + [3867] = 3815, + [3868] = 3838, + [3869] = 3828, + [3870] = 3829, + [3871] = 3840, + [3872] = 3842, + [3873] = 3873, [3874] = 3874, - [3875] = 3875, - [3876] = 3767, - [3877] = 3776, - [3878] = 3762, - [3879] = 3755, - [3880] = 1408, - [3881] = 3759, - [3882] = 3767, - [3883] = 3766, - [3884] = 3777, - [3885] = 3763, + [3875] = 3852, + [3876] = 3876, + [3877] = 3877, + [3878] = 3333, + [3879] = 3328, + [3880] = 3816, + [3881] = 3818, + [3882] = 1452, + [3883] = 3883, + [3884] = 3815, + [3885] = 3818, [3886] = 3886, - [3887] = 1413, - [3888] = 3778, - [3889] = 3889, - [3890] = 3760, - [3891] = 3891, - [3892] = 3765, - [3893] = 3765, - [3894] = 3894, - [3895] = 3895, - [3896] = 3766, - [3897] = 3767, - [3898] = 3759, - [3899] = 3776, - [3900] = 3900, - [3901] = 3767, - [3902] = 3777, - [3903] = 3766, - [3904] = 3778, - [3905] = 3767, - [3906] = 3763, - [3907] = 3762, - [3908] = 3759, - [3909] = 3772, - [3910] = 3776, - [3911] = 3760, - [3912] = 3755, - [3913] = 3761, - [3914] = 3777, - [3915] = 3778, - [3916] = 3762, + [3887] = 3818, + [3888] = 3825, + [3889] = 3828, + [3890] = 3890, + [3891] = 3829, + [3892] = 1452, + [3893] = 3893, + [3894] = 3852, + [3895] = 3818, + [3896] = 3840, + [3897] = 3840, + [3898] = 3842, + [3899] = 3818, + [3900] = 3829, + [3901] = 3842, + [3902] = 3852, + [3903] = 3828, + [3904] = 3819, + [3905] = 3822, + [3906] = 3825, + [3907] = 3907, + [3908] = 3820, + [3909] = 3820, + [3910] = 3819, + [3911] = 3822, + [3912] = 3825, + [3913] = 3820, + [3914] = 3838, + [3915] = 3819, + [3916] = 3816, [3917] = 3917, - [3918] = 3767, - [3919] = 3766, - [3920] = 3778, - [3921] = 3777, - [3922] = 3556, - [3923] = 3555, - [3924] = 3766, - [3925] = 3772, - [3926] = 3765, - [3927] = 3927, - [3928] = 3553, - [3929] = 1410, - [3930] = 3552, - [3931] = 3755, - [3932] = 3765, - [3933] = 3761, - [3934] = 3760, - [3935] = 3772, - [3936] = 3759, - [3937] = 3777, - [3938] = 3778, - [3939] = 3772, - [3940] = 3776, - [3941] = 3765, - [3942] = 3763, - [3943] = 3762, - [3944] = 3766, - [3945] = 3762, - [3946] = 3763, - [3947] = 3767, - [3948] = 3776, - [3949] = 3761, - [3950] = 3760, - [3951] = 3759, - [3952] = 3763, - [3953] = 3763, - [3954] = 3759, - [3955] = 3760, - [3956] = 3761, - [3957] = 3762, - [3958] = 3755, - [3959] = 3759, - [3960] = 3760, - [3961] = 3761, - [3962] = 3755, - [3963] = 3765, - [3964] = 3765, - [3965] = 3776, - [3966] = 3766, - [3967] = 3967, - [3968] = 3968, - [3969] = 3767, - [3970] = 3776, - [3971] = 3776, - [3972] = 3761, - [3973] = 3760, - [3974] = 3776, - [3975] = 3759, - [3976] = 3767, - [3977] = 3766, - [3978] = 3762, - [3979] = 3767, - [3980] = 3766, - [3981] = 3981, - [3982] = 3766, - [3983] = 3767, - [3984] = 3984, - [3985] = 3985, - [3986] = 3765, + [3918] = 3822, + [3919] = 3919, + [3920] = 3828, + [3921] = 3829, + [3922] = 3922, + [3923] = 3818, + [3924] = 3829, + [3925] = 3852, + [3926] = 3822, + [3927] = 3825, + [3928] = 3818, + [3929] = 3838, + [3930] = 3825, + [3931] = 3828, + [3932] = 3829, + [3933] = 3818, + [3934] = 3816, + [3935] = 3815, + [3936] = 3840, + [3937] = 3842, + [3938] = 3840, + [3939] = 3818, + [3940] = 3842, + [3941] = 3820, + [3942] = 3942, + [3943] = 3943, + [3944] = 3819, + [3945] = 3852, + [3946] = 3822, + [3947] = 3947, + [3948] = 3838, + [3949] = 1448, + [3950] = 3816, + [3951] = 3951, + [3952] = 3952, + [3953] = 3953, + [3954] = 3954, + [3955] = 3955, + [3956] = 3956, + [3957] = 3852, + [3958] = 3958, + [3959] = 3815, + [3960] = 3960, + [3961] = 3825, + [3962] = 3816, + [3963] = 3818, + [3964] = 3838, + [3965] = 3838, + [3966] = 3828, + [3967] = 3829, + [3968] = 3840, + [3969] = 3842, + [3970] = 3818, + [3971] = 2185, + [3972] = 3820, + [3973] = 3825, + [3974] = 3644, + [3975] = 3645, + [3976] = 3828, + [3977] = 3977, + [3978] = 1451, + [3979] = 3819, + [3980] = 3609, + [3981] = 3829, + [3982] = 3637, + [3983] = 3822, + [3984] = 1448, + [3985] = 1455, + [3986] = 3852, [3987] = 3987, [3988] = 3988, - [3989] = 3778, - [3990] = 3765, - [3991] = 3777, - [3992] = 3776, - [3993] = 3993, - [3994] = 3778, - [3995] = 3995, - [3996] = 3755, - [3997] = 3997, - [3998] = 3998, + [3989] = 3838, + [3990] = 3840, + [3991] = 3842, + [3992] = 3816, + [3993] = 3815, + [3994] = 3840, + [3995] = 3842, + [3996] = 3996, + [3997] = 3820, + [3998] = 3819, [3999] = 3999, - [4000] = 4000, + [4000] = 3822, [4001] = 4001, - [4002] = 3553, - [4003] = 3999, - [4004] = 4004, - [4005] = 3997, - [4006] = 4006, - [4007] = 3997, - [4008] = 3997, - [4009] = 4009, + [4002] = 4002, + [4003] = 3822, + [4004] = 3819, + [4005] = 3820, + [4006] = 3820, + [4007] = 3819, + [4008] = 3822, + [4009] = 3815, [4010] = 4010, - [4011] = 3553, - [4012] = 4001, - [4013] = 4013, - [4014] = 3552, - [4015] = 4015, - [4016] = 4016, - [4017] = 4017, - [4018] = 4018, - [4019] = 4019, - [4020] = 4004, - [4021] = 4021, - [4022] = 4010, + [4011] = 3818, + [4012] = 3815, + [4013] = 3838, + [4014] = 3852, + [4015] = 3815, + [4016] = 3816, + [4017] = 3816, + [4018] = 3815, + [4019] = 3838, + [4020] = 3822, + [4021] = 3819, + [4022] = 3820, [4023] = 4023, - [4024] = 4023, - [4025] = 4019, - [4026] = 4026, - [4027] = 4027, - [4028] = 4019, - [4029] = 4016, - [4030] = 4017, - [4031] = 4019, - [4032] = 4019, - [4033] = 3556, - [4034] = 4034, - [4035] = 4019, - [4036] = 4036, - [4037] = 4019, - [4038] = 4015, - [4039] = 3555, + [4024] = 3842, + [4025] = 3852, + [4026] = 3838, + [4027] = 3840, + [4028] = 3852, + [4029] = 3852, + [4030] = 3815, + [4031] = 3816, + [4032] = 3815, + [4033] = 3816, + [4034] = 3838, + [4035] = 3818, + [4036] = 3822, + [4037] = 3819, + [4038] = 3820, + [4039] = 4039, [4040] = 4040, - [4041] = 4019, - [4042] = 4042, - [4043] = 4043, - [4044] = 4043, - [4045] = 4019, - [4046] = 4043, - [4047] = 4001, - [4048] = 4019, - [4049] = 4049, - [4050] = 4018, - [4051] = 4051, - [4052] = 3553, - [4053] = 4043, - [4054] = 4019, - [4055] = 3997, - [4056] = 4056, - [4057] = 4017, - [4058] = 4016, - [4059] = 3552, - [4060] = 4015, - [4061] = 4061, - [4062] = 4010, - [4063] = 4009, - [4064] = 4064, - [4065] = 4006, - [4066] = 4004, - [4067] = 4001, - [4068] = 3556, - [4069] = 4017, - [4070] = 4016, - [4071] = 3555, - [4072] = 4010, - [4073] = 4004, - [4074] = 4018, - [4075] = 4018, + [4041] = 4041, + [4042] = 3852, + [4043] = 3815, + [4044] = 4044, + [4045] = 4045, + [4046] = 3852, + [4047] = 4047, + [4048] = 3815, + [4049] = 3816, + [4050] = 4050, + [4051] = 3838, + [4052] = 3852, + [4053] = 3825, + [4054] = 3816, + [4055] = 3825, + [4056] = 3825, + [4057] = 3828, + [4058] = 4058, + [4059] = 3822, + [4060] = 3819, + [4061] = 3829, + [4062] = 3828, + [4063] = 3838, + [4064] = 3820, + [4065] = 3829, + [4066] = 4066, + [4067] = 4067, + [4068] = 4068, + [4069] = 4069, + [4070] = 4070, + [4071] = 4071, + [4072] = 4072, + [4073] = 4073, + [4074] = 4074, + [4075] = 4067, [4076] = 4076, - [4077] = 4010, - [4078] = 4015, - [4079] = 4023, - [4080] = 4009, - [4081] = 3552, - [4082] = 3553, - [4083] = 4004, - [4084] = 4006, - [4085] = 3999, - [4086] = 4001, - [4087] = 4000, - [4088] = 3555, - [4089] = 3556, - [4090] = 3998, - [4091] = 3997, - [4092] = 4006, - [4093] = 4010, - [4094] = 3998, - [4095] = 4001, - [4096] = 4018, - [4097] = 3999, - [4098] = 4000, - [4099] = 4000, - [4100] = 3999, + [4077] = 4074, + [4078] = 4076, + [4079] = 4079, + [4080] = 4068, + [4081] = 4081, + [4082] = 4082, + [4083] = 4083, + [4084] = 4068, + [4085] = 4085, + [4086] = 4085, + [4087] = 4085, + [4088] = 4083, + [4089] = 3644, + [4090] = 4083, + [4091] = 3645, + [4092] = 4085, + [4093] = 4082, + [4094] = 4085, + [4095] = 4083, + [4096] = 4096, + [4097] = 4074, + [4098] = 4079, + [4099] = 4099, + [4100] = 4083, [4101] = 4101, - [4102] = 3998, - [4103] = 4015, - [4104] = 4016, - [4105] = 4023, - [4106] = 4017, - [4107] = 3997, - [4108] = 4108, - [4109] = 3556, - [4110] = 3555, - [4111] = 4001, - [4112] = 4001, + [4102] = 4083, + [4103] = 4103, + [4104] = 4083, + [4105] = 4082, + [4106] = 4073, + [4107] = 4107, + [4108] = 4082, + [4109] = 4083, + [4110] = 4068, + [4111] = 3609, + [4112] = 4083, [4113] = 4113, - [4114] = 4114, - [4115] = 4115, - [4116] = 4043, - [4117] = 4023, - [4118] = 4019, - [4119] = 4119, - [4120] = 3553, - [4121] = 3552, + [4114] = 3644, + [4115] = 3637, + [4116] = 4101, + [4117] = 4081, + [4118] = 4083, + [4119] = 4079, + [4120] = 4120, + [4121] = 4070, [4122] = 4122, - [4123] = 3999, - [4124] = 4015, - [4125] = 4018, - [4126] = 4018, - [4127] = 4004, - [4128] = 4128, - [4129] = 4129, - [4130] = 4130, - [4131] = 4131, - [4132] = 4023, - [4133] = 4133, - [4134] = 4043, - [4135] = 4043, - [4136] = 4136, + [4123] = 4103, + [4124] = 4074, + [4125] = 4083, + [4126] = 4067, + [4127] = 3645, + [4128] = 4079, + [4129] = 3609, + [4130] = 4069, + [4131] = 3637, + [4132] = 4120, + [4133] = 3644, + [4134] = 4068, + [4135] = 4067, + [4136] = 3645, [4137] = 4137, - [4138] = 4006, - [4139] = 4017, - [4140] = 4017, - [4141] = 4016, + [4138] = 4072, + [4139] = 4070, + [4140] = 4072, + [4141] = 4076, [4142] = 4142, - [4143] = 3997, - [4144] = 4144, - [4145] = 4145, + [4143] = 4137, + [4144] = 4137, + [4145] = 4081, [4146] = 4146, - [4147] = 4009, - [4148] = 4010, - [4149] = 4009, - [4150] = 4006, - [4151] = 4010, - [4152] = 3999, - [4153] = 4016, - [4154] = 4004, - [4155] = 4018, - [4156] = 4016, - [4157] = 4017, - [4158] = 4000, - [4159] = 4015, - [4160] = 4023, - [4161] = 4019, - [4162] = 4001, + [4147] = 4147, + [4148] = 4148, + [4149] = 4083, + [4150] = 4150, + [4151] = 4079, + [4152] = 4069, + [4153] = 4153, + [4154] = 4154, + [4155] = 4073, + [4156] = 4074, + [4157] = 4074, + [4158] = 4072, + [4159] = 4067, + [4160] = 4096, + [4161] = 4076, + [4162] = 4137, [4163] = 4163, - [4164] = 3998, - [4165] = 4043, - [4166] = 4010, - [4167] = 4009, - [4168] = 3555, + [4164] = 4164, + [4165] = 4165, + [4166] = 4166, + [4167] = 4069, + [4168] = 4096, [4169] = 4169, - [4170] = 4170, - [4171] = 4171, - [4172] = 4172, - [4173] = 3997, + [4170] = 4081, + [4171] = 4082, + [4172] = 4137, + [4173] = 4073, [4174] = 4174, - [4175] = 4175, - [4176] = 4176, - [4177] = 4177, - [4178] = 4023, - [4179] = 4006, - [4180] = 4023, - [4181] = 4000, - [4182] = 3998, - [4183] = 4183, - [4184] = 4184, - [4185] = 4004, + [4175] = 3644, + [4176] = 4072, + [4177] = 4096, + [4178] = 4074, + [4179] = 3645, + [4180] = 4070, + [4181] = 4079, + [4182] = 4182, + [4183] = 4096, + [4184] = 3609, + [4185] = 4070, [4186] = 4186, - [4187] = 3552, + [4187] = 4085, [4188] = 4188, [4189] = 4189, - [4190] = 4190, - [4191] = 3998, - [4192] = 4018, - [4193] = 3998, - [4194] = 4194, - [4195] = 4015, - [4196] = 3552, - [4197] = 4009, - [4198] = 3553, - [4199] = 4043, - [4200] = 4000, - [4201] = 4023, - [4202] = 3999, - [4203] = 4203, - [4204] = 4001, - [4205] = 4000, - [4206] = 3555, - [4207] = 4017, - [4208] = 3556, - [4209] = 4016, - [4210] = 4210, - [4211] = 3999, - [4212] = 4010, - [4213] = 4009, - [4214] = 3999, - [4215] = 3997, + [4190] = 4081, + [4191] = 4137, + [4192] = 4120, + [4193] = 3637, + [4194] = 4076, + [4195] = 4096, + [4196] = 4120, + [4197] = 4074, + [4198] = 4073, + [4199] = 3637, + [4200] = 4069, + [4201] = 4120, + [4202] = 4079, + [4203] = 4076, + [4204] = 4072, + [4205] = 4205, + [4206] = 4074, + [4207] = 3609, + [4208] = 4073, + [4209] = 4074, + [4210] = 4069, + [4211] = 4067, + [4212] = 4120, + [4213] = 4213, + [4214] = 4081, + [4215] = 4215, [4216] = 4216, - [4217] = 3997, - [4218] = 4043, - [4219] = 3997, - [4220] = 3556, - [4221] = 4017, - [4222] = 4016, - [4223] = 4006, - [4224] = 4224, - [4225] = 4144, - [4226] = 4010, - [4227] = 4009, - [4228] = 4006, - [4229] = 3999, - [4230] = 4230, - [4231] = 4170, - [4232] = 4128, - [4233] = 3556, - [4234] = 3556, - [4235] = 3555, - [4236] = 4004, - [4237] = 4018, - [4238] = 4015, - [4239] = 3552, - [4240] = 4001, - [4241] = 3553, - [4242] = 4001, - [4243] = 4004, - [4244] = 3555, - [4245] = 3556, - [4246] = 3555, - [4247] = 3553, - [4248] = 3997, - [4249] = 4015, - [4250] = 4001, - [4251] = 3998, - [4252] = 4146, - [4253] = 4000, - [4254] = 4254, - [4255] = 3553, - [4256] = 3999, - [4257] = 3552, - [4258] = 4015, - [4259] = 4015, - [4260] = 3999, - [4261] = 4000, - [4262] = 4004, - [4263] = 4230, - [4264] = 3552, - [4265] = 4018, - [4266] = 4000, - [4267] = 3553, - [4268] = 3552, - [4269] = 4001, - [4270] = 4004, - [4271] = 4015, - [4272] = 3555, - [4273] = 3556, - [4274] = 1486, - [4275] = 4018, - [4276] = 1487, - [4277] = 4277, - [4278] = 4278, - [4279] = 4006, - [4280] = 4006, - [4281] = 4281, - [4282] = 4004, - [4283] = 4283, - [4284] = 4009, - [4285] = 4285, - [4286] = 2219, - [4287] = 4009, - [4288] = 4010, - [4289] = 1501, - [4290] = 3998, - [4291] = 4000, - [4292] = 4016, + [4217] = 4096, + [4218] = 4072, + [4219] = 4219, + [4220] = 4220, + [4221] = 4070, + [4222] = 4222, + [4223] = 4223, + [4224] = 4120, + [4225] = 4079, + [4226] = 4072, + [4227] = 4227, + [4228] = 4083, + [4229] = 3637, + [4230] = 4147, + [4231] = 4148, + [4232] = 4232, + [4233] = 4150, + [4234] = 4234, + [4235] = 3644, + [4236] = 3609, + [4237] = 4079, + [4238] = 3645, + [4239] = 4239, + [4240] = 4096, + [4241] = 4070, + [4242] = 4076, + [4243] = 3645, + [4244] = 4137, + [4245] = 3609, + [4246] = 3644, + [4247] = 4070, + [4248] = 4248, + [4249] = 4069, + [4250] = 4079, + [4251] = 4073, + [4252] = 4081, + [4253] = 3637, + [4254] = 3645, + [4255] = 4076, + [4256] = 4068, + [4257] = 4120, + [4258] = 4074, + [4259] = 4259, + [4260] = 4260, + [4261] = 4079, + [4262] = 3609, + [4263] = 4085, + [4264] = 4264, + [4265] = 3637, + [4266] = 4120, + [4267] = 4067, + [4268] = 3644, + [4269] = 4082, + [4270] = 4085, + [4271] = 4074, + [4272] = 4073, + [4273] = 4273, + [4274] = 4082, + [4275] = 1584, + [4276] = 4137, + [4277] = 4120, + [4278] = 4069, + [4279] = 4279, + [4280] = 4070, + [4281] = 4072, + [4282] = 4067, + [4283] = 4068, + [4284] = 4284, + [4285] = 2201, + [4286] = 4067, + [4287] = 3637, + [4288] = 4079, + [4289] = 4068, + [4290] = 4290, + [4291] = 4068, + [4292] = 3609, [4293] = 4293, - [4294] = 4017, + [4294] = 4294, [4295] = 4295, - [4296] = 4006, - [4297] = 4043, - [4298] = 4018, - [4299] = 3998, - [4300] = 4300, - [4301] = 4301, - [4302] = 4009, - [4303] = 4010, + [4296] = 4120, + [4297] = 4073, + [4298] = 4085, + [4299] = 4070, + [4300] = 4072, + [4301] = 4137, + [4302] = 4072, + [4303] = 4082, [4304] = 4304, - [4305] = 4023, - [4306] = 4016, - [4307] = 4017, - [4308] = 4043, - [4309] = 4309, - [4310] = 3998, + [4305] = 4305, + [4306] = 4069, + [4307] = 4070, + [4308] = 4067, + [4309] = 4069, + [4310] = 4072, [4311] = 4311, - [4312] = 4023, - [4313] = 4010, - [4314] = 4314, + [4312] = 4073, + [4313] = 4074, + [4314] = 4070, [4315] = 4315, - [4316] = 4316, - [4317] = 4317, - [4318] = 4317, - [4319] = 4319, + [4316] = 4137, + [4317] = 4082, + [4318] = 4318, + [4319] = 4073, [4320] = 4320, - [4321] = 4321, - [4322] = 4322, - [4323] = 4316, - [4324] = 4324, - [4325] = 4325, - [4326] = 4315, - [4327] = 4327, - [4328] = 4321, - [4329] = 4319, + [4321] = 4079, + [4322] = 4074, + [4323] = 4082, + [4324] = 4085, + [4325] = 4076, + [4326] = 4081, + [4327] = 4069, + [4328] = 4096, + [4329] = 4067, [4330] = 4330, - [4331] = 4331, - [4332] = 4324, + [4331] = 4120, + [4332] = 3645, [4333] = 4333, [4334] = 4334, - [4335] = 4335, - [4336] = 4336, - [4337] = 4337, - [4338] = 4338, - [4339] = 4339, - [4340] = 4320, - [4341] = 4327, - [4342] = 4342, - [4343] = 4343, - [4344] = 4316, - [4345] = 4321, - [4346] = 4327, - [4347] = 4315, - [4348] = 4327, - [4349] = 4321, - [4350] = 4350, - [4351] = 4315, + [4335] = 4085, + [4336] = 3645, + [4337] = 4096, + [4338] = 4082, + [4339] = 4067, + [4340] = 4340, + [4341] = 4081, + [4342] = 4076, + [4343] = 3644, + [4344] = 4081, + [4345] = 1496, + [4346] = 4068, + [4347] = 4074, + [4348] = 4137, + [4349] = 4073, + [4350] = 4069, + [4351] = 4085, [4352] = 4352, - [4353] = 4322, - [4354] = 4354, - [4355] = 4355, - [4356] = 4316, - [4357] = 4357, - [4358] = 4338, - [4359] = 4339, + [4353] = 4096, + [4354] = 4096, + [4355] = 3637, + [4356] = 1497, + [4357] = 3644, + [4358] = 4358, + [4359] = 4359, [4360] = 4360, - [4361] = 4331, + [4361] = 4082, [4362] = 4362, - [4363] = 4363, - [4364] = 4334, - [4365] = 4316, - [4366] = 2258, - [4367] = 4337, - [4368] = 4315, - [4369] = 4327, - [4370] = 4321, - [4371] = 4321, - [4372] = 4327, - [4373] = 4315, + [4363] = 3609, + [4364] = 4072, + [4365] = 4365, + [4366] = 4070, + [4367] = 4120, + [4368] = 4368, + [4369] = 3637, + [4370] = 4081, + [4371] = 4076, + [4372] = 3609, + [4373] = 4137, [4374] = 4374, - [4375] = 4316, - [4376] = 4362, - [4377] = 4377, - [4378] = 2266, - [4379] = 4317, - [4380] = 4380, - [4381] = 4381, - [4382] = 4321, - [4383] = 4327, - [4384] = 4384, - [4385] = 4385, - [4386] = 4316, + [4375] = 4081, + [4376] = 4376, + [4377] = 4079, + [4378] = 4079, + [4379] = 3645, + [4380] = 3644, + [4381] = 4085, + [4382] = 4076, + [4383] = 4068, + [4384] = 4068, + [4385] = 4068, + [4386] = 4386, [4387] = 4387, - [4388] = 4315, - [4389] = 4315, - [4390] = 4327, - [4391] = 4321, - [4392] = 4316, + [4388] = 4388, + [4389] = 4389, + [4390] = 4390, + [4391] = 4391, + [4392] = 4392, [4393] = 4393, - [4394] = 4381, - [4395] = 4377, + [4394] = 4386, + [4395] = 4395, [4396] = 4396, - [4397] = 4355, + [4397] = 4397, [4398] = 4398, [4399] = 4399, - [4400] = 4362, + [4400] = 4400, [4401] = 4401, - [4402] = 4362, - [4403] = 4377, - [4404] = 4377, - [4405] = 4339, - [4406] = 4338, - [4407] = 4316, - [4408] = 4377, - [4409] = 4409, - [4410] = 4315, - [4411] = 4327, - [4412] = 4321, - [4413] = 4322, - [4414] = 4320, - [4415] = 4319, - [4416] = 4317, - [4417] = 4339, - [4418] = 4374, - [4419] = 4324, - [4420] = 4338, - [4421] = 4331, - [4422] = 4334, - [4423] = 4316, - [4424] = 4337, - [4425] = 4355, - [4426] = 4426, - [4427] = 4427, - [4428] = 4316, - [4429] = 4322, - [4430] = 4430, - [4431] = 4315, - [4432] = 4327, - [4433] = 4321, - [4434] = 4320, - [4435] = 4355, - [4436] = 4319, - [4437] = 4317, - [4438] = 4337, - [4439] = 4439, - [4440] = 4374, - [4441] = 4334, - [4442] = 4324, - [4443] = 4443, - [4444] = 4444, - [4445] = 4445, - [4446] = 4331, - [4447] = 4355, - [4448] = 4448, - [4449] = 4316, - [4450] = 4324, - [4451] = 4374, - [4452] = 4315, - [4453] = 4327, - [4454] = 4321, - [4455] = 4362, - [4456] = 4456, - [4457] = 4339, - [4458] = 4321, - [4459] = 4327, - [4460] = 4315, - [4461] = 4461, - [4462] = 4331, - [4463] = 4463, - [4464] = 4319, - [4465] = 4320, - [4466] = 4316, - [4467] = 4334, - [4468] = 4315, - [4469] = 4327, - [4470] = 4321, - [4471] = 4337, - [4472] = 4316, - [4473] = 4377, - [4474] = 4374, - [4475] = 4321, - [4476] = 4377, - [4477] = 4477, - [4478] = 4478, - [4479] = 4322, - [4480] = 4427, - [4481] = 4337, - [4482] = 4482, - [4483] = 4483, + [4402] = 4395, + [4403] = 4403, + [4404] = 4404, + [4405] = 2306, + [4406] = 4397, + [4407] = 4398, + [4408] = 4399, + [4409] = 4400, + [4410] = 4396, + [4411] = 4392, + [4412] = 4393, + [4413] = 4401, + [4414] = 4414, + [4415] = 4397, + [4416] = 4391, + [4417] = 4398, + [4418] = 4399, + [4419] = 4400, + [4420] = 4420, + [4421] = 4421, + [4422] = 4422, + [4423] = 4391, + [4424] = 4396, + [4425] = 4425, + [4426] = 4388, + [4427] = 4395, + [4428] = 4397, + [4429] = 4403, + [4430] = 4404, + [4431] = 4398, + [4432] = 4399, + [4433] = 4400, + [4434] = 4389, + [4435] = 4390, + [4436] = 4436, + [4437] = 4396, + [4438] = 4438, + [4439] = 4401, + [4440] = 4397, + [4441] = 4386, + [4442] = 4414, + [4443] = 4398, + [4444] = 4399, + [4445] = 4400, + [4446] = 4392, + [4447] = 4421, + [4448] = 4388, + [4449] = 4393, + [4450] = 4450, + [4451] = 4390, + [4452] = 4400, + [4453] = 4392, + [4454] = 4454, + [4455] = 4393, + [4456] = 4404, + [4457] = 4397, + [4458] = 4458, + [4459] = 4414, + [4460] = 4398, + [4461] = 4399, + [4462] = 4400, + [4463] = 4414, + [4464] = 4399, + [4465] = 4398, + [4466] = 4386, + [4467] = 4392, + [4468] = 4397, + [4469] = 4403, + [4470] = 4421, + [4471] = 4471, + [4472] = 4404, + [4473] = 4389, + [4474] = 4401, + [4475] = 4403, + [4476] = 4395, + [4477] = 4390, + [4478] = 4397, + [4479] = 4401, + [4480] = 2311, + [4481] = 4398, + [4482] = 4399, + [4483] = 4400, [4484] = 4484, - [4485] = 4485, - [4486] = 4355, - [4487] = 4487, - [4488] = 4488, - [4489] = 4334, - [4490] = 4338, - [4491] = 4426, - [4492] = 4337, - [4493] = 4334, + [4485] = 4391, + [4486] = 4386, + [4487] = 4391, + [4488] = 4388, + [4489] = 4421, + [4490] = 4401, + [4491] = 4414, + [4492] = 4492, + [4493] = 4396, [4494] = 4494, - [4495] = 4339, - [4496] = 4331, - [4497] = 4497, - [4498] = 4324, - [4499] = 4499, - [4500] = 4374, - [4501] = 4362, - [4502] = 4317, - [4503] = 4331, - [4504] = 4319, - [4505] = 4377, - [4506] = 4320, - [4507] = 4362, - [4508] = 4338, - [4509] = 4377, - [4510] = 4377, - [4511] = 4362, - [4512] = 4339, + [4495] = 4495, + [4496] = 4496, + [4497] = 4395, + [4498] = 4498, + [4499] = 4397, + [4500] = 4403, + [4501] = 4501, + [4502] = 4398, + [4503] = 4399, + [4504] = 4400, + [4505] = 4505, + [4506] = 4506, + [4507] = 4396, + [4508] = 4404, + [4509] = 4396, + [4510] = 4401, + [4511] = 4511, + [4512] = 4512, [4513] = 4513, - [4514] = 4338, - [4515] = 4322, - [4516] = 4516, - [4517] = 4487, - [4518] = 4362, - [4519] = 4322, - [4520] = 4520, - [4521] = 4355, - [4522] = 4320, - [4523] = 4319, - [4524] = 4320, - [4525] = 4317, - [4526] = 4374, - [4527] = 4319, - [4528] = 4377, - [4529] = 4324, - [4530] = 4322, - [4531] = 4362, - [4532] = 4317, - [4533] = 4338, - [4534] = 4331, - [4535] = 4334, - [4536] = 4377, - [4537] = 4337, - [4538] = 4374, - [4539] = 4539, - [4540] = 4324, - [4541] = 4377, - [4542] = 4542, - [4543] = 4543, - [4544] = 4544, - [4545] = 4545, - [4546] = 4339, - [4547] = 4355, - [4548] = 4331, - [4549] = 4334, - [4550] = 4355, - [4551] = 4551, - [4552] = 4362, - [4553] = 4355, - [4554] = 4324, - [4555] = 4374, + [4514] = 4514, + [4515] = 4515, + [4516] = 4414, + [4517] = 4386, + [4518] = 4518, + [4519] = 4519, + [4520] = 4397, + [4521] = 4521, + [4522] = 4390, + [4523] = 4398, + [4524] = 4399, + [4525] = 4400, + [4526] = 4391, + [4527] = 4527, + [4528] = 4528, + [4529] = 4529, + [4530] = 4530, + [4531] = 4421, + [4532] = 4388, + [4533] = 4389, + [4534] = 4396, + [4535] = 4393, + [4536] = 4391, + [4537] = 4397, + [4538] = 4400, + [4539] = 4398, + [4540] = 4399, + [4541] = 4400, + [4542] = 4399, + [4543] = 4392, + [4544] = 4398, + [4545] = 4397, + [4546] = 4400, + [4547] = 4389, + [4548] = 4395, + [4549] = 4397, + [4550] = 4386, + [4551] = 4403, + [4552] = 4552, + [4553] = 4404, + [4554] = 4397, + [4555] = 4555, [4556] = 4556, - [4557] = 4377, - [4558] = 4355, + [4557] = 4557, + [4558] = 4390, [4559] = 4559, - [4560] = 4377, - [4561] = 4377, - [4562] = 4337, - [4563] = 4362, + [4560] = 4560, + [4561] = 4389, + [4562] = 4390, + [4563] = 4388, [4564] = 4564, - [4565] = 4337, - [4566] = 4317, - [4567] = 4567, - [4568] = 4568, - [4569] = 4569, - [4570] = 4319, - [4571] = 4334, - [4572] = 4331, - [4573] = 4355, - [4574] = 4362, - [4575] = 4320, - [4576] = 4324, - [4577] = 4374, - [4578] = 4362, - [4579] = 4317, - [4580] = 4320, - [4581] = 4362, - [4582] = 4339, - [4583] = 4583, - [4584] = 4319, - [4585] = 4320, - [4586] = 4322, - [4587] = 4587, - [4588] = 4377, - [4589] = 4338, - [4590] = 4339, - [4591] = 4355, - [4592] = 4338, - [4593] = 4337, - [4594] = 4334, - [4595] = 4322, - [4596] = 4331, - [4597] = 4322, - [4598] = 4320, - [4599] = 4319, - [4600] = 4324, - [4601] = 4374, - [4602] = 4322, - [4603] = 4320, - [4604] = 4320, - [4605] = 4338, - [4606] = 4319, - [4607] = 4339, - [4608] = 4322, - [4609] = 4317, - [4610] = 4610, - [4611] = 4377, - [4612] = 4374, - [4613] = 4324, - [4614] = 4338, - [4615] = 4339, - [4616] = 4338, - [4617] = 4317, - [4618] = 4374, - [4619] = 4324, - [4620] = 4339, - [4621] = 4362, - [4622] = 4622, - [4623] = 4331, - [4624] = 4334, - [4625] = 4331, - [4626] = 4334, - [4627] = 4337, - [4628] = 4337, - [4629] = 4629, - [4630] = 4377, - [4631] = 4377, - [4632] = 4632, - [4633] = 4633, - [4634] = 4634, + [4565] = 4395, + [4566] = 4566, + [4567] = 4401, + [4568] = 4396, + [4569] = 4421, + [4570] = 4392, + [4571] = 4393, + [4572] = 4414, + [4573] = 4401, + [4574] = 4396, + [4575] = 4403, + [4576] = 4401, + [4577] = 4421, + [4578] = 4396, + [4579] = 4400, + [4580] = 4396, + [4581] = 4399, + [4582] = 4398, + [4583] = 4386, + [4584] = 4414, + [4585] = 4403, + [4586] = 4586, + [4587] = 4393, + [4588] = 4389, + [4589] = 4401, + [4590] = 4404, + [4591] = 4386, + [4592] = 4396, + [4593] = 4593, + [4594] = 4393, + [4595] = 4392, + [4596] = 4397, + [4597] = 4393, + [4598] = 4421, + [4599] = 4388, + [4600] = 4401, + [4601] = 4389, + [4602] = 4388, + [4603] = 4390, + [4604] = 4389, + [4605] = 4390, + [4606] = 4390, + [4607] = 4392, + [4608] = 4608, + [4609] = 4389, + [4610] = 4396, + [4611] = 4392, + [4612] = 4388, + [4613] = 4393, + [4614] = 4421, + [4615] = 4615, + [4616] = 4616, + [4617] = 4617, + [4618] = 4404, + [4619] = 4414, + [4620] = 4386, + [4621] = 4390, + [4622] = 4389, + [4623] = 4388, + [4624] = 4391, + [4625] = 4401, + [4626] = 4395, + [4627] = 4403, + [4628] = 4556, + [4629] = 4392, + [4630] = 4404, + [4631] = 4403, + [4632] = 4395, + [4633] = 4401, + [4634] = 4404, + [4635] = 4635, + [4636] = 4393, + [4637] = 4396, + [4638] = 4638, + [4639] = 4403, + [4640] = 4396, + [4641] = 4401, + [4642] = 4421, + [4643] = 4395, + [4644] = 4414, + [4645] = 4645, + [4646] = 4401, + [4647] = 4647, + [4648] = 4386, + [4649] = 4391, + [4650] = 4386, + [4651] = 4404, + [4652] = 4414, + [4653] = 4391, + [4654] = 4389, + [4655] = 4421, + [4656] = 4656, + [4657] = 4391, + [4658] = 4404, + [4659] = 4403, + [4660] = 4388, + [4661] = 4395, + [4662] = 4557, + [4663] = 4388, + [4664] = 4664, + [4665] = 4389, + [4666] = 4666, + [4667] = 4401, + [4668] = 4668, + [4669] = 4396, + [4670] = 4670, + [4671] = 4396, + [4672] = 4391, + [4673] = 4673, + [4674] = 4664, + [4675] = 4675, + [4676] = 4391, + [4677] = 4390, + [4678] = 4678, + [4679] = 4395, + [4680] = 4395, + [4681] = 4681, + [4682] = 4403, + [4683] = 4404, + [4684] = 4684, + [4685] = 4421, + [4686] = 4396, + [4687] = 4386, + [4688] = 4414, + [4689] = 4392, + [4690] = 4690, + [4691] = 4389, + [4692] = 4692, + [4693] = 4387, + [4694] = 4390, + [4695] = 4695, + [4696] = 4393, + [4697] = 4396, + [4698] = 4392, + [4699] = 4393, + [4700] = 4700, + [4701] = 4414, + [4702] = 4702, + [4703] = 4703, + [4704] = 4704, + [4705] = 4705, + [4706] = 4706, + [4707] = 4707, }; static inline bool sym_rune_literal_character_set_1(int32_t c) { @@ -8173,303 +8258,303 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(200); - if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(352); - if (lookahead == '#') ADVANCE(402); - if (lookahead == '$') ADVANCE(350); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(248); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(221); - if (lookahead == '/') ADVANCE(251); - if (lookahead == '0') ADVANCE(368); - if (lookahead == ':') ADVANCE(274); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (eof) ADVANCE(203); + if (lookahead == '!') ADVANCE(282); + if (lookahead == '"') ADVANCE(357); + if (lookahead == '#') ADVANCE(410); + if (lookahead == '$') ADVANCE(355); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == ')') ADVANCE(238); + if (lookahead == '*') ADVANCE(250); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(226); + if (lookahead == '/') ADVANCE(253); + if (lookahead == '0') ADVANCE(373); + if (lookahead == ':') ADVANCE(276); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(272); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); if (lookahead == '\\') ADVANCE(183); - if (lookahead == ']') ADVANCE(272); - if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(395); + if (lookahead == ']') ADVANCE(274); + if (lookahead == '^') ADVANCE(290); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); - if (lookahead == '}') ADVANCE(231); - if (lookahead == '~') ADVANCE(283); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(403); + if (lookahead == '}') ADVANCE(236); + if (lookahead == '~') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(197) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(339); + lookahead == ' ') SKIP(199) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(344); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(303); + if (lookahead == '\n') ADVANCE(308); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(352); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); + if (lookahead == '"') ADVANCE(357); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(124); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(223); - if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(335); - if (lookahead == ':') ADVANCE(273); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(255); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == ')') ADVANCE(238); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(228); + if (lookahead == '/') ADVANCE(252); + if (lookahead == '0') ADVANCE(340); + if (lookahead == ':') ADVANCE(275); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(257); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); - if (lookahead == '}') ADVANCE(231); - if (lookahead == '~') ADVANCE(283); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); + if (lookahead == '}') ADVANCE(236); + if (lookahead == '~') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(3) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(352); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); + if (lookahead == '"') ADVANCE(357); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(124); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(223); - if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(335); - if (lookahead == ':') ADVANCE(273); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(255); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == ')') ADVANCE(238); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(228); + if (lookahead == '/') ADVANCE(252); + if (lookahead == '0') ADVANCE(340); + if (lookahead == ':') ADVANCE(275); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(257); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); - if (lookahead == '}') ADVANCE(231); - if (lookahead == '~') ADVANCE(283); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); + if (lookahead == '}') ADVANCE(236); + if (lookahead == '~') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(3) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(352); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); + if (lookahead == '"') ADVANCE(357); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(121); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(223); - if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(335); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(255); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == ')') ADVANCE(238); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(228); + if (lookahead == '/') ADVANCE(252); + if (lookahead == '0') ADVANCE(340); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(257); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); - if (lookahead == '}') ADVANCE(231); - if (lookahead == '~') ADVANCE(283); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); + if (lookahead == '}') ADVANCE(236); + if (lookahead == '~') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(352); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); + if (lookahead == '"') ADVANCE(357); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(121); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(223); - if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(335); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(255); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == ')') ADVANCE(238); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(228); + if (lookahead == '/') ADVANCE(252); + if (lookahead == '0') ADVANCE(340); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(257); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); - if (lookahead == '}') ADVANCE(231); - if (lookahead == '~') ADVANCE(283); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); + if (lookahead == '}') ADVANCE(236); + if (lookahead == '~') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); case 6: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(274); - if (lookahead == '<') ADVANCE(254); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); + if (lookahead == ':') ADVANCE(276); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); - if (lookahead == '}') ADVANCE(231); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(290); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(8) END_STATE(); case 7: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(274); - if (lookahead == '<') ADVANCE(254); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); + if (lookahead == ':') ADVANCE(276); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(285); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(290); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8477,76 +8562,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '|') ADVANCE(237); - if (lookahead == '}') ADVANCE(231); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '|') ADVANCE(285); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(9) END_STATE(); case 8: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(274); - if (lookahead == '<') ADVANCE(254); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); + if (lookahead == ':') ADVANCE(276); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); - if (lookahead == '}') ADVANCE(231); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(290); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(8) END_STATE(); case 9: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(274); - if (lookahead == '<') ADVANCE(254); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); + if (lookahead == ':') ADVANCE(276); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(285); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(290); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8554,76 +8639,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '|') ADVANCE(237); - if (lookahead == '}') ADVANCE(231); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '|') ADVANCE(285); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(9) END_STATE(); case 10: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); if (lookahead == ':') ADVANCE(112); - if (lookahead == '<') ADVANCE(256); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '<') ADVANCE(258); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); - if (lookahead == '}') ADVANCE(231); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(290); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(12) END_STATE(); case 11: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); if (lookahead == ':') ADVANCE(112); - if (lookahead == '<') ADVANCE(256); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '<') ADVANCE(258); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(285); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(290); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8631,76 +8716,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '|') ADVANCE(237); - if (lookahead == '}') ADVANCE(231); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '|') ADVANCE(285); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(13) END_STATE(); case 12: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); if (lookahead == ':') ADVANCE(112); - if (lookahead == '<') ADVANCE(256); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '<') ADVANCE(258); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); - if (lookahead == '}') ADVANCE(231); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(290); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(12) END_STATE(); case 13: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); if (lookahead == ':') ADVANCE(112); - if (lookahead == '<') ADVANCE(256); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '<') ADVANCE(258); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(285); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(290); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8708,76 +8793,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '|') ADVANCE(237); - if (lookahead == '}') ADVANCE(231); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '|') ADVANCE(285); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(13) END_STATE(); case 14: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(222); - if (lookahead == '/') ADVANCE(250); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(257); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(227); + if (lookahead == '/') ADVANCE(252); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(259); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); - if (lookahead == '}') ADVANCE(231); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(16) END_STATE(); case 15: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(222); - if (lookahead == '/') ADVANCE(250); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(257); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(227); + if (lookahead == '/') ADVANCE(252); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(259); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(284); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(289); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8785,77 +8870,77 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); - if (lookahead == '}') ADVANCE(231); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(17) END_STATE(); case 16: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(222); - if (lookahead == '/') ADVANCE(250); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(257); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(227); + if (lookahead == '/') ADVANCE(252); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(259); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); - if (lookahead == '}') ADVANCE(231); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(16) END_STATE(); case 17: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(222); - if (lookahead == '/') ADVANCE(250); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(257); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(227); + if (lookahead == '/') ADVANCE(252); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(259); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(284); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(289); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8863,41 +8948,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); - if (lookahead == '}') ADVANCE(231); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(17) END_STATE(); case 18: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(123); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(274); - if (lookahead == '<') ADVANCE(254); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); + if (lookahead == ':') ADVANCE(276); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(285); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(290); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8905,40 +8990,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '|') ADVANCE(237); - if (lookahead == '}') ADVANCE(231); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '|') ADVANCE(285); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(19) END_STATE(); case 19: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(123); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(274); - if (lookahead == '<') ADVANCE(254); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); + if (lookahead == ':') ADVANCE(276); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(285); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(290); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8946,40 +9031,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '|') ADVANCE(237); - if (lookahead == '}') ADVANCE(231); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '|') ADVANCE(285); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(19) END_STATE(); case 20: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(123); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); if (lookahead == ':') ADVANCE(112); - if (lookahead == '<') ADVANCE(256); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '<') ADVANCE(258); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(285); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(290); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8987,40 +9072,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '|') ADVANCE(237); - if (lookahead == '}') ADVANCE(231); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '|') ADVANCE(285); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(21) END_STATE(); case 21: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(123); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); if (lookahead == ':') ADVANCE(112); - if (lookahead == '<') ADVANCE(256); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '<') ADVANCE(258); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(285); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(290); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -9028,40 +9113,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '|') ADVANCE(237); - if (lookahead == '}') ADVANCE(231); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '|') ADVANCE(285); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(21) END_STATE(); case 22: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(123); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(222); - if (lookahead == '/') ADVANCE(250); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(257); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(227); + if (lookahead == '/') ADVANCE(252); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(259); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(284); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(289); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -9069,40 +9154,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '|') ADVANCE(238); - if (lookahead == '}') ADVANCE(231); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '|') ADVANCE(286); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(23) END_STATE(); case 23: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(123); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(222); - if (lookahead == '/') ADVANCE(250); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(257); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(227); + if (lookahead == '/') ADVANCE(252); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(259); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(284); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(289); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -9110,670 +9195,670 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '|') ADVANCE(238); - if (lookahead == '}') ADVANCE(231); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '|') ADVANCE(286); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(23) END_STATE(); case 24: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(138); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(274); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(254); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(285); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); + if (lookahead == ':') ADVANCE(276); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(290); if (lookahead == 'a') ADVANCE(147); if (lookahead == 'i') ADVANCE(144); if (lookahead == 'o') ADVANCE(146); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); - if (lookahead == '}') ADVANCE(231); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(25) END_STATE(); case 25: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(138); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(274); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(254); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(285); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); + if (lookahead == ':') ADVANCE(276); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(290); if (lookahead == 'a') ADVANCE(147); if (lookahead == 'i') ADVANCE(144); if (lookahead == 'o') ADVANCE(146); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); - if (lookahead == '}') ADVANCE(231); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(25) END_STATE(); case 26: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(138); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(256); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(285); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(258); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(290); if (lookahead == 'a') ADVANCE(147); if (lookahead == 'i') ADVANCE(144); if (lookahead == 'o') ADVANCE(146); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); - if (lookahead == '}') ADVANCE(231); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(27) END_STATE(); case 27: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(138); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(256); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(285); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(258); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(290); if (lookahead == 'a') ADVANCE(147); if (lookahead == 'i') ADVANCE(144); if (lookahead == 'o') ADVANCE(146); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); - if (lookahead == '}') ADVANCE(231); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(27) END_STATE(); case 28: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(138); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(250); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(257); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(252); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(259); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(284); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(289); if (lookahead == 'a') ADVANCE(147); if (lookahead == 'i') ADVANCE(144); if (lookahead == 'o') ADVANCE(146); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); - if (lookahead == '}') ADVANCE(231); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(29) END_STATE(); case 29: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(138); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(250); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(257); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(252); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(259); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(284); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(289); if (lookahead == 'a') ADVANCE(147); if (lookahead == 'i') ADVANCE(144); if (lookahead == 'o') ADVANCE(146); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); - if (lookahead == '}') ADVANCE(231); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(29) END_STATE(); case 30: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(279); - if (lookahead == '"') ADVANCE(352); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(281); + if (lookahead == '"') ADVANCE(357); if (lookahead == '$') ADVANCE(124); - if (lookahead == '&') ADVANCE(286); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(239); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(243); - if (lookahead == '.') ADVANCE(223); + if (lookahead == '&') ADVANCE(291); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == ')') ADVANCE(238); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(241); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(245); + if (lookahead == '.') ADVANCE(228); if (lookahead == '/') ADVANCE(98); - if (lookahead == '0') ADVANCE(335); - if (lookahead == ';') ADVANCE(219); + if (lookahead == '0') ADVANCE(340); + if (lookahead == ';') ADVANCE(224); if (lookahead == '<') ADVANCE(101); - if (lookahead == '?') ADVANCE(277); + if (lookahead == '?') ADVANCE(279); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(395); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '}') ADVANCE(231); - if (lookahead == '~') ADVANCE(283); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '}') ADVANCE(236); + if (lookahead == '~') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(30) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); case 31: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(279); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(281); if (lookahead == '$') ADVANCE(125); - if (lookahead == '&') ADVANCE(286); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '.') ADVANCE(220); + if (lookahead == '&') ADVANCE(291); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '.') ADVANCE(225); if (lookahead == '/') ADVANCE(98); - if (lookahead == '<') ADVANCE(269); - if (lookahead == '?') ADVANCE(277); + if (lookahead == '<') ADVANCE(271); + if (lookahead == '?') ADVANCE(279); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); 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(395); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == '}') ADVANCE(231); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(32) END_STATE(); case 32: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(279); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(281); if (lookahead == '$') ADVANCE(125); - if (lookahead == '&') ADVANCE(286); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '.') ADVANCE(220); + if (lookahead == '&') ADVANCE(291); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '.') ADVANCE(225); if (lookahead == '/') ADVANCE(98); - if (lookahead == '?') ADVANCE(277); + if (lookahead == '?') ADVANCE(279); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); 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(395); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == '}') ADVANCE(231); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(32) END_STATE(); case 33: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(279); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(281); if (lookahead == '$') ADVANCE(125); - if (lookahead == '&') ADVANCE(286); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); + if (lookahead == '&') ADVANCE(291); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); if (lookahead == '/') ADVANCE(98); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '=') ADVANCE(234); - if (lookahead == '?') ADVANCE(277); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '=') ADVANCE(239); + if (lookahead == '?') ADVANCE(279); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); 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(395); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == '}') ADVANCE(231); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(33) END_STATE(); case 34: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); if (lookahead == '$') ADVANCE(125); - if (lookahead == ',') ADVANCE(230); + if (lookahead == ',') ADVANCE(235); if (lookahead == '.') ADVANCE(104); if (lookahead == '/') ADVANCE(98); - if (lookahead == ':') ADVANCE(273); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '=') ADVANCE(234); + if (lookahead == ':') ADVANCE(275); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '=') ADVANCE(239); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '}') ADVANCE(231); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(34) END_STATE(); case 35: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); if (lookahead == '$') ADVANCE(125); - if (lookahead == '.') ADVANCE(220); + if (lookahead == '.') ADVANCE(225); if (lookahead == '/') ADVANCE(98); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '=') ADVANCE(234); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '=') ADVANCE(239); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '}') ADVANCE(231); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(36) END_STATE(); case 36: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); if (lookahead == '$') ADVANCE(125); - if (lookahead == '.') ADVANCE(220); + if (lookahead == '.') ADVANCE(225); if (lookahead == '/') ADVANCE(98); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '=') ADVANCE(234); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '=') ADVANCE(239); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '}') ADVANCE(231); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(36) END_STATE(); case 37: - if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(352); + if (lookahead == '!') ADVANCE(282); + if (lookahead == '"') ADVANCE(357); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(124); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(335); - if (lookahead == ':') ADVANCE(273); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(255); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(231); + if (lookahead == '/') ADVANCE(252); + if (lookahead == '0') ADVANCE(340); + if (lookahead == ':') ADVANCE(275); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(257); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == ']') ADVANCE(272); - if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == ']') ADVANCE(274); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); - if (lookahead == '}') ADVANCE(231); - if (lookahead == '~') ADVANCE(283); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); + if (lookahead == '}') ADVANCE(236); + if (lookahead == '~') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(38) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); case 38: - if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(352); + if (lookahead == '!') ADVANCE(282); + if (lookahead == '"') ADVANCE(357); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(124); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(335); - if (lookahead == ':') ADVANCE(273); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(255); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(231); + if (lookahead == '/') ADVANCE(252); + if (lookahead == '0') ADVANCE(340); + if (lookahead == ':') ADVANCE(275); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(257); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == ']') ADVANCE(272); - if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == ']') ADVANCE(274); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); - if (lookahead == '}') ADVANCE(231); - if (lookahead == '~') ADVANCE(283); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); + if (lookahead == '}') ADVANCE(236); + if (lookahead == '~') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(38) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); case 39: - if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(352); + if (lookahead == '!') ADVANCE(282); + if (lookahead == '"') ADVANCE(357); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(121); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(335); - if (lookahead == ':') ADVANCE(273); - if (lookahead == '<') ADVANCE(255); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(231); + if (lookahead == '/') ADVANCE(252); + if (lookahead == '0') ADVANCE(340); + if (lookahead == ':') ADVANCE(275); + if (lookahead == '<') ADVANCE(257); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == ']') ADVANCE(272); - if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == ']') ADVANCE(274); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); - if (lookahead == '}') ADVANCE(231); - if (lookahead == '~') ADVANCE(283); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); + if (lookahead == '}') ADVANCE(236); + if (lookahead == '~') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(40) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); case 40: - if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(352); + if (lookahead == '!') ADVANCE(282); + if (lookahead == '"') ADVANCE(357); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(121); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(335); - if (lookahead == ':') ADVANCE(273); - if (lookahead == '<') ADVANCE(255); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(231); + if (lookahead == '/') ADVANCE(252); + if (lookahead == '0') ADVANCE(340); + if (lookahead == ':') ADVANCE(275); + if (lookahead == '<') ADVANCE(257); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == ']') ADVANCE(272); - if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == ']') ADVANCE(274); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); - if (lookahead == '}') ADVANCE(231); - if (lookahead == '~') ADVANCE(283); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); + if (lookahead == '}') ADVANCE(236); + if (lookahead == '~') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(40) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); case 41: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); - if (lookahead == '0') ADVANCE(342); - if (lookahead == ':') ADVANCE(274); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(254); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); + if (lookahead == '0') ADVANCE(347); + if (lookahead == ':') ADVANCE(276); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(290); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(42) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(339); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(344); END_STATE(); case 42: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); - if (lookahead == '0') ADVANCE(342); - if (lookahead == ':') ADVANCE(274); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(254); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); + if (lookahead == '0') ADVANCE(347); + if (lookahead == ':') ADVANCE(276); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(290); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(42) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(339); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(344); END_STATE(); case 43: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(273); - if (lookahead == '<') ADVANCE(254); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); + if (lookahead == ':') ADVANCE(275); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(285); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(290); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -9781,38 +9866,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(44) END_STATE(); case 44: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(273); - if (lookahead == '<') ADVANCE(254); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); + if (lookahead == ':') ADVANCE(275); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(285); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(290); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -9820,73 +9905,73 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(44) END_STATE(); case 45: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(256); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(258); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(290); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(47) END_STATE(); case 46: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(256); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(258); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(285); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(290); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -9894,73 +9979,73 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(48) END_STATE(); case 47: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(256); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(258); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(290); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(47) END_STATE(); case 48: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(256); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(258); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(285); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(290); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -9968,77 +10053,77 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(48) END_STATE(); case 49: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(224); - if (lookahead == '/') ADVANCE(250); - if (lookahead == ':') ADVANCE(274); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(257); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == ')') ADVANCE(238); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(229); + if (lookahead == '/') ADVANCE(252); + if (lookahead == ':') ADVANCE(276); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(259); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == ']') ADVANCE(272); - if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == ']') ADVANCE(274); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(51) END_STATE(); case 50: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(224); - if (lookahead == '/') ADVANCE(250); - if (lookahead == ':') ADVANCE(274); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(257); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == ')') ADVANCE(238); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(229); + if (lookahead == '/') ADVANCE(252); + if (lookahead == ':') ADVANCE(276); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(259); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == ']') ADVANCE(272); - if (lookahead == '^') ADVANCE(284); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == ']') ADVANCE(274); + if (lookahead == '^') ADVANCE(289); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10046,77 +10131,77 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(52) END_STATE(); case 51: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(224); - if (lookahead == '/') ADVANCE(250); - if (lookahead == ':') ADVANCE(274); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(257); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == ')') ADVANCE(238); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(229); + if (lookahead == '/') ADVANCE(252); + if (lookahead == ':') ADVANCE(276); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(259); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == ']') ADVANCE(272); - if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == ']') ADVANCE(274); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(51) END_STATE(); case 52: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(224); - if (lookahead == '/') ADVANCE(250); - if (lookahead == ':') ADVANCE(274); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(257); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == ')') ADVANCE(238); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(229); + if (lookahead == '/') ADVANCE(252); + if (lookahead == ':') ADVANCE(276); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(259); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == ']') ADVANCE(272); - if (lookahead == '^') ADVANCE(284); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == ']') ADVANCE(274); + if (lookahead == '^') ADVANCE(289); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10124,103 +10209,103 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(52) END_STATE(); case 53: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(221); - if (lookahead == '/') ADVANCE(250); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(226); + if (lookahead == '/') ADVANCE(252); if (lookahead == ':') ADVANCE(112); - if (lookahead == '<') ADVANCE(257); + if (lookahead == '<') ADVANCE(259); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(54) END_STATE(); case 54: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(221); - if (lookahead == '/') ADVANCE(250); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(226); + if (lookahead == '/') ADVANCE(252); if (lookahead == ':') ADVANCE(112); - if (lookahead == '<') ADVANCE(257); + if (lookahead == '<') ADVANCE(259); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(54) END_STATE(); case 55: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(221); - if (lookahead == '/') ADVANCE(250); - if (lookahead == '<') ADVANCE(257); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(226); + if (lookahead == '/') ADVANCE(252); + if (lookahead == '<') ADVANCE(259); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(284); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(289); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10228,37 +10313,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(56) END_STATE(); case 56: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(221); - if (lookahead == '/') ADVANCE(250); - if (lookahead == '<') ADVANCE(257); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(226); + if (lookahead == '/') ADVANCE(252); + if (lookahead == '<') ADVANCE(259); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(284); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(289); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10266,37 +10351,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(56) END_STATE(); case 57: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(250); - if (lookahead == ':') ADVANCE(273); - if (lookahead == '<') ADVANCE(255); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(252); + if (lookahead == ':') ADVANCE(275); + if (lookahead == '<') ADVANCE(257); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(284); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(289); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10304,36 +10389,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '|') ADVANCE(238); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '|') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(58) END_STATE(); case 58: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(250); - if (lookahead == ':') ADVANCE(273); - if (lookahead == '<') ADVANCE(255); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(252); + if (lookahead == ':') ADVANCE(275); + if (lookahead == '<') ADVANCE(257); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(284); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(289); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10341,37 +10426,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '|') ADVANCE(238); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '|') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(58) END_STATE(); case 59: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(123); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(273); - if (lookahead == '<') ADVANCE(254); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); + if (lookahead == ':') ADVANCE(275); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(285); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(290); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10379,38 +10464,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(60) END_STATE(); case 60: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(123); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(273); - if (lookahead == '<') ADVANCE(254); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); + if (lookahead == ':') ADVANCE(275); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(285); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(290); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10418,39 +10503,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(60) END_STATE(); case 61: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(123); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(256); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(258); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(285); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(290); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10458,39 +10543,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(62) END_STATE(); case 62: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(123); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(256); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(258); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(285); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(290); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10498,41 +10583,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(62) END_STATE(); case 63: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(123); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(224); - if (lookahead == '/') ADVANCE(250); - if (lookahead == ':') ADVANCE(274); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(257); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == ')') ADVANCE(238); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(229); + if (lookahead == '/') ADVANCE(252); + if (lookahead == ':') ADVANCE(276); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(259); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == ']') ADVANCE(272); - if (lookahead == '^') ADVANCE(284); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == ']') ADVANCE(274); + if (lookahead == '^') ADVANCE(289); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10540,42 +10625,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); - if (lookahead == '}') ADVANCE(231); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(64) END_STATE(); case 64: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(123); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(224); - if (lookahead == '/') ADVANCE(250); - if (lookahead == ':') ADVANCE(274); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(257); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == ')') ADVANCE(238); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(229); + if (lookahead == '/') ADVANCE(252); + if (lookahead == ':') ADVANCE(276); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(259); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == ']') ADVANCE(272); - if (lookahead == '^') ADVANCE(284); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == ']') ADVANCE(274); + if (lookahead == '^') ADVANCE(289); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10583,38 +10668,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); - if (lookahead == '}') ADVANCE(231); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(64) END_STATE(); case 65: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(123); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(221); - if (lookahead == '/') ADVANCE(250); - if (lookahead == '<') ADVANCE(257); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(226); + if (lookahead == '/') ADVANCE(252); + if (lookahead == '<') ADVANCE(259); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(284); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(289); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10622,37 +10707,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(66) END_STATE(); case 66: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(123); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(221); - if (lookahead == '/') ADVANCE(250); - if (lookahead == '<') ADVANCE(257); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(226); + if (lookahead == '/') ADVANCE(252); + if (lookahead == '<') ADVANCE(259); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(284); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(289); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10660,37 +10745,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(66) END_STATE(); case 67: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(123); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(250); - if (lookahead == ':') ADVANCE(273); - if (lookahead == '<') ADVANCE(255); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(252); + if (lookahead == ':') ADVANCE(275); + if (lookahead == '<') ADVANCE(257); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(284); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(289); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10698,36 +10783,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '|') ADVANCE(238); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '|') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(68) END_STATE(); case 68: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(123); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(250); - if (lookahead == ':') ADVANCE(273); - if (lookahead == '<') ADVANCE(255); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(252); + if (lookahead == ':') ADVANCE(275); + if (lookahead == '<') ADVANCE(257); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(284); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(289); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10735,566 +10820,566 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == '|') ADVANCE(238); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == '|') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(68) END_STATE(); case 69: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(139); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(256); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(285); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(258); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(290); if (lookahead == 'a') ADVANCE(147); if (lookahead == 'i') ADVANCE(144); if (lookahead == 'o') ADVANCE(146); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(70) END_STATE(); case 70: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(139); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(256); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(285); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(258); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(290); if (lookahead == 'a') ADVANCE(147); if (lookahead == 'i') ADVANCE(144); if (lookahead == 'o') ADVANCE(146); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(70) END_STATE(); case 71: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(138); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(274); - if (lookahead == '<') ADVANCE(254); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(285); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); + if (lookahead == ':') ADVANCE(276); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(290); if (lookahead == 'a') ADVANCE(147); if (lookahead == 'i') ADVANCE(144); if (lookahead == 'o') ADVANCE(146); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(72) END_STATE(); case 72: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(138); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(274); - if (lookahead == '<') ADVANCE(254); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(285); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(253); + if (lookahead == ':') ADVANCE(276); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(290); if (lookahead == 'a') ADVANCE(147); if (lookahead == 'i') ADVANCE(144); if (lookahead == 'o') ADVANCE(146); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(72) END_STATE(); case 73: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(138); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(224); - if (lookahead == '/') ADVANCE(250); - if (lookahead == ':') ADVANCE(274); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(257); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == ')') ADVANCE(238); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(229); + if (lookahead == '/') ADVANCE(252); + if (lookahead == ':') ADVANCE(276); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(259); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '[') ADVANCE(268); - if (lookahead == ']') ADVANCE(272); - if (lookahead == '^') ADVANCE(284); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); + if (lookahead == '[') ADVANCE(270); + if (lookahead == ']') ADVANCE(274); + if (lookahead == '^') ADVANCE(289); if (lookahead == 'a') ADVANCE(147); if (lookahead == 'i') ADVANCE(144); if (lookahead == 'o') ADVANCE(146); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(74) END_STATE(); case 74: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(138); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(224); - if (lookahead == '/') ADVANCE(250); - if (lookahead == ':') ADVANCE(274); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(257); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == ')') ADVANCE(238); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(229); + if (lookahead == '/') ADVANCE(252); + if (lookahead == ':') ADVANCE(276); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(259); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '[') ADVANCE(282); - if (lookahead == ']') ADVANCE(272); - if (lookahead == '^') ADVANCE(284); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); + if (lookahead == '[') ADVANCE(287); + if (lookahead == ']') ADVANCE(274); + if (lookahead == '^') ADVANCE(289); if (lookahead == 'a') ADVANCE(147); if (lookahead == 'i') ADVANCE(144); if (lookahead == 'o') ADVANCE(146); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(74) END_STATE(); case 75: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(138); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(221); - if (lookahead == '/') ADVANCE(250); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(226); + if (lookahead == '/') ADVANCE(252); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(257); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(259); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '[') ADVANCE(268); - if (lookahead == ']') ADVANCE(272); - if (lookahead == '^') ADVANCE(284); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); + if (lookahead == '[') ADVANCE(270); + if (lookahead == ']') ADVANCE(274); + if (lookahead == '^') ADVANCE(289); if (lookahead == 'a') ADVANCE(147); if (lookahead == 'i') ADVANCE(144); if (lookahead == 'o') ADVANCE(146); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(76) END_STATE(); case 76: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(138); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(221); - if (lookahead == '/') ADVANCE(250); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(226); + if (lookahead == '/') ADVANCE(252); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(257); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(259); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '[') ADVANCE(282); - if (lookahead == ']') ADVANCE(272); - if (lookahead == '^') ADVANCE(284); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); + if (lookahead == '[') ADVANCE(287); + if (lookahead == ']') ADVANCE(274); + if (lookahead == '^') ADVANCE(289); if (lookahead == 'a') ADVANCE(147); if (lookahead == 'i') ADVANCE(144); if (lookahead == 'o') ADVANCE(146); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(76) END_STATE(); case 77: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(138); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(250); - if (lookahead == ':') ADVANCE(273); - if (lookahead == '<') ADVANCE(255); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(252); + if (lookahead == ':') ADVANCE(275); + if (lookahead == '<') ADVANCE(257); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(284); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(289); if (lookahead == 'a') ADVANCE(147); if (lookahead == 'i') ADVANCE(144); if (lookahead == 'o') ADVANCE(146); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(78) END_STATE(); case 78: - if (lookahead == '!') ADVANCE(280); + if (lookahead == '!') ADVANCE(282); if (lookahead == '#') ADVANCE(127); if (lookahead == '$') ADVANCE(138); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(250); - if (lookahead == ':') ADVANCE(273); - if (lookahead == '<') ADVANCE(255); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(252); + if (lookahead == ':') ADVANCE(275); + if (lookahead == '<') ADVANCE(257); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(284); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(289); if (lookahead == 'a') ADVANCE(147); if (lookahead == 'i') ADVANCE(144); if (lookahead == 'o') ADVANCE(146); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(78) END_STATE(); case 79: - if (lookahead == '!') ADVANCE(279); - if (lookahead == '"') ADVANCE(352); + if (lookahead == '!') ADVANCE(281); + if (lookahead == '"') ADVANCE(357); if (lookahead == '$') ADVANCE(124); - if (lookahead == '&') ADVANCE(286); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(239); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(243); - if (lookahead == '.') ADVANCE(223); + if (lookahead == '&') ADVANCE(291); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == ')') ADVANCE(238); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(241); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(245); + if (lookahead == '.') ADVANCE(228); if (lookahead == '/') ADVANCE(98); - if (lookahead == '0') ADVANCE(335); - if (lookahead == ':') ADVANCE(273); - if (lookahead == ';') ADVANCE(219); + if (lookahead == '0') ADVANCE(340); + if (lookahead == ':') ADVANCE(275); + if (lookahead == ';') ADVANCE(224); if (lookahead == '<') ADVANCE(101); - if (lookahead == '?') ADVANCE(277); + if (lookahead == '?') ADVANCE(279); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == ']') ADVANCE(272); - if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(395); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == ']') ADVANCE(274); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(236); - if (lookahead == '}') ADVANCE(231); - if (lookahead == '~') ADVANCE(283); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(284); + if (lookahead == '}') ADVANCE(236); + if (lookahead == '~') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(79) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); case 80: - if (lookahead == '!') ADVANCE(279); - if (lookahead == '"') ADVANCE(352); + if (lookahead == '!') ADVANCE(281); + if (lookahead == '"') ADVANCE(357); if (lookahead == '$') ADVANCE(124); - if (lookahead == '&') ADVANCE(286); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(239); - if (lookahead == '-') ADVANCE(243); - if (lookahead == '.') ADVANCE(225); + if (lookahead == '&') ADVANCE(291); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(241); + if (lookahead == '-') ADVANCE(245); + if (lookahead == '.') ADVANCE(230); if (lookahead == '/') ADVANCE(98); - if (lookahead == '0') ADVANCE(335); + if (lookahead == '0') ADVANCE(340); if (lookahead == '<') ADVANCE(101); - if (lookahead == '?') ADVANCE(277); + if (lookahead == '?') ADVANCE(279); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(395); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '~') ADVANCE(283); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '~') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(80) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); case 81: - if (lookahead == '!') ADVANCE(279); + if (lookahead == '!') ADVANCE(281); if (lookahead == '$') ADVANCE(125); - if (lookahead == '&') ADVANCE(286); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(247); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '.') ADVANCE(222); + if (lookahead == '&') ADVANCE(291); + if (lookahead == '(') ADVANCE(237); + if (lookahead == ')') ADVANCE(238); + if (lookahead == '*') ADVANCE(249); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '.') ADVANCE(227); if (lookahead == '/') ADVANCE(98); - if (lookahead == '<') ADVANCE(269); - if (lookahead == '=') ADVANCE(234); - if (lookahead == '?') ADVANCE(277); + if (lookahead == '<') ADVANCE(271); + if (lookahead == '=') ADVANCE(239); + if (lookahead == '?') ADVANCE(279); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); 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(395); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == '{') ADVANCE(229); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == '{') ADVANCE(234); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(82) END_STATE(); case 82: - if (lookahead == '!') ADVANCE(279); + if (lookahead == '!') ADVANCE(281); if (lookahead == '$') ADVANCE(125); - if (lookahead == '&') ADVANCE(286); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(247); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '.') ADVANCE(222); + if (lookahead == '&') ADVANCE(291); + if (lookahead == '(') ADVANCE(237); + if (lookahead == ')') ADVANCE(238); + if (lookahead == '*') ADVANCE(249); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '.') ADVANCE(227); if (lookahead == '/') ADVANCE(98); - if (lookahead == '=') ADVANCE(234); - if (lookahead == '?') ADVANCE(277); + if (lookahead == '=') ADVANCE(239); + if (lookahead == '?') ADVANCE(279); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); 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(395); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == '{') ADVANCE(229); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == '{') ADVANCE(234); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(82) END_STATE(); case 83: - if (lookahead == '!') ADVANCE(279); + if (lookahead == '!') ADVANCE(281); if (lookahead == '$') ADVANCE(125); - if (lookahead == '&') ADVANCE(286); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(247); - if (lookahead == ',') ADVANCE(230); + if (lookahead == '&') ADVANCE(291); + if (lookahead == '(') ADVANCE(237); + if (lookahead == ')') ADVANCE(238); + if (lookahead == '*') ADVANCE(249); + if (lookahead == ',') ADVANCE(235); if (lookahead == '.') ADVANCE(104); if (lookahead == '/') ADVANCE(98); - if (lookahead == '=') ADVANCE(234); - if (lookahead == '?') ADVANCE(277); + if (lookahead == '=') ADVANCE(239); + if (lookahead == '?') ADVANCE(279); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == ']') ADVANCE(272); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == ']') ADVANCE(274); 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(395); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == '{') ADVANCE(229); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == '{') ADVANCE(234); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(83) END_STATE(); case 84: if (lookahead == '!') ADVANCE(110); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(239); - if (lookahead == '-') ADVANCE(243); - if (lookahead == '.') ADVANCE(222); - if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(342); - if (lookahead == ':') ADVANCE(273); - if (lookahead == '<') ADVANCE(258); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '(') ADVANCE(237); + if (lookahead == ')') ADVANCE(238); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(241); + if (lookahead == '-') ADVANCE(245); + if (lookahead == '.') ADVANCE(227); + if (lookahead == '/') ADVANCE(252); + if (lookahead == '0') ADVANCE(347); + if (lookahead == ':') ADVANCE(275); + if (lookahead == '<') ADVANCE(260); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(260); + if (lookahead == '>') ADVANCE(262); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == ']') ADVANCE(272); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == ']') ADVANCE(274); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(236); - if (lookahead == '}') ADVANCE(231); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(284); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(84) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(339); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(344); END_STATE(); case 85: if (lookahead == '!') ADVANCE(110); if (lookahead == '$') ADVANCE(125); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(239); - if (lookahead == '-') ADVANCE(243); - if (lookahead == '/') ADVANCE(250); - if (lookahead == '<') ADVANCE(258); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(241); + if (lookahead == '-') ADVANCE(245); + if (lookahead == '/') ADVANCE(252); + if (lookahead == '<') ADVANCE(260); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(260); + if (lookahead == '>') ADVANCE(262); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(85) END_STATE(); case 86: if (lookahead == '!') ADVANCE(110); if (lookahead == '$') ADVANCE(97); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(239); - if (lookahead == '-') ADVANCE(243); - if (lookahead == '.') ADVANCE(222); - if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(342); - if (lookahead == ':') ADVANCE(273); - if (lookahead == '<') ADVANCE(271); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '(') ADVANCE(237); + if (lookahead == ')') ADVANCE(238); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(241); + if (lookahead == '-') ADVANCE(245); + if (lookahead == '.') ADVANCE(227); + if (lookahead == '/') ADVANCE(252); + if (lookahead == '0') ADVANCE(347); + if (lookahead == ':') ADVANCE(275); + if (lookahead == '<') ADVANCE(273); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(260); + if (lookahead == '>') ADVANCE(262); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == ']') ADVANCE(272); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == ']') ADVANCE(274); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(236); - if (lookahead == '}') ADVANCE(231); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(284); + if (lookahead == '}') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(84) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(339); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(344); END_STATE(); case 87: - if (lookahead == '"') ADVANCE(352); + if (lookahead == '"') ADVANCE(357); if (lookahead == '$') ADVANCE(125); - if (lookahead == '\'') ADVANCE(346); + if (lookahead == '\'') ADVANCE(351); if (lookahead == '.') ADVANCE(160); if (lookahead == '/') ADVANCE(98); - if (lookahead == '0') ADVANCE(335); + if (lookahead == '0') ADVANCE(340); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || lookahead == 'a' || @@ -11303,151 +11388,151 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('s' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'r') ADVANCE(372); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'r') ADVANCE(377); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(87) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); case 88: - if (lookahead == '"') ADVANCE(352); - if (lookahead == '$') ADVANCE(351); - if (lookahead == '/') ADVANCE(353); + if (lookahead == '"') ADVANCE(357); + if (lookahead == '$') ADVANCE(356); + if (lookahead == '/') ADVANCE(358); if (lookahead == '\\') ADVANCE(183); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(354); - if (lookahead != 0) ADVANCE(355); + lookahead == ' ') ADVANCE(359); + if (lookahead != 0) ADVANCE(360); END_STATE(); case 89: - if (lookahead == '"') ADVANCE(352); - if (lookahead == '/') ADVANCE(363); + if (lookahead == '"') ADVANCE(357); + if (lookahead == '/') ADVANCE(368); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(364); - if (lookahead != 0) ADVANCE(365); + lookahead == ' ') ADVANCE(369); + if (lookahead != 0) ADVANCE(370); END_STATE(); case 90: if (lookahead == '$') ADVANCE(125); - if (lookahead == '.') ADVANCE(220); + if (lookahead == '.') ADVANCE(225); if (lookahead == '/') ADVANCE(98); - if (lookahead == '0') ADVANCE(368); - if (lookahead == '>') ADVANCE(259); + if (lookahead == '0') ADVANCE(373); + if (lookahead == '>') ADVANCE(261); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == ']') ADVANCE(272); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == ']') ADVANCE(274); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == '}') ADVANCE(231); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == '}') ADVANCE(236); if (lookahead == '+' || - lookahead == '-') ADVANCE(367); + lookahead == '-') ADVANCE(372); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(90) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(339); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(344); END_STATE(); case 91: if (lookahead == '$') ADVANCE(125); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(410); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(418); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); END_STATE(); case 92: if (lookahead == '$') ADVANCE(125); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); END_STATE(); case 93: if (lookahead == '$') ADVANCE(125); - if (lookahead == 'C') ADVANCE(373); - if (lookahead == 'J') ADVANCE(377); - if (lookahead == '[') ADVANCE(410); + if (lookahead == 'C') ADVANCE(378); + if (lookahead == 'J') ADVANCE(382); + if (lookahead == '[') ADVANCE(418); if (lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(380); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(385); END_STATE(); case 94: if (lookahead == '$') ADVANCE(125); - if (lookahead == 'C') ADVANCE(373); - if (lookahead == 'J') ADVANCE(377); + if (lookahead == 'C') ADVANCE(378); + if (lookahead == 'J') ADVANCE(382); if (lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(380); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(385); END_STATE(); case 95: - if (lookahead == '$') ADVANCE(351); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '/') ADVANCE(347); + if (lookahead == '$') ADVANCE(356); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '/') ADVANCE(352); if (lookahead == '\\') ADVANCE(183); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(348); - if (lookahead != 0) ADVANCE(349); + lookahead == ' ') ADVANCE(353); + if (lookahead != 0) ADVANCE(354); END_STATE(); case 96: - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '/') ADVANCE(359); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '/') ADVANCE(364); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(360); - if (lookahead != 0) ADVANCE(361); + lookahead == ' ') ADVANCE(365); + if (lookahead != 0) ADVANCE(366); END_STATE(); case 97: - if (lookahead == '(') ADVANCE(309); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); + if (lookahead == '(') ADVANCE(314); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); END_STATE(); case 98: - if (lookahead == '*') ADVANCE(210); - if (lookahead == '/') ADVANCE(207); + if (lookahead == '*') ADVANCE(215); + if (lookahead == '/') ADVANCE(212); END_STATE(); case 99: - if (lookahead == '*') ADVANCE(210); - if (lookahead == '/') ADVANCE(207); - if (lookahead == '=') ADVANCE(322); + if (lookahead == '*') ADVANCE(215); + if (lookahead == '/') ADVANCE(212); + if (lookahead == '=') ADVANCE(327); END_STATE(); case 100: - if (lookahead == '*') ADVANCE(213); - if (lookahead == '/') ADVANCE(215); + if (lookahead == '*') ADVANCE(218); + if (lookahead == '/') ADVANCE(220); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(216); - if (lookahead != 0) ADVANCE(217); + lookahead == ' ') ADVANCE(221); + if (lookahead != 0) ADVANCE(222); END_STATE(); case 101: - if (lookahead == '-') ADVANCE(290); + if (lookahead == '-') ADVANCE(295); END_STATE(); case 102: - if (lookahead == '-') ADVANCE(290); + if (lookahead == '-') ADVANCE(295); if (lookahead == '<') ADVANCE(116); END_STATE(); case 103: - if (lookahead == '.') ADVANCE(267); + if (lookahead == '.') ADVANCE(269); END_STATE(); case 104: if (lookahead == '.') ADVANCE(103); @@ -11464,7 +11549,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(334); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(339); END_STATE(); case 107: if (lookahead == '/') ADVANCE(98); @@ -11472,56 +11557,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(107) END_STATE(); case 108: - if (lookahead == '/') ADVANCE(407); + if (lookahead == '/') ADVANCE(415); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(408); + lookahead == ' ') ADVANCE(416); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(409); + lookahead != '}') ADVANCE(417); END_STATE(); case 109: - if (lookahead == '/') ADVANCE(404); + if (lookahead == '/') ADVANCE(412); if (lookahead == '\n' || lookahead == '\r') SKIP(107) if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(405); + lookahead == ' ') ADVANCE(413); if (lookahead != 0 && - lookahead != '\\') ADVANCE(406); + lookahead != '\\') ADVANCE(414); END_STATE(); case 110: - if (lookahead == '=') ADVANCE(264); + if (lookahead == '=') ADVANCE(266); END_STATE(); case 111: - if (lookahead == '=') ADVANCE(323); + if (lookahead == '=') ADVANCE(328); END_STATE(); case 112: - if (lookahead == '=') ADVANCE(333); + if (lookahead == '=') ADVANCE(338); END_STATE(); case 113: - if (lookahead == '=') ADVANCE(263); + if (lookahead == '=') ADVANCE(265); END_STATE(); case 114: - if (lookahead == '=') ADVANCE(331); + if (lookahead == '=') ADVANCE(336); END_STATE(); case 115: - if (lookahead == '=') ADVANCE(328); + if (lookahead == '=') ADVANCE(333); END_STATE(); case 116: - if (lookahead == '=') ADVANCE(324); + if (lookahead == '=') ADVANCE(329); END_STATE(); case 117: - if (lookahead == '=') ADVANCE(325); + if (lookahead == '=') ADVANCE(330); if (lookahead == '>') ADVANCE(118); END_STATE(); case 118: - if (lookahead == '=') ADVANCE(326); + if (lookahead == '=') ADVANCE(331); END_STATE(); case 119: if (lookahead == '>') ADVANCE(117); END_STATE(); case 120: - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || @@ -11530,14 +11615,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('j' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'e') ADVANCE(384); - if (lookahead == 'f') ADVANCE(387); - if (lookahead == 'i') ADVANCE(383); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'e') ADVANCE(389); + if (lookahead == 'f') ADVANCE(392); + if (lookahead == 'i') ADVANCE(388); END_STATE(); case 121: - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || @@ -11545,13 +11630,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('j' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'e') ADVANCE(384); - if (lookahead == 'i') ADVANCE(383); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'e') ADVANCE(389); + if (lookahead == 'i') ADVANCE(388); END_STATE(); case 122: - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'e') || @@ -11560,76 +11645,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('j' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'f') ADVANCE(387); - if (lookahead == 'i') ADVANCE(383); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'f') ADVANCE(392); + if (lookahead == 'i') ADVANCE(388); END_STATE(); case 123: - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); 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(395); - if (lookahead == 'e') ADVANCE(384); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'e') ADVANCE(389); END_STATE(); case 124: - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); 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(395); - if (lookahead == 'i') ADVANCE(383); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'i') ADVANCE(388); END_STATE(); case 125: - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); END_STATE(); case 126: - if (lookahead == 'J') ADVANCE(378); + if (lookahead == 'J') ADVANCE(383); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); END_STATE(); case 127: - if (lookahead == '[') ADVANCE(310); + if (lookahead == '[') ADVANCE(315); END_STATE(); case 128: if (lookahead == '_') ADVANCE(154); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(338); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(343); END_STATE(); case 129: if (lookahead == '_') ADVANCE(152); if (lookahead == '0' || - lookahead == '1') ADVANCE(340); + lookahead == '1') ADVANCE(345); END_STATE(); case 130: if (lookahead == '_') ADVANCE(166); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(341); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(346); END_STATE(); case 131: - if (lookahead == '`') ADVANCE(345); + if (lookahead == '`') ADVANCE(350); END_STATE(); case 132: - if (lookahead == '`') ADVANCE(345); + if (lookahead == '`') ADVANCE(350); if (('0' <= lookahead && lookahead <= '7')) ADVANCE(155); END_STATE(); case 133: @@ -11645,7 +11730,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(133); END_STATE(); case 137: - if (lookahead == 'e') ADVANCE(281); + if (lookahead == 'e') ADVANCE(283); END_STATE(); case 138: if (lookahead == 'e') ADVANCE(142); @@ -11655,30 +11740,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(141); END_STATE(); case 140: - if (lookahead == 'e') ADVANCE(313); + if (lookahead == 'e') ADVANCE(318); END_STATE(); case 141: - if (lookahead == 'f') ADVANCE(311); + if (lookahead == 'f') ADVANCE(316); END_STATE(); case 142: if (lookahead == 'l') ADVANCE(148); END_STATE(); case 143: - if (lookahead == 'n') ADVANCE(320); - if (lookahead == 's') ADVANCE(317); + if (lookahead == 'n') ADVANCE(325); + if (lookahead == 's') ADVANCE(322); END_STATE(); case 144: - if (lookahead == 'n') ADVANCE(318); - if (lookahead == 's') ADVANCE(315); + if (lookahead == 'n') ADVANCE(323); + if (lookahead == 's') ADVANCE(320); END_STATE(); case 145: if (lookahead == 'o') ADVANCE(135); END_STATE(); case 146: - if (lookahead == 'r') ADVANCE(301); + if (lookahead == 'r') ADVANCE(306); END_STATE(); case 147: - if (lookahead == 's') ADVANCE(227); + if (lookahead == 's') ADVANCE(232); END_STATE(); case 148: if (lookahead == 's') ADVANCE(140); @@ -11686,7 +11771,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 149: if (lookahead == '+' || lookahead == '-') ADVANCE(162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(343); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(348); END_STATE(); case 150: if (lookahead == 'P' || @@ -11705,15 +11790,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 152: if (lookahead == '0' || - lookahead == '1') ADVANCE(340); + lookahead == '1') ADVANCE(345); END_STATE(); case 153: if (lookahead == '8' || lookahead == '9') ADVANCE(105); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(336); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(341); END_STATE(); case 154: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(338); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(343); END_STATE(); case 155: if (('0' <= lookahead && lookahead <= '7')) ADVANCE(131); @@ -11722,22 +11807,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '7')) ADVANCE(155); END_STATE(); case 157: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(339); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(344); END_STATE(); case 158: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(303); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(308); END_STATE(); case 159: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); case 160: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(344); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(349); END_STATE(); case 161: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(105); END_STATE(); case 162: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(343); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(348); END_STATE(); case 163: if (sym_rune_literal_character_set_1(lookahead)) ADVANCE(131); @@ -11750,7 +11835,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 164: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(303); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(308); END_STATE(); case 165: if (('0' <= lookahead && lookahead <= '9') || @@ -11760,12 +11845,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 166: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(341); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(346); END_STATE(); case 167: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(334); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(339); END_STATE(); case 168: if (('0' <= lookahead && lookahead <= '9') || @@ -11843,7 +11928,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); END_STATE(); case 183: if (lookahead != 0 && @@ -11853,12 +11938,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '0' || '9' < lookahead) && lookahead != 'U' && lookahead != 'u' && - lookahead != 'x') ADVANCE(303); + lookahead != 'x') ADVANCE(308); if (lookahead == '\r') ADVANCE(1); - if (lookahead == 'U') ADVANCE(305); - if (lookahead == 'u') ADVANCE(307); - if (lookahead == 'x') ADVANCE(306); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(304); + if (lookahead == 'U') ADVANCE(310); + if (lookahead == 'u') ADVANCE(312); + if (lookahead == 'x') ADVANCE(311); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(309); END_STATE(); case 184: if (lookahead != 0 && @@ -11866,774 +11951,895 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(163); END_STATE(); case 185: - if (eof) ADVANCE(200); - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(352); - if (lookahead == '#') ADVANCE(403); + if (eof) ADVANCE(203); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); + if (lookahead == '"') ADVANCE(357); + if (lookahead == '#') ADVANCE(411); if (lookahead == '$') ADVANCE(122); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '/') ADVANCE(251); - if (lookahead == '0') ADVANCE(335); - if (lookahead == ':') ADVANCE(274); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(254); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(231); + if (lookahead == '/') ADVANCE(253); + if (lookahead == '0') ADVANCE(340); + if (lookahead == ':') ADVANCE(276); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(290); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); - if (lookahead == '}') ADVANCE(231); - if (lookahead == '~') ADVANCE(283); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); + if (lookahead == '}') ADVANCE(236); + if (lookahead == '~') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(186) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); case 186: - if (eof) ADVANCE(200); - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(352); - if (lookahead == '#') ADVANCE(403); + if (eof) ADVANCE(203); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); + if (lookahead == '"') ADVANCE(357); + if (lookahead == '#') ADVANCE(411); if (lookahead == '$') ADVANCE(122); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '/') ADVANCE(251); - if (lookahead == '0') ADVANCE(335); - if (lookahead == ':') ADVANCE(274); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(254); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(231); + if (lookahead == '/') ADVANCE(253); + if (lookahead == '0') ADVANCE(340); + if (lookahead == ':') ADVANCE(276); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(290); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); - if (lookahead == '}') ADVANCE(231); - if (lookahead == '~') ADVANCE(283); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); + if (lookahead == '}') ADVANCE(236); + if (lookahead == '~') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(186) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); case 187: - if (eof) ADVANCE(200); - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(352); - if (lookahead == '#') ADVANCE(403); + if (eof) ADVANCE(203); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); + if (lookahead == '"') ADVANCE(357); + if (lookahead == '#') ADVANCE(411); if (lookahead == '$') ADVANCE(122); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(335); - if (lookahead == '<') ADVANCE(255); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(231); + if (lookahead == '/') ADVANCE(252); + if (lookahead == '0') ADVANCE(340); + if (lookahead == '<') ADVANCE(257); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); - if (lookahead == '~') ADVANCE(283); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); + if (lookahead == '~') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(188) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); case 188: - if (eof) ADVANCE(200); - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(352); - if (lookahead == '#') ADVANCE(403); + if (eof) ADVANCE(203); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); + if (lookahead == '"') ADVANCE(357); + if (lookahead == '#') ADVANCE(411); if (lookahead == '$') ADVANCE(122); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(335); - if (lookahead == '<') ADVANCE(255); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(231); + if (lookahead == '/') ADVANCE(252); + if (lookahead == '0') ADVANCE(340); + if (lookahead == '<') ADVANCE(257); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); - if (lookahead == '~') ADVANCE(283); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); + if (lookahead == '~') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(188) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); case 189: - if (eof) ADVANCE(200); - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(352); - if (lookahead == '#') ADVANCE(403); + if (eof) ADVANCE(203); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); + if (lookahead == '"') ADVANCE(357); + if (lookahead == '#') ADVANCE(411); if (lookahead == '$') ADVANCE(120); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '/') ADVANCE(251); - if (lookahead == '0') ADVANCE(335); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(231); + if (lookahead == '/') ADVANCE(253); + if (lookahead == '0') ADVANCE(340); if (lookahead == ':') ADVANCE(112); - if (lookahead == '<') ADVANCE(254); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(290); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); - if (lookahead == '~') ADVANCE(283); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); + if (lookahead == '~') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(190) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); case 190: - if (eof) ADVANCE(200); - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(352); - if (lookahead == '#') ADVANCE(403); + if (eof) ADVANCE(203); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); + if (lookahead == '"') ADVANCE(357); + if (lookahead == '#') ADVANCE(411); if (lookahead == '$') ADVANCE(120); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '/') ADVANCE(251); - if (lookahead == '0') ADVANCE(335); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '.') ADVANCE(231); + if (lookahead == '/') ADVANCE(253); + if (lookahead == '0') ADVANCE(340); if (lookahead == ':') ADVANCE(112); - if (lookahead == '<') ADVANCE(254); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(290); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); - if (lookahead == '~') ADVANCE(283); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); + if (lookahead == '~') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(190) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); case 191: - if (eof) ADVANCE(200); - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(352); - if (lookahead == '#') ADVANCE(403); + if (eof) ADVANCE(203); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); + if (lookahead == '"') ADVANCE(357); + if (lookahead == '#') ADVANCE(411); if (lookahead == '$') ADVANCE(120); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(335); - if (lookahead == '<') ADVANCE(255); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(231); + if (lookahead == '/') ADVANCE(252); + if (lookahead == '0') ADVANCE(340); + if (lookahead == '<') ADVANCE(257); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); - if (lookahead == '~') ADVANCE(283); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); + if (lookahead == '~') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(192) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); case 192: - if (eof) ADVANCE(200); - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(352); - if (lookahead == '#') ADVANCE(403); + if (eof) ADVANCE(203); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(282); + if (lookahead == '"') ADVANCE(357); + if (lookahead == '#') ADVANCE(411); if (lookahead == '$') ADVANCE(120); - if (lookahead == '%') ADVANCE(252); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(240); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(244); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(335); - if (lookahead == '<') ADVANCE(255); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(293); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(246); + if (lookahead == '.') ADVANCE(231); + if (lookahead == '/') ADVANCE(252); + if (lookahead == '0') ADVANCE(340); + if (lookahead == '<') ADVANCE(257); if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(262); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '?') ADVANCE(280); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(238); - if (lookahead == '~') ADVANCE(283); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(286); + if (lookahead == '~') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(192) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); case 193: - if (eof) ADVANCE(200); - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(279); - if (lookahead == '"') ADVANCE(352); - if (lookahead == '#') ADVANCE(400); + if (eof) ADVANCE(203); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(281); + if (lookahead == '"') ADVANCE(357); + if (lookahead == '#') ADVANCE(408); if (lookahead == '$') ADVANCE(122); if (lookahead == '%') ADVANCE(111); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(249); - if (lookahead == '+') ADVANCE(242); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(246); - if (lookahead == '.') ADVANCE(226); + if (lookahead == '&') ADVANCE(294); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '+') ADVANCE(244); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(248); + if (lookahead == '.') ADVANCE(231); if (lookahead == '/') ADVANCE(99); - if (lookahead == '0') ADVANCE(335); + if (lookahead == '0') ADVANCE(340); if (lookahead == ':') ADVANCE(112); if (lookahead == '<') ADVANCE(102); - if (lookahead == '=') ADVANCE(234); + if (lookahead == '=') ADVANCE(239); if (lookahead == '>') ADVANCE(119); - if (lookahead == '?') ADVANCE(277); + if (lookahead == '?') ADVANCE(279); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(395); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(290); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); if (lookahead == '|') ADVANCE(114); - if (lookahead == '~') ADVANCE(283); + if (lookahead == '~') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(193) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); case 194: - if (eof) ADVANCE(200); - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(279); - if (lookahead == '"') ADVANCE(352); - if (lookahead == '#') ADVANCE(400); + if (eof) ADVANCE(203); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(281); + if (lookahead == '"') ADVANCE(357); + if (lookahead == '#') ADVANCE(408); if (lookahead == '$') ADVANCE(122); - if (lookahead == '&') ADVANCE(286); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(239); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(243); - if (lookahead == '.') ADVANCE(226); + if (lookahead == '&') ADVANCE(291); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(241); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(245); + if (lookahead == '.') ADVANCE(231); if (lookahead == '/') ADVANCE(98); - if (lookahead == '0') ADVANCE(335); - if (lookahead == ';') ADVANCE(219); + if (lookahead == '0') ADVANCE(340); + if (lookahead == ';') ADVANCE(224); if (lookahead == '<') ADVANCE(101); - if (lookahead == '?') ADVANCE(277); + if (lookahead == '?') ADVANCE(279); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(395); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(236); - if (lookahead == '}') ADVANCE(231); - if (lookahead == '~') ADVANCE(283); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '}') ADVANCE(236); + if (lookahead == '~') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(194) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); case 195: - if (eof) ADVANCE(200); - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(279); - if (lookahead == '"') ADVANCE(352); - if (lookahead == '#') ADVANCE(400); + if (eof) ADVANCE(203); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(281); + if (lookahead == '"') ADVANCE(357); + if (lookahead == '#') ADVANCE(408); if (lookahead == '$') ADVANCE(122); - if (lookahead == '&') ADVANCE(286); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(239); - if (lookahead == '-') ADVANCE(243); - if (lookahead == '.') ADVANCE(226); + if (lookahead == '&') ADVANCE(291); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(241); + if (lookahead == '-') ADVANCE(245); + if (lookahead == '.') ADVANCE(231); if (lookahead == '/') ADVANCE(98); - if (lookahead == '0') ADVANCE(335); + if (lookahead == '0') ADVANCE(340); if (lookahead == '<') ADVANCE(101); - if (lookahead == '?') ADVANCE(277); + if (lookahead == '?') ADVANCE(279); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(395); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(236); - if (lookahead == '~') ADVANCE(283); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '~') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(196) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); case 196: - if (eof) ADVANCE(200); - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '!') ADVANCE(279); - if (lookahead == '"') ADVANCE(352); - if (lookahead == '#') ADVANCE(400); + if (eof) ADVANCE(203); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); + if (lookahead == '!') ADVANCE(281); + if (lookahead == '"') ADVANCE(357); + if (lookahead == '#') ADVANCE(408); if (lookahead == '$') ADVANCE(122); - if (lookahead == '&') ADVANCE(286); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(239); - if (lookahead == '-') ADVANCE(243); - if (lookahead == '.') ADVANCE(226); + if (lookahead == '&') ADVANCE(291); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(241); + if (lookahead == '-') ADVANCE(245); + if (lookahead == '.') ADVANCE(231); if (lookahead == '/') ADVANCE(98); - if (lookahead == '0') ADVANCE(335); + if (lookahead == '0') ADVANCE(340); if (lookahead == '<') ADVANCE(101); - if (lookahead == '?') ADVANCE(277); + if (lookahead == '?') ADVANCE(279); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(395); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(236); - if (lookahead == '~') ADVANCE(283); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '~') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(196) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); case 197: - if (eof) ADVANCE(200); - if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(352); - if (lookahead == '#') ADVANCE(402); - if (lookahead == '$') ADVANCE(350); - if (lookahead == '%') ADVANCE(253); - if (lookahead == '&') ADVANCE(287); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(248); + if (eof) ADVANCE(203); + if (lookahead == '\n') ADVANCE(205); + if (lookahead == '\r') ADVANCE(207); + if (lookahead == '!') ADVANCE(281); + if (lookahead == '"') ADVANCE(357); + if (lookahead == '#') ADVANCE(408); + if (lookahead == '$') ADVANCE(122); + if (lookahead == '&') ADVANCE(291); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); if (lookahead == '+') ADVANCE(241); - if (lookahead == ',') ADVANCE(230); if (lookahead == '-') ADVANCE(245); - if (lookahead == '.') ADVANCE(221); - if (lookahead == '/') ADVANCE(251); - if (lookahead == '0') ADVANCE(368); - if (lookahead == ':') ADVANCE(274); - if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(254); - if (lookahead == '=') ADVANCE(235); - if (lookahead == '>') ADVANCE(261); - if (lookahead == '?') ADVANCE(278); + if (lookahead == '.') ADVANCE(231); + if (lookahead == '/') ADVANCE(98); + if (lookahead == '0') ADVANCE(340); + if (lookahead == '<') ADVANCE(101); + if (lookahead == '?') ADVANCE(279); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '\\') ADVANCE(183); - if (lookahead == ']') ADVANCE(272); - if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(395); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(270); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(391); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'o') ADVANCE(389); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(237); - if (lookahead == '}') ADVANCE(231); - if (lookahead == '~') ADVANCE(283); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(197) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(339); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(402); + if (lookahead == '~') ADVANCE(288); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(401); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); case 198: - if (eof) ADVANCE(200); - if (lookahead == '!') ADVANCE(279); - if (lookahead == '"') ADVANCE(352); - if (lookahead == '#') ADVANCE(401); + if (eof) ADVANCE(203); + if (lookahead == '\n') ADVANCE(205); + if (lookahead == '\r') ADVANCE(207); + if (lookahead == '!') ADVANCE(281); + if (lookahead == '"') ADVANCE(357); + if (lookahead == '#') ADVANCE(408); if (lookahead == '$') ADVANCE(122); - if (lookahead == '&') ADVANCE(286); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(239); - if (lookahead == ',') ADVANCE(230); - if (lookahead == '-') ADVANCE(243); + if (lookahead == '&') ADVANCE(291); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(241); + if (lookahead == '-') ADVANCE(245); + if (lookahead == '.') ADVANCE(231); + if (lookahead == '/') ADVANCE(98); + if (lookahead == '0') ADVANCE(340); + if (lookahead == '<') ADVANCE(101); + if (lookahead == '?') ADVANCE(279); + if (lookahead == '@') ADVANCE(93); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(400); + if (lookahead == '`') ADVANCE(184); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(402); + if (lookahead == '~') ADVANCE(288); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(401); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); + END_STATE(); + case 199: + if (eof) ADVANCE(203); + if (lookahead == '!') ADVANCE(282); + if (lookahead == '"') ADVANCE(357); + if (lookahead == '#') ADVANCE(410); + if (lookahead == '$') ADVANCE(355); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(292); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == ')') ADVANCE(238); + if (lookahead == '*') ADVANCE(250); + if (lookahead == '+') ADVANCE(243); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(247); if (lookahead == '.') ADVANCE(226); + if (lookahead == '/') ADVANCE(253); + if (lookahead == '0') ADVANCE(373); + if (lookahead == ':') ADVANCE(276); + if (lookahead == ';') ADVANCE(224); + if (lookahead == '<') ADVANCE(256); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '>') ADVANCE(263); + if (lookahead == '?') ADVANCE(280); + if (lookahead == '@') ADVANCE(93); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '\\') ADVANCE(183); + if (lookahead == ']') ADVANCE(274); + if (lookahead == '^') ADVANCE(290); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(400); + if (lookahead == '`') ADVANCE(184); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'i') ADVANCE(386); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'o') ADVANCE(394); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(285); + if (lookahead == '}') ADVANCE(236); + if (lookahead == '~') ADVANCE(288); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(199) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(344); + END_STATE(); + case 200: + if (eof) ADVANCE(203); + if (lookahead == '!') ADVANCE(281); + if (lookahead == '"') ADVANCE(357); + if (lookahead == '#') ADVANCE(409); + if (lookahead == '$') ADVANCE(122); + if (lookahead == '&') ADVANCE(291); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(241); + if (lookahead == ',') ADVANCE(235); + if (lookahead == '-') ADVANCE(245); + if (lookahead == '.') ADVANCE(231); if (lookahead == '/') ADVANCE(98); - if (lookahead == '0') ADVANCE(335); - if (lookahead == ';') ADVANCE(219); + if (lookahead == '0') ADVANCE(340); + if (lookahead == ';') ADVANCE(224); if (lookahead == '<') ADVANCE(101); - if (lookahead == '>') ADVANCE(259); - if (lookahead == '?') ADVANCE(277); + if (lookahead == '>') ADVANCE(261); + if (lookahead == '?') ADVANCE(279); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == ']') ADVANCE(272); - if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(395); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == ']') ADVANCE(274); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(236); - if (lookahead == '~') ADVANCE(283); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(284); + if (lookahead == '~') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(198) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); + lookahead == ' ') SKIP(200) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); - case 199: - if (eof) ADVANCE(200); - if (lookahead == '!') ADVANCE(279); - if (lookahead == '"') ADVANCE(352); - if (lookahead == '#') ADVANCE(400); + case 201: + if (eof) ADVANCE(203); + if (lookahead == '!') ADVANCE(281); + if (lookahead == '"') ADVANCE(357); + if (lookahead == '#') ADVANCE(408); if (lookahead == '$') ADVANCE(122); - if (lookahead == '&') ADVANCE(286); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(247); - if (lookahead == '+') ADVANCE(239); - if (lookahead == '-') ADVANCE(243); - if (lookahead == '.') ADVANCE(226); + if (lookahead == '&') ADVANCE(291); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(241); + if (lookahead == '-') ADVANCE(245); + if (lookahead == '.') ADVANCE(231); if (lookahead == '/') ADVANCE(98); - if (lookahead == '0') ADVANCE(335); + if (lookahead == '0') ADVANCE(340); if (lookahead == '<') ADVANCE(101); - if (lookahead == '?') ADVANCE(277); + if (lookahead == '?') ADVANCE(279); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); - if (lookahead == '[') ADVANCE(282); - if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(395); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(400); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'c') ADVANCE(371); - if (lookahead == 'j') ADVANCE(392); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'r') ADVANCE(372); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '}') ADVANCE(231); - if (lookahead == '~') ADVANCE(283); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '|') ADVANCE(402); + if (lookahead == '}') ADVANCE(236); + if (lookahead == '~') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(199) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); + lookahead == ' ') SKIP(202) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); - case 200: + case 202: + if (eof) ADVANCE(203); + if (lookahead == '!') ADVANCE(281); + if (lookahead == '"') ADVANCE(357); + if (lookahead == '#') ADVANCE(408); + if (lookahead == '$') ADVANCE(122); + if (lookahead == '&') ADVANCE(291); + if (lookahead == '\'') ADVANCE(351); + if (lookahead == '(') ADVANCE(237); + if (lookahead == '*') ADVANCE(249); + if (lookahead == '+') ADVANCE(241); + if (lookahead == '-') ADVANCE(245); + if (lookahead == '.') ADVANCE(231); + if (lookahead == '/') ADVANCE(98); + if (lookahead == '0') ADVANCE(340); + if (lookahead == '<') ADVANCE(101); + if (lookahead == '?') ADVANCE(279); + if (lookahead == '@') ADVANCE(93); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); + if (lookahead == '[') ADVANCE(287); + if (lookahead == '^') ADVANCE(289); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(400); + if (lookahead == '`') ADVANCE(184); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'j') ADVANCE(397); + if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'r') ADVANCE(377); + if (lookahead == '{') ADVANCE(234); + if (lookahead == '}') ADVANCE(236); + if (lookahead == '~') ADVANCE(288); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(202) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(342); + END_STATE(); + case 203: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 201: + case 204: ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); END_STATE(); - case 202: + case 205: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(205); + if (lookahead == '\r') ADVANCE(207); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(401); + END_STATE(); + case 206: ACCEPT_TOKEN(anon_sym_CR); - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '\r') ADVANCE(202); + if (lookahead == '\n') ADVANCE(204); + if (lookahead == '\r') ADVANCE(206); END_STATE(); - case 203: + case 207: + ACCEPT_TOKEN(anon_sym_CR); + if (lookahead == '\n') ADVANCE(205); + if (lookahead == '\r') ADVANCE(207); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(401); + END_STATE(); + case 208: ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); - case 204: + case 209: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '*') ADVANCE(212); - if (lookahead == '/') ADVANCE(209); + if (lookahead == '*') ADVANCE(217); + if (lookahead == '/') ADVANCE(214); if (lookahead != 0 && - lookahead != '\n') ADVANCE(206); + lookahead != '\n') ADVANCE(211); END_STATE(); - case 205: + case 210: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '/') ADVANCE(204); + if (lookahead == '/') ADVANCE(209); if (lookahead == '\t' || (11 <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(205); + lookahead == ' ') ADVANCE(210); if (lookahead != 0 && - lookahead != '\n') ADVANCE(206); + lookahead != '\n') ADVANCE(211); END_STATE(); - case 206: + case 211: ACCEPT_TOKEN(aux_sym_shebang_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(206); + lookahead != '\n') ADVANCE(211); END_STATE(); - case 207: + case 212: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); - case 208: + case 213: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '\\') ADVANCE(406); + lookahead != '\\') ADVANCE(414); END_STATE(); - case 209: + case 214: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); if (lookahead != 0 && - lookahead != '\n') ADVANCE(206); + lookahead != '\n') ADVANCE(211); END_STATE(); - case 210: + case 215: ACCEPT_TOKEN(anon_sym_SLASH_STAR); END_STATE(); - case 211: + case 216: ACCEPT_TOKEN(anon_sym_SLASH_STAR); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '\\') ADVANCE(406); + lookahead != '\\') ADVANCE(414); END_STATE(); - case 212: + case 217: ACCEPT_TOKEN(anon_sym_SLASH_STAR); if (lookahead != 0 && - lookahead != '\n') ADVANCE(206); + lookahead != '\n') ADVANCE(211); END_STATE(); - case 213: + case 218: ACCEPT_TOKEN(aux_sym_block_comment_token1); - if (lookahead == '/') ADVANCE(218); + if (lookahead == '/') ADVANCE(223); END_STATE(); - case 214: + case 219: ACCEPT_TOKEN(aux_sym_block_comment_token2); END_STATE(); - case 215: + case 220: ACCEPT_TOKEN(aux_sym_block_comment_token2); - if (lookahead == '*') ADVANCE(210); - if (lookahead == '/') ADVANCE(207); - if (lookahead != 0) ADVANCE(214); + if (lookahead == '*') ADVANCE(215); + if (lookahead == '/') ADVANCE(212); + if (lookahead != 0) ADVANCE(219); END_STATE(); - case 216: + case 221: ACCEPT_TOKEN(aux_sym_block_comment_token2); - if (lookahead == '/') ADVANCE(215); + if (lookahead == '/') ADVANCE(220); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(216); + lookahead == ' ') ADVANCE(221); if (lookahead != 0 && - lookahead != '*') ADVANCE(217); + lookahead != '*') ADVANCE(222); END_STATE(); - case 217: + case 222: ACCEPT_TOKEN(aux_sym_block_comment_token2); - if (lookahead == '/') ADVANCE(214); + if (lookahead == '/') ADVANCE(219); END_STATE(); - case 218: + case 223: ACCEPT_TOKEN(anon_sym_STAR_SLASH); END_STATE(); - case 219: + case 224: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 220: + case 225: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 221: + case 226: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(399); + if (lookahead == '.') ADVANCE(407); END_STATE(); - case 222: + case 227: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(103); END_STATE(); - case 223: + case 228: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(103); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(344); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(349); END_STATE(); - case 224: + case 229: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(398); + if (lookahead == '.') ADVANCE(406); END_STATE(); - case 225: + case 230: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(398); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(344); + if (lookahead == '.') ADVANCE(406); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(349); END_STATE(); - case 226: + case 231: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(344); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(349); END_STATE(); - case 227: + case 232: ACCEPT_TOKEN(anon_sym_as); END_STATE(); - case 228: + case 233: ACCEPT_TOKEN(anon_sym_as); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -12641,286 +12847,286 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - END_STATE(); - case 229: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 230: - ACCEPT_TOKEN(anon_sym_COMMA); - END_STATE(); - case 231: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 232: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 233: - ACCEPT_TOKEN(anon_sym_RPAREN); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); END_STATE(); case 234: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 235: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(263); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 236: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 237: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(331); - if (lookahead == '|') ADVANCE(300); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 238: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(300); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 239: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 240: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(275); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(265); END_STATE(); case 241: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(275); - if (lookahead == '=') ADVANCE(329); END_STATE(); case 242: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(329); + if (lookahead == '+') ADVANCE(277); END_STATE(); case 243: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(277); + if (lookahead == '=') ADVANCE(334); END_STATE(); case 244: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(276); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(334); END_STATE(); case 245: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(276); - if (lookahead == '=') ADVANCE(330); END_STATE(); case 246: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(330); + if (lookahead == '-') ADVANCE(278); END_STATE(); case 247: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(278); + if (lookahead == '=') ADVANCE(335); END_STATE(); case 248: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '/') ADVANCE(218); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(335); END_STATE(); case 249: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(321); END_STATE(); case 250: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(210); - if (lookahead == '/') ADVANCE(207); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '/') ADVANCE(223); END_STATE(); case 251: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(210); - if (lookahead == '/') ADVANCE(207); - if (lookahead == '=') ADVANCE(322); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(326); END_STATE(); case 252: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(215); + if (lookahead == '/') ADVANCE(212); END_STATE(); case 253: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(323); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(215); + if (lookahead == '/') ADVANCE(212); + if (lookahead == '=') ADVANCE(327); END_STATE(); case 254: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '-') ADVANCE(290); - if (lookahead == '<') ADVANCE(292); - if (lookahead == '=') ADVANCE(265); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 255: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '-') ADVANCE(290); - if (lookahead == '<') ADVANCE(291); - if (lookahead == '=') ADVANCE(265); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(328); END_STATE(); case 256: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(292); - if (lookahead == '=') ADVANCE(265); + if (lookahead == '-') ADVANCE(295); + if (lookahead == '<') ADVANCE(297); + if (lookahead == '=') ADVANCE(267); END_STATE(); case 257: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(291); - if (lookahead == '=') ADVANCE(265); + if (lookahead == '-') ADVANCE(295); + if (lookahead == '<') ADVANCE(296); + if (lookahead == '=') ADVANCE(267); END_STATE(); case 258: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(265); + if (lookahead == '<') ADVANCE(297); + if (lookahead == '=') ADVANCE(267); END_STATE(); case 259: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(296); + if (lookahead == '=') ADVANCE(267); END_STATE(); case 260: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(266); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(267); END_STATE(); case 261: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(266); - if (lookahead == '>') ADVANCE(293); END_STATE(); case 262: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(266); - if (lookahead == '>') ADVANCE(294); + if (lookahead == '=') ADVANCE(268); END_STATE(); case 263: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(268); + if (lookahead == '>') ADVANCE(298); END_STATE(); case 264: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(268); + if (lookahead == '>') ADVANCE(299); END_STATE(); case 265: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 266: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 267: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 268: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 269: - ACCEPT_TOKEN(anon_sym_LT2); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 270: - ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '-') ADVANCE(290); - if (lookahead == '<') ADVANCE(292); - if (lookahead == '=') ADVANCE(265); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 271: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(265); END_STATE(); case 272: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '-') ADVANCE(295); + if (lookahead == '<') ADVANCE(297); + if (lookahead == '=') ADVANCE(267); END_STATE(); case 273: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '=') ADVANCE(267); END_STATE(); case 274: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '=') ADVANCE(333); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 275: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 276: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '=') ADVANCE(338); END_STATE(); case 277: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 278: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(308); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 279: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 280: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '.') ADVANCE(313); + END_STATE(); + case 281: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(264); + END_STATE(); + case 282: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(266); if (lookahead == 'i') ADVANCE(143); END_STATE(); - case 281: + case 283: ACCEPT_TOKEN(anon_sym_json_DOTdecode); END_STATE(); - case 282: + case 284: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 285: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(336); + if (lookahead == '|') ADVANCE(305); + END_STATE(); + case 286: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(305); + END_STATE(); + case 287: ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); - case 283: + case 288: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 284: + case 289: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 285: + case 290: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(332); + if (lookahead == '=') ADVANCE(337); END_STATE(); - case 286: + case 291: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 287: + case 292: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(299); - if (lookahead == '=') ADVANCE(327); - if (lookahead == '^') ADVANCE(298); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '=') ADVANCE(332); + if (lookahead == '^') ADVANCE(303); END_STATE(); - case 288: + case 293: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(299); - if (lookahead == '^') ADVANCE(297); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '^') ADVANCE(302); END_STATE(); - case 289: + case 294: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '=') ADVANCE(327); + if (lookahead == '=') ADVANCE(332); if (lookahead == '^') ADVANCE(115); END_STATE(); - case 290: + case 295: ACCEPT_TOKEN(anon_sym_LT_DASH); END_STATE(); - case 291: + case 296: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 292: + case 297: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(324); + if (lookahead == '=') ADVANCE(329); END_STATE(); - case 293: + case 298: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(325); - if (lookahead == '>') ADVANCE(296); + if (lookahead == '=') ADVANCE(330); + if (lookahead == '>') ADVANCE(301); END_STATE(); - case 294: + case 299: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(295); + if (lookahead == '>') ADVANCE(300); END_STATE(); - case 295: + case 300: ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); - case 296: + case 301: ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(326); + if (lookahead == '=') ADVANCE(331); END_STATE(); - case 297: + case 302: ACCEPT_TOKEN(anon_sym_AMP_CARET); END_STATE(); - case 298: + case 303: ACCEPT_TOKEN(anon_sym_AMP_CARET); - if (lookahead == '=') ADVANCE(328); + if (lookahead == '=') ADVANCE(333); END_STATE(); - case 299: + case 304: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 300: + case 305: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 301: + case 306: ACCEPT_TOKEN(anon_sym_or); END_STATE(); - case 302: + case 307: ACCEPT_TOKEN(anon_sym_or); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -12928,46 +13134,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); END_STATE(); - case 303: + case 308: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 304: + case 309: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(158); END_STATE(); - case 305: + case 310: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(179); END_STATE(); - case 306: + case 311: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(164); END_STATE(); - case 307: + case 312: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(172); END_STATE(); - case 308: + case 313: ACCEPT_TOKEN(anon_sym_QMARK_DOT); END_STATE(); - case 309: + case 314: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); END_STATE(); - case 310: + case 315: ACCEPT_TOKEN(anon_sym_POUND_LBRACK); END_STATE(); - case 311: + case 316: ACCEPT_TOKEN(anon_sym_DOLLARif); END_STATE(); - case 312: + case 317: ACCEPT_TOKEN(anon_sym_DOLLARif); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -12975,12 +13181,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); END_STATE(); - case 313: + case 318: ACCEPT_TOKEN(anon_sym_DOLLARelse); END_STATE(); - case 314: + case 319: ACCEPT_TOKEN(anon_sym_DOLLARelse); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -12988,12 +13194,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); END_STATE(); - case 315: + case 320: ACCEPT_TOKEN(anon_sym_is); END_STATE(); - case 316: + case 321: ACCEPT_TOKEN(anon_sym_is); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13001,15 +13207,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); END_STATE(); - case 317: + case 322: ACCEPT_TOKEN(anon_sym_BANGis); END_STATE(); - case 318: + case 323: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 319: + case 324: ACCEPT_TOKEN(anon_sym_in); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13017,51 +13223,51 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); END_STATE(); - case 320: + case 325: ACCEPT_TOKEN(anon_sym_BANGin); END_STATE(); - case 321: + case 326: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 322: + case 327: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 323: + case 328: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 324: + case 329: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 325: + case 330: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 326: + case 331: ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); - case 327: + case 332: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 328: + case 333: ACCEPT_TOKEN(anon_sym_AMP_CARET_EQ); END_STATE(); - case 329: + case 334: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 330: + case 335: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 331: + case 336: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 332: + case 337: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 333: + case 338: ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); - case 334: + case 339: ACCEPT_TOKEN(sym_int_literal); if (lookahead == '.') ADVANCE(151); if (lookahead == 'P' || @@ -13069,9 +13275,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(334); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(339); END_STATE(); - case 335: + case 340: ACCEPT_TOKEN(sym_int_literal); if (lookahead == '.') ADVANCE(160); if (lookahead == 'B' || @@ -13085,9 +13291,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(153); if (lookahead == '8' || lookahead == '9') ADVANCE(105); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(336); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(341); END_STATE(); - case 336: + case 341: ACCEPT_TOKEN(sym_int_literal); if (lookahead == '.') ADVANCE(160); if (lookahead == 'E' || @@ -13095,40 +13301,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(153); if (lookahead == '8' || lookahead == '9') ADVANCE(105); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(336); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(341); END_STATE(); - case 337: + case 342: ACCEPT_TOKEN(sym_int_literal); if (lookahead == '.') ADVANCE(160); if (lookahead == 'E' || lookahead == 'e') ADVANCE(149); if (lookahead == '_') ADVANCE(159); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(342); END_STATE(); - case 338: + case 343: ACCEPT_TOKEN(sym_int_literal); if (lookahead == '_') ADVANCE(154); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(338); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(343); END_STATE(); - case 339: + case 344: ACCEPT_TOKEN(sym_int_literal); if (lookahead == '_') ADVANCE(157); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(339); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(344); END_STATE(); - case 340: + case 345: ACCEPT_TOKEN(sym_int_literal); if (lookahead == '_') ADVANCE(152); if (lookahead == '0' || - lookahead == '1') ADVANCE(340); + lookahead == '1') ADVANCE(345); END_STATE(); - case 341: + case 346: ACCEPT_TOKEN(sym_int_literal); if (lookahead == '_') ADVANCE(166); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(341); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(346); END_STATE(); - case 342: + case 347: ACCEPT_TOKEN(sym_int_literal); if (lookahead == 'B' || lookahead == 'b') ADVANCE(129); @@ -13137,156 +13343,156 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'X' || lookahead == 'x') ADVANCE(130); if (lookahead == '_') ADVANCE(154); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(338); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(343); END_STATE(); - case 343: + case 348: ACCEPT_TOKEN(sym_float_literal); if (lookahead == '_') ADVANCE(162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(343); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(348); END_STATE(); - case 344: + case 349: ACCEPT_TOKEN(sym_float_literal); if (lookahead == 'E' || lookahead == 'e') ADVANCE(149); if (lookahead == '_') ADVANCE(160); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(344); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(349); END_STATE(); - case 345: + case 350: ACCEPT_TOKEN(sym_rune_literal); END_STATE(); - case 346: + case 351: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 347: + case 352: ACCEPT_TOKEN(aux_sym_interpreted_string_literal_token1); - if (lookahead == '*') ADVANCE(349); - if (lookahead == '/') ADVANCE(349); + if (lookahead == '*') ADVANCE(354); + if (lookahead == '/') ADVANCE(354); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(349); + lookahead != '\\') ADVANCE(354); END_STATE(); - case 348: + case 353: ACCEPT_TOKEN(aux_sym_interpreted_string_literal_token1); - if (lookahead == '/') ADVANCE(347); + if (lookahead == '/') ADVANCE(352); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(348); + lookahead == ' ') ADVANCE(353); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(349); + lookahead != '\\') ADVANCE(354); END_STATE(); - case 349: + case 354: ACCEPT_TOKEN(aux_sym_interpreted_string_literal_token1); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(349); + lookahead != '\\') ADVANCE(354); END_STATE(); - case 350: + case 355: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == 'C') ADVANCE(374); - if (lookahead == 'J') ADVANCE(378); + if (lookahead == 'C') ADVANCE(379); + if (lookahead == 'J') ADVANCE(383); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == '{') ADVANCE(366); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == '{') ADVANCE(371); END_STATE(); - case 351: + case 356: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '{') ADVANCE(366); + if (lookahead == '{') ADVANCE(371); END_STATE(); - case 352: + case 357: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 353: + case 358: ACCEPT_TOKEN(aux_sym_interpreted_string_literal_token2); - if (lookahead == '*') ADVANCE(355); - if (lookahead == '/') ADVANCE(355); + if (lookahead == '*') ADVANCE(360); + if (lookahead == '/') ADVANCE(360); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(355); + lookahead != '\\') ADVANCE(360); END_STATE(); - case 354: + case 359: ACCEPT_TOKEN(aux_sym_interpreted_string_literal_token2); - if (lookahead == '/') ADVANCE(353); + if (lookahead == '/') ADVANCE(358); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(354); + lookahead == ' ') ADVANCE(359); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(355); + lookahead != '\\') ADVANCE(360); END_STATE(); - case 355: + case 360: ACCEPT_TOKEN(aux_sym_interpreted_string_literal_token2); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(355); + lookahead != '\\') ADVANCE(360); END_STATE(); - case 356: + case 361: ACCEPT_TOKEN(anon_sym_c_SQUOTE); END_STATE(); - case 357: + case 362: ACCEPT_TOKEN(anon_sym_c_DQUOTE); END_STATE(); - case 358: + case 363: ACCEPT_TOKEN(anon_sym_r_SQUOTE); END_STATE(); - case 359: + case 364: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(361); - if (lookahead == '/') ADVANCE(361); + if (lookahead == '*') ADVANCE(366); + if (lookahead == '/') ADVANCE(366); if (lookahead != 0 && - lookahead != '\'') ADVANCE(361); + lookahead != '\'') ADVANCE(366); END_STATE(); - case 360: + case 365: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '/') ADVANCE(359); + if (lookahead == '/') ADVANCE(364); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(360); + lookahead == ' ') ADVANCE(365); if (lookahead != 0 && - lookahead != '\'') ADVANCE(361); + lookahead != '\'') ADVANCE(366); END_STATE(); - case 361: + case 366: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); if (lookahead != 0 && - lookahead != '\'') ADVANCE(361); + lookahead != '\'') ADVANCE(366); END_STATE(); - case 362: + case 367: ACCEPT_TOKEN(anon_sym_r_DQUOTE); END_STATE(); - case 363: + case 368: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(365); - if (lookahead == '/') ADVANCE(365); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '/') ADVANCE(370); if (lookahead != 0 && - lookahead != '"') ADVANCE(365); + lookahead != '"') ADVANCE(370); END_STATE(); - case 364: + case 369: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '/') ADVANCE(363); + if (lookahead == '/') ADVANCE(368); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(364); + lookahead == ' ') ADVANCE(369); if (lookahead != 0 && - lookahead != '"') ADVANCE(365); + lookahead != '"') ADVANCE(370); END_STATE(); - case 365: + case 370: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); if (lookahead != 0 && - lookahead != '"') ADVANCE(365); + lookahead != '"') ADVANCE(370); END_STATE(); - case 366: + case 371: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 367: + case 372: ACCEPT_TOKEN(aux_sym_format_specifier_token2); END_STATE(); - case 368: + case 373: ACCEPT_TOKEN(anon_sym_0); if (lookahead == 'B' || lookahead == 'b') ADVANCE(129); @@ -13295,65 +13501,65 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'X' || lookahead == 'x') ADVANCE(130); if (lookahead == '_') ADVANCE(154); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(338); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(343); END_STATE(); - case 369: + case 374: ACCEPT_TOKEN(sym_pseudo_compile_time_identifier); if (lookahead == '.') ADVANCE(182); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(370); + lookahead == '_') ADVANCE(375); if (('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); END_STATE(); - case 370: + case 375: ACCEPT_TOKEN(sym_pseudo_compile_time_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(370); + lookahead == '_') ADVANCE(375); if (('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); END_STATE(); - case 371: + case 376: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(357); - if (lookahead == '\'') ADVANCE(356); + if (lookahead == '"') ADVANCE(362); + if (lookahead == '\'') ADVANCE(361); 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(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); END_STATE(); - case 372: + case 377: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(362); - if (lookahead == '\'') ADVANCE(358); + if (lookahead == '"') ADVANCE(367); + if (lookahead == '\'') ADVANCE(363); 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(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); END_STATE(); - case 373: + case 378: ACCEPT_TOKEN(sym_identifier); if (lookahead == '.') ADVANCE(126); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(370); + lookahead == '_') ADVANCE(375); if (('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); END_STATE(); - case 374: + case 379: ACCEPT_TOKEN(sym_identifier); if (lookahead == '.') ADVANCE(126); if (('0' <= lookahead && lookahead <= '9') || @@ -13362,9 +13568,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); END_STATE(); - case 375: + case 380: ACCEPT_TOKEN(sym_identifier); if (lookahead == '.') ADVANCE(182); if (('0' <= lookahead && lookahead <= '9') || @@ -13373,9 +13579,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); END_STATE(); - case 376: + case 381: ACCEPT_TOKEN(sym_identifier); if (lookahead == '.') ADVANCE(134); if (('0' <= lookahead && lookahead <= '9') || @@ -13384,58 +13590,58 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); END_STATE(); - case 377: + case 382: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(369); + if (lookahead == 'S') ADVANCE(374); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(370); + lookahead == '_') ADVANCE(375); if (('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); END_STATE(); - case 378: + case 383: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(375); + if (lookahead == 'S') ADVANCE(380); 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(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); END_STATE(); - case 379: + case 384: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '[') ADVANCE(396); + if (lookahead == '[') ADVANCE(404); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); END_STATE(); - case 380: + case 385: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(370); + lookahead == '_') ADVANCE(375); if (('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); END_STATE(); - case 381: + case 386: ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(395); - if (lookahead == 'n') ADVANCE(319); - if (lookahead == 's') ADVANCE(316); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(400); + if (lookahead == 'n') ADVANCE(324); + if (lookahead == 's') ADVANCE(321); END_STATE(); - case 382: + case 387: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13444,10 +13650,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('f' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'e') ADVANCE(314); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'e') ADVANCE(319); END_STATE(); - case 383: + case 388: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13456,10 +13662,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('g' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'f') ADVANCE(312); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'f') ADVANCE(317); END_STATE(); - case 384: + case 389: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13468,10 +13674,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('m' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'l') ADVANCE(393); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'l') ADVANCE(398); END_STATE(); - case 385: + case 390: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13480,10 +13686,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('o' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'n') ADVANCE(376); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'n') ADVANCE(381); END_STATE(); - case 386: + case 391: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13492,10 +13698,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'o') ADVANCE(385); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'o') ADVANCE(390); END_STATE(); - case 387: + case 392: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13504,10 +13710,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'o') ADVANCE(390); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'o') ADVANCE(395); END_STATE(); - case 388: + case 393: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13516,10 +13722,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('q' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'p') ADVANCE(379); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'p') ADVANCE(384); END_STATE(); - case 389: + case 394: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13528,10 +13734,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('s' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'r') ADVANCE(302); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'r') ADVANCE(307); END_STATE(); - case 390: + case 395: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13540,10 +13746,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('s' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'r') ADVANCE(397); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'r') ADVANCE(405); END_STATE(); - case 391: + case 396: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13552,10 +13758,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('t' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 's') ADVANCE(228); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 's') ADVANCE(233); END_STATE(); - case 392: + case 397: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13564,10 +13770,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('t' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 's') ADVANCE(386); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 's') ADVANCE(391); END_STATE(); - case 393: + case 398: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13576,10 +13782,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('t' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 's') ADVANCE(382); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 's') ADVANCE(387); END_STATE(); - case 394: + case 399: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13587,10 +13793,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('b' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); - if (lookahead == 'a') ADVANCE(388); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); + if (lookahead == 'a') ADVANCE(393); END_STATE(); - case 395: + case 400: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13598,12 +13804,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); END_STATE(); - case 396: + case 401: + ACCEPT_TOKEN(aux_sym_sum_type_token1); + if (lookahead == '\n') ADVANCE(205); + if (lookahead == '\r') ADVANCE(207); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(401); + END_STATE(); + case 402: + ACCEPT_TOKEN(anon_sym_PIPE2); + END_STATE(); + case 403: + ACCEPT_TOKEN(anon_sym_PIPE2); + if (lookahead == '=') ADVANCE(336); + if (lookahead == '|') ADVANCE(305); + END_STATE(); + case 404: ACCEPT_TOKEN(anon_sym_map_LBRACK); END_STATE(); - case 397: + case 405: ACCEPT_TOKEN(anon_sym_DOLLARfor); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13611,82 +13832,82 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + (945 <= lookahead && lookahead <= 969)) ADVANCE(400); END_STATE(); - case 398: + case 406: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); - case 399: + case 407: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(267); + if (lookahead == '.') ADVANCE(269); END_STATE(); - case 400: + case 408: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 401: + case 409: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(203); + if (lookahead == '!') ADVANCE(208); END_STATE(); - case 402: + case 410: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(203); - if (lookahead == '[') ADVANCE(310); + if (lookahead == '!') ADVANCE(208); + if (lookahead == '[') ADVANCE(315); END_STATE(); - case 403: + case 411: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '[') ADVANCE(310); + if (lookahead == '[') ADVANCE(315); END_STATE(); - case 404: + case 412: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(211); - if (lookahead == '/') ADVANCE(208); + if (lookahead == '*') ADVANCE(216); + if (lookahead == '/') ADVANCE(213); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '\\') ADVANCE(406); + lookahead != '\\') ADVANCE(414); END_STATE(); - case 405: + case 413: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '/') ADVANCE(404); + if (lookahead == '/') ADVANCE(412); if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') ADVANCE(405); + lookahead == ' ') ADVANCE(413); if (lookahead != 0 && (lookahead < '\n' || '\r' < lookahead) && - lookahead != '\\') ADVANCE(406); + lookahead != '\\') ADVANCE(414); END_STATE(); - case 406: + case 414: ACCEPT_TOKEN(aux_sym_hash_statement_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '\\') ADVANCE(406); + lookahead != '\\') ADVANCE(414); END_STATE(); - case 407: + case 415: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(409); - if (lookahead == '/') ADVANCE(409); + if (lookahead == '*') ADVANCE(417); + if (lookahead == '/') ADVANCE(417); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(409); + lookahead != '}') ADVANCE(417); END_STATE(); - case 408: + case 416: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '/') ADVANCE(407); + if (lookahead == '/') ADVANCE(415); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(408); + lookahead == ' ') ADVANCE(416); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(409); + lookahead != '}') ADVANCE(417); END_STATE(); - case 409: + case 417: ACCEPT_TOKEN(aux_sym__content_block_token1); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(409); + lookahead != '}') ADVANCE(417); END_STATE(); - case 410: + case 418: ACCEPT_TOKEN(anon_sym_AT_LBRACK); END_STATE(); default: @@ -14266,71 +14487,71 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 198}, - [2] = {.lex_state = 199}, - [3] = {.lex_state = 199}, - [4] = {.lex_state = 199}, - [5] = {.lex_state = 199}, - [6] = {.lex_state = 199}, - [7] = {.lex_state = 199}, - [8] = {.lex_state = 199}, - [9] = {.lex_state = 199}, - [10] = {.lex_state = 199}, - [11] = {.lex_state = 199}, - [12] = {.lex_state = 199}, - [13] = {.lex_state = 199}, - [14] = {.lex_state = 199}, - [15] = {.lex_state = 199}, - [16] = {.lex_state = 199}, - [17] = {.lex_state = 199}, - [18] = {.lex_state = 199}, - [19] = {.lex_state = 199}, - [20] = {.lex_state = 199}, - [21] = {.lex_state = 199}, - [22] = {.lex_state = 199}, - [23] = {.lex_state = 199}, - [24] = {.lex_state = 199}, - [25] = {.lex_state = 199}, - [26] = {.lex_state = 199}, - [27] = {.lex_state = 199}, - [28] = {.lex_state = 199}, - [29] = {.lex_state = 199}, - [30] = {.lex_state = 199}, - [31] = {.lex_state = 199}, - [32] = {.lex_state = 199}, - [33] = {.lex_state = 199}, - [34] = {.lex_state = 199}, - [35] = {.lex_state = 199}, - [36] = {.lex_state = 199}, - [37] = {.lex_state = 199}, - [38] = {.lex_state = 199}, - [39] = {.lex_state = 199}, - [40] = {.lex_state = 199}, - [41] = {.lex_state = 199}, - [42] = {.lex_state = 199}, - [43] = {.lex_state = 199}, - [44] = {.lex_state = 199}, - [45] = {.lex_state = 199}, - [46] = {.lex_state = 199}, - [47] = {.lex_state = 199}, - [48] = {.lex_state = 199}, - [49] = {.lex_state = 199}, - [50] = {.lex_state = 199}, - [51] = {.lex_state = 199}, - [52] = {.lex_state = 199}, - [53] = {.lex_state = 199}, - [54] = {.lex_state = 199}, - [55] = {.lex_state = 199}, - [56] = {.lex_state = 199}, - [57] = {.lex_state = 199}, - [58] = {.lex_state = 199}, - [59] = {.lex_state = 199}, - [60] = {.lex_state = 199}, - [61] = {.lex_state = 199}, - [62] = {.lex_state = 199}, - [63] = {.lex_state = 199}, - [64] = {.lex_state = 199}, - [65] = {.lex_state = 199}, + [1] = {.lex_state = 200}, + [2] = {.lex_state = 201}, + [3] = {.lex_state = 201}, + [4] = {.lex_state = 201}, + [5] = {.lex_state = 201}, + [6] = {.lex_state = 201}, + [7] = {.lex_state = 201}, + [8] = {.lex_state = 201}, + [9] = {.lex_state = 201}, + [10] = {.lex_state = 201}, + [11] = {.lex_state = 201}, + [12] = {.lex_state = 201}, + [13] = {.lex_state = 201}, + [14] = {.lex_state = 201}, + [15] = {.lex_state = 201}, + [16] = {.lex_state = 201}, + [17] = {.lex_state = 201}, + [18] = {.lex_state = 201}, + [19] = {.lex_state = 201}, + [20] = {.lex_state = 201}, + [21] = {.lex_state = 201}, + [22] = {.lex_state = 201}, + [23] = {.lex_state = 201}, + [24] = {.lex_state = 201}, + [25] = {.lex_state = 201}, + [26] = {.lex_state = 201}, + [27] = {.lex_state = 201}, + [28] = {.lex_state = 201}, + [29] = {.lex_state = 201}, + [30] = {.lex_state = 201}, + [31] = {.lex_state = 201}, + [32] = {.lex_state = 201}, + [33] = {.lex_state = 201}, + [34] = {.lex_state = 201}, + [35] = {.lex_state = 201}, + [36] = {.lex_state = 201}, + [37] = {.lex_state = 201}, + [38] = {.lex_state = 201}, + [39] = {.lex_state = 201}, + [40] = {.lex_state = 201}, + [41] = {.lex_state = 201}, + [42] = {.lex_state = 201}, + [43] = {.lex_state = 201}, + [44] = {.lex_state = 201}, + [45] = {.lex_state = 201}, + [46] = {.lex_state = 201}, + [47] = {.lex_state = 201}, + [48] = {.lex_state = 201}, + [49] = {.lex_state = 201}, + [50] = {.lex_state = 201}, + [51] = {.lex_state = 201}, + [52] = {.lex_state = 201}, + [53] = {.lex_state = 201}, + [54] = {.lex_state = 201}, + [55] = {.lex_state = 201}, + [56] = {.lex_state = 201}, + [57] = {.lex_state = 201}, + [58] = {.lex_state = 201}, + [59] = {.lex_state = 201}, + [60] = {.lex_state = 201}, + [61] = {.lex_state = 201}, + [62] = {.lex_state = 201}, + [63] = {.lex_state = 201}, + [64] = {.lex_state = 201}, + [65] = {.lex_state = 201}, [66] = {.lex_state = 194}, [67] = {.lex_state = 185}, [68] = {.lex_state = 185}, @@ -14440,23 +14661,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [172] = {.lex_state = 79}, [173] = {.lex_state = 79}, [174] = {.lex_state = 79}, - [175] = {.lex_state = 187}, - [176] = {.lex_state = 80}, + [175] = {.lex_state = 79}, + [176] = {.lex_state = 79}, [177] = {.lex_state = 79}, - [178] = {.lex_state = 79}, + [178] = {.lex_state = 187}, [179] = {.lex_state = 79}, - [180] = {.lex_state = 187}, - [181] = {.lex_state = 79}, + [180] = {.lex_state = 79}, + [181] = {.lex_state = 187}, [182] = {.lex_state = 79}, - [183] = {.lex_state = 187}, + [183] = {.lex_state = 79}, [184] = {.lex_state = 79}, - [185] = {.lex_state = 187}, - [186] = {.lex_state = 187}, + [185] = {.lex_state = 79}, + [186] = {.lex_state = 79}, [187] = {.lex_state = 79}, - [188] = {.lex_state = 79}, - [189] = {.lex_state = 79}, - [190] = {.lex_state = 79}, - [191] = {.lex_state = 79}, + [188] = {.lex_state = 187}, + [189] = {.lex_state = 187}, + [190] = {.lex_state = 187}, + [191] = {.lex_state = 80}, [192] = {.lex_state = 79}, [193] = {.lex_state = 79}, [194] = {.lex_state = 79}, @@ -14476,12 +14697,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [208] = {.lex_state = 79}, [209] = {.lex_state = 79}, [210] = {.lex_state = 79}, - [211] = {.lex_state = 30}, + [211] = {.lex_state = 79}, [212] = {.lex_state = 79}, - [213] = {.lex_state = 79}, + [213] = {.lex_state = 185}, [214] = {.lex_state = 185}, - [215] = {.lex_state = 185}, - [216] = {.lex_state = 79}, + [215] = {.lex_state = 79}, + [216] = {.lex_state = 30}, [217] = {.lex_state = 185}, [218] = {.lex_state = 185}, [219] = {.lex_state = 185}, @@ -14496,16 +14717,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [228] = {.lex_state = 185}, [229] = {.lex_state = 185}, [230] = {.lex_state = 185}, - [231] = {.lex_state = 189}, + [231] = {.lex_state = 79}, [232] = {.lex_state = 79}, - [233] = {.lex_state = 79}, + [233] = {.lex_state = 185}, [234] = {.lex_state = 79}, [235] = {.lex_state = 79}, [236] = {.lex_state = 79}, [237] = {.lex_state = 79}, - [238] = {.lex_state = 79}, + [238] = {.lex_state = 185}, [239] = {.lex_state = 79}, - [240] = {.lex_state = 79}, + [240] = {.lex_state = 189}, [241] = {.lex_state = 79}, [242] = {.lex_state = 79}, [243] = {.lex_state = 79}, @@ -14513,26 +14734,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [245] = {.lex_state = 79}, [246] = {.lex_state = 79}, [247] = {.lex_state = 79}, - [248] = {.lex_state = 79}, + [248] = {.lex_state = 189}, [249] = {.lex_state = 79}, [250] = {.lex_state = 79}, [251] = {.lex_state = 79}, [252] = {.lex_state = 79}, - [253] = {.lex_state = 79}, + [253] = {.lex_state = 189}, [254] = {.lex_state = 79}, [255] = {.lex_state = 79}, [256] = {.lex_state = 79}, - [257] = {.lex_state = 79}, + [257] = {.lex_state = 185}, [258] = {.lex_state = 79}, [259] = {.lex_state = 79}, [260] = {.lex_state = 79}, - [261] = {.lex_state = 79}, - [262] = {.lex_state = 189}, + [261] = {.lex_state = 185}, + [262] = {.lex_state = 79}, [263] = {.lex_state = 79}, - [264] = {.lex_state = 185}, + [264] = {.lex_state = 79}, [265] = {.lex_state = 79}, [266] = {.lex_state = 79}, - [267] = {.lex_state = 185}, + [267] = {.lex_state = 79}, [268] = {.lex_state = 79}, [269] = {.lex_state = 79}, [270] = {.lex_state = 79}, @@ -14542,18 +14763,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [274] = {.lex_state = 79}, [275] = {.lex_state = 79}, [276] = {.lex_state = 79}, - [277] = {.lex_state = 185}, + [277] = {.lex_state = 79}, [278] = {.lex_state = 79}, [279] = {.lex_state = 79}, [280] = {.lex_state = 79}, - [281] = {.lex_state = 189}, + [281] = {.lex_state = 79}, [282] = {.lex_state = 79}, [283] = {.lex_state = 79}, [284] = {.lex_state = 79}, [285] = {.lex_state = 79}, [286] = {.lex_state = 79}, - [287] = {.lex_state = 79}, - [288] = {.lex_state = 185}, + [287] = {.lex_state = 185}, + [288] = {.lex_state = 79}, [289] = {.lex_state = 79}, [290] = {.lex_state = 79}, [291] = {.lex_state = 79}, @@ -14561,7 +14782,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [293] = {.lex_state = 79}, [294] = {.lex_state = 79}, [295] = {.lex_state = 79}, - [296] = {.lex_state = 185}, + [296] = {.lex_state = 79}, [297] = {.lex_state = 79}, [298] = {.lex_state = 79}, [299] = {.lex_state = 79}, @@ -14570,98 +14791,98 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [302] = {.lex_state = 79}, [303] = {.lex_state = 79}, [304] = {.lex_state = 79}, - [305] = {.lex_state = 185}, + [305] = {.lex_state = 79}, [306] = {.lex_state = 185}, [307] = {.lex_state = 185}, - [308] = {.lex_state = 80}, + [308] = {.lex_state = 79}, [309] = {.lex_state = 185}, - [310] = {.lex_state = 185}, - [311] = {.lex_state = 185}, - [312] = {.lex_state = 79}, - [313] = {.lex_state = 185}, - [314] = {.lex_state = 185}, - [315] = {.lex_state = 185}, - [316] = {.lex_state = 185}, - [317] = {.lex_state = 79}, - [318] = {.lex_state = 185}, - [319] = {.lex_state = 185}, + [310] = {.lex_state = 79}, + [311] = {.lex_state = 80}, + [312] = {.lex_state = 185}, + [313] = {.lex_state = 80}, + [314] = {.lex_state = 79}, + [315] = {.lex_state = 79}, + [316] = {.lex_state = 80}, + [317] = {.lex_state = 80}, + [318] = {.lex_state = 79}, + [319] = {.lex_state = 79}, [320] = {.lex_state = 185}, - [321] = {.lex_state = 185}, - [322] = {.lex_state = 185}, - [323] = {.lex_state = 185}, + [321] = {.lex_state = 79}, + [322] = {.lex_state = 79}, + [323] = {.lex_state = 79}, [324] = {.lex_state = 185}, - [325] = {.lex_state = 185}, + [325] = {.lex_state = 79}, [326] = {.lex_state = 185}, - [327] = {.lex_state = 185}, + [327] = {.lex_state = 80}, [328] = {.lex_state = 79}, - [329] = {.lex_state = 185}, + [329] = {.lex_state = 80}, [330] = {.lex_state = 185}, [331] = {.lex_state = 185}, [332] = {.lex_state = 185}, - [333] = {.lex_state = 185}, - [334] = {.lex_state = 185}, + [333] = {.lex_state = 80}, + [334] = {.lex_state = 80}, [335] = {.lex_state = 185}, - [336] = {.lex_state = 185}, - [337] = {.lex_state = 185}, + [336] = {.lex_state = 79}, + [337] = {.lex_state = 79}, [338] = {.lex_state = 185}, [339] = {.lex_state = 185}, [340] = {.lex_state = 185}, - [341] = {.lex_state = 185}, - [342] = {.lex_state = 185}, - [343] = {.lex_state = 185}, + [341] = {.lex_state = 79}, + [342] = {.lex_state = 80}, + [343] = {.lex_state = 80}, [344] = {.lex_state = 185}, - [345] = {.lex_state = 185}, + [345] = {.lex_state = 79}, [346] = {.lex_state = 185}, - [347] = {.lex_state = 185}, + [347] = {.lex_state = 79}, [348] = {.lex_state = 185}, - [349] = {.lex_state = 185}, + [349] = {.lex_state = 80}, [350] = {.lex_state = 185}, - [351] = {.lex_state = 185}, + [351] = {.lex_state = 80}, [352] = {.lex_state = 185}, [353] = {.lex_state = 79}, [354] = {.lex_state = 80}, - [355] = {.lex_state = 80}, - [356] = {.lex_state = 79}, + [355] = {.lex_state = 79}, + [356] = {.lex_state = 80}, [357] = {.lex_state = 185}, [358] = {.lex_state = 185}, [359] = {.lex_state = 185}, - [360] = {.lex_state = 185}, + [360] = {.lex_state = 79}, [361] = {.lex_state = 79}, [362] = {.lex_state = 185}, - [363] = {.lex_state = 79}, + [363] = {.lex_state = 185}, [364] = {.lex_state = 79}, [365] = {.lex_state = 185}, - [366] = {.lex_state = 185}, - [367] = {.lex_state = 79}, - [368] = {.lex_state = 80}, - [369] = {.lex_state = 79}, - [370] = {.lex_state = 185}, - [371] = {.lex_state = 79}, - [372] = {.lex_state = 80}, + [366] = {.lex_state = 79}, + [367] = {.lex_state = 80}, + [368] = {.lex_state = 79}, + [369] = {.lex_state = 185}, + [370] = {.lex_state = 80}, + [371] = {.lex_state = 80}, + [372] = {.lex_state = 185}, [373] = {.lex_state = 79}, [374] = {.lex_state = 79}, [375] = {.lex_state = 185}, - [376] = {.lex_state = 185}, - [377] = {.lex_state = 80}, - [378] = {.lex_state = 79}, - [379] = {.lex_state = 80}, - [380] = {.lex_state = 185}, - [381] = {.lex_state = 80}, - [382] = {.lex_state = 79}, - [383] = {.lex_state = 79}, - [384] = {.lex_state = 185}, + [376] = {.lex_state = 79}, + [377] = {.lex_state = 79}, + [378] = {.lex_state = 185}, + [379] = {.lex_state = 185}, + [380] = {.lex_state = 80}, + [381] = {.lex_state = 79}, + [382] = {.lex_state = 185}, + [383] = {.lex_state = 185}, + [384] = {.lex_state = 79}, [385] = {.lex_state = 185}, [386] = {.lex_state = 79}, - [387] = {.lex_state = 185}, - [388] = {.lex_state = 79}, - [389] = {.lex_state = 79}, - [390] = {.lex_state = 79}, - [391] = {.lex_state = 79}, - [392] = {.lex_state = 185}, - [393] = {.lex_state = 79}, - [394] = {.lex_state = 79}, - [395] = {.lex_state = 80}, - [396] = {.lex_state = 80}, + [387] = {.lex_state = 79}, + [388] = {.lex_state = 185}, + [389] = {.lex_state = 80}, + [390] = {.lex_state = 80}, + [391] = {.lex_state = 185}, + [392] = {.lex_state = 79}, + [393] = {.lex_state = 185}, + [394] = {.lex_state = 185}, + [395] = {.lex_state = 79}, + [396] = {.lex_state = 79}, [397] = {.lex_state = 79}, [398] = {.lex_state = 79}, [399] = {.lex_state = 185}, @@ -14671,31 +14892,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [403] = {.lex_state = 79}, [404] = {.lex_state = 185}, [405] = {.lex_state = 79}, - [406] = {.lex_state = 79}, + [406] = {.lex_state = 185}, [407] = {.lex_state = 79}, - [408] = {.lex_state = 80}, - [409] = {.lex_state = 80}, + [408] = {.lex_state = 79}, + [409] = {.lex_state = 185}, [410] = {.lex_state = 185}, [411] = {.lex_state = 185}, - [412] = {.lex_state = 185}, - [413] = {.lex_state = 79}, + [412] = {.lex_state = 79}, + [413] = {.lex_state = 185}, [414] = {.lex_state = 185}, - [415] = {.lex_state = 185}, - [416] = {.lex_state = 79}, - [417] = {.lex_state = 79}, - [418] = {.lex_state = 80}, - [419] = {.lex_state = 80}, + [415] = {.lex_state = 79}, + [416] = {.lex_state = 80}, + [417] = {.lex_state = 80}, + [418] = {.lex_state = 79}, + [419] = {.lex_state = 185}, [420] = {.lex_state = 79}, [421] = {.lex_state = 185}, - [422] = {.lex_state = 80}, - [423] = {.lex_state = 80}, - [424] = {.lex_state = 80}, + [422] = {.lex_state = 79}, + [423] = {.lex_state = 79}, + [424] = {.lex_state = 79}, [425] = {.lex_state = 185}, [426] = {.lex_state = 185}, - [427] = {.lex_state = 185}, - [428] = {.lex_state = 79}, - [429] = {.lex_state = 80}, - [430] = {.lex_state = 79}, + [427] = {.lex_state = 80}, + [428] = {.lex_state = 185}, + [429] = {.lex_state = 185}, + [430] = {.lex_state = 80}, [431] = {.lex_state = 79}, [432] = {.lex_state = 185}, [433] = {.lex_state = 185}, @@ -14706,20 +14927,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [438] = {.lex_state = 79}, [439] = {.lex_state = 79}, [440] = {.lex_state = 185}, - [441] = {.lex_state = 79}, + [441] = {.lex_state = 185}, [442] = {.lex_state = 185}, - [443] = {.lex_state = 185}, + [443] = {.lex_state = 79}, [444] = {.lex_state = 185}, - [445] = {.lex_state = 185}, - [446] = {.lex_state = 79}, + [445] = {.lex_state = 79}, + [446] = {.lex_state = 185}, [447] = {.lex_state = 185}, - [448] = {.lex_state = 79}, - [449] = {.lex_state = 79}, + [448] = {.lex_state = 185}, + [449] = {.lex_state = 185}, [450] = {.lex_state = 79}, - [451] = {.lex_state = 79}, - [452] = {.lex_state = 80}, - [453] = {.lex_state = 80}, - [454] = {.lex_state = 185}, + [451] = {.lex_state = 185}, + [452] = {.lex_state = 185}, + [453] = {.lex_state = 185}, + [454] = {.lex_state = 79}, [455] = {.lex_state = 185}, [456] = {.lex_state = 79}, [457] = {.lex_state = 185}, @@ -14727,23 +14948,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [459] = {.lex_state = 185}, [460] = {.lex_state = 185}, [461] = {.lex_state = 185}, - [462] = {.lex_state = 185}, + [462] = {.lex_state = 79}, [463] = {.lex_state = 79}, [464] = {.lex_state = 79}, - [465] = {.lex_state = 79}, + [465] = {.lex_state = 185}, [466] = {.lex_state = 79}, - [467] = {.lex_state = 80}, - [468] = {.lex_state = 80}, - [469] = {.lex_state = 79}, - [470] = {.lex_state = 79}, - [471] = {.lex_state = 79}, + [467] = {.lex_state = 79}, + [468] = {.lex_state = 79}, + [469] = {.lex_state = 185}, + [470] = {.lex_state = 185}, + [471] = {.lex_state = 185}, [472] = {.lex_state = 185}, - [473] = {.lex_state = 79}, + [473] = {.lex_state = 185}, [474] = {.lex_state = 185}, [475] = {.lex_state = 185}, [476] = {.lex_state = 185}, - [477] = {.lex_state = 80}, - [478] = {.lex_state = 80}, + [477] = {.lex_state = 185}, + [478] = {.lex_state = 185}, [479] = {.lex_state = 79}, [480] = {.lex_state = 185}, [481] = {.lex_state = 185}, @@ -14752,22 +14973,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [484] = {.lex_state = 185}, [485] = {.lex_state = 185}, [486] = {.lex_state = 185}, - [487] = {.lex_state = 79}, - [488] = {.lex_state = 79}, - [489] = {.lex_state = 79}, - [490] = {.lex_state = 79}, + [487] = {.lex_state = 185}, + [488] = {.lex_state = 185}, + [489] = {.lex_state = 185}, + [490] = {.lex_state = 185}, [491] = {.lex_state = 185}, [492] = {.lex_state = 79}, - [493] = {.lex_state = 185}, - [494] = {.lex_state = 79}, + [493] = {.lex_state = 79}, + [494] = {.lex_state = 185}, [495] = {.lex_state = 185}, [496] = {.lex_state = 185}, - [497] = {.lex_state = 79}, - [498] = {.lex_state = 79}, - [499] = {.lex_state = 79}, + [497] = {.lex_state = 185}, + [498] = {.lex_state = 185}, + [499] = {.lex_state = 185}, [500] = {.lex_state = 185}, - [501] = {.lex_state = 79}, - [502] = {.lex_state = 79}, + [501] = {.lex_state = 185}, + [502] = {.lex_state = 185}, [503] = {.lex_state = 79}, [504] = {.lex_state = 79}, [505] = {.lex_state = 79}, @@ -15212,13 +15433,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [944] = {.lex_state = 79}, [945] = {.lex_state = 79}, [946] = {.lex_state = 79}, - [947] = {.lex_state = 2}, + [947] = {.lex_state = 79}, [948] = {.lex_state = 2}, [949] = {.lex_state = 2}, [950] = {.lex_state = 2}, [951] = {.lex_state = 2}, [952] = {.lex_state = 2}, - [953] = {.lex_state = 187}, + [953] = {.lex_state = 2}, [954] = {.lex_state = 187}, [955] = {.lex_state = 187}, [956] = {.lex_state = 187}, @@ -15245,18 +15466,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [977] = {.lex_state = 187}, [978] = {.lex_state = 187}, [979] = {.lex_state = 187}, - [980] = {.lex_state = 191}, + [980] = {.lex_state = 187}, [981] = {.lex_state = 37}, [982] = {.lex_state = 37}, [983] = {.lex_state = 37}, - [984] = {.lex_state = 191}, + [984] = {.lex_state = 37}, [985] = {.lex_state = 191}, [986] = {.lex_state = 187}, - [987] = {.lex_state = 191}, - [988] = {.lex_state = 187}, - [989] = {.lex_state = 187}, - [990] = {.lex_state = 37}, - [991] = {.lex_state = 37}, + [987] = {.lex_state = 187}, + [988] = {.lex_state = 191}, + [989] = {.lex_state = 37}, + [990] = {.lex_state = 191}, + [991] = {.lex_state = 191}, [992] = {.lex_state = 187}, [993] = {.lex_state = 187}, [994] = {.lex_state = 187}, @@ -15363,52 +15584,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1095] = {.lex_state = 187}, [1096] = {.lex_state = 187}, [1097] = {.lex_state = 187}, - [1098] = {.lex_state = 194}, - [1099] = {.lex_state = 194}, - [1100] = {.lex_state = 194}, - [1101] = {.lex_state = 6}, - [1102] = {.lex_state = 6}, - [1103] = {.lex_state = 193}, - [1104] = {.lex_state = 6}, + [1098] = {.lex_state = 187}, + [1099] = {.lex_state = 198}, + [1100] = {.lex_state = 198}, + [1101] = {.lex_state = 198}, + [1102] = {.lex_state = 194}, + [1103] = {.lex_state = 194}, + [1104] = {.lex_state = 194}, [1105] = {.lex_state = 6}, [1106] = {.lex_state = 6}, - [1107] = {.lex_state = 2}, - [1108] = {.lex_state = 2}, - [1109] = {.lex_state = 2}, - [1110] = {.lex_state = 2}, + [1107] = {.lex_state = 6}, + [1108] = {.lex_state = 6}, + [1109] = {.lex_state = 193}, + [1110] = {.lex_state = 6}, [1111] = {.lex_state = 2}, [1112] = {.lex_state = 2}, - [1113] = {.lex_state = 10}, + [1113] = {.lex_state = 2}, [1114] = {.lex_state = 2}, [1115] = {.lex_state = 2}, [1116] = {.lex_state = 2}, [1117] = {.lex_state = 2}, - [1118] = {.lex_state = 2}, - [1119] = {.lex_state = 10}, - [1120] = {.lex_state = 10}, + [1118] = {.lex_state = 10}, + [1119] = {.lex_state = 2}, + [1120] = {.lex_state = 2}, [1121] = {.lex_state = 2}, [1122] = {.lex_state = 2}, - [1123] = {.lex_state = 10}, + [1123] = {.lex_state = 2}, [1124] = {.lex_state = 2}, [1125] = {.lex_state = 10}, - [1126] = {.lex_state = 2}, + [1126] = {.lex_state = 10}, [1127] = {.lex_state = 2}, - [1128] = {.lex_state = 2}, + [1128] = {.lex_state = 10}, [1129] = {.lex_state = 2}, - [1130] = {.lex_state = 4}, - [1131] = {.lex_state = 2}, - [1132] = {.lex_state = 2}, - [1133] = {.lex_state = 4}, - [1134] = {.lex_state = 2}, + [1130] = {.lex_state = 2}, + [1131] = {.lex_state = 10}, + [1132] = {.lex_state = 4}, + [1133] = {.lex_state = 2}, + [1134] = {.lex_state = 4}, [1135] = {.lex_state = 4}, [1136] = {.lex_state = 2}, - [1137] = {.lex_state = 4}, + [1137] = {.lex_state = 2}, [1138] = {.lex_state = 2}, - [1139] = {.lex_state = 2}, + [1139] = {.lex_state = 4}, [1140] = {.lex_state = 2}, [1141] = {.lex_state = 2}, [1142] = {.lex_state = 2}, - [1143] = {.lex_state = 2}, + [1143] = {.lex_state = 41}, [1144] = {.lex_state = 2}, [1145] = {.lex_state = 2}, [1146] = {.lex_state = 2}, @@ -15425,17 +15646,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1157] = {.lex_state = 2}, [1158] = {.lex_state = 2}, [1159] = {.lex_state = 2}, - [1160] = {.lex_state = 2}, + [1160] = {.lex_state = 41}, [1161] = {.lex_state = 2}, [1162] = {.lex_state = 2}, - [1163] = {.lex_state = 2}, + [1163] = {.lex_state = 41}, [1164] = {.lex_state = 2}, - [1165] = {.lex_state = 41}, + [1165] = {.lex_state = 2}, [1166] = {.lex_state = 2}, - [1167] = {.lex_state = 41}, + [1167] = {.lex_state = 2}, [1168] = {.lex_state = 2}, - [1169] = {.lex_state = 2}, - [1170] = {.lex_state = 41}, + [1169] = {.lex_state = 45}, + [1170] = {.lex_state = 2}, [1171] = {.lex_state = 2}, [1172] = {.lex_state = 2}, [1173] = {.lex_state = 2}, @@ -15446,18 +15667,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1178] = {.lex_state = 2}, [1179] = {.lex_state = 2}, [1180] = {.lex_state = 2}, - [1181] = {.lex_state = 2}, - [1182] = {.lex_state = 2}, + [1181] = {.lex_state = 45}, + [1182] = {.lex_state = 45}, [1183] = {.lex_state = 2}, [1184] = {.lex_state = 2}, - [1185] = {.lex_state = 2}, + [1185] = {.lex_state = 45}, [1186] = {.lex_state = 2}, [1187] = {.lex_state = 2}, [1188] = {.lex_state = 2}, [1189] = {.lex_state = 2}, [1190] = {.lex_state = 2}, [1191] = {.lex_state = 2}, - [1192] = {.lex_state = 41}, + [1192] = {.lex_state = 2}, [1193] = {.lex_state = 2}, [1194] = {.lex_state = 2}, [1195] = {.lex_state = 2}, @@ -15465,10 +15686,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1197] = {.lex_state = 2}, [1198] = {.lex_state = 2}, [1199] = {.lex_state = 2}, - [1200] = {.lex_state = 45}, - [1201] = {.lex_state = 45}, - [1202] = {.lex_state = 2}, - [1203] = {.lex_state = 45}, + [1200] = {.lex_state = 2}, + [1201] = {.lex_state = 2}, + [1202] = {.lex_state = 45}, + [1203] = {.lex_state = 2}, [1204] = {.lex_state = 2}, [1205] = {.lex_state = 2}, [1206] = {.lex_state = 2}, @@ -15499,10 +15720,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1231] = {.lex_state = 2}, [1232] = {.lex_state = 2}, [1233] = {.lex_state = 2}, - [1234] = {.lex_state = 2}, + [1234] = {.lex_state = 41}, [1235] = {.lex_state = 2}, [1236] = {.lex_state = 2}, - [1237] = {.lex_state = 2}, + [1237] = {.lex_state = 45}, [1238] = {.lex_state = 2}, [1239] = {.lex_state = 2}, [1240] = {.lex_state = 2}, @@ -15512,24 +15733,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1244] = {.lex_state = 2}, [1245] = {.lex_state = 2}, [1246] = {.lex_state = 2}, - [1247] = {.lex_state = 2}, + [1247] = {.lex_state = 41}, [1248] = {.lex_state = 2}, [1249] = {.lex_state = 2}, - [1250] = {.lex_state = 41}, - [1251] = {.lex_state = 45}, - [1252] = {.lex_state = 45}, - [1253] = {.lex_state = 45}, + [1250] = {.lex_state = 2}, + [1251] = {.lex_state = 2}, + [1252] = {.lex_state = 2}, + [1253] = {.lex_state = 2}, [1254] = {.lex_state = 2}, - [1255] = {.lex_state = 37}, - [1256] = {.lex_state = 37}, - [1257] = {.lex_state = 37}, - [1258] = {.lex_state = 45}, - [1259] = {.lex_state = 37}, + [1255] = {.lex_state = 2}, + [1256] = {.lex_state = 2}, + [1257] = {.lex_state = 2}, + [1258] = {.lex_state = 37}, + [1259] = {.lex_state = 2}, [1260] = {.lex_state = 37}, - [1261] = {.lex_state = 37}, + [1261] = {.lex_state = 45}, [1262] = {.lex_state = 37}, [1263] = {.lex_state = 37}, - [1264] = {.lex_state = 39}, + [1264] = {.lex_state = 37}, [1265] = {.lex_state = 37}, [1266] = {.lex_state = 37}, [1267] = {.lex_state = 37}, @@ -15539,20 +15760,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1271] = {.lex_state = 37}, [1272] = {.lex_state = 37}, [1273] = {.lex_state = 37}, - [1274] = {.lex_state = 39}, + [1274] = {.lex_state = 37}, [1275] = {.lex_state = 37}, - [1276] = {.lex_state = 39}, - [1277] = {.lex_state = 37}, + [1276] = {.lex_state = 37}, + [1277] = {.lex_state = 39}, [1278] = {.lex_state = 37}, [1279] = {.lex_state = 37}, [1280] = {.lex_state = 37}, - [1281] = {.lex_state = 37}, - [1282] = {.lex_state = 39}, + [1281] = {.lex_state = 39}, + [1282] = {.lex_state = 37}, [1283] = {.lex_state = 37}, [1284] = {.lex_state = 37}, [1285] = {.lex_state = 37}, [1286] = {.lex_state = 37}, - [1287] = {.lex_state = 37}, + [1287] = {.lex_state = 39}, [1288] = {.lex_state = 37}, [1289] = {.lex_state = 37}, [1290] = {.lex_state = 37}, @@ -15560,7 +15781,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1292] = {.lex_state = 37}, [1293] = {.lex_state = 37}, [1294] = {.lex_state = 37}, - [1295] = {.lex_state = 37}, + [1295] = {.lex_state = 39}, [1296] = {.lex_state = 37}, [1297] = {.lex_state = 37}, [1298] = {.lex_state = 37}, @@ -15656,81 +15877,81 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1388] = {.lex_state = 37}, [1389] = {.lex_state = 37}, [1390] = {.lex_state = 37}, - [1391] = {.lex_state = 14}, + [1391] = {.lex_state = 37}, [1392] = {.lex_state = 37}, [1393] = {.lex_state = 37}, [1394] = {.lex_state = 14}, - [1395] = {.lex_state = 14}, + [1395] = {.lex_state = 37}, [1396] = {.lex_state = 37}, [1397] = {.lex_state = 14}, [1398] = {.lex_state = 37}, [1399] = {.lex_state = 37}, [1400] = {.lex_state = 14}, - [1401] = {.lex_state = 49}, - [1402] = {.lex_state = 49}, - [1403] = {.lex_state = 49}, - [1404] = {.lex_state = 195}, - [1405] = {.lex_state = 194}, - [1406] = {.lex_state = 194}, - [1407] = {.lex_state = 194}, - [1408] = {.lex_state = 194}, - [1409] = {.lex_state = 14}, - [1410] = {.lex_state = 194}, - [1411] = {.lex_state = 195}, - [1412] = {.lex_state = 195}, - [1413] = {.lex_state = 194}, - [1414] = {.lex_state = 195}, - [1415] = {.lex_state = 49}, - [1416] = {.lex_state = 194}, - [1417] = {.lex_state = 194}, - [1418] = {.lex_state = 194}, - [1419] = {.lex_state = 194}, - [1420] = {.lex_state = 194}, - [1421] = {.lex_state = 194}, - [1422] = {.lex_state = 194}, - [1423] = {.lex_state = 194}, - [1424] = {.lex_state = 194}, - [1425] = {.lex_state = 194}, - [1426] = {.lex_state = 194}, - [1427] = {.lex_state = 194}, - [1428] = {.lex_state = 194}, - [1429] = {.lex_state = 194}, - [1430] = {.lex_state = 194}, - [1431] = {.lex_state = 194}, - [1432] = {.lex_state = 14}, - [1433] = {.lex_state = 194}, - [1434] = {.lex_state = 194}, - [1435] = {.lex_state = 194}, - [1436] = {.lex_state = 194}, - [1437] = {.lex_state = 194}, - [1438] = {.lex_state = 194}, - [1439] = {.lex_state = 194}, - [1440] = {.lex_state = 194}, - [1441] = {.lex_state = 194}, - [1442] = {.lex_state = 194}, - [1443] = {.lex_state = 194}, - [1444] = {.lex_state = 194}, - [1445] = {.lex_state = 194}, - [1446] = {.lex_state = 194}, - [1447] = {.lex_state = 14}, + [1401] = {.lex_state = 14}, + [1402] = {.lex_state = 14}, + [1403] = {.lex_state = 37}, + [1404] = {.lex_state = 37}, + [1405] = {.lex_state = 197}, + [1406] = {.lex_state = 49}, + [1407] = {.lex_state = 49}, + [1408] = {.lex_state = 198}, + [1409] = {.lex_state = 197}, + [1410] = {.lex_state = 197}, + [1411] = {.lex_state = 49}, + [1412] = {.lex_state = 198}, + [1413] = {.lex_state = 198}, + [1414] = {.lex_state = 198}, + [1415] = {.lex_state = 198}, + [1416] = {.lex_state = 197}, + [1417] = {.lex_state = 198}, + [1418] = {.lex_state = 198}, + [1419] = {.lex_state = 198}, + [1420] = {.lex_state = 198}, + [1421] = {.lex_state = 198}, + [1422] = {.lex_state = 198}, + [1423] = {.lex_state = 198}, + [1424] = {.lex_state = 198}, + [1425] = {.lex_state = 198}, + [1426] = {.lex_state = 198}, + [1427] = {.lex_state = 198}, + [1428] = {.lex_state = 198}, + [1429] = {.lex_state = 49}, + [1430] = {.lex_state = 198}, + [1431] = {.lex_state = 198}, + [1432] = {.lex_state = 198}, + [1433] = {.lex_state = 198}, + [1434] = {.lex_state = 14}, + [1435] = {.lex_state = 198}, + [1436] = {.lex_state = 198}, + [1437] = {.lex_state = 198}, + [1438] = {.lex_state = 198}, + [1439] = {.lex_state = 198}, + [1440] = {.lex_state = 198}, + [1441] = {.lex_state = 198}, + [1442] = {.lex_state = 198}, + [1443] = {.lex_state = 198}, + [1444] = {.lex_state = 198}, + [1445] = {.lex_state = 198}, + [1446] = {.lex_state = 198}, + [1447] = {.lex_state = 195}, [1448] = {.lex_state = 194}, - [1449] = {.lex_state = 194}, - [1450] = {.lex_state = 194}, + [1449] = {.lex_state = 198}, + [1450] = {.lex_state = 198}, [1451] = {.lex_state = 194}, [1452] = {.lex_state = 194}, - [1453] = {.lex_state = 194}, - [1454] = {.lex_state = 194}, + [1453] = {.lex_state = 198}, + [1454] = {.lex_state = 198}, [1455] = {.lex_state = 194}, [1456] = {.lex_state = 194}, - [1457] = {.lex_state = 194}, - [1458] = {.lex_state = 194}, - [1459] = {.lex_state = 194}, - [1460] = {.lex_state = 194}, - [1461] = {.lex_state = 194}, + [1457] = {.lex_state = 14}, + [1458] = {.lex_state = 14}, + [1459] = {.lex_state = 195}, + [1460] = {.lex_state = 195}, + [1461] = {.lex_state = 195}, [1462] = {.lex_state = 194}, - [1463] = {.lex_state = 14}, + [1463] = {.lex_state = 194}, [1464] = {.lex_state = 194}, - [1465] = {.lex_state = 194}, + [1465] = {.lex_state = 14}, [1466] = {.lex_state = 194}, [1467] = {.lex_state = 194}, [1468] = {.lex_state = 194}, @@ -15738,9 +15959,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1470] = {.lex_state = 194}, [1471] = {.lex_state = 194}, [1472] = {.lex_state = 194}, - [1473] = {.lex_state = 194}, + [1473] = {.lex_state = 14}, [1474] = {.lex_state = 194}, - [1475] = {.lex_state = 14}, + [1475] = {.lex_state = 194}, [1476] = {.lex_state = 194}, [1477] = {.lex_state = 194}, [1478] = {.lex_state = 194}, @@ -15768,9 +15989,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1500] = {.lex_state = 194}, [1501] = {.lex_state = 194}, [1502] = {.lex_state = 194}, - [1503] = {.lex_state = 199}, - [1504] = {.lex_state = 194}, - [1505] = {.lex_state = 199}, + [1503] = {.lex_state = 194}, + [1504] = {.lex_state = 49}, + [1505] = {.lex_state = 194}, [1506] = {.lex_state = 194}, [1507] = {.lex_state = 194}, [1508] = {.lex_state = 194}, @@ -15778,18 +15999,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1510] = {.lex_state = 194}, [1511] = {.lex_state = 194}, [1512] = {.lex_state = 194}, - [1513] = {.lex_state = 49}, + [1513] = {.lex_state = 194}, [1514] = {.lex_state = 194}, [1515] = {.lex_state = 194}, [1516] = {.lex_state = 194}, [1517] = {.lex_state = 194}, [1518] = {.lex_state = 194}, [1519] = {.lex_state = 194}, - [1520] = {.lex_state = 53}, + [1520] = {.lex_state = 194}, [1521] = {.lex_state = 194}, [1522] = {.lex_state = 194}, [1523] = {.lex_state = 194}, - [1524] = {.lex_state = 194}, + [1524] = {.lex_state = 53}, [1525] = {.lex_state = 194}, [1526] = {.lex_state = 194}, [1527] = {.lex_state = 194}, @@ -15809,7 +16030,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1541] = {.lex_state = 194}, [1542] = {.lex_state = 194}, [1543] = {.lex_state = 194}, - [1544] = {.lex_state = 194}, + [1544] = {.lex_state = 201}, [1545] = {.lex_state = 194}, [1546] = {.lex_state = 194}, [1547] = {.lex_state = 194}, @@ -15840,118 +16061,118 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1572] = {.lex_state = 194}, [1573] = {.lex_state = 194}, [1574] = {.lex_state = 194}, - [1575] = {.lex_state = 199}, - [1576] = {.lex_state = 49}, - [1577] = {.lex_state = 53}, - [1578] = {.lex_state = 53}, - [1579] = {.lex_state = 53}, - [1580] = {.lex_state = 53}, - [1581] = {.lex_state = 49}, - [1582] = {.lex_state = 199}, - [1583] = {.lex_state = 199}, - [1584] = {.lex_state = 49}, - [1585] = {.lex_state = 199}, - [1586] = {.lex_state = 79}, - [1587] = {.lex_state = 199}, - [1588] = {.lex_state = 199}, - [1589] = {.lex_state = 6}, - [1590] = {.lex_state = 6}, - [1591] = {.lex_state = 6}, - [1592] = {.lex_state = 6}, - [1593] = {.lex_state = 6}, - [1594] = {.lex_state = 10}, - [1595] = {.lex_state = 10}, - [1596] = {.lex_state = 10}, - [1597] = {.lex_state = 10}, - [1598] = {.lex_state = 10}, - [1599] = {.lex_state = 41}, - [1600] = {.lex_state = 41}, - [1601] = {.lex_state = 41}, - [1602] = {.lex_state = 41}, - [1603] = {.lex_state = 41}, - [1604] = {.lex_state = 24}, - [1605] = {.lex_state = 45}, - [1606] = {.lex_state = 45}, - [1607] = {.lex_state = 45}, - [1608] = {.lex_state = 45}, - [1609] = {.lex_state = 45}, - [1610] = {.lex_state = 24}, - [1611] = {.lex_state = 24}, - [1612] = {.lex_state = 24}, - [1613] = {.lex_state = 24}, - [1614] = {.lex_state = 24}, - [1615] = {.lex_state = 24}, - [1616] = {.lex_state = 24}, - [1617] = {.lex_state = 24}, - [1618] = {.lex_state = 24}, - [1619] = {.lex_state = 24}, - [1620] = {.lex_state = 24}, - [1621] = {.lex_state = 24}, - [1622] = {.lex_state = 26}, - [1623] = {.lex_state = 7}, - [1624] = {.lex_state = 18}, - [1625] = {.lex_state = 7}, - [1626] = {.lex_state = 18}, - [1627] = {.lex_state = 24}, - [1628] = {.lex_state = 24}, - [1629] = {.lex_state = 24}, - [1630] = {.lex_state = 24}, - [1631] = {.lex_state = 26}, - [1632] = {.lex_state = 24}, - [1633] = {.lex_state = 24}, - [1634] = {.lex_state = 24}, - [1635] = {.lex_state = 24}, - [1636] = {.lex_state = 26}, - [1637] = {.lex_state = 24}, - [1638] = {.lex_state = 24}, - [1639] = {.lex_state = 24}, + [1575] = {.lex_state = 194}, + [1576] = {.lex_state = 194}, + [1577] = {.lex_state = 194}, + [1578] = {.lex_state = 194}, + [1579] = {.lex_state = 194}, + [1580] = {.lex_state = 194}, + [1581] = {.lex_state = 194}, + [1582] = {.lex_state = 194}, + [1583] = {.lex_state = 194}, + [1584] = {.lex_state = 194}, + [1585] = {.lex_state = 194}, + [1586] = {.lex_state = 194}, + [1587] = {.lex_state = 194}, + [1588] = {.lex_state = 194}, + [1589] = {.lex_state = 194}, + [1590] = {.lex_state = 194}, + [1591] = {.lex_state = 194}, + [1592] = {.lex_state = 194}, + [1593] = {.lex_state = 194}, + [1594] = {.lex_state = 194}, + [1595] = {.lex_state = 194}, + [1596] = {.lex_state = 194}, + [1597] = {.lex_state = 194}, + [1598] = {.lex_state = 194}, + [1599] = {.lex_state = 194}, + [1600] = {.lex_state = 194}, + [1601] = {.lex_state = 194}, + [1602] = {.lex_state = 194}, + [1603] = {.lex_state = 194}, + [1604] = {.lex_state = 194}, + [1605] = {.lex_state = 201}, + [1606] = {.lex_state = 194}, + [1607] = {.lex_state = 194}, + [1608] = {.lex_state = 194}, + [1609] = {.lex_state = 194}, + [1610] = {.lex_state = 194}, + [1611] = {.lex_state = 194}, + [1612] = {.lex_state = 194}, + [1613] = {.lex_state = 194}, + [1614] = {.lex_state = 194}, + [1615] = {.lex_state = 53}, + [1616] = {.lex_state = 53}, + [1617] = {.lex_state = 201}, + [1618] = {.lex_state = 53}, + [1619] = {.lex_state = 53}, + [1620] = {.lex_state = 49}, + [1621] = {.lex_state = 201}, + [1622] = {.lex_state = 79}, + [1623] = {.lex_state = 201}, + [1624] = {.lex_state = 201}, + [1625] = {.lex_state = 49}, + [1626] = {.lex_state = 49}, + [1627] = {.lex_state = 201}, + [1628] = {.lex_state = 201}, + [1629] = {.lex_state = 6}, + [1630] = {.lex_state = 6}, + [1631] = {.lex_state = 6}, + [1632] = {.lex_state = 6}, + [1633] = {.lex_state = 6}, + [1634] = {.lex_state = 10}, + [1635] = {.lex_state = 10}, + [1636] = {.lex_state = 10}, + [1637] = {.lex_state = 10}, + [1638] = {.lex_state = 10}, + [1639] = {.lex_state = 41}, [1640] = {.lex_state = 24}, - [1641] = {.lex_state = 24}, - [1642] = {.lex_state = 24}, - [1643] = {.lex_state = 26}, - [1644] = {.lex_state = 26}, - [1645] = {.lex_state = 24}, - [1646] = {.lex_state = 24}, - [1647] = {.lex_state = 24}, - [1648] = {.lex_state = 24}, - [1649] = {.lex_state = 26}, - [1650] = {.lex_state = 26}, + [1641] = {.lex_state = 45}, + [1642] = {.lex_state = 45}, + [1643] = {.lex_state = 41}, + [1644] = {.lex_state = 41}, + [1645] = {.lex_state = 45}, + [1646] = {.lex_state = 45}, + [1647] = {.lex_state = 41}, + [1648] = {.lex_state = 41}, + [1649] = {.lex_state = 45}, + [1650] = {.lex_state = 24}, [1651] = {.lex_state = 24}, - [1652] = {.lex_state = 26}, - [1653] = {.lex_state = 199}, + [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 = 26}, - [1661] = {.lex_state = 26}, - [1662] = {.lex_state = 24}, - [1663] = {.lex_state = 24}, - [1664] = {.lex_state = 24}, - [1665] = {.lex_state = 69}, - [1666] = {.lex_state = 69}, + [1660] = {.lex_state = 24}, + [1661] = {.lex_state = 24}, + [1662] = {.lex_state = 18}, + [1663] = {.lex_state = 26}, + [1664] = {.lex_state = 7}, + [1665] = {.lex_state = 7}, + [1666] = {.lex_state = 18}, [1667] = {.lex_state = 24}, [1668] = {.lex_state = 26}, - [1669] = {.lex_state = 26}, + [1669] = {.lex_state = 24}, [1670] = {.lex_state = 24}, [1671] = {.lex_state = 24}, [1672] = {.lex_state = 24}, [1673] = {.lex_state = 24}, [1674] = {.lex_state = 24}, - [1675] = {.lex_state = 24}, + [1675] = {.lex_state = 26}, [1676] = {.lex_state = 24}, - [1677] = {.lex_state = 24}, - [1678] = {.lex_state = 24}, - [1679] = {.lex_state = 24}, + [1677] = {.lex_state = 26}, + [1678] = {.lex_state = 26}, + [1679] = {.lex_state = 26}, [1680] = {.lex_state = 24}, [1681] = {.lex_state = 24}, [1682] = {.lex_state = 24}, [1683] = {.lex_state = 24}, - [1684] = {.lex_state = 24}, + [1684] = {.lex_state = 26}, [1685] = {.lex_state = 24}, - [1686] = {.lex_state = 24}, + [1686] = {.lex_state = 201}, [1687] = {.lex_state = 24}, [1688] = {.lex_state = 24}, [1689] = {.lex_state = 24}, @@ -15959,25 +16180,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1691] = {.lex_state = 24}, [1692] = {.lex_state = 24}, [1693] = {.lex_state = 24}, - [1694] = {.lex_state = 24}, - [1695] = {.lex_state = 24}, + [1694] = {.lex_state = 69}, + [1695] = {.lex_state = 69}, [1696] = {.lex_state = 24}, [1697] = {.lex_state = 24}, [1698] = {.lex_state = 24}, [1699] = {.lex_state = 24}, [1700] = {.lex_state = 24}, - [1701] = {.lex_state = 24}, - [1702] = {.lex_state = 11}, - [1703] = {.lex_state = 11}, - [1704] = {.lex_state = 24}, - [1705] = {.lex_state = 24}, - [1706] = {.lex_state = 24}, - [1707] = {.lex_state = 24}, - [1708] = {.lex_state = 20}, - [1709] = {.lex_state = 20}, + [1701] = {.lex_state = 26}, + [1702] = {.lex_state = 24}, + [1703] = {.lex_state = 24}, + [1704] = {.lex_state = 26}, + [1705] = {.lex_state = 26}, + [1706] = {.lex_state = 26}, + [1707] = {.lex_state = 26}, + [1708] = {.lex_state = 24}, + [1709] = {.lex_state = 24}, [1710] = {.lex_state = 24}, [1711] = {.lex_state = 24}, - [1712] = {.lex_state = 26}, + [1712] = {.lex_state = 24}, [1713] = {.lex_state = 24}, [1714] = {.lex_state = 24}, [1715] = {.lex_state = 24}, @@ -15997,8 +16218,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1729] = {.lex_state = 24}, [1730] = {.lex_state = 24}, [1731] = {.lex_state = 24}, - [1732] = {.lex_state = 24}, - [1733] = {.lex_state = 24}, + [1732] = {.lex_state = 20}, + [1733] = {.lex_state = 20}, [1734] = {.lex_state = 24}, [1735] = {.lex_state = 24}, [1736] = {.lex_state = 24}, @@ -16006,7 +16227,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1738] = {.lex_state = 24}, [1739] = {.lex_state = 24}, [1740] = {.lex_state = 24}, - [1741] = {.lex_state = 24}, + [1741] = {.lex_state = 26}, [1742] = {.lex_state = 24}, [1743] = {.lex_state = 24}, [1744] = {.lex_state = 24}, @@ -16016,91 +16237,91 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1748] = {.lex_state = 24}, [1749] = {.lex_state = 24}, [1750] = {.lex_state = 24}, - [1751] = {.lex_state = 69}, - [1752] = {.lex_state = 26}, - [1753] = {.lex_state = 26}, - [1754] = {.lex_state = 26}, - [1755] = {.lex_state = 71}, - [1756] = {.lex_state = 26}, - [1757] = {.lex_state = 71}, - [1758] = {.lex_state = 71}, - [1759] = {.lex_state = 71}, - [1760] = {.lex_state = 26}, - [1761] = {.lex_state = 71}, - [1762] = {.lex_state = 26}, - [1763] = {.lex_state = 69}, - [1764] = {.lex_state = 69}, - [1765] = {.lex_state = 69}, - [1766] = {.lex_state = 69}, - [1767] = {.lex_state = 69}, - [1768] = {.lex_state = 69}, - [1769] = {.lex_state = 69}, - [1770] = {.lex_state = 71}, - [1771] = {.lex_state = 69}, - [1772] = {.lex_state = 71}, - [1773] = {.lex_state = 71}, - [1774] = {.lex_state = 71}, - [1775] = {.lex_state = 69}, - [1776] = {.lex_state = 69}, - [1777] = {.lex_state = 71}, - [1778] = {.lex_state = 69}, - [1779] = {.lex_state = 69}, - [1780] = {.lex_state = 26}, - [1781] = {.lex_state = 26}, - [1782] = {.lex_state = 26}, - [1783] = {.lex_state = 26}, - [1784] = {.lex_state = 69}, - [1785] = {.lex_state = 26}, - [1786] = {.lex_state = 26}, - [1787] = {.lex_state = 26}, - [1788] = {.lex_state = 26}, - [1789] = {.lex_state = 26}, - [1790] = {.lex_state = 26}, - [1791] = {.lex_state = 46}, - [1792] = {.lex_state = 46}, - [1793] = {.lex_state = 26}, + [1751] = {.lex_state = 24}, + [1752] = {.lex_state = 24}, + [1753] = {.lex_state = 24}, + [1754] = {.lex_state = 11}, + [1755] = {.lex_state = 24}, + [1756] = {.lex_state = 24}, + [1757] = {.lex_state = 24}, + [1758] = {.lex_state = 24}, + [1759] = {.lex_state = 24}, + [1760] = {.lex_state = 24}, + [1761] = {.lex_state = 24}, + [1762] = {.lex_state = 24}, + [1763] = {.lex_state = 24}, + [1764] = {.lex_state = 24}, + [1765] = {.lex_state = 24}, + [1766] = {.lex_state = 24}, + [1767] = {.lex_state = 24}, + [1768] = {.lex_state = 24}, + [1769] = {.lex_state = 24}, + [1770] = {.lex_state = 24}, + [1771] = {.lex_state = 24}, + [1772] = {.lex_state = 24}, + [1773] = {.lex_state = 24}, + [1774] = {.lex_state = 24}, + [1775] = {.lex_state = 24}, + [1776] = {.lex_state = 24}, + [1777] = {.lex_state = 24}, + [1778] = {.lex_state = 11}, + [1779] = {.lex_state = 24}, + [1780] = {.lex_state = 24}, + [1781] = {.lex_state = 24}, + [1782] = {.lex_state = 24}, + [1783] = {.lex_state = 24}, + [1784] = {.lex_state = 24}, + [1785] = {.lex_state = 24}, + [1786] = {.lex_state = 24}, + [1787] = {.lex_state = 24}, + [1788] = {.lex_state = 24}, + [1789] = {.lex_state = 24}, + [1790] = {.lex_state = 24}, + [1791] = {.lex_state = 71}, + [1792] = {.lex_state = 71}, + [1793] = {.lex_state = 71}, [1794] = {.lex_state = 69}, - [1795] = {.lex_state = 26}, - [1796] = {.lex_state = 26}, + [1795] = {.lex_state = 69}, + [1796] = {.lex_state = 69}, [1797] = {.lex_state = 69}, - [1798] = {.lex_state = 26}, + [1798] = {.lex_state = 69}, [1799] = {.lex_state = 69}, [1800] = {.lex_state = 26}, [1801] = {.lex_state = 26}, - [1802] = {.lex_state = 26}, - [1803] = {.lex_state = 26}, + [1802] = {.lex_state = 69}, + [1803] = {.lex_state = 71}, [1804] = {.lex_state = 26}, - [1805] = {.lex_state = 26}, - [1806] = {.lex_state = 69}, - [1807] = {.lex_state = 69}, + [1805] = {.lex_state = 69}, + [1806] = {.lex_state = 71}, + [1807] = {.lex_state = 71}, [1808] = {.lex_state = 69}, - [1809] = {.lex_state = 69}, - [1810] = {.lex_state = 26}, - [1811] = {.lex_state = 26}, - [1812] = {.lex_state = 26}, + [1809] = {.lex_state = 26}, + [1810] = {.lex_state = 71}, + [1811] = {.lex_state = 69}, + [1812] = {.lex_state = 71}, [1813] = {.lex_state = 26}, - [1814] = {.lex_state = 26}, + [1814] = {.lex_state = 69}, [1815] = {.lex_state = 26}, - [1816] = {.lex_state = 26}, - [1817] = {.lex_state = 26}, - [1818] = {.lex_state = 26}, - [1819] = {.lex_state = 26}, + [1816] = {.lex_state = 69}, + [1817] = {.lex_state = 69}, + [1818] = {.lex_state = 71}, + [1819] = {.lex_state = 71}, [1820] = {.lex_state = 61}, - [1821] = {.lex_state = 43}, - [1822] = {.lex_state = 43}, - [1823] = {.lex_state = 26}, - [1824] = {.lex_state = 26}, - [1825] = {.lex_state = 26}, - [1826] = {.lex_state = 26}, - [1827] = {.lex_state = 26}, - [1828] = {.lex_state = 26}, - [1829] = {.lex_state = 26}, - [1830] = {.lex_state = 26}, - [1831] = {.lex_state = 26}, + [1821] = {.lex_state = 26}, + [1822] = {.lex_state = 59}, + [1823] = {.lex_state = 43}, + [1824] = {.lex_state = 43}, + [1825] = {.lex_state = 69}, + [1826] = {.lex_state = 69}, + [1827] = {.lex_state = 71}, + [1828] = {.lex_state = 69}, + [1829] = {.lex_state = 69}, + [1830] = {.lex_state = 14}, + [1831] = {.lex_state = 14}, [1832] = {.lex_state = 26}, - [1833] = {.lex_state = 26}, - [1834] = {.lex_state = 26}, - [1835] = {.lex_state = 26}, + [1833] = {.lex_state = 14}, + [1834] = {.lex_state = 14}, + [1835] = {.lex_state = 14}, [1836] = {.lex_state = 26}, [1837] = {.lex_state = 26}, [1838] = {.lex_state = 26}, @@ -16114,7 +16335,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1846] = {.lex_state = 26}, [1847] = {.lex_state = 26}, [1848] = {.lex_state = 26}, - [1849] = {.lex_state = 14}, + [1849] = {.lex_state = 26}, [1850] = {.lex_state = 26}, [1851] = {.lex_state = 26}, [1852] = {.lex_state = 26}, @@ -16130,8 +16351,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1862] = {.lex_state = 26}, [1863] = {.lex_state = 26}, [1864] = {.lex_state = 26}, - [1865] = {.lex_state = 14}, - [1866] = {.lex_state = 14}, + [1865] = {.lex_state = 26}, + [1866] = {.lex_state = 26}, [1867] = {.lex_state = 26}, [1868] = {.lex_state = 26}, [1869] = {.lex_state = 26}, @@ -16139,334 +16360,334 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1871] = {.lex_state = 26}, [1872] = {.lex_state = 26}, [1873] = {.lex_state = 26}, - [1874] = {.lex_state = 59}, + [1874] = {.lex_state = 26}, [1875] = {.lex_state = 26}, [1876] = {.lex_state = 26}, [1877] = {.lex_state = 26}, [1878] = {.lex_state = 26}, [1879] = {.lex_state = 26}, [1880] = {.lex_state = 26}, - [1881] = {.lex_state = 69}, - [1882] = {.lex_state = 59}, + [1881] = {.lex_state = 26}, + [1882] = {.lex_state = 26}, [1883] = {.lex_state = 26}, [1884] = {.lex_state = 26}, [1885] = {.lex_state = 26}, [1886] = {.lex_state = 26}, [1887] = {.lex_state = 26}, - [1888] = {.lex_state = 61}, + [1888] = {.lex_state = 26}, [1889] = {.lex_state = 26}, - [1890] = {.lex_state = 14}, - [1891] = {.lex_state = 14}, + [1890] = {.lex_state = 26}, + [1891] = {.lex_state = 26}, [1892] = {.lex_state = 26}, [1893] = {.lex_state = 26}, [1894] = {.lex_state = 26}, - [1895] = {.lex_state = 71}, + [1895] = {.lex_state = 26}, [1896] = {.lex_state = 26}, [1897] = {.lex_state = 26}, [1898] = {.lex_state = 26}, - [1899] = {.lex_state = 71}, - [1900] = {.lex_state = 69}, - [1901] = {.lex_state = 30}, - [1902] = {.lex_state = 71}, - [1903] = {.lex_state = 69}, - [1904] = {.lex_state = 69}, - [1905] = {.lex_state = 69}, - [1906] = {.lex_state = 69}, - [1907] = {.lex_state = 71}, - [1908] = {.lex_state = 69}, - [1909] = {.lex_state = 71}, - [1910] = {.lex_state = 69}, - [1911] = {.lex_state = 30}, - [1912] = {.lex_state = 69}, - [1913] = {.lex_state = 71}, - [1914] = {.lex_state = 69}, - [1915] = {.lex_state = 69}, - [1916] = {.lex_state = 71}, - [1917] = {.lex_state = 69}, - [1918] = {.lex_state = 71}, - [1919] = {.lex_state = 71}, - [1920] = {.lex_state = 71}, - [1921] = {.lex_state = 69}, - [1922] = {.lex_state = 69}, - [1923] = {.lex_state = 71}, - [1924] = {.lex_state = 71}, - [1925] = {.lex_state = 71}, - [1926] = {.lex_state = 30}, - [1927] = {.lex_state = 69}, - [1928] = {.lex_state = 71}, - [1929] = {.lex_state = 69}, - [1930] = {.lex_state = 69}, + [1899] = {.lex_state = 26}, + [1900] = {.lex_state = 26}, + [1901] = {.lex_state = 26}, + [1902] = {.lex_state = 26}, + [1903] = {.lex_state = 26}, + [1904] = {.lex_state = 26}, + [1905] = {.lex_state = 26}, + [1906] = {.lex_state = 26}, + [1907] = {.lex_state = 26}, + [1908] = {.lex_state = 26}, + [1909] = {.lex_state = 26}, + [1910] = {.lex_state = 26}, + [1911] = {.lex_state = 26}, + [1912] = {.lex_state = 26}, + [1913] = {.lex_state = 26}, + [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 = 26}, + [1922] = {.lex_state = 26}, + [1923] = {.lex_state = 26}, + [1924] = {.lex_state = 26}, + [1925] = {.lex_state = 26}, + [1926] = {.lex_state = 26}, + [1927] = {.lex_state = 59}, + [1928] = {.lex_state = 26}, + [1929] = {.lex_state = 26}, + [1930] = {.lex_state = 26}, [1931] = {.lex_state = 69}, [1932] = {.lex_state = 69}, - [1933] = {.lex_state = 71}, + [1933] = {.lex_state = 69}, [1934] = {.lex_state = 69}, [1935] = {.lex_state = 69}, - [1936] = {.lex_state = 71}, - [1937] = {.lex_state = 71}, - [1938] = {.lex_state = 69}, - [1939] = {.lex_state = 69}, - [1940] = {.lex_state = 71}, + [1936] = {.lex_state = 46}, + [1937] = {.lex_state = 46}, + [1938] = {.lex_state = 61}, + [1939] = {.lex_state = 71}, + [1940] = {.lex_state = 69}, [1941] = {.lex_state = 69}, - [1942] = {.lex_state = 69}, - [1943] = {.lex_state = 71}, - [1944] = {.lex_state = 69}, - [1945] = {.lex_state = 71}, + [1942] = {.lex_state = 30}, + [1943] = {.lex_state = 30}, + [1944] = {.lex_state = 71}, + [1945] = {.lex_state = 69}, [1946] = {.lex_state = 69}, [1947] = {.lex_state = 69}, [1948] = {.lex_state = 69}, [1949] = {.lex_state = 69}, - [1950] = {.lex_state = 69}, - [1951] = {.lex_state = 69}, - [1952] = {.lex_state = 69}, - [1953] = {.lex_state = 69}, + [1950] = {.lex_state = 71}, + [1951] = {.lex_state = 71}, + [1952] = {.lex_state = 71}, + [1953] = {.lex_state = 71}, [1954] = {.lex_state = 69}, [1955] = {.lex_state = 69}, [1956] = {.lex_state = 69}, [1957] = {.lex_state = 69}, [1958] = {.lex_state = 69}, [1959] = {.lex_state = 69}, - [1960] = {.lex_state = 71}, + [1960] = {.lex_state = 69}, [1961] = {.lex_state = 69}, [1962] = {.lex_state = 69}, [1963] = {.lex_state = 69}, [1964] = {.lex_state = 69}, [1965] = {.lex_state = 69}, - [1966] = {.lex_state = 71}, - [1967] = {.lex_state = 71}, - [1968] = {.lex_state = 71}, + [1966] = {.lex_state = 69}, + [1967] = {.lex_state = 69}, + [1968] = {.lex_state = 69}, [1969] = {.lex_state = 69}, [1970] = {.lex_state = 69}, - [1971] = {.lex_state = 71}, - [1972] = {.lex_state = 71}, + [1971] = {.lex_state = 69}, + [1972] = {.lex_state = 69}, [1973] = {.lex_state = 69}, - [1974] = {.lex_state = 71}, - [1975] = {.lex_state = 71}, - [1976] = {.lex_state = 71}, + [1974] = {.lex_state = 69}, + [1975] = {.lex_state = 69}, + [1976] = {.lex_state = 69}, [1977] = {.lex_state = 69}, [1978] = {.lex_state = 69}, [1979] = {.lex_state = 69}, - [1980] = {.lex_state = 69}, + [1980] = {.lex_state = 30}, [1981] = {.lex_state = 69}, [1982] = {.lex_state = 69}, - [1983] = {.lex_state = 69}, + [1983] = {.lex_state = 71}, [1984] = {.lex_state = 69}, - [1985] = {.lex_state = 71}, + [1985] = {.lex_state = 69}, [1986] = {.lex_state = 69}, [1987] = {.lex_state = 69}, [1988] = {.lex_state = 69}, - [1989] = {.lex_state = 71}, - [1990] = {.lex_state = 71}, + [1989] = {.lex_state = 69}, + [1990] = {.lex_state = 69}, [1991] = {.lex_state = 69}, - [1992] = {.lex_state = 71}, + [1992] = {.lex_state = 69}, [1993] = {.lex_state = 71}, [1994] = {.lex_state = 71}, [1995] = {.lex_state = 71}, [1996] = {.lex_state = 71}, - [1997] = {.lex_state = 69}, - [1998] = {.lex_state = 69}, + [1997] = {.lex_state = 71}, + [1998] = {.lex_state = 71}, [1999] = {.lex_state = 69}, [2000] = {.lex_state = 69}, [2001] = {.lex_state = 69}, [2002] = {.lex_state = 69}, [2003] = {.lex_state = 69}, - [2004] = {.lex_state = 69}, - [2005] = {.lex_state = 69}, + [2004] = {.lex_state = 71}, + [2005] = {.lex_state = 71}, [2006] = {.lex_state = 69}, [2007] = {.lex_state = 71}, - [2008] = {.lex_state = 69}, - [2009] = {.lex_state = 69}, - [2010] = {.lex_state = 71}, + [2008] = {.lex_state = 71}, + [2009] = {.lex_state = 71}, + [2010] = {.lex_state = 69}, [2011] = {.lex_state = 69}, [2012] = {.lex_state = 71}, [2013] = {.lex_state = 71}, - [2014] = {.lex_state = 71}, - [2015] = {.lex_state = 71}, + [2014] = {.lex_state = 69}, + [2015] = {.lex_state = 69}, [2016] = {.lex_state = 69}, - [2017] = {.lex_state = 69}, - [2018] = {.lex_state = 71}, - [2019] = {.lex_state = 71}, + [2017] = {.lex_state = 71}, + [2018] = {.lex_state = 69}, + [2019] = {.lex_state = 69}, [2020] = {.lex_state = 69}, [2021] = {.lex_state = 69}, [2022] = {.lex_state = 71}, - [2023] = {.lex_state = 71}, - [2024] = {.lex_state = 71}, - [2025] = {.lex_state = 71}, - [2026] = {.lex_state = 71}, + [2023] = {.lex_state = 69}, + [2024] = {.lex_state = 69}, + [2025] = {.lex_state = 69}, + [2026] = {.lex_state = 69}, [2027] = {.lex_state = 71}, [2028] = {.lex_state = 71}, [2029] = {.lex_state = 69}, - [2030] = {.lex_state = 71}, + [2030] = {.lex_state = 69}, [2031] = {.lex_state = 71}, [2032] = {.lex_state = 69}, - [2033] = {.lex_state = 69}, - [2034] = {.lex_state = 69}, - [2035] = {.lex_state = 71}, + [2033] = {.lex_state = 71}, + [2034] = {.lex_state = 71}, + [2035] = {.lex_state = 69}, [2036] = {.lex_state = 69}, - [2037] = {.lex_state = 69}, + [2037] = {.lex_state = 71}, [2038] = {.lex_state = 69}, - [2039] = {.lex_state = 69}, + [2039] = {.lex_state = 71}, [2040] = {.lex_state = 71}, [2041] = {.lex_state = 69}, [2042] = {.lex_state = 69}, [2043] = {.lex_state = 69}, - [2044] = {.lex_state = 71}, + [2044] = {.lex_state = 69}, [2045] = {.lex_state = 69}, [2046] = {.lex_state = 69}, [2047] = {.lex_state = 69}, [2048] = {.lex_state = 71}, [2049] = {.lex_state = 69}, - [2050] = {.lex_state = 69}, - [2051] = {.lex_state = 69}, + [2050] = {.lex_state = 71}, + [2051] = {.lex_state = 71}, [2052] = {.lex_state = 69}, - [2053] = {.lex_state = 69}, - [2054] = {.lex_state = 69}, - [2055] = {.lex_state = 71}, + [2053] = {.lex_state = 71}, + [2054] = {.lex_state = 71}, + [2055] = {.lex_state = 69}, [2056] = {.lex_state = 71}, - [2057] = {.lex_state = 71}, - [2058] = {.lex_state = 71}, - [2059] = {.lex_state = 71}, + [2057] = {.lex_state = 69}, + [2058] = {.lex_state = 69}, + [2059] = {.lex_state = 69}, [2060] = {.lex_state = 71}, - [2061] = {.lex_state = 71}, - [2062] = {.lex_state = 69}, + [2061] = {.lex_state = 69}, + [2062] = {.lex_state = 71}, [2063] = {.lex_state = 69}, [2064] = {.lex_state = 69}, [2065] = {.lex_state = 71}, [2066] = {.lex_state = 71}, - [2067] = {.lex_state = 71}, + [2067] = {.lex_state = 69}, [2068] = {.lex_state = 71}, - [2069] = {.lex_state = 71}, + [2069] = {.lex_state = 69}, [2070] = {.lex_state = 71}, [2071] = {.lex_state = 71}, [2072] = {.lex_state = 71}, [2073] = {.lex_state = 71}, - [2074] = {.lex_state = 71}, + [2074] = {.lex_state = 69}, [2075] = {.lex_state = 71}, [2076] = {.lex_state = 71}, - [2077] = {.lex_state = 69}, + [2077] = {.lex_state = 71}, [2078] = {.lex_state = 71}, - [2079] = {.lex_state = 71}, - [2080] = {.lex_state = 69}, + [2079] = {.lex_state = 69}, + [2080] = {.lex_state = 71}, [2081] = {.lex_state = 71}, [2082] = {.lex_state = 71}, [2083] = {.lex_state = 71}, - [2084] = {.lex_state = 71}, + [2084] = {.lex_state = 69}, [2085] = {.lex_state = 71}, - [2086] = {.lex_state = 69}, - [2087] = {.lex_state = 69}, + [2086] = {.lex_state = 71}, + [2087] = {.lex_state = 71}, [2088] = {.lex_state = 71}, - [2089] = {.lex_state = 69}, + [2089] = {.lex_state = 71}, [2090] = {.lex_state = 69}, - [2091] = {.lex_state = 71}, + [2091] = {.lex_state = 69}, [2092] = {.lex_state = 71}, [2093] = {.lex_state = 71}, [2094] = {.lex_state = 69}, - [2095] = {.lex_state = 71}, - [2096] = {.lex_state = 71}, + [2095] = {.lex_state = 69}, + [2096] = {.lex_state = 69}, [2097] = {.lex_state = 69}, - [2098] = {.lex_state = 71}, - [2099] = {.lex_state = 69}, + [2098] = {.lex_state = 69}, + [2099] = {.lex_state = 71}, [2100] = {.lex_state = 69}, [2101] = {.lex_state = 71}, [2102] = {.lex_state = 69}, - [2103] = {.lex_state = 71}, - [2104] = {.lex_state = 71}, + [2103] = {.lex_state = 69}, + [2104] = {.lex_state = 69}, [2105] = {.lex_state = 71}, [2106] = {.lex_state = 71}, [2107] = {.lex_state = 71}, [2108] = {.lex_state = 71}, - [2109] = {.lex_state = 69}, - [2110] = {.lex_state = 69}, + [2109] = {.lex_state = 71}, + [2110] = {.lex_state = 71}, [2111] = {.lex_state = 71}, [2112] = {.lex_state = 71}, [2113] = {.lex_state = 71}, [2114] = {.lex_state = 71}, [2115] = {.lex_state = 71}, - [2116] = {.lex_state = 49}, - [2117] = {.lex_state = 49}, - [2118] = {.lex_state = 49}, - [2119] = {.lex_state = 49}, - [2120] = {.lex_state = 49}, - [2121] = {.lex_state = 69}, - [2122] = {.lex_state = 15}, - [2123] = {.lex_state = 15}, - [2124] = {.lex_state = 15}, - [2125] = {.lex_state = 79}, - [2126] = {.lex_state = 15}, - [2127] = {.lex_state = 15}, - [2128] = {.lex_state = 22}, - [2129] = {.lex_state = 79}, - [2130] = {.lex_state = 15}, - [2131] = {.lex_state = 79}, - [2132] = {.lex_state = 79}, - [2133] = {.lex_state = 79}, - [2134] = {.lex_state = 79}, - [2135] = {.lex_state = 22}, - [2136] = {.lex_state = 79}, - [2137] = {.lex_state = 15}, - [2138] = {.lex_state = 79}, - [2139] = {.lex_state = 22}, - [2140] = {.lex_state = 79}, - [2141] = {.lex_state = 22}, - [2142] = {.lex_state = 15}, - [2143] = {.lex_state = 79}, - [2144] = {.lex_state = 15}, - [2145] = {.lex_state = 15}, - [2146] = {.lex_state = 15}, - [2147] = {.lex_state = 15}, - [2148] = {.lex_state = 15}, - [2149] = {.lex_state = 15}, - [2150] = {.lex_state = 15}, - [2151] = {.lex_state = 15}, - [2152] = {.lex_state = 15}, - [2153] = {.lex_state = 15}, - [2154] = {.lex_state = 15}, - [2155] = {.lex_state = 15}, - [2156] = {.lex_state = 15}, - [2157] = {.lex_state = 15}, - [2158] = {.lex_state = 15}, - [2159] = {.lex_state = 15}, - [2160] = {.lex_state = 15}, + [2116] = {.lex_state = 71}, + [2117] = {.lex_state = 71}, + [2118] = {.lex_state = 71}, + [2119] = {.lex_state = 71}, + [2120] = {.lex_state = 71}, + [2121] = {.lex_state = 71}, + [2122] = {.lex_state = 71}, + [2123] = {.lex_state = 69}, + [2124] = {.lex_state = 69}, + [2125] = {.lex_state = 69}, + [2126] = {.lex_state = 71}, + [2127] = {.lex_state = 71}, + [2128] = {.lex_state = 69}, + [2129] = {.lex_state = 71}, + [2130] = {.lex_state = 71}, + [2131] = {.lex_state = 71}, + [2132] = {.lex_state = 69}, + [2133] = {.lex_state = 69}, + [2134] = {.lex_state = 71}, + [2135] = {.lex_state = 71}, + [2136] = {.lex_state = 71}, + [2137] = {.lex_state = 71}, + [2138] = {.lex_state = 69}, + [2139] = {.lex_state = 71}, + [2140] = {.lex_state = 71}, + [2141] = {.lex_state = 69}, + [2142] = {.lex_state = 71}, + [2143] = {.lex_state = 71}, + [2144] = {.lex_state = 71}, + [2145] = {.lex_state = 71}, + [2146] = {.lex_state = 71}, + [2147] = {.lex_state = 71}, + [2148] = {.lex_state = 71}, + [2149] = {.lex_state = 69}, + [2150] = {.lex_state = 71}, + [2151] = {.lex_state = 71}, + [2152] = {.lex_state = 69}, + [2153] = {.lex_state = 69}, + [2154] = {.lex_state = 71}, + [2155] = {.lex_state = 71}, + [2156] = {.lex_state = 49}, + [2157] = {.lex_state = 49}, + [2158] = {.lex_state = 49}, + [2159] = {.lex_state = 49}, + [2160] = {.lex_state = 49}, [2161] = {.lex_state = 15}, - [2162] = {.lex_state = 15}, - [2163] = {.lex_state = 79}, + [2162] = {.lex_state = 69}, + [2163] = {.lex_state = 15}, [2164] = {.lex_state = 15}, [2165] = {.lex_state = 15}, - [2166] = {.lex_state = 15}, + [2166] = {.lex_state = 79}, [2167] = {.lex_state = 15}, - [2168] = {.lex_state = 15}, - [2169] = {.lex_state = 15}, + [2168] = {.lex_state = 22}, + [2169] = {.lex_state = 79}, [2170] = {.lex_state = 15}, - [2171] = {.lex_state = 15}, - [2172] = {.lex_state = 15}, - [2173] = {.lex_state = 15}, - [2174] = {.lex_state = 15}, - [2175] = {.lex_state = 15}, + [2171] = {.lex_state = 22}, + [2172] = {.lex_state = 22}, + [2173] = {.lex_state = 22}, + [2174] = {.lex_state = 79}, + [2175] = {.lex_state = 79}, [2176] = {.lex_state = 15}, - [2177] = {.lex_state = 15}, - [2178] = {.lex_state = 15}, - [2179] = {.lex_state = 15}, + [2177] = {.lex_state = 79}, + [2178] = {.lex_state = 79}, + [2179] = {.lex_state = 79}, [2180] = {.lex_state = 15}, - [2181] = {.lex_state = 15}, + [2181] = {.lex_state = 79}, [2182] = {.lex_state = 15}, [2183] = {.lex_state = 15}, - [2184] = {.lex_state = 15}, - [2185] = {.lex_state = 15}, + [2184] = {.lex_state = 79}, + [2185] = {.lex_state = 79}, [2186] = {.lex_state = 15}, - [2187] = {.lex_state = 15}, + [2187] = {.lex_state = 53}, [2188] = {.lex_state = 15}, [2189] = {.lex_state = 15}, [2190] = {.lex_state = 15}, [2191] = {.lex_state = 15}, [2192] = {.lex_state = 15}, - [2193] = {.lex_state = 53}, + [2193] = {.lex_state = 15}, [2194] = {.lex_state = 15}, [2195] = {.lex_state = 15}, [2196] = {.lex_state = 15}, [2197] = {.lex_state = 15}, - [2198] = {.lex_state = 79}, - [2199] = {.lex_state = 15}, + [2198] = {.lex_state = 15}, + [2199] = {.lex_state = 53}, [2200] = {.lex_state = 15}, - [2201] = {.lex_state = 15}, + [2201] = {.lex_state = 79}, [2202] = {.lex_state = 15}, [2203] = {.lex_state = 15}, [2204] = {.lex_state = 15}, @@ -16474,20 +16695,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2206] = {.lex_state = 15}, [2207] = {.lex_state = 15}, [2208] = {.lex_state = 15}, - [2209] = {.lex_state = 15}, - [2210] = {.lex_state = 53}, + [2209] = {.lex_state = 79}, + [2210] = {.lex_state = 15}, [2211] = {.lex_state = 15}, - [2212] = {.lex_state = 53}, - [2213] = {.lex_state = 53}, - [2214] = {.lex_state = 15}, + [2212] = {.lex_state = 15}, + [2213] = {.lex_state = 15}, + [2214] = {.lex_state = 79}, [2215] = {.lex_state = 15}, - [2216] = {.lex_state = 53}, + [2216] = {.lex_state = 15}, [2217] = {.lex_state = 15}, [2218] = {.lex_state = 15}, - [2219] = {.lex_state = 79}, + [2219] = {.lex_state = 15}, [2220] = {.lex_state = 15}, [2221] = {.lex_state = 15}, - [2222] = {.lex_state = 79}, + [2222] = {.lex_state = 15}, [2223] = {.lex_state = 15}, [2224] = {.lex_state = 15}, [2225] = {.lex_state = 15}, @@ -16522,76 +16743,76 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2254] = {.lex_state = 15}, [2255] = {.lex_state = 15}, [2256] = {.lex_state = 15}, - [2257] = {.lex_state = 31}, - [2258] = {.lex_state = 79}, + [2257] = {.lex_state = 15}, + [2258] = {.lex_state = 15}, [2259] = {.lex_state = 15}, [2260] = {.lex_state = 15}, [2261] = {.lex_state = 15}, - [2262] = {.lex_state = 63}, - [2263] = {.lex_state = 73}, + [2262] = {.lex_state = 79}, + [2263] = {.lex_state = 15}, [2264] = {.lex_state = 15}, [2265] = {.lex_state = 15}, - [2266] = {.lex_state = 79}, + [2266] = {.lex_state = 15}, [2267] = {.lex_state = 15}, - [2268] = {.lex_state = 73}, + [2268] = {.lex_state = 15}, [2269] = {.lex_state = 15}, - [2270] = {.lex_state = 73}, + [2270] = {.lex_state = 15}, [2271] = {.lex_state = 15}, - [2272] = {.lex_state = 63}, + [2272] = {.lex_state = 15}, [2273] = {.lex_state = 15}, [2274] = {.lex_state = 15}, - [2275] = {.lex_state = 15}, - [2276] = {.lex_state = 50}, - [2277] = {.lex_state = 50}, + [2275] = {.lex_state = 53}, + [2276] = {.lex_state = 15}, + [2277] = {.lex_state = 15}, [2278] = {.lex_state = 15}, - [2279] = {.lex_state = 73}, - [2280] = {.lex_state = 28}, + [2279] = {.lex_state = 15}, + [2280] = {.lex_state = 15}, [2281] = {.lex_state = 15}, - [2282] = {.lex_state = 28}, - [2283] = {.lex_state = 73}, - [2284] = {.lex_state = 73}, - [2285] = {.lex_state = 28}, + [2282] = {.lex_state = 15}, + [2283] = {.lex_state = 15}, + [2284] = {.lex_state = 15}, + [2285] = {.lex_state = 53}, [2286] = {.lex_state = 15}, - [2287] = {.lex_state = 28}, - [2288] = {.lex_state = 28}, - [2289] = {.lex_state = 73}, - [2290] = {.lex_state = 73}, - [2291] = {.lex_state = 73}, - [2292] = {.lex_state = 73}, - [2293] = {.lex_state = 73}, - [2294] = {.lex_state = 73}, - [2295] = {.lex_state = 73}, - [2296] = {.lex_state = 73}, - [2297] = {.lex_state = 73}, - [2298] = {.lex_state = 73}, - [2299] = {.lex_state = 73}, - [2300] = {.lex_state = 73}, - [2301] = {.lex_state = 28}, - [2302] = {.lex_state = 73}, + [2287] = {.lex_state = 15}, + [2288] = {.lex_state = 15}, + [2289] = {.lex_state = 15}, + [2290] = {.lex_state = 15}, + [2291] = {.lex_state = 15}, + [2292] = {.lex_state = 15}, + [2293] = {.lex_state = 31}, + [2294] = {.lex_state = 15}, + [2295] = {.lex_state = 15}, + [2296] = {.lex_state = 53}, + [2297] = {.lex_state = 15}, + [2298] = {.lex_state = 15}, + [2299] = {.lex_state = 15}, + [2300] = {.lex_state = 15}, + [2301] = {.lex_state = 73}, + [2302] = {.lex_state = 15}, [2303] = {.lex_state = 73}, - [2304] = {.lex_state = 73}, - [2305] = {.lex_state = 28}, - [2306] = {.lex_state = 28}, + [2304] = {.lex_state = 63}, + [2305] = {.lex_state = 15}, + [2306] = {.lex_state = 79}, [2307] = {.lex_state = 73}, - [2308] = {.lex_state = 28}, - [2309] = {.lex_state = 28}, - [2310] = {.lex_state = 28}, - [2311] = {.lex_state = 73}, - [2312] = {.lex_state = 73}, - [2313] = {.lex_state = 73}, - [2314] = {.lex_state = 73}, + [2308] = {.lex_state = 63}, + [2309] = {.lex_state = 15}, + [2310] = {.lex_state = 15}, + [2311] = {.lex_state = 79}, + [2312] = {.lex_state = 15}, + [2313] = {.lex_state = 15}, + [2314] = {.lex_state = 15}, [2315] = {.lex_state = 15}, - [2316] = {.lex_state = 73}, - [2317] = {.lex_state = 73}, - [2318] = {.lex_state = 15}, + [2316] = {.lex_state = 15}, + [2317] = {.lex_state = 50}, + [2318] = {.lex_state = 50}, [2319] = {.lex_state = 73}, [2320] = {.lex_state = 73}, - [2321] = {.lex_state = 73}, - [2322] = {.lex_state = 73}, - [2323] = {.lex_state = 73}, - [2324] = {.lex_state = 73}, + [2321] = {.lex_state = 15}, + [2322] = {.lex_state = 15}, + [2323] = {.lex_state = 28}, + [2324] = {.lex_state = 28}, [2325] = {.lex_state = 73}, - [2326] = {.lex_state = 73}, + [2326] = {.lex_state = 28}, [2327] = {.lex_state = 28}, [2328] = {.lex_state = 73}, [2329] = {.lex_state = 73}, @@ -16610,46 +16831,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2342] = {.lex_state = 73}, [2343] = {.lex_state = 73}, [2344] = {.lex_state = 28}, - [2345] = {.lex_state = 73}, - [2346] = {.lex_state = 73}, + [2345] = {.lex_state = 28}, + [2346] = {.lex_state = 28}, [2347] = {.lex_state = 28}, [2348] = {.lex_state = 73}, - [2349] = {.lex_state = 73}, + [2349] = {.lex_state = 28}, [2350] = {.lex_state = 73}, [2351] = {.lex_state = 73}, [2352] = {.lex_state = 73}, [2353] = {.lex_state = 73}, - [2354] = {.lex_state = 28}, + [2354] = {.lex_state = 73}, [2355] = {.lex_state = 73}, [2356] = {.lex_state = 73}, [2357] = {.lex_state = 73}, - [2358] = {.lex_state = 28}, + [2358] = {.lex_state = 73}, [2359] = {.lex_state = 73}, [2360] = {.lex_state = 73}, - [2361] = {.lex_state = 22}, + [2361] = {.lex_state = 28}, [2362] = {.lex_state = 73}, [2363] = {.lex_state = 73}, [2364] = {.lex_state = 73}, [2365] = {.lex_state = 73}, [2366] = {.lex_state = 73}, [2367] = {.lex_state = 73}, - [2368] = {.lex_state = 73}, - [2369] = {.lex_state = 73}, + [2368] = {.lex_state = 28}, + [2369] = {.lex_state = 28}, [2370] = {.lex_state = 73}, - [2371] = {.lex_state = 73}, - [2372] = {.lex_state = 73}, - [2373] = {.lex_state = 73}, + [2371] = {.lex_state = 28}, + [2372] = {.lex_state = 28}, + [2373] = {.lex_state = 28}, [2374] = {.lex_state = 73}, [2375] = {.lex_state = 73}, [2376] = {.lex_state = 73}, - [2377] = {.lex_state = 28}, + [2377] = {.lex_state = 73}, [2378] = {.lex_state = 73}, - [2379] = {.lex_state = 73}, + [2379] = {.lex_state = 28}, [2380] = {.lex_state = 73}, - [2381] = {.lex_state = 73}, + [2381] = {.lex_state = 15}, [2382] = {.lex_state = 73}, - [2383] = {.lex_state = 73}, - [2384] = {.lex_state = 22}, + [2383] = {.lex_state = 28}, + [2384] = {.lex_state = 73}, [2385] = {.lex_state = 73}, [2386] = {.lex_state = 73}, [2387] = {.lex_state = 73}, @@ -16660,7 +16881,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2392] = {.lex_state = 73}, [2393] = {.lex_state = 73}, [2394] = {.lex_state = 73}, - [2395] = {.lex_state = 28}, + [2395] = {.lex_state = 73}, [2396] = {.lex_state = 73}, [2397] = {.lex_state = 73}, [2398] = {.lex_state = 73}, @@ -16676,124 +16897,124 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2408] = {.lex_state = 73}, [2409] = {.lex_state = 73}, [2410] = {.lex_state = 73}, - [2411] = {.lex_state = 28}, + [2411] = {.lex_state = 73}, [2412] = {.lex_state = 73}, - [2413] = {.lex_state = 73}, + [2413] = {.lex_state = 15}, [2414] = {.lex_state = 73}, [2415] = {.lex_state = 73}, - [2416] = {.lex_state = 28}, + [2416] = {.lex_state = 73}, [2417] = {.lex_state = 73}, - [2418] = {.lex_state = 75}, - [2419] = {.lex_state = 28}, - [2420] = {.lex_state = 31}, - [2421] = {.lex_state = 33}, - [2422] = {.lex_state = 33}, - [2423] = {.lex_state = 75}, + [2418] = {.lex_state = 73}, + [2419] = {.lex_state = 73}, + [2420] = {.lex_state = 73}, + [2421] = {.lex_state = 73}, + [2422] = {.lex_state = 73}, + [2423] = {.lex_state = 73}, [2424] = {.lex_state = 28}, - [2425] = {.lex_state = 28}, - [2426] = {.lex_state = 75}, - [2427] = {.lex_state = 28}, - [2428] = {.lex_state = 33}, - [2429] = {.lex_state = 28}, - [2430] = {.lex_state = 75}, - [2431] = {.lex_state = 28}, - [2432] = {.lex_state = 75}, + [2425] = {.lex_state = 73}, + [2426] = {.lex_state = 73}, + [2427] = {.lex_state = 73}, + [2428] = {.lex_state = 73}, + [2429] = {.lex_state = 73}, + [2430] = {.lex_state = 73}, + [2431] = {.lex_state = 73}, + [2432] = {.lex_state = 73}, [2433] = {.lex_state = 73}, - [2434] = {.lex_state = 75}, - [2435] = {.lex_state = 75}, - [2436] = {.lex_state = 28}, - [2437] = {.lex_state = 28}, - [2438] = {.lex_state = 73}, + [2434] = {.lex_state = 73}, + [2435] = {.lex_state = 73}, + [2436] = {.lex_state = 73}, + [2437] = {.lex_state = 73}, + [2438] = {.lex_state = 22}, [2439] = {.lex_state = 73}, [2440] = {.lex_state = 73}, - [2441] = {.lex_state = 28}, - [2442] = {.lex_state = 75}, - [2443] = {.lex_state = 75}, - [2444] = {.lex_state = 75}, - [2445] = {.lex_state = 73}, + [2441] = {.lex_state = 73}, + [2442] = {.lex_state = 73}, + [2443] = {.lex_state = 22}, + [2444] = {.lex_state = 28}, + [2445] = {.lex_state = 28}, [2446] = {.lex_state = 73}, - [2447] = {.lex_state = 28}, + [2447] = {.lex_state = 73}, [2448] = {.lex_state = 73}, [2449] = {.lex_state = 73}, - [2450] = {.lex_state = 75}, + [2450] = {.lex_state = 73}, [2451] = {.lex_state = 73}, - [2452] = {.lex_state = 65}, - [2453] = {.lex_state = 28}, - [2454] = {.lex_state = 55}, - [2455] = {.lex_state = 55}, + [2452] = {.lex_state = 73}, + [2453] = {.lex_state = 73}, + [2454] = {.lex_state = 73}, + [2455] = {.lex_state = 73}, [2456] = {.lex_state = 73}, - [2457] = {.lex_state = 73}, + [2457] = {.lex_state = 75}, [2458] = {.lex_state = 28}, - [2459] = {.lex_state = 75}, + [2459] = {.lex_state = 28}, [2460] = {.lex_state = 73}, [2461] = {.lex_state = 28}, - [2462] = {.lex_state = 28}, - [2463] = {.lex_state = 28}, - [2464] = {.lex_state = 28}, - [2465] = {.lex_state = 28}, + [2462] = {.lex_state = 73}, + [2463] = {.lex_state = 73}, + [2464] = {.lex_state = 73}, + [2465] = {.lex_state = 73}, [2466] = {.lex_state = 28}, - [2467] = {.lex_state = 28}, - [2468] = {.lex_state = 28}, - [2469] = {.lex_state = 28}, + [2467] = {.lex_state = 73}, + [2468] = {.lex_state = 73}, + [2469] = {.lex_state = 75}, [2470] = {.lex_state = 28}, - [2471] = {.lex_state = 28}, - [2472] = {.lex_state = 28}, + [2471] = {.lex_state = 73}, + [2472] = {.lex_state = 33}, [2473] = {.lex_state = 28}, - [2474] = {.lex_state = 75}, - [2475] = {.lex_state = 28}, - [2476] = {.lex_state = 28}, - [2477] = {.lex_state = 28}, - [2478] = {.lex_state = 28}, - [2479] = {.lex_state = 28}, - [2480] = {.lex_state = 28}, - [2481] = {.lex_state = 28}, - [2482] = {.lex_state = 28}, - [2483] = {.lex_state = 28}, + [2474] = {.lex_state = 33}, + [2475] = {.lex_state = 33}, + [2476] = {.lex_state = 75}, + [2477] = {.lex_state = 75}, + [2478] = {.lex_state = 73}, + [2479] = {.lex_state = 75}, + [2480] = {.lex_state = 75}, + [2481] = {.lex_state = 75}, + [2482] = {.lex_state = 73}, + [2483] = {.lex_state = 75}, [2484] = {.lex_state = 28}, [2485] = {.lex_state = 28}, [2486] = {.lex_state = 28}, - [2487] = {.lex_state = 28}, - [2488] = {.lex_state = 73}, - [2489] = {.lex_state = 28}, - [2490] = {.lex_state = 28}, - [2491] = {.lex_state = 73}, + [2487] = {.lex_state = 75}, + [2488] = {.lex_state = 75}, + [2489] = {.lex_state = 75}, + [2490] = {.lex_state = 31}, + [2491] = {.lex_state = 28}, [2492] = {.lex_state = 28}, - [2493] = {.lex_state = 73}, - [2494] = {.lex_state = 73}, + [2493] = {.lex_state = 65}, + [2494] = {.lex_state = 28}, [2495] = {.lex_state = 28}, [2496] = {.lex_state = 28}, [2497] = {.lex_state = 28}, [2498] = {.lex_state = 28}, - [2499] = {.lex_state = 73}, + [2499] = {.lex_state = 28}, [2500] = {.lex_state = 28}, [2501] = {.lex_state = 28}, - [2502] = {.lex_state = 65}, + [2502] = {.lex_state = 28}, [2503] = {.lex_state = 28}, - [2504] = {.lex_state = 28}, + [2504] = {.lex_state = 73}, [2505] = {.lex_state = 28}, [2506] = {.lex_state = 28}, [2507] = {.lex_state = 28}, - [2508] = {.lex_state = 28}, - [2509] = {.lex_state = 28}, + [2508] = {.lex_state = 73}, + [2509] = {.lex_state = 73}, [2510] = {.lex_state = 73}, [2511] = {.lex_state = 28}, [2512] = {.lex_state = 28}, - [2513] = {.lex_state = 75}, + [2513] = {.lex_state = 28}, [2514] = {.lex_state = 28}, - [2515] = {.lex_state = 73}, - [2516] = {.lex_state = 75}, - [2517] = {.lex_state = 28}, + [2515] = {.lex_state = 28}, + [2516] = {.lex_state = 28}, + [2517] = {.lex_state = 73}, [2518] = {.lex_state = 28}, - [2519] = {.lex_state = 75}, - [2520] = {.lex_state = 28}, + [2519] = {.lex_state = 73}, + [2520] = {.lex_state = 73}, [2521] = {.lex_state = 28}, - [2522] = {.lex_state = 75}, + [2522] = {.lex_state = 28}, [2523] = {.lex_state = 28}, - [2524] = {.lex_state = 28}, + [2524] = {.lex_state = 73}, [2525] = {.lex_state = 28}, [2526] = {.lex_state = 28}, [2527] = {.lex_state = 28}, - [2528] = {.lex_state = 75}, + [2528] = {.lex_state = 28}, [2529] = {.lex_state = 75}, [2530] = {.lex_state = 28}, [2531] = {.lex_state = 28}, @@ -16811,19 +17032,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2543] = {.lex_state = 28}, [2544] = {.lex_state = 28}, [2545] = {.lex_state = 28}, - [2546] = {.lex_state = 73}, + [2546] = {.lex_state = 28}, [2547] = {.lex_state = 28}, [2548] = {.lex_state = 28}, [2549] = {.lex_state = 28}, - [2550] = {.lex_state = 28}, + [2550] = {.lex_state = 65}, [2551] = {.lex_state = 28}, [2552] = {.lex_state = 28}, [2553] = {.lex_state = 28}, [2554] = {.lex_state = 28}, [2555] = {.lex_state = 28}, - [2556] = {.lex_state = 73}, + [2556] = {.lex_state = 28}, [2557] = {.lex_state = 28}, - [2558] = {.lex_state = 73}, + [2558] = {.lex_state = 28}, [2559] = {.lex_state = 28}, [2560] = {.lex_state = 28}, [2561] = {.lex_state = 28}, @@ -16835,97 +17056,97 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2567] = {.lex_state = 28}, [2568] = {.lex_state = 28}, [2569] = {.lex_state = 28}, - [2570] = {.lex_state = 28}, - [2571] = {.lex_state = 75}, + [2570] = {.lex_state = 73}, + [2571] = {.lex_state = 28}, [2572] = {.lex_state = 28}, - [2573] = {.lex_state = 28}, - [2574] = {.lex_state = 28}, - [2575] = {.lex_state = 73}, + [2573] = {.lex_state = 75}, + [2574] = {.lex_state = 75}, + [2575] = {.lex_state = 75}, [2576] = {.lex_state = 28}, - [2577] = {.lex_state = 73}, + [2577] = {.lex_state = 28}, [2578] = {.lex_state = 28}, [2579] = {.lex_state = 73}, [2580] = {.lex_state = 73}, - [2581] = {.lex_state = 73}, - [2582] = {.lex_state = 73}, + [2581] = {.lex_state = 28}, + [2582] = {.lex_state = 75}, [2583] = {.lex_state = 73}, - [2584] = {.lex_state = 73}, - [2585] = {.lex_state = 73}, + [2584] = {.lex_state = 28}, + [2585] = {.lex_state = 75}, [2586] = {.lex_state = 73}, - [2587] = {.lex_state = 75}, - [2588] = {.lex_state = 73}, - [2589] = {.lex_state = 73}, - [2590] = {.lex_state = 75}, - [2591] = {.lex_state = 73}, - [2592] = {.lex_state = 73}, - [2593] = {.lex_state = 73}, + [2587] = {.lex_state = 28}, + [2588] = {.lex_state = 28}, + [2589] = {.lex_state = 28}, + [2590] = {.lex_state = 28}, + [2591] = {.lex_state = 75}, + [2592] = {.lex_state = 28}, + [2593] = {.lex_state = 28}, [2594] = {.lex_state = 73}, - [2595] = {.lex_state = 73}, + [2595] = {.lex_state = 28}, [2596] = {.lex_state = 28}, - [2597] = {.lex_state = 73}, - [2598] = {.lex_state = 73}, + [2597] = {.lex_state = 28}, + [2598] = {.lex_state = 28}, [2599] = {.lex_state = 73}, - [2600] = {.lex_state = 75}, - [2601] = {.lex_state = 73}, - [2602] = {.lex_state = 73}, - [2603] = {.lex_state = 73}, - [2604] = {.lex_state = 73}, - [2605] = {.lex_state = 75}, - [2606] = {.lex_state = 73}, - [2607] = {.lex_state = 73}, - [2608] = {.lex_state = 77}, - [2609] = {.lex_state = 73}, - [2610] = {.lex_state = 73}, - [2611] = {.lex_state = 75}, - [2612] = {.lex_state = 73}, - [2613] = {.lex_state = 73}, - [2614] = {.lex_state = 73}, - [2615] = {.lex_state = 73}, - [2616] = {.lex_state = 73}, - [2617] = {.lex_state = 75}, - [2618] = {.lex_state = 73}, - [2619] = {.lex_state = 75}, + [2600] = {.lex_state = 28}, + [2601] = {.lex_state = 28}, + [2602] = {.lex_state = 28}, + [2603] = {.lex_state = 28}, + [2604] = {.lex_state = 28}, + [2605] = {.lex_state = 28}, + [2606] = {.lex_state = 28}, + [2607] = {.lex_state = 28}, + [2608] = {.lex_state = 55}, + [2609] = {.lex_state = 75}, + [2610] = {.lex_state = 28}, + [2611] = {.lex_state = 28}, + [2612] = {.lex_state = 28}, + [2613] = {.lex_state = 28}, + [2614] = {.lex_state = 28}, + [2615] = {.lex_state = 28}, + [2616] = {.lex_state = 75}, + [2617] = {.lex_state = 28}, + [2618] = {.lex_state = 55}, + [2619] = {.lex_state = 73}, [2620] = {.lex_state = 75}, [2621] = {.lex_state = 73}, - [2622] = {.lex_state = 75}, - [2623] = {.lex_state = 75}, - [2624] = {.lex_state = 73}, - [2625] = {.lex_state = 83}, - [2626] = {.lex_state = 75}, - [2627] = {.lex_state = 75}, + [2622] = {.lex_state = 28}, + [2623] = {.lex_state = 73}, + [2624] = {.lex_state = 77}, + [2625] = {.lex_state = 73}, + [2626] = {.lex_state = 73}, + [2627] = {.lex_state = 73}, [2628] = {.lex_state = 73}, [2629] = {.lex_state = 73}, - [2630] = {.lex_state = 75}, - [2631] = {.lex_state = 75}, - [2632] = {.lex_state = 75}, + [2630] = {.lex_state = 73}, + [2631] = {.lex_state = 73}, + [2632] = {.lex_state = 73}, [2633] = {.lex_state = 75}, - [2634] = {.lex_state = 75}, - [2635] = {.lex_state = 73}, - [2636] = {.lex_state = 73}, - [2637] = {.lex_state = 73}, + [2634] = {.lex_state = 73}, + [2635] = {.lex_state = 75}, + [2636] = {.lex_state = 75}, + [2637] = {.lex_state = 75}, [2638] = {.lex_state = 73}, [2639] = {.lex_state = 73}, - [2640] = {.lex_state = 75}, + [2640] = {.lex_state = 73}, [2641] = {.lex_state = 73}, - [2642] = {.lex_state = 75}, - [2643] = {.lex_state = 77}, + [2642] = {.lex_state = 73}, + [2643] = {.lex_state = 73}, [2644] = {.lex_state = 75}, - [2645] = {.lex_state = 83}, + [2645] = {.lex_state = 73}, [2646] = {.lex_state = 75}, [2647] = {.lex_state = 73}, - [2648] = {.lex_state = 75}, - [2649] = {.lex_state = 75}, - [2650] = {.lex_state = 75}, - [2651] = {.lex_state = 75}, - [2652] = {.lex_state = 75}, - [2653] = {.lex_state = 75}, - [2654] = {.lex_state = 75}, - [2655] = {.lex_state = 75}, - [2656] = {.lex_state = 75}, - [2657] = {.lex_state = 75}, + [2648] = {.lex_state = 73}, + [2649] = {.lex_state = 73}, + [2650] = {.lex_state = 73}, + [2651] = {.lex_state = 73}, + [2652] = {.lex_state = 73}, + [2653] = {.lex_state = 73}, + [2654] = {.lex_state = 73}, + [2655] = {.lex_state = 73}, + [2656] = {.lex_state = 73}, + [2657] = {.lex_state = 73}, [2658] = {.lex_state = 73}, - [2659] = {.lex_state = 75}, - [2660] = {.lex_state = 75}, + [2659] = {.lex_state = 73}, + [2660] = {.lex_state = 73}, [2661] = {.lex_state = 75}, [2662] = {.lex_state = 75}, [2663] = {.lex_state = 75}, @@ -16935,77 +17156,77 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2667] = {.lex_state = 75}, [2668] = {.lex_state = 75}, [2669] = {.lex_state = 75}, - [2670] = {.lex_state = 83}, + [2670] = {.lex_state = 75}, [2671] = {.lex_state = 75}, - [2672] = {.lex_state = 73}, + [2672] = {.lex_state = 75}, [2673] = {.lex_state = 75}, - [2674] = {.lex_state = 75}, + [2674] = {.lex_state = 73}, [2675] = {.lex_state = 75}, - [2676] = {.lex_state = 73}, + [2676] = {.lex_state = 75}, [2677] = {.lex_state = 75}, [2678] = {.lex_state = 75}, [2679] = {.lex_state = 75}, [2680] = {.lex_state = 75}, [2681] = {.lex_state = 75}, [2682] = {.lex_state = 75}, - [2683] = {.lex_state = 75}, - [2684] = {.lex_state = 67}, + [2683] = {.lex_state = 67}, + [2684] = {.lex_state = 73}, [2685] = {.lex_state = 75}, [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}, + [2690] = {.lex_state = 75}, [2691] = {.lex_state = 75}, [2692] = {.lex_state = 75}, [2693] = {.lex_state = 75}, [2694] = {.lex_state = 75}, - [2695] = {.lex_state = 73}, - [2696] = {.lex_state = 73}, - [2697] = {.lex_state = 57}, + [2695] = {.lex_state = 75}, + [2696] = {.lex_state = 75}, + [2697] = {.lex_state = 75}, [2698] = {.lex_state = 75}, - [2699] = {.lex_state = 73}, - [2700] = {.lex_state = 75}, + [2699] = {.lex_state = 75}, + [2700] = {.lex_state = 73}, [2701] = {.lex_state = 83}, - [2702] = {.lex_state = 83}, + [2702] = {.lex_state = 73}, [2703] = {.lex_state = 75}, - [2704] = {.lex_state = 73}, - [2705] = {.lex_state = 57}, + [2704] = {.lex_state = 75}, + [2705] = {.lex_state = 75}, [2706] = {.lex_state = 75}, [2707] = {.lex_state = 75}, [2708] = {.lex_state = 75}, [2709] = {.lex_state = 75}, - [2710] = {.lex_state = 75}, - [2711] = {.lex_state = 73}, + [2710] = {.lex_state = 73}, + [2711] = {.lex_state = 75}, [2712] = {.lex_state = 75}, [2713] = {.lex_state = 75}, - [2714] = {.lex_state = 73}, - [2715] = {.lex_state = 75}, + [2714] = {.lex_state = 83}, + [2715] = {.lex_state = 73}, [2716] = {.lex_state = 75}, - [2717] = {.lex_state = 75}, - [2718] = {.lex_state = 75}, + [2717] = {.lex_state = 83}, + [2718] = {.lex_state = 73}, [2719] = {.lex_state = 75}, [2720] = {.lex_state = 73}, - [2721] = {.lex_state = 75}, + [2721] = {.lex_state = 83}, [2722] = {.lex_state = 73}, [2723] = {.lex_state = 75}, [2724] = {.lex_state = 83}, [2725] = {.lex_state = 75}, - [2726] = {.lex_state = 83}, - [2727] = {.lex_state = 77}, - [2728] = {.lex_state = 75}, - [2729] = {.lex_state = 75}, - [2730] = {.lex_state = 75}, + [2726] = {.lex_state = 75}, + [2727] = {.lex_state = 73}, + [2728] = {.lex_state = 73}, + [2729] = {.lex_state = 73}, + [2730] = {.lex_state = 73}, [2731] = {.lex_state = 75}, - [2732] = {.lex_state = 75}, - [2733] = {.lex_state = 75}, - [2734] = {.lex_state = 75}, - [2735] = {.lex_state = 75}, - [2736] = {.lex_state = 75}, - [2737] = {.lex_state = 75}, - [2738] = {.lex_state = 75}, - [2739] = {.lex_state = 75}, - [2740] = {.lex_state = 75}, + [2732] = {.lex_state = 83}, + [2733] = {.lex_state = 73}, + [2734] = {.lex_state = 83}, + [2735] = {.lex_state = 83}, + [2736] = {.lex_state = 73}, + [2737] = {.lex_state = 83}, + [2738] = {.lex_state = 73}, + [2739] = {.lex_state = 73}, + [2740] = {.lex_state = 73}, [2741] = {.lex_state = 75}, [2742] = {.lex_state = 75}, [2743] = {.lex_state = 73}, @@ -17014,182 +17235,182 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2746] = {.lex_state = 73}, [2747] = {.lex_state = 67}, [2748] = {.lex_state = 75}, - [2749] = {.lex_state = 83}, + [2749] = {.lex_state = 73}, [2750] = {.lex_state = 83}, - [2751] = {.lex_state = 75}, - [2752] = {.lex_state = 73}, - [2753] = {.lex_state = 77}, - [2754] = {.lex_state = 75}, - [2755] = {.lex_state = 75}, - [2756] = {.lex_state = 73}, - [2757] = {.lex_state = 73}, - [2758] = {.lex_state = 75}, + [2751] = {.lex_state = 83}, + [2752] = {.lex_state = 75}, + [2753] = {.lex_state = 75}, + [2754] = {.lex_state = 73}, + [2755] = {.lex_state = 73}, + [2756] = {.lex_state = 75}, + [2757] = {.lex_state = 75}, + [2758] = {.lex_state = 73}, [2759] = {.lex_state = 75}, [2760] = {.lex_state = 73}, [2761] = {.lex_state = 73}, - [2762] = {.lex_state = 73}, - [2763] = {.lex_state = 75}, - [2764] = {.lex_state = 75}, - [2765] = {.lex_state = 73}, - [2766] = {.lex_state = 73}, + [2762] = {.lex_state = 75}, + [2763] = {.lex_state = 73}, + [2764] = {.lex_state = 73}, + [2765] = {.lex_state = 75}, + [2766] = {.lex_state = 75}, [2767] = {.lex_state = 75}, - [2768] = {.lex_state = 73}, - [2769] = {.lex_state = 83}, + [2768] = {.lex_state = 75}, + [2769] = {.lex_state = 75}, [2770] = {.lex_state = 73}, - [2771] = {.lex_state = 75}, - [2772] = {.lex_state = 73}, - [2773] = {.lex_state = 73}, - [2774] = {.lex_state = 73}, - [2775] = {.lex_state = 73}, - [2776] = {.lex_state = 73}, - [2777] = {.lex_state = 73}, - [2778] = {.lex_state = 73}, + [2771] = {.lex_state = 73}, + [2772] = {.lex_state = 75}, + [2773] = {.lex_state = 75}, + [2774] = {.lex_state = 75}, + [2775] = {.lex_state = 75}, + [2776] = {.lex_state = 75}, + [2777] = {.lex_state = 75}, + [2778] = {.lex_state = 75}, [2779] = {.lex_state = 73}, [2780] = {.lex_state = 75}, - [2781] = {.lex_state = 83}, + [2781] = {.lex_state = 75}, [2782] = {.lex_state = 73}, [2783] = {.lex_state = 73}, [2784] = {.lex_state = 75}, - [2785] = {.lex_state = 75}, - [2786] = {.lex_state = 83}, - [2787] = {.lex_state = 73}, - [2788] = {.lex_state = 83}, - [2789] = {.lex_state = 73}, - [2790] = {.lex_state = 73}, - [2791] = {.lex_state = 73}, + [2785] = {.lex_state = 73}, + [2786] = {.lex_state = 75}, + [2787] = {.lex_state = 75}, + [2788] = {.lex_state = 75}, + [2789] = {.lex_state = 75}, + [2790] = {.lex_state = 77}, + [2791] = {.lex_state = 75}, [2792] = {.lex_state = 75}, - [2793] = {.lex_state = 73}, - [2794] = {.lex_state = 73}, + [2793] = {.lex_state = 75}, + [2794] = {.lex_state = 75}, [2795] = {.lex_state = 73}, - [2796] = {.lex_state = 73}, - [2797] = {.lex_state = 83}, - [2798] = {.lex_state = 83}, - [2799] = {.lex_state = 73}, + [2796] = {.lex_state = 75}, + [2797] = {.lex_state = 75}, + [2798] = {.lex_state = 73}, + [2799] = {.lex_state = 75}, [2800] = {.lex_state = 75}, - [2801] = {.lex_state = 73}, + [2801] = {.lex_state = 77}, [2802] = {.lex_state = 73}, - [2803] = {.lex_state = 83}, + [2803] = {.lex_state = 75}, [2804] = {.lex_state = 73}, [2805] = {.lex_state = 73}, - [2806] = {.lex_state = 77}, + [2806] = {.lex_state = 75}, [2807] = {.lex_state = 73}, [2808] = {.lex_state = 73}, - [2809] = {.lex_state = 81}, + [2809] = {.lex_state = 83}, [2810] = {.lex_state = 73}, - [2811] = {.lex_state = 73}, + [2811] = {.lex_state = 75}, [2812] = {.lex_state = 73}, - [2813] = {.lex_state = 73}, - [2814] = {.lex_state = 73}, - [2815] = {.lex_state = 73}, + [2813] = {.lex_state = 83}, + [2814] = {.lex_state = 75}, + [2815] = {.lex_state = 75}, [2816] = {.lex_state = 73}, - [2817] = {.lex_state = 81}, + [2817] = {.lex_state = 83}, [2818] = {.lex_state = 73}, - [2819] = {.lex_state = 81}, - [2820] = {.lex_state = 73}, - [2821] = {.lex_state = 73}, - [2822] = {.lex_state = 73}, - [2823] = {.lex_state = 81}, - [2824] = {.lex_state = 73}, + [2819] = {.lex_state = 77}, + [2820] = {.lex_state = 83}, + [2821] = {.lex_state = 75}, + [2822] = {.lex_state = 83}, + [2823] = {.lex_state = 73}, + [2824] = {.lex_state = 75}, [2825] = {.lex_state = 73}, - [2826] = {.lex_state = 77}, - [2827] = {.lex_state = 73}, - [2828] = {.lex_state = 73}, + [2826] = {.lex_state = 57}, + [2827] = {.lex_state = 57}, + [2828] = {.lex_state = 83}, [2829] = {.lex_state = 73}, [2830] = {.lex_state = 73}, [2831] = {.lex_state = 73}, [2832] = {.lex_state = 73}, - [2833] = {.lex_state = 77}, - [2834] = {.lex_state = 77}, - [2835] = {.lex_state = 77}, - [2836] = {.lex_state = 77}, - [2837] = {.lex_state = 33}, + [2833] = {.lex_state = 73}, + [2834] = {.lex_state = 73}, + [2835] = {.lex_state = 75}, + [2836] = {.lex_state = 75}, + [2837] = {.lex_state = 73}, [2838] = {.lex_state = 73}, - [2839] = {.lex_state = 73}, + [2839] = {.lex_state = 75}, [2840] = {.lex_state = 73}, [2841] = {.lex_state = 73}, - [2842] = {.lex_state = 77}, - [2843] = {.lex_state = 73}, - [2844] = {.lex_state = 77}, - [2845] = {.lex_state = 77}, - [2846] = {.lex_state = 73}, + [2842] = {.lex_state = 73}, + [2843] = {.lex_state = 75}, + [2844] = {.lex_state = 75}, + [2845] = {.lex_state = 73}, + [2846] = {.lex_state = 75}, [2847] = {.lex_state = 77}, - [2848] = {.lex_state = 83}, - [2849] = {.lex_state = 77}, - [2850] = {.lex_state = 77}, + [2848] = {.lex_state = 73}, + [2849] = {.lex_state = 73}, + [2850] = {.lex_state = 73}, [2851] = {.lex_state = 73}, - [2852] = {.lex_state = 77}, + [2852] = {.lex_state = 73}, [2853] = {.lex_state = 73}, - [2854] = {.lex_state = 77}, - [2855] = {.lex_state = 77}, - [2856] = {.lex_state = 33}, - [2857] = {.lex_state = 77}, - [2858] = {.lex_state = 77}, - [2859] = {.lex_state = 83}, - [2860] = {.lex_state = 77}, - [2861] = {.lex_state = 73}, - [2862] = {.lex_state = 33}, - [2863] = {.lex_state = 77}, + [2854] = {.lex_state = 73}, + [2855] = {.lex_state = 73}, + [2856] = {.lex_state = 73}, + [2857] = {.lex_state = 73}, + [2858] = {.lex_state = 73}, + [2859] = {.lex_state = 81}, + [2860] = {.lex_state = 73}, + [2861] = {.lex_state = 77}, + [2862] = {.lex_state = 73}, + [2863] = {.lex_state = 81}, [2864] = {.lex_state = 73}, - [2865] = {.lex_state = 77}, - [2866] = {.lex_state = 73}, - [2867] = {.lex_state = 77}, - [2868] = {.lex_state = 77}, - [2869] = {.lex_state = 77}, - [2870] = {.lex_state = 83}, + [2865] = {.lex_state = 73}, + [2866] = {.lex_state = 81}, + [2867] = {.lex_state = 81}, + [2868] = {.lex_state = 73}, + [2869] = {.lex_state = 73}, + [2870] = {.lex_state = 73}, [2871] = {.lex_state = 73}, - [2872] = {.lex_state = 77}, - [2873] = {.lex_state = 77}, + [2872] = {.lex_state = 73}, + [2873] = {.lex_state = 73}, [2874] = {.lex_state = 77}, - [2875] = {.lex_state = 77}, - [2876] = {.lex_state = 77}, + [2875] = {.lex_state = 73}, + [2876] = {.lex_state = 73}, [2877] = {.lex_state = 77}, [2878] = {.lex_state = 83}, - [2879] = {.lex_state = 73}, - [2880] = {.lex_state = 73}, + [2879] = {.lex_state = 77}, + [2880] = {.lex_state = 77}, [2881] = {.lex_state = 77}, - [2882] = {.lex_state = 77}, - [2883] = {.lex_state = 73}, - [2884] = {.lex_state = 73}, - [2885] = {.lex_state = 73}, - [2886] = {.lex_state = 73}, - [2887] = {.lex_state = 73}, - [2888] = {.lex_state = 73}, - [2889] = {.lex_state = 73}, + [2882] = {.lex_state = 73}, + [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 = 73}, - [2891] = {.lex_state = 73}, - [2892] = {.lex_state = 73}, - [2893] = {.lex_state = 73}, - [2894] = {.lex_state = 73}, - [2895] = {.lex_state = 73}, - [2896] = {.lex_state = 73}, - [2897] = {.lex_state = 73}, - [2898] = {.lex_state = 73}, - [2899] = {.lex_state = 73}, - [2900] = {.lex_state = 73}, - [2901] = {.lex_state = 73}, - [2902] = {.lex_state = 73}, + [2891] = {.lex_state = 83}, + [2892] = {.lex_state = 77}, + [2893] = {.lex_state = 77}, + [2894] = {.lex_state = 77}, + [2895] = {.lex_state = 77}, + [2896] = {.lex_state = 77}, + [2897] = {.lex_state = 77}, + [2898] = {.lex_state = 33}, + [2899] = {.lex_state = 77}, + [2900] = {.lex_state = 77}, + [2901] = {.lex_state = 77}, + [2902] = {.lex_state = 83}, [2903] = {.lex_state = 73}, - [2904] = {.lex_state = 73}, + [2904] = {.lex_state = 77}, [2905] = {.lex_state = 73}, [2906] = {.lex_state = 73}, [2907] = {.lex_state = 73}, [2908] = {.lex_state = 73}, - [2909] = {.lex_state = 73}, + [2909] = {.lex_state = 77}, [2910] = {.lex_state = 73}, - [2911] = {.lex_state = 73}, - [2912] = {.lex_state = 73}, - [2913] = {.lex_state = 73}, - [2914] = {.lex_state = 73}, + [2911] = {.lex_state = 77}, + [2912] = {.lex_state = 77}, + [2913] = {.lex_state = 77}, + [2914] = {.lex_state = 77}, [2915] = {.lex_state = 73}, [2916] = {.lex_state = 73}, [2917] = {.lex_state = 73}, [2918] = {.lex_state = 73}, - [2919] = {.lex_state = 73}, - [2920] = {.lex_state = 73}, - [2921] = {.lex_state = 73}, + [2919] = {.lex_state = 77}, + [2920] = {.lex_state = 77}, + [2921] = {.lex_state = 33}, [2922] = {.lex_state = 73}, - [2923] = {.lex_state = 73}, - [2924] = {.lex_state = 73}, + [2923] = {.lex_state = 33}, + [2924] = {.lex_state = 83}, [2925] = {.lex_state = 73}, [2926] = {.lex_state = 73}, [2927] = {.lex_state = 73}, @@ -17225,50 +17446,50 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2957] = {.lex_state = 73}, [2958] = {.lex_state = 73}, [2959] = {.lex_state = 73}, - [2960] = {.lex_state = 83}, - [2961] = {.lex_state = 83}, - [2962] = {.lex_state = 83}, - [2963] = {.lex_state = 83}, - [2964] = {.lex_state = 83}, - [2965] = {.lex_state = 83}, - [2966] = {.lex_state = 83}, - [2967] = {.lex_state = 83}, - [2968] = {.lex_state = 83}, - [2969] = {.lex_state = 83}, - [2970] = {.lex_state = 83}, - [2971] = {.lex_state = 83}, - [2972] = {.lex_state = 83}, - [2973] = {.lex_state = 83}, - [2974] = {.lex_state = 83}, - [2975] = {.lex_state = 83}, - [2976] = {.lex_state = 83}, - [2977] = {.lex_state = 83}, - [2978] = {.lex_state = 83}, - [2979] = {.lex_state = 83}, - [2980] = {.lex_state = 83}, - [2981] = {.lex_state = 83}, - [2982] = {.lex_state = 83}, - [2983] = {.lex_state = 83}, - [2984] = {.lex_state = 83}, - [2985] = {.lex_state = 83}, - [2986] = {.lex_state = 83}, - [2987] = {.lex_state = 83}, - [2988] = {.lex_state = 83}, - [2989] = {.lex_state = 83}, - [2990] = {.lex_state = 83}, - [2991] = {.lex_state = 83}, - [2992] = {.lex_state = 83}, - [2993] = {.lex_state = 83}, - [2994] = {.lex_state = 83}, - [2995] = {.lex_state = 83}, - [2996] = {.lex_state = 83}, - [2997] = {.lex_state = 83}, - [2998] = {.lex_state = 83}, - [2999] = {.lex_state = 83}, - [3000] = {.lex_state = 83}, - [3001] = {.lex_state = 83}, - [3002] = {.lex_state = 83}, - [3003] = {.lex_state = 83}, + [2960] = {.lex_state = 73}, + [2961] = {.lex_state = 73}, + [2962] = {.lex_state = 73}, + [2963] = {.lex_state = 73}, + [2964] = {.lex_state = 73}, + [2965] = {.lex_state = 73}, + [2966] = {.lex_state = 73}, + [2967] = {.lex_state = 73}, + [2968] = {.lex_state = 73}, + [2969] = {.lex_state = 73}, + [2970] = {.lex_state = 73}, + [2971] = {.lex_state = 73}, + [2972] = {.lex_state = 73}, + [2973] = {.lex_state = 73}, + [2974] = {.lex_state = 73}, + [2975] = {.lex_state = 73}, + [2976] = {.lex_state = 73}, + [2977] = {.lex_state = 73}, + [2978] = {.lex_state = 73}, + [2979] = {.lex_state = 73}, + [2980] = {.lex_state = 73}, + [2981] = {.lex_state = 73}, + [2982] = {.lex_state = 73}, + [2983] = {.lex_state = 73}, + [2984] = {.lex_state = 73}, + [2985] = {.lex_state = 73}, + [2986] = {.lex_state = 73}, + [2987] = {.lex_state = 73}, + [2988] = {.lex_state = 73}, + [2989] = {.lex_state = 73}, + [2990] = {.lex_state = 73}, + [2991] = {.lex_state = 73}, + [2992] = {.lex_state = 73}, + [2993] = {.lex_state = 73}, + [2994] = {.lex_state = 73}, + [2995] = {.lex_state = 73}, + [2996] = {.lex_state = 73}, + [2997] = {.lex_state = 73}, + [2998] = {.lex_state = 73}, + [2999] = {.lex_state = 73}, + [3000] = {.lex_state = 73}, + [3001] = {.lex_state = 73}, + [3002] = {.lex_state = 73}, + [3003] = {.lex_state = 73}, [3004] = {.lex_state = 83}, [3005] = {.lex_state = 83}, [3006] = {.lex_state = 83}, @@ -17507,767 +17728,767 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3239] = {.lex_state = 83}, [3240] = {.lex_state = 83}, [3241] = {.lex_state = 83}, - [3242] = {.lex_state = 87}, + [3242] = {.lex_state = 83}, [3243] = {.lex_state = 83}, [3244] = {.lex_state = 83}, [3245] = {.lex_state = 83}, [3246] = {.lex_state = 83}, - [3247] = {.lex_state = 87}, - [3248] = {.lex_state = 86}, - [3249] = {.lex_state = 33}, - [3250] = {.lex_state = 33}, - [3251] = {.lex_state = 33}, - [3252] = {.lex_state = 33}, - [3253] = {.lex_state = 33}, - [3254] = {.lex_state = 185}, - [3255] = {.lex_state = 85}, - [3256] = {.lex_state = 85}, - [3257] = {.lex_state = 87}, + [3247] = {.lex_state = 83}, + [3248] = {.lex_state = 83}, + [3249] = {.lex_state = 83}, + [3250] = {.lex_state = 83}, + [3251] = {.lex_state = 83}, + [3252] = {.lex_state = 83}, + [3253] = {.lex_state = 83}, + [3254] = {.lex_state = 83}, + [3255] = {.lex_state = 83}, + [3256] = {.lex_state = 83}, + [3257] = {.lex_state = 83}, [3258] = {.lex_state = 83}, [3259] = {.lex_state = 83}, [3260] = {.lex_state = 83}, [3261] = {.lex_state = 83}, [3262] = {.lex_state = 83}, - [3263] = {.lex_state = 85}, - [3264] = {.lex_state = 34}, - [3265] = {.lex_state = 41}, + [3263] = {.lex_state = 83}, + [3264] = {.lex_state = 83}, + [3265] = {.lex_state = 83}, [3266] = {.lex_state = 83}, - [3267] = {.lex_state = 41}, - [3268] = {.lex_state = 41}, - [3269] = {.lex_state = 34}, + [3267] = {.lex_state = 83}, + [3268] = {.lex_state = 83}, + [3269] = {.lex_state = 83}, [3270] = {.lex_state = 83}, - [3271] = {.lex_state = 41}, - [3272] = {.lex_state = 41}, - [3273] = {.lex_state = 41}, - [3274] = {.lex_state = 41}, - [3275] = {.lex_state = 41}, - [3276] = {.lex_state = 41}, - [3277] = {.lex_state = 41}, - [3278] = {.lex_state = 41}, - [3279] = {.lex_state = 41}, - [3280] = {.lex_state = 86}, - [3281] = {.lex_state = 86}, + [3271] = {.lex_state = 83}, + [3272] = {.lex_state = 83}, + [3273] = {.lex_state = 83}, + [3274] = {.lex_state = 83}, + [3275] = {.lex_state = 83}, + [3276] = {.lex_state = 83}, + [3277] = {.lex_state = 83}, + [3278] = {.lex_state = 83}, + [3279] = {.lex_state = 83}, + [3280] = {.lex_state = 83}, + [3281] = {.lex_state = 83}, [3282] = {.lex_state = 83}, [3283] = {.lex_state = 83}, - [3284] = {.lex_state = 86}, - [3285] = {.lex_state = 85}, - [3286] = {.lex_state = 86}, - [3287] = {.lex_state = 86}, - [3288] = {.lex_state = 35}, - [3289] = {.lex_state = 86}, - [3290] = {.lex_state = 86}, - [3291] = {.lex_state = 85}, - [3292] = {.lex_state = 34}, - [3293] = {.lex_state = 86}, - [3294] = {.lex_state = 41}, - [3295] = {.lex_state = 35}, - [3296] = {.lex_state = 85}, - [3297] = {.lex_state = 86}, - [3298] = {.lex_state = 86}, - [3299] = {.lex_state = 35}, - [3300] = {.lex_state = 86}, - [3301] = {.lex_state = 86}, - [3302] = {.lex_state = 35}, - [3303] = {.lex_state = 86}, - [3304] = {.lex_state = 86}, - [3305] = {.lex_state = 41}, + [3284] = {.lex_state = 83}, + [3285] = {.lex_state = 83}, + [3286] = {.lex_state = 83}, + [3287] = {.lex_state = 83}, + [3288] = {.lex_state = 83}, + [3289] = {.lex_state = 83}, + [3290] = {.lex_state = 83}, + [3291] = {.lex_state = 83}, + [3292] = {.lex_state = 83}, + [3293] = {.lex_state = 83}, + [3294] = {.lex_state = 83}, + [3295] = {.lex_state = 83}, + [3296] = {.lex_state = 87}, + [3297] = {.lex_state = 83}, + [3298] = {.lex_state = 83}, + [3299] = {.lex_state = 83}, + [3300] = {.lex_state = 83}, + [3301] = {.lex_state = 83}, + [3302] = {.lex_state = 87}, + [3303] = {.lex_state = 83}, + [3304] = {.lex_state = 83}, + [3305] = {.lex_state = 83}, [3306] = {.lex_state = 86}, - [3307] = {.lex_state = 86}, - [3308] = {.lex_state = 86}, - [3309] = {.lex_state = 86}, - [3310] = {.lex_state = 85}, - [3311] = {.lex_state = 86}, - [3312] = {.lex_state = 86}, - [3313] = {.lex_state = 41}, - [3314] = {.lex_state = 85}, - [3315] = {.lex_state = 86}, - [3316] = {.lex_state = 86}, - [3317] = {.lex_state = 86}, - [3318] = {.lex_state = 86}, - [3319] = {.lex_state = 41}, - [3320] = {.lex_state = 86}, - [3321] = {.lex_state = 86}, - [3322] = {.lex_state = 86}, - [3323] = {.lex_state = 86}, - [3324] = {.lex_state = 85}, - [3325] = {.lex_state = 85}, - [3326] = {.lex_state = 86}, - [3327] = {.lex_state = 86}, - [3328] = {.lex_state = 86}, - [3329] = {.lex_state = 86}, - [3330] = {.lex_state = 85}, - [3331] = {.lex_state = 34}, - [3332] = {.lex_state = 85}, - [3333] = {.lex_state = 34}, - [3334] = {.lex_state = 34}, - [3335] = {.lex_state = 85}, - [3336] = {.lex_state = 85}, - [3337] = {.lex_state = 34}, - [3338] = {.lex_state = 85}, - [3339] = {.lex_state = 34}, - [3340] = {.lex_state = 34}, - [3341] = {.lex_state = 34}, - [3342] = {.lex_state = 34}, - [3343] = {.lex_state = 34}, - [3344] = {.lex_state = 35}, - [3345] = {.lex_state = 34}, - [3346] = {.lex_state = 34}, - [3347] = {.lex_state = 34}, + [3307] = {.lex_state = 33}, + [3308] = {.lex_state = 33}, + [3309] = {.lex_state = 33}, + [3310] = {.lex_state = 33}, + [3311] = {.lex_state = 33}, + [3312] = {.lex_state = 185}, + [3313] = {.lex_state = 85}, + [3314] = {.lex_state = 87}, + [3315] = {.lex_state = 83}, + [3316] = {.lex_state = 83}, + [3317] = {.lex_state = 85}, + [3318] = {.lex_state = 83}, + [3319] = {.lex_state = 83}, + [3320] = {.lex_state = 85}, + [3321] = {.lex_state = 83}, + [3322] = {.lex_state = 41}, + [3323] = {.lex_state = 83}, + [3324] = {.lex_state = 34}, + [3325] = {.lex_state = 41}, + [3326] = {.lex_state = 41}, + [3327] = {.lex_state = 34}, + [3328] = {.lex_state = 41}, + [3329] = {.lex_state = 83}, + [3330] = {.lex_state = 41}, + [3331] = {.lex_state = 41}, + [3332] = {.lex_state = 41}, + [3333] = {.lex_state = 41}, + [3334] = {.lex_state = 41}, + [3335] = {.lex_state = 41}, + [3336] = {.lex_state = 41}, + [3337] = {.lex_state = 86}, + [3338] = {.lex_state = 83}, + [3339] = {.lex_state = 83}, + [3340] = {.lex_state = 86}, + [3341] = {.lex_state = 41}, + [3342] = {.lex_state = 86}, + [3343] = {.lex_state = 86}, + [3344] = {.lex_state = 86}, + [3345] = {.lex_state = 86}, + [3346] = {.lex_state = 86}, + [3347] = {.lex_state = 86}, [3348] = {.lex_state = 85}, - [3349] = {.lex_state = 34}, - [3350] = {.lex_state = 34}, - [3351] = {.lex_state = 34}, - [3352] = {.lex_state = 34}, - [3353] = {.lex_state = 34}, - [3354] = {.lex_state = 34}, - [3355] = {.lex_state = 34}, - [3356] = {.lex_state = 34}, - [3357] = {.lex_state = 34}, - [3358] = {.lex_state = 34}, - [3359] = {.lex_state = 34}, - [3360] = {.lex_state = 34}, - [3361] = {.lex_state = 34}, - [3362] = {.lex_state = 34}, - [3363] = {.lex_state = 34}, - [3364] = {.lex_state = 35}, - [3365] = {.lex_state = 86}, - [3366] = {.lex_state = 86}, - [3367] = {.lex_state = 81}, - [3368] = {.lex_state = 81}, - [3369] = {.lex_state = 34}, - [3370] = {.lex_state = 81}, - [3371] = {.lex_state = 81}, - [3372] = {.lex_state = 81}, - [3373] = {.lex_state = 81}, - [3374] = {.lex_state = 81}, - [3375] = {.lex_state = 81}, - [3376] = {.lex_state = 81}, - [3377] = {.lex_state = 34}, - [3378] = {.lex_state = 34}, - [3379] = {.lex_state = 81}, + [3349] = {.lex_state = 86}, + [3350] = {.lex_state = 86}, + [3351] = {.lex_state = 86}, + [3352] = {.lex_state = 86}, + [3353] = {.lex_state = 86}, + [3354] = {.lex_state = 86}, + [3355] = {.lex_state = 35}, + [3356] = {.lex_state = 41}, + [3357] = {.lex_state = 41}, + [3358] = {.lex_state = 86}, + [3359] = {.lex_state = 86}, + [3360] = {.lex_state = 35}, + [3361] = {.lex_state = 85}, + [3362] = {.lex_state = 86}, + [3363] = {.lex_state = 86}, + [3364] = {.lex_state = 86}, + [3365] = {.lex_state = 35}, + [3366] = {.lex_state = 35}, + [3367] = {.lex_state = 41}, + [3368] = {.lex_state = 86}, + [3369] = {.lex_state = 86}, + [3370] = {.lex_state = 86}, + [3371] = {.lex_state = 86}, + [3372] = {.lex_state = 86}, + [3373] = {.lex_state = 86}, + [3374] = {.lex_state = 86}, + [3375] = {.lex_state = 86}, + [3376] = {.lex_state = 86}, + [3377] = {.lex_state = 86}, + [3378] = {.lex_state = 85}, + [3379] = {.lex_state = 86}, [3380] = {.lex_state = 86}, - [3381] = {.lex_state = 86}, - [3382] = {.lex_state = 34}, - [3383] = {.lex_state = 81}, - [3384] = {.lex_state = 81}, - [3385] = {.lex_state = 34}, - [3386] = {.lex_state = 34}, + [3381] = {.lex_state = 85}, + [3382] = {.lex_state = 85}, + [3383] = {.lex_state = 86}, + [3384] = {.lex_state = 41}, + [3385] = {.lex_state = 85}, + [3386] = {.lex_state = 85}, [3387] = {.lex_state = 34}, - [3388] = {.lex_state = 34}, - [3389] = {.lex_state = 34}, - [3390] = {.lex_state = 34}, + [3388] = {.lex_state = 86}, + [3389] = {.lex_state = 86}, + [3390] = {.lex_state = 85}, [3391] = {.lex_state = 34}, - [3392] = {.lex_state = 24}, - [3393] = {.lex_state = 34}, + [3392] = {.lex_state = 85}, + [3393] = {.lex_state = 85}, [3394] = {.lex_state = 34}, [3395] = {.lex_state = 34}, - [3396] = {.lex_state = 34}, - [3397] = {.lex_state = 24}, - [3398] = {.lex_state = 24}, - [3399] = {.lex_state = 24}, - [3400] = {.lex_state = 34}, - [3401] = {.lex_state = 86}, - [3402] = {.lex_state = 95}, - [3403] = {.lex_state = 86}, - [3404] = {.lex_state = 88}, - [3405] = {.lex_state = 95}, - [3406] = {.lex_state = 88}, - [3407] = {.lex_state = 88}, - [3408] = {.lex_state = 95}, - [3409] = {.lex_state = 95}, - [3410] = {.lex_state = 88}, - [3411] = {.lex_state = 95}, - [3412] = {.lex_state = 81}, - [3413] = {.lex_state = 95}, - [3414] = {.lex_state = 95}, - [3415] = {.lex_state = 95}, - [3416] = {.lex_state = 88}, - [3417] = {.lex_state = 95}, - [3418] = {.lex_state = 88}, - [3419] = {.lex_state = 95}, - [3420] = {.lex_state = 81}, - [3421] = {.lex_state = 95}, - [3422] = {.lex_state = 95}, - [3423] = {.lex_state = 95}, - [3424] = {.lex_state = 88}, - [3425] = {.lex_state = 95}, - [3426] = {.lex_state = 88}, - [3427] = {.lex_state = 88}, - [3428] = {.lex_state = 95}, - [3429] = {.lex_state = 88}, - [3430] = {.lex_state = 88}, - [3431] = {.lex_state = 95}, - [3432] = {.lex_state = 88}, + [3396] = {.lex_state = 85}, + [3397] = {.lex_state = 85}, + [3398] = {.lex_state = 34}, + [3399] = {.lex_state = 34}, + [3400] = {.lex_state = 35}, + [3401] = {.lex_state = 34}, + [3402] = {.lex_state = 34}, + [3403] = {.lex_state = 34}, + [3404] = {.lex_state = 34}, + [3405] = {.lex_state = 34}, + [3406] = {.lex_state = 34}, + [3407] = {.lex_state = 34}, + [3408] = {.lex_state = 34}, + [3409] = {.lex_state = 34}, + [3410] = {.lex_state = 34}, + [3411] = {.lex_state = 34}, + [3412] = {.lex_state = 85}, + [3413] = {.lex_state = 34}, + [3414] = {.lex_state = 34}, + [3415] = {.lex_state = 34}, + [3416] = {.lex_state = 34}, + [3417] = {.lex_state = 34}, + [3418] = {.lex_state = 34}, + [3419] = {.lex_state = 34}, + [3420] = {.lex_state = 34}, + [3421] = {.lex_state = 34}, + [3422] = {.lex_state = 34}, + [3423] = {.lex_state = 34}, + [3424] = {.lex_state = 35}, + [3425] = {.lex_state = 86}, + [3426] = {.lex_state = 86}, + [3427] = {.lex_state = 81}, + [3428] = {.lex_state = 34}, + [3429] = {.lex_state = 81}, + [3430] = {.lex_state = 81}, + [3431] = {.lex_state = 34}, + [3432] = {.lex_state = 86}, [3433] = {.lex_state = 81}, [3434] = {.lex_state = 81}, [3435] = {.lex_state = 81}, - [3436] = {.lex_state = 34}, - [3437] = {.lex_state = 88}, - [3438] = {.lex_state = 95}, - [3439] = {.lex_state = 88}, - [3440] = {.lex_state = 95}, - [3441] = {.lex_state = 86}, - [3442] = {.lex_state = 88}, - [3443] = {.lex_state = 88}, + [3436] = {.lex_state = 86}, + [3437] = {.lex_state = 34}, + [3438] = {.lex_state = 81}, + [3439] = {.lex_state = 81}, + [3440] = {.lex_state = 81}, + [3441] = {.lex_state = 81}, + [3442] = {.lex_state = 34}, + [3443] = {.lex_state = 81}, [3444] = {.lex_state = 81}, - [3445] = {.lex_state = 88}, - [3446] = {.lex_state = 81}, - [3447] = {.lex_state = 88}, - [3448] = {.lex_state = 81}, - [3449] = {.lex_state = 95}, - [3450] = {.lex_state = 88}, - [3451] = {.lex_state = 95}, - [3452] = {.lex_state = 88}, - [3453] = {.lex_state = 95}, - [3454] = {.lex_state = 88}, - [3455] = {.lex_state = 95}, - [3456] = {.lex_state = 88}, - [3457] = {.lex_state = 88}, - [3458] = {.lex_state = 88}, - [3459] = {.lex_state = 95}, - [3460] = {.lex_state = 88}, - [3461] = {.lex_state = 24}, - [3462] = {.lex_state = 81}, - [3463] = {.lex_state = 95}, - [3464] = {.lex_state = 88}, - [3465] = {.lex_state = 88}, - [3466] = {.lex_state = 95}, - [3467] = {.lex_state = 88}, + [3445] = {.lex_state = 34}, + [3446] = {.lex_state = 34}, + [3447] = {.lex_state = 24}, + [3448] = {.lex_state = 34}, + [3449] = {.lex_state = 34}, + [3450] = {.lex_state = 34}, + [3451] = {.lex_state = 34}, + [3452] = {.lex_state = 34}, + [3453] = {.lex_state = 24}, + [3454] = {.lex_state = 24}, + [3455] = {.lex_state = 24}, + [3456] = {.lex_state = 34}, + [3457] = {.lex_state = 34}, + [3458] = {.lex_state = 34}, + [3459] = {.lex_state = 34}, + [3460] = {.lex_state = 34}, + [3461] = {.lex_state = 95}, + [3462] = {.lex_state = 88}, + [3463] = {.lex_state = 81}, + [3464] = {.lex_state = 81}, + [3465] = {.lex_state = 81}, + [3466] = {.lex_state = 34}, + [3467] = {.lex_state = 95}, [3468] = {.lex_state = 88}, - [3469] = {.lex_state = 95}, - [3470] = {.lex_state = 88}, - [3471] = {.lex_state = 95}, - [3472] = {.lex_state = 95}, - [3473] = {.lex_state = 88}, - [3474] = {.lex_state = 81}, - [3475] = {.lex_state = 81}, + [3469] = {.lex_state = 81}, + [3470] = {.lex_state = 95}, + [3471] = {.lex_state = 88}, + [3472] = {.lex_state = 88}, + [3473] = {.lex_state = 86}, + [3474] = {.lex_state = 88}, + [3475] = {.lex_state = 95}, [3476] = {.lex_state = 88}, [3477] = {.lex_state = 95}, - [3478] = {.lex_state = 81}, - [3479] = {.lex_state = 81}, - [3480] = {.lex_state = 24}, - [3481] = {.lex_state = 81}, + [3478] = {.lex_state = 88}, + [3479] = {.lex_state = 95}, + [3480] = {.lex_state = 88}, + [3481] = {.lex_state = 88}, [3482] = {.lex_state = 95}, - [3483] = {.lex_state = 81}, - [3484] = {.lex_state = 86}, - [3485] = {.lex_state = 95}, - [3486] = {.lex_state = 81}, - [3487] = {.lex_state = 88}, + [3483] = {.lex_state = 95}, + [3484] = {.lex_state = 81}, + [3485] = {.lex_state = 81}, + [3486] = {.lex_state = 88}, + [3487] = {.lex_state = 81}, [3488] = {.lex_state = 95}, - [3489] = {.lex_state = 88}, - [3490] = {.lex_state = 95}, - [3491] = {.lex_state = 88}, - [3492] = {.lex_state = 86}, - [3493] = {.lex_state = 81}, + [3489] = {.lex_state = 95}, + [3490] = {.lex_state = 88}, + [3491] = {.lex_state = 95}, + [3492] = {.lex_state = 88}, + [3493] = {.lex_state = 95}, [3494] = {.lex_state = 95}, - [3495] = {.lex_state = 95}, - [3496] = {.lex_state = 81}, - [3497] = {.lex_state = 88}, + [3495] = {.lex_state = 81}, + [3496] = {.lex_state = 88}, + [3497] = {.lex_state = 81}, [3498] = {.lex_state = 81}, [3499] = {.lex_state = 95}, [3500] = {.lex_state = 88}, [3501] = {.lex_state = 95}, - [3502] = {.lex_state = 95}, - [3503] = {.lex_state = 81}, + [3502] = {.lex_state = 88}, + [3503] = {.lex_state = 86}, [3504] = {.lex_state = 88}, - [3505] = {.lex_state = 88}, - [3506] = {.lex_state = 88}, - [3507] = {.lex_state = 81}, - [3508] = {.lex_state = 95}, - [3509] = {.lex_state = 88}, + [3505] = {.lex_state = 95}, + [3506] = {.lex_state = 95}, + [3507] = {.lex_state = 88}, + [3508] = {.lex_state = 88}, + [3509] = {.lex_state = 81}, [3510] = {.lex_state = 95}, - [3511] = {.lex_state = 88}, - [3512] = {.lex_state = 88}, - [3513] = {.lex_state = 86}, - [3514] = {.lex_state = 81}, - [3515] = {.lex_state = 95}, + [3511] = {.lex_state = 81}, + [3512] = {.lex_state = 81}, + [3513] = {.lex_state = 95}, + [3514] = {.lex_state = 95}, + [3515] = {.lex_state = 88}, [3516] = {.lex_state = 88}, - [3517] = {.lex_state = 95}, + [3517] = {.lex_state = 86}, [3518] = {.lex_state = 88}, - [3519] = {.lex_state = 88}, + [3519] = {.lex_state = 95}, [3520] = {.lex_state = 88}, [3521] = {.lex_state = 95}, - [3522] = {.lex_state = 88}, + [3522] = {.lex_state = 95}, [3523] = {.lex_state = 95}, - [3524] = {.lex_state = 81}, - [3525] = {.lex_state = 95}, - [3526] = {.lex_state = 95}, + [3524] = {.lex_state = 88}, + [3525] = {.lex_state = 88}, + [3526] = {.lex_state = 88}, [3527] = {.lex_state = 95}, [3528] = {.lex_state = 95}, - [3529] = {.lex_state = 81}, + [3529] = {.lex_state = 88}, [3530] = {.lex_state = 95}, [3531] = {.lex_state = 88}, - [3532] = {.lex_state = 194}, - [3533] = {.lex_state = 34}, - [3534] = {.lex_state = 194}, - [3535] = {.lex_state = 86}, - [3536] = {.lex_state = 86}, - [3537] = {.lex_state = 86}, - [3538] = {.lex_state = 194}, - [3539] = {.lex_state = 194}, - [3540] = {.lex_state = 194}, - [3541] = {.lex_state = 0}, - [3542] = {.lex_state = 34}, - [3543] = {.lex_state = 0}, - [3544] = {.lex_state = 194}, - [3545] = {.lex_state = 90}, - [3546] = {.lex_state = 194}, - [3547] = {.lex_state = 194}, - [3548] = {.lex_state = 0}, - [3549] = {.lex_state = 86}, - [3550] = {.lex_state = 86}, + [3532] = {.lex_state = 81}, + [3533] = {.lex_state = 88}, + [3534] = {.lex_state = 95}, + [3535] = {.lex_state = 95}, + [3536] = {.lex_state = 88}, + [3537] = {.lex_state = 95}, + [3538] = {.lex_state = 88}, + [3539] = {.lex_state = 95}, + [3540] = {.lex_state = 95}, + [3541] = {.lex_state = 88}, + [3542] = {.lex_state = 81}, + [3543] = {.lex_state = 81}, + [3544] = {.lex_state = 88}, + [3545] = {.lex_state = 95}, + [3546] = {.lex_state = 88}, + [3547] = {.lex_state = 95}, + [3548] = {.lex_state = 95}, + [3549] = {.lex_state = 88}, + [3550] = {.lex_state = 88}, [3551] = {.lex_state = 88}, - [3552] = {.lex_state = 0}, - [3553] = {.lex_state = 0}, - [3554] = {.lex_state = 86}, - [3555] = {.lex_state = 0}, - [3556] = {.lex_state = 0}, - [3557] = {.lex_state = 194}, + [3552] = {.lex_state = 24}, + [3553] = {.lex_state = 88}, + [3554] = {.lex_state = 95}, + [3555] = {.lex_state = 95}, + [3556] = {.lex_state = 88}, + [3557] = {.lex_state = 88}, [3558] = {.lex_state = 95}, - [3559] = {.lex_state = 0}, - [3560] = {.lex_state = 198}, - [3561] = {.lex_state = 0}, - [3562] = {.lex_state = 194}, - [3563] = {.lex_state = 88}, - [3564] = {.lex_state = 88}, - [3565] = {.lex_state = 88}, - [3566] = {.lex_state = 34}, - [3567] = {.lex_state = 194}, - [3568] = {.lex_state = 95}, - [3569] = {.lex_state = 86}, - [3570] = {.lex_state = 34}, - [3571] = {.lex_state = 81}, - [3572] = {.lex_state = 81}, + [3559] = {.lex_state = 88}, + [3560] = {.lex_state = 95}, + [3561] = {.lex_state = 95}, + [3562] = {.lex_state = 95}, + [3563] = {.lex_state = 24}, + [3564] = {.lex_state = 81}, + [3565] = {.lex_state = 86}, + [3566] = {.lex_state = 81}, + [3567] = {.lex_state = 81}, + [3568] = {.lex_state = 88}, + [3569] = {.lex_state = 95}, + [3570] = {.lex_state = 88}, + [3571] = {.lex_state = 95}, + [3572] = {.lex_state = 88}, [3573] = {.lex_state = 81}, - [3574] = {.lex_state = 86}, - [3575] = {.lex_state = 0}, - [3576] = {.lex_state = 81}, + [3574] = {.lex_state = 88}, + [3575] = {.lex_state = 81}, + [3576] = {.lex_state = 95}, [3577] = {.lex_state = 81}, - [3578] = {.lex_state = 86}, - [3579] = {.lex_state = 194}, + [3578] = {.lex_state = 88}, + [3579] = {.lex_state = 86}, [3580] = {.lex_state = 95}, - [3581] = {.lex_state = 194}, + [3581] = {.lex_state = 86}, [3582] = {.lex_state = 81}, - [3583] = {.lex_state = 34}, - [3584] = {.lex_state = 194}, - [3585] = {.lex_state = 95}, - [3586] = {.lex_state = 81}, - [3587] = {.lex_state = 81}, - [3588] = {.lex_state = 69}, - [3589] = {.lex_state = 69}, - [3590] = {.lex_state = 194}, - [3591] = {.lex_state = 0}, - [3592] = {.lex_state = 81}, - [3593] = {.lex_state = 100}, - [3594] = {.lex_state = 100}, + [3583] = {.lex_state = 95}, + [3584] = {.lex_state = 88}, + [3585] = {.lex_state = 81}, + [3586] = {.lex_state = 95}, + [3587] = {.lex_state = 95}, + [3588] = {.lex_state = 88}, + [3589] = {.lex_state = 88}, + [3590] = {.lex_state = 95}, + [3591] = {.lex_state = 88}, + [3592] = {.lex_state = 86}, + [3593] = {.lex_state = 0}, + [3594] = {.lex_state = 194}, [3595] = {.lex_state = 194}, - [3596] = {.lex_state = 69}, - [3597] = {.lex_state = 69}, - [3598] = {.lex_state = 0}, - [3599] = {.lex_state = 69}, - [3600] = {.lex_state = 69}, - [3601] = {.lex_state = 86}, - [3602] = {.lex_state = 86}, - [3603] = {.lex_state = 86}, - [3604] = {.lex_state = 69}, + [3596] = {.lex_state = 86}, + [3597] = {.lex_state = 194}, + [3598] = {.lex_state = 194}, + [3599] = {.lex_state = 86}, + [3600] = {.lex_state = 194}, + [3601] = {.lex_state = 194}, + [3602] = {.lex_state = 34}, + [3603] = {.lex_state = 90}, + [3604] = {.lex_state = 194}, [3605] = {.lex_state = 0}, - [3606] = {.lex_state = 194}, - [3607] = {.lex_state = 86}, + [3606] = {.lex_state = 34}, + [3607] = {.lex_state = 194}, [3608] = {.lex_state = 86}, - [3609] = {.lex_state = 81}, - [3610] = {.lex_state = 86}, - [3611] = {.lex_state = 69}, - [3612] = {.lex_state = 69}, - [3613] = {.lex_state = 69}, - [3614] = {.lex_state = 86}, - [3615] = {.lex_state = 69}, - [3616] = {.lex_state = 86}, - [3617] = {.lex_state = 0}, - [3618] = {.lex_state = 86}, - [3619] = {.lex_state = 86}, - [3620] = {.lex_state = 69}, - [3621] = {.lex_state = 0}, - [3622] = {.lex_state = 86}, - [3623] = {.lex_state = 69}, - [3624] = {.lex_state = 69}, - [3625] = {.lex_state = 0}, - [3626] = {.lex_state = 69}, - [3627] = {.lex_state = 86}, - [3628] = {.lex_state = 0}, - [3629] = {.lex_state = 69}, - [3630] = {.lex_state = 86}, + [3609] = {.lex_state = 0}, + [3610] = {.lex_state = 34}, + [3611] = {.lex_state = 34}, + [3612] = {.lex_state = 200}, + [3613] = {.lex_state = 86}, + [3614] = {.lex_state = 81}, + [3615] = {.lex_state = 0}, + [3616] = {.lex_state = 81}, + [3617] = {.lex_state = 86}, + [3618] = {.lex_state = 194}, + [3619] = {.lex_state = 95}, + [3620] = {.lex_state = 0}, + [3621] = {.lex_state = 86}, + [3622] = {.lex_state = 34}, + [3623] = {.lex_state = 86}, + [3624] = {.lex_state = 95}, + [3625] = {.lex_state = 81}, + [3626] = {.lex_state = 86}, + [3627] = {.lex_state = 81}, + [3628] = {.lex_state = 194}, + [3629] = {.lex_state = 88}, + [3630] = {.lex_state = 0}, [3631] = {.lex_state = 194}, - [3632] = {.lex_state = 86}, - [3633] = {.lex_state = 194}, - [3634] = {.lex_state = 0}, - [3635] = {.lex_state = 86}, - [3636] = {.lex_state = 69}, + [3632] = {.lex_state = 95}, + [3633] = {.lex_state = 88}, + [3634] = {.lex_state = 194}, + [3635] = {.lex_state = 88}, + [3636] = {.lex_state = 81}, [3637] = {.lex_state = 0}, - [3638] = {.lex_state = 86}, - [3639] = {.lex_state = 0}, - [3640] = {.lex_state = 86}, - [3641] = {.lex_state = 0}, - [3642] = {.lex_state = 194}, - [3643] = {.lex_state = 90}, + [3638] = {.lex_state = 0}, + [3639] = {.lex_state = 81}, + [3640] = {.lex_state = 81}, + [3641] = {.lex_state = 194}, + [3642] = {.lex_state = 95}, + [3643] = {.lex_state = 88}, [3644] = {.lex_state = 0}, - [3645] = {.lex_state = 198}, - [3646] = {.lex_state = 86}, - [3647] = {.lex_state = 69}, - [3648] = {.lex_state = 69}, - [3649] = {.lex_state = 0}, + [3645] = {.lex_state = 0}, + [3646] = {.lex_state = 194}, + [3647] = {.lex_state = 81}, + [3648] = {.lex_state = 0}, + [3649] = {.lex_state = 194}, [3650] = {.lex_state = 86}, - [3651] = {.lex_state = 86}, - [3652] = {.lex_state = 86}, - [3653] = {.lex_state = 86}, + [3651] = {.lex_state = 0}, + [3652] = {.lex_state = 0}, + [3653] = {.lex_state = 0}, [3654] = {.lex_state = 86}, - [3655] = {.lex_state = 0}, - [3656] = {.lex_state = 86}, - [3657] = {.lex_state = 69}, - [3658] = {.lex_state = 0}, - [3659] = {.lex_state = 86}, + [3655] = {.lex_state = 69}, + [3656] = {.lex_state = 0}, + [3657] = {.lex_state = 0}, + [3658] = {.lex_state = 100}, + [3659] = {.lex_state = 0}, [3660] = {.lex_state = 69}, - [3661] = {.lex_state = 69}, + [3661] = {.lex_state = 194}, [3662] = {.lex_state = 86}, - [3663] = {.lex_state = 86}, - [3664] = {.lex_state = 0}, + [3663] = {.lex_state = 0}, + [3664] = {.lex_state = 194}, [3665] = {.lex_state = 0}, - [3666] = {.lex_state = 0}, - [3667] = {.lex_state = 0}, - [3668] = {.lex_state = 198}, - [3669] = {.lex_state = 0}, - [3670] = {.lex_state = 86}, + [3666] = {.lex_state = 86}, + [3667] = {.lex_state = 86}, + [3668] = {.lex_state = 0}, + [3669] = {.lex_state = 86}, + [3670] = {.lex_state = 0}, [3671] = {.lex_state = 0}, - [3672] = {.lex_state = 0}, - [3673] = {.lex_state = 86}, - [3674] = {.lex_state = 0}, - [3675] = {.lex_state = 100}, - [3676] = {.lex_state = 86}, - [3677] = {.lex_state = 0}, - [3678] = {.lex_state = 0}, - [3679] = {.lex_state = 86}, - [3680] = {.lex_state = 194}, - [3681] = {.lex_state = 86}, + [3672] = {.lex_state = 194}, + [3673] = {.lex_state = 0}, + [3674] = {.lex_state = 86}, + [3675] = {.lex_state = 0}, + [3676] = {.lex_state = 0}, + [3677] = {.lex_state = 86}, + [3678] = {.lex_state = 200}, + [3679] = {.lex_state = 0}, + [3680] = {.lex_state = 69}, + [3681] = {.lex_state = 0}, [3682] = {.lex_state = 69}, [3683] = {.lex_state = 0}, - [3684] = {.lex_state = 194}, - [3685] = {.lex_state = 194}, - [3686] = {.lex_state = 194}, - [3687] = {.lex_state = 194}, + [3684] = {.lex_state = 0}, + [3685] = {.lex_state = 0}, + [3686] = {.lex_state = 86}, + [3687] = {.lex_state = 0}, [3688] = {.lex_state = 0}, - [3689] = {.lex_state = 86}, - [3690] = {.lex_state = 69}, - [3691] = {.lex_state = 86}, - [3692] = {.lex_state = 194}, + [3689] = {.lex_state = 0}, + [3690] = {.lex_state = 0}, + [3691] = {.lex_state = 0}, + [3692] = {.lex_state = 86}, [3693] = {.lex_state = 0}, - [3694] = {.lex_state = 0}, - [3695] = {.lex_state = 86}, - [3696] = {.lex_state = 194}, - [3697] = {.lex_state = 69}, - [3698] = {.lex_state = 0}, + [3694] = {.lex_state = 86}, + [3695] = {.lex_state = 0}, + [3696] = {.lex_state = 0}, + [3697] = {.lex_state = 0}, + [3698] = {.lex_state = 86}, [3699] = {.lex_state = 69}, - [3700] = {.lex_state = 194}, + [3700] = {.lex_state = 69}, [3701] = {.lex_state = 86}, - [3702] = {.lex_state = 90}, - [3703] = {.lex_state = 198}, - [3704] = {.lex_state = 194}, - [3705] = {.lex_state = 194}, + [3702] = {.lex_state = 86}, + [3703] = {.lex_state = 81}, + [3704] = {.lex_state = 86}, + [3705] = {.lex_state = 69}, [3706] = {.lex_state = 86}, - [3707] = {.lex_state = 0}, - [3708] = {.lex_state = 0}, - [3709] = {.lex_state = 0}, - [3710] = {.lex_state = 69}, + [3707] = {.lex_state = 86}, + [3708] = {.lex_state = 69}, + [3709] = {.lex_state = 100}, + [3710] = {.lex_state = 86}, [3711] = {.lex_state = 86}, - [3712] = {.lex_state = 86}, - [3713] = {.lex_state = 0}, + [3712] = {.lex_state = 69}, + [3713] = {.lex_state = 194}, [3714] = {.lex_state = 0}, - [3715] = {.lex_state = 194}, - [3716] = {.lex_state = 69}, + [3715] = {.lex_state = 86}, + [3716] = {.lex_state = 194}, [3717] = {.lex_state = 194}, [3718] = {.lex_state = 194}, - [3719] = {.lex_state = 194}, - [3720] = {.lex_state = 194}, + [3719] = {.lex_state = 0}, + [3720] = {.lex_state = 69}, [3721] = {.lex_state = 0}, - [3722] = {.lex_state = 194}, + [3722] = {.lex_state = 0}, [3723] = {.lex_state = 194}, - [3724] = {.lex_state = 194}, - [3725] = {.lex_state = 0}, - [3726] = {.lex_state = 0}, - [3727] = {.lex_state = 0}, - [3728] = {.lex_state = 86}, + [3724] = {.lex_state = 69}, + [3725] = {.lex_state = 194}, + [3726] = {.lex_state = 86}, + [3727] = {.lex_state = 86}, + [3728] = {.lex_state = 0}, [3729] = {.lex_state = 86}, - [3730] = {.lex_state = 0}, - [3731] = {.lex_state = 0}, - [3732] = {.lex_state = 194}, - [3733] = {.lex_state = 86}, - [3734] = {.lex_state = 0}, - [3735] = {.lex_state = 86}, + [3730] = {.lex_state = 194}, + [3731] = {.lex_state = 69}, + [3732] = {.lex_state = 0}, + [3733] = {.lex_state = 194}, + [3734] = {.lex_state = 90}, + [3735] = {.lex_state = 200}, [3736] = {.lex_state = 0}, [3737] = {.lex_state = 0}, - [3738] = {.lex_state = 86}, - [3739] = {.lex_state = 0}, - [3740] = {.lex_state = 0}, - [3741] = {.lex_state = 0}, - [3742] = {.lex_state = 194}, - [3743] = {.lex_state = 69}, - [3744] = {.lex_state = 0}, + [3738] = {.lex_state = 0}, + [3739] = {.lex_state = 81}, + [3740] = {.lex_state = 86}, + [3741] = {.lex_state = 86}, + [3742] = {.lex_state = 69}, + [3743] = {.lex_state = 86}, + [3744] = {.lex_state = 69}, [3745] = {.lex_state = 0}, - [3746] = {.lex_state = 0}, - [3747] = {.lex_state = 0}, - [3748] = {.lex_state = 0}, - [3749] = {.lex_state = 0}, - [3750] = {.lex_state = 86}, - [3751] = {.lex_state = 81}, - [3752] = {.lex_state = 0}, - [3753] = {.lex_state = 69}, - [3754] = {.lex_state = 0}, - [3755] = {.lex_state = 0}, + [3746] = {.lex_state = 86}, + [3747] = {.lex_state = 69}, + [3748] = {.lex_state = 86}, + [3749] = {.lex_state = 69}, + [3750] = {.lex_state = 194}, + [3751] = {.lex_state = 69}, + [3752] = {.lex_state = 69}, + [3753] = {.lex_state = 86}, + [3754] = {.lex_state = 86}, + [3755] = {.lex_state = 194}, [3756] = {.lex_state = 0}, - [3757] = {.lex_state = 0}, - [3758] = {.lex_state = 81}, - [3759] = {.lex_state = 0}, - [3760] = {.lex_state = 0}, - [3761] = {.lex_state = 0}, - [3762] = {.lex_state = 89}, - [3763] = {.lex_state = 96}, - [3764] = {.lex_state = 0}, - [3765] = {.lex_state = 0}, - [3766] = {.lex_state = 0}, - [3767] = {.lex_state = 0}, - [3768] = {.lex_state = 81}, + [3757] = {.lex_state = 81}, + [3758] = {.lex_state = 86}, + [3759] = {.lex_state = 194}, + [3760] = {.lex_state = 69}, + [3761] = {.lex_state = 69}, + [3762] = {.lex_state = 86}, + [3763] = {.lex_state = 194}, + [3764] = {.lex_state = 194}, + [3765] = {.lex_state = 194}, + [3766] = {.lex_state = 86}, + [3767] = {.lex_state = 194}, + [3768] = {.lex_state = 194}, [3769] = {.lex_state = 0}, - [3770] = {.lex_state = 198}, - [3771] = {.lex_state = 86}, - [3772] = {.lex_state = 86}, - [3773] = {.lex_state = 81}, - [3774] = {.lex_state = 0}, + [3770] = {.lex_state = 194}, + [3771] = {.lex_state = 194}, + [3772] = {.lex_state = 194}, + [3773] = {.lex_state = 86}, + [3774] = {.lex_state = 69}, [3775] = {.lex_state = 0}, - [3776] = {.lex_state = 0}, - [3777] = {.lex_state = 96}, - [3778] = {.lex_state = 89}, - [3779] = {.lex_state = 0}, - [3780] = {.lex_state = 96}, - [3781] = {.lex_state = 89}, + [3776] = {.lex_state = 69}, + [3777] = {.lex_state = 0}, + [3778] = {.lex_state = 69}, + [3779] = {.lex_state = 86}, + [3780] = {.lex_state = 86}, + [3781] = {.lex_state = 86}, [3782] = {.lex_state = 0}, [3783] = {.lex_state = 0}, - [3784] = {.lex_state = 0}, - [3785] = {.lex_state = 0}, - [3786] = {.lex_state = 86}, + [3784] = {.lex_state = 86}, + [3785] = {.lex_state = 194}, + [3786] = {.lex_state = 0}, [3787] = {.lex_state = 0}, - [3788] = {.lex_state = 0}, - [3789] = {.lex_state = 0}, - [3790] = {.lex_state = 86}, - [3791] = {.lex_state = 81}, - [3792] = {.lex_state = 0}, + [3788] = {.lex_state = 86}, + [3789] = {.lex_state = 194}, + [3790] = {.lex_state = 69}, + [3791] = {.lex_state = 100}, + [3792] = {.lex_state = 86}, [3793] = {.lex_state = 86}, - [3794] = {.lex_state = 198}, + [3794] = {.lex_state = 194}, [3795] = {.lex_state = 0}, - [3796] = {.lex_state = 96}, - [3797] = {.lex_state = 0}, - [3798] = {.lex_state = 0}, - [3799] = {.lex_state = 0}, - [3800] = {.lex_state = 96}, - [3801] = {.lex_state = 0}, + [3796] = {.lex_state = 69}, + [3797] = {.lex_state = 69}, + [3798] = {.lex_state = 69}, + [3799] = {.lex_state = 86}, + [3800] = {.lex_state = 69}, + [3801] = {.lex_state = 86}, [3802] = {.lex_state = 0}, [3803] = {.lex_state = 0}, [3804] = {.lex_state = 0}, [3805] = {.lex_state = 0}, [3806] = {.lex_state = 0}, - [3807] = {.lex_state = 86}, - [3808] = {.lex_state = 0}, - [3809] = {.lex_state = 0}, + [3807] = {.lex_state = 69}, + [3808] = {.lex_state = 86}, + [3809] = {.lex_state = 86}, [3810] = {.lex_state = 0}, - [3811] = {.lex_state = 96}, - [3812] = {.lex_state = 86}, - [3813] = {.lex_state = 0}, - [3814] = {.lex_state = 0}, + [3811] = {.lex_state = 90}, + [3812] = {.lex_state = 0}, + [3813] = {.lex_state = 69}, + [3814] = {.lex_state = 200}, [3815] = {.lex_state = 0}, [3816] = {.lex_state = 0}, - [3817] = {.lex_state = 96}, - [3818] = {.lex_state = 89}, - [3819] = {.lex_state = 198}, + [3817] = {.lex_state = 86}, + [3818] = {.lex_state = 0}, + [3819] = {.lex_state = 0}, [3820] = {.lex_state = 0}, [3821] = {.lex_state = 0}, [3822] = {.lex_state = 0}, - [3823] = {.lex_state = 0}, - [3824] = {.lex_state = 96}, - [3825] = {.lex_state = 0}, - [3826] = {.lex_state = 0}, + [3823] = {.lex_state = 86}, + [3824] = {.lex_state = 0}, + [3825] = {.lex_state = 86}, + [3826] = {.lex_state = 86}, [3827] = {.lex_state = 0}, - [3828] = {.lex_state = 0}, - [3829] = {.lex_state = 0}, - [3830] = {.lex_state = 89}, - [3831] = {.lex_state = 86}, - [3832] = {.lex_state = 69}, + [3828] = {.lex_state = 96}, + [3829] = {.lex_state = 89}, + [3830] = {.lex_state = 96}, + [3831] = {.lex_state = 89}, + [3832] = {.lex_state = 0}, [3833] = {.lex_state = 0}, - [3834] = {.lex_state = 86}, + [3834] = {.lex_state = 0}, [3835] = {.lex_state = 0}, - [3836] = {.lex_state = 96}, - [3837] = {.lex_state = 89}, + [3836] = {.lex_state = 0}, + [3837] = {.lex_state = 0}, [3838] = {.lex_state = 0}, - [3839] = {.lex_state = 0}, - [3840] = {.lex_state = 86}, - [3841] = {.lex_state = 96}, - [3842] = {.lex_state = 0}, - [3843] = {.lex_state = 89}, + [3839] = {.lex_state = 86}, + [3840] = {.lex_state = 96}, + [3841] = {.lex_state = 100}, + [3842] = {.lex_state = 89}, + [3843] = {.lex_state = 0}, [3844] = {.lex_state = 0}, - [3845] = {.lex_state = 96}, - [3846] = {.lex_state = 89}, - [3847] = {.lex_state = 0}, - [3848] = {.lex_state = 198}, - [3849] = {.lex_state = 0}, - [3850] = {.lex_state = 0}, - [3851] = {.lex_state = 86}, - [3852] = {.lex_state = 86}, + [3845] = {.lex_state = 0}, + [3846] = {.lex_state = 0}, + [3847] = {.lex_state = 96}, + [3848] = {.lex_state = 89}, + [3849] = {.lex_state = 89}, + [3850] = {.lex_state = 96}, + [3851] = {.lex_state = 0}, + [3852] = {.lex_state = 0}, [3853] = {.lex_state = 0}, - [3854] = {.lex_state = 89}, + [3854] = {.lex_state = 81}, [3855] = {.lex_state = 96}, - [3856] = {.lex_state = 86}, - [3857] = {.lex_state = 0}, + [3856] = {.lex_state = 81}, + [3857] = {.lex_state = 200}, [3858] = {.lex_state = 0}, - [3859] = {.lex_state = 0}, + [3859] = {.lex_state = 81}, [3860] = {.lex_state = 0}, [3861] = {.lex_state = 0}, [3862] = {.lex_state = 0}, [3863] = {.lex_state = 0}, - [3864] = {.lex_state = 0}, - [3865] = {.lex_state = 86}, + [3864] = {.lex_state = 86}, + [3865] = {.lex_state = 0}, [3866] = {.lex_state = 0}, [3867] = {.lex_state = 0}, [3868] = {.lex_state = 0}, - [3869] = {.lex_state = 0}, - [3870] = {.lex_state = 86}, - [3871] = {.lex_state = 0}, - [3872] = {.lex_state = 0}, - [3873] = {.lex_state = 89}, + [3869] = {.lex_state = 96}, + [3870] = {.lex_state = 89}, + [3871] = {.lex_state = 96}, + [3872] = {.lex_state = 89}, + [3873] = {.lex_state = 69}, [3874] = {.lex_state = 0}, - [3875] = {.lex_state = 198}, + [3875] = {.lex_state = 0}, [3876] = {.lex_state = 0}, [3877] = {.lex_state = 0}, - [3878] = {.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 = 0}, - [3884] = {.lex_state = 96}, - [3885] = {.lex_state = 96}, - [3886] = {.lex_state = 86}, + [3883] = {.lex_state = 86}, + [3884] = {.lex_state = 0}, + [3885] = {.lex_state = 0}, + [3886] = {.lex_state = 0}, [3887] = {.lex_state = 0}, - [3888] = {.lex_state = 89}, - [3889] = {.lex_state = 0}, - [3890] = {.lex_state = 0}, - [3891] = {.lex_state = 81}, + [3888] = {.lex_state = 86}, + [3889] = {.lex_state = 96}, + [3890] = {.lex_state = 86}, + [3891] = {.lex_state = 89}, [3892] = {.lex_state = 0}, - [3893] = {.lex_state = 0}, + [3893] = {.lex_state = 81}, [3894] = {.lex_state = 0}, [3895] = {.lex_state = 0}, - [3896] = {.lex_state = 0}, - [3897] = {.lex_state = 0}, - [3898] = {.lex_state = 0}, + [3896] = {.lex_state = 96}, + [3897] = {.lex_state = 96}, + [3898] = {.lex_state = 89}, [3899] = {.lex_state = 0}, - [3900] = {.lex_state = 0}, - [3901] = {.lex_state = 0}, - [3902] = {.lex_state = 96}, - [3903] = {.lex_state = 0}, - [3904] = {.lex_state = 89}, + [3900] = {.lex_state = 89}, + [3901] = {.lex_state = 89}, + [3902] = {.lex_state = 0}, + [3903] = {.lex_state = 96}, + [3904] = {.lex_state = 0}, [3905] = {.lex_state = 0}, - [3906] = {.lex_state = 96}, - [3907] = {.lex_state = 89}, + [3906] = {.lex_state = 86}, + [3907] = {.lex_state = 0}, [3908] = {.lex_state = 0}, - [3909] = {.lex_state = 86}, + [3909] = {.lex_state = 0}, [3910] = {.lex_state = 0}, [3911] = {.lex_state = 0}, - [3912] = {.lex_state = 0}, + [3912] = {.lex_state = 86}, [3913] = {.lex_state = 0}, - [3914] = {.lex_state = 96}, - [3915] = {.lex_state = 89}, - [3916] = {.lex_state = 89}, - [3917] = {.lex_state = 69}, + [3914] = {.lex_state = 0}, + [3915] = {.lex_state = 0}, + [3916] = {.lex_state = 0}, + [3917] = {.lex_state = 0}, [3918] = {.lex_state = 0}, - [3919] = {.lex_state = 0}, - [3920] = {.lex_state = 89}, - [3921] = {.lex_state = 96}, + [3919] = {.lex_state = 200}, + [3920] = {.lex_state = 96}, + [3921] = {.lex_state = 89}, [3922] = {.lex_state = 0}, [3923] = {.lex_state = 0}, - [3924] = {.lex_state = 0}, - [3925] = {.lex_state = 86}, + [3924] = {.lex_state = 89}, + [3925] = {.lex_state = 0}, [3926] = {.lex_state = 0}, [3927] = {.lex_state = 86}, [3928] = {.lex_state = 0}, [3929] = {.lex_state = 0}, - [3930] = {.lex_state = 0}, - [3931] = {.lex_state = 0}, - [3932] = {.lex_state = 0}, + [3930] = {.lex_state = 86}, + [3931] = {.lex_state = 96}, + [3932] = {.lex_state = 89}, [3933] = {.lex_state = 0}, [3934] = {.lex_state = 0}, - [3935] = {.lex_state = 86}, - [3936] = {.lex_state = 0}, - [3937] = {.lex_state = 96}, - [3938] = {.lex_state = 89}, - [3939] = {.lex_state = 86}, - [3940] = {.lex_state = 0}, + [3935] = {.lex_state = 0}, + [3936] = {.lex_state = 96}, + [3937] = {.lex_state = 89}, + [3938] = {.lex_state = 96}, + [3939] = {.lex_state = 0}, + [3940] = {.lex_state = 89}, [3941] = {.lex_state = 0}, - [3942] = {.lex_state = 96}, - [3943] = {.lex_state = 89}, + [3942] = {.lex_state = 69}, + [3943] = {.lex_state = 200}, [3944] = {.lex_state = 0}, - [3945] = {.lex_state = 89}, - [3946] = {.lex_state = 96}, + [3945] = {.lex_state = 0}, + [3946] = {.lex_state = 0}, [3947] = {.lex_state = 0}, [3948] = {.lex_state = 0}, [3949] = {.lex_state = 0}, [3950] = {.lex_state = 0}, [3951] = {.lex_state = 0}, - [3952] = {.lex_state = 96}, + [3952] = {.lex_state = 0}, [3953] = {.lex_state = 96}, - [3954] = {.lex_state = 0}, - [3955] = {.lex_state = 0}, - [3956] = {.lex_state = 0}, - [3957] = {.lex_state = 89}, - [3958] = {.lex_state = 0}, + [3954] = {.lex_state = 89}, + [3955] = {.lex_state = 86}, + [3956] = {.lex_state = 69}, + [3957] = {.lex_state = 0}, + [3958] = {.lex_state = 200}, [3959] = {.lex_state = 0}, - [3960] = {.lex_state = 0}, - [3961] = {.lex_state = 0}, + [3960] = {.lex_state = 86}, + [3961] = {.lex_state = 86}, [3962] = {.lex_state = 0}, [3963] = {.lex_state = 0}, [3964] = {.lex_state = 0}, [3965] = {.lex_state = 0}, - [3966] = {.lex_state = 0}, - [3967] = {.lex_state = 86}, - [3968] = {.lex_state = 86}, - [3969] = {.lex_state = 0}, + [3966] = {.lex_state = 96}, + [3967] = {.lex_state = 89}, + [3968] = {.lex_state = 96}, + [3969] = {.lex_state = 89}, [3970] = {.lex_state = 0}, - [3971] = {.lex_state = 0}, + [3971] = {.lex_state = 86}, [3972] = {.lex_state = 0}, - [3973] = {.lex_state = 0}, + [3973] = {.lex_state = 86}, [3974] = {.lex_state = 0}, [3975] = {.lex_state = 0}, - [3976] = {.lex_state = 0}, - [3977] = {.lex_state = 0}, - [3978] = {.lex_state = 89}, + [3976] = {.lex_state = 96}, + [3977] = {.lex_state = 200}, + [3978] = {.lex_state = 0}, [3979] = {.lex_state = 0}, [3980] = {.lex_state = 0}, - [3981] = {.lex_state = 198}, + [3981] = {.lex_state = 89}, [3982] = {.lex_state = 0}, [3983] = {.lex_state = 0}, - [3984] = {.lex_state = 69}, - [3985] = {.lex_state = 86}, + [3984] = {.lex_state = 0}, + [3985] = {.lex_state = 0}, [3986] = {.lex_state = 0}, - [3987] = {.lex_state = 100}, - [3988] = {.lex_state = 89}, - [3989] = {.lex_state = 89}, - [3990] = {.lex_state = 0}, - [3991] = {.lex_state = 96}, + [3987] = {.lex_state = 0}, + [3988] = {.lex_state = 86}, + [3989] = {.lex_state = 0}, + [3990] = {.lex_state = 96}, + [3991] = {.lex_state = 89}, [3992] = {.lex_state = 0}, - [3993] = {.lex_state = 96}, - [3994] = {.lex_state = 89}, - [3995] = {.lex_state = 0}, + [3993] = {.lex_state = 0}, + [3994] = {.lex_state = 96}, + [3995] = {.lex_state = 89}, [3996] = {.lex_state = 0}, [3997] = {.lex_state = 0}, - [3998] = {.lex_state = 86}, - [3999] = {.lex_state = 0}, + [3998] = {.lex_state = 0}, + [3999] = {.lex_state = 81}, [4000] = {.lex_state = 0}, [4001] = {.lex_state = 0}, - [4002] = {.lex_state = 0}, + [4002] = {.lex_state = 86}, [4003] = {.lex_state = 0}, [4004] = {.lex_state = 0}, [4005] = {.lex_state = 0}, @@ -18287,19 +18508,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4019] = {.lex_state = 0}, [4020] = {.lex_state = 0}, [4021] = {.lex_state = 0}, - [4022] = {.lex_state = 86}, + [4022] = {.lex_state = 0}, [4023] = {.lex_state = 0}, - [4024] = {.lex_state = 0}, + [4024] = {.lex_state = 89}, [4025] = {.lex_state = 0}, - [4026] = {.lex_state = 86}, - [4027] = {.lex_state = 89}, + [4026] = {.lex_state = 0}, + [4027] = {.lex_state = 96}, [4028] = {.lex_state = 0}, [4029] = {.lex_state = 0}, [4030] = {.lex_state = 0}, [4031] = {.lex_state = 0}, [4032] = {.lex_state = 0}, [4033] = {.lex_state = 0}, - [4034] = {.lex_state = 86}, + [4034] = {.lex_state = 0}, [4035] = {.lex_state = 0}, [4036] = {.lex_state = 0}, [4037] = {.lex_state = 0}, @@ -18314,34 +18535,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4046] = {.lex_state = 0}, [4047] = {.lex_state = 0}, [4048] = {.lex_state = 0}, - [4049] = {.lex_state = 86}, + [4049] = {.lex_state = 0}, [4050] = {.lex_state = 0}, - [4051] = {.lex_state = 86}, + [4051] = {.lex_state = 0}, [4052] = {.lex_state = 0}, - [4053] = {.lex_state = 0}, + [4053] = {.lex_state = 86}, [4054] = {.lex_state = 0}, - [4055] = {.lex_state = 0}, - [4056] = {.lex_state = 0}, - [4057] = {.lex_state = 0}, - [4058] = {.lex_state = 0}, + [4055] = {.lex_state = 86}, + [4056] = {.lex_state = 86}, + [4057] = {.lex_state = 96}, + [4058] = {.lex_state = 200}, [4059] = {.lex_state = 0}, [4060] = {.lex_state = 0}, - [4061] = {.lex_state = 0}, - [4062] = {.lex_state = 86}, + [4061] = {.lex_state = 89}, + [4062] = {.lex_state = 96}, [4063] = {.lex_state = 0}, - [4064] = {.lex_state = 86}, - [4065] = {.lex_state = 0}, - [4066] = {.lex_state = 0}, - [4067] = {.lex_state = 0}, + [4064] = {.lex_state = 0}, + [4065] = {.lex_state = 89}, + [4066] = {.lex_state = 86}, + [4067] = {.lex_state = 86}, [4068] = {.lex_state = 0}, [4069] = {.lex_state = 0}, [4070] = {.lex_state = 0}, - [4071] = {.lex_state = 0}, - [4072] = {.lex_state = 86}, + [4071] = {.lex_state = 69}, + [4072] = {.lex_state = 0}, [4073] = {.lex_state = 0}, - [4074] = {.lex_state = 0}, - [4075] = {.lex_state = 0}, - [4076] = {.lex_state = 96}, + [4074] = {.lex_state = 86}, + [4075] = {.lex_state = 86}, + [4076] = {.lex_state = 0}, [4077] = {.lex_state = 86}, [4078] = {.lex_state = 0}, [4079] = {.lex_state = 0}, @@ -18355,30 +18576,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4087] = {.lex_state = 0}, [4088] = {.lex_state = 0}, [4089] = {.lex_state = 0}, - [4090] = {.lex_state = 86}, + [4090] = {.lex_state = 0}, [4091] = {.lex_state = 0}, [4092] = {.lex_state = 0}, - [4093] = {.lex_state = 86}, - [4094] = {.lex_state = 86}, + [4093] = {.lex_state = 0}, + [4094] = {.lex_state = 0}, [4095] = {.lex_state = 0}, [4096] = {.lex_state = 0}, - [4097] = {.lex_state = 0}, + [4097] = {.lex_state = 86}, [4098] = {.lex_state = 0}, [4099] = {.lex_state = 0}, [4100] = {.lex_state = 0}, - [4101] = {.lex_state = 69}, - [4102] = {.lex_state = 86}, - [4103] = {.lex_state = 0}, + [4101] = {.lex_state = 0}, + [4102] = {.lex_state = 0}, + [4103] = {.lex_state = 86}, [4104] = {.lex_state = 0}, [4105] = {.lex_state = 0}, [4106] = {.lex_state = 0}, [4107] = {.lex_state = 0}, - [4108] = {.lex_state = 86}, + [4108] = {.lex_state = 0}, [4109] = {.lex_state = 0}, [4110] = {.lex_state = 0}, [4111] = {.lex_state = 0}, [4112] = {.lex_state = 0}, - [4113] = {.lex_state = 86}, + [4113] = {.lex_state = 200}, [4114] = {.lex_state = 0}, [4115] = {.lex_state = 0}, [4116] = {.lex_state = 0}, @@ -18388,19 +18609,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4120] = {.lex_state = 0}, [4121] = {.lex_state = 0}, [4122] = {.lex_state = 0}, - [4123] = {.lex_state = 0}, - [4124] = {.lex_state = 0}, + [4123] = {.lex_state = 86}, + [4124] = {.lex_state = 86}, [4125] = {.lex_state = 0}, - [4126] = {.lex_state = 0}, + [4126] = {.lex_state = 86}, [4127] = {.lex_state = 0}, [4128] = {.lex_state = 0}, [4129] = {.lex_state = 0}, [4130] = {.lex_state = 0}, - [4131] = {.lex_state = 69}, + [4131] = {.lex_state = 0}, [4132] = {.lex_state = 0}, [4133] = {.lex_state = 0}, [4134] = {.lex_state = 0}, - [4135] = {.lex_state = 0}, + [4135] = {.lex_state = 86}, [4136] = {.lex_state = 0}, [4137] = {.lex_state = 0}, [4138] = {.lex_state = 0}, @@ -18409,32 +18630,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4141] = {.lex_state = 0}, [4142] = {.lex_state = 0}, [4143] = {.lex_state = 0}, - [4144] = {.lex_state = 86}, + [4144] = {.lex_state = 0}, [4145] = {.lex_state = 0}, [4146] = {.lex_state = 0}, [4147] = {.lex_state = 0}, - [4148] = {.lex_state = 86}, + [4148] = {.lex_state = 0}, [4149] = {.lex_state = 0}, [4150] = {.lex_state = 0}, - [4151] = {.lex_state = 86}, + [4151] = {.lex_state = 0}, [4152] = {.lex_state = 0}, [4153] = {.lex_state = 0}, [4154] = {.lex_state = 0}, [4155] = {.lex_state = 0}, - [4156] = {.lex_state = 0}, - [4157] = {.lex_state = 0}, + [4156] = {.lex_state = 86}, + [4157] = {.lex_state = 86}, [4158] = {.lex_state = 0}, - [4159] = {.lex_state = 0}, + [4159] = {.lex_state = 86}, [4160] = {.lex_state = 0}, [4161] = {.lex_state = 0}, [4162] = {.lex_state = 0}, - [4163] = {.lex_state = 69}, - [4164] = {.lex_state = 86}, + [4163] = {.lex_state = 0}, + [4164] = {.lex_state = 0}, [4165] = {.lex_state = 0}, - [4166] = {.lex_state = 86}, + [4166] = {.lex_state = 0}, [4167] = {.lex_state = 0}, [4168] = {.lex_state = 0}, - [4169] = {.lex_state = 0}, + [4169] = {.lex_state = 86}, [4170] = {.lex_state = 0}, [4171] = {.lex_state = 0}, [4172] = {.lex_state = 0}, @@ -18443,11 +18664,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4175] = {.lex_state = 0}, [4176] = {.lex_state = 0}, [4177] = {.lex_state = 0}, - [4178] = {.lex_state = 0}, + [4178] = {.lex_state = 86}, [4179] = {.lex_state = 0}, [4180] = {.lex_state = 0}, [4181] = {.lex_state = 0}, - [4182] = {.lex_state = 86}, + [4182] = {.lex_state = 0}, [4183] = {.lex_state = 0}, [4184] = {.lex_state = 0}, [4185] = {.lex_state = 0}, @@ -18456,13 +18677,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4188] = {.lex_state = 0}, [4189] = {.lex_state = 0}, [4190] = {.lex_state = 0}, - [4191] = {.lex_state = 86}, + [4191] = {.lex_state = 0}, [4192] = {.lex_state = 0}, - [4193] = {.lex_state = 86}, - [4194] = {.lex_state = 86}, + [4193] = {.lex_state = 0}, + [4194] = {.lex_state = 0}, [4195] = {.lex_state = 0}, [4196] = {.lex_state = 0}, - [4197] = {.lex_state = 0}, + [4197] = {.lex_state = 86}, [4198] = {.lex_state = 0}, [4199] = {.lex_state = 0}, [4200] = {.lex_state = 0}, @@ -18471,35 +18692,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4203] = {.lex_state = 0}, [4204] = {.lex_state = 0}, [4205] = {.lex_state = 0}, - [4206] = {.lex_state = 0}, + [4206] = {.lex_state = 86}, [4207] = {.lex_state = 0}, [4208] = {.lex_state = 0}, - [4209] = {.lex_state = 0}, - [4210] = {.lex_state = 86}, - [4211] = {.lex_state = 0}, - [4212] = {.lex_state = 86}, - [4213] = {.lex_state = 0}, + [4209] = {.lex_state = 86}, + [4210] = {.lex_state = 0}, + [4211] = {.lex_state = 86}, + [4212] = {.lex_state = 0}, + [4213] = {.lex_state = 96}, [4214] = {.lex_state = 0}, [4215] = {.lex_state = 0}, - [4216] = {.lex_state = 0}, + [4216] = {.lex_state = 89}, [4217] = {.lex_state = 0}, [4218] = {.lex_state = 0}, [4219] = {.lex_state = 0}, [4220] = {.lex_state = 0}, [4221] = {.lex_state = 0}, - [4222] = {.lex_state = 0}, + [4222] = {.lex_state = 69}, [4223] = {.lex_state = 0}, [4224] = {.lex_state = 0}, - [4225] = {.lex_state = 86}, - [4226] = {.lex_state = 86}, - [4227] = {.lex_state = 0}, + [4225] = {.lex_state = 0}, + [4226] = {.lex_state = 0}, + [4227] = {.lex_state = 86}, [4228] = {.lex_state = 0}, [4229] = {.lex_state = 0}, [4230] = {.lex_state = 0}, [4231] = {.lex_state = 0}, - [4232] = {.lex_state = 0}, + [4232] = {.lex_state = 86}, [4233] = {.lex_state = 0}, - [4234] = {.lex_state = 0}, + [4234] = {.lex_state = 86}, [4235] = {.lex_state = 0}, [4236] = {.lex_state = 0}, [4237] = {.lex_state = 0}, @@ -18513,17 +18734,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4245] = {.lex_state = 0}, [4246] = {.lex_state = 0}, [4247] = {.lex_state = 0}, - [4248] = {.lex_state = 0}, + [4248] = {.lex_state = 86}, [4249] = {.lex_state = 0}, [4250] = {.lex_state = 0}, - [4251] = {.lex_state = 86}, + [4251] = {.lex_state = 0}, [4252] = {.lex_state = 0}, [4253] = {.lex_state = 0}, - [4254] = {.lex_state = 86}, + [4254] = {.lex_state = 0}, [4255] = {.lex_state = 0}, [4256] = {.lex_state = 0}, [4257] = {.lex_state = 0}, - [4258] = {.lex_state = 0}, + [4258] = {.lex_state = 86}, [4259] = {.lex_state = 0}, [4260] = {.lex_state = 0}, [4261] = {.lex_state = 0}, @@ -18532,11 +18753,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4264] = {.lex_state = 0}, [4265] = {.lex_state = 0}, [4266] = {.lex_state = 0}, - [4267] = {.lex_state = 0}, + [4267] = {.lex_state = 86}, [4268] = {.lex_state = 0}, [4269] = {.lex_state = 0}, [4270] = {.lex_state = 0}, - [4271] = {.lex_state = 0}, + [4271] = {.lex_state = 86}, [4272] = {.lex_state = 0}, [4273] = {.lex_state = 0}, [4274] = {.lex_state = 0}, @@ -18544,153 +18765,153 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4276] = {.lex_state = 0}, [4277] = {.lex_state = 0}, [4278] = {.lex_state = 0}, - [4279] = {.lex_state = 0}, + [4279] = {.lex_state = 86}, [4280] = {.lex_state = 0}, [4281] = {.lex_state = 0}, - [4282] = {.lex_state = 0}, + [4282] = {.lex_state = 86}, [4283] = {.lex_state = 0}, [4284] = {.lex_state = 0}, [4285] = {.lex_state = 86}, [4286] = {.lex_state = 86}, [4287] = {.lex_state = 0}, - [4288] = {.lex_state = 86}, + [4288] = {.lex_state = 0}, [4289] = {.lex_state = 0}, [4290] = {.lex_state = 86}, [4291] = {.lex_state = 0}, [4292] = {.lex_state = 0}, - [4293] = {.lex_state = 0}, - [4294] = {.lex_state = 0}, + [4293] = {.lex_state = 86}, + [4294] = {.lex_state = 86}, [4295] = {.lex_state = 0}, [4296] = {.lex_state = 0}, [4297] = {.lex_state = 0}, [4298] = {.lex_state = 0}, - [4299] = {.lex_state = 86}, + [4299] = {.lex_state = 0}, [4300] = {.lex_state = 0}, - [4301] = {.lex_state = 86}, + [4301] = {.lex_state = 0}, [4302] = {.lex_state = 0}, - [4303] = {.lex_state = 86}, - [4304] = {.lex_state = 198}, + [4303] = {.lex_state = 0}, + [4304] = {.lex_state = 69}, [4305] = {.lex_state = 0}, [4306] = {.lex_state = 0}, [4307] = {.lex_state = 0}, - [4308] = {.lex_state = 0}, - [4309] = {.lex_state = 86}, - [4310] = {.lex_state = 86}, + [4308] = {.lex_state = 86}, + [4309] = {.lex_state = 0}, + [4310] = {.lex_state = 0}, [4311] = {.lex_state = 86}, [4312] = {.lex_state = 0}, [4313] = {.lex_state = 86}, - [4314] = {.lex_state = 86}, - [4315] = {.lex_state = 0}, + [4314] = {.lex_state = 0}, + [4315] = {.lex_state = 86}, [4316] = {.lex_state = 0}, [4317] = {.lex_state = 0}, [4318] = {.lex_state = 0}, [4319] = {.lex_state = 0}, [4320] = {.lex_state = 0}, - [4321] = {.lex_state = 108}, - [4322] = {.lex_state = 0}, + [4321] = {.lex_state = 0}, + [4322] = {.lex_state = 86}, [4323] = {.lex_state = 0}, [4324] = {.lex_state = 0}, [4325] = {.lex_state = 0}, [4326] = {.lex_state = 0}, [4327] = {.lex_state = 0}, - [4328] = {.lex_state = 108}, - [4329] = {.lex_state = 0}, + [4328] = {.lex_state = 0}, + [4329] = {.lex_state = 86}, [4330] = {.lex_state = 0}, [4331] = {.lex_state = 0}, [4332] = {.lex_state = 0}, - [4333] = {.lex_state = 41}, + [4333] = {.lex_state = 86}, [4334] = {.lex_state = 0}, [4335] = {.lex_state = 0}, - [4336] = {.lex_state = 86}, + [4336] = {.lex_state = 0}, [4337] = {.lex_state = 0}, [4338] = {.lex_state = 0}, - [4339] = {.lex_state = 0}, + [4339] = {.lex_state = 86}, [4340] = {.lex_state = 0}, [4341] = {.lex_state = 0}, [4342] = {.lex_state = 0}, - [4343] = {.lex_state = 205}, + [4343] = {.lex_state = 0}, [4344] = {.lex_state = 0}, - [4345] = {.lex_state = 108}, + [4345] = {.lex_state = 0}, [4346] = {.lex_state = 0}, - [4347] = {.lex_state = 0}, + [4347] = {.lex_state = 86}, [4348] = {.lex_state = 0}, - [4349] = {.lex_state = 108}, + [4349] = {.lex_state = 0}, [4350] = {.lex_state = 0}, [4351] = {.lex_state = 0}, - [4352] = {.lex_state = 0}, + [4352] = {.lex_state = 86}, [4353] = {.lex_state = 0}, - [4354] = {.lex_state = 41}, + [4354] = {.lex_state = 0}, [4355] = {.lex_state = 0}, [4356] = {.lex_state = 0}, - [4357] = {.lex_state = 86}, + [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 = 86}, + [4363] = {.lex_state = 0}, [4364] = {.lex_state = 0}, [4365] = {.lex_state = 0}, - [4366] = {.lex_state = 86}, + [4366] = {.lex_state = 0}, [4367] = {.lex_state = 0}, [4368] = {.lex_state = 0}, [4369] = {.lex_state = 0}, - [4370] = {.lex_state = 108}, - [4371] = {.lex_state = 108}, + [4370] = {.lex_state = 0}, + [4371] = {.lex_state = 0}, [4372] = {.lex_state = 0}, [4373] = {.lex_state = 0}, [4374] = {.lex_state = 0}, [4375] = {.lex_state = 0}, - [4376] = {.lex_state = 0}, + [4376] = {.lex_state = 86}, [4377] = {.lex_state = 0}, - [4378] = {.lex_state = 86}, + [4378] = {.lex_state = 0}, [4379] = {.lex_state = 0}, [4380] = {.lex_state = 0}, - [4381] = {.lex_state = 109}, - [4382] = {.lex_state = 108}, + [4381] = {.lex_state = 0}, + [4382] = {.lex_state = 0}, [4383] = {.lex_state = 0}, [4384] = {.lex_state = 0}, - [4385] = {.lex_state = 86}, + [4385] = {.lex_state = 0}, [4386] = {.lex_state = 0}, [4387] = {.lex_state = 0}, [4388] = {.lex_state = 0}, [4389] = {.lex_state = 0}, [4390] = {.lex_state = 0}, - [4391] = {.lex_state = 108}, + [4391] = {.lex_state = 0}, [4392] = {.lex_state = 0}, [4393] = {.lex_state = 0}, - [4394] = {.lex_state = 109}, + [4394] = {.lex_state = 0}, [4395] = {.lex_state = 0}, - [4396] = {.lex_state = 41}, + [4396] = {.lex_state = 0}, [4397] = {.lex_state = 0}, [4398] = {.lex_state = 0}, [4399] = {.lex_state = 0}, - [4400] = {.lex_state = 0}, - [4401] = {.lex_state = 86}, + [4400] = {.lex_state = 108}, + [4401] = {.lex_state = 0}, [4402] = {.lex_state = 0}, [4403] = {.lex_state = 0}, [4404] = {.lex_state = 0}, - [4405] = {.lex_state = 0}, + [4405] = {.lex_state = 86}, [4406] = {.lex_state = 0}, [4407] = {.lex_state = 0}, [4408] = {.lex_state = 0}, - [4409] = {.lex_state = 0}, + [4409] = {.lex_state = 108}, [4410] = {.lex_state = 0}, [4411] = {.lex_state = 0}, - [4412] = {.lex_state = 108}, + [4412] = {.lex_state = 0}, [4413] = {.lex_state = 0}, [4414] = {.lex_state = 0}, [4415] = {.lex_state = 0}, [4416] = {.lex_state = 0}, [4417] = {.lex_state = 0}, [4418] = {.lex_state = 0}, - [4419] = {.lex_state = 0}, + [4419] = {.lex_state = 108}, [4420] = {.lex_state = 0}, [4421] = {.lex_state = 0}, [4422] = {.lex_state = 0}, [4423] = {.lex_state = 0}, [4424] = {.lex_state = 0}, - [4425] = {.lex_state = 0}, + [4425] = {.lex_state = 201}, [4426] = {.lex_state = 0}, [4427] = {.lex_state = 0}, [4428] = {.lex_state = 0}, @@ -18701,33 +18922,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4433] = {.lex_state = 108}, [4434] = {.lex_state = 0}, [4435] = {.lex_state = 0}, - [4436] = {.lex_state = 0}, + [4436] = {.lex_state = 86}, [4437] = {.lex_state = 0}, [4438] = {.lex_state = 0}, - [4439] = {.lex_state = 86}, + [4439] = {.lex_state = 0}, [4440] = {.lex_state = 0}, [4441] = {.lex_state = 0}, [4442] = {.lex_state = 0}, - [4443] = {.lex_state = 198}, - [4444] = {.lex_state = 86}, - [4445] = {.lex_state = 0}, + [4443] = {.lex_state = 0}, + [4444] = {.lex_state = 0}, + [4445] = {.lex_state = 108}, [4446] = {.lex_state = 0}, [4447] = {.lex_state = 0}, - [4448] = {.lex_state = 86}, + [4448] = {.lex_state = 0}, [4449] = {.lex_state = 0}, [4450] = {.lex_state = 0}, [4451] = {.lex_state = 0}, - [4452] = {.lex_state = 0}, + [4452] = {.lex_state = 108}, [4453] = {.lex_state = 0}, - [4454] = {.lex_state = 108}, + [4454] = {.lex_state = 0}, [4455] = {.lex_state = 0}, [4456] = {.lex_state = 0}, [4457] = {.lex_state = 0}, - [4458] = {.lex_state = 108}, + [4458] = {.lex_state = 0}, [4459] = {.lex_state = 0}, [4460] = {.lex_state = 0}, - [4461] = {.lex_state = 205}, - [4462] = {.lex_state = 0}, + [4461] = {.lex_state = 0}, + [4462] = {.lex_state = 108}, [4463] = {.lex_state = 0}, [4464] = {.lex_state = 0}, [4465] = {.lex_state = 0}, @@ -18735,67 +18956,67 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4467] = {.lex_state = 0}, [4468] = {.lex_state = 0}, [4469] = {.lex_state = 0}, - [4470] = {.lex_state = 108}, + [4470] = {.lex_state = 0}, [4471] = {.lex_state = 0}, [4472] = {.lex_state = 0}, [4473] = {.lex_state = 0}, [4474] = {.lex_state = 0}, - [4475] = {.lex_state = 108}, + [4475] = {.lex_state = 0}, [4476] = {.lex_state = 0}, - [4477] = {.lex_state = 86}, + [4477] = {.lex_state = 0}, [4478] = {.lex_state = 0}, [4479] = {.lex_state = 0}, - [4480] = {.lex_state = 0}, + [4480] = {.lex_state = 86}, [4481] = {.lex_state = 0}, - [4482] = {.lex_state = 86}, - [4483] = {.lex_state = 86}, - [4484] = {.lex_state = 86}, + [4482] = {.lex_state = 0}, + [4483] = {.lex_state = 108}, + [4484] = {.lex_state = 0}, [4485] = {.lex_state = 0}, [4486] = {.lex_state = 0}, - [4487] = {.lex_state = 86}, + [4487] = {.lex_state = 0}, [4488] = {.lex_state = 0}, [4489] = {.lex_state = 0}, [4490] = {.lex_state = 0}, [4491] = {.lex_state = 0}, - [4492] = {.lex_state = 0}, + [4492] = {.lex_state = 41}, [4493] = {.lex_state = 0}, [4494] = {.lex_state = 0}, [4495] = {.lex_state = 0}, [4496] = {.lex_state = 0}, [4497] = {.lex_state = 0}, - [4498] = {.lex_state = 0}, + [4498] = {.lex_state = 86}, [4499] = {.lex_state = 0}, [4500] = {.lex_state = 0}, - [4501] = {.lex_state = 0}, + [4501] = {.lex_state = 41}, [4502] = {.lex_state = 0}, [4503] = {.lex_state = 0}, - [4504] = {.lex_state = 0}, - [4505] = {.lex_state = 0}, - [4506] = {.lex_state = 0}, + [4504] = {.lex_state = 108}, + [4505] = {.lex_state = 86}, + [4506] = {.lex_state = 86}, [4507] = {.lex_state = 0}, [4508] = {.lex_state = 0}, [4509] = {.lex_state = 0}, [4510] = {.lex_state = 0}, - [4511] = {.lex_state = 0}, - [4512] = {.lex_state = 0}, - [4513] = {.lex_state = 0}, - [4514] = {.lex_state = 0}, + [4511] = {.lex_state = 86}, + [4512] = {.lex_state = 86}, + [4513] = {.lex_state = 86}, + [4514] = {.lex_state = 86}, [4515] = {.lex_state = 0}, [4516] = {.lex_state = 0}, - [4517] = {.lex_state = 86}, + [4517] = {.lex_state = 0}, [4518] = {.lex_state = 0}, - [4519] = {.lex_state = 0}, + [4519] = {.lex_state = 86}, [4520] = {.lex_state = 0}, [4521] = {.lex_state = 0}, [4522] = {.lex_state = 0}, [4523] = {.lex_state = 0}, [4524] = {.lex_state = 0}, - [4525] = {.lex_state = 0}, + [4525] = {.lex_state = 108}, [4526] = {.lex_state = 0}, - [4527] = {.lex_state = 0}, - [4528] = {.lex_state = 0}, - [4529] = {.lex_state = 0}, - [4530] = {.lex_state = 0}, + [4527] = {.lex_state = 86}, + [4528] = {.lex_state = 86}, + [4529] = {.lex_state = 86}, + [4530] = {.lex_state = 86}, [4531] = {.lex_state = 0}, [4532] = {.lex_state = 0}, [4533] = {.lex_state = 0}, @@ -18803,15 +19024,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4535] = {.lex_state = 0}, [4536] = {.lex_state = 0}, [4537] = {.lex_state = 0}, - [4538] = {.lex_state = 0}, + [4538] = {.lex_state = 108}, [4539] = {.lex_state = 0}, [4540] = {.lex_state = 0}, - [4541] = {.lex_state = 0}, - [4542] = {.lex_state = 69}, - [4543] = {.lex_state = 86}, - [4544] = {.lex_state = 86}, - [4545] = {.lex_state = 86}, - [4546] = {.lex_state = 0}, + [4541] = {.lex_state = 108}, + [4542] = {.lex_state = 0}, + [4543] = {.lex_state = 0}, + [4544] = {.lex_state = 0}, + [4545] = {.lex_state = 0}, + [4546] = {.lex_state = 108}, [4547] = {.lex_state = 0}, [4548] = {.lex_state = 0}, [4549] = {.lex_state = 0}, @@ -18821,20 +19042,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4553] = {.lex_state = 0}, [4554] = {.lex_state = 0}, [4555] = {.lex_state = 0}, - [4556] = {.lex_state = 86}, - [4557] = {.lex_state = 0}, + [4556] = {.lex_state = 0}, + [4557] = {.lex_state = 86}, [4558] = {.lex_state = 0}, [4559] = {.lex_state = 0}, [4560] = {.lex_state = 0}, [4561] = {.lex_state = 0}, [4562] = {.lex_state = 0}, [4563] = {.lex_state = 0}, - [4564] = {.lex_state = 86}, + [4564] = {.lex_state = 69}, [4565] = {.lex_state = 0}, - [4566] = {.lex_state = 0}, - [4567] = {.lex_state = 86}, - [4568] = {.lex_state = 86}, - [4569] = {.lex_state = 86}, + [4566] = {.lex_state = 86}, + [4567] = {.lex_state = 0}, + [4568] = {.lex_state = 0}, + [4569] = {.lex_state = 0}, [4570] = {.lex_state = 0}, [4571] = {.lex_state = 0}, [4572] = {.lex_state = 0}, @@ -18844,7 +19065,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4576] = {.lex_state = 0}, [4577] = {.lex_state = 0}, [4578] = {.lex_state = 0}, - [4579] = {.lex_state = 0}, + [4579] = {.lex_state = 108}, [4580] = {.lex_state = 0}, [4581] = {.lex_state = 0}, [4582] = {.lex_state = 0}, @@ -18880,14 +19101,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4612] = {.lex_state = 0}, [4613] = {.lex_state = 0}, [4614] = {.lex_state = 0}, - [4615] = {.lex_state = 0}, + [4615] = {.lex_state = 210}, [4616] = {.lex_state = 0}, [4617] = {.lex_state = 0}, [4618] = {.lex_state = 0}, [4619] = {.lex_state = 0}, [4620] = {.lex_state = 0}, [4621] = {.lex_state = 0}, - [4622] = {.lex_state = 86}, + [4622] = {.lex_state = 0}, [4623] = {.lex_state = 0}, [4624] = {.lex_state = 0}, [4625] = {.lex_state = 0}, @@ -18897,9 +19118,82 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4629] = {.lex_state = 0}, [4630] = {.lex_state = 0}, [4631] = {.lex_state = 0}, - [4632] = {(TSStateId)(-1)}, - [4633] = {(TSStateId)(-1)}, - [4634] = {(TSStateId)(-1)}, + [4632] = {.lex_state = 0}, + [4633] = {.lex_state = 0}, + [4634] = {.lex_state = 0}, + [4635] = {.lex_state = 0}, + [4636] = {.lex_state = 0}, + [4637] = {.lex_state = 0}, + [4638] = {.lex_state = 41}, + [4639] = {.lex_state = 0}, + [4640] = {.lex_state = 0}, + [4641] = {.lex_state = 0}, + [4642] = {.lex_state = 0}, + [4643] = {.lex_state = 0}, + [4644] = {.lex_state = 0}, + [4645] = {.lex_state = 210}, + [4646] = {.lex_state = 0}, + [4647] = {.lex_state = 86}, + [4648] = {.lex_state = 0}, + [4649] = {.lex_state = 0}, + [4650] = {.lex_state = 0}, + [4651] = {.lex_state = 0}, + [4652] = {.lex_state = 0}, + [4653] = {.lex_state = 0}, + [4654] = {.lex_state = 0}, + [4655] = {.lex_state = 0}, + [4656] = {.lex_state = 0}, + [4657] = {.lex_state = 0}, + [4658] = {.lex_state = 0}, + [4659] = {.lex_state = 0}, + [4660] = {.lex_state = 0}, + [4661] = {.lex_state = 0}, + [4662] = {.lex_state = 86}, + [4663] = {.lex_state = 0}, + [4664] = {.lex_state = 109}, + [4665] = {.lex_state = 0}, + [4666] = {.lex_state = 0}, + [4667] = {.lex_state = 0}, + [4668] = {.lex_state = 0}, + [4669] = {.lex_state = 0}, + [4670] = {.lex_state = 0}, + [4671] = {.lex_state = 0}, + [4672] = {.lex_state = 0}, + [4673] = {.lex_state = 86}, + [4674] = {.lex_state = 109}, + [4675] = {.lex_state = 0}, + [4676] = {.lex_state = 0}, + [4677] = {.lex_state = 0}, + [4678] = {.lex_state = 86}, + [4679] = {.lex_state = 0}, + [4680] = {.lex_state = 0}, + [4681] = {.lex_state = 0}, + [4682] = {.lex_state = 0}, + [4683] = {.lex_state = 0}, + [4684] = {.lex_state = 0}, + [4685] = {.lex_state = 0}, + [4686] = {.lex_state = 0}, + [4687] = {.lex_state = 0}, + [4688] = {.lex_state = 0}, + [4689] = {.lex_state = 0}, + [4690] = {.lex_state = 86}, + [4691] = {.lex_state = 0}, + [4692] = {.lex_state = 86}, + [4693] = {.lex_state = 0}, + [4694] = {.lex_state = 0}, + [4695] = {.lex_state = 86}, + [4696] = {.lex_state = 0}, + [4697] = {.lex_state = 0}, + [4698] = {.lex_state = 0}, + [4699] = {.lex_state = 0}, + [4700] = {.lex_state = 86}, + [4701] = {.lex_state = 0}, + [4702] = {.lex_state = 0}, + [4703] = {.lex_state = 0}, + [4704] = {.lex_state = 0}, + [4705] = {(TSStateId)(-1)}, + [4706] = {(TSStateId)(-1)}, + [4707] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -18927,7 +19221,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(1), [anon_sym___global] = ACTIONS(1), [anon_sym_type] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), [anon_sym_fn] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), [anon_sym_DASH] = ACTIONS(1), @@ -18958,6 +19251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(1), [anon_sym_spawn] = ACTIONS(1), [anon_sym_json_DOTdecode] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), [anon_sym_LBRACK2] = ACTIONS(1), [anon_sym_TILDE] = ACTIONS(1), [anon_sym_CARET] = ACTIONS(1), @@ -19018,6 +19312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(1), [anon_sym_volatile] = ACTIONS(1), [anon_sym_shared] = ACTIONS(1), + [anon_sym_PIPE2] = ACTIONS(1), [anon_sym_map_LBRACK] = ACTIONS(1), [anon_sym_chan] = ACTIONS(1), [anon_sym_thread] = ACTIONS(1), @@ -19035,110 +19330,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACK] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(4520), + [sym_source_file] = STATE(4656), [sym_shebang] = STATE(2), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), - [sym_module_clause] = STATE(3), - [sym_import_list] = STATE(5), - [sym_import_declaration] = STATE(1583), - [sym_const_declaration] = STATE(1499), - [sym_global_var_declaration] = STATE(1499), - [sym_type_declaration] = STATE(1499), - [sym_function_declaration] = STATE(1499), - [sym_static_method_declaration] = STATE(1499), - [sym_struct_declaration] = STATE(1499), - [sym_enum_declaration] = STATE(1499), - [sym_interface_declaration] = STATE(1499), + [sym_module_clause] = STATE(4), + [sym_import_list] = STATE(10), + [sym_import_declaration] = STATE(1624), + [sym_const_declaration] = STATE(1595), + [sym_global_var_declaration] = STATE(1595), + [sym_type_declaration] = STATE(1595), + [sym_function_declaration] = STATE(1595), + [sym_static_method_declaration] = STATE(1595), + [sym_struct_declaration] = STATE(1595), + [sym_enum_declaration] = STATE(1595), + [sym_interface_declaration] = STATE(1595), [sym__expression] = STATE(214), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_strictly_expression_list] = STATE(1501), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_strictly_expression_list] = STATE(1584), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), [sym_if_expression] = STATE(476), [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), [sym_match_expression] = STATE(476), [sym_select_expression] = STATE(476), [sym_lock_expression] = STATE(476), [sym_unsafe_expression] = STATE(476), [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_visibility_modifiers] = STATE(3401), - [sym_mutability_modifiers] = STATE(566), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3313), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement] = STATE(1499), - [sym_simple_statement] = STATE(1489), - [sym_assert_statement] = STATE(1489), - [sym_append_statement] = STATE(1489), - [sym_send_statement] = STATE(1489), - [sym_var_declaration] = STATE(1501), - [sym_assignment_statement] = STATE(1501), - [sym_block] = STATE(1489), - [sym_defer_statement] = STATE(1489), - [sym_goto_statement] = STATE(1489), - [sym_break_statement] = STATE(1489), - [sym_continue_statement] = STATE(1489), - [sym_return_statement] = STATE(1489), - [sym_label_definition] = STATE(63), - [sym_labeled_statement] = STATE(1489), - [sym_compile_time_for_statement] = STATE(1489), - [sym_for_statement] = STATE(1489), - [sym_hash_statement] = STATE(1489), - [sym_asm_statement] = STATE(1489), - [sym_attributes] = STATE(3365), - [sym_attribute] = STATE(3292), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_import_list_repeat1] = STATE(1505), - [aux_sym_attributes_repeat1] = STATE(3332), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_visibility_modifiers] = STATE(3473), + [sym_mutability_modifiers] = STATE(685), + [sym_mutable_expression] = STATE(3335), + [sym_expression_list] = STATE(3357), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement] = STATE(1595), + [sym_simple_statement] = STATE(1568), + [sym_assert_statement] = STATE(1568), + [sym_append_statement] = STATE(1568), + [sym_send_statement] = STATE(1568), + [sym_var_declaration] = STATE(1584), + [sym_assignment_statement] = STATE(1584), + [sym_block] = STATE(1568), + [sym_defer_statement] = STATE(1568), + [sym_goto_statement] = STATE(1568), + [sym_break_statement] = STATE(1568), + [sym_continue_statement] = STATE(1568), + [sym_return_statement] = STATE(1568), + [sym_label_definition] = STATE(64), + [sym_labeled_statement] = STATE(1568), + [sym_compile_time_for_statement] = STATE(1568), + [sym_for_statement] = STATE(1568), + [sym_hash_statement] = STATE(1568), + [sym_asm_statement] = STATE(1568), + [sym_attributes] = STATE(3426), + [sym_attribute] = STATE(3387), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_import_list_repeat1] = STATE(1544), + [aux_sym_attributes_repeat1] = STATE(3393), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_POUND_BANG] = ACTIONS(11), @@ -19214,106 +19509,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [2] = { [sym_line_comment] = STATE(2), [sym_block_comment] = STATE(2), - [sym_module_clause] = STATE(4), - [sym_import_list] = STATE(8), - [sym_import_declaration] = STATE(1583), - [sym_const_declaration] = STATE(1499), - [sym_global_var_declaration] = STATE(1499), - [sym_type_declaration] = STATE(1499), - [sym_function_declaration] = STATE(1499), - [sym_static_method_declaration] = STATE(1499), - [sym_struct_declaration] = STATE(1499), - [sym_enum_declaration] = STATE(1499), - [sym_interface_declaration] = STATE(1499), + [sym_module_clause] = STATE(3), + [sym_import_list] = STATE(6), + [sym_import_declaration] = STATE(1624), + [sym_const_declaration] = STATE(1595), + [sym_global_var_declaration] = STATE(1595), + [sym_type_declaration] = STATE(1595), + [sym_function_declaration] = STATE(1595), + [sym_static_method_declaration] = STATE(1595), + [sym_struct_declaration] = STATE(1595), + [sym_enum_declaration] = STATE(1595), + [sym_interface_declaration] = STATE(1595), [sym__expression] = STATE(214), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_strictly_expression_list] = STATE(1501), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_strictly_expression_list] = STATE(1584), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), [sym_if_expression] = STATE(476), [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), [sym_match_expression] = STATE(476), [sym_select_expression] = STATE(476), [sym_lock_expression] = STATE(476), [sym_unsafe_expression] = STATE(476), [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_visibility_modifiers] = STATE(3401), - [sym_mutability_modifiers] = STATE(566), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3313), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement] = STATE(1499), - [sym_simple_statement] = STATE(1489), - [sym_assert_statement] = STATE(1489), - [sym_append_statement] = STATE(1489), - [sym_send_statement] = STATE(1489), - [sym_var_declaration] = STATE(1501), - [sym_assignment_statement] = STATE(1501), - [sym_block] = STATE(1489), - [sym_defer_statement] = STATE(1489), - [sym_goto_statement] = STATE(1489), - [sym_break_statement] = STATE(1489), - [sym_continue_statement] = STATE(1489), - [sym_return_statement] = STATE(1489), - [sym_label_definition] = STATE(63), - [sym_labeled_statement] = STATE(1489), - [sym_compile_time_for_statement] = STATE(1489), - [sym_for_statement] = STATE(1489), - [sym_hash_statement] = STATE(1489), - [sym_asm_statement] = STATE(1489), - [sym_attributes] = STATE(3365), - [sym_attribute] = STATE(3292), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_import_list_repeat1] = STATE(1505), - [aux_sym_attributes_repeat1] = STATE(3332), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_visibility_modifiers] = STATE(3473), + [sym_mutability_modifiers] = STATE(685), + [sym_mutable_expression] = STATE(3335), + [sym_expression_list] = STATE(3357), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement] = STATE(1595), + [sym_simple_statement] = STATE(1568), + [sym_assert_statement] = STATE(1568), + [sym_append_statement] = STATE(1568), + [sym_send_statement] = STATE(1568), + [sym_var_declaration] = STATE(1584), + [sym_assignment_statement] = STATE(1584), + [sym_block] = STATE(1568), + [sym_defer_statement] = STATE(1568), + [sym_goto_statement] = STATE(1568), + [sym_break_statement] = STATE(1568), + [sym_continue_statement] = STATE(1568), + [sym_return_statement] = STATE(1568), + [sym_label_definition] = STATE(64), + [sym_labeled_statement] = STATE(1568), + [sym_compile_time_for_statement] = STATE(1568), + [sym_for_statement] = STATE(1568), + [sym_hash_statement] = STATE(1568), + [sym_asm_statement] = STATE(1568), + [sym_attributes] = STATE(3426), + [sym_attribute] = STATE(3387), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_import_list_repeat1] = STATE(1544), + [aux_sym_attributes_repeat1] = STATE(3393), [ts_builtin_sym_end] = ACTIONS(127), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -19389,105 +19684,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), [sym_import_list] = STATE(8), - [sym_import_declaration] = STATE(1583), - [sym_const_declaration] = STATE(1499), - [sym_global_var_declaration] = STATE(1499), - [sym_type_declaration] = STATE(1499), - [sym_function_declaration] = STATE(1499), - [sym_static_method_declaration] = STATE(1499), - [sym_struct_declaration] = STATE(1499), - [sym_enum_declaration] = STATE(1499), - [sym_interface_declaration] = STATE(1499), + [sym_import_declaration] = STATE(1624), + [sym_const_declaration] = STATE(1595), + [sym_global_var_declaration] = STATE(1595), + [sym_type_declaration] = STATE(1595), + [sym_function_declaration] = STATE(1595), + [sym_static_method_declaration] = STATE(1595), + [sym_struct_declaration] = STATE(1595), + [sym_enum_declaration] = STATE(1595), + [sym_interface_declaration] = STATE(1595), [sym__expression] = STATE(214), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_strictly_expression_list] = STATE(1501), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_strictly_expression_list] = STATE(1584), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), [sym_if_expression] = STATE(476), [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), [sym_match_expression] = STATE(476), [sym_select_expression] = STATE(476), [sym_lock_expression] = STATE(476), [sym_unsafe_expression] = STATE(476), [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_visibility_modifiers] = STATE(3401), - [sym_mutability_modifiers] = STATE(566), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3313), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement] = STATE(1499), - [sym_simple_statement] = STATE(1489), - [sym_assert_statement] = STATE(1489), - [sym_append_statement] = STATE(1489), - [sym_send_statement] = STATE(1489), - [sym_var_declaration] = STATE(1501), - [sym_assignment_statement] = STATE(1501), - [sym_block] = STATE(1489), - [sym_defer_statement] = STATE(1489), - [sym_goto_statement] = STATE(1489), - [sym_break_statement] = STATE(1489), - [sym_continue_statement] = STATE(1489), - [sym_return_statement] = STATE(1489), - [sym_label_definition] = STATE(63), - [sym_labeled_statement] = STATE(1489), - [sym_compile_time_for_statement] = STATE(1489), - [sym_for_statement] = STATE(1489), - [sym_hash_statement] = STATE(1489), - [sym_asm_statement] = STATE(1489), - [sym_attributes] = STATE(3381), - [sym_attribute] = STATE(3292), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_visibility_modifiers] = STATE(3473), + [sym_mutability_modifiers] = STATE(685), + [sym_mutable_expression] = STATE(3335), + [sym_expression_list] = STATE(3357), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement] = STATE(1595), + [sym_simple_statement] = STATE(1568), + [sym_assert_statement] = STATE(1568), + [sym_append_statement] = STATE(1568), + [sym_send_statement] = STATE(1568), + [sym_var_declaration] = STATE(1584), + [sym_assignment_statement] = STATE(1584), + [sym_block] = STATE(1568), + [sym_defer_statement] = STATE(1568), + [sym_goto_statement] = STATE(1568), + [sym_break_statement] = STATE(1568), + [sym_continue_statement] = STATE(1568), + [sym_return_statement] = STATE(1568), + [sym_label_definition] = STATE(64), + [sym_labeled_statement] = STATE(1568), + [sym_compile_time_for_statement] = STATE(1568), + [sym_for_statement] = STATE(1568), + [sym_hash_statement] = STATE(1568), + [sym_asm_statement] = STATE(1568), + [sym_attributes] = STATE(3432), + [sym_attribute] = STATE(3387), [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_import_list_repeat1] = STATE(1505), - [aux_sym_attributes_repeat1] = STATE(3332), - [ts_builtin_sym_end] = ACTIONS(127), + [aux_sym_import_list_repeat1] = STATE(1544), + [aux_sym_attributes_repeat1] = STATE(3393), + [ts_builtin_sym_end] = ACTIONS(131), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -19560,106 +19855,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [4] = { [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), - [sym_import_list] = STATE(7), - [sym_import_declaration] = STATE(1583), - [sym_const_declaration] = STATE(1499), - [sym_global_var_declaration] = STATE(1499), - [sym_type_declaration] = STATE(1499), - [sym_function_declaration] = STATE(1499), - [sym_static_method_declaration] = STATE(1499), - [sym_struct_declaration] = STATE(1499), - [sym_enum_declaration] = STATE(1499), - [sym_interface_declaration] = STATE(1499), + [sym_import_list] = STATE(6), + [sym_import_declaration] = STATE(1624), + [sym_const_declaration] = STATE(1595), + [sym_global_var_declaration] = STATE(1595), + [sym_type_declaration] = STATE(1595), + [sym_function_declaration] = STATE(1595), + [sym_static_method_declaration] = STATE(1595), + [sym_struct_declaration] = STATE(1595), + [sym_enum_declaration] = STATE(1595), + [sym_interface_declaration] = STATE(1595), [sym__expression] = STATE(214), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_strictly_expression_list] = STATE(1501), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_strictly_expression_list] = STATE(1584), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), [sym_if_expression] = STATE(476), [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), [sym_match_expression] = STATE(476), [sym_select_expression] = STATE(476), [sym_lock_expression] = STATE(476), [sym_unsafe_expression] = STATE(476), [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_visibility_modifiers] = STATE(3401), - [sym_mutability_modifiers] = STATE(566), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3313), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement] = STATE(1499), - [sym_simple_statement] = STATE(1489), - [sym_assert_statement] = STATE(1489), - [sym_append_statement] = STATE(1489), - [sym_send_statement] = STATE(1489), - [sym_var_declaration] = STATE(1501), - [sym_assignment_statement] = STATE(1501), - [sym_block] = STATE(1489), - [sym_defer_statement] = STATE(1489), - [sym_goto_statement] = STATE(1489), - [sym_break_statement] = STATE(1489), - [sym_continue_statement] = STATE(1489), - [sym_return_statement] = STATE(1489), - [sym_label_definition] = STATE(63), - [sym_labeled_statement] = STATE(1489), - [sym_compile_time_for_statement] = STATE(1489), - [sym_for_statement] = STATE(1489), - [sym_hash_statement] = STATE(1489), - [sym_asm_statement] = STATE(1489), - [sym_attributes] = STATE(3381), - [sym_attribute] = STATE(3292), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_import_list_repeat1] = STATE(1505), - [aux_sym_attributes_repeat1] = STATE(3332), - [ts_builtin_sym_end] = ACTIONS(131), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_visibility_modifiers] = STATE(3473), + [sym_mutability_modifiers] = STATE(685), + [sym_mutable_expression] = STATE(3335), + [sym_expression_list] = STATE(3357), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement] = STATE(1595), + [sym_simple_statement] = STATE(1568), + [sym_assert_statement] = STATE(1568), + [sym_append_statement] = STATE(1568), + [sym_send_statement] = STATE(1568), + [sym_var_declaration] = STATE(1584), + [sym_assignment_statement] = STATE(1584), + [sym_block] = STATE(1568), + [sym_defer_statement] = STATE(1568), + [sym_goto_statement] = STATE(1568), + [sym_break_statement] = STATE(1568), + [sym_continue_statement] = STATE(1568), + [sym_return_statement] = STATE(1568), + [sym_label_definition] = STATE(64), + [sym_labeled_statement] = STATE(1568), + [sym_compile_time_for_statement] = STATE(1568), + [sym_for_statement] = STATE(1568), + [sym_hash_statement] = STATE(1568), + [sym_asm_statement] = STATE(1568), + [sym_attributes] = STATE(3432), + [sym_attribute] = STATE(3387), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_import_list_repeat1] = STATE(1544), + [aux_sym_attributes_repeat1] = STATE(3393), + [ts_builtin_sym_end] = ACTIONS(127), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -19732,103 +20027,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [5] = { [sym_line_comment] = STATE(5), [sym_block_comment] = STATE(5), - [sym_const_declaration] = STATE(1499), - [sym_global_var_declaration] = STATE(1499), - [sym_type_declaration] = STATE(1499), - [sym_function_declaration] = STATE(1499), - [sym_static_method_declaration] = STATE(1499), - [sym_struct_declaration] = STATE(1499), - [sym_enum_declaration] = STATE(1499), - [sym_interface_declaration] = STATE(1499), + [sym_const_declaration] = STATE(1595), + [sym_global_var_declaration] = STATE(1595), + [sym_type_declaration] = STATE(1595), + [sym_function_declaration] = STATE(1595), + [sym_static_method_declaration] = STATE(1595), + [sym_struct_declaration] = STATE(1595), + [sym_enum_declaration] = STATE(1595), + [sym_interface_declaration] = STATE(1595), [sym__expression] = STATE(214), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_strictly_expression_list] = STATE(1501), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_strictly_expression_list] = STATE(1584), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), [sym_if_expression] = STATE(476), [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), [sym_match_expression] = STATE(476), [sym_select_expression] = STATE(476), [sym_lock_expression] = STATE(476), [sym_unsafe_expression] = STATE(476), [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_visibility_modifiers] = STATE(3401), - [sym_mutability_modifiers] = STATE(566), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3313), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement] = STATE(1499), - [sym_simple_statement] = STATE(1489), - [sym_assert_statement] = STATE(1489), - [sym_append_statement] = STATE(1489), - [sym_send_statement] = STATE(1489), - [sym_var_declaration] = STATE(1501), - [sym_assignment_statement] = STATE(1501), - [sym_block] = STATE(1489), - [sym_defer_statement] = STATE(1489), - [sym_goto_statement] = STATE(1489), - [sym_break_statement] = STATE(1489), - [sym_continue_statement] = STATE(1489), - [sym_return_statement] = STATE(1489), - [sym_label_definition] = STATE(63), - [sym_labeled_statement] = STATE(1489), - [sym_compile_time_for_statement] = STATE(1489), - [sym_for_statement] = STATE(1489), - [sym_hash_statement] = STATE(1489), - [sym_asm_statement] = STATE(1489), - [sym_attributes] = STATE(3381), - [sym_attribute] = STATE(3292), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_attributes_repeat1] = STATE(3332), - [ts_builtin_sym_end] = ACTIONS(127), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_visibility_modifiers] = STATE(3473), + [sym_mutability_modifiers] = STATE(685), + [sym_mutable_expression] = STATE(3335), + [sym_expression_list] = STATE(3357), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement] = STATE(1595), + [sym_simple_statement] = STATE(1568), + [sym_assert_statement] = STATE(1568), + [sym_append_statement] = STATE(1568), + [sym_send_statement] = STATE(1568), + [sym_var_declaration] = STATE(1584), + [sym_assignment_statement] = STATE(1584), + [sym_block] = STATE(1568), + [sym_defer_statement] = STATE(1568), + [sym_goto_statement] = STATE(1568), + [sym_break_statement] = STATE(1568), + [sym_continue_statement] = STATE(1568), + [sym_return_statement] = STATE(1568), + [sym_label_definition] = STATE(64), + [sym_labeled_statement] = STATE(1568), + [sym_compile_time_for_statement] = STATE(1568), + [sym_for_statement] = STATE(1568), + [sym_hash_statement] = STATE(1568), + [sym_asm_statement] = STATE(1568), + [sym_attributes] = STATE(3432), + [sym_attribute] = STATE(3387), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_attributes_repeat1] = STATE(3393), + [ts_builtin_sym_end] = ACTIONS(131), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -19900,103 +20195,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [6] = { [sym_line_comment] = STATE(6), [sym_block_comment] = STATE(6), - [sym_const_declaration] = STATE(1499), - [sym_global_var_declaration] = STATE(1499), - [sym_type_declaration] = STATE(1499), - [sym_function_declaration] = STATE(1499), - [sym_static_method_declaration] = STATE(1499), - [sym_struct_declaration] = STATE(1499), - [sym_enum_declaration] = STATE(1499), - [sym_interface_declaration] = STATE(1499), + [sym_const_declaration] = STATE(1595), + [sym_global_var_declaration] = STATE(1595), + [sym_type_declaration] = STATE(1595), + [sym_function_declaration] = STATE(1595), + [sym_static_method_declaration] = STATE(1595), + [sym_struct_declaration] = STATE(1595), + [sym_enum_declaration] = STATE(1595), + [sym_interface_declaration] = STATE(1595), [sym__expression] = STATE(214), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_strictly_expression_list] = STATE(1501), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_strictly_expression_list] = STATE(1584), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), [sym_if_expression] = STATE(476), [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), [sym_match_expression] = STATE(476), [sym_select_expression] = STATE(476), [sym_lock_expression] = STATE(476), [sym_unsafe_expression] = STATE(476), [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_visibility_modifiers] = STATE(3401), - [sym_mutability_modifiers] = STATE(566), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3313), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement] = STATE(1499), - [sym_simple_statement] = STATE(1489), - [sym_assert_statement] = STATE(1489), - [sym_append_statement] = STATE(1489), - [sym_send_statement] = STATE(1489), - [sym_var_declaration] = STATE(1501), - [sym_assignment_statement] = STATE(1501), - [sym_block] = STATE(1489), - [sym_defer_statement] = STATE(1489), - [sym_goto_statement] = STATE(1489), - [sym_break_statement] = STATE(1489), - [sym_continue_statement] = STATE(1489), - [sym_return_statement] = STATE(1489), - [sym_label_definition] = STATE(63), - [sym_labeled_statement] = STATE(1489), - [sym_compile_time_for_statement] = STATE(1489), - [sym_for_statement] = STATE(1489), - [sym_hash_statement] = STATE(1489), - [sym_asm_statement] = STATE(1489), - [sym_attributes] = STATE(3381), - [sym_attribute] = STATE(3292), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_attributes_repeat1] = STATE(3332), - [ts_builtin_sym_end] = ACTIONS(127), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_visibility_modifiers] = STATE(3473), + [sym_mutability_modifiers] = STATE(685), + [sym_mutable_expression] = STATE(3335), + [sym_expression_list] = STATE(3357), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement] = STATE(1595), + [sym_simple_statement] = STATE(1568), + [sym_assert_statement] = STATE(1568), + [sym_append_statement] = STATE(1568), + [sym_send_statement] = STATE(1568), + [sym_var_declaration] = STATE(1584), + [sym_assignment_statement] = STATE(1584), + [sym_block] = STATE(1568), + [sym_defer_statement] = STATE(1568), + [sym_goto_statement] = STATE(1568), + [sym_break_statement] = STATE(1568), + [sym_continue_statement] = STATE(1568), + [sym_return_statement] = STATE(1568), + [sym_label_definition] = STATE(64), + [sym_labeled_statement] = STATE(1568), + [sym_compile_time_for_statement] = STATE(1568), + [sym_for_statement] = STATE(1568), + [sym_hash_statement] = STATE(1568), + [sym_asm_statement] = STATE(1568), + [sym_attributes] = STATE(3432), + [sym_attribute] = STATE(3387), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_attributes_repeat1] = STATE(3393), + [ts_builtin_sym_end] = ACTIONS(131), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -20068,103 +20363,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [7] = { [sym_line_comment] = STATE(7), [sym_block_comment] = STATE(7), - [sym_const_declaration] = STATE(1499), - [sym_global_var_declaration] = STATE(1499), - [sym_type_declaration] = STATE(1499), - [sym_function_declaration] = STATE(1499), - [sym_static_method_declaration] = STATE(1499), - [sym_struct_declaration] = STATE(1499), - [sym_enum_declaration] = STATE(1499), - [sym_interface_declaration] = STATE(1499), + [sym_const_declaration] = STATE(1595), + [sym_global_var_declaration] = STATE(1595), + [sym_type_declaration] = STATE(1595), + [sym_function_declaration] = STATE(1595), + [sym_static_method_declaration] = STATE(1595), + [sym_struct_declaration] = STATE(1595), + [sym_enum_declaration] = STATE(1595), + [sym_interface_declaration] = STATE(1595), [sym__expression] = STATE(214), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_strictly_expression_list] = STATE(1501), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_strictly_expression_list] = STATE(1584), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), [sym_if_expression] = STATE(476), [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), [sym_match_expression] = STATE(476), [sym_select_expression] = STATE(476), [sym_lock_expression] = STATE(476), [sym_unsafe_expression] = STATE(476), [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_visibility_modifiers] = STATE(3401), - [sym_mutability_modifiers] = STATE(566), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3313), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement] = STATE(1499), - [sym_simple_statement] = STATE(1489), - [sym_assert_statement] = STATE(1489), - [sym_append_statement] = STATE(1489), - [sym_send_statement] = STATE(1489), - [sym_var_declaration] = STATE(1501), - [sym_assignment_statement] = STATE(1501), - [sym_block] = STATE(1489), - [sym_defer_statement] = STATE(1489), - [sym_goto_statement] = STATE(1489), - [sym_break_statement] = STATE(1489), - [sym_continue_statement] = STATE(1489), - [sym_return_statement] = STATE(1489), - [sym_label_definition] = STATE(63), - [sym_labeled_statement] = STATE(1489), - [sym_compile_time_for_statement] = STATE(1489), - [sym_for_statement] = STATE(1489), - [sym_hash_statement] = STATE(1489), - [sym_asm_statement] = STATE(1489), - [sym_attributes] = STATE(3381), - [sym_attribute] = STATE(3292), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_attributes_repeat1] = STATE(3332), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_visibility_modifiers] = STATE(3473), + [sym_mutability_modifiers] = STATE(685), + [sym_mutable_expression] = STATE(3335), + [sym_expression_list] = STATE(3357), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement] = STATE(1595), + [sym_simple_statement] = STATE(1568), + [sym_assert_statement] = STATE(1568), + [sym_append_statement] = STATE(1568), + [sym_send_statement] = STATE(1568), + [sym_var_declaration] = STATE(1584), + [sym_assignment_statement] = STATE(1584), + [sym_block] = STATE(1568), + [sym_defer_statement] = STATE(1568), + [sym_goto_statement] = STATE(1568), + [sym_break_statement] = STATE(1568), + [sym_continue_statement] = STATE(1568), + [sym_return_statement] = STATE(1568), + [sym_label_definition] = STATE(64), + [sym_labeled_statement] = STATE(1568), + [sym_compile_time_for_statement] = STATE(1568), + [sym_for_statement] = STATE(1568), + [sym_hash_statement] = STATE(1568), + [sym_asm_statement] = STATE(1568), + [sym_attributes] = STATE(3432), + [sym_attribute] = STATE(3387), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_attributes_repeat1] = STATE(3393), [ts_builtin_sym_end] = ACTIONS(133), + [sym_identifier] = ACTIONS(135), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(138), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_const] = ACTIONS(144), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym___global] = ACTIONS(150), + [anon_sym_type] = ACTIONS(153), + [anon_sym_fn] = ACTIONS(156), + [anon_sym_PLUS] = ACTIONS(159), + [anon_sym_DASH] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_struct] = ACTIONS(165), + [anon_sym_union] = ACTIONS(168), + [anon_sym_pub] = ACTIONS(171), + [anon_sym_mut] = ACTIONS(174), + [anon_sym_enum] = ACTIONS(177), + [anon_sym_interface] = ACTIONS(180), + [anon_sym_QMARK] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(186), + [anon_sym_go] = ACTIONS(189), + [anon_sym_spawn] = ACTIONS(192), + [anon_sym_json_DOTdecode] = ACTIONS(195), + [anon_sym_LBRACK2] = ACTIONS(198), + [anon_sym_TILDE] = ACTIONS(159), + [anon_sym_CARET] = ACTIONS(159), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_LT_DASH] = ACTIONS(204), + [sym_none] = ACTIONS(207), + [sym_true] = ACTIONS(207), + [sym_false] = ACTIONS(207), + [sym_nil] = ACTIONS(207), + [anon_sym_if] = ACTIONS(210), + [anon_sym_DOLLARif] = ACTIONS(213), + [anon_sym_match] = ACTIONS(216), + [anon_sym_select] = ACTIONS(219), + [anon_sym_lock] = ACTIONS(222), + [anon_sym_rlock] = ACTIONS(222), + [anon_sym_unsafe] = ACTIONS(225), + [anon_sym_sql] = ACTIONS(228), + [sym_int_literal] = ACTIONS(207), + [sym_float_literal] = ACTIONS(231), + [sym_rune_literal] = ACTIONS(231), + [anon_sym_SQUOTE] = ACTIONS(234), + [anon_sym_DQUOTE] = ACTIONS(237), + [anon_sym_c_SQUOTE] = ACTIONS(240), + [anon_sym_c_DQUOTE] = ACTIONS(243), + [anon_sym_r_SQUOTE] = ACTIONS(246), + [anon_sym_r_DQUOTE] = ACTIONS(249), + [sym_pseudo_compile_time_identifier] = ACTIONS(252), + [anon_sym_shared] = ACTIONS(255), + [anon_sym_map_LBRACK] = ACTIONS(258), + [anon_sym_chan] = ACTIONS(261), + [anon_sym_thread] = ACTIONS(264), + [anon_sym_atomic] = ACTIONS(267), + [anon_sym_assert] = ACTIONS(270), + [anon_sym_defer] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(276), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(282), + [anon_sym_return] = ACTIONS(285), + [anon_sym_DOLLARfor] = ACTIONS(288), + [anon_sym_for] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(294), + [anon_sym_asm] = ACTIONS(297), + [anon_sym_AT_LBRACK] = ACTIONS(300), + }, + [8] = { + [sym_line_comment] = STATE(8), + [sym_block_comment] = STATE(8), + [sym_const_declaration] = STATE(1595), + [sym_global_var_declaration] = STATE(1595), + [sym_type_declaration] = STATE(1595), + [sym_function_declaration] = STATE(1595), + [sym_static_method_declaration] = STATE(1595), + [sym_struct_declaration] = STATE(1595), + [sym_enum_declaration] = STATE(1595), + [sym_interface_declaration] = STATE(1595), + [sym__expression] = STATE(214), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_strictly_expression_list] = STATE(1584), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_visibility_modifiers] = STATE(3473), + [sym_mutability_modifiers] = STATE(685), + [sym_mutable_expression] = STATE(3335), + [sym_expression_list] = STATE(3357), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement] = STATE(1595), + [sym_simple_statement] = STATE(1568), + [sym_assert_statement] = STATE(1568), + [sym_append_statement] = STATE(1568), + [sym_send_statement] = STATE(1568), + [sym_var_declaration] = STATE(1584), + [sym_assignment_statement] = STATE(1584), + [sym_block] = STATE(1568), + [sym_defer_statement] = STATE(1568), + [sym_goto_statement] = STATE(1568), + [sym_break_statement] = STATE(1568), + [sym_continue_statement] = STATE(1568), + [sym_return_statement] = STATE(1568), + [sym_label_definition] = STATE(64), + [sym_labeled_statement] = STATE(1568), + [sym_compile_time_for_statement] = STATE(1568), + [sym_for_statement] = STATE(1568), + [sym_hash_statement] = STATE(1568), + [sym_asm_statement] = STATE(1568), + [sym_attributes] = STATE(3432), + [sym_attribute] = STATE(3387), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_attributes_repeat1] = STATE(3393), + [ts_builtin_sym_end] = ACTIONS(303), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -20233,106 +20696,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(123), [anon_sym_AT_LBRACK] = ACTIONS(125), }, - [8] = { - [sym_line_comment] = STATE(8), - [sym_block_comment] = STATE(8), - [sym_const_declaration] = STATE(1499), - [sym_global_var_declaration] = STATE(1499), - [sym_type_declaration] = STATE(1499), - [sym_function_declaration] = STATE(1499), - [sym_static_method_declaration] = STATE(1499), - [sym_struct_declaration] = STATE(1499), - [sym_enum_declaration] = STATE(1499), - [sym_interface_declaration] = STATE(1499), + [9] = { + [sym_line_comment] = STATE(9), + [sym_block_comment] = STATE(9), + [sym_const_declaration] = STATE(1595), + [sym_global_var_declaration] = STATE(1595), + [sym_type_declaration] = STATE(1595), + [sym_function_declaration] = STATE(1595), + [sym_static_method_declaration] = STATE(1595), + [sym_struct_declaration] = STATE(1595), + [sym_enum_declaration] = STATE(1595), + [sym_interface_declaration] = STATE(1595), [sym__expression] = STATE(214), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_strictly_expression_list] = STATE(1501), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_strictly_expression_list] = STATE(1584), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), [sym_if_expression] = STATE(476), [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), [sym_match_expression] = STATE(476), [sym_select_expression] = STATE(476), [sym_lock_expression] = STATE(476), [sym_unsafe_expression] = STATE(476), [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_visibility_modifiers] = STATE(3401), - [sym_mutability_modifiers] = STATE(566), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3313), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement] = STATE(1499), - [sym_simple_statement] = STATE(1489), - [sym_assert_statement] = STATE(1489), - [sym_append_statement] = STATE(1489), - [sym_send_statement] = STATE(1489), - [sym_var_declaration] = STATE(1501), - [sym_assignment_statement] = STATE(1501), - [sym_block] = STATE(1489), - [sym_defer_statement] = STATE(1489), - [sym_goto_statement] = STATE(1489), - [sym_break_statement] = STATE(1489), - [sym_continue_statement] = STATE(1489), - [sym_return_statement] = STATE(1489), - [sym_label_definition] = STATE(63), - [sym_labeled_statement] = STATE(1489), - [sym_compile_time_for_statement] = STATE(1489), - [sym_for_statement] = STATE(1489), - [sym_hash_statement] = STATE(1489), - [sym_asm_statement] = STATE(1489), - [sym_attributes] = STATE(3381), - [sym_attribute] = STATE(3292), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_attributes_repeat1] = STATE(3332), - [ts_builtin_sym_end] = ACTIONS(131), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_visibility_modifiers] = STATE(3473), + [sym_mutability_modifiers] = STATE(685), + [sym_mutable_expression] = STATE(3335), + [sym_expression_list] = STATE(3357), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement] = STATE(1595), + [sym_simple_statement] = STATE(1568), + [sym_assert_statement] = STATE(1568), + [sym_append_statement] = STATE(1568), + [sym_send_statement] = STATE(1568), + [sym_var_declaration] = STATE(1584), + [sym_assignment_statement] = STATE(1584), + [sym_block] = STATE(1568), + [sym_defer_statement] = STATE(1568), + [sym_goto_statement] = STATE(1568), + [sym_break_statement] = STATE(1568), + [sym_continue_statement] = STATE(1568), + [sym_return_statement] = STATE(1568), + [sym_label_definition] = STATE(64), + [sym_labeled_statement] = STATE(1568), + [sym_compile_time_for_statement] = STATE(1568), + [sym_for_statement] = STATE(1568), + [sym_hash_statement] = STATE(1568), + [sym_asm_statement] = STATE(1568), + [sym_attributes] = STATE(3432), + [sym_attribute] = STATE(3387), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_attributes_repeat1] = STATE(3393), + [ts_builtin_sym_end] = ACTIONS(303), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -20401,106 +20864,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(123), [anon_sym_AT_LBRACK] = ACTIONS(125), }, - [9] = { - [sym_line_comment] = STATE(9), - [sym_block_comment] = STATE(9), - [sym_const_declaration] = STATE(1499), - [sym_global_var_declaration] = STATE(1499), - [sym_type_declaration] = STATE(1499), - [sym_function_declaration] = STATE(1499), - [sym_static_method_declaration] = STATE(1499), - [sym_struct_declaration] = STATE(1499), - [sym_enum_declaration] = STATE(1499), - [sym_interface_declaration] = STATE(1499), + [10] = { + [sym_line_comment] = STATE(10), + [sym_block_comment] = STATE(10), + [sym_const_declaration] = STATE(1595), + [sym_global_var_declaration] = STATE(1595), + [sym_type_declaration] = STATE(1595), + [sym_function_declaration] = STATE(1595), + [sym_static_method_declaration] = STATE(1595), + [sym_struct_declaration] = STATE(1595), + [sym_enum_declaration] = STATE(1595), + [sym_interface_declaration] = STATE(1595), [sym__expression] = STATE(214), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_strictly_expression_list] = STATE(1501), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_strictly_expression_list] = STATE(1584), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), [sym_if_expression] = STATE(476), [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), [sym_match_expression] = STATE(476), [sym_select_expression] = STATE(476), [sym_lock_expression] = STATE(476), [sym_unsafe_expression] = STATE(476), [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_visibility_modifiers] = STATE(3401), - [sym_mutability_modifiers] = STATE(566), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3313), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement] = STATE(1499), - [sym_simple_statement] = STATE(1489), - [sym_assert_statement] = STATE(1489), - [sym_append_statement] = STATE(1489), - [sym_send_statement] = STATE(1489), - [sym_var_declaration] = STATE(1501), - [sym_assignment_statement] = STATE(1501), - [sym_block] = STATE(1489), - [sym_defer_statement] = STATE(1489), - [sym_goto_statement] = STATE(1489), - [sym_break_statement] = STATE(1489), - [sym_continue_statement] = STATE(1489), - [sym_return_statement] = STATE(1489), - [sym_label_definition] = STATE(63), - [sym_labeled_statement] = STATE(1489), - [sym_compile_time_for_statement] = STATE(1489), - [sym_for_statement] = STATE(1489), - [sym_hash_statement] = STATE(1489), - [sym_asm_statement] = STATE(1489), - [sym_attributes] = STATE(3381), - [sym_attribute] = STATE(3292), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_attributes_repeat1] = STATE(3332), - [ts_builtin_sym_end] = ACTIONS(131), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_visibility_modifiers] = STATE(3473), + [sym_mutability_modifiers] = STATE(685), + [sym_mutable_expression] = STATE(3335), + [sym_expression_list] = STATE(3357), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement] = STATE(1595), + [sym_simple_statement] = STATE(1568), + [sym_assert_statement] = STATE(1568), + [sym_append_statement] = STATE(1568), + [sym_send_statement] = STATE(1568), + [sym_var_declaration] = STATE(1584), + [sym_assignment_statement] = STATE(1584), + [sym_block] = STATE(1568), + [sym_defer_statement] = STATE(1568), + [sym_goto_statement] = STATE(1568), + [sym_break_statement] = STATE(1568), + [sym_continue_statement] = STATE(1568), + [sym_return_statement] = STATE(1568), + [sym_label_definition] = STATE(64), + [sym_labeled_statement] = STATE(1568), + [sym_compile_time_for_statement] = STATE(1568), + [sym_for_statement] = STATE(1568), + [sym_hash_statement] = STATE(1568), + [sym_asm_statement] = STATE(1568), + [sym_attributes] = STATE(3432), + [sym_attribute] = STATE(3387), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_attributes_repeat1] = STATE(3393), + [ts_builtin_sym_end] = ACTIONS(127), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -20569,273 +21032,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(123), [anon_sym_AT_LBRACK] = ACTIONS(125), }, - [10] = { - [sym_line_comment] = STATE(10), - [sym_block_comment] = STATE(10), - [sym_const_declaration] = STATE(1499), - [sym_global_var_declaration] = STATE(1499), - [sym_type_declaration] = STATE(1499), - [sym_function_declaration] = STATE(1499), - [sym_static_method_declaration] = STATE(1499), - [sym_struct_declaration] = STATE(1499), - [sym_enum_declaration] = STATE(1499), - [sym_interface_declaration] = STATE(1499), - [sym__expression] = STATE(214), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_strictly_expression_list] = STATE(1501), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), - [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), - [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), - [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), - [sym_if_expression] = STATE(476), - [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), - [sym_match_expression] = STATE(476), - [sym_select_expression] = STATE(476), - [sym_lock_expression] = STATE(476), - [sym_unsafe_expression] = STATE(476), - [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_visibility_modifiers] = STATE(3401), - [sym_mutability_modifiers] = STATE(566), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3313), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement] = STATE(1499), - [sym_simple_statement] = STATE(1489), - [sym_assert_statement] = STATE(1489), - [sym_append_statement] = STATE(1489), - [sym_send_statement] = STATE(1489), - [sym_var_declaration] = STATE(1501), - [sym_assignment_statement] = STATE(1501), - [sym_block] = STATE(1489), - [sym_defer_statement] = STATE(1489), - [sym_goto_statement] = STATE(1489), - [sym_break_statement] = STATE(1489), - [sym_continue_statement] = STATE(1489), - [sym_return_statement] = STATE(1489), - [sym_label_definition] = STATE(63), - [sym_labeled_statement] = STATE(1489), - [sym_compile_time_for_statement] = STATE(1489), - [sym_for_statement] = STATE(1489), - [sym_hash_statement] = STATE(1489), - [sym_asm_statement] = STATE(1489), - [sym_attributes] = STATE(3381), - [sym_attribute] = STATE(3292), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_attributes_repeat1] = STATE(3332), - [ts_builtin_sym_end] = ACTIONS(135), - [sym_identifier] = ACTIONS(137), - [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), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym___global] = ACTIONS(152), - [anon_sym_type] = ACTIONS(155), - [anon_sym_fn] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_DASH] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(164), - [anon_sym_struct] = ACTIONS(167), - [anon_sym_union] = ACTIONS(170), - [anon_sym_pub] = ACTIONS(173), - [anon_sym_mut] = ACTIONS(176), - [anon_sym_enum] = ACTIONS(179), - [anon_sym_interface] = ACTIONS(182), - [anon_sym_QMARK] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(188), - [anon_sym_go] = ACTIONS(191), - [anon_sym_spawn] = ACTIONS(194), - [anon_sym_json_DOTdecode] = ACTIONS(197), - [anon_sym_LBRACK2] = ACTIONS(200), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_CARET] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(206), - [sym_none] = ACTIONS(209), - [sym_true] = ACTIONS(209), - [sym_false] = ACTIONS(209), - [sym_nil] = ACTIONS(209), - [anon_sym_if] = ACTIONS(212), - [anon_sym_DOLLARif] = ACTIONS(215), - [anon_sym_match] = ACTIONS(218), - [anon_sym_select] = ACTIONS(221), - [anon_sym_lock] = ACTIONS(224), - [anon_sym_rlock] = ACTIONS(224), - [anon_sym_unsafe] = ACTIONS(227), - [anon_sym_sql] = ACTIONS(230), - [sym_int_literal] = ACTIONS(209), - [sym_float_literal] = ACTIONS(233), - [sym_rune_literal] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(239), - [anon_sym_c_SQUOTE] = ACTIONS(242), - [anon_sym_c_DQUOTE] = ACTIONS(245), - [anon_sym_r_SQUOTE] = ACTIONS(248), - [anon_sym_r_DQUOTE] = ACTIONS(251), - [sym_pseudo_compile_time_identifier] = ACTIONS(254), - [anon_sym_shared] = ACTIONS(257), - [anon_sym_map_LBRACK] = ACTIONS(260), - [anon_sym_chan] = ACTIONS(263), - [anon_sym_thread] = ACTIONS(266), - [anon_sym_atomic] = ACTIONS(269), - [anon_sym_assert] = ACTIONS(272), - [anon_sym_defer] = ACTIONS(275), - [anon_sym_goto] = ACTIONS(278), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(284), - [anon_sym_return] = ACTIONS(287), - [anon_sym_DOLLARfor] = ACTIONS(290), - [anon_sym_for] = ACTIONS(293), - [anon_sym_POUND] = ACTIONS(296), - [anon_sym_asm] = ACTIONS(299), - [anon_sym_AT_LBRACK] = ACTIONS(302), - }, [11] = { [sym_line_comment] = STATE(11), [sym_block_comment] = STATE(11), - [sym_const_declaration] = STATE(1499), - [sym_global_var_declaration] = STATE(1499), - [sym_type_declaration] = STATE(1499), - [sym_function_declaration] = STATE(1499), - [sym_static_method_declaration] = STATE(1499), - [sym_struct_declaration] = STATE(1499), - [sym_enum_declaration] = STATE(1499), - [sym_interface_declaration] = STATE(1499), + [sym_const_declaration] = STATE(1595), + [sym_global_var_declaration] = STATE(1595), + [sym_type_declaration] = STATE(1595), + [sym_function_declaration] = STATE(1595), + [sym_static_method_declaration] = STATE(1595), + [sym_struct_declaration] = STATE(1595), + [sym_enum_declaration] = STATE(1595), + [sym_interface_declaration] = STATE(1595), [sym__expression] = STATE(214), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_strictly_expression_list] = STATE(1501), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_strictly_expression_list] = STATE(1584), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), [sym_if_expression] = STATE(476), [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), [sym_match_expression] = STATE(476), [sym_select_expression] = STATE(476), [sym_lock_expression] = STATE(476), [sym_unsafe_expression] = STATE(476), [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_visibility_modifiers] = STATE(3401), - [sym_mutability_modifiers] = STATE(566), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3313), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement] = STATE(1499), - [sym_simple_statement] = STATE(1489), - [sym_assert_statement] = STATE(1489), - [sym_append_statement] = STATE(1489), - [sym_send_statement] = STATE(1489), - [sym_var_declaration] = STATE(1501), - [sym_assignment_statement] = STATE(1501), - [sym_block] = STATE(1489), - [sym_defer_statement] = STATE(1489), - [sym_goto_statement] = STATE(1489), - [sym_break_statement] = STATE(1489), - [sym_continue_statement] = STATE(1489), - [sym_return_statement] = STATE(1489), - [sym_label_definition] = STATE(63), - [sym_labeled_statement] = STATE(1489), - [sym_compile_time_for_statement] = STATE(1489), - [sym_for_statement] = STATE(1489), - [sym_hash_statement] = STATE(1489), - [sym_asm_statement] = STATE(1489), - [sym_attributes] = STATE(3381), - [sym_attribute] = STATE(3292), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_attributes_repeat1] = STATE(3332), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_visibility_modifiers] = STATE(3473), + [sym_mutability_modifiers] = STATE(685), + [sym_mutable_expression] = STATE(3335), + [sym_expression_list] = STATE(3357), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement] = STATE(1595), + [sym_simple_statement] = STATE(1568), + [sym_assert_statement] = STATE(1568), + [sym_append_statement] = STATE(1568), + [sym_send_statement] = STATE(1568), + [sym_var_declaration] = STATE(1584), + [sym_assignment_statement] = STATE(1584), + [sym_block] = STATE(1568), + [sym_defer_statement] = STATE(1568), + [sym_goto_statement] = STATE(1568), + [sym_break_statement] = STATE(1568), + [sym_continue_statement] = STATE(1568), + [sym_return_statement] = STATE(1568), + [sym_label_definition] = STATE(64), + [sym_labeled_statement] = STATE(1568), + [sym_compile_time_for_statement] = STATE(1568), + [sym_for_statement] = STATE(1568), + [sym_hash_statement] = STATE(1568), + [sym_asm_statement] = STATE(1568), + [sym_attributes] = STATE(3432), + [sym_attribute] = STATE(3387), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_attributes_repeat1] = STATE(3393), [ts_builtin_sym_end] = ACTIONS(305), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -20908,103 +21203,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [12] = { [sym_line_comment] = STATE(12), [sym_block_comment] = STATE(12), - [sym_const_declaration] = STATE(1499), - [sym_global_var_declaration] = STATE(1499), - [sym_type_declaration] = STATE(1499), - [sym_function_declaration] = STATE(1499), - [sym_static_method_declaration] = STATE(1499), - [sym_struct_declaration] = STATE(1499), - [sym_enum_declaration] = STATE(1499), - [sym_interface_declaration] = STATE(1499), + [sym_const_declaration] = STATE(1595), + [sym_global_var_declaration] = STATE(1595), + [sym_type_declaration] = STATE(1595), + [sym_function_declaration] = STATE(1595), + [sym_static_method_declaration] = STATE(1595), + [sym_struct_declaration] = STATE(1595), + [sym_enum_declaration] = STATE(1595), + [sym_interface_declaration] = STATE(1595), [sym__expression] = STATE(214), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_strictly_expression_list] = STATE(1501), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_strictly_expression_list] = STATE(1584), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), [sym_if_expression] = STATE(476), [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), [sym_match_expression] = STATE(476), [sym_select_expression] = STATE(476), [sym_lock_expression] = STATE(476), [sym_unsafe_expression] = STATE(476), [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_visibility_modifiers] = STATE(3401), - [sym_mutability_modifiers] = STATE(566), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3313), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement] = STATE(1499), - [sym_simple_statement] = STATE(1489), - [sym_assert_statement] = STATE(1489), - [sym_append_statement] = STATE(1489), - [sym_send_statement] = STATE(1489), - [sym_var_declaration] = STATE(1501), - [sym_assignment_statement] = STATE(1501), - [sym_block] = STATE(1489), - [sym_defer_statement] = STATE(1489), - [sym_goto_statement] = STATE(1489), - [sym_break_statement] = STATE(1489), - [sym_continue_statement] = STATE(1489), - [sym_return_statement] = STATE(1489), - [sym_label_definition] = STATE(63), - [sym_labeled_statement] = STATE(1489), - [sym_compile_time_for_statement] = STATE(1489), - [sym_for_statement] = STATE(1489), - [sym_hash_statement] = STATE(1489), - [sym_asm_statement] = STATE(1489), - [sym_attributes] = STATE(3381), - [sym_attribute] = STATE(3292), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_attributes_repeat1] = STATE(3332), - [ts_builtin_sym_end] = ACTIONS(133), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_visibility_modifiers] = STATE(3473), + [sym_mutability_modifiers] = STATE(685), + [sym_mutable_expression] = STATE(3335), + [sym_expression_list] = STATE(3357), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement] = STATE(1595), + [sym_simple_statement] = STATE(1568), + [sym_assert_statement] = STATE(1568), + [sym_append_statement] = STATE(1568), + [sym_send_statement] = STATE(1568), + [sym_var_declaration] = STATE(1584), + [sym_assignment_statement] = STATE(1584), + [sym_block] = STATE(1568), + [sym_defer_statement] = STATE(1568), + [sym_goto_statement] = STATE(1568), + [sym_break_statement] = STATE(1568), + [sym_continue_statement] = STATE(1568), + [sym_return_statement] = STATE(1568), + [sym_label_definition] = STATE(64), + [sym_labeled_statement] = STATE(1568), + [sym_compile_time_for_statement] = STATE(1568), + [sym_for_statement] = STATE(1568), + [sym_hash_statement] = STATE(1568), + [sym_asm_statement] = STATE(1568), + [sym_attributes] = STATE(3432), + [sym_attribute] = STATE(3387), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_attributes_repeat1] = STATE(3393), + [ts_builtin_sym_end] = ACTIONS(127), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -21076,93 +21371,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [13] = { [sym_line_comment] = STATE(13), [sym_block_comment] = STATE(13), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4561), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4610), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(238), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [aux_sym_map_init_expression_repeat1] = STATE(268), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -21227,93 +21522,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [14] = { [sym_line_comment] = STATE(14), [sym_block_comment] = STATE(14), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4476), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4686), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(241), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [aux_sym_map_init_expression_repeat1] = STATE(268), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -21378,93 +21673,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [15] = { [sym_line_comment] = STATE(15), [sym_block_comment] = STATE(15), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4561), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4671), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(238), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [aux_sym_map_init_expression_repeat1] = STATE(295), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -21529,93 +21824,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [16] = { [sym_line_comment] = STATE(16), [sym_block_comment] = STATE(16), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4404), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4580), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(238), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [aux_sym_map_init_expression_repeat1] = STATE(268), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -21680,93 +21975,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [17] = { [sym_line_comment] = STATE(17), [sym_block_comment] = STATE(17), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4561), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4610), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(238), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [aux_sym_map_init_expression_repeat1] = STATE(268), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -21831,93 +22126,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [18] = { [sym_line_comment] = STATE(18), [sym_block_comment] = STATE(18), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4560), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4424), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(238), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [aux_sym_map_init_expression_repeat1] = STATE(268), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -21982,93 +22277,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [19] = { [sym_line_comment] = STATE(19), [sym_block_comment] = STATE(19), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4630), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4640), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(238), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [aux_sym_map_init_expression_repeat1] = STATE(268), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -22133,93 +22428,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [20] = { [sym_line_comment] = STATE(20), [sym_block_comment] = STATE(20), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4509), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4493), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(238), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [aux_sym_map_init_expression_repeat1] = STATE(268), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -22284,93 +22579,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [21] = { [sym_line_comment] = STATE(21), [sym_block_comment] = STATE(21), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4611), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4534), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(238), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [aux_sym_map_init_expression_repeat1] = STATE(268), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -22435,93 +22730,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [22] = { [sym_line_comment] = STATE(22), [sym_block_comment] = STATE(22), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4561), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4509), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(238), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [aux_sym_map_init_expression_repeat1] = STATE(268), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -22586,93 +22881,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [23] = { [sym_line_comment] = STATE(23), [sym_block_comment] = STATE(23), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4408), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4410), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(238), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [aux_sym_map_init_expression_repeat1] = STATE(268), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -22737,93 +23032,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [24] = { [sym_line_comment] = STATE(24), [sym_block_comment] = STATE(24), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4408), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4507), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(238), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [aux_sym_map_init_expression_repeat1] = STATE(268), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -22888,93 +23183,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [25] = { [sym_line_comment] = STATE(25), [sym_block_comment] = STATE(25), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4557), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4410), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(238), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [aux_sym_map_init_expression_repeat1] = STATE(268), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -23039,93 +23334,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [26] = { [sym_line_comment] = STATE(26), [sym_block_comment] = STATE(26), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4630), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4578), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(238), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [aux_sym_map_init_expression_repeat1] = STATE(268), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -23190,93 +23485,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [27] = { [sym_line_comment] = STATE(27), [sym_block_comment] = STATE(27), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4395), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4671), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [aux_sym_map_init_expression_repeat1] = STATE(268), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -23341,93 +23636,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [28] = { [sym_line_comment] = STATE(28), [sym_block_comment] = STATE(28), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4536), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4580), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(238), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [aux_sym_map_init_expression_repeat1] = STATE(268), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -23492,99 +23787,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [29] = { [sym_line_comment] = STATE(29), [sym_block_comment] = STATE(29), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4509), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4424), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(238), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [aux_sym_map_init_expression_repeat1] = STATE(268), [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_RBRACE] = ACTIONS(421), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -23643,99 +23938,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [30] = { [sym_line_comment] = STATE(30), [sym_block_comment] = STATE(30), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4509), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4580), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(238), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [aux_sym_map_init_expression_repeat1] = STATE(268), [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_RBRACE] = ACTIONS(423), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -23794,99 +24089,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [31] = { [sym_line_comment] = STATE(31), [sym_block_comment] = STATE(31), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4476), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4534), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(286), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [aux_sym_map_init_expression_repeat1] = STATE(268), [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_RBRACE] = ACTIONS(425), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -23945,99 +24240,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [32] = { [sym_line_comment] = STATE(32), [sym_block_comment] = STATE(32), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4541), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4493), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(238), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [aux_sym_map_init_expression_repeat1] = STATE(268), [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_RBRACE] = ACTIONS(427), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -24096,99 +24391,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [33] = { [sym_line_comment] = STATE(33), [sym_block_comment] = STATE(33), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4611), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4437), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(238), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [aux_sym_map_init_expression_repeat1] = STATE(268), [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_RBRACE] = ACTIONS(429), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -24247,99 +24542,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [34] = { [sym_line_comment] = STATE(34), [sym_block_comment] = STATE(34), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4473), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4410), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(238), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [aux_sym_map_init_expression_repeat1] = STATE(268), [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_RBRACE] = ACTIONS(419), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -24398,99 +24693,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [35] = { [sym_line_comment] = STATE(35), [sym_block_comment] = STATE(35), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4395), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4637), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(241), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [aux_sym_map_init_expression_repeat1] = STATE(295), [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_RBRACE] = ACTIONS(431), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -24549,99 +24844,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [36] = { [sym_line_comment] = STATE(36), [sym_block_comment] = STATE(36), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4541), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4637), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(238), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [aux_sym_map_init_expression_repeat1] = STATE(303), [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_RBRACE] = ACTIONS(431), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -24700,99 +24995,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [37] = { [sym_line_comment] = STATE(37), [sym_block_comment] = STATE(37), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4395), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4671), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(238), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [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_RBRACE] = ACTIONS(433), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -24851,99 +25146,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [38] = { [sym_line_comment] = STATE(38), [sym_block_comment] = STATE(38), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4510), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4410), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(238), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [aux_sym_map_init_expression_repeat1] = STATE(268), [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_RBRACE] = ACTIONS(423), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -25002,93 +25297,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [39] = { [sym_line_comment] = STATE(39), [sym_block_comment] = STATE(39), - [sym__expression] = STATE(1604), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4536), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4437), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [aux_sym_map_init_expression_repeat1] = STATE(238), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [aux_sym_map_init_expression_repeat1] = STATE(268), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -25153,91 +25448,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [40] = { [sym_line_comment] = STATE(40), [sym_block_comment] = STATE(40), - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4403), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4574), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -25302,91 +25597,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [41] = { [sym_line_comment] = STATE(41), [sym_block_comment] = STATE(41), - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4510), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4580), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -25451,91 +25746,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [42] = { [sym_line_comment] = STATE(42), [sym_block_comment] = STATE(42), - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4557), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4637), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -25600,91 +25895,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [43] = { [sym_line_comment] = STATE(43), [sym_block_comment] = STATE(43), - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4536), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4493), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -25749,91 +26044,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [44] = { [sym_line_comment] = STATE(44), [sym_block_comment] = STATE(44), - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4476), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4396), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -25898,91 +26193,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [45] = { [sym_line_comment] = STATE(45), [sym_block_comment] = STATE(45), - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4377), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4507), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26047,91 +26342,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [46] = { [sym_line_comment] = STATE(46), [sym_block_comment] = STATE(46), - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4395), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4669), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26196,91 +26491,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [47] = { [sym_line_comment] = STATE(47), [sym_block_comment] = STATE(47), - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4588), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4610), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26345,91 +26640,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [48] = { [sym_line_comment] = STATE(48), [sym_block_comment] = STATE(48), - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4541), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4437), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26494,91 +26789,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [49] = { [sym_line_comment] = STATE(49), [sym_block_comment] = STATE(49), - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4561), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4697), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26643,91 +26938,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [50] = { [sym_line_comment] = STATE(50), [sym_block_comment] = STATE(50), - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4560), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4592), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26792,91 +27087,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [51] = { [sym_line_comment] = STATE(51), [sym_block_comment] = STATE(51), - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4611), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4410), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26941,91 +27236,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [52] = { [sym_line_comment] = STATE(52), [sym_block_comment] = STATE(52), - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4630), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4568), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27090,91 +27385,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [53] = { [sym_line_comment] = STATE(53), [sym_block_comment] = STATE(53), - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4505), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4424), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27239,91 +27534,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [54] = { [sym_line_comment] = STATE(54), [sym_block_comment] = STATE(54), - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4408), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4578), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27388,91 +27683,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [55] = { [sym_line_comment] = STATE(55), [sym_block_comment] = STATE(55), - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4528), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4534), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27537,91 +27832,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [56] = { [sym_line_comment] = STATE(56), [sym_block_comment] = STATE(56), - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4404), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4640), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27686,91 +27981,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [57] = { [sym_line_comment] = STATE(57), [sym_block_comment] = STATE(57), - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), [sym__statement_list] = STATE(4509), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27835,91 +28130,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [58] = { [sym_line_comment] = STATE(58), [sym_block_comment] = STATE(58), - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4631), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4686), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27984,91 +28279,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [59] = { [sym_line_comment] = STATE(59), [sym_block_comment] = STATE(59), - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement_list] = STATE(4473), - [sym__statement] = STATE(3557), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement_list] = STATE(4671), + [sym__statement] = STATE(3618), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4430), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -28133,90 +28428,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [60] = { [sym_line_comment] = STATE(60), [sym_block_comment] = STATE(60), - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement] = STATE(3633), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement] = STATE(3718), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4445), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4681), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -28281,90 +28576,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [61] = { [sym_line_comment] = STATE(61), [sym_block_comment] = STATE(61), - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement] = STATE(3633), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement] = STATE(3718), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3686), - [sym_empty_labeled_statement] = STATE(4539), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), + [sym_labeled_statement] = STATE(3785), + [sym_empty_labeled_statement] = STATE(4552), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -28429,89 +28724,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [62] = { [sym_line_comment] = STATE(62), [sym_block_comment] = STATE(62), - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement] = STATE(3705), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), - [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(3686), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement] = STATE(3733), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(3785), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -28576,89 +28871,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [63] = { [sym_line_comment] = STATE(63), [sym_block_comment] = STATE(63), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement] = STATE(3733), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(3785), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), + [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), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), + }, + [64] = { + [sym_line_comment] = STATE(64), + [sym_block_comment] = STATE(64), [sym__expression] = STATE(214), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_strictly_expression_list] = STATE(1501), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_strictly_expression_list] = STATE(1584), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), [sym_if_expression] = STATE(476), [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), [sym_match_expression] = STATE(476), [sym_select_expression] = STATE(476), [sym_lock_expression] = STATE(476), [sym_unsafe_expression] = STATE(476), [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_mutability_modifiers] = STATE(566), - [sym_mutable_expression] = STATE(3274), - [sym_expression_list] = STATE(3313), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement] = STATE(1500), - [sym_simple_statement] = STATE(1489), - [sym_assert_statement] = STATE(1489), - [sym_append_statement] = STATE(1489), - [sym_send_statement] = STATE(1489), - [sym_var_declaration] = STATE(1501), - [sym_assignment_statement] = STATE(1501), - [sym_block] = STATE(1489), - [sym_defer_statement] = STATE(1489), - [sym_goto_statement] = STATE(1489), - [sym_break_statement] = STATE(1489), - [sym_continue_statement] = STATE(1489), - [sym_return_statement] = STATE(1489), - [sym_label_definition] = STATE(63), - [sym_labeled_statement] = STATE(1489), - [sym_compile_time_for_statement] = STATE(1489), - [sym_for_statement] = STATE(1489), - [sym_hash_statement] = STATE(1489), - [sym_asm_statement] = STATE(1489), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_mutability_modifiers] = STATE(685), + [sym_mutable_expression] = STATE(3335), + [sym_expression_list] = STATE(3357), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement] = STATE(1545), + [sym_simple_statement] = STATE(1568), + [sym_assert_statement] = STATE(1568), + [sym_append_statement] = STATE(1568), + [sym_send_statement] = STATE(1568), + [sym_var_declaration] = STATE(1584), + [sym_assignment_statement] = STATE(1584), + [sym_block] = STATE(1568), + [sym_defer_statement] = STATE(1568), + [sym_goto_statement] = STATE(1568), + [sym_break_statement] = STATE(1568), + [sym_continue_statement] = STATE(1568), + [sym_return_statement] = STATE(1568), + [sym_label_definition] = STATE(64), + [sym_labeled_statement] = STATE(1568), + [sym_compile_time_for_statement] = STATE(1568), + [sym_for_statement] = STATE(1568), + [sym_hash_statement] = STATE(1568), + [sym_asm_statement] = STATE(1568), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -28719,238 +29160,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(129), [anon_sym_asm] = ACTIONS(123), }, - [64] = { - [sym_line_comment] = STATE(64), - [sym_block_comment] = STATE(64), - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement] = STATE(3633), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), - [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(3686), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), - [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), - [anon_sym_SQUOTE] = ACTIONS(357), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_c_SQUOTE] = ACTIONS(361), - [anon_sym_c_DQUOTE] = ACTIONS(363), - [anon_sym_r_SQUOTE] = ACTIONS(365), - [anon_sym_r_DQUOTE] = ACTIONS(367), - [sym_pseudo_compile_time_identifier] = ACTIONS(369), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_assert] = ACTIONS(371), - [anon_sym_defer] = ACTIONS(373), - [anon_sym_goto] = ACTIONS(375), - [anon_sym_break] = ACTIONS(377), - [anon_sym_continue] = ACTIONS(379), - [anon_sym_return] = ACTIONS(381), - [anon_sym_DOLLARfor] = ACTIONS(383), - [anon_sym_for] = ACTIONS(385), - [anon_sym_POUND] = ACTIONS(387), - [anon_sym_asm] = ACTIONS(389), - }, [65] = { [sym_line_comment] = STATE(65), [sym_block_comment] = STATE(65), - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_strictly_expression_list] = STATE(3732), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(650), - [sym_mutable_expression] = STATE(3277), - [sym_expression_list] = STATE(3319), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__statement] = STATE(3705), - [sym_simple_statement] = STATE(3686), - [sym_assert_statement] = STATE(3686), - [sym_append_statement] = STATE(3686), - [sym_send_statement] = STATE(3686), - [sym_var_declaration] = STATE(3732), - [sym_assignment_statement] = STATE(3732), - [sym_block] = STATE(3686), - [sym_defer_statement] = STATE(3686), - [sym_goto_statement] = STATE(3686), - [sym_break_statement] = STATE(3686), - [sym_continue_statement] = STATE(3686), - [sym_return_statement] = STATE(3686), - [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(3686), - [sym_compile_time_for_statement] = STATE(3686), - [sym_for_statement] = STATE(3686), - [sym_hash_statement] = STATE(3686), - [sym_asm_statement] = STATE(3686), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_strictly_expression_list] = STATE(3770), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(871), + [sym_mutable_expression] = STATE(3334), + [sym_expression_list] = STATE(3367), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__statement] = STATE(3718), + [sym_simple_statement] = STATE(3785), + [sym_assert_statement] = STATE(3785), + [sym_append_statement] = STATE(3785), + [sym_send_statement] = STATE(3785), + [sym_var_declaration] = STATE(3770), + [sym_assignment_statement] = STATE(3770), + [sym_block] = STATE(3785), + [sym_defer_statement] = STATE(3785), + [sym_goto_statement] = STATE(3785), + [sym_break_statement] = STATE(3785), + [sym_continue_statement] = STATE(3785), + [sym_return_statement] = STATE(3785), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(3785), + [sym_compile_time_for_statement] = STATE(3785), + [sym_for_statement] = STATE(3785), + [sym_hash_statement] = STATE(3785), + [sym_asm_statement] = STATE(3785), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -29014,69 +29309,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [66] = { [sym_line_comment] = STATE(66), [sym_block_comment] = STATE(66), - [sym__expression] = STATE(953), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(653), - [sym_mutable_expression] = STATE(1413), - [sym_expression_list] = STATE(1567), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), + [sym__expression] = STATE(954), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(661), + [sym_mutable_expression] = STATE(1455), + [sym_expression_list] = STATE(1525), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), [ts_builtin_sym_end] = ACTIONS(491), [sym_identifier] = ACTIONS(493), [anon_sym_LF] = ACTIONS(495), @@ -29152,26 +29447,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [67] = { [sym_line_comment] = STATE(67), [sym_block_comment] = STATE(67), - [sym_reference_expression] = STATE(4392), - [sym_type_reference_expression] = STATE(267), - [sym_plain_type] = STATE(337), - [sym__plain_type_without_special] = STATE(359), - [sym_anon_struct_type] = STATE(358), - [sym_multi_return_type] = STATE(359), - [sym_result_type] = STATE(359), - [sym_option_type] = STATE(359), - [sym_qualified_type] = STATE(267), - [sym_fixed_array_type] = STATE(358), - [sym_array_type] = STATE(358), - [sym_pointer_type] = STATE(358), - [sym_wrong_pointer_type] = STATE(358), - [sym_map_type] = STATE(358), - [sym_channel_type] = STATE(358), - [sym_shared_type] = STATE(358), - [sym_thread_type] = STATE(358), - [sym_atomic_type] = STATE(358), - [sym_generic_type] = STATE(358), - [sym_function_type] = STATE(358), + [sym_reference_expression] = STATE(4468), + [sym_type_reference_expression] = STATE(287), + [sym_plain_type] = STATE(453), + [sym__plain_type_without_special] = STATE(444), + [sym_anon_struct_type] = STATE(446), + [sym_multi_return_type] = STATE(444), + [sym_result_type] = STATE(444), + [sym_option_type] = STATE(444), + [sym_qualified_type] = STATE(287), + [sym_fixed_array_type] = STATE(446), + [sym_array_type] = STATE(446), + [sym_pointer_type] = STATE(446), + [sym_wrong_pointer_type] = STATE(446), + [sym_map_type] = STATE(446), + [sym_channel_type] = STATE(446), + [sym_shared_type] = STATE(446), + [sym_thread_type] = STATE(446), + [sym_atomic_type] = STATE(446), + [sym_generic_type] = STATE(446), + [sym_function_type] = STATE(446), [ts_builtin_sym_end] = ACTIONS(563), [sym_identifier] = ACTIONS(565), [anon_sym_LF] = ACTIONS(567), @@ -29188,7 +29483,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(567), [anon_sym___global] = ACTIONS(567), [anon_sym_type] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(567), [anon_sym_fn] = ACTIONS(571), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), @@ -29215,6 +29509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(567), [anon_sym_spawn] = ACTIONS(567), [anon_sym_json_DOTdecode] = ACTIONS(567), + [anon_sym_PIPE] = ACTIONS(567), [anon_sym_LBRACK2] = ACTIONS(581), [anon_sym_TILDE] = ACTIONS(567), [anon_sym_CARET] = ACTIONS(567), @@ -29288,28 +29583,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [68] = { [sym_line_comment] = STATE(68), [sym_block_comment] = STATE(68), - [sym_reference_expression] = STATE(4392), - [sym_type_reference_expression] = STATE(267), - [sym_plain_type] = STATE(341), - [sym__plain_type_without_special] = STATE(359), - [sym_anon_struct_type] = STATE(358), - [sym_multi_return_type] = STATE(359), - [sym_result_type] = STATE(359), - [sym_option_type] = STATE(359), - [sym_qualified_type] = STATE(267), - [sym_fixed_array_type] = STATE(358), - [sym_array_type] = STATE(358), - [sym_pointer_type] = STATE(358), - [sym_wrong_pointer_type] = STATE(358), - [sym_map_type] = STATE(358), - [sym_channel_type] = STATE(358), - [sym_shared_type] = STATE(358), - [sym_thread_type] = STATE(358), - [sym_atomic_type] = STATE(358), - [sym_generic_type] = STATE(358), - [sym_function_type] = STATE(358), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2418), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), [ts_builtin_sym_end] = ACTIONS(595), - [sym_identifier] = ACTIONS(565), + [sym_identifier] = ACTIONS(597), [anon_sym_LF] = ACTIONS(597), [anon_sym_CR] = ACTIONS(597), [anon_sym_CR_LF] = ACTIONS(597), @@ -29320,15 +29615,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(597), [anon_sym_COMMA] = ACTIONS(597), [anon_sym_const] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(597), [anon_sym_EQ] = ACTIONS(597), [anon_sym___global] = ACTIONS(597), [anon_sym_type] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(597), [anon_sym_PLUS] = ACTIONS(597), [anon_sym_DASH] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(597), [anon_sym_SLASH] = ACTIONS(597), [anon_sym_PERCENT] = ACTIONS(597), [anon_sym_LT] = ACTIONS(597), @@ -29338,7 +29632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(597), [anon_sym_GT_EQ] = ACTIONS(597), [anon_sym_LBRACK] = ACTIONS(595), - [anon_sym_struct] = ACTIONS(575), + [anon_sym_struct] = ACTIONS(597), [anon_sym_union] = ACTIONS(597), [anon_sym_pub] = ACTIONS(597), [anon_sym_mut] = ACTIONS(597), @@ -29346,15 +29640,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(597), [anon_sym_PLUS_PLUS] = ACTIONS(597), [anon_sym_DASH_DASH] = ACTIONS(597), - [anon_sym_QMARK] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(579), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), [anon_sym_go] = ACTIONS(597), [anon_sym_spawn] = ACTIONS(597), [anon_sym_json_DOTdecode] = ACTIONS(597), - [anon_sym_LBRACK2] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), [anon_sym_TILDE] = ACTIONS(597), [anon_sym_CARET] = ACTIONS(597), - [anon_sym_AMP] = ACTIONS(583), + [anon_sym_AMP] = ACTIONS(597), [anon_sym_LT_DASH] = ACTIONS(597), [anon_sym_LT_LT] = ACTIONS(597), [anon_sym_GT_GT] = ACTIONS(597), @@ -29404,11 +29699,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r_SQUOTE] = ACTIONS(597), [anon_sym_r_DQUOTE] = ACTIONS(597), [sym_pseudo_compile_time_identifier] = ACTIONS(597), - [anon_sym_shared] = ACTIONS(585), - [anon_sym_map_LBRACK] = ACTIONS(587), - [anon_sym_chan] = ACTIONS(589), - [anon_sym_thread] = ACTIONS(591), - [anon_sym_atomic] = ACTIONS(593), + [anon_sym_shared] = ACTIONS(597), + [anon_sym_map_LBRACK] = ACTIONS(597), + [anon_sym_chan] = ACTIONS(597), + [anon_sym_thread] = ACTIONS(597), + [anon_sym_atomic] = ACTIONS(597), [anon_sym_assert] = ACTIONS(597), [anon_sym_defer] = ACTIONS(597), [anon_sym_goto] = ACTIONS(597), @@ -29424,26 +29719,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [69] = { [sym_line_comment] = STATE(69), [sym_block_comment] = STATE(69), - [sym_reference_expression] = STATE(4392), - [sym_type_reference_expression] = STATE(267), - [sym_plain_type] = STATE(352), - [sym__plain_type_without_special] = STATE(359), - [sym_anon_struct_type] = STATE(358), - [sym_multi_return_type] = STATE(359), - [sym_result_type] = STATE(359), - [sym_option_type] = STATE(359), - [sym_qualified_type] = STATE(267), - [sym_fixed_array_type] = STATE(358), - [sym_array_type] = STATE(358), - [sym_pointer_type] = STATE(358), - [sym_wrong_pointer_type] = STATE(358), - [sym_map_type] = STATE(358), - [sym_channel_type] = STATE(358), - [sym_shared_type] = STATE(358), - [sym_thread_type] = STATE(358), - [sym_atomic_type] = STATE(358), - [sym_generic_type] = STATE(358), - [sym_function_type] = STATE(358), + [sym_reference_expression] = STATE(4468), + [sym_type_reference_expression] = STATE(287), + [sym_plain_type] = STATE(499), + [sym__plain_type_without_special] = STATE(444), + [sym_anon_struct_type] = STATE(446), + [sym_multi_return_type] = STATE(444), + [sym_result_type] = STATE(444), + [sym_option_type] = STATE(444), + [sym_qualified_type] = STATE(287), + [sym_fixed_array_type] = STATE(446), + [sym_array_type] = STATE(446), + [sym_pointer_type] = STATE(446), + [sym_wrong_pointer_type] = STATE(446), + [sym_map_type] = STATE(446), + [sym_channel_type] = STATE(446), + [sym_shared_type] = STATE(446), + [sym_thread_type] = STATE(446), + [sym_atomic_type] = STATE(446), + [sym_generic_type] = STATE(446), + [sym_function_type] = STATE(446), [ts_builtin_sym_end] = ACTIONS(599), [sym_identifier] = ACTIONS(565), [anon_sym_LF] = ACTIONS(601), @@ -29460,7 +29755,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(601), [anon_sym___global] = ACTIONS(601), [anon_sym_type] = ACTIONS(601), - [anon_sym_PIPE] = ACTIONS(601), [anon_sym_fn] = ACTIONS(571), [anon_sym_PLUS] = ACTIONS(601), [anon_sym_DASH] = ACTIONS(601), @@ -29487,6 +29781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(601), [anon_sym_spawn] = ACTIONS(601), [anon_sym_json_DOTdecode] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), [anon_sym_LBRACK2] = ACTIONS(581), [anon_sym_TILDE] = ACTIONS(601), [anon_sym_CARET] = ACTIONS(601), @@ -29560,349 +29855,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [70] = { [sym_line_comment] = STATE(70), [sym_block_comment] = STATE(70), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), + [sym_reference_expression] = STATE(4468), + [sym_type_reference_expression] = STATE(287), + [sym_plain_type] = STATE(490), + [sym__plain_type_without_special] = STATE(444), + [sym_anon_struct_type] = STATE(446), + [sym_multi_return_type] = STATE(444), + [sym_result_type] = STATE(444), + [sym_option_type] = STATE(444), + [sym_qualified_type] = STATE(287), + [sym_fixed_array_type] = STATE(446), + [sym_array_type] = STATE(446), + [sym_pointer_type] = STATE(446), + [sym_wrong_pointer_type] = STATE(446), + [sym_map_type] = STATE(446), + [sym_channel_type] = STATE(446), + [sym_shared_type] = STATE(446), + [sym_thread_type] = STATE(446), + [sym_atomic_type] = STATE(446), + [sym_generic_type] = STATE(446), + [sym_function_type] = STATE(446), [ts_builtin_sym_end] = ACTIONS(603), - [sym_identifier] = ACTIONS(605), - [anon_sym_LF] = ACTIONS(607), - [anon_sym_CR] = ACTIONS(607), - [anon_sym_CR_LF] = ACTIONS(607), + [sym_identifier] = ACTIONS(565), + [anon_sym_LF] = ACTIONS(605), + [anon_sym_CR] = ACTIONS(605), + [anon_sym_CR_LF] = ACTIONS(605), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(607), - [anon_sym___global] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_BANG_EQ] = ACTIONS(607), - [anon_sym_LT_EQ] = ACTIONS(607), - [anon_sym_GT_EQ] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(605), + [anon_sym_as] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(605), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_const] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_EQ] = ACTIONS(605), + [anon_sym___global] = ACTIONS(605), + [anon_sym_type] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [anon_sym_LT_EQ] = ACTIONS(605), + [anon_sym_GT_EQ] = ACTIONS(605), [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_union] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_mut] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_interface] = ACTIONS(607), - [anon_sym_PLUS_PLUS] = ACTIONS(607), - [anon_sym_DASH_DASH] = ACTIONS(607), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_go] = ACTIONS(607), - [anon_sym_spawn] = ACTIONS(607), - [anon_sym_json_DOTdecode] = ACTIONS(607), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_DASH] = ACTIONS(607), - [anon_sym_LT_LT] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_GT_GT_GT] = ACTIONS(607), - [anon_sym_AMP_CARET] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [anon_sym_or] = ACTIONS(607), - [sym_none] = ACTIONS(607), - [sym_true] = ACTIONS(607), - [sym_false] = ACTIONS(607), - [sym_nil] = ACTIONS(607), - [anon_sym_QMARK_DOT] = ACTIONS(607), - [anon_sym_POUND_LBRACK] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_DOLLARif] = ACTIONS(607), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(607), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_select] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(607), - [anon_sym_SLASH_EQ] = ACTIONS(607), - [anon_sym_PERCENT_EQ] = ACTIONS(607), - [anon_sym_LT_LT_EQ] = ACTIONS(607), - [anon_sym_GT_GT_EQ] = ACTIONS(607), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(607), - [anon_sym_AMP_EQ] = ACTIONS(607), - [anon_sym_AMP_CARET_EQ] = ACTIONS(607), - [anon_sym_PLUS_EQ] = ACTIONS(607), - [anon_sym_DASH_EQ] = ACTIONS(607), - [anon_sym_PIPE_EQ] = ACTIONS(607), - [anon_sym_CARET_EQ] = ACTIONS(607), - [anon_sym_COLON_EQ] = ACTIONS(607), - [anon_sym_lock] = ACTIONS(607), - [anon_sym_rlock] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_sql] = ACTIONS(607), - [sym_int_literal] = ACTIONS(607), - [sym_float_literal] = ACTIONS(607), - [sym_rune_literal] = ACTIONS(607), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_DQUOTE] = ACTIONS(607), - [anon_sym_c_SQUOTE] = ACTIONS(607), - [anon_sym_c_DQUOTE] = ACTIONS(607), - [anon_sym_r_SQUOTE] = ACTIONS(607), - [anon_sym_r_DQUOTE] = ACTIONS(607), - [sym_pseudo_compile_time_identifier] = ACTIONS(607), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(561), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_assert] = ACTIONS(607), - [anon_sym_defer] = ACTIONS(607), - [anon_sym_goto] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_DOLLARfor] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_POUND] = ACTIONS(607), - [anon_sym_asm] = ACTIONS(607), - [anon_sym_AT_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(575), + [anon_sym_union] = ACTIONS(605), + [anon_sym_pub] = ACTIONS(605), + [anon_sym_mut] = ACTIONS(605), + [anon_sym_enum] = ACTIONS(605), + [anon_sym_interface] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(579), + [anon_sym_go] = ACTIONS(605), + [anon_sym_spawn] = ACTIONS(605), + [anon_sym_json_DOTdecode] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_LBRACK2] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_LT_DASH] = ACTIONS(605), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_GT_GT_GT] = ACTIONS(605), + [anon_sym_AMP_CARET] = ACTIONS(605), + [anon_sym_AMP_AMP] = ACTIONS(605), + [anon_sym_PIPE_PIPE] = ACTIONS(605), + [anon_sym_or] = ACTIONS(605), + [sym_none] = ACTIONS(605), + [sym_true] = ACTIONS(605), + [sym_false] = ACTIONS(605), + [sym_nil] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(605), + [anon_sym_POUND_LBRACK] = ACTIONS(605), + [anon_sym_if] = ACTIONS(605), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_is] = ACTIONS(605), + [anon_sym_BANGis] = ACTIONS(605), + [anon_sym_in] = ACTIONS(605), + [anon_sym_BANGin] = ACTIONS(605), + [anon_sym_match] = ACTIONS(605), + [anon_sym_select] = ACTIONS(605), + [anon_sym_STAR_EQ] = ACTIONS(605), + [anon_sym_SLASH_EQ] = ACTIONS(605), + [anon_sym_PERCENT_EQ] = ACTIONS(605), + [anon_sym_LT_LT_EQ] = ACTIONS(605), + [anon_sym_GT_GT_EQ] = ACTIONS(605), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(605), + [anon_sym_AMP_EQ] = ACTIONS(605), + [anon_sym_AMP_CARET_EQ] = ACTIONS(605), + [anon_sym_PLUS_EQ] = ACTIONS(605), + [anon_sym_DASH_EQ] = ACTIONS(605), + [anon_sym_PIPE_EQ] = ACTIONS(605), + [anon_sym_CARET_EQ] = ACTIONS(605), + [anon_sym_COLON_EQ] = ACTIONS(605), + [anon_sym_lock] = ACTIONS(605), + [anon_sym_rlock] = ACTIONS(605), + [anon_sym_unsafe] = ACTIONS(605), + [anon_sym_sql] = ACTIONS(605), + [sym_int_literal] = ACTIONS(605), + [sym_float_literal] = ACTIONS(605), + [sym_rune_literal] = ACTIONS(605), + [anon_sym_SQUOTE] = ACTIONS(605), + [anon_sym_DQUOTE] = ACTIONS(605), + [anon_sym_c_SQUOTE] = ACTIONS(605), + [anon_sym_c_DQUOTE] = ACTIONS(605), + [anon_sym_r_SQUOTE] = ACTIONS(605), + [anon_sym_r_DQUOTE] = ACTIONS(605), + [sym_pseudo_compile_time_identifier] = ACTIONS(605), + [anon_sym_shared] = ACTIONS(585), + [anon_sym_map_LBRACK] = ACTIONS(587), + [anon_sym_chan] = ACTIONS(589), + [anon_sym_thread] = ACTIONS(591), + [anon_sym_atomic] = ACTIONS(593), + [anon_sym_assert] = ACTIONS(605), + [anon_sym_defer] = ACTIONS(605), + [anon_sym_goto] = ACTIONS(605), + [anon_sym_break] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(605), + [anon_sym_return] = ACTIONS(605), + [anon_sym_DOLLARfor] = ACTIONS(605), + [anon_sym_for] = ACTIONS(605), + [anon_sym_POUND] = ACTIONS(605), + [anon_sym_asm] = ACTIONS(605), + [anon_sym_AT_LBRACK] = ACTIONS(605), }, [71] = { [sym_line_comment] = STATE(71), [sym_block_comment] = STATE(71), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2311), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [ts_builtin_sym_end] = ACTIONS(625), - [sym_identifier] = ACTIONS(627), - [anon_sym_LF] = ACTIONS(627), - [anon_sym_CR] = ACTIONS(627), - [anon_sym_CR_LF] = ACTIONS(627), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2421), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [ts_builtin_sym_end] = ACTIONS(607), + [sym_identifier] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(611), + [anon_sym_CR] = ACTIONS(611), + [anon_sym_CR_LF] = ACTIONS(611), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_COMMA] = ACTIONS(627), - [anon_sym_const] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(627), - [anon_sym_EQ] = ACTIONS(627), - [anon_sym___global] = ACTIONS(627), - [anon_sym_type] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(627), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(627), - [anon_sym_BANG_EQ] = ACTIONS(627), - [anon_sym_LT_EQ] = ACTIONS(627), - [anon_sym_GT_EQ] = ACTIONS(627), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(627), - [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(627), - [anon_sym_BANG] = ACTIONS(627), - [anon_sym_go] = ACTIONS(627), - [anon_sym_spawn] = ACTIONS(627), - [anon_sym_json_DOTdecode] = ACTIONS(627), - [anon_sym_LBRACK2] = ACTIONS(627), - [anon_sym_TILDE] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(627), - [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), - [anon_sym_SQUOTE] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(627), - [anon_sym_c_SQUOTE] = ACTIONS(627), - [anon_sym_c_DQUOTE] = ACTIONS(627), - [anon_sym_r_SQUOTE] = ACTIONS(627), - [anon_sym_r_DQUOTE] = ACTIONS(627), - [sym_pseudo_compile_time_identifier] = ACTIONS(627), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_as] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_const] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_EQ] = ACTIONS(611), + [anon_sym___global] = ACTIONS(611), + [anon_sym_type] = ACTIONS(611), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(611), + [anon_sym_BANG_EQ] = ACTIONS(611), + [anon_sym_LT_EQ] = ACTIONS(611), + [anon_sym_GT_EQ] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_union] = ACTIONS(611), + [anon_sym_pub] = ACTIONS(611), + [anon_sym_mut] = ACTIONS(611), + [anon_sym_enum] = ACTIONS(611), + [anon_sym_interface] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(621), + [anon_sym_go] = ACTIONS(611), + [anon_sym_spawn] = ACTIONS(611), + [anon_sym_json_DOTdecode] = ACTIONS(611), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_DASH] = ACTIONS(611), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(611), + [anon_sym_AMP_CARET] = ACTIONS(611), + [anon_sym_AMP_AMP] = ACTIONS(611), + [anon_sym_PIPE_PIPE] = ACTIONS(611), + [anon_sym_or] = ACTIONS(611), + [sym_none] = ACTIONS(611), + [sym_true] = ACTIONS(611), + [sym_false] = ACTIONS(611), + [sym_nil] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(611), + [anon_sym_if] = ACTIONS(611), + [anon_sym_DOLLARif] = ACTIONS(611), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(611), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(611), + [anon_sym_match] = ACTIONS(611), + [anon_sym_select] = ACTIONS(611), + [anon_sym_STAR_EQ] = ACTIONS(611), + [anon_sym_SLASH_EQ] = ACTIONS(611), + [anon_sym_PERCENT_EQ] = ACTIONS(611), + [anon_sym_LT_LT_EQ] = ACTIONS(611), + [anon_sym_GT_GT_EQ] = ACTIONS(611), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(611), + [anon_sym_AMP_EQ] = ACTIONS(611), + [anon_sym_AMP_CARET_EQ] = ACTIONS(611), + [anon_sym_PLUS_EQ] = ACTIONS(611), + [anon_sym_DASH_EQ] = ACTIONS(611), + [anon_sym_PIPE_EQ] = ACTIONS(611), + [anon_sym_CARET_EQ] = ACTIONS(611), + [anon_sym_COLON_EQ] = ACTIONS(611), + [anon_sym_lock] = ACTIONS(611), + [anon_sym_rlock] = ACTIONS(611), + [anon_sym_unsafe] = ACTIONS(611), + [anon_sym_sql] = ACTIONS(611), + [sym_int_literal] = ACTIONS(611), + [sym_float_literal] = ACTIONS(611), + [sym_rune_literal] = ACTIONS(611), + [anon_sym_SQUOTE] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [anon_sym_c_SQUOTE] = ACTIONS(611), + [anon_sym_c_DQUOTE] = ACTIONS(611), + [anon_sym_r_SQUOTE] = ACTIONS(611), + [anon_sym_r_DQUOTE] = ACTIONS(611), + [sym_pseudo_compile_time_identifier] = ACTIONS(611), [anon_sym_shared] = ACTIONS(627), - [anon_sym_map_LBRACK] = ACTIONS(627), - [anon_sym_chan] = ACTIONS(627), - [anon_sym_thread] = ACTIONS(627), - [anon_sym_atomic] = ACTIONS(627), - [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), + [anon_sym_map_LBRACK] = ACTIONS(561), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(611), + [anon_sym_defer] = ACTIONS(611), + [anon_sym_goto] = ACTIONS(611), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(611), + [anon_sym_return] = ACTIONS(611), + [anon_sym_DOLLARfor] = ACTIONS(611), + [anon_sym_for] = ACTIONS(611), + [anon_sym_POUND] = ACTIONS(611), + [anon_sym_asm] = ACTIONS(611), + [anon_sym_AT_LBRACK] = ACTIONS(611), }, [72] = { [sym_line_comment] = STATE(72), [sym_block_comment] = STATE(72), - [sym_struct_field_scope] = STATE(3389), - [sym_struct_field_declaration] = STATE(3389), - [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3386), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_element_list] = STATE(4495), - [sym_short_element_list] = STATE(4490), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1223), - [sym_type_reference_expression] = STATE(3344), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3344), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(3382), - [sym_function_type] = STATE(2292), - [aux_sym__struct_body_repeat1] = STATE(3326), - [aux_sym_element_list_repeat1] = STATE(3441), + [sym_struct_field_scope] = STATE(3446), + [sym_struct_field_declaration] = STATE(3446), + [sym__struct_field_definition] = STATE(3458), + [sym_embedded_definition] = STATE(3448), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_element_list] = STATE(4393), + [sym_short_element_list] = STATE(4392), + [sym_keyed_element] = STATE(3450), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1150), + [sym_type_reference_expression] = STATE(3400), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(3450), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3400), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(3431), + [sym_function_type] = STATE(2350), + [aux_sym__struct_body_repeat1] = STATE(3349), + [aux_sym_element_list_repeat1] = STATE(3579), [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -29961,77 +30256,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [73] = { [sym_line_comment] = STATE(73), [sym_block_comment] = STATE(73), - [sym_struct_field_scope] = STATE(3389), - [sym_struct_field_declaration] = STATE(3389), - [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3386), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_element_list] = STATE(4615), - [sym_short_element_list] = STATE(4614), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1223), - [sym_type_reference_expression] = STATE(3344), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3344), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(3382), - [sym_function_type] = STATE(2292), - [aux_sym__struct_body_repeat1] = STATE(3326), - [aux_sym_element_list_repeat1] = STATE(3441), + [sym_struct_field_scope] = STATE(3446), + [sym_struct_field_declaration] = STATE(3446), + [sym__struct_field_definition] = STATE(3458), + [sym_embedded_definition] = STATE(3448), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_element_list] = STATE(4594), + [sym_short_element_list] = STATE(4595), + [sym_keyed_element] = STATE(3450), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1150), + [sym_type_reference_expression] = STATE(3400), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(3450), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3400), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(3431), + [sym_function_type] = STATE(2350), + [aux_sym__struct_body_repeat1] = STATE(3349), + [aux_sym_element_list_repeat1] = STATE(3579), [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -30090,77 +30385,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [74] = { [sym_line_comment] = STATE(74), [sym_block_comment] = STATE(74), - [sym_struct_field_scope] = STATE(3389), - [sym_struct_field_declaration] = STATE(3389), - [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3386), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_element_list] = STATE(4546), - [sym_short_element_list] = STATE(4533), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1223), - [sym_type_reference_expression] = STATE(3344), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3344), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(3382), - [sym_function_type] = STATE(2292), - [aux_sym__struct_body_repeat1] = STATE(3326), - [aux_sym_element_list_repeat1] = STATE(3441), + [sym_struct_field_scope] = STATE(3446), + [sym_struct_field_declaration] = STATE(3446), + [sym__struct_field_definition] = STATE(3458), + [sym_embedded_definition] = STATE(3448), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_element_list] = STATE(4455), + [sym_short_element_list] = STATE(4453), + [sym_keyed_element] = STATE(3450), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1150), + [sym_type_reference_expression] = STATE(3400), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(3450), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3400), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(3431), + [sym_function_type] = STATE(2350), + [aux_sym__struct_body_repeat1] = STATE(3349), + [aux_sym_element_list_repeat1] = STATE(3579), [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -30219,77 +30514,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [75] = { [sym_line_comment] = STATE(75), [sym_block_comment] = STATE(75), - [sym_struct_field_scope] = STATE(3389), - [sym_struct_field_declaration] = STATE(3389), - [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3386), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_element_list] = STATE(4582), - [sym_short_element_list] = STATE(4589), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1223), - [sym_type_reference_expression] = STATE(3344), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3344), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(3382), - [sym_function_type] = STATE(2292), - [aux_sym__struct_body_repeat1] = STATE(3326), - [aux_sym_element_list_repeat1] = STATE(3441), + [sym_struct_field_scope] = STATE(3446), + [sym_struct_field_declaration] = STATE(3446), + [sym__struct_field_definition] = STATE(3458), + [sym_embedded_definition] = STATE(3448), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_element_list] = STATE(4571), + [sym_short_element_list] = STATE(4570), + [sym_keyed_element] = STATE(3450), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1150), + [sym_type_reference_expression] = STATE(3400), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(3450), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3400), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(3431), + [sym_function_type] = STATE(2350), + [aux_sym__struct_body_repeat1] = STATE(3349), + [aux_sym_element_list_repeat1] = STATE(3579), [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -30348,77 +30643,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [76] = { [sym_line_comment] = STATE(76), [sym_block_comment] = STATE(76), - [sym_struct_field_scope] = STATE(3389), - [sym_struct_field_declaration] = STATE(3389), - [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3386), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_element_list] = STATE(4405), - [sym_short_element_list] = STATE(4406), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1223), - [sym_type_reference_expression] = STATE(3344), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3344), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(3382), - [sym_function_type] = STATE(2292), - [aux_sym__struct_body_repeat1] = STATE(3326), - [aux_sym_element_list_repeat1] = STATE(3441), + [sym_struct_field_scope] = STATE(3446), + [sym_struct_field_declaration] = STATE(3446), + [sym__struct_field_definition] = STATE(3458), + [sym_embedded_definition] = STATE(3448), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_element_list] = STATE(4587), + [sym_short_element_list] = STATE(4467), + [sym_keyed_element] = STATE(3450), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1150), + [sym_type_reference_expression] = STATE(3400), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(3450), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3400), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(3431), + [sym_function_type] = STATE(2350), + [aux_sym__struct_body_repeat1] = STATE(3349), + [aux_sym_element_list_repeat1] = STATE(3579), [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -30477,77 +30772,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [77] = { [sym_line_comment] = STATE(77), [sym_block_comment] = STATE(77), - [sym_struct_field_scope] = STATE(3389), - [sym_struct_field_declaration] = STATE(3389), - [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3386), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_element_list] = STATE(4607), - [sym_short_element_list] = STATE(4605), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1223), - [sym_type_reference_expression] = STATE(3344), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3344), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(3382), - [sym_function_type] = STATE(2292), - [aux_sym__struct_body_repeat1] = STATE(3326), - [aux_sym_element_list_repeat1] = STATE(3441), + [sym_struct_field_scope] = STATE(3446), + [sym_struct_field_declaration] = STATE(3446), + [sym__struct_field_definition] = STATE(3458), + [sym_embedded_definition] = STATE(3448), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_element_list] = STATE(4636), + [sym_short_element_list] = STATE(4629), + [sym_keyed_element] = STATE(3450), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1150), + [sym_type_reference_expression] = STATE(3400), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(3450), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3400), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(3431), + [sym_function_type] = STATE(2350), + [aux_sym__struct_body_repeat1] = STATE(3349), + [aux_sym_element_list_repeat1] = STATE(3579), [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -30606,77 +30901,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [78] = { [sym_line_comment] = STATE(78), [sym_block_comment] = STATE(78), - [sym_struct_field_scope] = STATE(3389), - [sym_struct_field_declaration] = STATE(3389), - [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3386), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_element_list] = STATE(4359), - [sym_short_element_list] = STATE(4358), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1223), - [sym_type_reference_expression] = STATE(3344), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3344), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(3382), - [sym_function_type] = STATE(2292), - [aux_sym__struct_body_repeat1] = STATE(3326), - [aux_sym_element_list_repeat1] = STATE(3441), + [sym_struct_field_scope] = STATE(3446), + [sym_struct_field_declaration] = STATE(3446), + [sym__struct_field_definition] = STATE(3458), + [sym_embedded_definition] = STATE(3448), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_element_list] = STATE(4535), + [sym_short_element_list] = STATE(4543), + [sym_keyed_element] = STATE(3450), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1150), + [sym_type_reference_expression] = STATE(3400), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(3450), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3400), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(3431), + [sym_function_type] = STATE(2350), + [aux_sym__struct_body_repeat1] = STATE(3349), + [aux_sym_element_list_repeat1] = STATE(3579), [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -30735,77 +31030,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [79] = { [sym_line_comment] = STATE(79), [sym_block_comment] = STATE(79), - [sym_struct_field_scope] = STATE(3389), - [sym_struct_field_declaration] = STATE(3389), - [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3386), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_element_list] = STATE(4417), - [sym_short_element_list] = STATE(4420), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1223), - [sym_type_reference_expression] = STATE(3344), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3344), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(3382), - [sym_function_type] = STATE(2292), - [aux_sym__struct_body_repeat1] = STATE(3326), - [aux_sym_element_list_repeat1] = STATE(3441), + [sym_struct_field_scope] = STATE(3446), + [sym_struct_field_declaration] = STATE(3446), + [sym__struct_field_definition] = STATE(3458), + [sym_embedded_definition] = STATE(3448), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_element_list] = STATE(4696), + [sym_short_element_list] = STATE(4689), + [sym_keyed_element] = STATE(3450), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1150), + [sym_type_reference_expression] = STATE(3400), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(3450), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3400), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(3431), + [sym_function_type] = STATE(2350), + [aux_sym__struct_body_repeat1] = STATE(3349), + [aux_sym_element_list_repeat1] = STATE(3579), [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -30864,77 +31159,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [80] = { [sym_line_comment] = STATE(80), [sym_block_comment] = STATE(80), - [sym_struct_field_scope] = STATE(3389), - [sym_struct_field_declaration] = STATE(3389), - [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3386), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_element_list] = STATE(4457), - [sym_short_element_list] = STATE(4508), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1223), - [sym_type_reference_expression] = STATE(3344), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3344), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(3382), - [sym_function_type] = STATE(2292), - [aux_sym__struct_body_repeat1] = STATE(3326), - [aux_sym_element_list_repeat1] = STATE(3441), + [sym_struct_field_scope] = STATE(3446), + [sym_struct_field_declaration] = STATE(3446), + [sym__struct_field_definition] = STATE(3458), + [sym_embedded_definition] = STATE(3448), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_element_list] = STATE(4449), + [sym_short_element_list] = STATE(4446), + [sym_keyed_element] = STATE(3450), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1150), + [sym_type_reference_expression] = STATE(3400), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(3450), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3400), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(3431), + [sym_function_type] = STATE(2350), + [aux_sym__struct_body_repeat1] = STATE(3349), + [aux_sym_element_list_repeat1] = STATE(3579), [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -30993,77 +31288,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [81] = { [sym_line_comment] = STATE(81), [sym_block_comment] = STATE(81), - [sym_struct_field_scope] = STATE(3389), - [sym_struct_field_declaration] = STATE(3389), - [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3386), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_element_list] = STATE(4339), - [sym_short_element_list] = STATE(4338), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1223), - [sym_type_reference_expression] = STATE(3344), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3344), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(3382), - [sym_function_type] = STATE(2292), - [aux_sym__struct_body_repeat1] = STATE(3326), - [aux_sym_element_list_repeat1] = STATE(3441), + [sym_struct_field_scope] = STATE(3446), + [sym_struct_field_declaration] = STATE(3446), + [sym__struct_field_definition] = STATE(3458), + [sym_embedded_definition] = STATE(3448), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_element_list] = STATE(4412), + [sym_short_element_list] = STATE(4411), + [sym_keyed_element] = STATE(3450), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1150), + [sym_type_reference_expression] = STATE(3400), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(3450), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3400), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(3431), + [sym_function_type] = STATE(2350), + [aux_sym__struct_body_repeat1] = STATE(3349), + [aux_sym_element_list_repeat1] = STATE(3579), [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -31122,77 +31417,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [82] = { [sym_line_comment] = STATE(82), [sym_block_comment] = STATE(82), - [sym_struct_field_scope] = STATE(3389), - [sym_struct_field_declaration] = STATE(3389), - [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3386), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_element_list] = STATE(4512), - [sym_short_element_list] = STATE(4514), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1223), - [sym_type_reference_expression] = STATE(3344), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3344), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(3382), - [sym_function_type] = STATE(2292), - [aux_sym__struct_body_repeat1] = STATE(3326), - [aux_sym_element_list_repeat1] = STATE(3441), + [sym_struct_field_scope] = STATE(3446), + [sym_struct_field_declaration] = STATE(3446), + [sym__struct_field_definition] = STATE(3458), + [sym_embedded_definition] = STATE(3448), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_element_list] = STATE(4597), + [sym_short_element_list] = STATE(4607), + [sym_keyed_element] = STATE(3450), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1150), + [sym_type_reference_expression] = STATE(3400), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(3450), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3400), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(3431), + [sym_function_type] = STATE(2350), + [aux_sym__struct_body_repeat1] = STATE(3349), + [aux_sym_element_list_repeat1] = STATE(3579), [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -31251,77 +31546,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [83] = { [sym_line_comment] = STATE(83), [sym_block_comment] = STATE(83), - [sym_struct_field_scope] = STATE(3389), - [sym_struct_field_declaration] = STATE(3389), - [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3386), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_element_list] = STATE(4590), - [sym_short_element_list] = STATE(4592), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1223), - [sym_type_reference_expression] = STATE(3344), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3344), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(3382), - [sym_function_type] = STATE(2292), - [aux_sym__struct_body_repeat1] = STATE(3326), - [aux_sym_element_list_repeat1] = STATE(3441), + [sym_struct_field_scope] = STATE(3446), + [sym_struct_field_declaration] = STATE(3446), + [sym__struct_field_definition] = STATE(3458), + [sym_embedded_definition] = STATE(3448), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_element_list] = STATE(4699), + [sym_short_element_list] = STATE(4698), + [sym_keyed_element] = STATE(3450), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1150), + [sym_type_reference_expression] = STATE(3400), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(3450), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3400), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(3431), + [sym_function_type] = STATE(2350), + [aux_sym__struct_body_repeat1] = STATE(3349), + [aux_sym_element_list_repeat1] = STATE(3579), [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -31380,77 +31675,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [84] = { [sym_line_comment] = STATE(84), [sym_block_comment] = STATE(84), - [sym_struct_field_scope] = STATE(3389), - [sym_struct_field_declaration] = STATE(3389), - [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3386), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_element_list] = STATE(4620), - [sym_short_element_list] = STATE(4616), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1223), - [sym_type_reference_expression] = STATE(3344), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3344), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(3382), - [sym_function_type] = STATE(2292), - [aux_sym__struct_body_repeat1] = STATE(3326), - [aux_sym_element_list_repeat1] = STATE(3441), + [sym_struct_field_scope] = STATE(3446), + [sym_struct_field_declaration] = STATE(3446), + [sym__struct_field_definition] = STATE(3458), + [sym_embedded_definition] = STATE(3448), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_element_list] = STATE(4613), + [sym_short_element_list] = STATE(4611), + [sym_keyed_element] = STATE(3450), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1150), + [sym_type_reference_expression] = STATE(3400), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(3450), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3400), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(3431), + [sym_function_type] = STATE(2350), + [aux_sym__struct_body_repeat1] = STATE(3349), + [aux_sym_element_list_repeat1] = STATE(3579), [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -31509,78 +31804,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [85] = { [sym_line_comment] = STATE(85), [sym_block_comment] = STATE(85), - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4515), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_map_init_expression_repeat1] = STATE(238), - [aux_sym_select_expression_repeat1] = STATE(117), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4677), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_map_init_expression_repeat1] = STATE(268), + [aux_sym_select_expression_repeat1] = STATE(131), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -31636,78 +31931,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [86] = { [sym_line_comment] = STATE(86), [sym_block_comment] = STATE(86), - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4353), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_map_init_expression_repeat1] = STATE(238), - [aux_sym_select_expression_repeat1] = STATE(142), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4451), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_map_init_expression_repeat1] = STATE(268), + [aux_sym_select_expression_repeat1] = STATE(112), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -31763,124 +32058,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [87] = { [sym_line_comment] = STATE(87), [sym_block_comment] = STATE(87), - [sym__expression] = STATE(1665), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_strictly_expression_list] = STATE(4289), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(2054), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(879), - [sym_mutable_expression] = STATE(3276), - [sym_expression_list] = STATE(3294), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_simple_statement] = STATE(4499), - [sym_var_declaration] = STATE(4289), - [sym_var_definition_list] = STATE(4542), - [sym_var_definition] = STATE(3917), - [sym_assignment_statement] = STATE(4289), - [sym_block] = STATE(1514), - [sym_is_clause] = STATE(4170), - [sym_range_clause] = STATE(4170), - [sym_for_clause] = STATE(4170), - [sym_identifier] = ACTIONS(769), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4522), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_map_init_expression_repeat1] = STATE(268), + [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_SEMI] = ACTIONS(771), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_struct] = ACTIONS(785), - [anon_sym_mut] = ACTIONS(787), + [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(789), - [anon_sym_go] = ACTIONS(791), - [anon_sym_spawn] = ACTIONS(793), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(797), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(799), - [anon_sym_LT_DASH] = ACTIONS(801), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(811), - [anon_sym_lock] = ACTIONS(813), - [anon_sym_rlock] = ACTIONS(813), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [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), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -31890,84 +32185,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [88] = { [sym_line_comment] = STATE(88), [sym_block_comment] = STATE(88), - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4479), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_map_init_expression_repeat1] = STATE(238), - [aux_sym_select_expression_repeat1] = STATE(139), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4603), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_map_init_expression_repeat1] = STATE(268), + [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(835), + [anon_sym_RBRACE] = ACTIONS(771), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), @@ -32017,84 +32312,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [89] = { [sym_line_comment] = STATE(89), [sym_block_comment] = STATE(89), - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4586), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_map_init_expression_repeat1] = STATE(238), - [aux_sym_select_expression_repeat1] = STATE(120), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4562), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_map_init_expression_repeat1] = STATE(268), + [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(837), + [anon_sym_RBRACE] = ACTIONS(773), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), @@ -32144,84 +32439,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [90] = { [sym_line_comment] = STATE(90), [sym_block_comment] = STATE(90), - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4530), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_map_init_expression_repeat1] = STATE(238), - [aux_sym_select_expression_repeat1] = STATE(144), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4390), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_map_init_expression_repeat1] = STATE(268), + [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(839), + [anon_sym_RBRACE] = ACTIONS(775), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), @@ -32271,84 +32566,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [91] = { [sym_line_comment] = STATE(91), [sym_block_comment] = STATE(91), - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4530), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_map_init_expression_repeat1] = STATE(238), - [aux_sym_select_expression_repeat1] = STATE(144), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4562), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_map_init_expression_repeat1] = STATE(268), + [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(841), + [anon_sym_RBRACE] = ACTIONS(777), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), @@ -32398,84 +32693,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [92] = { [sym_line_comment] = STATE(92), [sym_block_comment] = STATE(92), - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4597), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_map_init_expression_repeat1] = STATE(238), - [aux_sym_select_expression_repeat1] = STATE(133), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4390), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_map_init_expression_repeat1] = STATE(268), + [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(843), + [anon_sym_RBRACE] = ACTIONS(779), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), @@ -32525,84 +32820,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [93] = { [sym_line_comment] = STATE(93), [sym_block_comment] = STATE(93), - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4322), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_map_init_expression_repeat1] = STATE(238), - [aux_sym_select_expression_repeat1] = STATE(127), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4605), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_map_init_expression_repeat1] = STATE(268), + [aux_sym_select_expression_repeat1] = STATE(117), [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(845), + [anon_sym_RBRACE] = ACTIONS(781), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), @@ -32652,84 +32947,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [94] = { [sym_line_comment] = STATE(94), [sym_block_comment] = STATE(94), - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4608), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_map_init_expression_repeat1] = STATE(238), - [aux_sym_select_expression_repeat1] = STATE(147), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4451), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_map_init_expression_repeat1] = STATE(268), + [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(847), + [anon_sym_RBRACE] = ACTIONS(783), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), @@ -32779,84 +33074,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [95] = { [sym_line_comment] = STATE(95), [sym_block_comment] = STATE(95), - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4353), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_map_init_expression_repeat1] = STATE(238), - [aux_sym_select_expression_repeat1] = STATE(142), + [sym__expression] = STATE(1695), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_strictly_expression_list] = STATE(4275), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(751), + [sym_mutable_expression] = STATE(3331), + [sym_expression_list] = STATE(3356), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_simple_statement] = STATE(4560), + [sym_var_declaration] = STATE(4275), + [sym_var_definition_list] = STATE(4564), + [sym_var_definition] = STATE(3873), + [sym_assignment_statement] = STATE(4275), + [sym_block] = STATE(3763), + [sym_is_clause] = STATE(4148), + [sym_range_clause] = STATE(4148), + [sym_for_clause] = STATE(4148), + [sym_identifier] = ACTIONS(785), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(791), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_struct] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_go] = ACTIONS(807), + [anon_sym_spawn] = ACTIONS(809), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_LT_DASH] = ACTIONS(817), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(827), + [anon_sym_lock] = ACTIONS(829), + [anon_sym_rlock] = ACTIONS(829), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [96] = { + [sym_line_comment] = STATE(96), + [sym_block_comment] = STATE(96), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4477), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_map_init_expression_repeat1] = STATE(268), + [aux_sym_select_expression_repeat1] = STATE(143), [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(849), + [anon_sym_RBRACE] = ACTIONS(851), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), @@ -32903,87 +33325,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [96] = { - [sym_line_comment] = STATE(96), - [sym_block_comment] = STATE(96), - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4597), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_map_init_expression_repeat1] = STATE(238), - [aux_sym_select_expression_repeat1] = STATE(133), + [97] = { + [sym_line_comment] = STATE(97), + [sym_block_comment] = STATE(97), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4605), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_map_init_expression_repeat1] = STATE(268), + [aux_sym_select_expression_repeat1] = STATE(117), [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(851), + [anon_sym_RBRACE] = ACTIONS(853), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), @@ -33030,214 +33452,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [97] = { - [sym_line_comment] = STATE(97), - [sym_block_comment] = STATE(97), - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4519), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_map_init_expression_repeat1] = STATE(238), - [aux_sym_select_expression_repeat1] = STATE(132), - [sym_identifier] = ACTIONS(701), + [98] = { + [sym_line_comment] = STATE(98), + [sym_block_comment] = STATE(98), + [sym__expression] = STATE(1694), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_strictly_expression_list] = STATE(4275), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2063), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(751), + [sym_mutable_expression] = STATE(3331), + [sym_expression_list] = STATE(3356), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_simple_statement] = STATE(4560), + [sym_var_declaration] = STATE(4275), + [sym_var_definition_list] = STATE(4564), + [sym_var_definition] = STATE(3873), + [sym_assignment_statement] = STATE(4275), + [sym_block] = STATE(1588), + [sym_is_clause] = STATE(4231), + [sym_range_clause] = STATE(4231), + [sym_for_clause] = STATE(4231), + [sym_identifier] = ACTIONS(785), [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(851), - [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_SEMI] = ACTIONS(787), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_struct] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(803), [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), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_DQUOTE] = ACTIONS(755), - [anon_sym_c_SQUOTE] = ACTIONS(757), - [anon_sym_c_DQUOTE] = ACTIONS(759), - [anon_sym_r_SQUOTE] = ACTIONS(761), - [anon_sym_r_DQUOTE] = ACTIONS(763), - [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_go] = ACTIONS(807), + [anon_sym_spawn] = ACTIONS(809), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_LT_DASH] = ACTIONS(817), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(827), + [anon_sym_lock] = ACTIONS(829), + [anon_sym_rlock] = ACTIONS(829), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [98] = { - [sym_line_comment] = STATE(98), - [sym_block_comment] = STATE(98), - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4429), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_map_init_expression_repeat1] = STATE(238), - [aux_sym_select_expression_repeat1] = STATE(115), + [99] = { + [sym_line_comment] = STATE(99), + [sym_block_comment] = STATE(99), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4477), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_map_init_expression_repeat1] = STATE(268), + [aux_sym_select_expression_repeat1] = STATE(143), [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(853), + [anon_sym_RBRACE] = ACTIONS(857), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), @@ -33284,87 +33706,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [99] = { - [sym_line_comment] = STATE(99), - [sym_block_comment] = STATE(99), - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4597), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_map_init_expression_repeat1] = STATE(238), - [aux_sym_select_expression_repeat1] = STATE(133), + [100] = { + [sym_line_comment] = STATE(100), + [sym_block_comment] = STATE(100), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4606), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_map_init_expression_repeat1] = STATE(268), + [aux_sym_select_expression_repeat1] = STATE(141), [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(855), + [anon_sym_RBRACE] = ACTIONS(859), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), @@ -33411,87 +33833,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [100] = { - [sym_line_comment] = STATE(100), - [sym_block_comment] = STATE(100), - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4519), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_map_init_expression_repeat1] = STATE(238), - [aux_sym_select_expression_repeat1] = STATE(132), + [101] = { + [sym_line_comment] = STATE(101), + [sym_block_comment] = STATE(101), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4451), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_map_init_expression_repeat1] = STATE(268), + [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(857), + [anon_sym_RBRACE] = ACTIONS(861), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), @@ -33538,87 +33960,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [101] = { - [sym_line_comment] = STATE(101), - [sym_block_comment] = STATE(101), - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4429), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_map_init_expression_repeat1] = STATE(238), - [aux_sym_select_expression_repeat1] = STATE(115), + [102] = { + [sym_line_comment] = STATE(102), + [sym_block_comment] = STATE(102), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4435), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_map_init_expression_repeat1] = STATE(268), + [aux_sym_select_expression_repeat1] = STATE(122), [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(859), + [anon_sym_RBRACE] = ACTIONS(863), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), @@ -33665,87 +34087,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [102] = { - [sym_line_comment] = STATE(102), - [sym_block_comment] = STATE(102), - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4519), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_map_init_expression_repeat1] = STATE(238), - [aux_sym_select_expression_repeat1] = STATE(132), + [103] = { + [sym_line_comment] = STATE(103), + [sym_block_comment] = STATE(103), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4558), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_map_init_expression_repeat1] = STATE(268), + [aux_sym_select_expression_repeat1] = STATE(135), [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(855), + [anon_sym_RBRACE] = ACTIONS(865), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), @@ -33792,87 +34214,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [103] = { - [sym_line_comment] = STATE(103), - [sym_block_comment] = STATE(103), - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4602), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_map_init_expression_repeat1] = STATE(238), - [aux_sym_select_expression_repeat1] = STATE(123), + [104] = { + [sym_line_comment] = STATE(104), + [sym_block_comment] = STATE(104), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4435), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_map_init_expression_repeat1] = STATE(268), + [aux_sym_select_expression_repeat1] = STATE(122), [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(861), + [anon_sym_RBRACE] = ACTIONS(867), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), @@ -33919,87 +34341,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [104] = { - [sym_line_comment] = STATE(104), - [sym_block_comment] = STATE(104), - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4602), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_map_init_expression_repeat1] = STATE(238), - [aux_sym_select_expression_repeat1] = STATE(123), + [105] = { + [sym_line_comment] = STATE(105), + [sym_block_comment] = STATE(105), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4621), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_map_init_expression_repeat1] = STATE(268), + [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(863), + [anon_sym_RBRACE] = ACTIONS(869), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), @@ -34046,214 +34468,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [105] = { - [sym_line_comment] = STATE(105), - [sym_block_comment] = STATE(105), - [sym__expression] = STATE(1666), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_strictly_expression_list] = STATE(4289), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(2054), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(879), - [sym_mutable_expression] = STATE(3276), - [sym_expression_list] = STATE(3294), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_simple_statement] = STATE(4499), - [sym_var_declaration] = STATE(4289), - [sym_var_definition_list] = STATE(4542), - [sym_var_definition] = STATE(3917), - [sym_assignment_statement] = STATE(4289), - [sym_block] = STATE(3717), - [sym_is_clause] = STATE(4231), - [sym_range_clause] = STATE(4231), - [sym_for_clause] = STATE(4231), - [sym_identifier] = ACTIONS(769), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(865), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_struct] = ACTIONS(785), - [anon_sym_mut] = ACTIONS(787), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(789), - [anon_sym_go] = ACTIONS(791), - [anon_sym_spawn] = ACTIONS(793), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(797), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(799), - [anon_sym_LT_DASH] = ACTIONS(801), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(811), - [anon_sym_lock] = ACTIONS(813), - [anon_sym_rlock] = ACTIONS(813), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, [106] = { [sym_line_comment] = STATE(106), [sym_block_comment] = STATE(106), - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4595), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_map_init_expression_repeat1] = STATE(238), - [aux_sym_select_expression_repeat1] = STATE(110), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4621), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_map_init_expression_repeat1] = STATE(268), + [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(867), + [anon_sym_RBRACE] = ACTIONS(767), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), @@ -34303,84 +34598,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [107] = { [sym_line_comment] = STATE(107), [sym_block_comment] = STATE(107), - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4519), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_map_init_expression_repeat1] = STATE(238), - [aux_sym_select_expression_repeat1] = STATE(132), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4621), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_map_init_expression_repeat1] = STATE(268), + [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(869), + [anon_sym_RBRACE] = ACTIONS(783), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), @@ -34430,78 +34725,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [108] = { [sym_line_comment] = STATE(108), [sym_block_comment] = STATE(108), - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4515), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_map_init_expression_repeat1] = STATE(238), - [aux_sym_select_expression_repeat1] = STATE(117), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4694), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_map_init_expression_repeat1] = STATE(268), + [aux_sym_select_expression_repeat1] = STATE(118), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -34557,78 +34852,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [109] = { [sym_line_comment] = STATE(109), [sym_block_comment] = STATE(109), - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4413), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_map_init_expression_repeat1] = STATE(238), - [aux_sym_select_expression_repeat1] = STATE(143), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4451), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_map_init_expression_repeat1] = STATE(268), + [aux_sym_select_expression_repeat1] = STATE(112), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -34684,75 +34979,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [110] = { [sym_line_comment] = STATE(110), [sym_block_comment] = STATE(110), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4571), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4485), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -34809,75 +35104,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [111] = { [sym_line_comment] = STATE(111), [sym_block_comment] = STATE(111), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4521), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4624), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -34934,75 +35229,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [112] = { [sym_line_comment] = STATE(112), [sym_block_comment] = STATE(112), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4486), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4429), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -35059,75 +35354,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [113] = { [sym_line_comment] = STATE(113), [sym_block_comment] = STATE(113), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4547), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4672), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -35184,76 +35479,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [114] = { [sym_line_comment] = STATE(114), [sym_block_comment] = STATE(114), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4471), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_select_expression_repeat1] = STATE(112), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4661), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_select_expression_repeat1] = STATE(113), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -35309,75 +35604,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [115] = { [sym_line_comment] = STATE(115), [sym_block_comment] = STATE(115), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4467), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4659), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -35434,75 +35729,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [116] = { [sym_line_comment] = STATE(116), [sym_block_comment] = STATE(116), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4573), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4657), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -35559,75 +35854,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [117] = { [sym_line_comment] = STATE(117), [sym_block_comment] = STATE(117), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4549), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4639), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -35684,76 +35979,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [118] = { [sym_line_comment] = STATE(118), [sym_block_comment] = STATE(118), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4562), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_select_expression_repeat1] = STATE(119), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4682), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -35809,76 +36104,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [119] = { [sym_line_comment] = STATE(119), [sym_block_comment] = STATE(119), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4553), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_select_expression_repeat1] = STATE(149), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4476), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_select_expression_repeat1] = STATE(110), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -35934,75 +36229,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [120] = { [sym_line_comment] = STATE(120), [sym_block_comment] = STATE(120), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4493), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4391), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -36059,76 +36354,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [121] = { [sym_line_comment] = STATE(121), [sym_block_comment] = STATE(121), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4492), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_select_expression_repeat1] = STATE(138), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4402), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_select_expression_repeat1] = STATE(120), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -36184,76 +36479,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [122] = { [sym_line_comment] = STATE(122), [sym_block_comment] = STATE(122), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4628), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_select_expression_repeat1] = STATE(116), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4403), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -36309,75 +36604,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [123] = { [sym_line_comment] = STATE(123), [sym_block_comment] = STATE(123), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4626), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4475), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -36434,76 +36729,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [124] = { [sym_line_comment] = STATE(124), [sym_block_comment] = STATE(124), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4355), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_select_expression_repeat1] = STATE(149), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4643), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_select_expression_repeat1] = STATE(132), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -36559,76 +36854,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [125] = { [sym_line_comment] = STATE(125), [sym_block_comment] = STATE(125), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4627), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_select_expression_repeat1] = STATE(111), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4679), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_select_expression_repeat1] = STATE(116), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -36684,76 +36979,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [126] = { [sym_line_comment] = STATE(126), [sym_block_comment] = STATE(126), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4337), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_select_expression_repeat1] = STATE(124), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4585), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -36809,75 +37104,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [127] = { [sym_line_comment] = STATE(127), [sym_block_comment] = STATE(127), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4334), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4536), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -36934,76 +37229,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [128] = { [sym_line_comment] = STATE(128), [sym_block_comment] = STATE(128), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4550), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_select_expression_repeat1] = STATE(149), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4548), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_select_expression_repeat1] = STATE(127), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -37059,76 +37354,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [129] = { [sym_line_comment] = STATE(129), [sym_block_comment] = STATE(129), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4435), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_select_expression_repeat1] = STATE(149), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4395), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_select_expression_repeat1] = STATE(136), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -37184,76 +37479,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [130] = { [sym_line_comment] = STATE(130), [sym_block_comment] = STATE(130), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4367), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_select_expression_repeat1] = STATE(128), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4626), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_select_expression_repeat1] = STATE(111), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -37309,76 +37604,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [131] = { [sym_line_comment] = STATE(131), [sym_block_comment] = STATE(131), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4537), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_select_expression_repeat1] = STATE(113), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4627), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -37434,75 +37729,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [132] = { [sym_line_comment] = STATE(132), [sym_block_comment] = STATE(132), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4535), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4653), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -37559,75 +37854,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [133] = { [sym_line_comment] = STATE(133), [sym_block_comment] = STATE(133), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4624), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4649), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -37684,76 +37979,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [134] = { [sym_line_comment] = STATE(134), [sym_block_comment] = STATE(134), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4565), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_select_expression_repeat1] = STATE(148), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4632), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_select_expression_repeat1] = STATE(133), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -37809,75 +38104,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [135] = { [sym_line_comment] = STATE(135), [sym_block_comment] = STATE(135), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4425), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4631), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -37934,75 +38229,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [136] = { [sym_line_comment] = STATE(136), [sym_block_comment] = STATE(136), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4591), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4416), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -38059,76 +38354,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [137] = { [sym_line_comment] = STATE(137), [sym_block_comment] = STATE(137), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4438), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_select_expression_repeat1] = STATE(135), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4551), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -38184,75 +38479,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [138] = { [sym_line_comment] = STATE(138), [sym_block_comment] = STATE(138), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4397), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4676), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -38309,75 +38604,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [139] = { [sym_line_comment] = STATE(139), [sym_block_comment] = STATE(139), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4441), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4487), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -38434,76 +38729,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [140] = { [sym_line_comment] = STATE(140), [sym_block_comment] = STATE(140), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4593), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_select_expression_repeat1] = STATE(136), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4497), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_select_expression_repeat1] = STATE(139), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -38559,76 +38854,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [141] = { [sym_line_comment] = STATE(141), [sym_block_comment] = STATE(141), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4424), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_select_expression_repeat1] = STATE(129), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4500), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -38684,75 +38979,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [142] = { [sym_line_comment] = STATE(142), [sym_block_comment] = STATE(142), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4364), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4469), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -38809,75 +39104,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [143] = { [sym_line_comment] = STATE(143), [sym_block_comment] = STATE(143), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4422), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4575), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -38934,75 +39229,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [144] = { [sym_line_comment] = STATE(144), [sym_block_comment] = STATE(144), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4489), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4526), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -39059,76 +39354,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [145] = { [sym_line_comment] = STATE(145), [sym_block_comment] = STATE(145), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4481), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_select_expression_repeat1] = STATE(146), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4680), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_select_expression_repeat1] = STATE(138), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -39184,75 +39479,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [146] = { [sym_line_comment] = STATE(146), [sym_block_comment] = STATE(146), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4447), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4423), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -39309,76 +39604,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [147] = { [sym_line_comment] = STATE(147), [sym_block_comment] = STATE(147), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4594), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_select_expression_repeat1] = STATE(149), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4427), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_select_expression_repeat1] = STATE(146), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -39434,76 +39729,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [148] = { [sym_line_comment] = STATE(148), [sym_block_comment] = STATE(148), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_select_else_arn_clause] = STATE(4558), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), - [aux_sym_select_expression_repeat1] = STATE(149), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_select_else_arn_clause] = STATE(4565), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), + [aux_sym_select_expression_repeat1] = STATE(144), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -39559,74 +39854,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [149] = { [sym_line_comment] = STATE(149), [sym_block_comment] = STATE(149), - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(1902), - [sym__expression_with_blocks] = STATE(2865), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(2867), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(2867), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(2867), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(2867), - [sym_compile_time_if_expression] = STATE(2867), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(2867), - [sym_select_expression] = STATE(2867), - [sym_select_arm] = STATE(2143), - [sym_select_arm_statement] = STATE(4061), - [sym_select_var_declaration] = STATE(4587), - [sym_lock_expression] = STATE(2867), - [sym_unsafe_expression] = STATE(2867), - [sym_sql_expression] = STATE(2867), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(844), - [sym_mutable_identifier] = STATE(3995), - [sym_identifier_list] = STATE(4583), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4107), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_send_statement] = STATE(4587), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(1944), + [sym__expression_with_blocks] = STATE(2887), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(2896), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(2896), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(2896), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(2896), + [sym_compile_time_if_expression] = STATE(2896), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [sym_match_expression] = STATE(2896), + [sym_select_expression] = STATE(2896), + [sym_select_arm] = STATE(2175), + [sym_select_arm_statement] = STATE(4330), + [sym_select_var_declaration] = STATE(4458), + [sym_lock_expression] = STATE(2896), + [sym_unsafe_expression] = STATE(2896), + [sym_sql_expression] = STATE(2896), + [sym_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(774), + [sym_mutable_identifier] = STATE(3951), + [sym_identifier_list] = STATE(4471), + [sym_expression_without_blocks_list] = STATE(3341), + [sym_plain_type] = STATE(4385), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_send_statement] = STATE(4458), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(953), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -39683,73 +39978,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [150] = { [sym_line_comment] = STATE(150), [sym_block_comment] = STATE(150), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_short_lambda] = STATE(4464), - [sym_argument] = STATE(1911), - [sym_type_initializer] = STATE(1179), - [sym_keyed_element] = STATE(1901), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1188), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(1901), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(743), - [sym_mutable_expression] = STATE(1901), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_argument_list_repeat1] = STATE(201), + [sym__expression] = STATE(1123), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_short_lambda] = STATE(4532), + [sym_argument] = STATE(1943), + [sym_type_initializer] = STATE(1228), + [sym_keyed_element] = STATE(1942), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1209), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(1942), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(575), + [sym_mutable_expression] = STATE(1942), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_argument_list_repeat1] = STATE(202), [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -39757,12 +40052,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_RPAREN] = ACTIONS(1073), - [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1075), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -39770,6 +40064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(1077), [anon_sym_LBRACK2] = ACTIONS(663), [anon_sym_TILDE] = ACTIONS(643), [anon_sym_CARET] = ACTIONS(643), @@ -39806,120 +40101,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [151] = { [sym_line_comment] = STATE(151), [sym_block_comment] = STATE(151), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_short_lambda] = STATE(4523), - [sym_argument] = STATE(1911), - [sym_type_initializer] = STATE(1179), - [sym_keyed_element] = STATE(1901), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1188), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(1901), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(743), - [sym_mutable_expression] = STATE(1901), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_argument_list_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(2635), + [sym__expression_without_blocks] = STATE(2636), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_match_arms] = STATE(4634), + [sym_match_arm] = STATE(2177), + [sym_match_expression_list] = STATE(4122), + [sym_match_arm_type] = STATE(4039), + [sym_match_else_arm_clause] = STATE(2177), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4040), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__definite_range] = STATE(4041), + [aux_sym_match_arms_repeat1] = STATE(194), + [sym_identifier] = ACTIONS(1079), [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(1079), - [anon_sym_PIPE] = ACTIONS(1075), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1085), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(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), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_c_SQUOTE] = ACTIONS(691), - [anon_sym_c_DQUOTE] = ACTIONS(693), - [anon_sym_r_SQUOTE] = ACTIONS(695), - [anon_sym_r_DQUOTE] = ACTIONS(697), - [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -39929,86 +40224,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [152] = { [sym_line_comment] = STATE(152), [sym_block_comment] = STATE(152), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_short_lambda] = STATE(4599), - [sym_argument] = STATE(1911), - [sym_type_initializer] = STATE(1179), - [sym_keyed_element] = STATE(1901), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1188), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(1901), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(743), - [sym_mutable_expression] = STATE(1901), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_argument_list_repeat1] = STATE(208), + [sym__expression] = STATE(2635), + [sym__expression_without_blocks] = STATE(2636), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_match_arms] = STATE(4553), + [sym_match_arm] = STATE(2177), + [sym_match_expression_list] = STATE(4122), + [sym_match_arm_type] = STATE(4039), + [sym_match_else_arm_clause] = STATE(2177), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4040), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__definite_range] = STATE(4041), + [aux_sym_match_arms_repeat1] = STATE(194), + [sym_identifier] = ACTIONS(1079), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1145), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [153] = { + [sym_line_comment] = STATE(153), + [sym_block_comment] = STATE(153), + [sym__expression] = STATE(1123), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_short_lambda] = STATE(4660), + [sym_argument] = STATE(1943), + [sym_type_initializer] = STATE(1228), + [sym_keyed_element] = STATE(1942), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1209), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(1942), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(575), + [sym_mutable_expression] = STATE(1942), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_argument_list_repeat1] = STATE(207), [sym_identifier] = ACTIONS(1071), [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(1081), - [anon_sym_PIPE] = ACTIONS(1075), + [anon_sym_RPAREN] = ACTIONS(1147), [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(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1075), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -40016,6 +40433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(1077), [anon_sym_LBRACK2] = ACTIONS(663), [anon_sym_TILDE] = ACTIONS(643), [anon_sym_CARET] = ACTIONS(643), @@ -40049,246 +40467,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [153] = { - [sym_line_comment] = STATE(153), - [sym_block_comment] = STATE(153), - [sym__expression] = STATE(2587), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [sym_match_expression] = STATE(2642), - [sym_match_arms] = STATE(4496), - [sym_match_arm] = STATE(2134), - [sym_match_expression_list] = STATE(4145), - [sym_match_arm_type] = STATE(3872), - [sym_match_else_arm_clause] = STATE(2134), - [sym_select_expression] = STATE(2642), - [sym_lock_expression] = STATE(2642), - [sym_unsafe_expression] = STATE(2642), - [sym_sql_expression] = STATE(2642), - [sym_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(3874), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__definite_range] = STATE(3868), - [aux_sym_match_arms_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1083), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_RBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_struct] = ACTIONS(1099), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1111), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(1125), - [anon_sym_lock] = ACTIONS(1127), - [anon_sym_rlock] = ACTIONS(1127), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, [154] = { [sym_line_comment] = STATE(154), [sym_block_comment] = STATE(154), - [sym__expression] = STATE(2587), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [sym_match_expression] = STATE(2642), - [sym_match_arms] = STATE(4572), - [sym_match_arm] = STATE(2134), - [sym_match_expression_list] = STATE(4145), - [sym_match_arm_type] = STATE(3872), - [sym_match_else_arm_clause] = STATE(2134), - [sym_select_expression] = STATE(2642), - [sym_lock_expression] = STATE(2642), - [sym_unsafe_expression] = STATE(2642), - [sym_sql_expression] = STATE(2642), - [sym_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(3874), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__definite_range] = STATE(3868), - [aux_sym_match_arms_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1083), + [sym__expression] = STATE(2635), + [sym__expression_without_blocks] = STATE(2636), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_match_arms] = STATE(4472), + [sym_match_arm] = STATE(2177), + [sym_match_expression_list] = STATE(4122), + [sym_match_arm_type] = STATE(4039), + [sym_match_else_arm_clause] = STATE(2177), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4040), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__definite_range] = STATE(4041), + [aux_sym_match_arms_repeat1] = STATE(194), + [sym_identifier] = ACTIONS(1079), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), [anon_sym_RBRACE] = ACTIONS(1149), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1111), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(1125), - [anon_sym_lock] = ACTIONS(1127), - [anon_sym_rlock] = ACTIONS(1127), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -40298,120 +40593,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [155] = { [sym_line_comment] = STATE(155), [sym_block_comment] = STATE(155), - [sym__expression] = STATE(2587), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [sym_match_expression] = STATE(2642), - [sym_match_arms] = STATE(4596), - [sym_match_arm] = STATE(2134), - [sym_match_expression_list] = STATE(4145), - [sym_match_arm_type] = STATE(3872), - [sym_match_else_arm_clause] = STATE(2134), - [sym_select_expression] = STATE(2642), - [sym_lock_expression] = STATE(2642), - [sym_unsafe_expression] = STATE(2642), - [sym_sql_expression] = STATE(2642), - [sym_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(3874), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__definite_range] = STATE(3868), - [aux_sym_match_arms_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1083), + [sym__expression] = STATE(2635), + [sym__expression_without_blocks] = STATE(2636), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_match_arms] = STATE(4456), + [sym_match_arm] = STATE(2177), + [sym_match_expression_list] = STATE(4122), + [sym_match_arm_type] = STATE(4039), + [sym_match_else_arm_clause] = STATE(2177), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4040), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__definite_range] = STATE(4041), + [aux_sym_match_arms_repeat1] = STATE(194), + [sym_identifier] = ACTIONS(1079), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), [anon_sym_RBRACE] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1111), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(1125), - [anon_sym_lock] = ACTIONS(1127), - [anon_sym_rlock] = ACTIONS(1127), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -40421,73 +40716,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [156] = { [sym_line_comment] = STATE(156), [sym_block_comment] = STATE(156), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_short_lambda] = STATE(4584), - [sym_argument] = STATE(1911), - [sym_type_initializer] = STATE(1179), - [sym_keyed_element] = STATE(1901), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1188), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(1901), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(743), - [sym_mutable_expression] = STATE(1901), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_argument_list_repeat1] = STATE(198), + [sym__expression] = STATE(1123), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_short_lambda] = STATE(4426), + [sym_argument] = STATE(1943), + [sym_type_initializer] = STATE(1228), + [sym_keyed_element] = STATE(1942), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1209), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(1942), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(575), + [sym_mutable_expression] = STATE(1942), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_argument_list_repeat1] = STATE(208), [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -40495,12 +40790,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1075), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -40508,6 +40802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(1077), [anon_sym_LBRACK2] = ACTIONS(663), [anon_sym_TILDE] = ACTIONS(643), [anon_sym_CARET] = ACTIONS(643), @@ -40544,86 +40839,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [157] = { [sym_line_comment] = STATE(157), [sym_block_comment] = STATE(157), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_short_lambda] = STATE(4329), - [sym_argument] = STATE(1911), - [sym_type_initializer] = STATE(1179), - [sym_keyed_element] = STATE(1901), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1188), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(1901), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(743), - [sym_mutable_expression] = STATE(1901), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_argument_list_repeat1] = STATE(203), + [sym__expression] = STATE(2635), + [sym__expression_without_blocks] = STATE(2636), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_match_arms] = STATE(4404), + [sym_match_arm] = STATE(2177), + [sym_match_expression_list] = STATE(4122), + [sym_match_arm_type] = STATE(4039), + [sym_match_else_arm_clause] = STATE(2177), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4040), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__definite_range] = STATE(4041), + [aux_sym_match_arms_repeat1] = STATE(194), + [sym_identifier] = ACTIONS(1079), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [158] = { + [sym_line_comment] = STATE(158), + [sym_block_comment] = STATE(158), + [sym__expression] = STATE(1123), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_short_lambda] = STATE(4448), + [sym_argument] = STATE(1943), + [sym_type_initializer] = STATE(1228), + [sym_keyed_element] = STATE(1942), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1209), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(1942), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(575), + [sym_mutable_expression] = STATE(1942), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_argument_list_repeat1] = STATE(205), [sym_identifier] = ACTIONS(1071), [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(1155), - [anon_sym_PIPE] = ACTIONS(1075), + [anon_sym_RPAREN] = ACTIONS(1157), [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(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1075), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -40631,6 +41048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(1077), [anon_sym_LBRACK2] = ACTIONS(663), [anon_sym_TILDE] = ACTIONS(643), [anon_sym_CARET] = ACTIONS(643), @@ -40664,458 +41082,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [158] = { - [sym_line_comment] = STATE(158), - [sym_block_comment] = STATE(158), - [sym__expression] = STATE(2587), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [sym_match_expression] = STATE(2642), - [sym_match_arms] = STATE(4361), - [sym_match_arm] = STATE(2134), - [sym_match_expression_list] = STATE(4145), - [sym_match_arm_type] = STATE(3872), - [sym_match_else_arm_clause] = STATE(2134), - [sym_select_expression] = STATE(2642), - [sym_lock_expression] = STATE(2642), - [sym_unsafe_expression] = STATE(2642), - [sym_sql_expression] = STATE(2642), - [sym_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(3874), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__definite_range] = STATE(3868), - [aux_sym_match_arms_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1083), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_RBRACE] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_struct] = ACTIONS(1099), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1111), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(1125), - [anon_sym_lock] = ACTIONS(1127), - [anon_sym_rlock] = ACTIONS(1127), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, [159] = { [sym_line_comment] = STATE(159), [sym_block_comment] = STATE(159), - [sym__expression] = STATE(2587), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [sym_match_expression] = STATE(2642), - [sym_match_arms] = STATE(4503), - [sym_match_arm] = STATE(2134), - [sym_match_expression_list] = STATE(4145), - [sym_match_arm_type] = STATE(3872), - [sym_match_else_arm_clause] = STATE(2134), - [sym_select_expression] = STATE(2642), - [sym_lock_expression] = STATE(2642), - [sym_unsafe_expression] = STATE(2642), - [sym_sql_expression] = STATE(2642), - [sym_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(3874), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__definite_range] = STATE(3868), - [aux_sym_match_arms_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1083), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_RBRACE] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_struct] = ACTIONS(1099), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1111), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(1125), - [anon_sym_lock] = ACTIONS(1127), - [anon_sym_rlock] = ACTIONS(1127), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [160] = { - [sym_line_comment] = STATE(160), - [sym_block_comment] = STATE(160), - [sym__expression] = STATE(2587), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [sym_match_expression] = STATE(2642), - [sym_match_arms] = STATE(4623), - [sym_match_arm] = STATE(2134), - [sym_match_expression_list] = STATE(4145), - [sym_match_arm_type] = STATE(3872), - [sym_match_else_arm_clause] = STATE(2134), - [sym_select_expression] = STATE(2642), - [sym_lock_expression] = STATE(2642), - [sym_unsafe_expression] = STATE(2642), - [sym_sql_expression] = STATE(2642), - [sym_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(3874), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__definite_range] = STATE(3868), - [aux_sym_match_arms_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1083), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_struct] = ACTIONS(1099), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1111), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(1125), - [anon_sym_lock] = ACTIONS(1127), - [anon_sym_rlock] = ACTIONS(1127), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [161] = { - [sym_line_comment] = STATE(161), - [sym_block_comment] = STATE(161), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_short_lambda] = STATE(4504), - [sym_argument] = STATE(1911), - [sym_type_initializer] = STATE(1179), - [sym_keyed_element] = STATE(1901), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1188), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(1901), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(743), - [sym_mutable_expression] = STATE(1901), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_argument_list_repeat1] = STATE(197), + [sym__expression] = STATE(1123), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_short_lambda] = STATE(4388), + [sym_argument] = STATE(1943), + [sym_type_initializer] = STATE(1228), + [sym_keyed_element] = STATE(1942), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1209), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(1942), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(575), + [sym_mutable_expression] = STATE(1942), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_argument_list_repeat1] = STATE(206), [sym_identifier] = ACTIONS(1071), [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(1075), + [anon_sym_RPAREN] = ACTIONS(1159), [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(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1075), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -41123,6 +41171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(1077), [anon_sym_LBRACK2] = ACTIONS(663), [anon_sym_TILDE] = ACTIONS(643), [anon_sym_CARET] = ACTIONS(643), @@ -41156,123 +41205,369 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, + [160] = { + [sym_line_comment] = STATE(160), + [sym_block_comment] = STATE(160), + [sym__expression] = STATE(2635), + [sym__expression_without_blocks] = STATE(2636), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_match_arms] = STATE(4430), + [sym_match_arm] = STATE(2177), + [sym_match_expression_list] = STATE(4122), + [sym_match_arm_type] = STATE(4039), + [sym_match_else_arm_clause] = STATE(2177), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4040), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__definite_range] = STATE(4041), + [aux_sym_match_arms_repeat1] = STATE(194), + [sym_identifier] = ACTIONS(1079), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [161] = { + [sym_line_comment] = STATE(161), + [sym_block_comment] = STATE(161), + [sym__expression] = STATE(2635), + [sym__expression_without_blocks] = STATE(2636), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_match_arms] = STATE(4651), + [sym_match_arm] = STATE(2177), + [sym_match_expression_list] = STATE(4122), + [sym_match_arm_type] = STATE(4039), + [sym_match_else_arm_clause] = STATE(2177), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4040), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__definite_range] = STATE(4041), + [aux_sym_match_arms_repeat1] = STATE(194), + [sym_identifier] = ACTIONS(1079), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1163), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, [162] = { [sym_line_comment] = STATE(162), [sym_block_comment] = STATE(162), - [sym__expression] = STATE(2587), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [sym_match_expression] = STATE(2642), - [sym_match_arms] = STATE(4446), - [sym_match_arm] = STATE(2134), - [sym_match_expression_list] = STATE(4145), - [sym_match_arm_type] = STATE(3872), - [sym_match_else_arm_clause] = STATE(2134), - [sym_select_expression] = STATE(2642), - [sym_lock_expression] = STATE(2642), - [sym_unsafe_expression] = STATE(2642), - [sym_sql_expression] = STATE(2642), - [sym_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(3874), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__definite_range] = STATE(3868), - [aux_sym_match_arms_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1083), + [sym__expression] = STATE(2635), + [sym__expression_without_blocks] = STATE(2636), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_match_arms] = STATE(4683), + [sym_match_arm] = STATE(2177), + [sym_match_expression_list] = STATE(4122), + [sym_match_arm_type] = STATE(4039), + [sym_match_else_arm_clause] = STATE(2177), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4040), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__definite_range] = STATE(4041), + [aux_sym_match_arms_repeat1] = STATE(194), + [sym_identifier] = ACTIONS(1079), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), [anon_sym_RBRACE] = ACTIONS(1165), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1111), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(1125), - [anon_sym_lock] = ACTIONS(1127), - [anon_sym_rlock] = ACTIONS(1127), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -41282,120 +41577,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [163] = { [sym_line_comment] = STATE(163), [sym_block_comment] = STATE(163), - [sym__expression] = STATE(2587), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [sym_match_expression] = STATE(2642), - [sym_match_arms] = STATE(4534), - [sym_match_arm] = STATE(2134), - [sym_match_expression_list] = STATE(4145), - [sym_match_arm_type] = STATE(3872), - [sym_match_else_arm_clause] = STATE(2134), - [sym_select_expression] = STATE(2642), - [sym_lock_expression] = STATE(2642), - [sym_unsafe_expression] = STATE(2642), - [sym_sql_expression] = STATE(2642), - [sym_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(3874), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__definite_range] = STATE(3868), - [aux_sym_match_arms_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1083), + [sym__expression] = STATE(2635), + [sym__expression_without_blocks] = STATE(2636), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_match_arms] = STATE(4630), + [sym_match_arm] = STATE(2177), + [sym_match_expression_list] = STATE(4122), + [sym_match_arm_type] = STATE(4039), + [sym_match_else_arm_clause] = STATE(2177), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4040), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__definite_range] = STATE(4041), + [aux_sym_match_arms_repeat1] = STATE(194), + [sym_identifier] = ACTIONS(1079), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), [anon_sym_RBRACE] = ACTIONS(1167), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1111), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(1125), - [anon_sym_lock] = ACTIONS(1127), - [anon_sym_rlock] = ACTIONS(1127), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -41405,86 +41700,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [164] = { [sym_line_comment] = STATE(164), [sym_block_comment] = STATE(164), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_short_lambda] = STATE(4319), - [sym_argument] = STATE(1911), - [sym_type_initializer] = STATE(1179), - [sym_keyed_element] = STATE(1901), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1188), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(1901), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(743), - [sym_mutable_expression] = STATE(1901), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_argument_list_repeat1] = STATE(207), + [sym__expression] = STATE(2635), + [sym__expression_without_blocks] = STATE(2636), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_match_arms] = STATE(4618), + [sym_match_arm] = STATE(2177), + [sym_match_expression_list] = STATE(4122), + [sym_match_arm_type] = STATE(4039), + [sym_match_else_arm_clause] = STATE(2177), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4040), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__definite_range] = STATE(4041), + [aux_sym_match_arms_repeat1] = STATE(194), + [sym_identifier] = ACTIONS(1079), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [165] = { + [sym_line_comment] = STATE(165), + [sym_block_comment] = STATE(165), + [sym__expression] = STATE(1123), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_short_lambda] = STATE(4663), + [sym_argument] = STATE(1943), + [sym_type_initializer] = STATE(1228), + [sym_keyed_element] = STATE(1942), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1209), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(1942), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(575), + [sym_mutable_expression] = STATE(1942), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_argument_list_repeat1] = STATE(201), [sym_identifier] = ACTIONS(1071), [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(1169), - [anon_sym_PIPE] = ACTIONS(1075), + [anon_sym_RPAREN] = ACTIONS(1171), [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(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1075), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -41492,6 +41909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(1077), [anon_sym_LBRACK2] = ACTIONS(663), [anon_sym_TILDE] = ACTIONS(643), [anon_sym_CARET] = ACTIONS(643), @@ -41525,246 +41943,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [165] = { - [sym_line_comment] = STATE(165), - [sym_block_comment] = STATE(165), - [sym__expression] = STATE(2587), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [sym_match_expression] = STATE(2642), - [sym_match_arms] = STATE(4331), - [sym_match_arm] = STATE(2134), - [sym_match_expression_list] = STATE(4145), - [sym_match_arm_type] = STATE(3872), - [sym_match_else_arm_clause] = STATE(2134), - [sym_select_expression] = STATE(2642), - [sym_lock_expression] = STATE(2642), - [sym_unsafe_expression] = STATE(2642), - [sym_sql_expression] = STATE(2642), - [sym_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(3874), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__definite_range] = STATE(3868), - [aux_sym_match_arms_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1083), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_RBRACE] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_struct] = ACTIONS(1099), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1111), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(1125), - [anon_sym_lock] = ACTIONS(1127), - [anon_sym_rlock] = ACTIONS(1127), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, [166] = { [sym_line_comment] = STATE(166), [sym_block_comment] = STATE(166), - [sym__expression] = STATE(2587), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [sym_match_expression] = STATE(2642), - [sym_match_arms] = STATE(4625), - [sym_match_arm] = STATE(2134), - [sym_match_expression_list] = STATE(4145), - [sym_match_arm_type] = STATE(3872), - [sym_match_else_arm_clause] = STATE(2134), - [sym_select_expression] = STATE(2642), - [sym_lock_expression] = STATE(2642), - [sym_unsafe_expression] = STATE(2642), - [sym_sql_expression] = STATE(2642), - [sym_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(3874), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__definite_range] = STATE(3868), - [aux_sym_match_arms_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1083), + [sym__expression] = STATE(1123), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_short_lambda] = STATE(4563), + [sym_argument] = STATE(1943), + [sym_type_initializer] = STATE(1228), + [sym_keyed_element] = STATE(1942), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1209), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(1942), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(575), + [sym_mutable_expression] = STATE(1942), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_argument_list_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_RBRACE] = ACTIONS(1173), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_RPAREN] = ACTIONS(1173), + [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(1075), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1111), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(1125), - [anon_sym_lock] = ACTIONS(1127), - [anon_sym_rlock] = ACTIONS(1127), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(1077), + [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), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -41774,73 +42069,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [167] = { [sym_line_comment] = STATE(167), [sym_block_comment] = STATE(167), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_short_lambda] = STATE(4436), - [sym_argument] = STATE(1911), - [sym_type_initializer] = STATE(1179), - [sym_keyed_element] = STATE(1901), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1188), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(1901), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(743), - [sym_mutable_expression] = STATE(1901), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_argument_list_repeat1] = STATE(206), + [sym__expression] = STATE(1123), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_short_lambda] = STATE(4599), + [sym_argument] = STATE(1943), + [sym_type_initializer] = STATE(1228), + [sym_keyed_element] = STATE(1942), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1209), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(1942), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(575), + [sym_mutable_expression] = STATE(1942), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_argument_list_repeat1] = STATE(203), [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -41848,12 +42143,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_RPAREN] = ACTIONS(1175), - [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1075), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -41861,6 +42155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(1077), [anon_sym_LBRACK2] = ACTIONS(663), [anon_sym_TILDE] = ACTIONS(643), [anon_sym_CARET] = ACTIONS(643), @@ -41897,73 +42192,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [168] = { [sym_line_comment] = STATE(168), [sym_block_comment] = STATE(168), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_short_lambda] = STATE(4606), - [sym_argument] = STATE(1911), - [sym_type_initializer] = STATE(1179), - [sym_keyed_element] = STATE(1901), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1188), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(1901), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(743), - [sym_mutable_expression] = STATE(1901), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_argument_list_repeat1] = STATE(205), + [sym__expression] = STATE(1123), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_short_lambda] = STATE(4488), + [sym_argument] = STATE(1943), + [sym_type_initializer] = STATE(1228), + [sym_keyed_element] = STATE(1942), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1209), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(1942), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(575), + [sym_mutable_expression] = STATE(1942), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_argument_list_repeat1] = STATE(197), [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -41971,12 +42266,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_RPAREN] = ACTIONS(1177), - [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1075), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -41984,6 +42278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(1077), [anon_sym_LBRACK2] = ACTIONS(663), [anon_sym_TILDE] = ACTIONS(643), [anon_sym_CARET] = ACTIONS(643), @@ -42020,120 +42315,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [169] = { [sym_line_comment] = STATE(169), [sym_block_comment] = STATE(169), - [sym__expression] = STATE(2587), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [sym_match_expression] = STATE(2642), - [sym_match_arms] = STATE(4548), - [sym_match_arm] = STATE(2134), - [sym_match_expression_list] = STATE(4145), - [sym_match_arm_type] = STATE(3872), - [sym_match_else_arm_clause] = STATE(2134), - [sym_select_expression] = STATE(2642), - [sym_lock_expression] = STATE(2642), - [sym_unsafe_expression] = STATE(2642), - [sym_sql_expression] = STATE(2642), - [sym_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(3874), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__definite_range] = STATE(3868), - [aux_sym_match_arms_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1083), + [sym__expression] = STATE(2635), + [sym__expression_without_blocks] = STATE(2636), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_match_arms] = STATE(4508), + [sym_match_arm] = STATE(2177), + [sym_match_expression_list] = STATE(4122), + [sym_match_arm_type] = STATE(4039), + [sym_match_else_arm_clause] = STATE(2177), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4040), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__definite_range] = STATE(4041), + [aux_sym_match_arms_repeat1] = STATE(194), + [sym_identifier] = ACTIONS(1079), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), [anon_sym_RBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1111), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(1125), - [anon_sym_lock] = ACTIONS(1127), - [anon_sym_rlock] = ACTIONS(1127), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -42143,73 +42438,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [170] = { [sym_line_comment] = STATE(170), [sym_block_comment] = STATE(170), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_short_lambda] = STATE(4527), - [sym_argument] = STATE(1911), - [sym_type_initializer] = STATE(1179), - [sym_keyed_element] = STATE(1901), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1188), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(1901), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(743), - [sym_mutable_expression] = STATE(1901), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_argument_list_repeat1] = STATE(209), + [sym__expression] = STATE(1123), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_short_lambda] = STATE(4623), + [sym_argument] = STATE(1943), + [sym_type_initializer] = STATE(1228), + [sym_keyed_element] = STATE(1942), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1209), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(1942), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(575), + [sym_mutable_expression] = STATE(1942), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_argument_list_repeat1] = STATE(204), [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -42217,12 +42512,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_RPAREN] = ACTIONS(1181), - [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1075), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -42230,6 +42524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(1077), [anon_sym_LBRACK2] = ACTIONS(663), [anon_sym_TILDE] = ACTIONS(643), [anon_sym_CARET] = ACTIONS(643), @@ -42266,120 +42561,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [171] = { [sym_line_comment] = STATE(171), [sym_block_comment] = STATE(171), - [sym__expression] = STATE(2587), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [sym_match_expression] = STATE(2642), - [sym_match_arms] = STATE(4462), - [sym_match_arm] = STATE(2134), - [sym_match_expression_list] = STATE(4145), - [sym_match_arm_type] = STATE(3872), - [sym_match_else_arm_clause] = STATE(2134), - [sym_select_expression] = STATE(2642), - [sym_lock_expression] = STATE(2642), - [sym_unsafe_expression] = STATE(2642), - [sym_sql_expression] = STATE(2642), - [sym_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(3874), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__definite_range] = STATE(3868), - [aux_sym_match_arms_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1083), + [sym__expression] = STATE(2635), + [sym__expression_without_blocks] = STATE(2636), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_match_arms] = STATE(4590), + [sym_match_arm] = STATE(2177), + [sym_match_expression_list] = STATE(4122), + [sym_match_arm_type] = STATE(4039), + [sym_match_else_arm_clause] = STATE(2177), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4040), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__definite_range] = STATE(4041), + [aux_sym_match_arms_repeat1] = STATE(194), + [sym_identifier] = ACTIONS(1079), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), [anon_sym_RBRACE] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1111), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(1125), - [anon_sym_lock] = ACTIONS(1127), - [anon_sym_rlock] = ACTIONS(1127), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -42389,73 +42684,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [172] = { [sym_line_comment] = STATE(172), [sym_block_comment] = STATE(172), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_short_lambda] = STATE(4570), - [sym_argument] = STATE(1911), - [sym_type_initializer] = STATE(1179), - [sym_keyed_element] = STATE(1901), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1188), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(1901), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(743), - [sym_mutable_expression] = STATE(1901), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_argument_list_repeat1] = STATE(204), + [sym__expression] = STATE(1123), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_short_lambda] = STATE(4602), + [sym_argument] = STATE(1943), + [sym_type_initializer] = STATE(1228), + [sym_keyed_element] = STATE(1942), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1209), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(1942), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(575), + [sym_mutable_expression] = STATE(1942), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_argument_list_repeat1] = STATE(200), [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -42463,12 +42758,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_RPAREN] = ACTIONS(1185), - [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1075), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -42476,6 +42770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(1077), [anon_sym_LBRACK2] = ACTIONS(663), [anon_sym_TILDE] = ACTIONS(643), [anon_sym_CARET] = ACTIONS(643), @@ -42512,73 +42807,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [173] = { [sym_line_comment] = STATE(173), [sym_block_comment] = STATE(173), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_short_lambda] = STATE(4415), - [sym_argument] = STATE(1911), - [sym_type_initializer] = STATE(1179), - [sym_keyed_element] = STATE(1901), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1188), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(1901), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(743), - [sym_mutable_expression] = STATE(1901), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_argument_list_repeat1] = STATE(200), + [sym__expression] = STATE(1123), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_short_lambda] = STATE(4612), + [sym_argument] = STATE(1943), + [sym_type_initializer] = STATE(1228), + [sym_keyed_element] = STATE(1942), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1209), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(1942), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(575), + [sym_mutable_expression] = STATE(1942), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_argument_list_repeat1] = STATE(199), [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -42586,12 +42881,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_RPAREN] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1075), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -42599,6 +42893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(1077), [anon_sym_LBRACK2] = ACTIONS(663), [anon_sym_TILDE] = ACTIONS(643), [anon_sym_CARET] = ACTIONS(643), @@ -42635,120 +42930,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [174] = { [sym_line_comment] = STATE(174), [sym_block_comment] = STATE(174), - [sym__expression] = STATE(2587), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [sym_match_expression] = STATE(2642), - [sym_match_arms] = STATE(4421), - [sym_match_arm] = STATE(2134), - [sym_match_expression_list] = STATE(4145), - [sym_match_arm_type] = STATE(3872), - [sym_match_else_arm_clause] = STATE(2134), - [sym_select_expression] = STATE(2642), - [sym_lock_expression] = STATE(2642), - [sym_unsafe_expression] = STATE(2642), - [sym_sql_expression] = STATE(2642), - [sym_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(3874), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__definite_range] = STATE(3868), - [aux_sym_match_arms_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(1083), + [sym__expression] = STATE(2635), + [sym__expression_without_blocks] = STATE(2636), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_match_arms] = STATE(4658), + [sym_match_arm] = STATE(2177), + [sym_match_expression_list] = STATE(4122), + [sym_match_arm_type] = STATE(4039), + [sym_match_else_arm_clause] = STATE(2177), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4040), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__definite_range] = STATE(4041), + [aux_sym_match_arms_repeat1] = STATE(194), + [sym_identifier] = ACTIONS(1079), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), [anon_sym_RBRACE] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1111), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(1125), - [anon_sym_lock] = ACTIONS(1127), - [anon_sym_rlock] = ACTIONS(1127), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -42758,323 +43053,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [175] = { [sym_line_comment] = STATE(175), [sym_block_comment] = STATE(175), - [sym_reference_expression] = STATE(4344), - [sym_type_reference_expression] = STATE(989), - [sym_plain_type] = STATE(1075), - [sym__plain_type_without_special] = STATE(1091), - [sym_anon_struct_type] = STATE(1089), - [sym_multi_return_type] = STATE(1091), - [sym_result_type] = STATE(1091), - [sym_option_type] = STATE(1091), - [sym_qualified_type] = STATE(989), - [sym_fixed_array_type] = STATE(1089), - [sym_array_type] = STATE(1089), - [sym_pointer_type] = STATE(1089), - [sym_wrong_pointer_type] = STATE(1089), - [sym_map_type] = STATE(1089), - [sym_channel_type] = STATE(1089), - [sym_shared_type] = STATE(1089), - [sym_thread_type] = STATE(1089), - [sym_atomic_type] = STATE(1089), - [sym_generic_type] = STATE(1089), - [sym_function_type] = STATE(1089), - [ts_builtin_sym_end] = ACTIONS(599), + [sym__expression] = STATE(2635), + [sym__expression_without_blocks] = STATE(2636), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_match_arm] = STATE(2177), + [sym_match_expression_list] = STATE(4122), + [sym_match_arm_type] = STATE(4039), + [sym_match_else_arm_clause] = STATE(2177), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4040), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__definite_range] = STATE(4041), + [aux_sym_match_arms_repeat1] = STATE(175), [sym_identifier] = ACTIONS(1191), - [anon_sym_LF] = ACTIONS(601), - [anon_sym_CR] = ACTIONS(601), - [anon_sym_CR_LF] = ACTIONS(601), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(601), - [anon_sym_as] = ACTIONS(601), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_COMMA] = ACTIONS(601), - [anon_sym_const] = ACTIONS(601), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym___global] = ACTIONS(601), - [anon_sym_type] = ACTIONS(601), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(1197), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(601), - [anon_sym_BANG_EQ] = ACTIONS(601), - [anon_sym_LT_EQ] = ACTIONS(601), - [anon_sym_GT_EQ] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_struct] = ACTIONS(1199), - [anon_sym_union] = ACTIONS(601), - [anon_sym_pub] = ACTIONS(601), - [anon_sym_mut] = ACTIONS(601), - [anon_sym_enum] = ACTIONS(601), - [anon_sym_interface] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(601), - [anon_sym_spawn] = ACTIONS(601), - [anon_sym_json_DOTdecode] = ACTIONS(601), - [anon_sym_LBRACK2] = ACTIONS(1205), - [anon_sym_TILDE] = ACTIONS(601), - [anon_sym_CARET] = ACTIONS(601), - [anon_sym_AMP] = ACTIONS(1207), - [anon_sym_LT_DASH] = ACTIONS(601), - [anon_sym_LT_LT] = ACTIONS(601), - [anon_sym_GT_GT] = ACTIONS(601), - [anon_sym_GT_GT_GT] = ACTIONS(601), - [anon_sym_AMP_CARET] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(601), - [anon_sym_PIPE_PIPE] = ACTIONS(601), - [anon_sym_or] = ACTIONS(601), - [sym_none] = ACTIONS(601), - [sym_true] = ACTIONS(601), - [sym_false] = ACTIONS(601), - [sym_nil] = ACTIONS(601), - [anon_sym_QMARK_DOT] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(601), - [anon_sym_if] = ACTIONS(601), - [anon_sym_DOLLARif] = ACTIONS(601), - [anon_sym_is] = ACTIONS(601), - [anon_sym_BANGis] = ACTIONS(601), - [anon_sym_in] = ACTIONS(601), - [anon_sym_BANGin] = ACTIONS(601), - [anon_sym_match] = ACTIONS(601), - [anon_sym_select] = ACTIONS(601), - [anon_sym_lock] = ACTIONS(601), - [anon_sym_rlock] = ACTIONS(601), - [anon_sym_unsafe] = ACTIONS(601), - [anon_sym_sql] = ACTIONS(601), - [sym_int_literal] = ACTIONS(601), - [sym_float_literal] = ACTIONS(601), - [sym_rune_literal] = ACTIONS(601), - [anon_sym_SQUOTE] = ACTIONS(601), - [anon_sym_DQUOTE] = ACTIONS(601), - [anon_sym_c_SQUOTE] = ACTIONS(601), - [anon_sym_c_DQUOTE] = ACTIONS(601), - [anon_sym_r_SQUOTE] = ACTIONS(601), - [anon_sym_r_DQUOTE] = ACTIONS(601), - [sym_pseudo_compile_time_identifier] = ACTIONS(601), - [anon_sym_shared] = ACTIONS(1209), - [anon_sym_map_LBRACK] = ACTIONS(1211), - [anon_sym_chan] = ACTIONS(1213), - [anon_sym_thread] = ACTIONS(1215), - [anon_sym_atomic] = ACTIONS(1217), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_defer] = ACTIONS(601), - [anon_sym_goto] = ACTIONS(601), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(601), - [anon_sym_return] = ACTIONS(601), - [anon_sym_DOLLARfor] = ACTIONS(601), - [anon_sym_for] = ACTIONS(601), - [anon_sym_POUND] = ACTIONS(601), - [anon_sym_asm] = ACTIONS(601), - [anon_sym_AT_LBRACK] = ACTIONS(601), - }, - [176] = { - [sym_line_comment] = STATE(176), - [sym_block_comment] = STATE(176), - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2804), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2815), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_range] = STATE(4437), - [sym_attribute_expression] = STATE(3894), - [sym_if_attribute] = STATE(4129), - [sym__plain_attribute] = STATE(4129), - [sym_literal_attribute] = STATE(4133), - [sym_value_attribute] = STATE(3822), - [sym_key_value_attribute] = STATE(4133), - [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1251), + [anon_sym_DOT] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1200), + [anon_sym_LPAREN] = ACTIONS(1202), + [anon_sym_fn] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_struct] = ACTIONS(1214), + [anon_sym_mut] = ACTIONS(1217), + [anon_sym_QMARK] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(1223), + [anon_sym_go] = ACTIONS(1226), + [anon_sym_spawn] = ACTIONS(1229), + [anon_sym_json_DOTdecode] = ACTIONS(1232), + [anon_sym_LBRACK2] = ACTIONS(1235), + [anon_sym_TILDE] = ACTIONS(1208), + [anon_sym_CARET] = ACTIONS(1208), + [anon_sym_AMP] = ACTIONS(1238), + [anon_sym_LT_DASH] = ACTIONS(1241), + [sym_none] = ACTIONS(1244), + [sym_true] = ACTIONS(1244), + [sym_false] = ACTIONS(1244), + [sym_nil] = ACTIONS(1244), + [anon_sym_if] = ACTIONS(1247), + [anon_sym_else] = ACTIONS(1250), [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1261), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_match] = ACTIONS(1256), + [anon_sym_select] = ACTIONS(1259), + [anon_sym_lock] = ACTIONS(1262), + [anon_sym_rlock] = ACTIONS(1262), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_sql] = ACTIONS(1268), + [sym_int_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1271), + [sym_rune_literal] = ACTIONS(1271), + [anon_sym_SQUOTE] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1277), + [anon_sym_c_SQUOTE] = ACTIONS(1280), + [anon_sym_c_DQUOTE] = ACTIONS(1283), + [anon_sym_r_SQUOTE] = ACTIONS(1286), + [anon_sym_r_DQUOTE] = ACTIONS(1289), + [sym_pseudo_compile_time_identifier] = ACTIONS(1292), + [anon_sym_shared] = ACTIONS(1295), + [anon_sym_map_LBRACK] = ACTIONS(1298), + [anon_sym_chan] = ACTIONS(1301), + [anon_sym_thread] = ACTIONS(1304), + [anon_sym_atomic] = ACTIONS(1307), }, - [177] = { - [sym_line_comment] = STATE(177), - [sym_block_comment] = STATE(177), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_element_list] = STATE(4440), - [sym_short_element_list] = STATE(4442), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1198), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_element_list_repeat1] = STATE(3441), + [176] = { + [sym_line_comment] = STATE(176), + [sym_block_comment] = STATE(176), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_element_list] = STATE(4459), + [sym_short_element_list] = STATE(4466), + [sym_keyed_element] = STATE(3450), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1226), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(3450), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_element_list_repeat1] = STATE(3579), [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(1071), [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(1283), + [anon_sym_RBRACE] = ACTIONS(1310), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -43121,82 +43294,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [178] = { - [sym_line_comment] = STATE(178), - [sym_block_comment] = STATE(178), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_element_list] = STATE(4418), - [sym_short_element_list] = STATE(4419), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1198), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_element_list_repeat1] = STATE(3441), + [177] = { + [sym_line_comment] = STATE(177), + [sym_block_comment] = STATE(177), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_element_list] = STATE(4442), + [sym_short_element_list] = STATE(4441), + [sym_keyed_element] = STATE(3450), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1226), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(3450), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_element_list_repeat1] = STATE(3579), [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(1071), [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(1285), + [anon_sym_RBRACE] = ACTIONS(1312), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -43243,82 +43416,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, + [178] = { + [sym_line_comment] = STATE(178), + [sym_block_comment] = STATE(178), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2418), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [ts_builtin_sym_end] = ACTIONS(595), + [sym_identifier] = ACTIONS(597), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_CR] = ACTIONS(597), + [anon_sym_CR_LF] = ACTIONS(597), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(597), + [anon_sym_COMMA] = ACTIONS(597), + [anon_sym_const] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym___global] = ACTIONS(597), + [anon_sym_type] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(597), + [anon_sym_BANG_EQ] = ACTIONS(597), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(597), + [anon_sym_union] = ACTIONS(597), + [anon_sym_pub] = ACTIONS(597), + [anon_sym_mut] = ACTIONS(597), + [anon_sym_enum] = ACTIONS(597), + [anon_sym_interface] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_go] = ACTIONS(597), + [anon_sym_spawn] = ACTIONS(597), + [anon_sym_json_DOTdecode] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), + [anon_sym_TILDE] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_LT_DASH] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(597), + [anon_sym_AMP_CARET] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(597), + [anon_sym_PIPE_PIPE] = ACTIONS(597), + [anon_sym_or] = ACTIONS(597), + [sym_none] = ACTIONS(597), + [sym_true] = ACTIONS(597), + [sym_false] = ACTIONS(597), + [sym_nil] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(597), + [anon_sym_POUND_LBRACK] = ACTIONS(597), + [anon_sym_if] = ACTIONS(597), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(597), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(597), + [anon_sym_match] = ACTIONS(597), + [anon_sym_select] = ACTIONS(597), + [anon_sym_lock] = ACTIONS(597), + [anon_sym_rlock] = ACTIONS(597), + [anon_sym_unsafe] = ACTIONS(597), + [anon_sym_sql] = ACTIONS(597), + [sym_int_literal] = ACTIONS(597), + [sym_float_literal] = ACTIONS(597), + [sym_rune_literal] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(597), + [anon_sym_c_SQUOTE] = ACTIONS(597), + [anon_sym_c_DQUOTE] = ACTIONS(597), + [anon_sym_r_SQUOTE] = ACTIONS(597), + [anon_sym_r_DQUOTE] = ACTIONS(597), + [sym_pseudo_compile_time_identifier] = ACTIONS(597), + [anon_sym_shared] = ACTIONS(597), + [anon_sym_map_LBRACK] = ACTIONS(597), + [anon_sym_chan] = ACTIONS(597), + [anon_sym_thread] = ACTIONS(597), + [anon_sym_atomic] = ACTIONS(597), + [anon_sym_assert] = ACTIONS(597), + [anon_sym_defer] = ACTIONS(597), + [anon_sym_goto] = ACTIONS(597), + [anon_sym_break] = ACTIONS(597), + [anon_sym_continue] = ACTIONS(597), + [anon_sym_return] = ACTIONS(597), + [anon_sym_DOLLARfor] = ACTIONS(597), + [anon_sym_for] = ACTIONS(597), + [anon_sym_POUND] = ACTIONS(597), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_AT_LBRACK] = ACTIONS(597), + }, [179] = { [sym_line_comment] = STATE(179), [sym_block_comment] = STATE(179), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_element_list] = STATE(4612), - [sym_short_element_list] = STATE(4613), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1198), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_element_list_repeat1] = STATE(3441), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_element_list] = STATE(4619), + [sym_short_element_list] = STATE(4620), + [sym_keyed_element] = STATE(3450), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1226), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(3450), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_element_list_repeat1] = STATE(3579), [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(1071), [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(1287), + [anon_sym_RBRACE] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -43368,201 +43663,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [180] = { [sym_line_comment] = STATE(180), [sym_block_comment] = STATE(180), - [sym_reference_expression] = STATE(4344), - [sym_type_reference_expression] = STATE(989), - [sym_plain_type] = STATE(1012), - [sym__plain_type_without_special] = STATE(1091), - [sym_anon_struct_type] = STATE(1089), - [sym_multi_return_type] = STATE(1091), - [sym_result_type] = STATE(1091), - [sym_option_type] = STATE(1091), - [sym_qualified_type] = STATE(989), - [sym_fixed_array_type] = STATE(1089), - [sym_array_type] = STATE(1089), - [sym_pointer_type] = STATE(1089), - [sym_wrong_pointer_type] = STATE(1089), - [sym_map_type] = STATE(1089), - [sym_channel_type] = STATE(1089), - [sym_shared_type] = STATE(1089), - [sym_thread_type] = STATE(1089), - [sym_atomic_type] = STATE(1089), - [sym_generic_type] = STATE(1089), - [sym_function_type] = STATE(1089), - [ts_builtin_sym_end] = ACTIONS(563), - [sym_identifier] = ACTIONS(1191), - [anon_sym_LF] = ACTIONS(567), - [anon_sym_CR] = ACTIONS(567), - [anon_sym_CR_LF] = ACTIONS(567), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(567), - [anon_sym_as] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_const] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym___global] = ACTIONS(567), - [anon_sym_type] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(1197), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(1199), - [anon_sym_union] = ACTIONS(567), - [anon_sym_pub] = ACTIONS(567), - [anon_sym_mut] = ACTIONS(567), - [anon_sym_enum] = ACTIONS(567), - [anon_sym_interface] = ACTIONS(567), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(567), - [anon_sym_spawn] = ACTIONS(567), - [anon_sym_json_DOTdecode] = ACTIONS(567), - [anon_sym_LBRACK2] = ACTIONS(1205), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(1207), - [anon_sym_LT_DASH] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(567), - [anon_sym_AMP_CARET] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_or] = ACTIONS(567), - [sym_none] = ACTIONS(567), - [sym_true] = ACTIONS(567), - [sym_false] = ACTIONS(567), - [sym_nil] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(567), - [anon_sym_POUND_LBRACK] = ACTIONS(567), - [anon_sym_if] = ACTIONS(567), - [anon_sym_DOLLARif] = ACTIONS(567), - [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(567), - [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(567), - [anon_sym_match] = ACTIONS(567), - [anon_sym_select] = ACTIONS(567), - [anon_sym_lock] = ACTIONS(567), - [anon_sym_rlock] = ACTIONS(567), - [anon_sym_unsafe] = ACTIONS(567), - [anon_sym_sql] = ACTIONS(567), - [sym_int_literal] = ACTIONS(567), - [sym_float_literal] = ACTIONS(567), - [sym_rune_literal] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_c_SQUOTE] = ACTIONS(567), - [anon_sym_c_DQUOTE] = ACTIONS(567), - [anon_sym_r_SQUOTE] = ACTIONS(567), - [anon_sym_r_DQUOTE] = ACTIONS(567), - [sym_pseudo_compile_time_identifier] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(1209), - [anon_sym_map_LBRACK] = ACTIONS(1211), - [anon_sym_chan] = ACTIONS(1213), - [anon_sym_thread] = ACTIONS(1215), - [anon_sym_atomic] = ACTIONS(1217), - [anon_sym_assert] = ACTIONS(567), - [anon_sym_defer] = ACTIONS(567), - [anon_sym_goto] = ACTIONS(567), - [anon_sym_break] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(567), - [anon_sym_return] = ACTIONS(567), - [anon_sym_DOLLARfor] = ACTIONS(567), - [anon_sym_for] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_asm] = ACTIONS(567), - [anon_sym_AT_LBRACK] = ACTIONS(567), - }, - [181] = { - [sym_line_comment] = STATE(181), - [sym_block_comment] = STATE(181), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_element_list] = STATE(4474), - [sym_short_element_list] = STATE(4324), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1198), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_element_list_repeat1] = STATE(3441), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_element_list] = STATE(4652), + [sym_short_element_list] = STATE(4648), + [sym_keyed_element] = STATE(3450), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1226), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(3450), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_element_list_repeat1] = STATE(3579), [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(1071), [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(1289), + [anon_sym_RBRACE] = ACTIONS(1316), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -43609,82 +43782,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, + [181] = { + [sym_line_comment] = STATE(181), + [sym_block_comment] = STATE(181), + [sym_reference_expression] = STATE(4440), + [sym_type_reference_expression] = STATE(986), + [sym_plain_type] = STATE(1073), + [sym__plain_type_without_special] = STATE(1087), + [sym_anon_struct_type] = STATE(1071), + [sym_multi_return_type] = STATE(1087), + [sym_result_type] = STATE(1087), + [sym_option_type] = STATE(1087), + [sym_qualified_type] = STATE(986), + [sym_fixed_array_type] = STATE(1071), + [sym_array_type] = STATE(1071), + [sym_pointer_type] = STATE(1071), + [sym_wrong_pointer_type] = STATE(1071), + [sym_map_type] = STATE(1071), + [sym_channel_type] = STATE(1071), + [sym_shared_type] = STATE(1071), + [sym_thread_type] = STATE(1071), + [sym_atomic_type] = STATE(1071), + [sym_generic_type] = STATE(1071), + [sym_function_type] = STATE(1071), + [ts_builtin_sym_end] = ACTIONS(599), + [sym_identifier] = ACTIONS(1318), + [anon_sym_LF] = ACTIONS(601), + [anon_sym_CR] = ACTIONS(601), + [anon_sym_CR_LF] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(601), + [anon_sym_COMMA] = ACTIONS(601), + [anon_sym_const] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(1320), + [anon_sym___global] = ACTIONS(601), + [anon_sym_type] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ] = ACTIONS(601), + [anon_sym_LT_EQ] = ACTIONS(601), + [anon_sym_GT_EQ] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(601), + [anon_sym_pub] = ACTIONS(601), + [anon_sym_mut] = ACTIONS(601), + [anon_sym_enum] = ACTIONS(601), + [anon_sym_interface] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_QMARK] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_go] = ACTIONS(601), + [anon_sym_spawn] = ACTIONS(601), + [anon_sym_json_DOTdecode] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(601), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(601), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(601), + [anon_sym_AMP_CARET] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(601), + [anon_sym_or] = ACTIONS(601), + [sym_none] = ACTIONS(601), + [sym_true] = ACTIONS(601), + [sym_false] = ACTIONS(601), + [sym_nil] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(601), + [anon_sym_POUND_LBRACK] = ACTIONS(601), + [anon_sym_if] = ACTIONS(601), + [anon_sym_DOLLARif] = ACTIONS(601), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(601), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(601), + [anon_sym_match] = ACTIONS(601), + [anon_sym_select] = ACTIONS(601), + [anon_sym_lock] = ACTIONS(601), + [anon_sym_rlock] = ACTIONS(601), + [anon_sym_unsafe] = ACTIONS(601), + [anon_sym_sql] = ACTIONS(601), + [sym_int_literal] = ACTIONS(601), + [sym_float_literal] = ACTIONS(601), + [sym_rune_literal] = ACTIONS(601), + [anon_sym_SQUOTE] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(601), + [anon_sym_c_SQUOTE] = ACTIONS(601), + [anon_sym_c_DQUOTE] = ACTIONS(601), + [anon_sym_r_SQUOTE] = ACTIONS(601), + [anon_sym_r_DQUOTE] = ACTIONS(601), + [sym_pseudo_compile_time_identifier] = ACTIONS(601), + [anon_sym_shared] = ACTIONS(1336), + [anon_sym_map_LBRACK] = ACTIONS(1338), + [anon_sym_chan] = ACTIONS(1340), + [anon_sym_thread] = ACTIONS(1342), + [anon_sym_atomic] = ACTIONS(1344), + [anon_sym_assert] = ACTIONS(601), + [anon_sym_defer] = ACTIONS(601), + [anon_sym_goto] = ACTIONS(601), + [anon_sym_break] = ACTIONS(601), + [anon_sym_continue] = ACTIONS(601), + [anon_sym_return] = ACTIONS(601), + [anon_sym_DOLLARfor] = ACTIONS(601), + [anon_sym_for] = ACTIONS(601), + [anon_sym_POUND] = ACTIONS(601), + [anon_sym_asm] = ACTIONS(601), + [anon_sym_AT_LBRACK] = ACTIONS(601), + }, [182] = { [sym_line_comment] = STATE(182), [sym_block_comment] = STATE(182), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_element_list] = STATE(4555), - [sym_short_element_list] = STATE(4554), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1198), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_element_list_repeat1] = STATE(3441), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_element_list] = STATE(4572), + [sym_short_element_list] = STATE(4550), + [sym_keyed_element] = STATE(3450), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1226), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(3450), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_element_list_repeat1] = STATE(3579), [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(1071), [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(1291), + [anon_sym_RBRACE] = ACTIONS(1346), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -43734,567 +44029,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [183] = { [sym_line_comment] = STATE(183), [sym_block_comment] = STATE(183), - [sym_reference_expression] = STATE(4344), - [sym_type_reference_expression] = STATE(989), - [sym_plain_type] = STATE(1037), - [sym__plain_type_without_special] = STATE(1091), - [sym_anon_struct_type] = STATE(1089), - [sym_multi_return_type] = STATE(1091), - [sym_result_type] = STATE(1091), - [sym_option_type] = STATE(1091), - [sym_qualified_type] = STATE(989), - [sym_fixed_array_type] = STATE(1089), - [sym_array_type] = STATE(1089), - [sym_pointer_type] = STATE(1089), - [sym_wrong_pointer_type] = STATE(1089), - [sym_map_type] = STATE(1089), - [sym_channel_type] = STATE(1089), - [sym_shared_type] = STATE(1089), - [sym_thread_type] = STATE(1089), - [sym_atomic_type] = STATE(1089), - [sym_generic_type] = STATE(1089), - [sym_function_type] = STATE(1089), - [ts_builtin_sym_end] = ACTIONS(595), - [sym_identifier] = ACTIONS(1191), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_CR] = ACTIONS(597), - [anon_sym_CR_LF] = ACTIONS(597), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(597), - [anon_sym_as] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(597), - [anon_sym_COMMA] = ACTIONS(597), - [anon_sym_const] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym___global] = ACTIONS(597), - [anon_sym_type] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(1197), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(597), - [anon_sym_LT] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(597), - [anon_sym_EQ_EQ] = ACTIONS(597), - [anon_sym_BANG_EQ] = ACTIONS(597), - [anon_sym_LT_EQ] = ACTIONS(597), - [anon_sym_GT_EQ] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(595), - [anon_sym_struct] = ACTIONS(1199), - [anon_sym_union] = ACTIONS(597), - [anon_sym_pub] = ACTIONS(597), - [anon_sym_mut] = ACTIONS(597), - [anon_sym_enum] = ACTIONS(597), - [anon_sym_interface] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(597), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_go] = ACTIONS(597), - [anon_sym_spawn] = ACTIONS(597), - [anon_sym_json_DOTdecode] = ACTIONS(597), - [anon_sym_LBRACK2] = ACTIONS(1205), - [anon_sym_TILDE] = ACTIONS(597), - [anon_sym_CARET] = ACTIONS(597), - [anon_sym_AMP] = ACTIONS(1207), - [anon_sym_LT_DASH] = ACTIONS(597), - [anon_sym_LT_LT] = ACTIONS(597), - [anon_sym_GT_GT] = ACTIONS(597), - [anon_sym_GT_GT_GT] = ACTIONS(597), - [anon_sym_AMP_CARET] = ACTIONS(597), - [anon_sym_AMP_AMP] = ACTIONS(597), - [anon_sym_PIPE_PIPE] = ACTIONS(597), - [anon_sym_or] = ACTIONS(597), - [sym_none] = ACTIONS(597), - [sym_true] = ACTIONS(597), - [sym_false] = ACTIONS(597), - [sym_nil] = ACTIONS(597), - [anon_sym_QMARK_DOT] = ACTIONS(597), - [anon_sym_POUND_LBRACK] = ACTIONS(597), - [anon_sym_if] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(597), - [anon_sym_is] = ACTIONS(597), - [anon_sym_BANGis] = ACTIONS(597), - [anon_sym_in] = ACTIONS(597), - [anon_sym_BANGin] = ACTIONS(597), - [anon_sym_match] = ACTIONS(597), - [anon_sym_select] = ACTIONS(597), - [anon_sym_lock] = ACTIONS(597), - [anon_sym_rlock] = ACTIONS(597), - [anon_sym_unsafe] = ACTIONS(597), - [anon_sym_sql] = ACTIONS(597), - [sym_int_literal] = ACTIONS(597), - [sym_float_literal] = ACTIONS(597), - [sym_rune_literal] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(597), - [anon_sym_DQUOTE] = ACTIONS(597), - [anon_sym_c_SQUOTE] = ACTIONS(597), - [anon_sym_c_DQUOTE] = ACTIONS(597), - [anon_sym_r_SQUOTE] = ACTIONS(597), - [anon_sym_r_DQUOTE] = ACTIONS(597), - [sym_pseudo_compile_time_identifier] = ACTIONS(597), - [anon_sym_shared] = ACTIONS(1209), - [anon_sym_map_LBRACK] = ACTIONS(1211), - [anon_sym_chan] = ACTIONS(1213), - [anon_sym_thread] = ACTIONS(1215), - [anon_sym_atomic] = ACTIONS(1217), - [anon_sym_assert] = ACTIONS(597), - [anon_sym_defer] = ACTIONS(597), - [anon_sym_goto] = ACTIONS(597), - [anon_sym_break] = ACTIONS(597), - [anon_sym_continue] = ACTIONS(597), - [anon_sym_return] = ACTIONS(597), - [anon_sym_DOLLARfor] = ACTIONS(597), - [anon_sym_for] = ACTIONS(597), - [anon_sym_POUND] = ACTIONS(597), - [anon_sym_asm] = ACTIONS(597), - [anon_sym_AT_LBRACK] = ACTIONS(597), - }, - [184] = { - [sym_line_comment] = STATE(184), - [sym_block_comment] = STATE(184), - [sym__expression] = STATE(2587), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [sym_match_expression] = STATE(2642), - [sym_match_arm] = STATE(2134), - [sym_match_expression_list] = STATE(4145), - [sym_match_arm_type] = STATE(3872), - [sym_match_else_arm_clause] = STATE(2134), - [sym_select_expression] = STATE(2642), - [sym_lock_expression] = STATE(2642), - [sym_unsafe_expression] = STATE(2642), - [sym_sql_expression] = STATE(2642), - [sym_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(3874), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__definite_range] = STATE(3868), - [aux_sym_match_arms_repeat1] = STATE(195), - [sym_identifier] = ACTIONS(1083), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_RBRACE] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_struct] = ACTIONS(1099), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1111), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(1125), - [anon_sym_lock] = ACTIONS(1127), - [anon_sym_rlock] = ACTIONS(1127), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [185] = { - [sym_line_comment] = STATE(185), - [sym_block_comment] = STATE(185), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2311), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [ts_builtin_sym_end] = ACTIONS(625), - [sym_identifier] = ACTIONS(627), - [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_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_COMMA] = ACTIONS(627), - [anon_sym_const] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(627), - [anon_sym___global] = ACTIONS(627), - [anon_sym_type] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(627), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(627), - [anon_sym_BANG_EQ] = ACTIONS(627), - [anon_sym_LT_EQ] = ACTIONS(627), - [anon_sym_GT_EQ] = ACTIONS(627), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(627), - [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(627), - [anon_sym_BANG] = ACTIONS(627), - [anon_sym_go] = ACTIONS(627), - [anon_sym_spawn] = ACTIONS(627), - [anon_sym_json_DOTdecode] = ACTIONS(627), - [anon_sym_LBRACK2] = ACTIONS(627), - [anon_sym_TILDE] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(627), - [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), - [anon_sym_SQUOTE] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(627), - [anon_sym_c_SQUOTE] = ACTIONS(627), - [anon_sym_c_DQUOTE] = ACTIONS(627), - [anon_sym_r_SQUOTE] = ACTIONS(627), - [anon_sym_r_DQUOTE] = ACTIONS(627), - [sym_pseudo_compile_time_identifier] = ACTIONS(627), - [anon_sym_shared] = ACTIONS(627), - [anon_sym_map_LBRACK] = ACTIONS(627), - [anon_sym_chan] = ACTIONS(627), - [anon_sym_thread] = ACTIONS(627), - [anon_sym_atomic] = ACTIONS(627), - [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), - }, - [186] = { - [sym_line_comment] = STATE(186), - [sym_block_comment] = STATE(186), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [ts_builtin_sym_end] = ACTIONS(603), - [sym_identifier] = ACTIONS(605), - [anon_sym_LF] = ACTIONS(607), - [anon_sym_CR] = ACTIONS(607), - [anon_sym_CR_LF] = ACTIONS(607), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(609), - [anon_sym___global] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_BANG_EQ] = ACTIONS(607), - [anon_sym_LT_EQ] = ACTIONS(607), - [anon_sym_GT_EQ] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_union] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_mut] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_interface] = ACTIONS(607), - [anon_sym_PLUS_PLUS] = ACTIONS(607), - [anon_sym_DASH_DASH] = ACTIONS(607), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(1295), - [anon_sym_go] = ACTIONS(607), - [anon_sym_spawn] = ACTIONS(607), - [anon_sym_json_DOTdecode] = ACTIONS(607), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_DASH] = ACTIONS(607), - [anon_sym_LT_LT] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_GT_GT_GT] = ACTIONS(607), - [anon_sym_AMP_CARET] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [anon_sym_or] = ACTIONS(607), - [sym_none] = ACTIONS(607), - [sym_true] = ACTIONS(607), - [sym_false] = ACTIONS(607), - [sym_nil] = ACTIONS(607), - [anon_sym_QMARK_DOT] = ACTIONS(607), - [anon_sym_POUND_LBRACK] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_DOLLARif] = ACTIONS(607), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(607), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_select] = ACTIONS(607), - [anon_sym_lock] = ACTIONS(607), - [anon_sym_rlock] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_sql] = ACTIONS(607), - [sym_int_literal] = ACTIONS(607), - [sym_float_literal] = ACTIONS(607), - [sym_rune_literal] = ACTIONS(607), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_DQUOTE] = ACTIONS(607), - [anon_sym_c_SQUOTE] = ACTIONS(607), - [anon_sym_c_DQUOTE] = ACTIONS(607), - [anon_sym_r_SQUOTE] = ACTIONS(607), - [anon_sym_r_DQUOTE] = ACTIONS(607), - [sym_pseudo_compile_time_identifier] = ACTIONS(607), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(561), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_assert] = ACTIONS(607), - [anon_sym_defer] = ACTIONS(607), - [anon_sym_goto] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_DOLLARfor] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_POUND] = ACTIONS(607), - [anon_sym_asm] = ACTIONS(607), - [anon_sym_AT_LBRACK] = ACTIONS(607), - }, - [187] = { - [sym_line_comment] = STATE(187), - [sym_block_comment] = STATE(187), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_element_list] = STATE(4374), - [sym_short_element_list] = STATE(4332), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1198), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_element_list_repeat1] = STATE(3441), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_element_list] = STATE(4491), + [sym_short_element_list] = STATE(4486), + [sym_keyed_element] = STATE(3450), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1226), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(3450), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_element_list_repeat1] = STATE(3579), [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(1071), [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(1297), + [anon_sym_RBRACE] = ACTIONS(1348), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -44341,204 +44148,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [188] = { - [sym_line_comment] = STATE(188), - [sym_block_comment] = STATE(188), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1337), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1392), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1396), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_attribute_expression] = STATE(3894), - [sym_if_attribute] = STATE(4129), - [sym__plain_attribute] = STATE(4129), - [sym_literal_attribute] = STATE(4133), - [sym_value_attribute] = STATE(3822), - [sym_key_value_attribute] = STATE(4133), - [aux_sym__array_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(1299), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(1313), - [anon_sym_struct] = ACTIONS(1315), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(1333), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(1343), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1347), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [189] = { - [sym_line_comment] = STATE(189), - [sym_block_comment] = STATE(189), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_element_list] = STATE(4451), - [sym_short_element_list] = STATE(4450), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1198), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_element_list_repeat1] = STATE(3441), + [184] = { + [sym_line_comment] = STATE(184), + [sym_block_comment] = STATE(184), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_element_list] = STATE(4644), + [sym_short_element_list] = STATE(4650), + [sym_keyed_element] = STATE(3450), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1226), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(3450), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_element_list_repeat1] = STATE(3579), [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(1071), [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(1365), + [anon_sym_RBRACE] = ACTIONS(1350), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -44585,82 +44270,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [190] = { - [sym_line_comment] = STATE(190), - [sym_block_comment] = STATE(190), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_element_list] = STATE(4601), - [sym_short_element_list] = STATE(4600), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1198), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_element_list_repeat1] = STATE(3441), + [185] = { + [sym_line_comment] = STATE(185), + [sym_block_comment] = STATE(185), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_element_list] = STATE(4414), + [sym_short_element_list] = STATE(4386), + [sym_keyed_element] = STATE(3450), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1226), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(3450), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_element_list_repeat1] = STATE(3579), [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(1071), [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(1367), + [anon_sym_RBRACE] = ACTIONS(1352), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -44707,82 +44392,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [191] = { - [sym_line_comment] = STATE(191), - [sym_block_comment] = STATE(191), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_element_list] = STATE(4618), - [sym_short_element_list] = STATE(4619), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1198), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_element_list_repeat1] = STATE(3441), + [186] = { + [sym_line_comment] = STATE(186), + [sym_block_comment] = STATE(186), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_element_list] = STATE(4516), + [sym_short_element_list] = STATE(4517), + [sym_keyed_element] = STATE(3450), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1226), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(3450), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_element_list_repeat1] = STATE(3579), [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(1071), [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(1369), + [anon_sym_RBRACE] = ACTIONS(1354), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -44829,82 +44514,692 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, + [187] = { + [sym_line_comment] = STATE(187), + [sym_block_comment] = STATE(187), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1354), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1396), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1398), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_attribute_expression] = STATE(3862), + [sym_if_attribute] = STATE(4188), + [sym__plain_attribute] = STATE(4188), + [sym_literal_attribute] = STATE(4189), + [sym_value_attribute] = STATE(3863), + [sym_key_value_attribute] = STATE(4189), + [aux_sym__array_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(1356), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(1400), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1404), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [188] = { + [sym_line_comment] = STATE(188), + [sym_block_comment] = STATE(188), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2421), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [ts_builtin_sym_end] = ACTIONS(607), + [sym_identifier] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(611), + [anon_sym_CR] = ACTIONS(611), + [anon_sym_CR_LF] = ACTIONS(611), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_as] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_const] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym___global] = ACTIONS(611), + [anon_sym_type] = ACTIONS(611), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(611), + [anon_sym_BANG_EQ] = ACTIONS(611), + [anon_sym_LT_EQ] = ACTIONS(611), + [anon_sym_GT_EQ] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_union] = ACTIONS(611), + [anon_sym_pub] = ACTIONS(611), + [anon_sym_mut] = ACTIONS(611), + [anon_sym_enum] = ACTIONS(611), + [anon_sym_interface] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_go] = ACTIONS(611), + [anon_sym_spawn] = ACTIONS(611), + [anon_sym_json_DOTdecode] = ACTIONS(611), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_DASH] = ACTIONS(611), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(611), + [anon_sym_AMP_CARET] = ACTIONS(611), + [anon_sym_AMP_AMP] = ACTIONS(611), + [anon_sym_PIPE_PIPE] = ACTIONS(611), + [anon_sym_or] = ACTIONS(611), + [sym_none] = ACTIONS(611), + [sym_true] = ACTIONS(611), + [sym_false] = ACTIONS(611), + [sym_nil] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(611), + [anon_sym_if] = ACTIONS(611), + [anon_sym_DOLLARif] = ACTIONS(611), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(611), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(611), + [anon_sym_match] = ACTIONS(611), + [anon_sym_select] = ACTIONS(611), + [anon_sym_lock] = ACTIONS(611), + [anon_sym_rlock] = ACTIONS(611), + [anon_sym_unsafe] = ACTIONS(611), + [anon_sym_sql] = ACTIONS(611), + [sym_int_literal] = ACTIONS(611), + [sym_float_literal] = ACTIONS(611), + [sym_rune_literal] = ACTIONS(611), + [anon_sym_SQUOTE] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [anon_sym_c_SQUOTE] = ACTIONS(611), + [anon_sym_c_DQUOTE] = ACTIONS(611), + [anon_sym_r_SQUOTE] = ACTIONS(611), + [anon_sym_r_DQUOTE] = ACTIONS(611), + [sym_pseudo_compile_time_identifier] = ACTIONS(611), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(561), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(611), + [anon_sym_defer] = ACTIONS(611), + [anon_sym_goto] = ACTIONS(611), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(611), + [anon_sym_return] = ACTIONS(611), + [anon_sym_DOLLARfor] = ACTIONS(611), + [anon_sym_for] = ACTIONS(611), + [anon_sym_POUND] = ACTIONS(611), + [anon_sym_asm] = ACTIONS(611), + [anon_sym_AT_LBRACK] = ACTIONS(611), + }, + [189] = { + [sym_line_comment] = STATE(189), + [sym_block_comment] = STATE(189), + [sym_reference_expression] = STATE(4440), + [sym_type_reference_expression] = STATE(986), + [sym_plain_type] = STATE(1030), + [sym__plain_type_without_special] = STATE(1087), + [sym_anon_struct_type] = STATE(1071), + [sym_multi_return_type] = STATE(1087), + [sym_result_type] = STATE(1087), + [sym_option_type] = STATE(1087), + [sym_qualified_type] = STATE(986), + [sym_fixed_array_type] = STATE(1071), + [sym_array_type] = STATE(1071), + [sym_pointer_type] = STATE(1071), + [sym_wrong_pointer_type] = STATE(1071), + [sym_map_type] = STATE(1071), + [sym_channel_type] = STATE(1071), + [sym_shared_type] = STATE(1071), + [sym_thread_type] = STATE(1071), + [sym_atomic_type] = STATE(1071), + [sym_generic_type] = STATE(1071), + [sym_function_type] = STATE(1071), + [ts_builtin_sym_end] = ACTIONS(603), + [sym_identifier] = ACTIONS(1318), + [anon_sym_LF] = ACTIONS(605), + [anon_sym_CR] = ACTIONS(605), + [anon_sym_CR_LF] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(605), + [anon_sym_as] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(605), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_const] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(1320), + [anon_sym___global] = ACTIONS(605), + [anon_sym_type] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [anon_sym_LT_EQ] = ACTIONS(605), + [anon_sym_GT_EQ] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(605), + [anon_sym_pub] = ACTIONS(605), + [anon_sym_mut] = ACTIONS(605), + [anon_sym_enum] = ACTIONS(605), + [anon_sym_interface] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_QMARK] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_go] = ACTIONS(605), + [anon_sym_spawn] = ACTIONS(605), + [anon_sym_json_DOTdecode] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(605), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_GT_GT_GT] = ACTIONS(605), + [anon_sym_AMP_CARET] = ACTIONS(605), + [anon_sym_AMP_AMP] = ACTIONS(605), + [anon_sym_PIPE_PIPE] = ACTIONS(605), + [anon_sym_or] = ACTIONS(605), + [sym_none] = ACTIONS(605), + [sym_true] = ACTIONS(605), + [sym_false] = ACTIONS(605), + [sym_nil] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(605), + [anon_sym_POUND_LBRACK] = ACTIONS(605), + [anon_sym_if] = ACTIONS(605), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_is] = ACTIONS(605), + [anon_sym_BANGis] = ACTIONS(605), + [anon_sym_in] = ACTIONS(605), + [anon_sym_BANGin] = ACTIONS(605), + [anon_sym_match] = ACTIONS(605), + [anon_sym_select] = ACTIONS(605), + [anon_sym_lock] = ACTIONS(605), + [anon_sym_rlock] = ACTIONS(605), + [anon_sym_unsafe] = ACTIONS(605), + [anon_sym_sql] = ACTIONS(605), + [sym_int_literal] = ACTIONS(605), + [sym_float_literal] = ACTIONS(605), + [sym_rune_literal] = ACTIONS(605), + [anon_sym_SQUOTE] = ACTIONS(605), + [anon_sym_DQUOTE] = ACTIONS(605), + [anon_sym_c_SQUOTE] = ACTIONS(605), + [anon_sym_c_DQUOTE] = ACTIONS(605), + [anon_sym_r_SQUOTE] = ACTIONS(605), + [anon_sym_r_DQUOTE] = ACTIONS(605), + [sym_pseudo_compile_time_identifier] = ACTIONS(605), + [anon_sym_shared] = ACTIONS(1336), + [anon_sym_map_LBRACK] = ACTIONS(1338), + [anon_sym_chan] = ACTIONS(1340), + [anon_sym_thread] = ACTIONS(1342), + [anon_sym_atomic] = ACTIONS(1344), + [anon_sym_assert] = ACTIONS(605), + [anon_sym_defer] = ACTIONS(605), + [anon_sym_goto] = ACTIONS(605), + [anon_sym_break] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(605), + [anon_sym_return] = ACTIONS(605), + [anon_sym_DOLLARfor] = ACTIONS(605), + [anon_sym_for] = ACTIONS(605), + [anon_sym_POUND] = ACTIONS(605), + [anon_sym_asm] = ACTIONS(605), + [anon_sym_AT_LBRACK] = ACTIONS(605), + }, + [190] = { + [sym_line_comment] = STATE(190), + [sym_block_comment] = STATE(190), + [sym_reference_expression] = STATE(4440), + [sym_type_reference_expression] = STATE(986), + [sym_plain_type] = STATE(1098), + [sym__plain_type_without_special] = STATE(1087), + [sym_anon_struct_type] = STATE(1071), + [sym_multi_return_type] = STATE(1087), + [sym_result_type] = STATE(1087), + [sym_option_type] = STATE(1087), + [sym_qualified_type] = STATE(986), + [sym_fixed_array_type] = STATE(1071), + [sym_array_type] = STATE(1071), + [sym_pointer_type] = STATE(1071), + [sym_wrong_pointer_type] = STATE(1071), + [sym_map_type] = STATE(1071), + [sym_channel_type] = STATE(1071), + [sym_shared_type] = STATE(1071), + [sym_thread_type] = STATE(1071), + [sym_atomic_type] = STATE(1071), + [sym_generic_type] = STATE(1071), + [sym_function_type] = STATE(1071), + [ts_builtin_sym_end] = ACTIONS(563), + [sym_identifier] = ACTIONS(1318), + [anon_sym_LF] = ACTIONS(567), + [anon_sym_CR] = ACTIONS(567), + [anon_sym_CR_LF] = ACTIONS(567), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(567), + [anon_sym_as] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_const] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(1320), + [anon_sym___global] = ACTIONS(567), + [anon_sym_type] = ACTIONS(567), + [anon_sym_fn] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(567), + [anon_sym_pub] = ACTIONS(567), + [anon_sym_mut] = ACTIONS(567), + [anon_sym_enum] = ACTIONS(567), + [anon_sym_interface] = ACTIONS(567), + [anon_sym_PLUS_PLUS] = ACTIONS(567), + [anon_sym_DASH_DASH] = ACTIONS(567), + [anon_sym_QMARK] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_go] = ACTIONS(567), + [anon_sym_spawn] = ACTIONS(567), + [anon_sym_json_DOTdecode] = ACTIONS(567), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(567), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(567), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_GT_GT_GT] = ACTIONS(567), + [anon_sym_AMP_CARET] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_or] = ACTIONS(567), + [sym_none] = ACTIONS(567), + [sym_true] = ACTIONS(567), + [sym_false] = ACTIONS(567), + [sym_nil] = ACTIONS(567), + [anon_sym_QMARK_DOT] = ACTIONS(567), + [anon_sym_POUND_LBRACK] = ACTIONS(567), + [anon_sym_if] = ACTIONS(567), + [anon_sym_DOLLARif] = ACTIONS(567), + [anon_sym_is] = ACTIONS(567), + [anon_sym_BANGis] = ACTIONS(567), + [anon_sym_in] = ACTIONS(567), + [anon_sym_BANGin] = ACTIONS(567), + [anon_sym_match] = ACTIONS(567), + [anon_sym_select] = ACTIONS(567), + [anon_sym_lock] = ACTIONS(567), + [anon_sym_rlock] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(567), + [anon_sym_sql] = ACTIONS(567), + [sym_int_literal] = ACTIONS(567), + [sym_float_literal] = ACTIONS(567), + [sym_rune_literal] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(567), + [anon_sym_c_SQUOTE] = ACTIONS(567), + [anon_sym_c_DQUOTE] = ACTIONS(567), + [anon_sym_r_SQUOTE] = ACTIONS(567), + [anon_sym_r_DQUOTE] = ACTIONS(567), + [sym_pseudo_compile_time_identifier] = ACTIONS(567), + [anon_sym_shared] = ACTIONS(1336), + [anon_sym_map_LBRACK] = ACTIONS(1338), + [anon_sym_chan] = ACTIONS(1340), + [anon_sym_thread] = ACTIONS(1342), + [anon_sym_atomic] = ACTIONS(1344), + [anon_sym_assert] = ACTIONS(567), + [anon_sym_defer] = ACTIONS(567), + [anon_sym_goto] = ACTIONS(567), + [anon_sym_break] = ACTIONS(567), + [anon_sym_continue] = ACTIONS(567), + [anon_sym_return] = ACTIONS(567), + [anon_sym_DOLLARfor] = ACTIONS(567), + [anon_sym_for] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_asm] = ACTIONS(567), + [anon_sym_AT_LBRACK] = ACTIONS(567), + }, + [191] = { + [sym_line_comment] = STATE(191), + [sym_block_comment] = STATE(191), + [sym__expression] = STATE(2649), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2749), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2853), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_range] = STATE(4421), + [sym_attribute_expression] = STATE(3862), + [sym_if_attribute] = STATE(4188), + [sym__plain_attribute] = STATE(4188), + [sym_literal_attribute] = STATE(4189), + [sym_value_attribute] = STATE(3863), + [sym_key_value_attribute] = STATE(4189), + [sym_identifier] = ACTIONS(1424), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1466), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1486), + }, [192] = { [sym_line_comment] = STATE(192), [sym_block_comment] = STATE(192), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_element_list] = STATE(4577), - [sym_short_element_list] = STATE(4576), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1198), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_element_list_repeat1] = STATE(3441), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_element_list] = STATE(4701), + [sym_short_element_list] = STATE(4394), + [sym_keyed_element] = STATE(3450), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1226), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(3450), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_element_list_repeat1] = STATE(3579), [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(1071), [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(1371), + [anon_sym_RBRACE] = ACTIONS(1488), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -44954,79 +45249,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [193] = { [sym_line_comment] = STATE(193), [sym_block_comment] = STATE(193), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_element_list] = STATE(4500), - [sym_short_element_list] = STATE(4498), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1198), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_element_list_repeat1] = STATE(3441), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_element_list] = STATE(4584), + [sym_short_element_list] = STATE(4583), + [sym_keyed_element] = STATE(3450), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1226), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(3450), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_element_list_repeat1] = STATE(3579), [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(1071), [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(1373), + [anon_sym_RBRACE] = ACTIONS(1490), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -45076,79 +45371,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [194] = { [sym_line_comment] = STATE(194), [sym_block_comment] = STATE(194), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_element_list] = STATE(4526), - [sym_short_element_list] = STATE(4529), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1198), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_element_list_repeat1] = STATE(3441), + [sym__expression] = STATE(2635), + [sym__expression_without_blocks] = STATE(2636), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_match_arm] = STATE(2177), + [sym_match_expression_list] = STATE(4122), + [sym_match_arm_type] = STATE(4039), + [sym_match_else_arm_clause] = STATE(2177), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4040), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__definite_range] = STATE(4041), + [aux_sym_match_arms_repeat1] = STATE(175), + [sym_identifier] = ACTIONS(1079), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [195] = { + [sym_line_comment] = STATE(195), + [sym_block_comment] = STATE(195), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_element_list] = STATE(4463), + [sym_short_element_list] = STATE(4591), + [sym_keyed_element] = STATE(3450), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1226), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(3450), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_element_list_repeat1] = STATE(3579), [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(1071), [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(1375), + [anon_sym_RBRACE] = ACTIONS(1494), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -45195,197 +45612,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [195] = { - [sym_line_comment] = STATE(195), - [sym_block_comment] = STATE(195), - [sym__expression] = STATE(2587), - [sym__expression_without_blocks] = STATE(2590), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [sym_match_expression] = STATE(2642), - [sym_match_arm] = STATE(2134), - [sym_match_expression_list] = STATE(4145), - [sym_match_arm_type] = STATE(3872), - [sym_match_else_arm_clause] = STATE(2134), - [sym_select_expression] = STATE(2642), - [sym_lock_expression] = STATE(2642), - [sym_unsafe_expression] = STATE(2642), - [sym_sql_expression] = STATE(2642), - [sym_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(3874), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__definite_range] = STATE(3868), - [aux_sym_match_arms_repeat1] = STATE(195), - [sym_identifier] = ACTIONS(1377), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_fn] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_struct] = ACTIONS(1400), - [anon_sym_mut] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_go] = ACTIONS(1412), - [anon_sym_spawn] = ACTIONS(1415), - [anon_sym_json_DOTdecode] = ACTIONS(1418), - [anon_sym_LBRACK2] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_LT_DASH] = ACTIONS(1427), - [sym_none] = ACTIONS(1430), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_nil] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1433), - [anon_sym_else] = ACTIONS(1436), - [anon_sym_DOLLARif] = ACTIONS(1439), - [anon_sym_match] = ACTIONS(1442), - [anon_sym_select] = ACTIONS(1445), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1451), - [anon_sym_sql] = ACTIONS(1454), - [sym_int_literal] = ACTIONS(1430), - [sym_float_literal] = ACTIONS(1457), - [sym_rune_literal] = ACTIONS(1457), - [anon_sym_SQUOTE] = ACTIONS(1460), - [anon_sym_DQUOTE] = ACTIONS(1463), - [anon_sym_c_SQUOTE] = ACTIONS(1466), - [anon_sym_c_DQUOTE] = ACTIONS(1469), - [anon_sym_r_SQUOTE] = ACTIONS(1472), - [anon_sym_r_DQUOTE] = ACTIONS(1475), - [sym_pseudo_compile_time_identifier] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(1481), - [anon_sym_map_LBRACK] = ACTIONS(1484), - [anon_sym_chan] = ACTIONS(1487), - [anon_sym_thread] = ACTIONS(1490), - [anon_sym_atomic] = ACTIONS(1493), - }, [196] = { [sym_line_comment] = STATE(196), [sym_block_comment] = STATE(196), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_element_list] = STATE(4538), - [sym_short_element_list] = STATE(4540), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1198), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_element_list_repeat1] = STATE(3441), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_element_list] = STATE(4688), + [sym_short_element_list] = STATE(4687), + [sym_keyed_element] = STATE(3450), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1226), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(3450), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_element_list_repeat1] = STATE(3579), [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -45442,72 +45737,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [197] = { [sym_line_comment] = STATE(197), [sym_block_comment] = STATE(197), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_argument] = STATE(1911), - [sym_type_initializer] = STATE(1179), - [sym_keyed_element] = STATE(1901), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1188), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(1901), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(743), - [sym_mutable_expression] = STATE(1901), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_argument_list_repeat1] = STATE(199), + [sym__expression] = STATE(1123), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_argument] = STATE(1943), + [sym_type_initializer] = STATE(1228), + [sym_keyed_element] = STATE(1942), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1209), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(1942), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(575), + [sym_mutable_expression] = STATE(1942), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_argument_list_repeat1] = STATE(209), [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -45519,7 +45814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1075), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -45563,72 +45858,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [198] = { [sym_line_comment] = STATE(198), [sym_block_comment] = STATE(198), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_argument] = STATE(1911), - [sym_type_initializer] = STATE(1179), - [sym_keyed_element] = STATE(1901), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1188), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(1901), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(743), - [sym_mutable_expression] = STATE(1901), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_argument_list_repeat1] = STATE(199), + [sym__expression] = STATE(1123), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_argument] = STATE(1943), + [sym_type_initializer] = STATE(1228), + [sym_keyed_element] = STATE(1942), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1209), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(1942), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(575), + [sym_mutable_expression] = STATE(1942), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_argument_list_repeat1] = STATE(209), [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -45640,7 +45935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1075), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -45684,205 +45979,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [199] = { [sym_line_comment] = STATE(199), [sym_block_comment] = STATE(199), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_argument] = STATE(1911), - [sym_type_initializer] = STATE(1179), - [sym_keyed_element] = STATE(1901), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1188), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(1901), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(743), - [sym_mutable_expression] = STATE(1901), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_argument_list_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(1502), + [sym__expression] = STATE(1123), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_argument] = STATE(1943), + [sym_type_initializer] = STATE(1228), + [sym_keyed_element] = STATE(1942), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1209), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(1942), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(575), + [sym_mutable_expression] = STATE(1942), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_argument_list_repeat1] = STATE(209), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_LPAREN] = ACTIONS(1511), - [anon_sym_RPAREN] = ACTIONS(1514), - [anon_sym_fn] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1525), - [anon_sym_struct] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1531), - [anon_sym_QMARK] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_go] = ACTIONS(1540), - [anon_sym_spawn] = ACTIONS(1543), - [anon_sym_json_DOTdecode] = ACTIONS(1546), - [anon_sym_LBRACK2] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1519), - [anon_sym_CARET] = ACTIONS(1519), - [anon_sym_AMP] = ACTIONS(1552), - [anon_sym_LT_DASH] = ACTIONS(1555), - [sym_none] = ACTIONS(1558), - [sym_true] = ACTIONS(1558), - [sym_false] = ACTIONS(1558), - [sym_nil] = ACTIONS(1558), - [anon_sym_if] = ACTIONS(1561), - [anon_sym_DOLLARif] = ACTIONS(1564), - [anon_sym_match] = ACTIONS(1567), - [anon_sym_select] = ACTIONS(1570), - [anon_sym_lock] = ACTIONS(1573), - [anon_sym_rlock] = ACTIONS(1573), - [anon_sym_unsafe] = ACTIONS(1576), - [anon_sym_sql] = ACTIONS(1579), - [sym_int_literal] = ACTIONS(1558), - [sym_float_literal] = ACTIONS(1582), - [sym_rune_literal] = ACTIONS(1582), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_c_SQUOTE] = ACTIONS(1591), - [anon_sym_c_DQUOTE] = ACTIONS(1594), - [anon_sym_r_SQUOTE] = ACTIONS(1597), - [anon_sym_r_DQUOTE] = ACTIONS(1600), - [sym_pseudo_compile_time_identifier] = ACTIONS(1603), - [anon_sym_shared] = ACTIONS(1606), - [anon_sym_map_LBRACK] = ACTIONS(1609), - [anon_sym_chan] = ACTIONS(1612), - [anon_sym_thread] = ACTIONS(1615), - [anon_sym_atomic] = ACTIONS(1618), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_RPAREN] = ACTIONS(1502), + [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(1075), + [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), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [200] = { [sym_line_comment] = STATE(200), [sym_block_comment] = STATE(200), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_argument] = STATE(1911), - [sym_type_initializer] = STATE(1179), - [sym_keyed_element] = STATE(1901), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1188), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(1901), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(743), - [sym_mutable_expression] = STATE(1901), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_argument_list_repeat1] = STATE(199), + [sym__expression] = STATE(1123), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_argument] = STATE(1943), + [sym_type_initializer] = STATE(1228), + [sym_keyed_element] = STATE(1942), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1209), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(1942), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(575), + [sym_mutable_expression] = STATE(1942), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_argument_list_repeat1] = STATE(209), [sym_identifier] = ACTIONS(1071), [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(1621), + [anon_sym_RPAREN] = ACTIONS(1504), [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(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1075), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -45926,84 +46221,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [201] = { [sym_line_comment] = STATE(201), [sym_block_comment] = STATE(201), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_argument] = STATE(1911), - [sym_type_initializer] = STATE(1179), - [sym_keyed_element] = STATE(1901), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1188), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(1901), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(743), - [sym_mutable_expression] = STATE(1901), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_argument_list_repeat1] = STATE(199), + [sym__expression] = STATE(1123), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_argument] = STATE(1943), + [sym_type_initializer] = STATE(1228), + [sym_keyed_element] = STATE(1942), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1209), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(1942), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(575), + [sym_mutable_expression] = STATE(1942), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_argument_list_repeat1] = STATE(209), [sym_identifier] = ACTIONS(1071), [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(1623), + [anon_sym_RPAREN] = ACTIONS(1506), [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(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1075), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -46047,84 +46342,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [202] = { [sym_line_comment] = STATE(202), [sym_block_comment] = STATE(202), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_argument] = STATE(1911), - [sym_type_initializer] = STATE(1179), - [sym_keyed_element] = STATE(1901), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1188), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(1901), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(743), - [sym_mutable_expression] = STATE(1901), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_argument_list_repeat1] = STATE(199), + [sym__expression] = STATE(1123), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_argument] = STATE(1943), + [sym_type_initializer] = STATE(1228), + [sym_keyed_element] = STATE(1942), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1209), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(1942), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(575), + [sym_mutable_expression] = STATE(1942), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_argument_list_repeat1] = STATE(209), [sym_identifier] = ACTIONS(1071), [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(1625), + [anon_sym_RPAREN] = ACTIONS(1508), [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(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1075), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -46168,84 +46463,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [203] = { [sym_line_comment] = STATE(203), [sym_block_comment] = STATE(203), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_argument] = STATE(1911), - [sym_type_initializer] = STATE(1179), - [sym_keyed_element] = STATE(1901), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1188), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(1901), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(743), - [sym_mutable_expression] = STATE(1901), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_argument_list_repeat1] = STATE(199), + [sym__expression] = STATE(1123), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_argument] = STATE(1943), + [sym_type_initializer] = STATE(1228), + [sym_keyed_element] = STATE(1942), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1209), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(1942), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(575), + [sym_mutable_expression] = STATE(1942), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_argument_list_repeat1] = STATE(209), [sym_identifier] = ACTIONS(1071), [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(1627), + [anon_sym_RPAREN] = ACTIONS(1510), [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(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1075), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -46289,84 +46584,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [204] = { [sym_line_comment] = STATE(204), [sym_block_comment] = STATE(204), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_argument] = STATE(1911), - [sym_type_initializer] = STATE(1179), - [sym_keyed_element] = STATE(1901), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1188), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(1901), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(743), - [sym_mutable_expression] = STATE(1901), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_argument_list_repeat1] = STATE(199), + [sym__expression] = STATE(1123), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_argument] = STATE(1943), + [sym_type_initializer] = STATE(1228), + [sym_keyed_element] = STATE(1942), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1209), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(1942), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(575), + [sym_mutable_expression] = STATE(1942), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_argument_list_repeat1] = STATE(209), [sym_identifier] = ACTIONS(1071), [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(1629), + [anon_sym_RPAREN] = ACTIONS(1512), [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(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1075), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -46410,84 +46705,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [205] = { [sym_line_comment] = STATE(205), [sym_block_comment] = STATE(205), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_argument] = STATE(1911), - [sym_type_initializer] = STATE(1179), - [sym_keyed_element] = STATE(1901), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1188), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(1901), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(743), - [sym_mutable_expression] = STATE(1901), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_argument_list_repeat1] = STATE(199), + [sym__expression] = STATE(1123), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_argument] = STATE(1943), + [sym_type_initializer] = STATE(1228), + [sym_keyed_element] = STATE(1942), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1209), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(1942), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(575), + [sym_mutable_expression] = STATE(1942), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_argument_list_repeat1] = STATE(209), [sym_identifier] = ACTIONS(1071), [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(1631), + [anon_sym_RPAREN] = ACTIONS(1514), [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(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1075), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -46531,84 +46826,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [206] = { [sym_line_comment] = STATE(206), [sym_block_comment] = STATE(206), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_argument] = STATE(1911), - [sym_type_initializer] = STATE(1179), - [sym_keyed_element] = STATE(1901), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1188), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(1901), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(743), - [sym_mutable_expression] = STATE(1901), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_argument_list_repeat1] = STATE(199), + [sym__expression] = STATE(1123), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_argument] = STATE(1943), + [sym_type_initializer] = STATE(1228), + [sym_keyed_element] = STATE(1942), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1209), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(1942), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(575), + [sym_mutable_expression] = STATE(1942), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_argument_list_repeat1] = STATE(209), [sym_identifier] = ACTIONS(1071), [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(1633), + [anon_sym_RPAREN] = ACTIONS(1516), [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(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1075), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -46652,84 +46947,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [207] = { [sym_line_comment] = STATE(207), [sym_block_comment] = STATE(207), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_argument] = STATE(1911), - [sym_type_initializer] = STATE(1179), - [sym_keyed_element] = STATE(1901), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1188), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(1901), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(743), - [sym_mutable_expression] = STATE(1901), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_argument_list_repeat1] = STATE(199), + [sym__expression] = STATE(1123), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_argument] = STATE(1943), + [sym_type_initializer] = STATE(1228), + [sym_keyed_element] = STATE(1942), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1209), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(1942), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(575), + [sym_mutable_expression] = STATE(1942), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_argument_list_repeat1] = STATE(209), [sym_identifier] = ACTIONS(1071), [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(1635), + [anon_sym_RPAREN] = ACTIONS(1518), [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(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1075), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -46773,84 +47068,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [208] = { [sym_line_comment] = STATE(208), [sym_block_comment] = STATE(208), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_argument] = STATE(1911), - [sym_type_initializer] = STATE(1179), - [sym_keyed_element] = STATE(1901), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1188), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(1901), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(743), - [sym_mutable_expression] = STATE(1901), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_argument_list_repeat1] = STATE(199), + [sym__expression] = STATE(1123), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_argument] = STATE(1943), + [sym_type_initializer] = STATE(1228), + [sym_keyed_element] = STATE(1942), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1209), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(1942), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(575), + [sym_mutable_expression] = STATE(1942), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_argument_list_repeat1] = STATE(209), [sym_identifier] = ACTIONS(1071), [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(1637), + [anon_sym_RPAREN] = ACTIONS(1520), [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(1077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1075), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -46894,238 +47189,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [209] = { [sym_line_comment] = STATE(209), [sym_block_comment] = STATE(209), - [sym__expression] = STATE(1121), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_argument] = STATE(1911), - [sym_type_initializer] = STATE(1179), - [sym_keyed_element] = STATE(1901), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1188), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_spread_expression] = STATE(1901), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(743), - [sym_mutable_expression] = STATE(1901), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_argument_list_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(1123), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_argument] = STATE(1943), + [sym_type_initializer] = STATE(1228), + [sym_keyed_element] = STATE(1942), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1209), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_spread_expression] = STATE(1942), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(575), + [sym_mutable_expression] = STATE(1942), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_argument_list_repeat1] = STATE(209), + [sym_identifier] = ACTIONS(1522), [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(1639), - [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(1077), - [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), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_c_SQUOTE] = ACTIONS(691), - [anon_sym_c_DQUOTE] = ACTIONS(693), - [anon_sym_r_SQUOTE] = ACTIONS(695), - [anon_sym_r_DQUOTE] = ACTIONS(697), - [sym_pseudo_compile_time_identifier] = ACTIONS(699), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_RPAREN] = ACTIONS(1534), + [anon_sym_fn] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1539), + [anon_sym_DASH] = ACTIONS(1539), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1545), + [anon_sym_struct] = ACTIONS(1548), + [anon_sym_mut] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1554), + [anon_sym_BANG] = ACTIONS(1557), + [anon_sym_go] = ACTIONS(1560), + [anon_sym_spawn] = ACTIONS(1563), + [anon_sym_json_DOTdecode] = ACTIONS(1566), + [anon_sym_LBRACK2] = ACTIONS(1569), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_LT_DASH] = ACTIONS(1575), + [sym_none] = ACTIONS(1578), + [sym_true] = ACTIONS(1578), + [sym_false] = ACTIONS(1578), + [sym_nil] = ACTIONS(1578), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_DOLLARif] = ACTIONS(1584), + [anon_sym_match] = ACTIONS(1587), + [anon_sym_select] = ACTIONS(1590), + [anon_sym_lock] = ACTIONS(1593), + [anon_sym_rlock] = ACTIONS(1593), + [anon_sym_unsafe] = ACTIONS(1596), + [anon_sym_sql] = ACTIONS(1599), + [sym_int_literal] = ACTIONS(1578), + [sym_float_literal] = ACTIONS(1602), + [sym_rune_literal] = ACTIONS(1602), + [anon_sym_SQUOTE] = ACTIONS(1605), + [anon_sym_DQUOTE] = ACTIONS(1608), + [anon_sym_c_SQUOTE] = ACTIONS(1611), + [anon_sym_c_DQUOTE] = ACTIONS(1614), + [anon_sym_r_SQUOTE] = ACTIONS(1617), + [anon_sym_r_DQUOTE] = ACTIONS(1620), + [sym_pseudo_compile_time_identifier] = ACTIONS(1623), + [anon_sym_shared] = ACTIONS(1626), + [anon_sym_map_LBRACK] = ACTIONS(1629), + [anon_sym_chan] = ACTIONS(1632), + [anon_sym_thread] = ACTIONS(1635), + [anon_sym_atomic] = ACTIONS(1638), }, [210] = { [sym_line_comment] = STATE(210), [sym_block_comment] = STATE(210), - [sym__expression] = STATE(1771), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_strictly_expression_list] = STATE(4289), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(879), - [sym_mutable_expression] = STATE(3272), - [sym_expression_list] = STATE(3305), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_simple_statement] = STATE(4350), - [sym_var_declaration] = STATE(4289), - [sym_assignment_statement] = STATE(4289), + [sym__expression] = STATE(1799), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_strictly_expression_list] = STATE(4275), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(751), + [sym_mutable_expression] = STATE(3330), + [sym_expression_list] = STATE(3384), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_simple_statement] = STATE(4521), + [sym_var_declaration] = STATE(4275), + [sym_assignment_statement] = STATE(4275), [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), + [anon_sym_DOT] = ACTIONS(789), [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(789), - [anon_sym_go] = ACTIONS(791), - [anon_sym_spawn] = ACTIONS(793), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(797), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(799), - [anon_sym_LT_DASH] = ACTIONS(801), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(811), - [anon_sym_lock] = ACTIONS(813), - [anon_sym_rlock] = ACTIONS(813), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_go] = ACTIONS(807), + [anon_sym_spawn] = ACTIONS(809), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_LT_DASH] = ACTIONS(817), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(827), + [anon_sym_lock] = ACTIONS(829), + [anon_sym_rlock] = ACTIONS(829), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -47135,119 +47430,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [211] = { [sym_line_comment] = STATE(211), [sym_block_comment] = STATE(211), - [sym__expression] = STATE(2287), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(624), - [sym_mutable_expression] = STATE(3538), - [sym_expression_list] = STATE(3718), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), - [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(1647), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_RBRACE] = ACTIONS(495), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1657), - [anon_sym_struct] = ACTIONS(1659), + [sym__expression] = STATE(1799), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_strictly_expression_list] = STATE(4275), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(751), + [sym_mutable_expression] = STATE(3330), + [sym_expression_list] = STATE(3384), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_simple_statement] = STATE(4515), + [sym_var_declaration] = STATE(4275), + [sym_assignment_statement] = STATE(4275), + [sym_identifier] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(1667), - [anon_sym_LBRACK2] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1655), - [anon_sym_CARET] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_LT_DASH] = ACTIONS(1673), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(1675), - [sym_rune_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1691), - [anon_sym_DQUOTE] = ACTIONS(1693), - [anon_sym_c_SQUOTE] = ACTIONS(1695), - [anon_sym_c_DQUOTE] = ACTIONS(1697), - [anon_sym_r_SQUOTE] = ACTIONS(1699), - [anon_sym_r_DQUOTE] = ACTIONS(1701), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_go] = ACTIONS(807), + [anon_sym_spawn] = ACTIONS(809), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_LT_DASH] = ACTIONS(817), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(827), + [anon_sym_lock] = ACTIONS(829), + [anon_sym_rlock] = ACTIONS(829), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(561), + [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), @@ -47255,117 +47550,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [212] = { [sym_line_comment] = STATE(212), [sym_block_comment] = STATE(212), - [sym__expression] = STATE(1771), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_strictly_expression_list] = STATE(4289), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(879), - [sym_mutable_expression] = STATE(3272), - [sym_expression_list] = STATE(3305), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_simple_statement] = STATE(4384), - [sym_var_declaration] = STATE(4289), - [sym_assignment_statement] = STATE(4289), + [sym__expression] = STATE(1799), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_strictly_expression_list] = STATE(4275), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(751), + [sym_mutable_expression] = STATE(3330), + [sym_expression_list] = STATE(3384), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_simple_statement] = STATE(4555), + [sym_var_declaration] = STATE(4275), + [sym_assignment_statement] = STATE(4275), [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(789), - [anon_sym_go] = ACTIONS(791), - [anon_sym_spawn] = ACTIONS(793), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(797), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(799), - [anon_sym_LT_DASH] = ACTIONS(801), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(811), - [anon_sym_lock] = ACTIONS(813), - [anon_sym_rlock] = ACTIONS(813), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_go] = ACTIONS(807), + [anon_sym_spawn] = ACTIONS(809), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_LT_DASH] = ACTIONS(817), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(827), + [anon_sym_lock] = ACTIONS(829), + [anon_sym_rlock] = ACTIONS(829), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -47375,489 +47670,489 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [213] = { [sym_line_comment] = STATE(213), [sym_block_comment] = STATE(213), - [sym__expression] = STATE(1771), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_strictly_expression_list] = STATE(4289), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(879), - [sym_mutable_expression] = STATE(3272), - [sym_expression_list] = STATE(3305), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_simple_statement] = STATE(4387), - [sym_var_declaration] = STATE(4289), - [sym_assignment_statement] = STATE(4289), - [sym_identifier] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_struct] = ACTIONS(785), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(789), - [anon_sym_go] = ACTIONS(791), - [anon_sym_spawn] = ACTIONS(793), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(797), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(799), - [anon_sym_LT_DASH] = ACTIONS(801), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(811), - [anon_sym_lock] = ACTIONS(813), - [anon_sym_rlock] = ACTIONS(813), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [sym_type_parameters] = STATE(4251), + [sym_argument_list] = STATE(359), + [sym_or_block] = STATE(358), + [aux_sym_strictly_expression_list_repeat1] = STATE(1452), + [ts_builtin_sym_end] = ACTIONS(1649), + [sym_identifier] = ACTIONS(1651), + [anon_sym_LF] = ACTIONS(1651), + [anon_sym_CR] = ACTIONS(1651), + [anon_sym_CR_LF] = ACTIONS(1651), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1653), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_COMMA] = ACTIONS(1657), + [anon_sym_const] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_EQ] = ACTIONS(1657), + [anon_sym___global] = ACTIONS(1651), + [anon_sym_type] = ACTIONS(1651), + [anon_sym_fn] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_PERCENT] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_GT] = ACTIONS(1665), + [anon_sym_EQ_EQ] = ACTIONS(1665), + [anon_sym_BANG_EQ] = ACTIONS(1665), + [anon_sym_LT_EQ] = ACTIONS(1665), + [anon_sym_GT_EQ] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_struct] = ACTIONS(1651), + [anon_sym_union] = ACTIONS(1651), + [anon_sym_pub] = ACTIONS(1651), + [anon_sym_mut] = ACTIONS(1651), + [anon_sym_enum] = ACTIONS(1651), + [anon_sym_interface] = ACTIONS(1651), + [anon_sym_PLUS_PLUS] = ACTIONS(1669), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_QMARK] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1675), + [anon_sym_go] = ACTIONS(1651), + [anon_sym_spawn] = ACTIONS(1651), + [anon_sym_json_DOTdecode] = ACTIONS(1651), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LBRACK2] = ACTIONS(1677), + [anon_sym_TILDE] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_LT_DASH] = ACTIONS(1651), + [anon_sym_LT_LT] = ACTIONS(1663), + [anon_sym_GT_GT] = ACTIONS(1663), + [anon_sym_GT_GT_GT] = ACTIONS(1663), + [anon_sym_AMP_CARET] = ACTIONS(1663), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [anon_sym_or] = ACTIONS(1683), + [sym_none] = ACTIONS(1651), + [sym_true] = ACTIONS(1651), + [sym_false] = ACTIONS(1651), + [sym_nil] = ACTIONS(1651), + [anon_sym_QMARK_DOT] = ACTIONS(1653), + [anon_sym_POUND_LBRACK] = ACTIONS(1677), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_DOLLARif] = ACTIONS(1651), + [anon_sym_is] = ACTIONS(1685), + [anon_sym_BANGis] = ACTIONS(1685), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_BANGin] = ACTIONS(1687), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(1651), + [anon_sym_STAR_EQ] = ACTIONS(1657), + [anon_sym_SLASH_EQ] = ACTIONS(1657), + [anon_sym_PERCENT_EQ] = ACTIONS(1657), + [anon_sym_LT_LT_EQ] = ACTIONS(1657), + [anon_sym_GT_GT_EQ] = ACTIONS(1657), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1657), + [anon_sym_AMP_EQ] = ACTIONS(1657), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1657), + [anon_sym_PLUS_EQ] = ACTIONS(1657), + [anon_sym_DASH_EQ] = ACTIONS(1657), + [anon_sym_PIPE_EQ] = ACTIONS(1657), + [anon_sym_CARET_EQ] = ACTIONS(1657), + [anon_sym_COLON_EQ] = ACTIONS(1657), + [anon_sym_lock] = ACTIONS(1651), + [anon_sym_rlock] = ACTIONS(1651), + [anon_sym_unsafe] = ACTIONS(1651), + [anon_sym_sql] = ACTIONS(1651), + [sym_int_literal] = ACTIONS(1651), + [sym_float_literal] = ACTIONS(1651), + [sym_rune_literal] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1651), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_c_SQUOTE] = ACTIONS(1651), + [anon_sym_c_DQUOTE] = ACTIONS(1651), + [anon_sym_r_SQUOTE] = ACTIONS(1651), + [anon_sym_r_DQUOTE] = ACTIONS(1651), + [sym_pseudo_compile_time_identifier] = ACTIONS(1651), + [anon_sym_shared] = ACTIONS(1651), + [anon_sym_map_LBRACK] = ACTIONS(1651), + [anon_sym_chan] = ACTIONS(1651), + [anon_sym_thread] = ACTIONS(1651), + [anon_sym_atomic] = ACTIONS(1651), + [anon_sym_assert] = ACTIONS(1651), + [anon_sym_defer] = ACTIONS(1651), + [anon_sym_goto] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_DOLLARfor] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_POUND] = ACTIONS(1651), + [anon_sym_asm] = ACTIONS(1651), + [anon_sym_AT_LBRACK] = ACTIONS(1651), }, [214] = { [sym_line_comment] = STATE(214), [sym_block_comment] = STATE(214), - [sym_type_parameters] = STATE(4287), - [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(399), - [aux_sym_strictly_expression_list_repeat1] = STATE(3275), - [ts_builtin_sym_end] = ACTIONS(1709), - [sym_identifier] = ACTIONS(1711), - [anon_sym_LF] = ACTIONS(1711), - [anon_sym_CR] = ACTIONS(1711), - [anon_sym_CR_LF] = ACTIONS(1711), + [sym_type_parameters] = STATE(4251), + [sym_argument_list] = STATE(359), + [sym_or_block] = STATE(358), + [aux_sym_strictly_expression_list_repeat1] = STATE(3336), + [ts_builtin_sym_end] = ACTIONS(1689), + [sym_identifier] = ACTIONS(1691), + [anon_sym_LF] = ACTIONS(1691), + [anon_sym_CR] = ACTIONS(1691), + [anon_sym_CR_LF] = ACTIONS(1691), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1713), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1711), - [anon_sym_COMMA] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_EQ] = ACTIONS(1721), - [anon_sym___global] = ACTIONS(1711), - [anon_sym_type] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_fn] = ACTIONS(1711), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_PERCENT] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1727), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1711), - [anon_sym_union] = ACTIONS(1711), - [anon_sym_pub] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_enum] = ACTIONS(1711), - [anon_sym_interface] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1731), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_go] = ACTIONS(1711), - [anon_sym_spawn] = ACTIONS(1711), - [anon_sym_json_DOTdecode] = ACTIONS(1711), - [anon_sym_LBRACK2] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_LT_DASH] = ACTIONS(1741), - [anon_sym_LT_LT] = ACTIONS(1743), - [anon_sym_GT_GT] = ACTIONS(1725), - [anon_sym_GT_GT_GT] = ACTIONS(1725), - [anon_sym_AMP_CARET] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1745), - [anon_sym_PIPE_PIPE] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1749), - [sym_none] = ACTIONS(1711), - [sym_true] = ACTIONS(1711), - [sym_false] = ACTIONS(1711), - [sym_nil] = ACTIONS(1711), - [anon_sym_QMARK_DOT] = ACTIONS(1713), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_DOLLARif] = ACTIONS(1711), - [anon_sym_is] = ACTIONS(1751), - [anon_sym_BANGis] = ACTIONS(1751), - [anon_sym_in] = ACTIONS(1753), - [anon_sym_BANGin] = ACTIONS(1753), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_select] = ACTIONS(1711), - [anon_sym_STAR_EQ] = ACTIONS(1721), - [anon_sym_SLASH_EQ] = ACTIONS(1721), - [anon_sym_PERCENT_EQ] = ACTIONS(1721), - [anon_sym_LT_LT_EQ] = ACTIONS(1721), - [anon_sym_GT_GT_EQ] = ACTIONS(1721), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1721), - [anon_sym_AMP_EQ] = ACTIONS(1721), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1721), - [anon_sym_PLUS_EQ] = ACTIONS(1721), - [anon_sym_DASH_EQ] = ACTIONS(1721), - [anon_sym_PIPE_EQ] = ACTIONS(1721), - [anon_sym_CARET_EQ] = ACTIONS(1721), - [anon_sym_COLON_EQ] = ACTIONS(1721), - [anon_sym_lock] = ACTIONS(1711), - [anon_sym_rlock] = ACTIONS(1711), - [anon_sym_unsafe] = ACTIONS(1711), - [anon_sym_sql] = ACTIONS(1711), - [sym_int_literal] = ACTIONS(1711), - [sym_float_literal] = ACTIONS(1711), - [sym_rune_literal] = ACTIONS(1711), - [anon_sym_SQUOTE] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1711), - [anon_sym_c_SQUOTE] = ACTIONS(1711), - [anon_sym_c_DQUOTE] = ACTIONS(1711), - [anon_sym_r_SQUOTE] = ACTIONS(1711), - [anon_sym_r_DQUOTE] = ACTIONS(1711), - [sym_pseudo_compile_time_identifier] = ACTIONS(1711), - [anon_sym_shared] = ACTIONS(1711), - [anon_sym_map_LBRACK] = ACTIONS(1711), - [anon_sym_chan] = ACTIONS(1711), - [anon_sym_thread] = ACTIONS(1711), - [anon_sym_atomic] = ACTIONS(1711), - [anon_sym_assert] = ACTIONS(1711), - [anon_sym_defer] = ACTIONS(1711), - [anon_sym_goto] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_DOLLARfor] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(1711), - [anon_sym_asm] = ACTIONS(1711), - [anon_sym_AT_LBRACK] = ACTIONS(1711), + [anon_sym_DOT] = ACTIONS(1653), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1691), + [anon_sym_COMMA] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_EQ] = ACTIONS(1695), + [anon_sym___global] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_fn] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_PERCENT] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_GT] = ACTIONS(1665), + [anon_sym_EQ_EQ] = ACTIONS(1665), + [anon_sym_BANG_EQ] = ACTIONS(1665), + [anon_sym_LT_EQ] = ACTIONS(1665), + [anon_sym_GT_EQ] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_struct] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(1691), + [anon_sym_pub] = ACTIONS(1691), + [anon_sym_mut] = ACTIONS(1691), + [anon_sym_enum] = ACTIONS(1691), + [anon_sym_interface] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1669), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_QMARK] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1675), + [anon_sym_go] = ACTIONS(1691), + [anon_sym_spawn] = ACTIONS(1691), + [anon_sym_json_DOTdecode] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LBRACK2] = ACTIONS(1677), + [anon_sym_TILDE] = ACTIONS(1691), + [anon_sym_CARET] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_LT_DASH] = ACTIONS(1697), + [anon_sym_LT_LT] = ACTIONS(1699), + [anon_sym_GT_GT] = ACTIONS(1663), + [anon_sym_GT_GT_GT] = ACTIONS(1663), + [anon_sym_AMP_CARET] = ACTIONS(1663), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [anon_sym_or] = ACTIONS(1683), + [sym_none] = ACTIONS(1691), + [sym_true] = ACTIONS(1691), + [sym_false] = ACTIONS(1691), + [sym_nil] = ACTIONS(1691), + [anon_sym_QMARK_DOT] = ACTIONS(1653), + [anon_sym_POUND_LBRACK] = ACTIONS(1677), + [anon_sym_if] = ACTIONS(1691), + [anon_sym_DOLLARif] = ACTIONS(1691), + [anon_sym_is] = ACTIONS(1685), + [anon_sym_BANGis] = ACTIONS(1685), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_BANGin] = ACTIONS(1687), + [anon_sym_match] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1691), + [anon_sym_STAR_EQ] = ACTIONS(1695), + [anon_sym_SLASH_EQ] = ACTIONS(1695), + [anon_sym_PERCENT_EQ] = ACTIONS(1695), + [anon_sym_LT_LT_EQ] = ACTIONS(1695), + [anon_sym_GT_GT_EQ] = ACTIONS(1695), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1695), + [anon_sym_AMP_EQ] = ACTIONS(1695), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1695), + [anon_sym_PLUS_EQ] = ACTIONS(1695), + [anon_sym_DASH_EQ] = ACTIONS(1695), + [anon_sym_PIPE_EQ] = ACTIONS(1695), + [anon_sym_CARET_EQ] = ACTIONS(1695), + [anon_sym_COLON_EQ] = ACTIONS(1695), + [anon_sym_lock] = ACTIONS(1691), + [anon_sym_rlock] = ACTIONS(1691), + [anon_sym_unsafe] = ACTIONS(1691), + [anon_sym_sql] = ACTIONS(1691), + [sym_int_literal] = ACTIONS(1691), + [sym_float_literal] = ACTIONS(1691), + [sym_rune_literal] = ACTIONS(1691), + [anon_sym_SQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [anon_sym_c_SQUOTE] = ACTIONS(1691), + [anon_sym_c_DQUOTE] = ACTIONS(1691), + [anon_sym_r_SQUOTE] = ACTIONS(1691), + [anon_sym_r_DQUOTE] = ACTIONS(1691), + [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_shared] = ACTIONS(1691), + [anon_sym_map_LBRACK] = ACTIONS(1691), + [anon_sym_chan] = ACTIONS(1691), + [anon_sym_thread] = ACTIONS(1691), + [anon_sym_atomic] = ACTIONS(1691), + [anon_sym_assert] = ACTIONS(1691), + [anon_sym_defer] = ACTIONS(1691), + [anon_sym_goto] = ACTIONS(1691), + [anon_sym_break] = ACTIONS(1691), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_return] = ACTIONS(1691), + [anon_sym_DOLLARfor] = ACTIONS(1691), + [anon_sym_for] = ACTIONS(1691), + [anon_sym_POUND] = ACTIONS(1691), + [anon_sym_asm] = ACTIONS(1691), + [anon_sym_AT_LBRACK] = ACTIONS(1691), }, [215] = { [sym_line_comment] = STATE(215), [sym_block_comment] = STATE(215), - [sym_type_parameters] = STATE(4287), - [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(399), - [aux_sym_strictly_expression_list_repeat1] = STATE(1416), - [ts_builtin_sym_end] = ACTIONS(1755), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LF] = ACTIONS(1757), - [anon_sym_CR] = ACTIONS(1757), - [anon_sym_CR_LF] = ACTIONS(1757), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1713), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_COMMA] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_EQ] = ACTIONS(1759), - [anon_sym___global] = ACTIONS(1757), - [anon_sym_type] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_fn] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_PERCENT] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1727), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1757), - [anon_sym_union] = ACTIONS(1757), - [anon_sym_pub] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_enum] = ACTIONS(1757), - [anon_sym_interface] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1731), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_go] = ACTIONS(1757), - [anon_sym_spawn] = ACTIONS(1757), - [anon_sym_json_DOTdecode] = ACTIONS(1757), - [anon_sym_LBRACK2] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_LT_DASH] = ACTIONS(1757), - [anon_sym_LT_LT] = ACTIONS(1725), - [anon_sym_GT_GT] = ACTIONS(1725), - [anon_sym_GT_GT_GT] = ACTIONS(1725), - [anon_sym_AMP_CARET] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1745), - [anon_sym_PIPE_PIPE] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1749), - [sym_none] = ACTIONS(1757), - [sym_true] = ACTIONS(1757), - [sym_false] = ACTIONS(1757), - [sym_nil] = ACTIONS(1757), - [anon_sym_QMARK_DOT] = ACTIONS(1713), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_DOLLARif] = ACTIONS(1757), - [anon_sym_is] = ACTIONS(1751), - [anon_sym_BANGis] = ACTIONS(1751), - [anon_sym_in] = ACTIONS(1753), - [anon_sym_BANGin] = ACTIONS(1753), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_select] = ACTIONS(1757), - [anon_sym_STAR_EQ] = ACTIONS(1759), - [anon_sym_SLASH_EQ] = ACTIONS(1759), - [anon_sym_PERCENT_EQ] = ACTIONS(1759), - [anon_sym_LT_LT_EQ] = ACTIONS(1759), - [anon_sym_GT_GT_EQ] = ACTIONS(1759), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1759), - [anon_sym_AMP_EQ] = ACTIONS(1759), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1759), - [anon_sym_PLUS_EQ] = ACTIONS(1759), - [anon_sym_DASH_EQ] = ACTIONS(1759), - [anon_sym_PIPE_EQ] = ACTIONS(1759), - [anon_sym_CARET_EQ] = ACTIONS(1759), - [anon_sym_COLON_EQ] = ACTIONS(1759), - [anon_sym_lock] = ACTIONS(1757), - [anon_sym_rlock] = ACTIONS(1757), - [anon_sym_unsafe] = ACTIONS(1757), - [anon_sym_sql] = ACTIONS(1757), - [sym_int_literal] = ACTIONS(1757), - [sym_float_literal] = ACTIONS(1757), - [sym_rune_literal] = ACTIONS(1757), - [anon_sym_SQUOTE] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [anon_sym_c_SQUOTE] = ACTIONS(1757), - [anon_sym_c_DQUOTE] = ACTIONS(1757), - [anon_sym_r_SQUOTE] = ACTIONS(1757), - [anon_sym_r_DQUOTE] = ACTIONS(1757), - [sym_pseudo_compile_time_identifier] = ACTIONS(1757), - [anon_sym_shared] = ACTIONS(1757), - [anon_sym_map_LBRACK] = ACTIONS(1757), - [anon_sym_chan] = ACTIONS(1757), - [anon_sym_thread] = ACTIONS(1757), - [anon_sym_atomic] = ACTIONS(1757), - [anon_sym_assert] = ACTIONS(1757), - [anon_sym_defer] = ACTIONS(1757), - [anon_sym_goto] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_DOLLARfor] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(1757), - [anon_sym_asm] = ACTIONS(1757), - [anon_sym_AT_LBRACK] = ACTIONS(1757), - }, - [216] = { - [sym_line_comment] = STATE(216), - [sym_block_comment] = STATE(216), - [sym__expression] = STATE(1771), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_strictly_expression_list] = STATE(4289), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(879), - [sym_mutable_expression] = STATE(3272), - [sym_expression_list] = STATE(3305), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_simple_statement] = STATE(4485), - [sym_var_declaration] = STATE(4289), - [sym_assignment_statement] = STATE(4289), + [sym__expression] = STATE(1799), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_strictly_expression_list] = STATE(4275), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(751), + [sym_mutable_expression] = STATE(3330), + [sym_expression_list] = STATE(3384), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_simple_statement] = STATE(4703), + [sym_var_declaration] = STATE(4275), + [sym_assignment_statement] = STATE(4275), [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(1761), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(789), - [anon_sym_go] = ACTIONS(791), - [anon_sym_spawn] = ACTIONS(793), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(797), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(799), - [anon_sym_LT_DASH] = ACTIONS(801), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(811), - [anon_sym_lock] = ACTIONS(813), - [anon_sym_rlock] = ACTIONS(813), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_go] = ACTIONS(807), + [anon_sym_spawn] = ACTIONS(809), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_LT_DASH] = ACTIONS(817), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(827), + [anon_sym_lock] = ACTIONS(829), + [anon_sym_rlock] = ACTIONS(829), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, + [216] = { + [sym_line_comment] = STATE(216), + [sym_block_comment] = STATE(216), + [sym__expression] = STATE(2326), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(865), + [sym_mutable_expression] = STATE(3600), + [sym_expression_list] = STATE(3764), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), + [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(1705), + [anon_sym_LBRACE] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(495), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_struct] = ACTIONS(1717), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(1719), + [anon_sym_go] = ACTIONS(1721), + [anon_sym_spawn] = ACTIONS(1723), + [anon_sym_json_DOTdecode] = ACTIONS(1725), + [anon_sym_LBRACK2] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1729), + [anon_sym_LT_DASH] = ACTIONS(1731), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(1741), + [anon_sym_lock] = ACTIONS(1743), + [anon_sym_rlock] = ACTIONS(1743), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(1733), + [sym_rune_literal] = ACTIONS(1733), + [anon_sym_SQUOTE] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1751), + [anon_sym_c_SQUOTE] = ACTIONS(1753), + [anon_sym_c_DQUOTE] = ACTIONS(1755), + [anon_sym_r_SQUOTE] = ACTIONS(1757), + [anon_sym_r_DQUOTE] = ACTIONS(1759), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(561), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, [217] = { [sym_line_comment] = STATE(217), [sym_block_comment] = STATE(217), - [sym_type_parameters] = STATE(4287), - [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(399), + [sym_type_parameters] = STATE(4251), + [sym_argument_list] = STATE(359), + [sym_or_block] = STATE(358), [ts_builtin_sym_end] = ACTIONS(1763), [sym_identifier] = ACTIONS(1765), [anon_sym_LF] = ACTIONS(1765), @@ -47865,81 +48160,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(1765), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1713), - [anon_sym_as] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1653), + [anon_sym_as] = ACTIONS(1767), [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(1767), [anon_sym_const] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_EQ] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_EQ] = ACTIONS(1767), [anon_sym___global] = ACTIONS(1765), [anon_sym_type] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1723), [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_PERCENT] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1727), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_PERCENT] = ACTIONS(1767), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_EQ_EQ] = ACTIONS(1767), + [anon_sym_BANG_EQ] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1667), [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(1731), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1675), [anon_sym_go] = ACTIONS(1765), [anon_sym_spawn] = ACTIONS(1765), [anon_sym_json_DOTdecode] = ACTIONS(1765), - [anon_sym_LBRACK2] = ACTIONS(1739), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK2] = ACTIONS(1677), [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), [anon_sym_LT_DASH] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(1725), - [anon_sym_GT_GT] = ACTIONS(1725), - [anon_sym_GT_GT_GT] = ACTIONS(1725), - [anon_sym_AMP_CARET] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1745), - [anon_sym_PIPE_PIPE] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1749), + [anon_sym_LT_LT] = ACTIONS(1767), + [anon_sym_GT_GT] = ACTIONS(1767), + [anon_sym_GT_GT_GT] = ACTIONS(1767), + [anon_sym_AMP_CARET] = ACTIONS(1767), + [anon_sym_AMP_AMP] = ACTIONS(1767), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_or] = ACTIONS(1767), [sym_none] = ACTIONS(1765), [sym_true] = ACTIONS(1765), [sym_false] = ACTIONS(1765), [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(1713), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), + [anon_sym_QMARK_DOT] = ACTIONS(1653), + [anon_sym_POUND_LBRACK] = ACTIONS(1677), [anon_sym_if] = ACTIONS(1765), [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1751), - [anon_sym_BANGis] = ACTIONS(1751), - [anon_sym_in] = ACTIONS(1753), - [anon_sym_BANGin] = ACTIONS(1753), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1767), + [anon_sym_in] = ACTIONS(1767), + [anon_sym_BANGin] = ACTIONS(1767), [anon_sym_match] = ACTIONS(1765), [anon_sym_select] = ACTIONS(1765), - [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_STAR_EQ] = ACTIONS(1767), + [anon_sym_SLASH_EQ] = ACTIONS(1767), + [anon_sym_PERCENT_EQ] = ACTIONS(1767), + [anon_sym_LT_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_GT_EQ] = ACTIONS(1767), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1767), + [anon_sym_AMP_EQ] = ACTIONS(1767), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1767), + [anon_sym_PLUS_EQ] = ACTIONS(1767), + [anon_sym_DASH_EQ] = ACTIONS(1767), + [anon_sym_PIPE_EQ] = ACTIONS(1767), + [anon_sym_CARET_EQ] = ACTIONS(1767), + [anon_sym_COLON_EQ] = ACTIONS(1767), [anon_sym_lock] = ACTIONS(1765), [anon_sym_rlock] = ACTIONS(1765), [anon_sym_unsafe] = ACTIONS(1765), @@ -47974,247 +48269,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [218] = { [sym_line_comment] = STATE(218), [sym_block_comment] = STATE(218), - [sym_type_parameters] = STATE(4287), - [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(1767), - [sym_identifier] = ACTIONS(1769), - [anon_sym_LF] = ACTIONS(1769), - [anon_sym_CR] = ACTIONS(1769), - [anon_sym_CR_LF] = ACTIONS(1769), + [sym_type_parameters] = STATE(4251), + [sym_argument_list] = STATE(359), + [sym_or_block] = STATE(358), + [ts_builtin_sym_end] = ACTIONS(1769), + [sym_identifier] = ACTIONS(1771), + [anon_sym_LF] = ACTIONS(1771), + [anon_sym_CR] = ACTIONS(1771), + [anon_sym_CR_LF] = ACTIONS(1771), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1713), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_COMMA] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_EQ] = ACTIONS(1769), - [anon_sym___global] = ACTIONS(1769), - [anon_sym_type] = ACTIONS(1769), - [anon_sym_PIPE] = ACTIONS(1769), - [anon_sym_fn] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_STAR] = ACTIONS(1769), - [anon_sym_SLASH] = ACTIONS(1769), - [anon_sym_PERCENT] = ACTIONS(1769), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1769), - [anon_sym_EQ_EQ] = ACTIONS(1769), - [anon_sym_BANG_EQ] = ACTIONS(1769), - [anon_sym_LT_EQ] = ACTIONS(1769), - [anon_sym_GT_EQ] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1769), - [anon_sym_union] = ACTIONS(1769), - [anon_sym_pub] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_enum] = ACTIONS(1769), - [anon_sym_interface] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_go] = ACTIONS(1769), - [anon_sym_spawn] = ACTIONS(1769), - [anon_sym_json_DOTdecode] = ACTIONS(1769), - [anon_sym_LBRACK2] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_CARET] = ACTIONS(1769), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_LT_DASH] = ACTIONS(1769), - [anon_sym_LT_LT] = ACTIONS(1769), - [anon_sym_GT_GT] = ACTIONS(1769), - [anon_sym_GT_GT_GT] = ACTIONS(1769), - [anon_sym_AMP_CARET] = ACTIONS(1769), - [anon_sym_AMP_AMP] = ACTIONS(1769), - [anon_sym_PIPE_PIPE] = ACTIONS(1769), - [anon_sym_or] = ACTIONS(1769), - [sym_none] = ACTIONS(1769), - [sym_true] = ACTIONS(1769), - [sym_false] = ACTIONS(1769), - [sym_nil] = ACTIONS(1769), - [anon_sym_QMARK_DOT] = ACTIONS(1713), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_DOLLARif] = ACTIONS(1769), - [anon_sym_is] = ACTIONS(1769), - [anon_sym_BANGis] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_BANGin] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_select] = ACTIONS(1769), - [anon_sym_STAR_EQ] = ACTIONS(1769), - [anon_sym_SLASH_EQ] = ACTIONS(1769), - [anon_sym_PERCENT_EQ] = ACTIONS(1769), - [anon_sym_LT_LT_EQ] = ACTIONS(1769), - [anon_sym_GT_GT_EQ] = ACTIONS(1769), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1769), - [anon_sym_AMP_EQ] = ACTIONS(1769), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1769), - [anon_sym_PLUS_EQ] = ACTIONS(1769), - [anon_sym_DASH_EQ] = ACTIONS(1769), - [anon_sym_PIPE_EQ] = ACTIONS(1769), - [anon_sym_CARET_EQ] = ACTIONS(1769), - [anon_sym_COLON_EQ] = ACTIONS(1769), - [anon_sym_lock] = ACTIONS(1769), - [anon_sym_rlock] = ACTIONS(1769), - [anon_sym_unsafe] = ACTIONS(1769), - [anon_sym_sql] = ACTIONS(1769), - [sym_int_literal] = ACTIONS(1769), - [sym_float_literal] = ACTIONS(1769), - [sym_rune_literal] = ACTIONS(1769), - [anon_sym_SQUOTE] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1769), - [anon_sym_c_SQUOTE] = ACTIONS(1769), - [anon_sym_c_DQUOTE] = ACTIONS(1769), - [anon_sym_r_SQUOTE] = ACTIONS(1769), - [anon_sym_r_DQUOTE] = ACTIONS(1769), - [sym_pseudo_compile_time_identifier] = ACTIONS(1769), - [anon_sym_shared] = ACTIONS(1769), - [anon_sym_map_LBRACK] = ACTIONS(1769), - [anon_sym_chan] = ACTIONS(1769), - [anon_sym_thread] = ACTIONS(1769), - [anon_sym_atomic] = ACTIONS(1769), - [anon_sym_assert] = ACTIONS(1769), - [anon_sym_defer] = ACTIONS(1769), - [anon_sym_goto] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_DOLLARfor] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(1769), - [anon_sym_asm] = ACTIONS(1769), - [anon_sym_AT_LBRACK] = ACTIONS(1769), + [anon_sym_DOT] = ACTIONS(1653), + [anon_sym_as] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_COMMA] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_EQ] = ACTIONS(1771), + [anon_sym___global] = ACTIONS(1771), + [anon_sym_type] = ACTIONS(1771), + [anon_sym_fn] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1771), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_SLASH] = ACTIONS(1771), + [anon_sym_PERCENT] = ACTIONS(1771), + [anon_sym_LT] = ACTIONS(1771), + [anon_sym_GT] = ACTIONS(1771), + [anon_sym_EQ_EQ] = ACTIONS(1771), + [anon_sym_BANG_EQ] = ACTIONS(1771), + [anon_sym_LT_EQ] = ACTIONS(1771), + [anon_sym_GT_EQ] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_struct] = ACTIONS(1771), + [anon_sym_union] = ACTIONS(1771), + [anon_sym_pub] = ACTIONS(1771), + [anon_sym_mut] = ACTIONS(1771), + [anon_sym_enum] = ACTIONS(1771), + [anon_sym_interface] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_QMARK] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1675), + [anon_sym_go] = ACTIONS(1771), + [anon_sym_spawn] = ACTIONS(1771), + [anon_sym_json_DOTdecode] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_LBRACK2] = ACTIONS(1677), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_LT_DASH] = ACTIONS(1771), + [anon_sym_LT_LT] = ACTIONS(1771), + [anon_sym_GT_GT] = ACTIONS(1771), + [anon_sym_GT_GT_GT] = ACTIONS(1771), + [anon_sym_AMP_CARET] = ACTIONS(1771), + [anon_sym_AMP_AMP] = ACTIONS(1771), + [anon_sym_PIPE_PIPE] = ACTIONS(1771), + [anon_sym_or] = ACTIONS(1771), + [sym_none] = ACTIONS(1771), + [sym_true] = ACTIONS(1771), + [sym_false] = ACTIONS(1771), + [sym_nil] = ACTIONS(1771), + [anon_sym_QMARK_DOT] = ACTIONS(1653), + [anon_sym_POUND_LBRACK] = ACTIONS(1677), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_DOLLARif] = ACTIONS(1771), + [anon_sym_is] = ACTIONS(1771), + [anon_sym_BANGis] = ACTIONS(1771), + [anon_sym_in] = ACTIONS(1771), + [anon_sym_BANGin] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_select] = ACTIONS(1771), + [anon_sym_STAR_EQ] = ACTIONS(1771), + [anon_sym_SLASH_EQ] = ACTIONS(1771), + [anon_sym_PERCENT_EQ] = ACTIONS(1771), + [anon_sym_LT_LT_EQ] = ACTIONS(1771), + [anon_sym_GT_GT_EQ] = ACTIONS(1771), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1771), + [anon_sym_AMP_EQ] = ACTIONS(1771), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1771), + [anon_sym_PLUS_EQ] = ACTIONS(1771), + [anon_sym_DASH_EQ] = ACTIONS(1771), + [anon_sym_PIPE_EQ] = ACTIONS(1771), + [anon_sym_CARET_EQ] = ACTIONS(1771), + [anon_sym_COLON_EQ] = ACTIONS(1771), + [anon_sym_lock] = ACTIONS(1771), + [anon_sym_rlock] = ACTIONS(1771), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1771), + [sym_int_literal] = ACTIONS(1771), + [sym_float_literal] = ACTIONS(1771), + [sym_rune_literal] = ACTIONS(1771), + [anon_sym_SQUOTE] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [anon_sym_c_SQUOTE] = ACTIONS(1771), + [anon_sym_c_DQUOTE] = ACTIONS(1771), + [anon_sym_r_SQUOTE] = ACTIONS(1771), + [anon_sym_r_DQUOTE] = ACTIONS(1771), + [sym_pseudo_compile_time_identifier] = ACTIONS(1771), + [anon_sym_shared] = ACTIONS(1771), + [anon_sym_map_LBRACK] = ACTIONS(1771), + [anon_sym_chan] = ACTIONS(1771), + [anon_sym_thread] = ACTIONS(1771), + [anon_sym_atomic] = ACTIONS(1771), + [anon_sym_assert] = ACTIONS(1771), + [anon_sym_defer] = ACTIONS(1771), + [anon_sym_goto] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_DOLLARfor] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(1771), + [anon_sym_asm] = ACTIONS(1771), + [anon_sym_AT_LBRACK] = ACTIONS(1771), }, [219] = { [sym_line_comment] = STATE(219), [sym_block_comment] = STATE(219), - [sym_type_parameters] = STATE(4287), - [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(1771), - [sym_identifier] = ACTIONS(1773), - [anon_sym_LF] = ACTIONS(1773), - [anon_sym_CR] = ACTIONS(1773), - [anon_sym_CR_LF] = ACTIONS(1773), + [sym_type_parameters] = STATE(4251), + [sym_argument_list] = STATE(359), + [sym_or_block] = STATE(358), + [ts_builtin_sym_end] = ACTIONS(1773), + [sym_identifier] = ACTIONS(1775), + [anon_sym_LF] = ACTIONS(1775), + [anon_sym_CR] = ACTIONS(1775), + [anon_sym_CR_LF] = ACTIONS(1775), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1713), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_COMMA] = ACTIONS(1773), - [anon_sym_const] = ACTIONS(1773), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_EQ] = ACTIONS(1773), - [anon_sym___global] = ACTIONS(1773), - [anon_sym_type] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_fn] = ACTIONS(1773), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_PERCENT] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1727), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1773), - [anon_sym_union] = ACTIONS(1773), - [anon_sym_pub] = ACTIONS(1773), - [anon_sym_mut] = ACTIONS(1773), - [anon_sym_enum] = ACTIONS(1773), - [anon_sym_interface] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1731), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_go] = ACTIONS(1773), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1773), - [anon_sym_LBRACK2] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_LT_DASH] = ACTIONS(1773), - [anon_sym_LT_LT] = ACTIONS(1725), - [anon_sym_GT_GT] = ACTIONS(1725), - [anon_sym_GT_GT_GT] = ACTIONS(1725), - [anon_sym_AMP_CARET] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1745), - [anon_sym_PIPE_PIPE] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1749), - [sym_none] = ACTIONS(1773), - [sym_true] = ACTIONS(1773), - [sym_false] = ACTIONS(1773), - [sym_nil] = ACTIONS(1773), - [anon_sym_QMARK_DOT] = ACTIONS(1713), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1773), - [anon_sym_DOLLARif] = ACTIONS(1773), - [anon_sym_is] = ACTIONS(1775), - [anon_sym_BANGis] = ACTIONS(1775), - [anon_sym_in] = ACTIONS(1753), - [anon_sym_BANGin] = ACTIONS(1753), - [anon_sym_match] = ACTIONS(1773), - [anon_sym_select] = ACTIONS(1773), - [anon_sym_STAR_EQ] = ACTIONS(1773), - [anon_sym_SLASH_EQ] = ACTIONS(1773), - [anon_sym_PERCENT_EQ] = ACTIONS(1773), - [anon_sym_LT_LT_EQ] = ACTIONS(1773), - [anon_sym_GT_GT_EQ] = ACTIONS(1773), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1773), - [anon_sym_AMP_EQ] = ACTIONS(1773), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1773), - [anon_sym_PLUS_EQ] = ACTIONS(1773), - [anon_sym_DASH_EQ] = ACTIONS(1773), - [anon_sym_PIPE_EQ] = ACTIONS(1773), - [anon_sym_CARET_EQ] = ACTIONS(1773), - [anon_sym_COLON_EQ] = ACTIONS(1773), - [anon_sym_lock] = ACTIONS(1773), - [anon_sym_rlock] = ACTIONS(1773), - [anon_sym_unsafe] = ACTIONS(1773), - [anon_sym_sql] = ACTIONS(1773), - [sym_int_literal] = ACTIONS(1773), - [sym_float_literal] = ACTIONS(1773), - [sym_rune_literal] = ACTIONS(1773), - [anon_sym_SQUOTE] = ACTIONS(1773), - [anon_sym_DQUOTE] = ACTIONS(1773), - [anon_sym_c_SQUOTE] = ACTIONS(1773), - [anon_sym_c_DQUOTE] = ACTIONS(1773), - [anon_sym_r_SQUOTE] = ACTIONS(1773), - [anon_sym_r_DQUOTE] = ACTIONS(1773), - [sym_pseudo_compile_time_identifier] = ACTIONS(1773), - [anon_sym_shared] = ACTIONS(1773), - [anon_sym_map_LBRACK] = ACTIONS(1773), - [anon_sym_chan] = ACTIONS(1773), - [anon_sym_thread] = ACTIONS(1773), - [anon_sym_atomic] = ACTIONS(1773), - [anon_sym_assert] = ACTIONS(1773), - [anon_sym_defer] = ACTIONS(1773), - [anon_sym_goto] = ACTIONS(1773), - [anon_sym_break] = ACTIONS(1773), - [anon_sym_continue] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(1773), - [anon_sym_DOLLARfor] = ACTIONS(1773), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_POUND] = ACTIONS(1773), - [anon_sym_asm] = ACTIONS(1773), - [anon_sym_AT_LBRACK] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1653), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1775), + [anon_sym_COMMA] = ACTIONS(1775), + [anon_sym_const] = ACTIONS(1775), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_EQ] = ACTIONS(1775), + [anon_sym___global] = ACTIONS(1775), + [anon_sym_type] = ACTIONS(1775), + [anon_sym_fn] = ACTIONS(1775), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_PERCENT] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_GT] = ACTIONS(1665), + [anon_sym_EQ_EQ] = ACTIONS(1665), + [anon_sym_BANG_EQ] = ACTIONS(1665), + [anon_sym_LT_EQ] = ACTIONS(1665), + [anon_sym_GT_EQ] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_struct] = ACTIONS(1775), + [anon_sym_union] = ACTIONS(1775), + [anon_sym_pub] = ACTIONS(1775), + [anon_sym_mut] = ACTIONS(1775), + [anon_sym_enum] = ACTIONS(1775), + [anon_sym_interface] = ACTIONS(1775), + [anon_sym_PLUS_PLUS] = ACTIONS(1669), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_QMARK] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1675), + [anon_sym_go] = ACTIONS(1775), + [anon_sym_spawn] = ACTIONS(1775), + [anon_sym_json_DOTdecode] = ACTIONS(1775), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LBRACK2] = ACTIONS(1677), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_LT_DASH] = ACTIONS(1775), + [anon_sym_LT_LT] = ACTIONS(1663), + [anon_sym_GT_GT] = ACTIONS(1663), + [anon_sym_GT_GT_GT] = ACTIONS(1663), + [anon_sym_AMP_CARET] = ACTIONS(1663), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [anon_sym_or] = ACTIONS(1683), + [sym_none] = ACTIONS(1775), + [sym_true] = ACTIONS(1775), + [sym_false] = ACTIONS(1775), + [sym_nil] = ACTIONS(1775), + [anon_sym_QMARK_DOT] = ACTIONS(1653), + [anon_sym_POUND_LBRACK] = ACTIONS(1677), + [anon_sym_if] = ACTIONS(1775), + [anon_sym_DOLLARif] = ACTIONS(1775), + [anon_sym_is] = ACTIONS(1685), + [anon_sym_BANGis] = ACTIONS(1685), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_BANGin] = ACTIONS(1687), + [anon_sym_match] = ACTIONS(1775), + [anon_sym_select] = ACTIONS(1775), + [anon_sym_STAR_EQ] = ACTIONS(1775), + [anon_sym_SLASH_EQ] = ACTIONS(1775), + [anon_sym_PERCENT_EQ] = ACTIONS(1775), + [anon_sym_LT_LT_EQ] = ACTIONS(1775), + [anon_sym_GT_GT_EQ] = ACTIONS(1775), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1775), + [anon_sym_AMP_EQ] = ACTIONS(1775), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1775), + [anon_sym_PLUS_EQ] = ACTIONS(1775), + [anon_sym_DASH_EQ] = ACTIONS(1775), + [anon_sym_PIPE_EQ] = ACTIONS(1775), + [anon_sym_CARET_EQ] = ACTIONS(1775), + [anon_sym_COLON_EQ] = ACTIONS(1775), + [anon_sym_lock] = ACTIONS(1775), + [anon_sym_rlock] = ACTIONS(1775), + [anon_sym_unsafe] = ACTIONS(1775), + [anon_sym_sql] = ACTIONS(1775), + [sym_int_literal] = ACTIONS(1775), + [sym_float_literal] = ACTIONS(1775), + [sym_rune_literal] = ACTIONS(1775), + [anon_sym_SQUOTE] = ACTIONS(1775), + [anon_sym_DQUOTE] = ACTIONS(1775), + [anon_sym_c_SQUOTE] = ACTIONS(1775), + [anon_sym_c_DQUOTE] = ACTIONS(1775), + [anon_sym_r_SQUOTE] = ACTIONS(1775), + [anon_sym_r_DQUOTE] = ACTIONS(1775), + [sym_pseudo_compile_time_identifier] = ACTIONS(1775), + [anon_sym_shared] = ACTIONS(1775), + [anon_sym_map_LBRACK] = ACTIONS(1775), + [anon_sym_chan] = ACTIONS(1775), + [anon_sym_thread] = ACTIONS(1775), + [anon_sym_atomic] = ACTIONS(1775), + [anon_sym_assert] = ACTIONS(1775), + [anon_sym_defer] = ACTIONS(1775), + [anon_sym_goto] = ACTIONS(1775), + [anon_sym_break] = ACTIONS(1775), + [anon_sym_continue] = ACTIONS(1775), + [anon_sym_return] = ACTIONS(1775), + [anon_sym_DOLLARfor] = ACTIONS(1775), + [anon_sym_for] = ACTIONS(1775), + [anon_sym_POUND] = ACTIONS(1775), + [anon_sym_asm] = ACTIONS(1775), + [anon_sym_AT_LBRACK] = ACTIONS(1775), }, [220] = { [sym_line_comment] = STATE(220), [sym_block_comment] = STATE(220), - [sym_type_parameters] = STATE(4287), - [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(399), + [sym_type_parameters] = STATE(4251), + [sym_argument_list] = STATE(359), + [sym_or_block] = STATE(358), [ts_builtin_sym_end] = ACTIONS(1777), [sym_identifier] = ACTIONS(1779), [anon_sym_LF] = ACTIONS(1779), @@ -48222,66 +48517,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(1779), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1713), - [anon_sym_as] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1653), + [anon_sym_as] = ACTIONS(1655), [anon_sym_LBRACE] = ACTIONS(1779), [anon_sym_COMMA] = ACTIONS(1779), [anon_sym_const] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_LPAREN] = ACTIONS(1659), [anon_sym_EQ] = ACTIONS(1779), [anon_sym___global] = ACTIONS(1779), [anon_sym_type] = ACTIONS(1779), - [anon_sym_PIPE] = ACTIONS(1723), [anon_sym_fn] = ACTIONS(1779), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_PERCENT] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1727), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_PERCENT] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_GT] = ACTIONS(1665), + [anon_sym_EQ_EQ] = ACTIONS(1665), + [anon_sym_BANG_EQ] = ACTIONS(1665), + [anon_sym_LT_EQ] = ACTIONS(1665), + [anon_sym_GT_EQ] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1667), [anon_sym_struct] = ACTIONS(1779), [anon_sym_union] = ACTIONS(1779), [anon_sym_pub] = ACTIONS(1779), [anon_sym_mut] = ACTIONS(1779), [anon_sym_enum] = ACTIONS(1779), [anon_sym_interface] = ACTIONS(1779), - [anon_sym_PLUS_PLUS] = ACTIONS(1731), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1669), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_QMARK] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1675), [anon_sym_go] = ACTIONS(1779), [anon_sym_spawn] = ACTIONS(1779), [anon_sym_json_DOTdecode] = ACTIONS(1779), - [anon_sym_LBRACK2] = ACTIONS(1739), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LBRACK2] = ACTIONS(1677), [anon_sym_TILDE] = ACTIONS(1779), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_CARET] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(1663), [anon_sym_LT_DASH] = ACTIONS(1779), - [anon_sym_LT_LT] = ACTIONS(1725), - [anon_sym_GT_GT] = ACTIONS(1725), - [anon_sym_GT_GT_GT] = ACTIONS(1725), - [anon_sym_AMP_CARET] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1745), - [anon_sym_PIPE_PIPE] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1749), + [anon_sym_LT_LT] = ACTIONS(1663), + [anon_sym_GT_GT] = ACTIONS(1663), + [anon_sym_GT_GT_GT] = ACTIONS(1663), + [anon_sym_AMP_CARET] = ACTIONS(1663), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [anon_sym_or] = ACTIONS(1683), [sym_none] = ACTIONS(1779), [sym_true] = ACTIONS(1779), [sym_false] = ACTIONS(1779), [sym_nil] = ACTIONS(1779), - [anon_sym_QMARK_DOT] = ACTIONS(1713), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), + [anon_sym_QMARK_DOT] = ACTIONS(1653), + [anon_sym_POUND_LBRACK] = ACTIONS(1677), [anon_sym_if] = ACTIONS(1779), [anon_sym_DOLLARif] = ACTIONS(1779), - [anon_sym_is] = ACTIONS(1751), - [anon_sym_BANGis] = ACTIONS(1751), - [anon_sym_in] = ACTIONS(1753), - [anon_sym_BANGin] = ACTIONS(1753), + [anon_sym_is] = ACTIONS(1685), + [anon_sym_BANGis] = ACTIONS(1685), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_BANGin] = ACTIONS(1687), [anon_sym_match] = ACTIONS(1779), [anon_sym_select] = ACTIONS(1779), [anon_sym_STAR_EQ] = ACTIONS(1779), @@ -48331,9 +48626,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [221] = { [sym_line_comment] = STATE(221), [sym_block_comment] = STATE(221), - [sym_type_parameters] = STATE(4287), - [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(399), + [sym_type_parameters] = STATE(4251), + [sym_argument_list] = STATE(359), + [sym_or_block] = STATE(358), [ts_builtin_sym_end] = ACTIONS(1781), [sym_identifier] = ACTIONS(1783), [anon_sym_LF] = ACTIONS(1783), @@ -48341,66 +48636,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(1783), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1713), - [anon_sym_as] = ACTIONS(1783), + [anon_sym_DOT] = ACTIONS(1653), + [anon_sym_as] = ACTIONS(1655), [anon_sym_LBRACE] = ACTIONS(1783), [anon_sym_COMMA] = ACTIONS(1783), [anon_sym_const] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_LPAREN] = ACTIONS(1659), [anon_sym_EQ] = ACTIONS(1783), [anon_sym___global] = ACTIONS(1783), [anon_sym_type] = ACTIONS(1783), - [anon_sym_PIPE] = ACTIONS(1783), [anon_sym_fn] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1783), - [anon_sym_SLASH] = ACTIONS(1783), - [anon_sym_PERCENT] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1783), - [anon_sym_GT] = ACTIONS(1783), - [anon_sym_EQ_EQ] = ACTIONS(1783), - [anon_sym_BANG_EQ] = ACTIONS(1783), - [anon_sym_LT_EQ] = ACTIONS(1783), - [anon_sym_GT_EQ] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_PERCENT] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_GT] = ACTIONS(1665), + [anon_sym_EQ_EQ] = ACTIONS(1665), + [anon_sym_BANG_EQ] = ACTIONS(1665), + [anon_sym_LT_EQ] = ACTIONS(1665), + [anon_sym_GT_EQ] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1667), [anon_sym_struct] = ACTIONS(1783), [anon_sym_union] = ACTIONS(1783), [anon_sym_pub] = ACTIONS(1783), [anon_sym_mut] = ACTIONS(1783), [anon_sym_enum] = ACTIONS(1783), [anon_sym_interface] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1669), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_QMARK] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1675), [anon_sym_go] = ACTIONS(1783), [anon_sym_spawn] = ACTIONS(1783), [anon_sym_json_DOTdecode] = ACTIONS(1783), - [anon_sym_LBRACK2] = ACTIONS(1739), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LBRACK2] = ACTIONS(1677), [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_CARET] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(1663), [anon_sym_LT_DASH] = ACTIONS(1783), - [anon_sym_LT_LT] = ACTIONS(1783), - [anon_sym_GT_GT] = ACTIONS(1783), - [anon_sym_GT_GT_GT] = ACTIONS(1783), - [anon_sym_AMP_CARET] = ACTIONS(1783), - [anon_sym_AMP_AMP] = ACTIONS(1783), - [anon_sym_PIPE_PIPE] = ACTIONS(1783), - [anon_sym_or] = ACTIONS(1783), + [anon_sym_LT_LT] = ACTIONS(1663), + [anon_sym_GT_GT] = ACTIONS(1663), + [anon_sym_GT_GT_GT] = ACTIONS(1663), + [anon_sym_AMP_CARET] = ACTIONS(1663), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [anon_sym_or] = ACTIONS(1683), [sym_none] = ACTIONS(1783), [sym_true] = ACTIONS(1783), [sym_false] = ACTIONS(1783), [sym_nil] = ACTIONS(1783), - [anon_sym_QMARK_DOT] = ACTIONS(1713), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), + [anon_sym_QMARK_DOT] = ACTIONS(1653), + [anon_sym_POUND_LBRACK] = ACTIONS(1677), [anon_sym_if] = ACTIONS(1783), [anon_sym_DOLLARif] = ACTIONS(1783), - [anon_sym_is] = ACTIONS(1783), - [anon_sym_BANGis] = ACTIONS(1783), - [anon_sym_in] = ACTIONS(1783), - [anon_sym_BANGin] = ACTIONS(1783), + [anon_sym_is] = ACTIONS(1785), + [anon_sym_BANGis] = ACTIONS(1785), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_BANGin] = ACTIONS(1687), [anon_sym_match] = ACTIONS(1783), [anon_sym_select] = ACTIONS(1783), [anon_sym_STAR_EQ] = ACTIONS(1783), @@ -48450,840 +48745,840 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [222] = { [sym_line_comment] = STATE(222), [sym_block_comment] = STATE(222), - [sym_type_parameters] = STATE(4287), - [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(1785), - [sym_identifier] = ACTIONS(1787), - [anon_sym_LF] = ACTIONS(1787), - [anon_sym_CR] = ACTIONS(1787), - [anon_sym_CR_LF] = ACTIONS(1787), + [sym_type_parameters] = STATE(4251), + [sym_argument_list] = STATE(359), + [sym_or_block] = STATE(358), + [ts_builtin_sym_end] = ACTIONS(1787), + [sym_identifier] = ACTIONS(1789), + [anon_sym_LF] = ACTIONS(1789), + [anon_sym_CR] = ACTIONS(1789), + [anon_sym_CR_LF] = ACTIONS(1789), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1713), - [anon_sym_as] = ACTIONS(1787), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_COMMA] = ACTIONS(1787), - [anon_sym_const] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_EQ] = ACTIONS(1787), - [anon_sym___global] = ACTIONS(1787), - [anon_sym_type] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_fn] = ACTIONS(1787), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_PERCENT] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1787), - [anon_sym_GT] = ACTIONS(1787), - [anon_sym_EQ_EQ] = ACTIONS(1787), - [anon_sym_BANG_EQ] = ACTIONS(1787), - [anon_sym_LT_EQ] = ACTIONS(1787), - [anon_sym_GT_EQ] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1787), - [anon_sym_union] = ACTIONS(1787), - [anon_sym_pub] = ACTIONS(1787), - [anon_sym_mut] = ACTIONS(1787), - [anon_sym_enum] = ACTIONS(1787), - [anon_sym_interface] = ACTIONS(1787), - [anon_sym_PLUS_PLUS] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_go] = ACTIONS(1787), - [anon_sym_spawn] = ACTIONS(1787), - [anon_sym_json_DOTdecode] = ACTIONS(1787), - [anon_sym_LBRACK2] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1787), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_LT_DASH] = ACTIONS(1787), - [anon_sym_LT_LT] = ACTIONS(1725), - [anon_sym_GT_GT] = ACTIONS(1725), - [anon_sym_GT_GT_GT] = ACTIONS(1725), - [anon_sym_AMP_CARET] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1787), - [anon_sym_PIPE_PIPE] = ACTIONS(1787), - [anon_sym_or] = ACTIONS(1787), - [sym_none] = ACTIONS(1787), - [sym_true] = ACTIONS(1787), - [sym_false] = ACTIONS(1787), - [sym_nil] = ACTIONS(1787), - [anon_sym_QMARK_DOT] = ACTIONS(1713), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1787), - [anon_sym_DOLLARif] = ACTIONS(1787), - [anon_sym_is] = ACTIONS(1787), - [anon_sym_BANGis] = ACTIONS(1787), - [anon_sym_in] = ACTIONS(1787), - [anon_sym_BANGin] = ACTIONS(1787), - [anon_sym_match] = ACTIONS(1787), - [anon_sym_select] = ACTIONS(1787), - [anon_sym_STAR_EQ] = ACTIONS(1787), - [anon_sym_SLASH_EQ] = ACTIONS(1787), - [anon_sym_PERCENT_EQ] = ACTIONS(1787), - [anon_sym_LT_LT_EQ] = ACTIONS(1787), - [anon_sym_GT_GT_EQ] = ACTIONS(1787), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1787), - [anon_sym_AMP_EQ] = ACTIONS(1787), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1787), - [anon_sym_PLUS_EQ] = ACTIONS(1787), - [anon_sym_DASH_EQ] = ACTIONS(1787), - [anon_sym_PIPE_EQ] = ACTIONS(1787), - [anon_sym_CARET_EQ] = ACTIONS(1787), - [anon_sym_COLON_EQ] = ACTIONS(1787), - [anon_sym_lock] = ACTIONS(1787), - [anon_sym_rlock] = ACTIONS(1787), - [anon_sym_unsafe] = ACTIONS(1787), - [anon_sym_sql] = ACTIONS(1787), - [sym_int_literal] = ACTIONS(1787), - [sym_float_literal] = ACTIONS(1787), - [sym_rune_literal] = ACTIONS(1787), - [anon_sym_SQUOTE] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [anon_sym_c_SQUOTE] = ACTIONS(1787), - [anon_sym_c_DQUOTE] = ACTIONS(1787), - [anon_sym_r_SQUOTE] = ACTIONS(1787), - [anon_sym_r_DQUOTE] = ACTIONS(1787), - [sym_pseudo_compile_time_identifier] = ACTIONS(1787), - [anon_sym_shared] = ACTIONS(1787), - [anon_sym_map_LBRACK] = ACTIONS(1787), - [anon_sym_chan] = ACTIONS(1787), - [anon_sym_thread] = ACTIONS(1787), - [anon_sym_atomic] = ACTIONS(1787), - [anon_sym_assert] = ACTIONS(1787), - [anon_sym_defer] = ACTIONS(1787), - [anon_sym_goto] = ACTIONS(1787), - [anon_sym_break] = ACTIONS(1787), - [anon_sym_continue] = ACTIONS(1787), - [anon_sym_return] = ACTIONS(1787), - [anon_sym_DOLLARfor] = ACTIONS(1787), - [anon_sym_for] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(1787), - [anon_sym_asm] = ACTIONS(1787), - [anon_sym_AT_LBRACK] = ACTIONS(1787), + [anon_sym_DOT] = ACTIONS(1653), + [anon_sym_as] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_COMMA] = ACTIONS(1789), + [anon_sym_const] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_EQ] = ACTIONS(1789), + [anon_sym___global] = ACTIONS(1789), + [anon_sym_type] = ACTIONS(1789), + [anon_sym_fn] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_STAR] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(1789), + [anon_sym_PERCENT] = ACTIONS(1789), + [anon_sym_LT] = ACTIONS(1789), + [anon_sym_GT] = ACTIONS(1789), + [anon_sym_EQ_EQ] = ACTIONS(1789), + [anon_sym_BANG_EQ] = ACTIONS(1789), + [anon_sym_LT_EQ] = ACTIONS(1789), + [anon_sym_GT_EQ] = ACTIONS(1789), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_struct] = ACTIONS(1789), + [anon_sym_union] = ACTIONS(1789), + [anon_sym_pub] = ACTIONS(1789), + [anon_sym_mut] = ACTIONS(1789), + [anon_sym_enum] = ACTIONS(1789), + [anon_sym_interface] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [anon_sym_QMARK] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1675), + [anon_sym_go] = ACTIONS(1789), + [anon_sym_spawn] = ACTIONS(1789), + [anon_sym_json_DOTdecode] = ACTIONS(1789), + [anon_sym_PIPE] = ACTIONS(1789), + [anon_sym_LBRACK2] = ACTIONS(1677), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_CARET] = ACTIONS(1789), + [anon_sym_AMP] = ACTIONS(1789), + [anon_sym_LT_DASH] = ACTIONS(1789), + [anon_sym_LT_LT] = ACTIONS(1789), + [anon_sym_GT_GT] = ACTIONS(1789), + [anon_sym_GT_GT_GT] = ACTIONS(1789), + [anon_sym_AMP_CARET] = ACTIONS(1789), + [anon_sym_AMP_AMP] = ACTIONS(1789), + [anon_sym_PIPE_PIPE] = ACTIONS(1789), + [anon_sym_or] = ACTIONS(1789), + [sym_none] = ACTIONS(1789), + [sym_true] = ACTIONS(1789), + [sym_false] = ACTIONS(1789), + [sym_nil] = ACTIONS(1789), + [anon_sym_QMARK_DOT] = ACTIONS(1653), + [anon_sym_POUND_LBRACK] = ACTIONS(1677), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1789), + [anon_sym_is] = ACTIONS(1789), + [anon_sym_BANGis] = ACTIONS(1789), + [anon_sym_in] = ACTIONS(1789), + [anon_sym_BANGin] = ACTIONS(1789), + [anon_sym_match] = ACTIONS(1789), + [anon_sym_select] = ACTIONS(1789), + [anon_sym_STAR_EQ] = ACTIONS(1789), + [anon_sym_SLASH_EQ] = ACTIONS(1789), + [anon_sym_PERCENT_EQ] = ACTIONS(1789), + [anon_sym_LT_LT_EQ] = ACTIONS(1789), + [anon_sym_GT_GT_EQ] = ACTIONS(1789), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1789), + [anon_sym_AMP_EQ] = ACTIONS(1789), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1789), + [anon_sym_PLUS_EQ] = ACTIONS(1789), + [anon_sym_DASH_EQ] = ACTIONS(1789), + [anon_sym_PIPE_EQ] = ACTIONS(1789), + [anon_sym_CARET_EQ] = ACTIONS(1789), + [anon_sym_COLON_EQ] = ACTIONS(1789), + [anon_sym_lock] = ACTIONS(1789), + [anon_sym_rlock] = ACTIONS(1789), + [anon_sym_unsafe] = ACTIONS(1789), + [anon_sym_sql] = ACTIONS(1789), + [sym_int_literal] = ACTIONS(1789), + [sym_float_literal] = ACTIONS(1789), + [sym_rune_literal] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(1789), + [anon_sym_c_SQUOTE] = ACTIONS(1789), + [anon_sym_c_DQUOTE] = ACTIONS(1789), + [anon_sym_r_SQUOTE] = ACTIONS(1789), + [anon_sym_r_DQUOTE] = ACTIONS(1789), + [sym_pseudo_compile_time_identifier] = ACTIONS(1789), + [anon_sym_shared] = ACTIONS(1789), + [anon_sym_map_LBRACK] = ACTIONS(1789), + [anon_sym_chan] = ACTIONS(1789), + [anon_sym_thread] = ACTIONS(1789), + [anon_sym_atomic] = ACTIONS(1789), + [anon_sym_assert] = ACTIONS(1789), + [anon_sym_defer] = ACTIONS(1789), + [anon_sym_goto] = ACTIONS(1789), + [anon_sym_break] = ACTIONS(1789), + [anon_sym_continue] = ACTIONS(1789), + [anon_sym_return] = ACTIONS(1789), + [anon_sym_DOLLARfor] = ACTIONS(1789), + [anon_sym_for] = ACTIONS(1789), + [anon_sym_POUND] = ACTIONS(1789), + [anon_sym_asm] = ACTIONS(1789), + [anon_sym_AT_LBRACK] = ACTIONS(1789), }, [223] = { [sym_line_comment] = STATE(223), [sym_block_comment] = STATE(223), - [sym_type_parameters] = STATE(4287), - [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1791), - [anon_sym_LF] = ACTIONS(1791), - [anon_sym_CR] = ACTIONS(1791), - [anon_sym_CR_LF] = ACTIONS(1791), + [sym_type_parameters] = STATE(4251), + [sym_argument_list] = STATE(359), + [sym_or_block] = STATE(358), + [ts_builtin_sym_end] = ACTIONS(1791), + [sym_identifier] = ACTIONS(1793), + [anon_sym_LF] = ACTIONS(1793), + [anon_sym_CR] = ACTIONS(1793), + [anon_sym_CR_LF] = ACTIONS(1793), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1713), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_EQ] = ACTIONS(1791), - [anon_sym___global] = ACTIONS(1791), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1791), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_PERCENT] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_LT_EQ] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_union] = ACTIONS(1791), - [anon_sym_pub] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [anon_sym_interface] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1791), - [anon_sym_LBRACK2] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_LT_DASH] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(1725), - [anon_sym_GT_GT] = ACTIONS(1725), - [anon_sym_GT_GT_GT] = ACTIONS(1725), - [anon_sym_AMP_CARET] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(1713), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1791), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_BANGin] = ACTIONS(1791), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_STAR_EQ] = ACTIONS(1791), - [anon_sym_SLASH_EQ] = ACTIONS(1791), - [anon_sym_PERCENT_EQ] = ACTIONS(1791), - [anon_sym_LT_LT_EQ] = ACTIONS(1791), - [anon_sym_GT_GT_EQ] = ACTIONS(1791), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1791), - [anon_sym_AMP_EQ] = ACTIONS(1791), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1791), - [anon_sym_PLUS_EQ] = ACTIONS(1791), - [anon_sym_DASH_EQ] = ACTIONS(1791), - [anon_sym_PIPE_EQ] = ACTIONS(1791), - [anon_sym_CARET_EQ] = ACTIONS(1791), - [anon_sym_COLON_EQ] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1791), - [sym_rune_literal] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(1791), - [anon_sym_c_SQUOTE] = ACTIONS(1791), - [anon_sym_c_DQUOTE] = ACTIONS(1791), - [anon_sym_r_SQUOTE] = ACTIONS(1791), - [anon_sym_r_DQUOTE] = ACTIONS(1791), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1791), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), - [anon_sym_assert] = ACTIONS(1791), - [anon_sym_defer] = ACTIONS(1791), - [anon_sym_goto] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_DOLLARfor] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_POUND] = ACTIONS(1791), - [anon_sym_asm] = ACTIONS(1791), - [anon_sym_AT_LBRACK] = ACTIONS(1791), + [anon_sym_DOT] = ACTIONS(1653), + [anon_sym_as] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_COMMA] = ACTIONS(1793), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_EQ] = ACTIONS(1793), + [anon_sym___global] = ACTIONS(1793), + [anon_sym_type] = ACTIONS(1793), + [anon_sym_fn] = ACTIONS(1793), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_PERCENT] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1793), + [anon_sym_GT] = ACTIONS(1793), + [anon_sym_EQ_EQ] = ACTIONS(1793), + [anon_sym_BANG_EQ] = ACTIONS(1793), + [anon_sym_LT_EQ] = ACTIONS(1793), + [anon_sym_GT_EQ] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_struct] = ACTIONS(1793), + [anon_sym_union] = ACTIONS(1793), + [anon_sym_pub] = ACTIONS(1793), + [anon_sym_mut] = ACTIONS(1793), + [anon_sym_enum] = ACTIONS(1793), + [anon_sym_interface] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1675), + [anon_sym_go] = ACTIONS(1793), + [anon_sym_spawn] = ACTIONS(1793), + [anon_sym_json_DOTdecode] = ACTIONS(1793), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LBRACK2] = ACTIONS(1677), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_CARET] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_LT_DASH] = ACTIONS(1793), + [anon_sym_LT_LT] = ACTIONS(1663), + [anon_sym_GT_GT] = ACTIONS(1663), + [anon_sym_GT_GT_GT] = ACTIONS(1663), + [anon_sym_AMP_CARET] = ACTIONS(1663), + [anon_sym_AMP_AMP] = ACTIONS(1793), + [anon_sym_PIPE_PIPE] = ACTIONS(1793), + [anon_sym_or] = ACTIONS(1793), + [sym_none] = ACTIONS(1793), + [sym_true] = ACTIONS(1793), + [sym_false] = ACTIONS(1793), + [sym_nil] = ACTIONS(1793), + [anon_sym_QMARK_DOT] = ACTIONS(1653), + [anon_sym_POUND_LBRACK] = ACTIONS(1677), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1793), + [anon_sym_is] = ACTIONS(1793), + [anon_sym_BANGis] = ACTIONS(1793), + [anon_sym_in] = ACTIONS(1793), + [anon_sym_BANGin] = ACTIONS(1793), + [anon_sym_match] = ACTIONS(1793), + [anon_sym_select] = ACTIONS(1793), + [anon_sym_STAR_EQ] = ACTIONS(1793), + [anon_sym_SLASH_EQ] = ACTIONS(1793), + [anon_sym_PERCENT_EQ] = ACTIONS(1793), + [anon_sym_LT_LT_EQ] = ACTIONS(1793), + [anon_sym_GT_GT_EQ] = ACTIONS(1793), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1793), + [anon_sym_AMP_EQ] = ACTIONS(1793), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1793), + [anon_sym_PLUS_EQ] = ACTIONS(1793), + [anon_sym_DASH_EQ] = ACTIONS(1793), + [anon_sym_PIPE_EQ] = ACTIONS(1793), + [anon_sym_CARET_EQ] = ACTIONS(1793), + [anon_sym_COLON_EQ] = ACTIONS(1793), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1793), + [anon_sym_sql] = ACTIONS(1793), + [sym_int_literal] = ACTIONS(1793), + [sym_float_literal] = ACTIONS(1793), + [sym_rune_literal] = ACTIONS(1793), + [anon_sym_SQUOTE] = ACTIONS(1793), + [anon_sym_DQUOTE] = ACTIONS(1793), + [anon_sym_c_SQUOTE] = ACTIONS(1793), + [anon_sym_c_DQUOTE] = ACTIONS(1793), + [anon_sym_r_SQUOTE] = ACTIONS(1793), + [anon_sym_r_DQUOTE] = ACTIONS(1793), + [sym_pseudo_compile_time_identifier] = ACTIONS(1793), + [anon_sym_shared] = ACTIONS(1793), + [anon_sym_map_LBRACK] = ACTIONS(1793), + [anon_sym_chan] = ACTIONS(1793), + [anon_sym_thread] = ACTIONS(1793), + [anon_sym_atomic] = ACTIONS(1793), + [anon_sym_assert] = ACTIONS(1793), + [anon_sym_defer] = ACTIONS(1793), + [anon_sym_goto] = ACTIONS(1793), + [anon_sym_break] = ACTIONS(1793), + [anon_sym_continue] = ACTIONS(1793), + [anon_sym_return] = ACTIONS(1793), + [anon_sym_DOLLARfor] = ACTIONS(1793), + [anon_sym_for] = ACTIONS(1793), + [anon_sym_POUND] = ACTIONS(1793), + [anon_sym_asm] = ACTIONS(1793), + [anon_sym_AT_LBRACK] = ACTIONS(1793), }, [224] = { [sym_line_comment] = STATE(224), [sym_block_comment] = STATE(224), - [sym_type_parameters] = STATE(4287), - [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1791), - [anon_sym_LF] = ACTIONS(1791), - [anon_sym_CR] = ACTIONS(1791), - [anon_sym_CR_LF] = ACTIONS(1791), + [sym_type_parameters] = STATE(4251), + [sym_argument_list] = STATE(359), + [sym_or_block] = STATE(358), + [ts_builtin_sym_end] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1767), + [anon_sym_LF] = ACTIONS(1767), + [anon_sym_CR] = ACTIONS(1767), + [anon_sym_CR_LF] = ACTIONS(1767), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1713), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_EQ] = ACTIONS(1791), - [anon_sym___global] = ACTIONS(1791), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1791), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_STAR] = ACTIONS(1791), - [anon_sym_SLASH] = ACTIONS(1791), - [anon_sym_PERCENT] = ACTIONS(1791), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_LT_EQ] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_union] = ACTIONS(1791), - [anon_sym_pub] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [anon_sym_interface] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1791), - [anon_sym_LBRACK2] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_LT_DASH] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(1791), - [anon_sym_GT_GT] = ACTIONS(1791), - [anon_sym_GT_GT_GT] = ACTIONS(1791), - [anon_sym_AMP_CARET] = ACTIONS(1791), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(1713), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1791), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_BANGin] = ACTIONS(1791), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_STAR_EQ] = ACTIONS(1791), - [anon_sym_SLASH_EQ] = ACTIONS(1791), - [anon_sym_PERCENT_EQ] = ACTIONS(1791), - [anon_sym_LT_LT_EQ] = ACTIONS(1791), - [anon_sym_GT_GT_EQ] = ACTIONS(1791), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1791), - [anon_sym_AMP_EQ] = ACTIONS(1791), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1791), - [anon_sym_PLUS_EQ] = ACTIONS(1791), - [anon_sym_DASH_EQ] = ACTIONS(1791), - [anon_sym_PIPE_EQ] = ACTIONS(1791), - [anon_sym_CARET_EQ] = ACTIONS(1791), - [anon_sym_COLON_EQ] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1791), - [sym_rune_literal] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(1791), - [anon_sym_c_SQUOTE] = ACTIONS(1791), - [anon_sym_c_DQUOTE] = ACTIONS(1791), - [anon_sym_r_SQUOTE] = ACTIONS(1791), - [anon_sym_r_DQUOTE] = ACTIONS(1791), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1791), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), - [anon_sym_assert] = ACTIONS(1791), - [anon_sym_defer] = ACTIONS(1791), - [anon_sym_goto] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_DOLLARfor] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_POUND] = ACTIONS(1791), - [anon_sym_asm] = ACTIONS(1791), - [anon_sym_AT_LBRACK] = ACTIONS(1791), + [anon_sym_DOT] = ACTIONS(1653), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_COMMA] = ACTIONS(1767), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_EQ] = ACTIONS(1767), + [anon_sym___global] = ACTIONS(1767), + [anon_sym_type] = ACTIONS(1767), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_PERCENT] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_GT] = ACTIONS(1665), + [anon_sym_EQ_EQ] = ACTIONS(1665), + [anon_sym_BANG_EQ] = ACTIONS(1665), + [anon_sym_LT_EQ] = ACTIONS(1665), + [anon_sym_GT_EQ] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_union] = ACTIONS(1767), + [anon_sym_pub] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_enum] = ACTIONS(1767), + [anon_sym_interface] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1675), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LBRACK2] = ACTIONS(1677), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_CARET] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_LT_DASH] = ACTIONS(1767), + [anon_sym_LT_LT] = ACTIONS(1663), + [anon_sym_GT_GT] = ACTIONS(1663), + [anon_sym_GT_GT_GT] = ACTIONS(1663), + [anon_sym_AMP_CARET] = ACTIONS(1663), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(1653), + [anon_sym_POUND_LBRACK] = ACTIONS(1677), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1767), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_BANGin] = ACTIONS(1687), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_STAR_EQ] = ACTIONS(1767), + [anon_sym_SLASH_EQ] = ACTIONS(1767), + [anon_sym_PERCENT_EQ] = ACTIONS(1767), + [anon_sym_LT_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_GT_EQ] = ACTIONS(1767), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1767), + [anon_sym_AMP_EQ] = ACTIONS(1767), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1767), + [anon_sym_PLUS_EQ] = ACTIONS(1767), + [anon_sym_DASH_EQ] = ACTIONS(1767), + [anon_sym_PIPE_EQ] = ACTIONS(1767), + [anon_sym_CARET_EQ] = ACTIONS(1767), + [anon_sym_COLON_EQ] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1767), + [sym_rune_literal] = ACTIONS(1767), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_c_SQUOTE] = ACTIONS(1767), + [anon_sym_c_DQUOTE] = ACTIONS(1767), + [anon_sym_r_SQUOTE] = ACTIONS(1767), + [anon_sym_r_DQUOTE] = ACTIONS(1767), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1767), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), + [anon_sym_assert] = ACTIONS(1767), + [anon_sym_defer] = ACTIONS(1767), + [anon_sym_goto] = ACTIONS(1767), + [anon_sym_break] = ACTIONS(1767), + [anon_sym_continue] = ACTIONS(1767), + [anon_sym_return] = ACTIONS(1767), + [anon_sym_DOLLARfor] = ACTIONS(1767), + [anon_sym_for] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(1767), + [anon_sym_asm] = ACTIONS(1767), + [anon_sym_AT_LBRACK] = ACTIONS(1767), }, [225] = { [sym_line_comment] = STATE(225), [sym_block_comment] = STATE(225), - [sym_type_parameters] = STATE(4287), - [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1791), - [anon_sym_LF] = ACTIONS(1791), - [anon_sym_CR] = ACTIONS(1791), - [anon_sym_CR_LF] = ACTIONS(1791), + [sym_type_parameters] = STATE(4251), + [sym_argument_list] = STATE(359), + [sym_or_block] = STATE(358), + [ts_builtin_sym_end] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1767), + [anon_sym_LF] = ACTIONS(1767), + [anon_sym_CR] = ACTIONS(1767), + [anon_sym_CR_LF] = ACTIONS(1767), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1713), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_EQ] = ACTIONS(1791), - [anon_sym___global] = ACTIONS(1791), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_PERCENT] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_LT_EQ] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_union] = ACTIONS(1791), - [anon_sym_pub] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [anon_sym_interface] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1791), - [anon_sym_LBRACK2] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_LT_DASH] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(1725), - [anon_sym_GT_GT] = ACTIONS(1725), - [anon_sym_GT_GT_GT] = ACTIONS(1725), - [anon_sym_AMP_CARET] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(1713), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1791), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_BANGin] = ACTIONS(1791), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_STAR_EQ] = ACTIONS(1791), - [anon_sym_SLASH_EQ] = ACTIONS(1791), - [anon_sym_PERCENT_EQ] = ACTIONS(1791), - [anon_sym_LT_LT_EQ] = ACTIONS(1791), - [anon_sym_GT_GT_EQ] = ACTIONS(1791), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1791), - [anon_sym_AMP_EQ] = ACTIONS(1791), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1791), - [anon_sym_PLUS_EQ] = ACTIONS(1791), - [anon_sym_DASH_EQ] = ACTIONS(1791), - [anon_sym_PIPE_EQ] = ACTIONS(1791), - [anon_sym_CARET_EQ] = ACTIONS(1791), - [anon_sym_COLON_EQ] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1791), - [sym_rune_literal] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(1791), - [anon_sym_c_SQUOTE] = ACTIONS(1791), - [anon_sym_c_DQUOTE] = ACTIONS(1791), - [anon_sym_r_SQUOTE] = ACTIONS(1791), - [anon_sym_r_DQUOTE] = ACTIONS(1791), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1791), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), - [anon_sym_assert] = ACTIONS(1791), - [anon_sym_defer] = ACTIONS(1791), - [anon_sym_goto] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_DOLLARfor] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_POUND] = ACTIONS(1791), - [anon_sym_asm] = ACTIONS(1791), - [anon_sym_AT_LBRACK] = ACTIONS(1791), + [anon_sym_DOT] = ACTIONS(1653), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_COMMA] = ACTIONS(1767), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_EQ] = ACTIONS(1767), + [anon_sym___global] = ACTIONS(1767), + [anon_sym_type] = ACTIONS(1767), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_PERCENT] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_GT] = ACTIONS(1665), + [anon_sym_EQ_EQ] = ACTIONS(1665), + [anon_sym_BANG_EQ] = ACTIONS(1665), + [anon_sym_LT_EQ] = ACTIONS(1665), + [anon_sym_GT_EQ] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_union] = ACTIONS(1767), + [anon_sym_pub] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_enum] = ACTIONS(1767), + [anon_sym_interface] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1675), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LBRACK2] = ACTIONS(1677), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_CARET] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_LT_DASH] = ACTIONS(1767), + [anon_sym_LT_LT] = ACTIONS(1663), + [anon_sym_GT_GT] = ACTIONS(1663), + [anon_sym_GT_GT_GT] = ACTIONS(1663), + [anon_sym_AMP_CARET] = ACTIONS(1663), + [anon_sym_AMP_AMP] = ACTIONS(1767), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(1653), + [anon_sym_POUND_LBRACK] = ACTIONS(1677), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1767), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_BANGin] = ACTIONS(1687), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_STAR_EQ] = ACTIONS(1767), + [anon_sym_SLASH_EQ] = ACTIONS(1767), + [anon_sym_PERCENT_EQ] = ACTIONS(1767), + [anon_sym_LT_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_GT_EQ] = ACTIONS(1767), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1767), + [anon_sym_AMP_EQ] = ACTIONS(1767), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1767), + [anon_sym_PLUS_EQ] = ACTIONS(1767), + [anon_sym_DASH_EQ] = ACTIONS(1767), + [anon_sym_PIPE_EQ] = ACTIONS(1767), + [anon_sym_CARET_EQ] = ACTIONS(1767), + [anon_sym_COLON_EQ] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1767), + [sym_rune_literal] = ACTIONS(1767), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_c_SQUOTE] = ACTIONS(1767), + [anon_sym_c_DQUOTE] = ACTIONS(1767), + [anon_sym_r_SQUOTE] = ACTIONS(1767), + [anon_sym_r_DQUOTE] = ACTIONS(1767), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1767), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), + [anon_sym_assert] = ACTIONS(1767), + [anon_sym_defer] = ACTIONS(1767), + [anon_sym_goto] = ACTIONS(1767), + [anon_sym_break] = ACTIONS(1767), + [anon_sym_continue] = ACTIONS(1767), + [anon_sym_return] = ACTIONS(1767), + [anon_sym_DOLLARfor] = ACTIONS(1767), + [anon_sym_for] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(1767), + [anon_sym_asm] = ACTIONS(1767), + [anon_sym_AT_LBRACK] = ACTIONS(1767), }, [226] = { [sym_line_comment] = STATE(226), [sym_block_comment] = STATE(226), - [sym_type_parameters] = STATE(4287), - [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(1793), - [sym_identifier] = ACTIONS(1795), - [anon_sym_LF] = ACTIONS(1795), - [anon_sym_CR] = ACTIONS(1795), - [anon_sym_CR_LF] = ACTIONS(1795), + [sym_type_parameters] = STATE(4251), + [sym_argument_list] = STATE(359), + [sym_or_block] = STATE(358), + [ts_builtin_sym_end] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1767), + [anon_sym_LF] = ACTIONS(1767), + [anon_sym_CR] = ACTIONS(1767), + [anon_sym_CR_LF] = ACTIONS(1767), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1713), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_EQ] = ACTIONS(1791), - [anon_sym___global] = ACTIONS(1795), - [anon_sym_type] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_fn] = ACTIONS(1795), - [anon_sym_PLUS] = ACTIONS(1795), - [anon_sym_DASH] = ACTIONS(1795), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_SLASH] = ACTIONS(1791), - [anon_sym_PERCENT] = ACTIONS(1791), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_LT_EQ] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1795), - [anon_sym_union] = ACTIONS(1795), - [anon_sym_pub] = ACTIONS(1795), - [anon_sym_mut] = ACTIONS(1795), - [anon_sym_enum] = ACTIONS(1795), - [anon_sym_interface] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_go] = ACTIONS(1795), - [anon_sym_spawn] = ACTIONS(1795), - [anon_sym_json_DOTdecode] = ACTIONS(1795), - [anon_sym_LBRACK2] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_LT_DASH] = ACTIONS(1795), - [anon_sym_LT_LT] = ACTIONS(1791), - [anon_sym_GT_GT] = ACTIONS(1791), - [anon_sym_GT_GT_GT] = ACTIONS(1791), - [anon_sym_AMP_CARET] = ACTIONS(1791), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1795), - [sym_true] = ACTIONS(1795), - [sym_false] = ACTIONS(1795), - [sym_nil] = ACTIONS(1795), - [anon_sym_QMARK_DOT] = ACTIONS(1713), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1795), - [anon_sym_DOLLARif] = ACTIONS(1795), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1791), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_BANGin] = ACTIONS(1791), - [anon_sym_match] = ACTIONS(1795), - [anon_sym_select] = ACTIONS(1795), - [anon_sym_STAR_EQ] = ACTIONS(1791), - [anon_sym_SLASH_EQ] = ACTIONS(1791), - [anon_sym_PERCENT_EQ] = ACTIONS(1791), - [anon_sym_LT_LT_EQ] = ACTIONS(1791), - [anon_sym_GT_GT_EQ] = ACTIONS(1791), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1791), - [anon_sym_AMP_EQ] = ACTIONS(1791), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1791), - [anon_sym_PLUS_EQ] = ACTIONS(1791), - [anon_sym_DASH_EQ] = ACTIONS(1791), - [anon_sym_PIPE_EQ] = ACTIONS(1791), - [anon_sym_CARET_EQ] = ACTIONS(1791), - [anon_sym_COLON_EQ] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1795), - [anon_sym_sql] = ACTIONS(1795), - [sym_int_literal] = ACTIONS(1795), - [sym_float_literal] = ACTIONS(1795), - [sym_rune_literal] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1795), - [anon_sym_DQUOTE] = ACTIONS(1795), - [anon_sym_c_SQUOTE] = ACTIONS(1795), - [anon_sym_c_DQUOTE] = ACTIONS(1795), - [anon_sym_r_SQUOTE] = ACTIONS(1795), - [anon_sym_r_DQUOTE] = ACTIONS(1795), - [sym_pseudo_compile_time_identifier] = ACTIONS(1795), - [anon_sym_shared] = ACTIONS(1795), - [anon_sym_map_LBRACK] = ACTIONS(1795), - [anon_sym_chan] = ACTIONS(1795), - [anon_sym_thread] = ACTIONS(1795), - [anon_sym_atomic] = ACTIONS(1795), - [anon_sym_assert] = ACTIONS(1795), - [anon_sym_defer] = ACTIONS(1795), - [anon_sym_goto] = ACTIONS(1795), - [anon_sym_break] = ACTIONS(1795), - [anon_sym_continue] = ACTIONS(1795), - [anon_sym_return] = ACTIONS(1795), - [anon_sym_DOLLARfor] = ACTIONS(1795), - [anon_sym_for] = ACTIONS(1795), - [anon_sym_POUND] = ACTIONS(1795), - [anon_sym_asm] = ACTIONS(1795), - [anon_sym_AT_LBRACK] = ACTIONS(1795), + [anon_sym_DOT] = ACTIONS(1653), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_COMMA] = ACTIONS(1767), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_EQ] = ACTIONS(1767), + [anon_sym___global] = ACTIONS(1767), + [anon_sym_type] = ACTIONS(1767), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_PERCENT] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_EQ_EQ] = ACTIONS(1767), + [anon_sym_BANG_EQ] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_union] = ACTIONS(1767), + [anon_sym_pub] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_enum] = ACTIONS(1767), + [anon_sym_interface] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1675), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LBRACK2] = ACTIONS(1677), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_CARET] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_LT_DASH] = ACTIONS(1767), + [anon_sym_LT_LT] = ACTIONS(1663), + [anon_sym_GT_GT] = ACTIONS(1663), + [anon_sym_GT_GT_GT] = ACTIONS(1663), + [anon_sym_AMP_CARET] = ACTIONS(1663), + [anon_sym_AMP_AMP] = ACTIONS(1767), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(1653), + [anon_sym_POUND_LBRACK] = ACTIONS(1677), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1767), + [anon_sym_in] = ACTIONS(1767), + [anon_sym_BANGin] = ACTIONS(1767), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_STAR_EQ] = ACTIONS(1767), + [anon_sym_SLASH_EQ] = ACTIONS(1767), + [anon_sym_PERCENT_EQ] = ACTIONS(1767), + [anon_sym_LT_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_GT_EQ] = ACTIONS(1767), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1767), + [anon_sym_AMP_EQ] = ACTIONS(1767), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1767), + [anon_sym_PLUS_EQ] = ACTIONS(1767), + [anon_sym_DASH_EQ] = ACTIONS(1767), + [anon_sym_PIPE_EQ] = ACTIONS(1767), + [anon_sym_CARET_EQ] = ACTIONS(1767), + [anon_sym_COLON_EQ] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1767), + [sym_rune_literal] = ACTIONS(1767), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_c_SQUOTE] = ACTIONS(1767), + [anon_sym_c_DQUOTE] = ACTIONS(1767), + [anon_sym_r_SQUOTE] = ACTIONS(1767), + [anon_sym_r_DQUOTE] = ACTIONS(1767), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1767), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), + [anon_sym_assert] = ACTIONS(1767), + [anon_sym_defer] = ACTIONS(1767), + [anon_sym_goto] = ACTIONS(1767), + [anon_sym_break] = ACTIONS(1767), + [anon_sym_continue] = ACTIONS(1767), + [anon_sym_return] = ACTIONS(1767), + [anon_sym_DOLLARfor] = ACTIONS(1767), + [anon_sym_for] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(1767), + [anon_sym_asm] = ACTIONS(1767), + [anon_sym_AT_LBRACK] = ACTIONS(1767), }, [227] = { [sym_line_comment] = STATE(227), [sym_block_comment] = STATE(227), - [sym_type_parameters] = STATE(4287), - [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1791), - [anon_sym_LF] = ACTIONS(1791), - [anon_sym_CR] = ACTIONS(1791), - [anon_sym_CR_LF] = ACTIONS(1791), + [sym_type_parameters] = STATE(4251), + [sym_argument_list] = STATE(359), + [sym_or_block] = STATE(358), + [ts_builtin_sym_end] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1767), + [anon_sym_LF] = ACTIONS(1767), + [anon_sym_CR] = ACTIONS(1767), + [anon_sym_CR_LF] = ACTIONS(1767), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1713), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_EQ] = ACTIONS(1791), - [anon_sym___global] = ACTIONS(1791), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_PERCENT] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1727), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_union] = ACTIONS(1791), - [anon_sym_pub] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [anon_sym_interface] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1791), - [anon_sym_LBRACK2] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_LT_DASH] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(1725), - [anon_sym_GT_GT] = ACTIONS(1725), - [anon_sym_GT_GT_GT] = ACTIONS(1725), - [anon_sym_AMP_CARET] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(1713), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1791), - [anon_sym_in] = ACTIONS(1753), - [anon_sym_BANGin] = ACTIONS(1753), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_STAR_EQ] = ACTIONS(1791), - [anon_sym_SLASH_EQ] = ACTIONS(1791), - [anon_sym_PERCENT_EQ] = ACTIONS(1791), - [anon_sym_LT_LT_EQ] = ACTIONS(1791), - [anon_sym_GT_GT_EQ] = ACTIONS(1791), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1791), - [anon_sym_AMP_EQ] = ACTIONS(1791), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1791), - [anon_sym_PLUS_EQ] = ACTIONS(1791), - [anon_sym_DASH_EQ] = ACTIONS(1791), - [anon_sym_PIPE_EQ] = ACTIONS(1791), - [anon_sym_CARET_EQ] = ACTIONS(1791), - [anon_sym_COLON_EQ] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1791), - [sym_rune_literal] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(1791), - [anon_sym_c_SQUOTE] = ACTIONS(1791), - [anon_sym_c_DQUOTE] = ACTIONS(1791), - [anon_sym_r_SQUOTE] = ACTIONS(1791), - [anon_sym_r_DQUOTE] = ACTIONS(1791), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1791), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), - [anon_sym_assert] = ACTIONS(1791), - [anon_sym_defer] = ACTIONS(1791), - [anon_sym_goto] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_DOLLARfor] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_POUND] = ACTIONS(1791), - [anon_sym_asm] = ACTIONS(1791), - [anon_sym_AT_LBRACK] = ACTIONS(1791), + [anon_sym_DOT] = ACTIONS(1653), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_COMMA] = ACTIONS(1767), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_EQ] = ACTIONS(1767), + [anon_sym___global] = ACTIONS(1767), + [anon_sym_type] = ACTIONS(1767), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_PERCENT] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_EQ_EQ] = ACTIONS(1767), + [anon_sym_BANG_EQ] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_union] = ACTIONS(1767), + [anon_sym_pub] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_enum] = ACTIONS(1767), + [anon_sym_interface] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1675), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK2] = ACTIONS(1677), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_CARET] = ACTIONS(1767), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_LT_DASH] = ACTIONS(1767), + [anon_sym_LT_LT] = ACTIONS(1663), + [anon_sym_GT_GT] = ACTIONS(1663), + [anon_sym_GT_GT_GT] = ACTIONS(1663), + [anon_sym_AMP_CARET] = ACTIONS(1663), + [anon_sym_AMP_AMP] = ACTIONS(1767), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(1653), + [anon_sym_POUND_LBRACK] = ACTIONS(1677), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1767), + [anon_sym_in] = ACTIONS(1767), + [anon_sym_BANGin] = ACTIONS(1767), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_STAR_EQ] = ACTIONS(1767), + [anon_sym_SLASH_EQ] = ACTIONS(1767), + [anon_sym_PERCENT_EQ] = ACTIONS(1767), + [anon_sym_LT_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_GT_EQ] = ACTIONS(1767), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1767), + [anon_sym_AMP_EQ] = ACTIONS(1767), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1767), + [anon_sym_PLUS_EQ] = ACTIONS(1767), + [anon_sym_DASH_EQ] = ACTIONS(1767), + [anon_sym_PIPE_EQ] = ACTIONS(1767), + [anon_sym_CARET_EQ] = ACTIONS(1767), + [anon_sym_COLON_EQ] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1767), + [sym_rune_literal] = ACTIONS(1767), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_c_SQUOTE] = ACTIONS(1767), + [anon_sym_c_DQUOTE] = ACTIONS(1767), + [anon_sym_r_SQUOTE] = ACTIONS(1767), + [anon_sym_r_DQUOTE] = ACTIONS(1767), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1767), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), + [anon_sym_assert] = ACTIONS(1767), + [anon_sym_defer] = ACTIONS(1767), + [anon_sym_goto] = ACTIONS(1767), + [anon_sym_break] = ACTIONS(1767), + [anon_sym_continue] = ACTIONS(1767), + [anon_sym_return] = ACTIONS(1767), + [anon_sym_DOLLARfor] = ACTIONS(1767), + [anon_sym_for] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(1767), + [anon_sym_asm] = ACTIONS(1767), + [anon_sym_AT_LBRACK] = ACTIONS(1767), }, [228] = { [sym_line_comment] = STATE(228), [sym_block_comment] = STATE(228), - [sym_type_parameters] = STATE(4287), - [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1791), - [anon_sym_LF] = ACTIONS(1791), - [anon_sym_CR] = ACTIONS(1791), - [anon_sym_CR_LF] = ACTIONS(1791), + [sym_type_parameters] = STATE(4251), + [sym_argument_list] = STATE(359), + [sym_or_block] = STATE(358), + [ts_builtin_sym_end] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1767), + [anon_sym_LF] = ACTIONS(1767), + [anon_sym_CR] = ACTIONS(1767), + [anon_sym_CR_LF] = ACTIONS(1767), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1713), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_EQ] = ACTIONS(1791), - [anon_sym___global] = ACTIONS(1791), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_PERCENT] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1727), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_union] = ACTIONS(1791), - [anon_sym_pub] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [anon_sym_interface] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1791), - [anon_sym_LBRACK2] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_LT_DASH] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(1725), - [anon_sym_GT_GT] = ACTIONS(1725), - [anon_sym_GT_GT_GT] = ACTIONS(1725), - [anon_sym_AMP_CARET] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1745), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(1713), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1791), - [anon_sym_in] = ACTIONS(1753), - [anon_sym_BANGin] = ACTIONS(1753), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_STAR_EQ] = ACTIONS(1791), - [anon_sym_SLASH_EQ] = ACTIONS(1791), - [anon_sym_PERCENT_EQ] = ACTIONS(1791), - [anon_sym_LT_LT_EQ] = ACTIONS(1791), - [anon_sym_GT_GT_EQ] = ACTIONS(1791), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1791), - [anon_sym_AMP_EQ] = ACTIONS(1791), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1791), - [anon_sym_PLUS_EQ] = ACTIONS(1791), - [anon_sym_DASH_EQ] = ACTIONS(1791), - [anon_sym_PIPE_EQ] = ACTIONS(1791), - [anon_sym_CARET_EQ] = ACTIONS(1791), - [anon_sym_COLON_EQ] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1791), - [sym_rune_literal] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(1791), - [anon_sym_c_SQUOTE] = ACTIONS(1791), - [anon_sym_c_DQUOTE] = ACTIONS(1791), - [anon_sym_r_SQUOTE] = ACTIONS(1791), - [anon_sym_r_DQUOTE] = ACTIONS(1791), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1791), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), - [anon_sym_assert] = ACTIONS(1791), - [anon_sym_defer] = ACTIONS(1791), - [anon_sym_goto] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_DOLLARfor] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_POUND] = ACTIONS(1791), - [anon_sym_asm] = ACTIONS(1791), - [anon_sym_AT_LBRACK] = ACTIONS(1791), + [anon_sym_DOT] = ACTIONS(1653), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_COMMA] = ACTIONS(1767), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_EQ] = ACTIONS(1767), + [anon_sym___global] = ACTIONS(1767), + [anon_sym_type] = ACTIONS(1767), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_PERCENT] = ACTIONS(1767), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_EQ_EQ] = ACTIONS(1767), + [anon_sym_BANG_EQ] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_union] = ACTIONS(1767), + [anon_sym_pub] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_enum] = ACTIONS(1767), + [anon_sym_interface] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1675), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK2] = ACTIONS(1677), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_CARET] = ACTIONS(1767), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym_LT_DASH] = ACTIONS(1767), + [anon_sym_LT_LT] = ACTIONS(1767), + [anon_sym_GT_GT] = ACTIONS(1767), + [anon_sym_GT_GT_GT] = ACTIONS(1767), + [anon_sym_AMP_CARET] = ACTIONS(1767), + [anon_sym_AMP_AMP] = ACTIONS(1767), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(1653), + [anon_sym_POUND_LBRACK] = ACTIONS(1677), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1767), + [anon_sym_in] = ACTIONS(1767), + [anon_sym_BANGin] = ACTIONS(1767), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_STAR_EQ] = ACTIONS(1767), + [anon_sym_SLASH_EQ] = ACTIONS(1767), + [anon_sym_PERCENT_EQ] = ACTIONS(1767), + [anon_sym_LT_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_GT_EQ] = ACTIONS(1767), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1767), + [anon_sym_AMP_EQ] = ACTIONS(1767), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1767), + [anon_sym_PLUS_EQ] = ACTIONS(1767), + [anon_sym_DASH_EQ] = ACTIONS(1767), + [anon_sym_PIPE_EQ] = ACTIONS(1767), + [anon_sym_CARET_EQ] = ACTIONS(1767), + [anon_sym_COLON_EQ] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1767), + [sym_rune_literal] = ACTIONS(1767), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_c_SQUOTE] = ACTIONS(1767), + [anon_sym_c_DQUOTE] = ACTIONS(1767), + [anon_sym_r_SQUOTE] = ACTIONS(1767), + [anon_sym_r_DQUOTE] = ACTIONS(1767), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1767), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), + [anon_sym_assert] = ACTIONS(1767), + [anon_sym_defer] = ACTIONS(1767), + [anon_sym_goto] = ACTIONS(1767), + [anon_sym_break] = ACTIONS(1767), + [anon_sym_continue] = ACTIONS(1767), + [anon_sym_return] = ACTIONS(1767), + [anon_sym_DOLLARfor] = ACTIONS(1767), + [anon_sym_for] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(1767), + [anon_sym_asm] = ACTIONS(1767), + [anon_sym_AT_LBRACK] = ACTIONS(1767), }, [229] = { [sym_line_comment] = STATE(229), [sym_block_comment] = STATE(229), - [sym_else_branch] = STATE(376), + [sym_else_branch] = STATE(404), [ts_builtin_sym_end] = ACTIONS(1797), [sym_identifier] = ACTIONS(1799), [anon_sym_LF] = ACTIONS(1799), @@ -49300,7 +49595,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(1799), [anon_sym___global] = ACTIONS(1799), [anon_sym_type] = ACTIONS(1799), - [anon_sym_PIPE] = ACTIONS(1799), [anon_sym_fn] = ACTIONS(1799), [anon_sym_PLUS] = ACTIONS(1799), [anon_sym_DASH] = ACTIONS(1799), @@ -49327,6 +49621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(1799), [anon_sym_spawn] = ACTIONS(1799), [anon_sym_json_DOTdecode] = ACTIONS(1799), + [anon_sym_PIPE] = ACTIONS(1799), [anon_sym_LBRACK2] = ACTIONS(1799), [anon_sym_TILDE] = ACTIONS(1799), [anon_sym_CARET] = ACTIONS(1799), @@ -49401,7 +49696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [230] = { [sym_line_comment] = STATE(230), [sym_block_comment] = STATE(230), - [sym_else_branch] = STATE(380), + [sym_else_branch] = STATE(388), [ts_builtin_sym_end] = ACTIONS(1803), [sym_identifier] = ACTIONS(1805), [anon_sym_LF] = ACTIONS(1805), @@ -49418,7 +49713,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(1805), [anon_sym___global] = ACTIONS(1805), [anon_sym_type] = ACTIONS(1805), - [anon_sym_PIPE] = ACTIONS(1805), [anon_sym_fn] = ACTIONS(1805), [anon_sym_PLUS] = ACTIONS(1805), [anon_sym_DASH] = ACTIONS(1805), @@ -49445,6 +49739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(1805), [anon_sym_spawn] = ACTIONS(1805), [anon_sym_json_DOTdecode] = ACTIONS(1805), + [anon_sym_PIPE] = ACTIONS(1805), [anon_sym_LBRACK2] = ACTIONS(1805), [anon_sym_TILDE] = ACTIONS(1805), [anon_sym_CARET] = ACTIONS(1805), @@ -49519,465 +49814,465 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [231] = { [sym_line_comment] = STATE(231), [sym_block_comment] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_LF] = ACTIONS(1809), - [anon_sym_CR] = ACTIONS(1809), - [anon_sym_CR_LF] = ACTIONS(1809), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_as] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_EQ] = ACTIONS(1809), - [anon_sym___global] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_fn] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_PERCENT] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_EQ_EQ] = ACTIONS(1809), - [anon_sym_BANG_EQ] = ACTIONS(1809), - [anon_sym_LT_EQ] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_pub] = ACTIONS(1809), - [anon_sym_mut] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_interface] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1809), - [anon_sym_json_DOTdecode] = ACTIONS(1809), - [anon_sym_LBRACK2] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_LT_DASH] = ACTIONS(1809), - [anon_sym_LT_LT] = ACTIONS(1809), - [anon_sym_GT_GT] = ACTIONS(1809), - [anon_sym_GT_GT_GT] = ACTIONS(1809), - [anon_sym_AMP_CARET] = ACTIONS(1809), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [anon_sym_PIPE_PIPE] = ACTIONS(1809), - [anon_sym_or] = ACTIONS(1809), - [sym_none] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_nil] = ACTIONS(1809), - [anon_sym_QMARK_DOT] = ACTIONS(1809), - [anon_sym_POUND_LBRACK] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_DOLLARif] = ACTIONS(1809), - [anon_sym_DOLLARelse] = ACTIONS(1809), - [anon_sym_is] = ACTIONS(1809), - [anon_sym_BANGis] = ACTIONS(1809), - [anon_sym_in] = ACTIONS(1809), - [anon_sym_BANGin] = ACTIONS(1809), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_select] = ACTIONS(1809), - [anon_sym_STAR_EQ] = ACTIONS(1809), - [anon_sym_SLASH_EQ] = ACTIONS(1809), - [anon_sym_PERCENT_EQ] = ACTIONS(1809), - [anon_sym_LT_LT_EQ] = ACTIONS(1809), - [anon_sym_GT_GT_EQ] = ACTIONS(1809), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1809), - [anon_sym_AMP_EQ] = ACTIONS(1809), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1809), - [anon_sym_PLUS_EQ] = ACTIONS(1809), - [anon_sym_DASH_EQ] = ACTIONS(1809), - [anon_sym_PIPE_EQ] = ACTIONS(1809), - [anon_sym_CARET_EQ] = ACTIONS(1809), - [anon_sym_COLON_EQ] = ACTIONS(1809), - [anon_sym_lock] = ACTIONS(1809), - [anon_sym_rlock] = ACTIONS(1809), - [anon_sym_unsafe] = ACTIONS(1809), - [anon_sym_sql] = ACTIONS(1809), - [sym_int_literal] = ACTIONS(1809), - [sym_float_literal] = ACTIONS(1809), - [sym_rune_literal] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1809), - [anon_sym_c_SQUOTE] = ACTIONS(1809), - [anon_sym_c_DQUOTE] = ACTIONS(1809), - [anon_sym_r_SQUOTE] = ACTIONS(1809), - [anon_sym_r_DQUOTE] = ACTIONS(1809), - [sym_pseudo_compile_time_identifier] = ACTIONS(1809), - [anon_sym_shared] = ACTIONS(1809), - [anon_sym_map_LBRACK] = ACTIONS(1809), - [anon_sym_chan] = ACTIONS(1809), - [anon_sym_thread] = ACTIONS(1809), - [anon_sym_atomic] = ACTIONS(1809), - [anon_sym_assert] = ACTIONS(1809), - [anon_sym_defer] = ACTIONS(1809), - [anon_sym_goto] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_DOLLARfor] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_POUND] = ACTIONS(1809), - [anon_sym_asm] = ACTIONS(1809), - [anon_sym_AT_LBRACK] = ACTIONS(1809), - }, - [232] = { - [sym_line_comment] = STATE(232), - [sym_block_comment] = STATE(232), - [sym__expression] = STATE(2314), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(582), - [sym_mutable_expression] = STATE(3787), - [sym_expression_list] = STATE(4409), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_var_declaration] = STATE(4060), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4121), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_block] = STATE(2006), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [233] = { - [sym_line_comment] = STATE(233), - [sym_block_comment] = STATE(233), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(241), - [sym_identifier] = ACTIONS(1219), + [232] = { + [sym_line_comment] = STATE(232), + [sym_block_comment] = STATE(232), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(853), + [sym_mutable_expression] = STATE(3865), + [sym_expression_list] = STATE(4586), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_var_declaration] = STATE(4331), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, + [233] = { + [sym_line_comment] = STATE(233), + [sym_block_comment] = STATE(233), + [ts_builtin_sym_end] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1837), + [anon_sym_LF] = ACTIONS(1837), + [anon_sym_CR] = ACTIONS(1837), + [anon_sym_CR_LF] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_as] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_const] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym___global] = ACTIONS(1837), + [anon_sym_type] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_struct] = ACTIONS(1837), + [anon_sym_union] = ACTIONS(1837), + [anon_sym_pub] = ACTIONS(1837), + [anon_sym_mut] = ACTIONS(1837), + [anon_sym_enum] = ACTIONS(1837), + [anon_sym_interface] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_QMARK] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_go] = ACTIONS(1837), + [anon_sym_spawn] = ACTIONS(1837), + [anon_sym_json_DOTdecode] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_LBRACK2] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_AMP_CARET] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [sym_none] = ACTIONS(1837), + [sym_true] = ACTIONS(1837), + [sym_false] = ACTIONS(1837), + [sym_nil] = ACTIONS(1837), + [anon_sym_QMARK_DOT] = ACTIONS(1837), + [anon_sym_POUND_LBRACK] = ACTIONS(1837), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_else] = ACTIONS(1837), + [anon_sym_DOLLARif] = ACTIONS(1837), + [anon_sym_is] = ACTIONS(1837), + [anon_sym_BANGis] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_BANGin] = ACTIONS(1837), + [anon_sym_match] = ACTIONS(1837), + [anon_sym_select] = ACTIONS(1837), + [anon_sym_STAR_EQ] = ACTIONS(1837), + [anon_sym_SLASH_EQ] = ACTIONS(1837), + [anon_sym_PERCENT_EQ] = ACTIONS(1837), + [anon_sym_LT_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_GT_EQ] = ACTIONS(1837), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1837), + [anon_sym_AMP_EQ] = ACTIONS(1837), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1837), + [anon_sym_PLUS_EQ] = ACTIONS(1837), + [anon_sym_DASH_EQ] = ACTIONS(1837), + [anon_sym_PIPE_EQ] = ACTIONS(1837), + [anon_sym_CARET_EQ] = ACTIONS(1837), + [anon_sym_COLON_EQ] = ACTIONS(1837), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1837), + [anon_sym_sql] = ACTIONS(1837), + [sym_int_literal] = ACTIONS(1837), + [sym_float_literal] = ACTIONS(1837), + [sym_rune_literal] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_c_SQUOTE] = ACTIONS(1837), + [anon_sym_c_DQUOTE] = ACTIONS(1837), + [anon_sym_r_SQUOTE] = ACTIONS(1837), + [anon_sym_r_DQUOTE] = ACTIONS(1837), + [sym_pseudo_compile_time_identifier] = ACTIONS(1837), + [anon_sym_shared] = ACTIONS(1837), + [anon_sym_map_LBRACK] = ACTIONS(1837), + [anon_sym_chan] = ACTIONS(1837), + [anon_sym_thread] = ACTIONS(1837), + [anon_sym_atomic] = ACTIONS(1837), + [anon_sym_assert] = ACTIONS(1837), + [anon_sym_defer] = ACTIONS(1837), + [anon_sym_goto] = ACTIONS(1837), + [anon_sym_break] = ACTIONS(1837), + [anon_sym_continue] = ACTIONS(1837), + [anon_sym_return] = ACTIONS(1837), + [anon_sym_DOLLARfor] = ACTIONS(1837), + [anon_sym_for] = ACTIONS(1837), + [anon_sym_POUND] = ACTIONS(1837), + [anon_sym_asm] = ACTIONS(1837), + [anon_sym_AT_LBRACK] = ACTIONS(1837), + }, [234] = { [sym_line_comment] = STATE(234), [sym_block_comment] = STATE(234), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4265), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_block] = STATE(2097), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(853), + [sym_mutable_expression] = STATE(3865), + [sym_expression_list] = STATE(4586), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_var_declaration] = STATE(4296), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -49987,114 +50282,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [235] = { [sym_line_comment] = STATE(235), [sym_block_comment] = STATE(235), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4155), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_block] = STATE(2333), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(236), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1839), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -50104,114 +50399,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [236] = { [sym_line_comment] = STATE(236), [sym_block_comment] = STATE(236), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4074), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_block] = STATE(1334), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(294), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -50221,114 +50516,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [237] = { [sym_line_comment] = STATE(237), [sym_block_comment] = STATE(237), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(302), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4307), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_block] = STATE(1914), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -50338,231 +50633,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [238] = { [sym_line_comment] = STATE(238), [sym_block_comment] = STATE(238), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1219), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1847), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1837), + [anon_sym_LF] = ACTIONS(1837), + [anon_sym_CR] = ACTIONS(1837), + [anon_sym_CR_LF] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1845), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_as] = ACTIONS(1845), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1845), + [anon_sym_const] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1845), + [anon_sym___global] = ACTIONS(1837), + [anon_sym_type] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1845), + [anon_sym_PERCENT] = ACTIONS(1845), + [anon_sym_LT] = ACTIONS(1845), + [anon_sym_GT] = ACTIONS(1845), + [anon_sym_EQ_EQ] = ACTIONS(1845), + [anon_sym_BANG_EQ] = ACTIONS(1845), + [anon_sym_LT_EQ] = ACTIONS(1845), + [anon_sym_GT_EQ] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(1847), + [anon_sym_struct] = ACTIONS(1837), + [anon_sym_union] = ACTIONS(1837), + [anon_sym_pub] = ACTIONS(1837), + [anon_sym_mut] = ACTIONS(1837), + [anon_sym_enum] = ACTIONS(1837), + [anon_sym_interface] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_QMARK] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_go] = ACTIONS(1837), + [anon_sym_spawn] = ACTIONS(1837), + [anon_sym_json_DOTdecode] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1845), + [anon_sym_LBRACK2] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1845), + [anon_sym_GT_GT] = ACTIONS(1845), + [anon_sym_GT_GT_GT] = ACTIONS(1845), + [anon_sym_AMP_CARET] = ACTIONS(1845), + [anon_sym_AMP_AMP] = ACTIONS(1845), + [anon_sym_PIPE_PIPE] = ACTIONS(1845), + [anon_sym_or] = ACTIONS(1845), + [sym_none] = ACTIONS(1837), + [sym_true] = ACTIONS(1837), + [sym_false] = ACTIONS(1837), + [sym_nil] = ACTIONS(1837), + [anon_sym_QMARK_DOT] = ACTIONS(1845), + [anon_sym_POUND_LBRACK] = ACTIONS(1845), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_DOLLARif] = ACTIONS(1837), + [anon_sym_is] = ACTIONS(1845), + [anon_sym_BANGis] = ACTIONS(1845), + [anon_sym_in] = ACTIONS(1845), + [anon_sym_BANGin] = ACTIONS(1845), + [anon_sym_match] = ACTIONS(1837), + [anon_sym_select] = ACTIONS(1837), + [anon_sym_STAR_EQ] = ACTIONS(1845), + [anon_sym_SLASH_EQ] = ACTIONS(1845), + [anon_sym_PERCENT_EQ] = ACTIONS(1845), + [anon_sym_LT_LT_EQ] = ACTIONS(1845), + [anon_sym_GT_GT_EQ] = ACTIONS(1845), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1845), + [anon_sym_AMP_EQ] = ACTIONS(1845), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1845), + [anon_sym_PLUS_EQ] = ACTIONS(1845), + [anon_sym_DASH_EQ] = ACTIONS(1845), + [anon_sym_PIPE_EQ] = ACTIONS(1845), + [anon_sym_CARET_EQ] = ACTIONS(1845), + [anon_sym_COLON_EQ] = ACTIONS(1845), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1837), + [anon_sym_sql] = ACTIONS(1837), + [sym_int_literal] = ACTIONS(1837), + [sym_float_literal] = ACTIONS(1837), + [sym_rune_literal] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_c_SQUOTE] = ACTIONS(1837), + [anon_sym_c_DQUOTE] = ACTIONS(1837), + [anon_sym_r_SQUOTE] = ACTIONS(1837), + [anon_sym_r_DQUOTE] = ACTIONS(1837), + [sym_pseudo_compile_time_identifier] = ACTIONS(1837), + [anon_sym_shared] = ACTIONS(1837), + [anon_sym_map_LBRACK] = ACTIONS(1837), + [anon_sym_chan] = ACTIONS(1837), + [anon_sym_thread] = ACTIONS(1837), + [anon_sym_atomic] = ACTIONS(1837), + [anon_sym_assert] = ACTIONS(1837), + [anon_sym_defer] = ACTIONS(1837), + [anon_sym_goto] = ACTIONS(1837), + [anon_sym_break] = ACTIONS(1837), + [anon_sym_continue] = ACTIONS(1837), + [anon_sym_return] = ACTIONS(1837), + [anon_sym_DOLLARfor] = ACTIONS(1837), + [anon_sym_for] = ACTIONS(1837), + [anon_sym_POUND] = ACTIONS(1837), + [anon_sym_asm] = ACTIONS(1837), + [anon_sym_AT_LBRACK] = ACTIONS(1837), }, [239] = { [sym_line_comment] = STATE(239), [sym_block_comment] = STATE(239), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4155), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_block] = STATE(2333), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(259), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -50572,231 +50867,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [240] = { [sym_line_comment] = STATE(240), [sym_block_comment] = STATE(240), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4298), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_block] = STATE(433), - [sym_identifier] = ACTIONS(1811), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1853), + [anon_sym_as] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_COMMA] = ACTIONS(1853), + [anon_sym_const] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1853), + [anon_sym_EQ] = ACTIONS(1853), + [anon_sym___global] = ACTIONS(1853), + [anon_sym_type] = 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(1851), + [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(1853), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_go] = ACTIONS(1853), + [anon_sym_spawn] = ACTIONS(1853), + [anon_sym_json_DOTdecode] = ACTIONS(1853), + [anon_sym_PIPE] = ACTIONS(1853), + [anon_sym_LBRACK2] = ACTIONS(1853), + [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(1853), + [anon_sym_POUND_LBRACK] = ACTIONS(1853), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_DOLLARif] = ACTIONS(1853), + [anon_sym_DOLLARelse] = ACTIONS(1855), + [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), + [anon_sym_SQUOTE] = ACTIONS(1853), + [anon_sym_DQUOTE] = ACTIONS(1853), + [anon_sym_c_SQUOTE] = ACTIONS(1853), + [anon_sym_c_DQUOTE] = ACTIONS(1853), + [anon_sym_r_SQUOTE] = ACTIONS(1853), + [anon_sym_r_DQUOTE] = 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), }, [241] = { [sym_line_comment] = STATE(241), [sym_block_comment] = STATE(241), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4299), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_block] = STATE(2355), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1857), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -50806,114 +51101,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [242] = { [sym_line_comment] = STATE(242), [sym_block_comment] = STATE(242), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(255), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4241), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_block] = STATE(2814), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -50923,114 +51218,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [243] = { [sym_line_comment] = STATE(243), [sym_block_comment] = STATE(243), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2428), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(853), + [sym_mutable_expression] = STATE(3865), + [sym_expression_list] = STATE(4586), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_var_declaration] = STATE(4224), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1857), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -51040,114 +51335,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [244] = { [sym_line_comment] = STATE(244), [sym_block_comment] = STATE(244), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4241), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_block] = STATE(2814), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1859), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -51157,114 +51452,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [245] = { [sym_line_comment] = STATE(245), [sym_block_comment] = STATE(245), - [sym__expression] = STATE(2303), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(582), - [sym_mutable_expression] = STATE(3787), - [sym_expression_list] = STATE(4409), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_var_declaration] = STATE(4015), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(294), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -51274,114 +51569,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [246] = { [sym_line_comment] = STATE(246), [sym_block_comment] = STATE(246), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4075), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_block] = STATE(1046), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4139), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_block] = STATE(1775), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -51391,114 +51686,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [247] = { [sym_line_comment] = STATE(247), [sym_block_comment] = STATE(247), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4265), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_block] = STATE(2097), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(245), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -51508,231 +51803,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [248] = { [sym_line_comment] = STATE(248), [sym_block_comment] = STATE(248), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4192), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_block] = STATE(2570), - [sym_identifier] = ACTIONS(1811), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1865), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1837), + [anon_sym_LF] = ACTIONS(1837), + [anon_sym_CR] = ACTIONS(1837), + [anon_sym_CR_LF] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_as] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_const] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym___global] = ACTIONS(1837), + [anon_sym_type] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_struct] = ACTIONS(1837), + [anon_sym_union] = ACTIONS(1837), + [anon_sym_pub] = ACTIONS(1837), + [anon_sym_mut] = ACTIONS(1837), + [anon_sym_enum] = ACTIONS(1837), + [anon_sym_interface] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_QMARK] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_go] = ACTIONS(1837), + [anon_sym_spawn] = ACTIONS(1837), + [anon_sym_json_DOTdecode] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_LBRACK2] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_AMP_CARET] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [sym_none] = ACTIONS(1837), + [sym_true] = ACTIONS(1837), + [sym_false] = ACTIONS(1837), + [sym_nil] = ACTIONS(1837), + [anon_sym_QMARK_DOT] = ACTIONS(1837), + [anon_sym_POUND_LBRACK] = ACTIONS(1837), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_DOLLARif] = ACTIONS(1837), + [anon_sym_DOLLARelse] = ACTIONS(1837), + [anon_sym_is] = ACTIONS(1837), + [anon_sym_BANGis] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_BANGin] = ACTIONS(1837), + [anon_sym_match] = ACTIONS(1837), + [anon_sym_select] = ACTIONS(1837), + [anon_sym_STAR_EQ] = ACTIONS(1837), + [anon_sym_SLASH_EQ] = ACTIONS(1837), + [anon_sym_PERCENT_EQ] = ACTIONS(1837), + [anon_sym_LT_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_GT_EQ] = ACTIONS(1837), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1837), + [anon_sym_AMP_EQ] = ACTIONS(1837), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1837), + [anon_sym_PLUS_EQ] = ACTIONS(1837), + [anon_sym_DASH_EQ] = ACTIONS(1837), + [anon_sym_PIPE_EQ] = ACTIONS(1837), + [anon_sym_CARET_EQ] = ACTIONS(1837), + [anon_sym_COLON_EQ] = ACTIONS(1837), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1837), + [anon_sym_sql] = ACTIONS(1837), + [sym_int_literal] = ACTIONS(1837), + [sym_float_literal] = ACTIONS(1837), + [sym_rune_literal] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_c_SQUOTE] = ACTIONS(1837), + [anon_sym_c_DQUOTE] = ACTIONS(1837), + [anon_sym_r_SQUOTE] = ACTIONS(1837), + [anon_sym_r_DQUOTE] = ACTIONS(1837), + [sym_pseudo_compile_time_identifier] = ACTIONS(1837), + [anon_sym_shared] = ACTIONS(1837), + [anon_sym_map_LBRACK] = ACTIONS(1837), + [anon_sym_chan] = ACTIONS(1837), + [anon_sym_thread] = ACTIONS(1837), + [anon_sym_atomic] = ACTIONS(1837), + [anon_sym_assert] = ACTIONS(1837), + [anon_sym_defer] = ACTIONS(1837), + [anon_sym_goto] = ACTIONS(1837), + [anon_sym_break] = ACTIONS(1837), + [anon_sym_continue] = ACTIONS(1837), + [anon_sym_return] = ACTIONS(1837), + [anon_sym_DOLLARfor] = ACTIONS(1837), + [anon_sym_for] = ACTIONS(1837), + [anon_sym_POUND] = ACTIONS(1837), + [anon_sym_asm] = ACTIONS(1837), + [anon_sym_AT_LBRACK] = ACTIONS(1837), }, [249] = { [sym_line_comment] = STATE(249), [sym_block_comment] = STATE(249), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4192), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_block] = STATE(2570), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4185), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_block] = STATE(2571), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -51742,114 +52037,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [250] = { [sym_line_comment] = STATE(250), [sym_block_comment] = STATE(250), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4299), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_block] = STATE(2355), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -51859,114 +52154,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [251] = { [sym_line_comment] = STATE(251), [sym_block_comment] = STATE(251), - [sym__expression] = STATE(2355), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(582), - [sym_mutable_expression] = STATE(3787), - [sym_expression_list] = STATE(4409), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_var_declaration] = STATE(4249), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4299), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_block] = STATE(2355), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -51976,114 +52271,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [252] = { [sym_line_comment] = STATE(252), [sym_block_comment] = STATE(252), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4125), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_block] = STATE(2252), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2422), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(853), + [sym_mutable_expression] = STATE(3865), + [sym_expression_list] = STATE(4586), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_var_declaration] = STATE(4120), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -52093,231 +52388,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [253] = { [sym_line_comment] = STATE(253), [sym_block_comment] = STATE(253), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(286), - [sym_identifier] = ACTIONS(1219), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(1875), + [sym_identifier] = ACTIONS(1877), + [anon_sym_LF] = ACTIONS(1877), + [anon_sym_CR] = ACTIONS(1877), + [anon_sym_CR_LF] = ACTIONS(1877), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1877), + [anon_sym_as] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_const] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_EQ] = ACTIONS(1877), + [anon_sym___global] = ACTIONS(1877), + [anon_sym_type] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1877), + [anon_sym_union] = ACTIONS(1877), + [anon_sym_pub] = ACTIONS(1877), + [anon_sym_mut] = ACTIONS(1877), + [anon_sym_enum] = ACTIONS(1877), + [anon_sym_interface] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_QMARK] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_go] = ACTIONS(1877), + [anon_sym_spawn] = ACTIONS(1877), + [anon_sym_json_DOTdecode] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_LBRACK2] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT] = ACTIONS(1877), + [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(1877), + [sym_none] = ACTIONS(1877), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [sym_nil] = ACTIONS(1877), + [anon_sym_QMARK_DOT] = ACTIONS(1877), + [anon_sym_POUND_LBRACK] = ACTIONS(1877), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_DOLLARif] = ACTIONS(1877), + [anon_sym_DOLLARelse] = ACTIONS(1877), + [anon_sym_is] = ACTIONS(1877), + [anon_sym_BANGis] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_BANGin] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1877), + [anon_sym_select] = ACTIONS(1877), + [anon_sym_STAR_EQ] = ACTIONS(1877), + [anon_sym_SLASH_EQ] = ACTIONS(1877), + [anon_sym_PERCENT_EQ] = ACTIONS(1877), + [anon_sym_LT_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_GT_EQ] = ACTIONS(1877), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1877), + [anon_sym_AMP_EQ] = ACTIONS(1877), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1877), + [anon_sym_PLUS_EQ] = ACTIONS(1877), + [anon_sym_DASH_EQ] = ACTIONS(1877), + [anon_sym_PIPE_EQ] = ACTIONS(1877), + [anon_sym_CARET_EQ] = ACTIONS(1877), + [anon_sym_COLON_EQ] = ACTIONS(1877), + [anon_sym_lock] = ACTIONS(1877), + [anon_sym_rlock] = ACTIONS(1877), + [anon_sym_unsafe] = ACTIONS(1877), + [anon_sym_sql] = ACTIONS(1877), + [sym_int_literal] = ACTIONS(1877), + [sym_float_literal] = ACTIONS(1877), + [sym_rune_literal] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_c_SQUOTE] = ACTIONS(1877), + [anon_sym_c_DQUOTE] = ACTIONS(1877), + [anon_sym_r_SQUOTE] = ACTIONS(1877), + [anon_sym_r_DQUOTE] = ACTIONS(1877), + [sym_pseudo_compile_time_identifier] = ACTIONS(1877), + [anon_sym_shared] = ACTIONS(1877), + [anon_sym_map_LBRACK] = ACTIONS(1877), + [anon_sym_chan] = ACTIONS(1877), + [anon_sym_thread] = ACTIONS(1877), + [anon_sym_atomic] = ACTIONS(1877), + [anon_sym_assert] = ACTIONS(1877), + [anon_sym_defer] = ACTIONS(1877), + [anon_sym_goto] = ACTIONS(1877), + [anon_sym_break] = ACTIONS(1877), + [anon_sym_continue] = ACTIONS(1877), + [anon_sym_return] = ACTIONS(1877), + [anon_sym_DOLLARfor] = ACTIONS(1877), + [anon_sym_for] = ACTIONS(1877), + [anon_sym_POUND] = ACTIONS(1877), + [anon_sym_asm] = ACTIONS(1877), + [anon_sym_AT_LBRACK] = ACTIONS(1877), }, [254] = { [sym_line_comment] = STATE(254), [sym_block_comment] = STATE(254), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(250), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1875), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -52327,114 +52622,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [255] = { [sym_line_comment] = STATE(255), [sym_block_comment] = STATE(255), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(294), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -52444,114 +52739,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [256] = { [sym_line_comment] = STATE(256), [sym_block_comment] = STATE(256), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4096), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_block] = STATE(2630), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4314), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_block] = STATE(2920), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -52561,231 +52856,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [257] = { [sym_line_comment] = STATE(257), [sym_block_comment] = STATE(257), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4237), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_block] = STATE(1696), - [sym_identifier] = ACTIONS(1811), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(1885), + [sym_identifier] = ACTIONS(1887), + [anon_sym_LF] = ACTIONS(1887), + [anon_sym_CR] = ACTIONS(1887), + [anon_sym_CR_LF] = ACTIONS(1887), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1887), + [anon_sym_as] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_COMMA] = ACTIONS(1887), + [anon_sym_const] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_EQ] = ACTIONS(1887), + [anon_sym___global] = ACTIONS(1887), + [anon_sym_type] = ACTIONS(1887), + [anon_sym_fn] = ACTIONS(1887), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1887), + [anon_sym_SLASH] = ACTIONS(1887), + [anon_sym_PERCENT] = ACTIONS(1887), + [anon_sym_LT] = ACTIONS(1887), + [anon_sym_GT] = ACTIONS(1887), + [anon_sym_EQ_EQ] = ACTIONS(1887), + [anon_sym_BANG_EQ] = ACTIONS(1887), + [anon_sym_LT_EQ] = ACTIONS(1887), + [anon_sym_GT_EQ] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_struct] = ACTIONS(1887), + [anon_sym_union] = ACTIONS(1887), + [anon_sym_pub] = ACTIONS(1887), + [anon_sym_mut] = ACTIONS(1887), + [anon_sym_COLON] = ACTIONS(1895), + [anon_sym_enum] = ACTIONS(1887), + [anon_sym_interface] = ACTIONS(1887), + [anon_sym_PLUS_PLUS] = ACTIONS(1887), + [anon_sym_DASH_DASH] = ACTIONS(1887), + [anon_sym_QMARK] = ACTIONS(1887), + [anon_sym_BANG] = ACTIONS(1887), + [anon_sym_go] = ACTIONS(1887), + [anon_sym_spawn] = ACTIONS(1887), + [anon_sym_json_DOTdecode] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1887), + [anon_sym_LBRACK2] = ACTIONS(1887), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_CARET] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(1887), + [anon_sym_LT_DASH] = ACTIONS(1887), + [anon_sym_LT_LT] = ACTIONS(1887), + [anon_sym_GT_GT] = ACTIONS(1887), + [anon_sym_GT_GT_GT] = ACTIONS(1887), + [anon_sym_AMP_CARET] = ACTIONS(1887), + [anon_sym_AMP_AMP] = ACTIONS(1887), + [anon_sym_PIPE_PIPE] = ACTIONS(1887), + [anon_sym_or] = ACTIONS(1887), + [sym_none] = ACTIONS(1887), + [sym_true] = ACTIONS(1887), + [sym_false] = ACTIONS(1887), + [sym_nil] = ACTIONS(1887), + [anon_sym_QMARK_DOT] = ACTIONS(1887), + [anon_sym_POUND_LBRACK] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_DOLLARif] = ACTIONS(1887), + [anon_sym_is] = ACTIONS(1887), + [anon_sym_BANGis] = ACTIONS(1887), + [anon_sym_in] = ACTIONS(1887), + [anon_sym_BANGin] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_select] = ACTIONS(1887), + [anon_sym_STAR_EQ] = ACTIONS(1887), + [anon_sym_SLASH_EQ] = ACTIONS(1887), + [anon_sym_PERCENT_EQ] = ACTIONS(1887), + [anon_sym_LT_LT_EQ] = ACTIONS(1887), + [anon_sym_GT_GT_EQ] = ACTIONS(1887), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1887), + [anon_sym_AMP_EQ] = ACTIONS(1887), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1887), + [anon_sym_PLUS_EQ] = ACTIONS(1887), + [anon_sym_DASH_EQ] = ACTIONS(1887), + [anon_sym_PIPE_EQ] = ACTIONS(1887), + [anon_sym_CARET_EQ] = ACTIONS(1887), + [anon_sym_COLON_EQ] = ACTIONS(1887), + [anon_sym_lock] = ACTIONS(1887), + [anon_sym_rlock] = ACTIONS(1887), + [anon_sym_unsafe] = ACTIONS(1887), + [anon_sym_sql] = ACTIONS(1887), + [sym_int_literal] = ACTIONS(1887), + [sym_float_literal] = ACTIONS(1887), + [sym_rune_literal] = ACTIONS(1887), + [anon_sym_SQUOTE] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(1887), + [anon_sym_c_SQUOTE] = ACTIONS(1887), + [anon_sym_c_DQUOTE] = ACTIONS(1887), + [anon_sym_r_SQUOTE] = ACTIONS(1887), + [anon_sym_r_DQUOTE] = ACTIONS(1887), + [sym_pseudo_compile_time_identifier] = ACTIONS(1887), + [anon_sym_shared] = ACTIONS(1887), + [anon_sym_map_LBRACK] = ACTIONS(1887), + [anon_sym_chan] = ACTIONS(1887), + [anon_sym_thread] = ACTIONS(1887), + [anon_sym_atomic] = ACTIONS(1887), + [anon_sym_assert] = ACTIONS(1887), + [anon_sym_defer] = ACTIONS(1887), + [anon_sym_goto] = ACTIONS(1887), + [anon_sym_break] = ACTIONS(1887), + [anon_sym_continue] = ACTIONS(1887), + [anon_sym_return] = ACTIONS(1887), + [anon_sym_DOLLARfor] = ACTIONS(1887), + [anon_sym_for] = ACTIONS(1887), + [anon_sym_POUND] = ACTIONS(1887), + [anon_sym_asm] = ACTIONS(1887), + [anon_sym_AT_LBRACK] = ACTIONS(1887), }, [258] = { [sym_line_comment] = STATE(258), [sym_block_comment] = STATE(258), - [sym__expression] = STATE(2335), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(582), - [sym_mutable_expression] = STATE(3787), - [sym_expression_list] = STATE(4409), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_var_declaration] = STATE(4159), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(294), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -52795,114 +53090,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [259] = { [sym_line_comment] = STATE(259), [sym_block_comment] = STATE(259), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4050), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_block] = STATE(1197), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(294), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1883), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -52912,114 +53207,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [260] = { [sym_line_comment] = STATE(260), [sym_block_comment] = STATE(260), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4280), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_block] = STATE(2210), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1901), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -53029,348 +53324,348 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [261] = { [sym_line_comment] = STATE(261), [sym_block_comment] = STATE(261), - [sym__expression] = STATE(2388), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2614), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(582), - [sym_mutable_expression] = STATE(3787), - [sym_expression_list] = STATE(4409), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_var_declaration] = STATE(4078), - [sym_identifier] = ACTIONS(1811), + [ts_builtin_sym_end] = ACTIONS(1875), + [sym_identifier] = ACTIONS(1877), + [anon_sym_LF] = ACTIONS(1877), + [anon_sym_CR] = ACTIONS(1877), + [anon_sym_CR_LF] = ACTIONS(1877), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1877), + [anon_sym_as] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_const] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_EQ] = ACTIONS(1877), + [anon_sym___global] = ACTIONS(1877), + [anon_sym_type] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1877), + [anon_sym_union] = ACTIONS(1877), + [anon_sym_pub] = ACTIONS(1877), + [anon_sym_mut] = ACTIONS(1877), + [anon_sym_enum] = ACTIONS(1877), + [anon_sym_interface] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_QMARK] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_go] = ACTIONS(1877), + [anon_sym_spawn] = ACTIONS(1877), + [anon_sym_json_DOTdecode] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_LBRACK2] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT] = ACTIONS(1877), + [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(1877), + [sym_none] = ACTIONS(1877), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [sym_nil] = ACTIONS(1877), + [anon_sym_QMARK_DOT] = ACTIONS(1877), + [anon_sym_POUND_LBRACK] = ACTIONS(1877), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_else] = ACTIONS(1877), + [anon_sym_DOLLARif] = ACTIONS(1877), + [anon_sym_is] = ACTIONS(1877), + [anon_sym_BANGis] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_BANGin] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1877), + [anon_sym_select] = ACTIONS(1877), + [anon_sym_STAR_EQ] = ACTIONS(1877), + [anon_sym_SLASH_EQ] = ACTIONS(1877), + [anon_sym_PERCENT_EQ] = ACTIONS(1877), + [anon_sym_LT_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_GT_EQ] = ACTIONS(1877), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1877), + [anon_sym_AMP_EQ] = ACTIONS(1877), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1877), + [anon_sym_PLUS_EQ] = ACTIONS(1877), + [anon_sym_DASH_EQ] = ACTIONS(1877), + [anon_sym_PIPE_EQ] = ACTIONS(1877), + [anon_sym_CARET_EQ] = ACTIONS(1877), + [anon_sym_COLON_EQ] = ACTIONS(1877), + [anon_sym_lock] = ACTIONS(1877), + [anon_sym_rlock] = ACTIONS(1877), + [anon_sym_unsafe] = ACTIONS(1877), + [anon_sym_sql] = ACTIONS(1877), + [sym_int_literal] = ACTIONS(1877), + [sym_float_literal] = ACTIONS(1877), + [sym_rune_literal] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_c_SQUOTE] = ACTIONS(1877), + [anon_sym_c_DQUOTE] = ACTIONS(1877), + [anon_sym_r_SQUOTE] = ACTIONS(1877), + [anon_sym_r_DQUOTE] = ACTIONS(1877), + [sym_pseudo_compile_time_identifier] = ACTIONS(1877), + [anon_sym_shared] = ACTIONS(1877), + [anon_sym_map_LBRACK] = ACTIONS(1877), + [anon_sym_chan] = ACTIONS(1877), + [anon_sym_thread] = ACTIONS(1877), + [anon_sym_atomic] = ACTIONS(1877), + [anon_sym_assert] = ACTIONS(1877), + [anon_sym_defer] = ACTIONS(1877), + [anon_sym_goto] = ACTIONS(1877), + [anon_sym_break] = ACTIONS(1877), + [anon_sym_continue] = ACTIONS(1877), + [anon_sym_return] = ACTIONS(1877), + [anon_sym_DOLLARfor] = ACTIONS(1877), + [anon_sym_for] = ACTIONS(1877), + [anon_sym_POUND] = ACTIONS(1877), + [anon_sym_asm] = ACTIONS(1877), + [anon_sym_AT_LBRACK] = ACTIONS(1877), + }, + [262] = { + [sym_line_comment] = STATE(262), + [sym_block_comment] = STATE(262), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(295), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [262] = { - [sym_line_comment] = STATE(262), - [sym_block_comment] = STATE(262), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1889), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_EQ] = ACTIONS(1889), - [anon_sym___global] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_PERCENT] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), - [anon_sym_LBRACK2] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(1889), - [anon_sym_GT_GT] = ACTIONS(1889), - [anon_sym_GT_GT_GT] = ACTIONS(1889), - [anon_sym_AMP_CARET] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(1889), - [anon_sym_POUND_LBRACK] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_DOLLARelse] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_STAR_EQ] = ACTIONS(1889), - [anon_sym_SLASH_EQ] = ACTIONS(1889), - [anon_sym_PERCENT_EQ] = ACTIONS(1889), - [anon_sym_LT_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_GT_EQ] = ACTIONS(1889), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1889), - [anon_sym_AMP_EQ] = ACTIONS(1889), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1889), - [anon_sym_PLUS_EQ] = ACTIONS(1889), - [anon_sym_DASH_EQ] = ACTIONS(1889), - [anon_sym_PIPE_EQ] = ACTIONS(1889), - [anon_sym_CARET_EQ] = ACTIONS(1889), - [anon_sym_COLON_EQ] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [anon_sym_SQUOTE] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1889), - [anon_sym_c_SQUOTE] = ACTIONS(1889), - [anon_sym_c_DQUOTE] = ACTIONS(1889), - [anon_sym_r_SQUOTE] = ACTIONS(1889), - [anon_sym_r_DQUOTE] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [anon_sym_assert] = ACTIONS(1889), - [anon_sym_defer] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_DOLLARfor] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_asm] = ACTIONS(1889), - [anon_sym_AT_LBRACK] = ACTIONS(1889), - }, [263] = { [sym_line_comment] = STATE(263), [sym_block_comment] = STATE(263), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2392), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(853), + [sym_mutable_expression] = STATE(3865), + [sym_expression_list] = STATE(4586), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_var_declaration] = STATE(4367), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -53380,231 +53675,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [264] = { [sym_line_comment] = STATE(264), [sym_block_comment] = STATE(264), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1889), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_EQ] = ACTIONS(1889), - [anon_sym___global] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_PERCENT] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), - [anon_sym_LBRACK2] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(1889), - [anon_sym_GT_GT] = ACTIONS(1889), - [anon_sym_GT_GT_GT] = ACTIONS(1889), - [anon_sym_AMP_CARET] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(1889), - [anon_sym_POUND_LBRACK] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_else] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_STAR_EQ] = ACTIONS(1889), - [anon_sym_SLASH_EQ] = ACTIONS(1889), - [anon_sym_PERCENT_EQ] = ACTIONS(1889), - [anon_sym_LT_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_GT_EQ] = ACTIONS(1889), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1889), - [anon_sym_AMP_EQ] = ACTIONS(1889), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1889), - [anon_sym_PLUS_EQ] = ACTIONS(1889), - [anon_sym_DASH_EQ] = ACTIONS(1889), - [anon_sym_PIPE_EQ] = ACTIONS(1889), - [anon_sym_CARET_EQ] = ACTIONS(1889), - [anon_sym_COLON_EQ] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [anon_sym_SQUOTE] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1889), - [anon_sym_c_SQUOTE] = ACTIONS(1889), - [anon_sym_c_DQUOTE] = ACTIONS(1889), - [anon_sym_r_SQUOTE] = ACTIONS(1889), - [anon_sym_r_DQUOTE] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [anon_sym_assert] = ACTIONS(1889), - [anon_sym_defer] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_DOLLARfor] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_asm] = ACTIONS(1889), - [anon_sym_AT_LBRACK] = ACTIONS(1889), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4221), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_block] = STATE(994), + [sym_identifier] = ACTIONS(1807), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1905), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [265] = { [sym_line_comment] = STATE(265), [sym_block_comment] = STATE(265), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4155), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_block] = STATE(2333), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(278), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -53614,114 +53909,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [266] = { [sym_line_comment] = STATE(266), [sym_block_comment] = STATE(266), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4096), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_block] = STATE(2630), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(303), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1895), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1909), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -53731,231 +54026,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [267] = { [sym_line_comment] = STATE(267), [sym_block_comment] = STATE(267), - [sym_type_parameters] = STATE(324), - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [anon_sym_LF] = ACTIONS(1899), - [anon_sym_CR] = ACTIONS(1899), - [anon_sym_CR_LF] = ACTIONS(1899), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1899), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_EQ] = ACTIONS(1899), - [anon_sym___global] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_fn] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_union] = ACTIONS(1899), - [anon_sym_pub] = ACTIONS(1899), - [anon_sym_mut] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [anon_sym_interface] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [anon_sym_QMARK] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_go] = ACTIONS(1899), - [anon_sym_spawn] = ACTIONS(1899), - [anon_sym_json_DOTdecode] = ACTIONS(1899), - [anon_sym_LBRACK2] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_LT_DASH] = ACTIONS(1899), - [anon_sym_LT_LT] = ACTIONS(1899), - [anon_sym_GT_GT] = ACTIONS(1899), - [anon_sym_GT_GT_GT] = ACTIONS(1899), - [anon_sym_AMP_CARET] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_or] = ACTIONS(1899), - [sym_none] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_nil] = ACTIONS(1899), - [anon_sym_QMARK_DOT] = ACTIONS(1899), - [anon_sym_POUND_LBRACK] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_DOLLARif] = ACTIONS(1899), - [anon_sym_is] = ACTIONS(1899), - [anon_sym_BANGis] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_BANGin] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_select] = ACTIONS(1899), - [anon_sym_STAR_EQ] = ACTIONS(1899), - [anon_sym_SLASH_EQ] = ACTIONS(1899), - [anon_sym_PERCENT_EQ] = ACTIONS(1899), - [anon_sym_LT_LT_EQ] = ACTIONS(1899), - [anon_sym_GT_GT_EQ] = ACTIONS(1899), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1899), - [anon_sym_AMP_EQ] = ACTIONS(1899), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1899), - [anon_sym_PLUS_EQ] = ACTIONS(1899), - [anon_sym_DASH_EQ] = ACTIONS(1899), - [anon_sym_PIPE_EQ] = ACTIONS(1899), - [anon_sym_CARET_EQ] = ACTIONS(1899), - [anon_sym_COLON_EQ] = ACTIONS(1899), - [anon_sym_lock] = ACTIONS(1899), - [anon_sym_rlock] = ACTIONS(1899), - [anon_sym_unsafe] = ACTIONS(1899), - [anon_sym_sql] = ACTIONS(1899), - [sym_int_literal] = ACTIONS(1899), - [sym_float_literal] = ACTIONS(1899), - [sym_rune_literal] = ACTIONS(1899), - [anon_sym_SQUOTE] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1899), - [anon_sym_c_SQUOTE] = ACTIONS(1899), - [anon_sym_c_DQUOTE] = ACTIONS(1899), - [anon_sym_r_SQUOTE] = ACTIONS(1899), - [anon_sym_r_DQUOTE] = ACTIONS(1899), - [sym_pseudo_compile_time_identifier] = ACTIONS(1899), - [anon_sym_shared] = ACTIONS(1899), - [anon_sym_map_LBRACK] = ACTIONS(1899), - [anon_sym_chan] = ACTIONS(1899), - [anon_sym_thread] = ACTIONS(1899), - [anon_sym_atomic] = ACTIONS(1899), - [anon_sym_assert] = ACTIONS(1899), - [anon_sym_defer] = ACTIONS(1899), - [anon_sym_goto] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_DOLLARfor] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_POUND] = ACTIONS(1899), - [anon_sym_asm] = ACTIONS(1899), - [anon_sym_AT_LBRACK] = ACTIONS(1899), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(272), + [sym_identifier] = ACTIONS(1424), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [268] = { [sym_line_comment] = STATE(268), [sym_block_comment] = STATE(268), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(294), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1913), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -53965,114 +54260,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [269] = { [sym_line_comment] = STATE(269), [sym_block_comment] = STATE(269), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4155), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_block] = STATE(2333), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(258), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1915), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -54082,114 +54377,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [270] = { [sym_line_comment] = STATE(270), [sym_block_comment] = STATE(270), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4096), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_block] = STATE(2630), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4221), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_block] = STATE(994), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1917), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -54199,231 +54494,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [271] = { [sym_line_comment] = STATE(271), [sym_block_comment] = STATE(271), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1907), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4366), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_block] = STATE(1337), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1910), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1916), - [anon_sym_LPAREN] = ACTIONS(1918), - [anon_sym_fn] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1924), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_struct] = ACTIONS(1930), - [anon_sym_mut] = ACTIONS(1933), - [anon_sym_QMARK] = ACTIONS(1936), - [anon_sym_BANG] = ACTIONS(1939), - [anon_sym_go] = ACTIONS(1942), - [anon_sym_spawn] = ACTIONS(1945), - [anon_sym_json_DOTdecode] = ACTIONS(1948), - [anon_sym_LBRACK2] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1924), - [anon_sym_CARET] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1954), - [anon_sym_LT_DASH] = ACTIONS(1957), - [sym_none] = ACTIONS(1960), - [sym_true] = ACTIONS(1960), - [sym_false] = ACTIONS(1960), - [sym_nil] = ACTIONS(1960), - [anon_sym_if] = ACTIONS(1963), - [anon_sym_DOLLARif] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1969), - [anon_sym_select] = ACTIONS(1972), - [anon_sym_lock] = ACTIONS(1975), - [anon_sym_rlock] = ACTIONS(1975), - [anon_sym_unsafe] = ACTIONS(1978), - [anon_sym_sql] = ACTIONS(1981), - [sym_int_literal] = ACTIONS(1960), - [sym_float_literal] = ACTIONS(1984), - [sym_rune_literal] = ACTIONS(1984), - [anon_sym_SQUOTE] = ACTIONS(1987), - [anon_sym_DQUOTE] = ACTIONS(1990), - [anon_sym_c_SQUOTE] = ACTIONS(1993), - [anon_sym_c_DQUOTE] = ACTIONS(1996), - [anon_sym_r_SQUOTE] = ACTIONS(1999), - [anon_sym_r_DQUOTE] = ACTIONS(2002), - [sym_pseudo_compile_time_identifier] = ACTIONS(2005), - [anon_sym_shared] = ACTIONS(2008), - [anon_sym_map_LBRACK] = ACTIONS(2011), - [anon_sym_chan] = ACTIONS(2014), - [anon_sym_thread] = ACTIONS(2017), - [anon_sym_atomic] = ACTIONS(2020), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [272] = { [sym_line_comment] = STATE(272), [sym_block_comment] = STATE(272), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4126), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_block] = STATE(2852), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(294), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -54433,114 +54728,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [273] = { [sym_line_comment] = STATE(273), [sym_block_comment] = STATE(273), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2425), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(853), + [sym_mutable_expression] = STATE(3865), + [sym_expression_list] = STATE(4586), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_var_declaration] = STATE(4192), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(2025), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -54550,114 +54845,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [274] = { [sym_line_comment] = STATE(274), [sym_block_comment] = STATE(274), - [sym__expression] = STATE(2378), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(582), - [sym_mutable_expression] = STATE(3787), - [sym_expression_list] = STATE(4409), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_var_declaration] = STATE(4258), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4180), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_block] = STATE(1216), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -54667,114 +54962,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [275] = { [sym_line_comment] = STATE(275), [sym_block_comment] = STATE(275), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2407), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(853), + [sym_mutable_expression] = STATE(3865), + [sym_expression_list] = STATE(4586), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_var_declaration] = STATE(4212), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(2027), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -54784,114 +55079,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [276] = { [sym_line_comment] = STATE(276), [sym_block_comment] = STATE(276), - [sym__expression] = STATE(2388), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(582), - [sym_mutable_expression] = STATE(3787), - [sym_expression_list] = STATE(4409), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_var_declaration] = STATE(4078), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4299), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_block] = STATE(2355), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1925), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -54901,231 +55196,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [277] = { [sym_line_comment] = STATE(277), [sym_block_comment] = STATE(277), - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_LF] = ACTIONS(1809), - [anon_sym_CR] = ACTIONS(1809), - [anon_sym_CR_LF] = ACTIONS(1809), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2029), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_as] = ACTIONS(2029), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(2029), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_EQ] = ACTIONS(2029), - [anon_sym___global] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(2029), - [anon_sym_fn] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(2029), - [anon_sym_PERCENT] = ACTIONS(2029), - [anon_sym_LT] = ACTIONS(2029), - [anon_sym_GT] = ACTIONS(2029), - [anon_sym_EQ_EQ] = ACTIONS(2029), - [anon_sym_BANG_EQ] = ACTIONS(2029), - [anon_sym_LT_EQ] = ACTIONS(2029), - [anon_sym_GT_EQ] = ACTIONS(2029), - [anon_sym_LBRACK] = ACTIONS(2031), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_pub] = ACTIONS(1809), - [anon_sym_mut] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_interface] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1809), - [anon_sym_json_DOTdecode] = ACTIONS(1809), - [anon_sym_LBRACK2] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_LT_DASH] = ACTIONS(1809), - [anon_sym_LT_LT] = ACTIONS(2029), - [anon_sym_GT_GT] = ACTIONS(2029), - [anon_sym_GT_GT_GT] = ACTIONS(2029), - [anon_sym_AMP_CARET] = ACTIONS(2029), - [anon_sym_AMP_AMP] = ACTIONS(2029), - [anon_sym_PIPE_PIPE] = ACTIONS(2029), - [anon_sym_or] = ACTIONS(2029), - [sym_none] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_nil] = ACTIONS(1809), - [anon_sym_QMARK_DOT] = ACTIONS(2029), - [anon_sym_POUND_LBRACK] = ACTIONS(2029), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_DOLLARif] = ACTIONS(1809), - [anon_sym_is] = ACTIONS(2029), - [anon_sym_BANGis] = ACTIONS(2029), - [anon_sym_in] = ACTIONS(2029), - [anon_sym_BANGin] = ACTIONS(2029), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_select] = ACTIONS(1809), - [anon_sym_STAR_EQ] = ACTIONS(2029), - [anon_sym_SLASH_EQ] = ACTIONS(2029), - [anon_sym_PERCENT_EQ] = ACTIONS(2029), - [anon_sym_LT_LT_EQ] = ACTIONS(2029), - [anon_sym_GT_GT_EQ] = ACTIONS(2029), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2029), - [anon_sym_AMP_EQ] = ACTIONS(2029), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2029), - [anon_sym_PLUS_EQ] = ACTIONS(2029), - [anon_sym_DASH_EQ] = ACTIONS(2029), - [anon_sym_PIPE_EQ] = ACTIONS(2029), - [anon_sym_CARET_EQ] = ACTIONS(2029), - [anon_sym_COLON_EQ] = ACTIONS(2029), - [anon_sym_lock] = ACTIONS(1809), - [anon_sym_rlock] = ACTIONS(1809), - [anon_sym_unsafe] = ACTIONS(1809), - [anon_sym_sql] = ACTIONS(1809), - [sym_int_literal] = ACTIONS(1809), - [sym_float_literal] = ACTIONS(1809), - [sym_rune_literal] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1809), - [anon_sym_c_SQUOTE] = ACTIONS(1809), - [anon_sym_c_DQUOTE] = ACTIONS(1809), - [anon_sym_r_SQUOTE] = ACTIONS(1809), - [anon_sym_r_DQUOTE] = ACTIONS(1809), - [sym_pseudo_compile_time_identifier] = ACTIONS(1809), - [anon_sym_shared] = ACTIONS(1809), - [anon_sym_map_LBRACK] = ACTIONS(1809), - [anon_sym_chan] = ACTIONS(1809), - [anon_sym_thread] = ACTIONS(1809), - [anon_sym_atomic] = ACTIONS(1809), - [anon_sym_assert] = ACTIONS(1809), - [anon_sym_defer] = ACTIONS(1809), - [anon_sym_goto] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_DOLLARfor] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_POUND] = ACTIONS(1809), - [anon_sym_asm] = ACTIONS(1809), - [anon_sym_AT_LBRACK] = ACTIONS(1809), + [sym__expression] = STATE(2370), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(853), + [sym_mutable_expression] = STATE(3865), + [sym_expression_list] = STATE(4586), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_var_declaration] = STATE(4257), + [sym_identifier] = ACTIONS(1807), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [278] = { [sym_line_comment] = STATE(278), [sym_block_comment] = STATE(278), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(294), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(2033), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -55135,114 +55430,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [279] = { [sym_line_comment] = STATE(279), [sym_block_comment] = STATE(279), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4247), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_block] = STATE(474), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -55252,114 +55547,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [280] = { [sym_line_comment] = STATE(280), [sym_block_comment] = STATE(280), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4018), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_block] = STATE(1992), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4070), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_block] = STATE(2083), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(2037), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -55369,231 +55664,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [281] = { [sym_line_comment] = STATE(281), [sym_block_comment] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(2039), - [sym_identifier] = ACTIONS(2041), - [anon_sym_LF] = ACTIONS(2041), - [anon_sym_CR] = ACTIONS(2041), - [anon_sym_CR_LF] = ACTIONS(2041), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2041), - [anon_sym_as] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(2041), - [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_EQ] = ACTIONS(2041), - [anon_sym___global] = ACTIONS(2041), - [anon_sym_type] = ACTIONS(2041), - [anon_sym_PIPE] = ACTIONS(2041), - [anon_sym_fn] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2041), - [anon_sym_SLASH] = ACTIONS(2041), - [anon_sym_PERCENT] = ACTIONS(2041), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_GT] = ACTIONS(2041), - [anon_sym_EQ_EQ] = ACTIONS(2041), - [anon_sym_BANG_EQ] = ACTIONS(2041), - [anon_sym_LT_EQ] = ACTIONS(2041), - [anon_sym_GT_EQ] = ACTIONS(2041), - [anon_sym_LBRACK] = ACTIONS(2039), - [anon_sym_struct] = ACTIONS(2041), - [anon_sym_union] = ACTIONS(2041), - [anon_sym_pub] = ACTIONS(2041), - [anon_sym_mut] = ACTIONS(2041), - [anon_sym_enum] = ACTIONS(2041), - [anon_sym_interface] = ACTIONS(2041), - [anon_sym_PLUS_PLUS] = ACTIONS(2041), - [anon_sym_DASH_DASH] = ACTIONS(2041), - [anon_sym_QMARK] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(2041), - [anon_sym_go] = ACTIONS(2041), - [anon_sym_spawn] = ACTIONS(2041), - [anon_sym_json_DOTdecode] = ACTIONS(2041), - [anon_sym_LBRACK2] = ACTIONS(2041), - [anon_sym_TILDE] = ACTIONS(2041), - [anon_sym_CARET] = ACTIONS(2041), - [anon_sym_AMP] = ACTIONS(2041), - [anon_sym_LT_DASH] = ACTIONS(2041), - [anon_sym_LT_LT] = ACTIONS(2041), - [anon_sym_GT_GT] = ACTIONS(2041), - [anon_sym_GT_GT_GT] = ACTIONS(2041), - [anon_sym_AMP_CARET] = ACTIONS(2041), - [anon_sym_AMP_AMP] = ACTIONS(2041), - [anon_sym_PIPE_PIPE] = ACTIONS(2041), - [anon_sym_or] = ACTIONS(2041), - [sym_none] = ACTIONS(2041), - [sym_true] = ACTIONS(2041), - [sym_false] = ACTIONS(2041), - [sym_nil] = ACTIONS(2041), - [anon_sym_QMARK_DOT] = ACTIONS(2041), - [anon_sym_POUND_LBRACK] = ACTIONS(2041), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_DOLLARif] = ACTIONS(2041), - [anon_sym_DOLLARelse] = ACTIONS(2043), - [anon_sym_is] = ACTIONS(2041), - [anon_sym_BANGis] = ACTIONS(2041), - [anon_sym_in] = ACTIONS(2041), - [anon_sym_BANGin] = ACTIONS(2041), - [anon_sym_match] = ACTIONS(2041), - [anon_sym_select] = ACTIONS(2041), - [anon_sym_STAR_EQ] = ACTIONS(2041), - [anon_sym_SLASH_EQ] = ACTIONS(2041), - [anon_sym_PERCENT_EQ] = ACTIONS(2041), - [anon_sym_LT_LT_EQ] = ACTIONS(2041), - [anon_sym_GT_GT_EQ] = ACTIONS(2041), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2041), - [anon_sym_AMP_EQ] = ACTIONS(2041), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2041), - [anon_sym_PLUS_EQ] = ACTIONS(2041), - [anon_sym_DASH_EQ] = ACTIONS(2041), - [anon_sym_PIPE_EQ] = ACTIONS(2041), - [anon_sym_CARET_EQ] = ACTIONS(2041), - [anon_sym_COLON_EQ] = ACTIONS(2041), - [anon_sym_lock] = ACTIONS(2041), - [anon_sym_rlock] = ACTIONS(2041), - [anon_sym_unsafe] = ACTIONS(2041), - [anon_sym_sql] = ACTIONS(2041), - [sym_int_literal] = ACTIONS(2041), - [sym_float_literal] = ACTIONS(2041), - [sym_rune_literal] = ACTIONS(2041), - [anon_sym_SQUOTE] = ACTIONS(2041), - [anon_sym_DQUOTE] = ACTIONS(2041), - [anon_sym_c_SQUOTE] = ACTIONS(2041), - [anon_sym_c_DQUOTE] = ACTIONS(2041), - [anon_sym_r_SQUOTE] = ACTIONS(2041), - [anon_sym_r_DQUOTE] = ACTIONS(2041), - [sym_pseudo_compile_time_identifier] = ACTIONS(2041), - [anon_sym_shared] = ACTIONS(2041), - [anon_sym_map_LBRACK] = ACTIONS(2041), - [anon_sym_chan] = ACTIONS(2041), - [anon_sym_thread] = ACTIONS(2041), - [anon_sym_atomic] = ACTIONS(2041), - [anon_sym_assert] = ACTIONS(2041), - [anon_sym_defer] = ACTIONS(2041), - [anon_sym_goto] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_DOLLARfor] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(2041), - [anon_sym_asm] = ACTIONS(2041), - [anon_sym_AT_LBRACK] = ACTIONS(2041), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(294), + [sym_identifier] = ACTIONS(1424), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1933), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [282] = { [sym_line_comment] = STATE(282), [sym_block_comment] = STATE(282), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4275), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_block] = STATE(1829), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(281), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -55603,114 +55898,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [283] = { [sym_line_comment] = STATE(283), [sym_block_comment] = STATE(283), - [sym__expression] = STATE(2323), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(582), - [sym_mutable_expression] = STATE(3787), - [sym_expression_list] = STATE(4409), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_var_declaration] = STATE(4195), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2392), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2621), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(853), + [sym_mutable_expression] = STATE(3865), + [sym_expression_list] = STATE(4586), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_var_declaration] = STATE(4367), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -55720,114 +56015,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [284] = { [sym_line_comment] = STATE(284), [sym_block_comment] = STATE(284), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(268), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(294), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1937), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -55837,114 +56132,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [285] = { [sym_line_comment] = STATE(285), [sym_block_comment] = STATE(285), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4075), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_block] = STATE(1046), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4366), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_block] = STATE(1337), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1939), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -55954,114 +56249,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [286] = { [sym_line_comment] = STATE(286), [sym_block_comment] = STATE(286), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4280), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_block] = STATE(2210), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -56071,348 +56366,348 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [287] = { [sym_line_comment] = STATE(287), [sym_block_comment] = STATE(287), - [sym__expression] = STATE(2391), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(582), - [sym_mutable_expression] = STATE(3787), - [sym_expression_list] = STATE(4409), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_var_declaration] = STATE(4238), - [sym_identifier] = ACTIONS(1811), + [sym_type_parameters] = STATE(441), + [ts_builtin_sym_end] = ACTIONS(1943), + [sym_identifier] = ACTIONS(1945), + [anon_sym_LF] = ACTIONS(1945), + [anon_sym_CR] = ACTIONS(1945), + [anon_sym_CR_LF] = ACTIONS(1945), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1945), + [anon_sym_as] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1945), + [anon_sym_COMMA] = ACTIONS(1945), + [anon_sym_const] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_EQ] = ACTIONS(1945), + [anon_sym___global] = ACTIONS(1945), + [anon_sym_type] = ACTIONS(1945), + [anon_sym_fn] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1945), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_SLASH] = ACTIONS(1945), + [anon_sym_PERCENT] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1945), + [anon_sym_GT] = ACTIONS(1945), + [anon_sym_EQ_EQ] = ACTIONS(1945), + [anon_sym_BANG_EQ] = ACTIONS(1945), + [anon_sym_LT_EQ] = ACTIONS(1945), + [anon_sym_GT_EQ] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1943), + [anon_sym_struct] = ACTIONS(1945), + [anon_sym_union] = ACTIONS(1945), + [anon_sym_pub] = ACTIONS(1945), + [anon_sym_mut] = ACTIONS(1945), + [anon_sym_enum] = ACTIONS(1945), + [anon_sym_interface] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), + [anon_sym_QMARK] = ACTIONS(1945), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_go] = ACTIONS(1945), + [anon_sym_spawn] = ACTIONS(1945), + [anon_sym_json_DOTdecode] = ACTIONS(1945), + [anon_sym_PIPE] = ACTIONS(1945), + [anon_sym_LBRACK2] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), + [anon_sym_LT_DASH] = ACTIONS(1945), + [anon_sym_LT_LT] = ACTIONS(1945), + [anon_sym_GT_GT] = ACTIONS(1945), + [anon_sym_GT_GT_GT] = ACTIONS(1945), + [anon_sym_AMP_CARET] = ACTIONS(1945), + [anon_sym_AMP_AMP] = ACTIONS(1945), + [anon_sym_PIPE_PIPE] = ACTIONS(1945), + [anon_sym_or] = ACTIONS(1945), + [sym_none] = ACTIONS(1945), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_nil] = ACTIONS(1945), + [anon_sym_QMARK_DOT] = ACTIONS(1945), + [anon_sym_POUND_LBRACK] = ACTIONS(1945), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_DOLLARif] = ACTIONS(1945), + [anon_sym_is] = ACTIONS(1945), + [anon_sym_BANGis] = ACTIONS(1945), + [anon_sym_in] = ACTIONS(1945), + [anon_sym_BANGin] = ACTIONS(1945), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_select] = ACTIONS(1945), + [anon_sym_STAR_EQ] = ACTIONS(1945), + [anon_sym_SLASH_EQ] = ACTIONS(1945), + [anon_sym_PERCENT_EQ] = ACTIONS(1945), + [anon_sym_LT_LT_EQ] = ACTIONS(1945), + [anon_sym_GT_GT_EQ] = ACTIONS(1945), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1945), + [anon_sym_AMP_EQ] = ACTIONS(1945), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1945), + [anon_sym_PLUS_EQ] = ACTIONS(1945), + [anon_sym_DASH_EQ] = ACTIONS(1945), + [anon_sym_PIPE_EQ] = ACTIONS(1945), + [anon_sym_CARET_EQ] = ACTIONS(1945), + [anon_sym_COLON_EQ] = ACTIONS(1945), + [anon_sym_lock] = ACTIONS(1945), + [anon_sym_rlock] = ACTIONS(1945), + [anon_sym_unsafe] = ACTIONS(1945), + [anon_sym_sql] = ACTIONS(1945), + [sym_int_literal] = ACTIONS(1945), + [sym_float_literal] = ACTIONS(1945), + [sym_rune_literal] = ACTIONS(1945), + [anon_sym_SQUOTE] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(1945), + [anon_sym_c_SQUOTE] = ACTIONS(1945), + [anon_sym_c_DQUOTE] = ACTIONS(1945), + [anon_sym_r_SQUOTE] = ACTIONS(1945), + [anon_sym_r_DQUOTE] = ACTIONS(1945), + [sym_pseudo_compile_time_identifier] = ACTIONS(1945), + [anon_sym_shared] = ACTIONS(1945), + [anon_sym_map_LBRACK] = ACTIONS(1945), + [anon_sym_chan] = ACTIONS(1945), + [anon_sym_thread] = ACTIONS(1945), + [anon_sym_atomic] = ACTIONS(1945), + [anon_sym_assert] = ACTIONS(1945), + [anon_sym_defer] = ACTIONS(1945), + [anon_sym_goto] = ACTIONS(1945), + [anon_sym_break] = ACTIONS(1945), + [anon_sym_continue] = ACTIONS(1945), + [anon_sym_return] = ACTIONS(1945), + [anon_sym_DOLLARfor] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1945), + [anon_sym_POUND] = ACTIONS(1945), + [anon_sym_asm] = ACTIONS(1945), + [anon_sym_AT_LBRACK] = ACTIONS(1945), + }, + [288] = { + [sym_line_comment] = STATE(288), + [sym_block_comment] = STATE(288), + [sym__expression] = STATE(2400), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(853), + [sym_mutable_expression] = STATE(3865), + [sym_expression_list] = STATE(4586), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_var_declaration] = STATE(4201), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [288] = { - [sym_line_comment] = STATE(288), - [sym_block_comment] = STATE(288), - [ts_builtin_sym_end] = ACTIONS(2053), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_EQ] = ACTIONS(2055), - [anon_sym___global] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_union] = ACTIONS(2055), - [anon_sym_pub] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_COLON] = ACTIONS(2063), - [anon_sym_enum] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_QMARK] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_LBRACK2] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_AMP_CARET] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(2055), - [anon_sym_POUND_LBRACK] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_STAR_EQ] = ACTIONS(2055), - [anon_sym_SLASH_EQ] = ACTIONS(2055), - [anon_sym_PERCENT_EQ] = ACTIONS(2055), - [anon_sym_LT_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_AMP_EQ] = ACTIONS(2055), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2055), - [anon_sym_PLUS_EQ] = ACTIONS(2055), - [anon_sym_DASH_EQ] = ACTIONS(2055), - [anon_sym_PIPE_EQ] = ACTIONS(2055), - [anon_sym_CARET_EQ] = ACTIONS(2055), - [anon_sym_COLON_EQ] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), - [anon_sym_AT_LBRACK] = ACTIONS(2055), - }, [289] = { [sym_line_comment] = STATE(289), [sym_block_comment] = STATE(289), - [sym__expression] = STATE(2335), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2614), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(582), - [sym_mutable_expression] = STATE(3787), - [sym_expression_list] = STATE(4409), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_var_declaration] = STATE(4159), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -56422,114 +56717,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [290] = { [sym_line_comment] = STATE(290), [sym_block_comment] = STATE(290), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(294), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1949), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -56539,114 +56834,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [291] = { [sym_line_comment] = STATE(291), [sym_block_comment] = STATE(291), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(290), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4185), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_block] = STATE(2571), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1951), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -56656,114 +56951,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [292] = { [sym_line_comment] = STATE(292), [sym_block_comment] = STATE(292), - [sym__expression] = STATE(2295), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(582), - [sym_mutable_expression] = STATE(3787), - [sym_expression_list] = STATE(4409), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_var_declaration] = STATE(4038), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2328), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(853), + [sym_mutable_expression] = STATE(3865), + [sym_expression_list] = STATE(4586), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_var_declaration] = STATE(4266), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -56773,114 +57068,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [293] = { [sym_line_comment] = STATE(293), [sym_block_comment] = STATE(293), - [sym__expression] = STATE(2405), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(582), - [sym_mutable_expression] = STATE(3787), - [sym_expression_list] = STATE(4409), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_var_declaration] = STATE(4124), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4121), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_block] = STATE(2006), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1953), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -56890,231 +57185,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [294] = { [sym_line_comment] = STATE(294), [sym_block_comment] = STATE(294), - [sym__expression] = STATE(2408), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(582), - [sym_mutable_expression] = STATE(3787), - [sym_expression_list] = STATE(4409), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_var_declaration] = STATE(4271), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(294), + [sym_identifier] = ACTIONS(1955), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT] = ACTIONS(1958), + [anon_sym_LBRACE] = ACTIONS(1961), + [anon_sym_RBRACE] = ACTIONS(1964), + [anon_sym_LPAREN] = ACTIONS(1966), + [anon_sym_fn] = ACTIONS(1969), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1975), + [anon_sym_struct] = ACTIONS(1978), + [anon_sym_mut] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1987), + [anon_sym_go] = ACTIONS(1990), + [anon_sym_spawn] = ACTIONS(1993), + [anon_sym_json_DOTdecode] = ACTIONS(1996), + [anon_sym_LBRACK2] = ACTIONS(1999), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_CARET] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_LT_DASH] = ACTIONS(2005), + [sym_none] = ACTIONS(2008), + [sym_true] = ACTIONS(2008), + [sym_false] = ACTIONS(2008), + [sym_nil] = ACTIONS(2008), + [anon_sym_if] = ACTIONS(2011), + [anon_sym_DOLLARif] = ACTIONS(2014), + [anon_sym_match] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2020), + [anon_sym_lock] = ACTIONS(2023), + [anon_sym_rlock] = ACTIONS(2023), + [anon_sym_unsafe] = ACTIONS(2026), + [anon_sym_sql] = ACTIONS(2029), + [sym_int_literal] = ACTIONS(2008), + [sym_float_literal] = ACTIONS(2032), + [sym_rune_literal] = ACTIONS(2032), + [anon_sym_SQUOTE] = ACTIONS(2035), + [anon_sym_DQUOTE] = ACTIONS(2038), + [anon_sym_c_SQUOTE] = ACTIONS(2041), + [anon_sym_c_DQUOTE] = ACTIONS(2044), + [anon_sym_r_SQUOTE] = ACTIONS(2047), + [anon_sym_r_DQUOTE] = ACTIONS(2050), + [sym_pseudo_compile_time_identifier] = ACTIONS(2053), + [anon_sym_shared] = ACTIONS(2056), + [anon_sym_map_LBRACK] = ACTIONS(2059), + [anon_sym_chan] = ACTIONS(2062), + [anon_sym_thread] = ACTIONS(2065), + [anon_sym_atomic] = ACTIONS(2068), }, [295] = { [sym_line_comment] = STATE(295), [sym_block_comment] = STATE(295), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4125), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_block] = STATE(2252), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(294), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -57124,231 +57419,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [296] = { [sym_line_comment] = STATE(296), [sym_block_comment] = STATE(296), - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_LF] = ACTIONS(1809), - [anon_sym_CR] = ACTIONS(1809), - [anon_sym_CR_LF] = ACTIONS(1809), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_as] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_EQ] = ACTIONS(1809), - [anon_sym___global] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_fn] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_PERCENT] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_EQ_EQ] = ACTIONS(1809), - [anon_sym_BANG_EQ] = ACTIONS(1809), - [anon_sym_LT_EQ] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_pub] = ACTIONS(1809), - [anon_sym_mut] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_interface] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1809), - [anon_sym_json_DOTdecode] = ACTIONS(1809), - [anon_sym_LBRACK2] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_LT_DASH] = ACTIONS(1809), - [anon_sym_LT_LT] = ACTIONS(1809), - [anon_sym_GT_GT] = ACTIONS(1809), - [anon_sym_GT_GT_GT] = ACTIONS(1809), - [anon_sym_AMP_CARET] = ACTIONS(1809), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [anon_sym_PIPE_PIPE] = ACTIONS(1809), - [anon_sym_or] = ACTIONS(1809), - [sym_none] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_nil] = ACTIONS(1809), - [anon_sym_QMARK_DOT] = ACTIONS(1809), - [anon_sym_POUND_LBRACK] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_else] = ACTIONS(1809), - [anon_sym_DOLLARif] = ACTIONS(1809), - [anon_sym_is] = ACTIONS(1809), - [anon_sym_BANGis] = ACTIONS(1809), - [anon_sym_in] = ACTIONS(1809), - [anon_sym_BANGin] = ACTIONS(1809), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_select] = ACTIONS(1809), - [anon_sym_STAR_EQ] = ACTIONS(1809), - [anon_sym_SLASH_EQ] = ACTIONS(1809), - [anon_sym_PERCENT_EQ] = ACTIONS(1809), - [anon_sym_LT_LT_EQ] = ACTIONS(1809), - [anon_sym_GT_GT_EQ] = ACTIONS(1809), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1809), - [anon_sym_AMP_EQ] = ACTIONS(1809), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1809), - [anon_sym_PLUS_EQ] = ACTIONS(1809), - [anon_sym_DASH_EQ] = ACTIONS(1809), - [anon_sym_PIPE_EQ] = ACTIONS(1809), - [anon_sym_CARET_EQ] = ACTIONS(1809), - [anon_sym_COLON_EQ] = ACTIONS(1809), - [anon_sym_lock] = ACTIONS(1809), - [anon_sym_rlock] = ACTIONS(1809), - [anon_sym_unsafe] = ACTIONS(1809), - [anon_sym_sql] = ACTIONS(1809), - [sym_int_literal] = ACTIONS(1809), - [sym_float_literal] = ACTIONS(1809), - [sym_rune_literal] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1809), - [anon_sym_c_SQUOTE] = ACTIONS(1809), - [anon_sym_c_DQUOTE] = ACTIONS(1809), - [anon_sym_r_SQUOTE] = ACTIONS(1809), - [anon_sym_r_DQUOTE] = ACTIONS(1809), - [sym_pseudo_compile_time_identifier] = ACTIONS(1809), - [anon_sym_shared] = ACTIONS(1809), - [anon_sym_map_LBRACK] = ACTIONS(1809), - [anon_sym_chan] = ACTIONS(1809), - [anon_sym_thread] = ACTIONS(1809), - [anon_sym_atomic] = ACTIONS(1809), - [anon_sym_assert] = ACTIONS(1809), - [anon_sym_defer] = ACTIONS(1809), - [anon_sym_goto] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_DOLLARfor] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_POUND] = ACTIONS(1809), - [anon_sym_asm] = ACTIONS(1809), - [anon_sym_AT_LBRACK] = ACTIONS(1809), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(1424), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [297] = { [sym_line_comment] = STATE(297), [sym_block_comment] = STATE(297), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4241), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_block] = STATE(2814), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(2071), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -57358,114 +57653,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [298] = { [sym_line_comment] = STATE(298), [sym_block_comment] = STATE(298), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2621), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(853), + [sym_mutable_expression] = STATE(3865), + [sym_expression_list] = STATE(4586), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_var_declaration] = STATE(4296), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(2073), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -57475,114 +57770,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [299] = { [sym_line_comment] = STATE(299), [sym_block_comment] = STATE(299), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2363), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(853), + [sym_mutable_expression] = STATE(3865), + [sym_expression_list] = STATE(4586), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_var_declaration] = STATE(4277), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(2075), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -57608,7 +57903,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(2079), [anon_sym___global] = ACTIONS(2079), [anon_sym_type] = ACTIONS(2079), - [anon_sym_PIPE] = ACTIONS(2079), [anon_sym_fn] = ACTIONS(2079), [anon_sym_PLUS] = ACTIONS(2079), [anon_sym_DASH] = ACTIONS(2079), @@ -57635,6 +57929,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(2079), [anon_sym_spawn] = ACTIONS(2079), [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_PIPE] = ACTIONS(2079), [anon_sym_LBRACK2] = ACTIONS(2079), [anon_sym_TILDE] = ACTIONS(2079), [anon_sym_CARET] = ACTIONS(2079), @@ -57709,114 +58004,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [301] = { [sym_line_comment] = STATE(301), [sym_block_comment] = STATE(301), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4074), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_block] = STATE(1334), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2332), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(853), + [sym_mutable_expression] = STATE(3865), + [sym_expression_list] = STATE(4586), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_var_declaration] = STATE(4132), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -57826,114 +58121,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [302] = { [sym_line_comment] = STATE(302), [sym_block_comment] = STATE(302), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_map_keyed_element] = STATE(1926), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_map_init_expression_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(268), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -57943,114 +58238,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [303] = { [sym_line_comment] = STATE(303), [sym_block_comment] = STATE(303), - [sym__expression] = STATE(2380), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(582), - [sym_mutable_expression] = STATE(3787), - [sym_expression_list] = STATE(4409), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_var_declaration] = STATE(4259), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_map_keyed_element] = STATE(1980), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_map_init_expression_repeat1] = STATE(294), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -58060,114 +58355,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [304] = { [sym_line_comment] = STATE(304), [sym_block_comment] = STATE(304), - [sym__expression] = STATE(2319), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(582), - [sym_mutable_expression] = STATE(3787), - [sym_expression_list] = STATE(4409), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_var_declaration] = STATE(4103), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2388), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(853), + [sym_mutable_expression] = STATE(3865), + [sym_expression_list] = STATE(4586), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_var_declaration] = STATE(4196), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -58177,702 +58472,470 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [305] = { [sym_line_comment] = STATE(305), [sym_block_comment] = STATE(305), - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_LF] = ACTIONS(1809), - [anon_sym_CR] = ACTIONS(1809), - [anon_sym_CR_LF] = ACTIONS(1809), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_as] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_EQ] = ACTIONS(1809), - [anon_sym___global] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_fn] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_PERCENT] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_EQ_EQ] = ACTIONS(1809), - [anon_sym_BANG_EQ] = ACTIONS(1809), - [anon_sym_LT_EQ] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_pub] = ACTIONS(1809), - [anon_sym_mut] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_interface] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1809), - [anon_sym_json_DOTdecode] = ACTIONS(1809), - [anon_sym_LBRACK2] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_LT_DASH] = ACTIONS(1809), - [anon_sym_LT_LT] = ACTIONS(1809), - [anon_sym_GT_GT] = ACTIONS(1809), - [anon_sym_GT_GT_GT] = ACTIONS(1809), - [anon_sym_AMP_CARET] = ACTIONS(1809), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [anon_sym_PIPE_PIPE] = ACTIONS(1809), - [anon_sym_or] = ACTIONS(1809), - [sym_none] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_nil] = ACTIONS(1809), - [anon_sym_QMARK_DOT] = ACTIONS(1809), - [anon_sym_POUND_LBRACK] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_DOLLARif] = ACTIONS(1809), - [anon_sym_is] = ACTIONS(1809), - [anon_sym_BANGis] = ACTIONS(1809), - [anon_sym_in] = ACTIONS(1809), - [anon_sym_BANGin] = ACTIONS(1809), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_select] = ACTIONS(1809), - [anon_sym_STAR_EQ] = ACTIONS(1809), - [anon_sym_SLASH_EQ] = ACTIONS(1809), - [anon_sym_PERCENT_EQ] = ACTIONS(1809), - [anon_sym_LT_LT_EQ] = ACTIONS(1809), - [anon_sym_GT_GT_EQ] = ACTIONS(1809), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1809), - [anon_sym_AMP_EQ] = ACTIONS(1809), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1809), - [anon_sym_PLUS_EQ] = ACTIONS(1809), - [anon_sym_DASH_EQ] = ACTIONS(1809), - [anon_sym_PIPE_EQ] = ACTIONS(1809), - [anon_sym_CARET_EQ] = ACTIONS(1809), - [anon_sym_COLON_EQ] = ACTIONS(1809), - [anon_sym_lock] = ACTIONS(1809), - [anon_sym_rlock] = ACTIONS(1809), - [anon_sym_unsafe] = ACTIONS(1809), - [anon_sym_sql] = ACTIONS(1809), - [sym_int_literal] = ACTIONS(1809), - [sym_float_literal] = ACTIONS(1809), - [sym_rune_literal] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1809), - [anon_sym_c_SQUOTE] = ACTIONS(1809), - [anon_sym_c_DQUOTE] = ACTIONS(1809), - [anon_sym_r_SQUOTE] = ACTIONS(1809), - [anon_sym_r_DQUOTE] = ACTIONS(1809), - [sym_pseudo_compile_time_identifier] = ACTIONS(1809), - [anon_sym_shared] = ACTIONS(1809), - [anon_sym_map_LBRACK] = ACTIONS(1809), - [anon_sym_chan] = ACTIONS(1809), - [anon_sym_thread] = ACTIONS(1809), - [anon_sym_atomic] = ACTIONS(1809), - [anon_sym_assert] = ACTIONS(1809), - [anon_sym_defer] = ACTIONS(1809), - [anon_sym_goto] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_DOLLARfor] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_POUND] = ACTIONS(1809), - [anon_sym_asm] = ACTIONS(1809), - [anon_sym_AT_LBRACK] = ACTIONS(1809), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1399), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1398), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym__array_repeat1] = STATE(438), + [sym_identifier] = ACTIONS(1356), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(2087), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1404), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [306] = { [sym_line_comment] = STATE(306), [sym_block_comment] = STATE(306), - [ts_builtin_sym_end] = ACTIONS(2087), - [sym_identifier] = ACTIONS(2089), - [anon_sym_LF] = ACTIONS(2089), - [anon_sym_CR] = ACTIONS(2089), - [anon_sym_CR_LF] = ACTIONS(2089), + [ts_builtin_sym_end] = ACTIONS(2093), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LF] = ACTIONS(2095), + [anon_sym_CR] = ACTIONS(2095), + [anon_sym_CR_LF] = ACTIONS(2095), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2089), - [anon_sym_as] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_COMMA] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_EQ] = ACTIONS(2089), - [anon_sym___global] = ACTIONS(2089), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(2089), - [anon_sym_fn] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2089), - [anon_sym_SLASH] = ACTIONS(2089), - [anon_sym_PERCENT] = ACTIONS(2089), - [anon_sym_LT] = ACTIONS(2089), - [anon_sym_GT] = ACTIONS(2089), - [anon_sym_EQ_EQ] = ACTIONS(2089), - [anon_sym_BANG_EQ] = ACTIONS(2089), - [anon_sym_LT_EQ] = ACTIONS(2089), - [anon_sym_GT_EQ] = ACTIONS(2089), - [anon_sym_LBRACK] = ACTIONS(2087), - [anon_sym_struct] = ACTIONS(2089), - [anon_sym_union] = ACTIONS(2089), - [anon_sym_pub] = ACTIONS(2089), - [anon_sym_mut] = ACTIONS(2089), - [anon_sym_enum] = ACTIONS(2089), - [anon_sym_interface] = ACTIONS(2089), - [anon_sym_PLUS_PLUS] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2089), - [anon_sym_QMARK] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(2089), - [anon_sym_go] = ACTIONS(2089), - [anon_sym_spawn] = ACTIONS(2089), - [anon_sym_json_DOTdecode] = ACTIONS(2089), - [anon_sym_LBRACK2] = ACTIONS(2089), - [anon_sym_TILDE] = ACTIONS(2089), - [anon_sym_CARET] = ACTIONS(2089), - [anon_sym_AMP] = ACTIONS(2089), - [anon_sym_LT_DASH] = ACTIONS(2089), - [anon_sym_LT_LT] = ACTIONS(2089), - [anon_sym_GT_GT] = ACTIONS(2089), - [anon_sym_GT_GT_GT] = ACTIONS(2089), - [anon_sym_AMP_CARET] = ACTIONS(2089), - [anon_sym_AMP_AMP] = ACTIONS(2089), - [anon_sym_PIPE_PIPE] = ACTIONS(2089), - [anon_sym_or] = ACTIONS(2089), - [sym_none] = ACTIONS(2089), - [sym_true] = ACTIONS(2089), - [sym_false] = ACTIONS(2089), - [sym_nil] = ACTIONS(2089), - [anon_sym_QMARK_DOT] = ACTIONS(2089), - [anon_sym_POUND_LBRACK] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_DOLLARif] = ACTIONS(2089), - [anon_sym_is] = ACTIONS(2089), - [anon_sym_BANGis] = ACTIONS(2089), - [anon_sym_in] = ACTIONS(2089), - [anon_sym_BANGin] = ACTIONS(2089), - [anon_sym_match] = ACTIONS(2089), - [anon_sym_select] = ACTIONS(2089), - [anon_sym_STAR_EQ] = ACTIONS(2089), - [anon_sym_SLASH_EQ] = ACTIONS(2089), - [anon_sym_PERCENT_EQ] = ACTIONS(2089), - [anon_sym_LT_LT_EQ] = ACTIONS(2089), - [anon_sym_GT_GT_EQ] = ACTIONS(2089), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2089), - [anon_sym_AMP_EQ] = ACTIONS(2089), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2089), - [anon_sym_PLUS_EQ] = ACTIONS(2089), - [anon_sym_DASH_EQ] = ACTIONS(2089), - [anon_sym_PIPE_EQ] = ACTIONS(2089), - [anon_sym_CARET_EQ] = ACTIONS(2089), - [anon_sym_COLON_EQ] = ACTIONS(2089), - [anon_sym_lock] = ACTIONS(2089), - [anon_sym_rlock] = ACTIONS(2089), - [anon_sym_unsafe] = ACTIONS(2089), - [anon_sym_sql] = ACTIONS(2089), - [sym_int_literal] = ACTIONS(2089), - [sym_float_literal] = ACTIONS(2089), - [sym_rune_literal] = ACTIONS(2089), - [anon_sym_SQUOTE] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2089), - [anon_sym_c_SQUOTE] = ACTIONS(2089), - [anon_sym_c_DQUOTE] = ACTIONS(2089), - [anon_sym_r_SQUOTE] = ACTIONS(2089), - [anon_sym_r_DQUOTE] = ACTIONS(2089), - [sym_pseudo_compile_time_identifier] = ACTIONS(2089), - [anon_sym_shared] = ACTIONS(2089), - [anon_sym_map_LBRACK] = ACTIONS(2089), - [anon_sym_chan] = ACTIONS(2089), - [anon_sym_thread] = ACTIONS(2089), - [anon_sym_atomic] = ACTIONS(2089), - [anon_sym_assert] = ACTIONS(2089), - [anon_sym_defer] = ACTIONS(2089), - [anon_sym_goto] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_DOLLARfor] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_POUND] = ACTIONS(2089), - [anon_sym_asm] = ACTIONS(2089), - [anon_sym_AT_LBRACK] = ACTIONS(2089), + [anon_sym_DOT] = ACTIONS(2095), + [anon_sym_as] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_COMMA] = ACTIONS(2095), + [anon_sym_const] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_EQ] = ACTIONS(2095), + [anon_sym___global] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2095), + [anon_sym_fn] = ACTIONS(2095), + [anon_sym_PLUS] = ACTIONS(2095), + [anon_sym_DASH] = ACTIONS(2095), + [anon_sym_STAR] = ACTIONS(2095), + [anon_sym_SLASH] = ACTIONS(2095), + [anon_sym_PERCENT] = ACTIONS(2095), + [anon_sym_LT] = ACTIONS(2095), + [anon_sym_GT] = ACTIONS(2095), + [anon_sym_EQ_EQ] = ACTIONS(2095), + [anon_sym_BANG_EQ] = ACTIONS(2095), + [anon_sym_LT_EQ] = ACTIONS(2095), + [anon_sym_GT_EQ] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2095), + [anon_sym_union] = ACTIONS(2095), + [anon_sym_pub] = ACTIONS(2095), + [anon_sym_mut] = ACTIONS(2095), + [anon_sym_enum] = ACTIONS(2095), + [anon_sym_interface] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_QMARK] = ACTIONS(2095), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_go] = ACTIONS(2095), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(2095), + [anon_sym_PIPE] = ACTIONS(2095), + [anon_sym_LBRACK2] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_LT_DASH] = ACTIONS(2095), + [anon_sym_LT_LT] = ACTIONS(2095), + [anon_sym_GT_GT] = ACTIONS(2095), + [anon_sym_GT_GT_GT] = ACTIONS(2095), + [anon_sym_AMP_CARET] = ACTIONS(2095), + [anon_sym_AMP_AMP] = ACTIONS(2095), + [anon_sym_PIPE_PIPE] = ACTIONS(2095), + [anon_sym_or] = ACTIONS(2095), + [sym_none] = ACTIONS(2095), + [sym_true] = ACTIONS(2095), + [sym_false] = ACTIONS(2095), + [sym_nil] = ACTIONS(2095), + [anon_sym_QMARK_DOT] = ACTIONS(2095), + [anon_sym_POUND_LBRACK] = ACTIONS(2095), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_DOLLARif] = ACTIONS(2095), + [anon_sym_is] = ACTIONS(2095), + [anon_sym_BANGis] = ACTIONS(2095), + [anon_sym_in] = ACTIONS(2095), + [anon_sym_BANGin] = ACTIONS(2095), + [anon_sym_match] = ACTIONS(2095), + [anon_sym_select] = ACTIONS(2095), + [anon_sym_STAR_EQ] = ACTIONS(2095), + [anon_sym_SLASH_EQ] = ACTIONS(2095), + [anon_sym_PERCENT_EQ] = ACTIONS(2095), + [anon_sym_LT_LT_EQ] = ACTIONS(2095), + [anon_sym_GT_GT_EQ] = ACTIONS(2095), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2095), + [anon_sym_AMP_EQ] = ACTIONS(2095), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2095), + [anon_sym_PLUS_EQ] = ACTIONS(2095), + [anon_sym_DASH_EQ] = ACTIONS(2095), + [anon_sym_PIPE_EQ] = ACTIONS(2095), + [anon_sym_CARET_EQ] = ACTIONS(2095), + [anon_sym_COLON_EQ] = ACTIONS(2095), + [anon_sym_lock] = ACTIONS(2095), + [anon_sym_rlock] = ACTIONS(2095), + [anon_sym_unsafe] = ACTIONS(2095), + [anon_sym_sql] = ACTIONS(2095), + [sym_int_literal] = ACTIONS(2095), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [anon_sym_SQUOTE] = ACTIONS(2095), + [anon_sym_DQUOTE] = ACTIONS(2095), + [anon_sym_c_SQUOTE] = ACTIONS(2095), + [anon_sym_c_DQUOTE] = ACTIONS(2095), + [anon_sym_r_SQUOTE] = ACTIONS(2095), + [anon_sym_r_DQUOTE] = ACTIONS(2095), + [sym_pseudo_compile_time_identifier] = ACTIONS(2095), + [anon_sym_shared] = ACTIONS(2095), + [anon_sym_map_LBRACK] = ACTIONS(2095), + [anon_sym_chan] = ACTIONS(2095), + [anon_sym_thread] = ACTIONS(2095), + [anon_sym_atomic] = ACTIONS(2095), + [anon_sym_assert] = ACTIONS(2095), + [anon_sym_defer] = ACTIONS(2095), + [anon_sym_goto] = ACTIONS(2095), + [anon_sym_break] = ACTIONS(2095), + [anon_sym_continue] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2095), + [anon_sym_DOLLARfor] = ACTIONS(2095), + [anon_sym_for] = ACTIONS(2095), + [anon_sym_POUND] = ACTIONS(2095), + [anon_sym_asm] = ACTIONS(2095), + [anon_sym_AT_LBRACK] = ACTIONS(2095), }, [307] = { [sym_line_comment] = STATE(307), [sym_block_comment] = STATE(307), - [ts_builtin_sym_end] = ACTIONS(2091), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LF] = ACTIONS(2093), - [anon_sym_CR] = ACTIONS(2093), - [anon_sym_CR_LF] = ACTIONS(2093), + [ts_builtin_sym_end] = ACTIONS(2097), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LF] = ACTIONS(2099), + [anon_sym_CR] = ACTIONS(2099), + [anon_sym_CR_LF] = ACTIONS(2099), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_COMMA] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_EQ] = ACTIONS(2093), - [anon_sym___global] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ] = ACTIONS(2093), - [anon_sym_LT_EQ] = ACTIONS(2093), - [anon_sym_GT_EQ] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_union] = ACTIONS(2093), - [anon_sym_pub] = ACTIONS(2093), - [anon_sym_mut] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [anon_sym_QMARK] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_go] = ACTIONS(2093), - [anon_sym_spawn] = ACTIONS(2093), - [anon_sym_json_DOTdecode] = ACTIONS(2093), - [anon_sym_LBRACK2] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_LT_DASH] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2093), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2093), - [anon_sym_AMP_CARET] = ACTIONS(2093), - [anon_sym_AMP_AMP] = ACTIONS(2093), - [anon_sym_PIPE_PIPE] = ACTIONS(2093), - [anon_sym_or] = ACTIONS(2093), - [sym_none] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_nil] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2093), - [anon_sym_POUND_LBRACK] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_DOLLARif] = ACTIONS(2093), - [anon_sym_is] = ACTIONS(2093), - [anon_sym_BANGis] = ACTIONS(2093), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_BANGin] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_select] = ACTIONS(2093), - [anon_sym_STAR_EQ] = ACTIONS(2093), - [anon_sym_SLASH_EQ] = ACTIONS(2093), - [anon_sym_PERCENT_EQ] = ACTIONS(2093), - [anon_sym_LT_LT_EQ] = ACTIONS(2093), - [anon_sym_GT_GT_EQ] = ACTIONS(2093), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2093), - [anon_sym_AMP_EQ] = ACTIONS(2093), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2093), - [anon_sym_PLUS_EQ] = ACTIONS(2093), - [anon_sym_DASH_EQ] = ACTIONS(2093), - [anon_sym_PIPE_EQ] = ACTIONS(2093), - [anon_sym_CARET_EQ] = ACTIONS(2093), - [anon_sym_COLON_EQ] = ACTIONS(2093), - [anon_sym_lock] = ACTIONS(2093), - [anon_sym_rlock] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_sql] = ACTIONS(2093), - [sym_int_literal] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2093), - [sym_rune_literal] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_c_SQUOTE] = ACTIONS(2093), - [anon_sym_c_DQUOTE] = ACTIONS(2093), - [anon_sym_r_SQUOTE] = ACTIONS(2093), - [anon_sym_r_DQUOTE] = ACTIONS(2093), - [sym_pseudo_compile_time_identifier] = ACTIONS(2093), - [anon_sym_shared] = ACTIONS(2093), - [anon_sym_map_LBRACK] = ACTIONS(2093), - [anon_sym_chan] = ACTIONS(2093), - [anon_sym_thread] = ACTIONS(2093), - [anon_sym_atomic] = ACTIONS(2093), - [anon_sym_assert] = ACTIONS(2093), - [anon_sym_defer] = ACTIONS(2093), - [anon_sym_goto] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_DOLLARfor] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(2093), - [anon_sym_asm] = ACTIONS(2093), - [anon_sym_AT_LBRACK] = ACTIONS(2093), + [anon_sym_DOT] = ACTIONS(2099), + [anon_sym_as] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_COMMA] = ACTIONS(2099), + [anon_sym_const] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(2099), + [anon_sym_EQ] = ACTIONS(2099), + [anon_sym___global] = ACTIONS(2099), + [anon_sym_type] = ACTIONS(2099), + [anon_sym_fn] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(2099), + [anon_sym_DASH] = ACTIONS(2099), + [anon_sym_STAR] = ACTIONS(2099), + [anon_sym_SLASH] = ACTIONS(2099), + [anon_sym_PERCENT] = ACTIONS(2099), + [anon_sym_LT] = ACTIONS(2099), + [anon_sym_GT] = ACTIONS(2099), + [anon_sym_EQ_EQ] = ACTIONS(2099), + [anon_sym_BANG_EQ] = ACTIONS(2099), + [anon_sym_LT_EQ] = ACTIONS(2099), + [anon_sym_GT_EQ] = ACTIONS(2099), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_struct] = ACTIONS(2099), + [anon_sym_union] = ACTIONS(2099), + [anon_sym_pub] = ACTIONS(2099), + [anon_sym_mut] = ACTIONS(2099), + [anon_sym_enum] = ACTIONS(2099), + [anon_sym_interface] = ACTIONS(2099), + [anon_sym_PLUS_PLUS] = ACTIONS(2099), + [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_QMARK] = ACTIONS(2099), + [anon_sym_BANG] = ACTIONS(2099), + [anon_sym_go] = ACTIONS(2099), + [anon_sym_spawn] = ACTIONS(2099), + [anon_sym_json_DOTdecode] = ACTIONS(2099), + [anon_sym_PIPE] = ACTIONS(2099), + [anon_sym_LBRACK2] = ACTIONS(2099), + [anon_sym_TILDE] = ACTIONS(2099), + [anon_sym_CARET] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_LT_DASH] = ACTIONS(2099), + [anon_sym_LT_LT] = ACTIONS(2099), + [anon_sym_GT_GT] = ACTIONS(2099), + [anon_sym_GT_GT_GT] = ACTIONS(2099), + [anon_sym_AMP_CARET] = ACTIONS(2099), + [anon_sym_AMP_AMP] = ACTIONS(2099), + [anon_sym_PIPE_PIPE] = ACTIONS(2099), + [anon_sym_or] = ACTIONS(2099), + [sym_none] = ACTIONS(2099), + [sym_true] = ACTIONS(2099), + [sym_false] = ACTIONS(2099), + [sym_nil] = ACTIONS(2099), + [anon_sym_QMARK_DOT] = ACTIONS(2099), + [anon_sym_POUND_LBRACK] = ACTIONS(2099), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(2099), + [anon_sym_is] = ACTIONS(2099), + [anon_sym_BANGis] = ACTIONS(2099), + [anon_sym_in] = ACTIONS(2099), + [anon_sym_BANGin] = ACTIONS(2099), + [anon_sym_match] = ACTIONS(2099), + [anon_sym_select] = ACTIONS(2099), + [anon_sym_STAR_EQ] = ACTIONS(2099), + [anon_sym_SLASH_EQ] = ACTIONS(2099), + [anon_sym_PERCENT_EQ] = ACTIONS(2099), + [anon_sym_LT_LT_EQ] = ACTIONS(2099), + [anon_sym_GT_GT_EQ] = ACTIONS(2099), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2099), + [anon_sym_AMP_EQ] = ACTIONS(2099), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2099), + [anon_sym_PLUS_EQ] = ACTIONS(2099), + [anon_sym_DASH_EQ] = ACTIONS(2099), + [anon_sym_PIPE_EQ] = ACTIONS(2099), + [anon_sym_CARET_EQ] = ACTIONS(2099), + [anon_sym_COLON_EQ] = ACTIONS(2099), + [anon_sym_lock] = ACTIONS(2099), + [anon_sym_rlock] = ACTIONS(2099), + [anon_sym_unsafe] = ACTIONS(2099), + [anon_sym_sql] = ACTIONS(2099), + [sym_int_literal] = ACTIONS(2099), + [sym_float_literal] = ACTIONS(2099), + [sym_rune_literal] = ACTIONS(2099), + [anon_sym_SQUOTE] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(2099), + [anon_sym_c_SQUOTE] = ACTIONS(2099), + [anon_sym_c_DQUOTE] = ACTIONS(2099), + [anon_sym_r_SQUOTE] = ACTIONS(2099), + [anon_sym_r_DQUOTE] = ACTIONS(2099), + [sym_pseudo_compile_time_identifier] = ACTIONS(2099), + [anon_sym_shared] = ACTIONS(2099), + [anon_sym_map_LBRACK] = ACTIONS(2099), + [anon_sym_chan] = ACTIONS(2099), + [anon_sym_thread] = ACTIONS(2099), + [anon_sym_atomic] = ACTIONS(2099), + [anon_sym_assert] = ACTIONS(2099), + [anon_sym_defer] = ACTIONS(2099), + [anon_sym_goto] = ACTIONS(2099), + [anon_sym_break] = ACTIONS(2099), + [anon_sym_continue] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2099), + [anon_sym_DOLLARfor] = ACTIONS(2099), + [anon_sym_for] = ACTIONS(2099), + [anon_sym_POUND] = ACTIONS(2099), + [anon_sym_asm] = ACTIONS(2099), + [anon_sym_AT_LBRACK] = ACTIONS(2099), }, [308] = { [sym_line_comment] = STATE(308), [sym_block_comment] = STATE(308), - [sym__expression] = STATE(2604), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_range] = STATE(4566), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4432), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1281), }, [309] = { [sym_line_comment] = STATE(309), [sym_block_comment] = STATE(309), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LF] = ACTIONS(2097), - [anon_sym_CR] = ACTIONS(2097), - [anon_sym_CR_LF] = ACTIONS(2097), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_EQ] = ACTIONS(2097), - [anon_sym___global] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_PIPE] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_PERCENT] = ACTIONS(2097), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2097), - [anon_sym_EQ_EQ] = ACTIONS(2097), - [anon_sym_BANG_EQ] = ACTIONS(2097), - [anon_sym_LT_EQ] = ACTIONS(2097), - [anon_sym_GT_EQ] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_pub] = ACTIONS(2097), - [anon_sym_mut] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_QMARK] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2097), - [anon_sym_json_DOTdecode] = ACTIONS(2097), - [anon_sym_LBRACK2] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2097), - [anon_sym_CARET] = ACTIONS(2097), - [anon_sym_AMP] = ACTIONS(2097), - [anon_sym_LT_DASH] = ACTIONS(2097), - [anon_sym_LT_LT] = ACTIONS(2097), - [anon_sym_GT_GT] = ACTIONS(2097), - [anon_sym_GT_GT_GT] = ACTIONS(2097), - [anon_sym_AMP_CARET] = ACTIONS(2097), - [anon_sym_AMP_AMP] = ACTIONS(2097), - [anon_sym_PIPE_PIPE] = ACTIONS(2097), - [anon_sym_or] = ACTIONS(2097), - [sym_none] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_nil] = ACTIONS(2097), - [anon_sym_QMARK_DOT] = ACTIONS(2097), - [anon_sym_POUND_LBRACK] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_DOLLARif] = ACTIONS(2097), - [anon_sym_is] = ACTIONS(2097), - [anon_sym_BANGis] = ACTIONS(2097), - [anon_sym_in] = ACTIONS(2097), - [anon_sym_BANGin] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_select] = ACTIONS(2097), - [anon_sym_STAR_EQ] = ACTIONS(2097), - [anon_sym_SLASH_EQ] = ACTIONS(2097), - [anon_sym_PERCENT_EQ] = ACTIONS(2097), - [anon_sym_LT_LT_EQ] = ACTIONS(2097), - [anon_sym_GT_GT_EQ] = ACTIONS(2097), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2097), - [anon_sym_AMP_EQ] = ACTIONS(2097), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2097), - [anon_sym_PLUS_EQ] = ACTIONS(2097), - [anon_sym_DASH_EQ] = ACTIONS(2097), - [anon_sym_PIPE_EQ] = ACTIONS(2097), - [anon_sym_CARET_EQ] = ACTIONS(2097), - [anon_sym_COLON_EQ] = ACTIONS(2097), - [anon_sym_lock] = ACTIONS(2097), - [anon_sym_rlock] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_sql] = ACTIONS(2097), - [sym_int_literal] = ACTIONS(2097), - [sym_float_literal] = ACTIONS(2097), - [sym_rune_literal] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_c_SQUOTE] = ACTIONS(2097), - [anon_sym_c_DQUOTE] = ACTIONS(2097), - [anon_sym_r_SQUOTE] = ACTIONS(2097), - [anon_sym_r_DQUOTE] = ACTIONS(2097), - [sym_pseudo_compile_time_identifier] = ACTIONS(2097), - [anon_sym_shared] = ACTIONS(2097), - [anon_sym_map_LBRACK] = ACTIONS(2097), - [anon_sym_chan] = ACTIONS(2097), - [anon_sym_thread] = ACTIONS(2097), - [anon_sym_atomic] = ACTIONS(2097), - [anon_sym_assert] = ACTIONS(2097), - [anon_sym_defer] = ACTIONS(2097), - [anon_sym_goto] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_DOLLARfor] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(2097), - [anon_sym_asm] = ACTIONS(2097), - [anon_sym_AT_LBRACK] = ACTIONS(2097), - }, - [310] = { - [sym_line_comment] = STATE(310), - [sym_block_comment] = STATE(310), - [ts_builtin_sym_end] = ACTIONS(2099), - [sym_identifier] = ACTIONS(2101), - [anon_sym_LF] = ACTIONS(2101), - [anon_sym_CR] = ACTIONS(2101), - [anon_sym_CR_LF] = ACTIONS(2101), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2101), - [anon_sym_as] = ACTIONS(2101), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_COMMA] = ACTIONS(2101), - [anon_sym_const] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2101), - [anon_sym_EQ] = ACTIONS(2101), - [anon_sym___global] = ACTIONS(2101), - [anon_sym_type] = ACTIONS(2101), - [anon_sym_PIPE] = ACTIONS(2101), - [anon_sym_fn] = ACTIONS(2101), - [anon_sym_PLUS] = ACTIONS(2101), - [anon_sym_DASH] = ACTIONS(2101), - [anon_sym_STAR] = ACTIONS(2101), - [anon_sym_SLASH] = ACTIONS(2101), - [anon_sym_PERCENT] = ACTIONS(2101), - [anon_sym_LT] = ACTIONS(2101), - [anon_sym_GT] = ACTIONS(2101), - [anon_sym_EQ_EQ] = ACTIONS(2101), - [anon_sym_BANG_EQ] = ACTIONS(2101), - [anon_sym_LT_EQ] = ACTIONS(2101), - [anon_sym_GT_EQ] = ACTIONS(2101), - [anon_sym_LBRACK] = ACTIONS(2099), - [anon_sym_struct] = ACTIONS(2101), - [anon_sym_union] = ACTIONS(2101), - [anon_sym_pub] = ACTIONS(2101), - [anon_sym_mut] = ACTIONS(2101), - [anon_sym_enum] = ACTIONS(2101), - [anon_sym_interface] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_QMARK] = ACTIONS(2101), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_go] = ACTIONS(2101), - [anon_sym_spawn] = ACTIONS(2101), - [anon_sym_json_DOTdecode] = ACTIONS(2101), - [anon_sym_LBRACK2] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_LT_DASH] = ACTIONS(2101), - [anon_sym_LT_LT] = ACTIONS(2101), - [anon_sym_GT_GT] = ACTIONS(2101), - [anon_sym_GT_GT_GT] = ACTIONS(2101), - [anon_sym_AMP_CARET] = ACTIONS(2101), - [anon_sym_AMP_AMP] = ACTIONS(2101), - [anon_sym_PIPE_PIPE] = ACTIONS(2101), - [anon_sym_or] = ACTIONS(2101), - [sym_none] = ACTIONS(2101), - [sym_true] = ACTIONS(2101), - [sym_false] = ACTIONS(2101), - [sym_nil] = ACTIONS(2101), - [anon_sym_QMARK_DOT] = ACTIONS(2101), - [anon_sym_POUND_LBRACK] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_DOLLARif] = ACTIONS(2101), - [anon_sym_is] = ACTIONS(2101), - [anon_sym_BANGis] = ACTIONS(2101), - [anon_sym_in] = ACTIONS(2101), - [anon_sym_BANGin] = ACTIONS(2101), - [anon_sym_match] = ACTIONS(2101), - [anon_sym_select] = ACTIONS(2101), - [anon_sym_STAR_EQ] = ACTIONS(2101), - [anon_sym_SLASH_EQ] = ACTIONS(2101), - [anon_sym_PERCENT_EQ] = ACTIONS(2101), - [anon_sym_LT_LT_EQ] = ACTIONS(2101), - [anon_sym_GT_GT_EQ] = ACTIONS(2101), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2101), - [anon_sym_AMP_EQ] = ACTIONS(2101), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2101), - [anon_sym_PLUS_EQ] = ACTIONS(2101), - [anon_sym_DASH_EQ] = ACTIONS(2101), - [anon_sym_PIPE_EQ] = ACTIONS(2101), - [anon_sym_CARET_EQ] = ACTIONS(2101), - [anon_sym_COLON_EQ] = ACTIONS(2101), - [anon_sym_lock] = ACTIONS(2101), - [anon_sym_rlock] = ACTIONS(2101), - [anon_sym_unsafe] = ACTIONS(2101), - [anon_sym_sql] = ACTIONS(2101), - [sym_int_literal] = ACTIONS(2101), - [sym_float_literal] = ACTIONS(2101), - [sym_rune_literal] = ACTIONS(2101), - [anon_sym_SQUOTE] = ACTIONS(2101), - [anon_sym_DQUOTE] = ACTIONS(2101), - [anon_sym_c_SQUOTE] = ACTIONS(2101), - [anon_sym_c_DQUOTE] = ACTIONS(2101), - [anon_sym_r_SQUOTE] = ACTIONS(2101), - [anon_sym_r_DQUOTE] = ACTIONS(2101), - [sym_pseudo_compile_time_identifier] = ACTIONS(2101), - [anon_sym_shared] = ACTIONS(2101), - [anon_sym_map_LBRACK] = ACTIONS(2101), - [anon_sym_chan] = ACTIONS(2101), - [anon_sym_thread] = ACTIONS(2101), - [anon_sym_atomic] = ACTIONS(2101), - [anon_sym_assert] = ACTIONS(2101), - [anon_sym_defer] = ACTIONS(2101), - [anon_sym_goto] = ACTIONS(2101), - [anon_sym_break] = ACTIONS(2101), - [anon_sym_continue] = ACTIONS(2101), - [anon_sym_return] = ACTIONS(2101), - [anon_sym_DOLLARfor] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2101), - [anon_sym_POUND] = ACTIONS(2101), - [anon_sym_asm] = ACTIONS(2101), - [anon_sym_AT_LBRACK] = ACTIONS(2101), - }, - [311] = { - [sym_line_comment] = STATE(311), - [sym_block_comment] = STATE(311), [ts_builtin_sym_end] = ACTIONS(2103), [sym_identifier] = ACTIONS(2105), [anon_sym_LF] = ACTIONS(2105), @@ -58889,7 +58952,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(2105), [anon_sym___global] = ACTIONS(2105), [anon_sym_type] = ACTIONS(2105), - [anon_sym_PIPE] = ACTIONS(2105), [anon_sym_fn] = ACTIONS(2105), [anon_sym_PLUS] = ACTIONS(2105), [anon_sym_DASH] = ACTIONS(2105), @@ -58916,6 +58978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(2105), [anon_sym_spawn] = ACTIONS(2105), [anon_sym_json_DOTdecode] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), [anon_sym_LBRACK2] = ACTIONS(2105), [anon_sym_TILDE] = ACTIONS(2105), [anon_sym_CARET] = ACTIONS(2105), @@ -58986,1972 +59049,2204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2105), [anon_sym_AT_LBRACK] = ACTIONS(2105), }, - [312] = { - [sym_line_comment] = STATE(312), - [sym_block_comment] = STATE(312), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), + [310] = { + [sym_line_comment] = STATE(310), + [sym_block_comment] = STATE(310), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), [aux_sym__array_repeat1] = STATE(403), - [sym_identifier] = ACTIONS(1299), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), [anon_sym_RBRACK] = ACTIONS(2107), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [311] = { + [sym_line_comment] = STATE(311), + [sym_block_comment] = STATE(311), + [sym__expression] = STATE(2656), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_range] = STATE(4655), + [sym_identifier] = ACTIONS(1424), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1486), + }, + [312] = { + [sym_line_comment] = STATE(312), + [sym_block_comment] = STATE(312), + [ts_builtin_sym_end] = ACTIONS(2109), + [sym_identifier] = ACTIONS(2111), + [anon_sym_LF] = ACTIONS(2111), + [anon_sym_CR] = ACTIONS(2111), + [anon_sym_CR_LF] = ACTIONS(2111), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2111), + [anon_sym_as] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_COMMA] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_EQ] = ACTIONS(2111), + [anon_sym___global] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_fn] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_PERCENT] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_GT] = ACTIONS(2111), + [anon_sym_EQ_EQ] = ACTIONS(2111), + [anon_sym_BANG_EQ] = ACTIONS(2111), + [anon_sym_LT_EQ] = ACTIONS(2111), + [anon_sym_GT_EQ] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_struct] = ACTIONS(2111), + [anon_sym_union] = ACTIONS(2111), + [anon_sym_pub] = ACTIONS(2111), + [anon_sym_mut] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [anon_sym_QMARK] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_go] = ACTIONS(2111), + [anon_sym_spawn] = ACTIONS(2111), + [anon_sym_json_DOTdecode] = ACTIONS(2111), + [anon_sym_PIPE] = ACTIONS(2111), + [anon_sym_LBRACK2] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_CARET] = ACTIONS(2111), + [anon_sym_AMP] = ACTIONS(2111), + [anon_sym_LT_DASH] = ACTIONS(2111), + [anon_sym_LT_LT] = ACTIONS(2111), + [anon_sym_GT_GT] = ACTIONS(2111), + [anon_sym_GT_GT_GT] = ACTIONS(2111), + [anon_sym_AMP_CARET] = ACTIONS(2111), + [anon_sym_AMP_AMP] = ACTIONS(2111), + [anon_sym_PIPE_PIPE] = ACTIONS(2111), + [anon_sym_or] = ACTIONS(2111), + [sym_none] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_nil] = ACTIONS(2111), + [anon_sym_QMARK_DOT] = ACTIONS(2111), + [anon_sym_POUND_LBRACK] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_DOLLARif] = ACTIONS(2111), + [anon_sym_is] = ACTIONS(2111), + [anon_sym_BANGis] = ACTIONS(2111), + [anon_sym_in] = ACTIONS(2111), + [anon_sym_BANGin] = ACTIONS(2111), + [anon_sym_match] = ACTIONS(2111), + [anon_sym_select] = ACTIONS(2111), + [anon_sym_STAR_EQ] = ACTIONS(2111), + [anon_sym_SLASH_EQ] = ACTIONS(2111), + [anon_sym_PERCENT_EQ] = ACTIONS(2111), + [anon_sym_LT_LT_EQ] = ACTIONS(2111), + [anon_sym_GT_GT_EQ] = ACTIONS(2111), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2111), + [anon_sym_AMP_EQ] = ACTIONS(2111), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2111), + [anon_sym_PLUS_EQ] = ACTIONS(2111), + [anon_sym_DASH_EQ] = ACTIONS(2111), + [anon_sym_PIPE_EQ] = ACTIONS(2111), + [anon_sym_CARET_EQ] = ACTIONS(2111), + [anon_sym_COLON_EQ] = ACTIONS(2111), + [anon_sym_lock] = ACTIONS(2111), + [anon_sym_rlock] = ACTIONS(2111), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(2111), + [sym_int_literal] = ACTIONS(2111), + [sym_float_literal] = ACTIONS(2111), + [sym_rune_literal] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_c_SQUOTE] = ACTIONS(2111), + [anon_sym_c_DQUOTE] = ACTIONS(2111), + [anon_sym_r_SQUOTE] = ACTIONS(2111), + [anon_sym_r_DQUOTE] = ACTIONS(2111), + [sym_pseudo_compile_time_identifier] = ACTIONS(2111), + [anon_sym_shared] = ACTIONS(2111), + [anon_sym_map_LBRACK] = ACTIONS(2111), + [anon_sym_chan] = ACTIONS(2111), + [anon_sym_thread] = ACTIONS(2111), + [anon_sym_atomic] = ACTIONS(2111), + [anon_sym_assert] = ACTIONS(2111), + [anon_sym_defer] = ACTIONS(2111), + [anon_sym_goto] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_DOLLARfor] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_POUND] = ACTIONS(2111), + [anon_sym_asm] = ACTIONS(2111), + [anon_sym_AT_LBRACK] = ACTIONS(2111), }, [313] = { [sym_line_comment] = STATE(313), [sym_block_comment] = STATE(313), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2115), - [anon_sym_LF] = ACTIONS(2115), - [anon_sym_CR] = ACTIONS(2115), - [anon_sym_CR_LF] = ACTIONS(2115), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2115), - [anon_sym_as] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(2115), - [anon_sym_COMMA] = ACTIONS(2115), - [anon_sym_const] = ACTIONS(2115), - [anon_sym_LPAREN] = ACTIONS(2115), - [anon_sym_EQ] = ACTIONS(2115), - [anon_sym___global] = ACTIONS(2115), - [anon_sym_type] = ACTIONS(2115), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_fn] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), + [sym__expression] = STATE(2656), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3638), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_range] = STATE(4655), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), [anon_sym_STAR] = ACTIONS(2115), - [anon_sym_SLASH] = ACTIONS(2115), - [anon_sym_PERCENT] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(2115), - [anon_sym_GT] = ACTIONS(2115), - [anon_sym_EQ_EQ] = ACTIONS(2115), - [anon_sym_BANG_EQ] = ACTIONS(2115), - [anon_sym_LT_EQ] = ACTIONS(2115), - [anon_sym_GT_EQ] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_struct] = ACTIONS(2115), - [anon_sym_union] = ACTIONS(2115), - [anon_sym_pub] = ACTIONS(2115), - [anon_sym_mut] = ACTIONS(2115), - [anon_sym_enum] = ACTIONS(2115), - [anon_sym_interface] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_go] = ACTIONS(2115), - [anon_sym_spawn] = ACTIONS(2115), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2115), - [anon_sym_LT_LT] = ACTIONS(2115), - [anon_sym_GT_GT] = ACTIONS(2115), - [anon_sym_GT_GT_GT] = ACTIONS(2115), - [anon_sym_AMP_CARET] = ACTIONS(2115), - [anon_sym_AMP_AMP] = ACTIONS(2115), - [anon_sym_PIPE_PIPE] = ACTIONS(2115), - [anon_sym_or] = ACTIONS(2115), - [sym_none] = ACTIONS(2115), - [sym_true] = ACTIONS(2115), - [sym_false] = ACTIONS(2115), - [sym_nil] = ACTIONS(2115), - [anon_sym_QMARK_DOT] = ACTIONS(2115), - [anon_sym_POUND_LBRACK] = ACTIONS(2115), - [anon_sym_if] = ACTIONS(2115), - [anon_sym_DOLLARif] = ACTIONS(2115), - [anon_sym_is] = ACTIONS(2115), - [anon_sym_BANGis] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(2115), - [anon_sym_BANGin] = ACTIONS(2115), - [anon_sym_match] = ACTIONS(2115), - [anon_sym_select] = ACTIONS(2115), - [anon_sym_STAR_EQ] = ACTIONS(2115), - [anon_sym_SLASH_EQ] = ACTIONS(2115), - [anon_sym_PERCENT_EQ] = ACTIONS(2115), - [anon_sym_LT_LT_EQ] = ACTIONS(2115), - [anon_sym_GT_GT_EQ] = ACTIONS(2115), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2115), - [anon_sym_AMP_EQ] = ACTIONS(2115), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2115), - [anon_sym_PLUS_EQ] = ACTIONS(2115), - [anon_sym_DASH_EQ] = ACTIONS(2115), - [anon_sym_PIPE_EQ] = ACTIONS(2115), - [anon_sym_CARET_EQ] = ACTIONS(2115), - [anon_sym_COLON_EQ] = ACTIONS(2115), - [anon_sym_lock] = ACTIONS(2115), - [anon_sym_rlock] = ACTIONS(2115), - [anon_sym_unsafe] = ACTIONS(2115), - [anon_sym_sql] = ACTIONS(2115), - [sym_int_literal] = ACTIONS(2115), - [sym_float_literal] = ACTIONS(2115), - [sym_rune_literal] = ACTIONS(2115), - [anon_sym_SQUOTE] = ACTIONS(2115), - [anon_sym_DQUOTE] = ACTIONS(2115), - [anon_sym_c_SQUOTE] = ACTIONS(2115), - [anon_sym_c_DQUOTE] = ACTIONS(2115), - [anon_sym_r_SQUOTE] = ACTIONS(2115), - [anon_sym_r_DQUOTE] = ACTIONS(2115), - [sym_pseudo_compile_time_identifier] = ACTIONS(2115), - [anon_sym_shared] = ACTIONS(2115), - [anon_sym_map_LBRACK] = ACTIONS(2115), - [anon_sym_chan] = ACTIONS(2115), - [anon_sym_thread] = ACTIONS(2115), - [anon_sym_atomic] = ACTIONS(2115), - [anon_sym_assert] = ACTIONS(2115), - [anon_sym_defer] = ACTIONS(2115), - [anon_sym_goto] = ACTIONS(2115), - [anon_sym_break] = ACTIONS(2115), - [anon_sym_continue] = ACTIONS(2115), - [anon_sym_return] = ACTIONS(2115), - [anon_sym_DOLLARfor] = ACTIONS(2115), - [anon_sym_for] = ACTIONS(2115), - [anon_sym_POUND] = ACTIONS(2115), - [anon_sym_asm] = ACTIONS(2115), - [anon_sym_AT_LBRACK] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1486), }, [314] = { [sym_line_comment] = STATE(314), [sym_block_comment] = STATE(314), - [ts_builtin_sym_end] = ACTIONS(2117), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LF] = ACTIONS(2119), - [anon_sym_CR] = ACTIONS(2119), - [anon_sym_CR_LF] = ACTIONS(2119), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2119), - [anon_sym_as] = ACTIONS(2119), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_const] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym___global] = ACTIONS(2119), - [anon_sym_type] = ACTIONS(2119), - [anon_sym_PIPE] = ACTIONS(2119), - [anon_sym_fn] = ACTIONS(2119), - [anon_sym_PLUS] = ACTIONS(2119), - [anon_sym_DASH] = ACTIONS(2119), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_SLASH] = ACTIONS(2119), - [anon_sym_PERCENT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2119), - [anon_sym_GT] = ACTIONS(2119), - [anon_sym_EQ_EQ] = ACTIONS(2119), - [anon_sym_BANG_EQ] = ACTIONS(2119), - [anon_sym_LT_EQ] = ACTIONS(2119), - [anon_sym_GT_EQ] = ACTIONS(2119), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_struct] = ACTIONS(2119), - [anon_sym_union] = ACTIONS(2119), - [anon_sym_pub] = ACTIONS(2119), - [anon_sym_mut] = ACTIONS(2119), - [anon_sym_enum] = ACTIONS(2119), - [anon_sym_interface] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_QMARK] = ACTIONS(2119), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_go] = ACTIONS(2119), - [anon_sym_spawn] = ACTIONS(2119), - [anon_sym_json_DOTdecode] = ACTIONS(2119), - [anon_sym_LBRACK2] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_LT_DASH] = ACTIONS(2119), - [anon_sym_LT_LT] = ACTIONS(2119), - [anon_sym_GT_GT] = ACTIONS(2119), - [anon_sym_GT_GT_GT] = ACTIONS(2119), - [anon_sym_AMP_CARET] = ACTIONS(2119), - [anon_sym_AMP_AMP] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2119), - [anon_sym_or] = ACTIONS(2119), - [sym_none] = ACTIONS(2119), - [sym_true] = ACTIONS(2119), - [sym_false] = ACTIONS(2119), - [sym_nil] = ACTIONS(2119), - [anon_sym_QMARK_DOT] = ACTIONS(2119), - [anon_sym_POUND_LBRACK] = ACTIONS(2119), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(2119), - [anon_sym_is] = ACTIONS(2119), - [anon_sym_BANGis] = ACTIONS(2119), - [anon_sym_in] = ACTIONS(2119), - [anon_sym_BANGin] = ACTIONS(2119), - [anon_sym_match] = ACTIONS(2119), - [anon_sym_select] = ACTIONS(2119), - [anon_sym_STAR_EQ] = ACTIONS(2119), - [anon_sym_SLASH_EQ] = ACTIONS(2119), - [anon_sym_PERCENT_EQ] = ACTIONS(2119), - [anon_sym_LT_LT_EQ] = ACTIONS(2119), - [anon_sym_GT_GT_EQ] = ACTIONS(2119), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2119), - [anon_sym_AMP_EQ] = ACTIONS(2119), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2119), - [anon_sym_PLUS_EQ] = ACTIONS(2119), - [anon_sym_DASH_EQ] = ACTIONS(2119), - [anon_sym_PIPE_EQ] = ACTIONS(2119), - [anon_sym_CARET_EQ] = ACTIONS(2119), - [anon_sym_COLON_EQ] = ACTIONS(2119), - [anon_sym_lock] = ACTIONS(2119), - [anon_sym_rlock] = ACTIONS(2119), - [anon_sym_unsafe] = ACTIONS(2119), - [anon_sym_sql] = ACTIONS(2119), - [sym_int_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), - [sym_rune_literal] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_c_SQUOTE] = ACTIONS(2119), - [anon_sym_c_DQUOTE] = ACTIONS(2119), - [anon_sym_r_SQUOTE] = ACTIONS(2119), - [anon_sym_r_DQUOTE] = ACTIONS(2119), - [sym_pseudo_compile_time_identifier] = ACTIONS(2119), - [anon_sym_shared] = ACTIONS(2119), - [anon_sym_map_LBRACK] = ACTIONS(2119), - [anon_sym_chan] = ACTIONS(2119), - [anon_sym_thread] = ACTIONS(2119), - [anon_sym_atomic] = ACTIONS(2119), - [anon_sym_assert] = ACTIONS(2119), - [anon_sym_defer] = ACTIONS(2119), - [anon_sym_goto] = ACTIONS(2119), - [anon_sym_break] = ACTIONS(2119), - [anon_sym_continue] = ACTIONS(2119), - [anon_sym_return] = ACTIONS(2119), - [anon_sym_DOLLARfor] = ACTIONS(2119), - [anon_sym_for] = ACTIONS(2119), - [anon_sym_POUND] = ACTIONS(2119), - [anon_sym_asm] = ACTIONS(2119), - [anon_sym_AT_LBRACK] = ACTIONS(2119), + [sym__expression] = STATE(954), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(661), + [sym_mutable_expression] = STATE(1455), + [sym_expression_list] = STATE(1497), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [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(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_LT_DASH] = ACTIONS(2137), + [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(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [315] = { [sym_line_comment] = STATE(315), [sym_block_comment] = STATE(315), - [ts_builtin_sym_end] = ACTIONS(2121), - [sym_identifier] = ACTIONS(2123), - [anon_sym_LF] = ACTIONS(2123), - [anon_sym_CR] = ACTIONS(2123), - [anon_sym_CR_LF] = ACTIONS(2123), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2123), - [anon_sym_as] = ACTIONS(2123), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_COMMA] = ACTIONS(2123), - [anon_sym_const] = ACTIONS(2123), - [anon_sym_LPAREN] = ACTIONS(2123), - [anon_sym_EQ] = ACTIONS(2123), - [anon_sym___global] = ACTIONS(2123), - [anon_sym_type] = ACTIONS(2123), - [anon_sym_PIPE] = ACTIONS(2123), - [anon_sym_fn] = ACTIONS(2123), - [anon_sym_PLUS] = ACTIONS(2123), - [anon_sym_DASH] = ACTIONS(2123), - [anon_sym_STAR] = ACTIONS(2123), - [anon_sym_SLASH] = ACTIONS(2123), - [anon_sym_PERCENT] = ACTIONS(2123), - [anon_sym_LT] = ACTIONS(2123), - [anon_sym_GT] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2123), - [anon_sym_BANG_EQ] = ACTIONS(2123), - [anon_sym_LT_EQ] = ACTIONS(2123), - [anon_sym_GT_EQ] = ACTIONS(2123), - [anon_sym_LBRACK] = ACTIONS(2121), - [anon_sym_struct] = ACTIONS(2123), - [anon_sym_union] = ACTIONS(2123), - [anon_sym_pub] = ACTIONS(2123), - [anon_sym_mut] = ACTIONS(2123), - [anon_sym_enum] = ACTIONS(2123), - [anon_sym_interface] = ACTIONS(2123), - [anon_sym_PLUS_PLUS] = ACTIONS(2123), - [anon_sym_DASH_DASH] = ACTIONS(2123), - [anon_sym_QMARK] = ACTIONS(2123), - [anon_sym_BANG] = ACTIONS(2123), - [anon_sym_go] = ACTIONS(2123), - [anon_sym_spawn] = ACTIONS(2123), - [anon_sym_json_DOTdecode] = ACTIONS(2123), - [anon_sym_LBRACK2] = ACTIONS(2123), - [anon_sym_TILDE] = ACTIONS(2123), - [anon_sym_CARET] = ACTIONS(2123), - [anon_sym_AMP] = ACTIONS(2123), - [anon_sym_LT_DASH] = ACTIONS(2123), - [anon_sym_LT_LT] = ACTIONS(2123), - [anon_sym_GT_GT] = ACTIONS(2123), - [anon_sym_GT_GT_GT] = ACTIONS(2123), - [anon_sym_AMP_CARET] = ACTIONS(2123), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_PIPE_PIPE] = ACTIONS(2123), - [anon_sym_or] = ACTIONS(2123), - [sym_none] = ACTIONS(2123), - [sym_true] = ACTIONS(2123), - [sym_false] = ACTIONS(2123), - [sym_nil] = ACTIONS(2123), - [anon_sym_QMARK_DOT] = ACTIONS(2123), - [anon_sym_POUND_LBRACK] = ACTIONS(2123), - [anon_sym_if] = ACTIONS(2123), - [anon_sym_DOLLARif] = ACTIONS(2123), - [anon_sym_is] = ACTIONS(2123), - [anon_sym_BANGis] = ACTIONS(2123), - [anon_sym_in] = ACTIONS(2123), - [anon_sym_BANGin] = ACTIONS(2123), - [anon_sym_match] = ACTIONS(2123), - [anon_sym_select] = ACTIONS(2123), - [anon_sym_STAR_EQ] = ACTIONS(2123), - [anon_sym_SLASH_EQ] = ACTIONS(2123), - [anon_sym_PERCENT_EQ] = ACTIONS(2123), - [anon_sym_LT_LT_EQ] = ACTIONS(2123), - [anon_sym_GT_GT_EQ] = ACTIONS(2123), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2123), - [anon_sym_AMP_EQ] = ACTIONS(2123), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2123), - [anon_sym_PLUS_EQ] = ACTIONS(2123), - [anon_sym_DASH_EQ] = ACTIONS(2123), - [anon_sym_PIPE_EQ] = ACTIONS(2123), - [anon_sym_CARET_EQ] = ACTIONS(2123), - [anon_sym_COLON_EQ] = ACTIONS(2123), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2123), - [anon_sym_sql] = ACTIONS(2123), - [sym_int_literal] = ACTIONS(2123), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_DQUOTE] = ACTIONS(2123), - [anon_sym_c_SQUOTE] = ACTIONS(2123), - [anon_sym_c_DQUOTE] = ACTIONS(2123), - [anon_sym_r_SQUOTE] = ACTIONS(2123), - [anon_sym_r_DQUOTE] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(2123), - [anon_sym_shared] = ACTIONS(2123), - [anon_sym_map_LBRACK] = ACTIONS(2123), - [anon_sym_chan] = ACTIONS(2123), - [anon_sym_thread] = ACTIONS(2123), - [anon_sym_atomic] = ACTIONS(2123), - [anon_sym_assert] = ACTIONS(2123), - [anon_sym_defer] = ACTIONS(2123), - [anon_sym_goto] = ACTIONS(2123), - [anon_sym_break] = ACTIONS(2123), - [anon_sym_continue] = ACTIONS(2123), - [anon_sym_return] = ACTIONS(2123), - [anon_sym_DOLLARfor] = ACTIONS(2123), - [anon_sym_for] = ACTIONS(2123), - [anon_sym_POUND] = ACTIONS(2123), - [anon_sym_asm] = ACTIONS(2123), - [anon_sym_AT_LBRACK] = ACTIONS(2123), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1399), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1398), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym__array_repeat1] = STATE(360), + [sym_identifier] = ACTIONS(1356), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(2153), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1404), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [316] = { [sym_line_comment] = STATE(316), [sym_block_comment] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(2125), - [sym_identifier] = ACTIONS(2127), - [anon_sym_LF] = ACTIONS(2127), - [anon_sym_CR] = ACTIONS(2127), - [anon_sym_CR_LF] = ACTIONS(2127), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2127), - [anon_sym_as] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_COMMA] = ACTIONS(2127), - [anon_sym_const] = ACTIONS(2127), - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym_EQ] = ACTIONS(2127), - [anon_sym___global] = ACTIONS(2127), - [anon_sym_type] = ACTIONS(2127), - [anon_sym_PIPE] = ACTIONS(2127), - [anon_sym_fn] = ACTIONS(2127), - [anon_sym_PLUS] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2127), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_SLASH] = ACTIONS(2127), - [anon_sym_PERCENT] = ACTIONS(2127), - [anon_sym_LT] = ACTIONS(2127), - [anon_sym_GT] = ACTIONS(2127), - [anon_sym_EQ_EQ] = ACTIONS(2127), - [anon_sym_BANG_EQ] = ACTIONS(2127), - [anon_sym_LT_EQ] = ACTIONS(2127), - [anon_sym_GT_EQ] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_struct] = ACTIONS(2127), - [anon_sym_union] = ACTIONS(2127), - [anon_sym_pub] = ACTIONS(2127), - [anon_sym_mut] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(2127), - [anon_sym_interface] = ACTIONS(2127), - [anon_sym_PLUS_PLUS] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(2127), - [anon_sym_QMARK] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_go] = ACTIONS(2127), - [anon_sym_spawn] = ACTIONS(2127), - [anon_sym_json_DOTdecode] = ACTIONS(2127), - [anon_sym_LBRACK2] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_CARET] = ACTIONS(2127), - [anon_sym_AMP] = ACTIONS(2127), - [anon_sym_LT_DASH] = ACTIONS(2127), - [anon_sym_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_AMP_CARET] = ACTIONS(2127), - [anon_sym_AMP_AMP] = ACTIONS(2127), - [anon_sym_PIPE_PIPE] = ACTIONS(2127), - [anon_sym_or] = ACTIONS(2127), - [sym_none] = ACTIONS(2127), - [sym_true] = ACTIONS(2127), - [sym_false] = ACTIONS(2127), - [sym_nil] = ACTIONS(2127), - [anon_sym_QMARK_DOT] = ACTIONS(2127), - [anon_sym_POUND_LBRACK] = ACTIONS(2127), - [anon_sym_if] = ACTIONS(2127), - [anon_sym_DOLLARif] = ACTIONS(2127), - [anon_sym_is] = ACTIONS(2127), - [anon_sym_BANGis] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2127), - [anon_sym_BANGin] = ACTIONS(2127), - [anon_sym_match] = ACTIONS(2127), - [anon_sym_select] = ACTIONS(2127), - [anon_sym_STAR_EQ] = ACTIONS(2127), - [anon_sym_SLASH_EQ] = ACTIONS(2127), - [anon_sym_PERCENT_EQ] = ACTIONS(2127), - [anon_sym_LT_LT_EQ] = ACTIONS(2127), - [anon_sym_GT_GT_EQ] = ACTIONS(2127), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2127), - [anon_sym_AMP_EQ] = ACTIONS(2127), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2127), - [anon_sym_PLUS_EQ] = ACTIONS(2127), - [anon_sym_DASH_EQ] = ACTIONS(2127), - [anon_sym_PIPE_EQ] = ACTIONS(2127), - [anon_sym_CARET_EQ] = ACTIONS(2127), - [anon_sym_COLON_EQ] = ACTIONS(2127), - [anon_sym_lock] = ACTIONS(2127), - [anon_sym_rlock] = ACTIONS(2127), - [anon_sym_unsafe] = ACTIONS(2127), - [anon_sym_sql] = ACTIONS(2127), - [sym_int_literal] = ACTIONS(2127), - [sym_float_literal] = ACTIONS(2127), - [sym_rune_literal] = ACTIONS(2127), - [anon_sym_SQUOTE] = ACTIONS(2127), - [anon_sym_DQUOTE] = ACTIONS(2127), - [anon_sym_c_SQUOTE] = ACTIONS(2127), - [anon_sym_c_DQUOTE] = ACTIONS(2127), - [anon_sym_r_SQUOTE] = ACTIONS(2127), - [anon_sym_r_DQUOTE] = ACTIONS(2127), - [sym_pseudo_compile_time_identifier] = ACTIONS(2127), - [anon_sym_shared] = ACTIONS(2127), - [anon_sym_map_LBRACK] = ACTIONS(2127), - [anon_sym_chan] = ACTIONS(2127), - [anon_sym_thread] = ACTIONS(2127), - [anon_sym_atomic] = ACTIONS(2127), - [anon_sym_assert] = ACTIONS(2127), - [anon_sym_defer] = ACTIONS(2127), - [anon_sym_goto] = ACTIONS(2127), - [anon_sym_break] = ACTIONS(2127), - [anon_sym_continue] = ACTIONS(2127), - [anon_sym_return] = ACTIONS(2127), - [anon_sym_DOLLARfor] = ACTIONS(2127), - [anon_sym_for] = ACTIONS(2127), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_asm] = ACTIONS(2127), - [anon_sym_AT_LBRACK] = ACTIONS(2127), + [sym__expression] = STATE(2654), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_range] = STATE(4569), + [sym_identifier] = ACTIONS(1424), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1486), }, [317] = { [sym_line_comment] = STATE(317), [sym_block_comment] = STATE(317), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1398), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1396), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym__array_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(2654), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3638), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_range] = STATE(4569), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(2129), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1347), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1486), }, [318] = { [sym_line_comment] = STATE(318), [sym_block_comment] = STATE(318), - [ts_builtin_sym_end] = ACTIONS(2131), - [sym_identifier] = ACTIONS(2133), - [anon_sym_LF] = ACTIONS(2133), - [anon_sym_CR] = ACTIONS(2133), - [anon_sym_CR_LF] = ACTIONS(2133), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2133), - [anon_sym_as] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(2133), - [anon_sym_COMMA] = ACTIONS(2133), - [anon_sym_const] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_EQ] = ACTIONS(2133), - [anon_sym___global] = ACTIONS(2133), - [anon_sym_type] = ACTIONS(2133), - [anon_sym_PIPE] = ACTIONS(2133), - [anon_sym_fn] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(2133), - [anon_sym_DASH] = ACTIONS(2133), - [anon_sym_STAR] = ACTIONS(2133), - [anon_sym_SLASH] = ACTIONS(2133), - [anon_sym_PERCENT] = ACTIONS(2133), - [anon_sym_LT] = ACTIONS(2133), - [anon_sym_GT] = ACTIONS(2133), - [anon_sym_EQ_EQ] = ACTIONS(2133), - [anon_sym_BANG_EQ] = ACTIONS(2133), - [anon_sym_LT_EQ] = ACTIONS(2133), - [anon_sym_GT_EQ] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(2131), - [anon_sym_struct] = ACTIONS(2133), - [anon_sym_union] = ACTIONS(2133), - [anon_sym_pub] = ACTIONS(2133), - [anon_sym_mut] = ACTIONS(2133), - [anon_sym_enum] = ACTIONS(2133), - [anon_sym_interface] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2133), - [anon_sym_DASH_DASH] = ACTIONS(2133), - [anon_sym_QMARK] = ACTIONS(2133), - [anon_sym_BANG] = ACTIONS(2133), - [anon_sym_go] = ACTIONS(2133), - [anon_sym_spawn] = ACTIONS(2133), - [anon_sym_json_DOTdecode] = ACTIONS(2133), - [anon_sym_LBRACK2] = ACTIONS(2133), - [anon_sym_TILDE] = ACTIONS(2133), - [anon_sym_CARET] = ACTIONS(2133), - [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_LT_DASH] = ACTIONS(2133), - [anon_sym_LT_LT] = ACTIONS(2133), - [anon_sym_GT_GT] = ACTIONS(2133), - [anon_sym_GT_GT_GT] = ACTIONS(2133), - [anon_sym_AMP_CARET] = ACTIONS(2133), - [anon_sym_AMP_AMP] = ACTIONS(2133), - [anon_sym_PIPE_PIPE] = ACTIONS(2133), - [anon_sym_or] = ACTIONS(2133), - [sym_none] = ACTIONS(2133), - [sym_true] = ACTIONS(2133), - [sym_false] = ACTIONS(2133), - [sym_nil] = ACTIONS(2133), - [anon_sym_QMARK_DOT] = ACTIONS(2133), - [anon_sym_POUND_LBRACK] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_DOLLARif] = ACTIONS(2133), - [anon_sym_is] = ACTIONS(2133), - [anon_sym_BANGis] = ACTIONS(2133), - [anon_sym_in] = ACTIONS(2133), - [anon_sym_BANGin] = ACTIONS(2133), - [anon_sym_match] = ACTIONS(2133), - [anon_sym_select] = ACTIONS(2133), - [anon_sym_STAR_EQ] = ACTIONS(2133), - [anon_sym_SLASH_EQ] = ACTIONS(2133), - [anon_sym_PERCENT_EQ] = ACTIONS(2133), - [anon_sym_LT_LT_EQ] = ACTIONS(2133), - [anon_sym_GT_GT_EQ] = ACTIONS(2133), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2133), - [anon_sym_AMP_EQ] = ACTIONS(2133), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2133), - [anon_sym_PLUS_EQ] = ACTIONS(2133), - [anon_sym_DASH_EQ] = ACTIONS(2133), - [anon_sym_PIPE_EQ] = ACTIONS(2133), - [anon_sym_CARET_EQ] = ACTIONS(2133), - [anon_sym_COLON_EQ] = ACTIONS(2133), - [anon_sym_lock] = ACTIONS(2133), - [anon_sym_rlock] = ACTIONS(2133), - [anon_sym_unsafe] = ACTIONS(2133), - [anon_sym_sql] = ACTIONS(2133), - [sym_int_literal] = ACTIONS(2133), - [sym_float_literal] = ACTIONS(2133), - [sym_rune_literal] = ACTIONS(2133), - [anon_sym_SQUOTE] = ACTIONS(2133), - [anon_sym_DQUOTE] = ACTIONS(2133), - [anon_sym_c_SQUOTE] = ACTIONS(2133), - [anon_sym_c_DQUOTE] = ACTIONS(2133), - [anon_sym_r_SQUOTE] = ACTIONS(2133), - [anon_sym_r_DQUOTE] = ACTIONS(2133), - [sym_pseudo_compile_time_identifier] = ACTIONS(2133), - [anon_sym_shared] = ACTIONS(2133), - [anon_sym_map_LBRACK] = ACTIONS(2133), - [anon_sym_chan] = ACTIONS(2133), - [anon_sym_thread] = ACTIONS(2133), - [anon_sym_atomic] = ACTIONS(2133), - [anon_sym_assert] = ACTIONS(2133), - [anon_sym_defer] = ACTIONS(2133), - [anon_sym_goto] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_DOLLARfor] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_POUND] = ACTIONS(2133), - [anon_sym_asm] = ACTIONS(2133), - [anon_sym_AT_LBRACK] = ACTIONS(2133), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1399), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1398), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym__array_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1356), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(2155), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1404), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [319] = { [sym_line_comment] = STATE(319), [sym_block_comment] = STATE(319), - [ts_builtin_sym_end] = ACTIONS(2135), - [sym_identifier] = ACTIONS(2137), - [anon_sym_LF] = ACTIONS(2137), - [anon_sym_CR] = ACTIONS(2137), - [anon_sym_CR_LF] = ACTIONS(2137), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_as] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_COMMA] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_EQ] = ACTIONS(2137), - [anon_sym___global] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_PIPE] = ACTIONS(2139), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_SLASH] = ACTIONS(2139), - [anon_sym_PERCENT] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_GT] = ACTIONS(2139), - [anon_sym_EQ_EQ] = ACTIONS(2139), - [anon_sym_BANG_EQ] = ACTIONS(2139), - [anon_sym_LT_EQ] = ACTIONS(2139), - [anon_sym_GT_EQ] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_union] = ACTIONS(2137), - [anon_sym_pub] = ACTIONS(2137), - [anon_sym_mut] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_interface] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_QMARK] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(2137), - [anon_sym_spawn] = ACTIONS(2137), - [anon_sym_json_DOTdecode] = ACTIONS(2137), - [anon_sym_LBRACK2] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_LT_DASH] = ACTIONS(2137), - [anon_sym_LT_LT] = ACTIONS(2139), - [anon_sym_GT_GT] = ACTIONS(2139), - [anon_sym_GT_GT_GT] = ACTIONS(2139), - [anon_sym_AMP_CARET] = ACTIONS(2139), - [anon_sym_AMP_AMP] = ACTIONS(2139), - [anon_sym_PIPE_PIPE] = ACTIONS(2139), - [anon_sym_or] = ACTIONS(2139), - [sym_none] = ACTIONS(2137), - [sym_true] = ACTIONS(2137), - [sym_false] = ACTIONS(2137), - [sym_nil] = ACTIONS(2137), - [anon_sym_QMARK_DOT] = ACTIONS(2139), - [anon_sym_POUND_LBRACK] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_DOLLARif] = ACTIONS(2137), - [anon_sym_is] = ACTIONS(2139), - [anon_sym_BANGis] = ACTIONS(2139), - [anon_sym_in] = ACTIONS(2139), - [anon_sym_BANGin] = ACTIONS(2139), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_select] = ACTIONS(2137), - [anon_sym_STAR_EQ] = ACTIONS(2137), - [anon_sym_SLASH_EQ] = ACTIONS(2137), - [anon_sym_PERCENT_EQ] = ACTIONS(2137), - [anon_sym_LT_LT_EQ] = ACTIONS(2137), - [anon_sym_GT_GT_EQ] = ACTIONS(2137), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2137), - [anon_sym_AMP_EQ] = ACTIONS(2137), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2137), - [anon_sym_PLUS_EQ] = ACTIONS(2137), - [anon_sym_DASH_EQ] = ACTIONS(2137), - [anon_sym_PIPE_EQ] = ACTIONS(2137), - [anon_sym_CARET_EQ] = ACTIONS(2137), - [anon_sym_COLON_EQ] = ACTIONS(2137), - [anon_sym_lock] = ACTIONS(2137), - [anon_sym_rlock] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_sql] = ACTIONS(2137), - [sym_int_literal] = ACTIONS(2137), - [sym_float_literal] = ACTIONS(2137), - [sym_rune_literal] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_DQUOTE] = ACTIONS(2137), - [anon_sym_c_SQUOTE] = ACTIONS(2137), - [anon_sym_c_DQUOTE] = ACTIONS(2137), - [anon_sym_r_SQUOTE] = ACTIONS(2137), - [anon_sym_r_DQUOTE] = ACTIONS(2137), - [sym_pseudo_compile_time_identifier] = ACTIONS(2137), - [anon_sym_shared] = ACTIONS(2137), - [anon_sym_map_LBRACK] = ACTIONS(2137), - [anon_sym_chan] = ACTIONS(2137), - [anon_sym_thread] = ACTIONS(2137), - [anon_sym_atomic] = ACTIONS(2137), - [anon_sym_assert] = ACTIONS(2137), - [anon_sym_defer] = ACTIONS(2137), - [anon_sym_goto] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_DOLLARfor] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_POUND] = ACTIONS(2137), - [anon_sym_asm] = ACTIONS(2137), - [anon_sym_AT_LBRACK] = ACTIONS(2137), + [sym__expression] = STATE(2326), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(865), + [sym_mutable_expression] = STATE(3600), + [sym_expression_list] = STATE(3717), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_struct] = ACTIONS(1717), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_go] = ACTIONS(1721), + [anon_sym_spawn] = ACTIONS(1723), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_DASH] = ACTIONS(2173), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(1741), + [anon_sym_lock] = ACTIONS(1743), + [anon_sym_rlock] = ACTIONS(1743), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [320] = { [sym_line_comment] = STATE(320), [sym_block_comment] = STATE(320), - [ts_builtin_sym_end] = ACTIONS(2145), - [sym_identifier] = ACTIONS(2147), - [anon_sym_LF] = ACTIONS(2147), - [anon_sym_CR] = ACTIONS(2147), - [anon_sym_CR_LF] = ACTIONS(2147), + [ts_builtin_sym_end] = ACTIONS(2189), + [sym_identifier] = ACTIONS(2191), + [anon_sym_LF] = ACTIONS(2191), + [anon_sym_CR] = ACTIONS(2191), + [anon_sym_CR_LF] = ACTIONS(2191), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2147), - [anon_sym_as] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_COMMA] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_EQ] = ACTIONS(2147), - [anon_sym___global] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2147), - [anon_sym_PIPE] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(2147), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2147), - [anon_sym_SLASH] = ACTIONS(2147), - [anon_sym_PERCENT] = ACTIONS(2147), - [anon_sym_LT] = ACTIONS(2147), - [anon_sym_GT] = ACTIONS(2147), - [anon_sym_EQ_EQ] = ACTIONS(2147), - [anon_sym_BANG_EQ] = ACTIONS(2147), - [anon_sym_LT_EQ] = ACTIONS(2147), - [anon_sym_GT_EQ] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_struct] = ACTIONS(2147), - [anon_sym_union] = ACTIONS(2147), - [anon_sym_pub] = ACTIONS(2147), - [anon_sym_mut] = ACTIONS(2147), - [anon_sym_enum] = ACTIONS(2147), - [anon_sym_interface] = ACTIONS(2147), - [anon_sym_PLUS_PLUS] = ACTIONS(2147), - [anon_sym_DASH_DASH] = ACTIONS(2147), - [anon_sym_QMARK] = ACTIONS(2147), - [anon_sym_BANG] = ACTIONS(2147), - [anon_sym_go] = ACTIONS(2147), - [anon_sym_spawn] = ACTIONS(2147), - [anon_sym_json_DOTdecode] = ACTIONS(2147), - [anon_sym_LBRACK2] = ACTIONS(2147), - [anon_sym_TILDE] = ACTIONS(2147), - [anon_sym_CARET] = ACTIONS(2147), - [anon_sym_AMP] = ACTIONS(2147), - [anon_sym_LT_DASH] = ACTIONS(2147), - [anon_sym_LT_LT] = ACTIONS(2147), - [anon_sym_GT_GT] = ACTIONS(2147), - [anon_sym_GT_GT_GT] = ACTIONS(2147), - [anon_sym_AMP_CARET] = ACTIONS(2147), - [anon_sym_AMP_AMP] = ACTIONS(2147), - [anon_sym_PIPE_PIPE] = ACTIONS(2147), - [anon_sym_or] = ACTIONS(2147), - [sym_none] = ACTIONS(2147), - [sym_true] = ACTIONS(2147), - [sym_false] = ACTIONS(2147), - [sym_nil] = ACTIONS(2147), - [anon_sym_QMARK_DOT] = ACTIONS(2147), - [anon_sym_POUND_LBRACK] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_DOLLARif] = ACTIONS(2147), - [anon_sym_is] = ACTIONS(2147), - [anon_sym_BANGis] = ACTIONS(2147), - [anon_sym_in] = ACTIONS(2147), - [anon_sym_BANGin] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_select] = ACTIONS(2147), - [anon_sym_STAR_EQ] = ACTIONS(2147), - [anon_sym_SLASH_EQ] = ACTIONS(2147), - [anon_sym_PERCENT_EQ] = ACTIONS(2147), - [anon_sym_LT_LT_EQ] = ACTIONS(2147), - [anon_sym_GT_GT_EQ] = ACTIONS(2147), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2147), - [anon_sym_AMP_EQ] = ACTIONS(2147), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2147), - [anon_sym_PLUS_EQ] = ACTIONS(2147), - [anon_sym_DASH_EQ] = ACTIONS(2147), - [anon_sym_PIPE_EQ] = ACTIONS(2147), - [anon_sym_CARET_EQ] = ACTIONS(2147), - [anon_sym_COLON_EQ] = ACTIONS(2147), - [anon_sym_lock] = ACTIONS(2147), - [anon_sym_rlock] = ACTIONS(2147), - [anon_sym_unsafe] = ACTIONS(2147), - [anon_sym_sql] = ACTIONS(2147), - [sym_int_literal] = ACTIONS(2147), - [sym_float_literal] = ACTIONS(2147), - [sym_rune_literal] = ACTIONS(2147), - [anon_sym_SQUOTE] = ACTIONS(2147), - [anon_sym_DQUOTE] = ACTIONS(2147), - [anon_sym_c_SQUOTE] = ACTIONS(2147), - [anon_sym_c_DQUOTE] = ACTIONS(2147), - [anon_sym_r_SQUOTE] = ACTIONS(2147), - [anon_sym_r_DQUOTE] = ACTIONS(2147), - [sym_pseudo_compile_time_identifier] = ACTIONS(2147), - [anon_sym_shared] = ACTIONS(2147), - [anon_sym_map_LBRACK] = ACTIONS(2147), - [anon_sym_chan] = ACTIONS(2147), - [anon_sym_thread] = ACTIONS(2147), - [anon_sym_atomic] = ACTIONS(2147), - [anon_sym_assert] = ACTIONS(2147), - [anon_sym_defer] = ACTIONS(2147), - [anon_sym_goto] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_DOLLARfor] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_POUND] = ACTIONS(2147), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym_AT_LBRACK] = ACTIONS(2147), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_as] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_COMMA] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_EQ] = ACTIONS(2191), + [anon_sym___global] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_fn] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_PERCENT] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_GT] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ] = ACTIONS(2191), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_union] = ACTIONS(2191), + [anon_sym_pub] = ACTIONS(2191), + [anon_sym_mut] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_QMARK] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_go] = ACTIONS(2191), + [anon_sym_spawn] = ACTIONS(2191), + [anon_sym_json_DOTdecode] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_LBRACK2] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_LT_DASH] = ACTIONS(2191), + [anon_sym_LT_LT] = ACTIONS(2191), + [anon_sym_GT_GT] = ACTIONS(2191), + [anon_sym_GT_GT_GT] = ACTIONS(2191), + [anon_sym_AMP_CARET] = ACTIONS(2191), + [anon_sym_AMP_AMP] = ACTIONS(2191), + [anon_sym_PIPE_PIPE] = ACTIONS(2191), + [anon_sym_or] = ACTIONS(2191), + [sym_none] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_nil] = ACTIONS(2191), + [anon_sym_QMARK_DOT] = ACTIONS(2191), + [anon_sym_POUND_LBRACK] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_DOLLARif] = ACTIONS(2191), + [anon_sym_is] = ACTIONS(2191), + [anon_sym_BANGis] = ACTIONS(2191), + [anon_sym_in] = ACTIONS(2191), + [anon_sym_BANGin] = ACTIONS(2191), + [anon_sym_match] = ACTIONS(2191), + [anon_sym_select] = ACTIONS(2191), + [anon_sym_STAR_EQ] = ACTIONS(2191), + [anon_sym_SLASH_EQ] = ACTIONS(2191), + [anon_sym_PERCENT_EQ] = ACTIONS(2191), + [anon_sym_LT_LT_EQ] = ACTIONS(2191), + [anon_sym_GT_GT_EQ] = ACTIONS(2191), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2191), + [anon_sym_AMP_EQ] = ACTIONS(2191), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2191), + [anon_sym_PLUS_EQ] = ACTIONS(2191), + [anon_sym_DASH_EQ] = ACTIONS(2191), + [anon_sym_PIPE_EQ] = ACTIONS(2191), + [anon_sym_CARET_EQ] = ACTIONS(2191), + [anon_sym_COLON_EQ] = ACTIONS(2191), + [anon_sym_lock] = ACTIONS(2191), + [anon_sym_rlock] = ACTIONS(2191), + [anon_sym_unsafe] = ACTIONS(2191), + [anon_sym_sql] = ACTIONS(2191), + [sym_int_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), + [sym_rune_literal] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_c_SQUOTE] = ACTIONS(2191), + [anon_sym_c_DQUOTE] = ACTIONS(2191), + [anon_sym_r_SQUOTE] = ACTIONS(2191), + [anon_sym_r_DQUOTE] = ACTIONS(2191), + [sym_pseudo_compile_time_identifier] = ACTIONS(2191), + [anon_sym_shared] = ACTIONS(2191), + [anon_sym_map_LBRACK] = ACTIONS(2191), + [anon_sym_chan] = ACTIONS(2191), + [anon_sym_thread] = ACTIONS(2191), + [anon_sym_atomic] = ACTIONS(2191), + [anon_sym_assert] = ACTIONS(2191), + [anon_sym_defer] = ACTIONS(2191), + [anon_sym_goto] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_DOLLARfor] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_POUND] = ACTIONS(2191), + [anon_sym_asm] = ACTIONS(2191), + [anon_sym_AT_LBRACK] = ACTIONS(2191), }, [321] = { [sym_line_comment] = STATE(321), [sym_block_comment] = STATE(321), - [ts_builtin_sym_end] = ACTIONS(2149), - [sym_identifier] = ACTIONS(2151), - [anon_sym_LF] = ACTIONS(2151), - [anon_sym_CR] = ACTIONS(2151), - [anon_sym_CR_LF] = ACTIONS(2151), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2151), - [anon_sym_as] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_COMMA] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_EQ] = ACTIONS(2151), - [anon_sym___global] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2151), - [anon_sym_fn] = ACTIONS(2151), - [anon_sym_PLUS] = ACTIONS(2151), - [anon_sym_DASH] = ACTIONS(2151), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_SLASH] = ACTIONS(2151), - [anon_sym_PERCENT] = ACTIONS(2151), - [anon_sym_LT] = ACTIONS(2151), - [anon_sym_GT] = ACTIONS(2151), - [anon_sym_EQ_EQ] = ACTIONS(2151), - [anon_sym_BANG_EQ] = ACTIONS(2151), - [anon_sym_LT_EQ] = ACTIONS(2151), - [anon_sym_GT_EQ] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_struct] = ACTIONS(2151), - [anon_sym_union] = ACTIONS(2151), - [anon_sym_pub] = ACTIONS(2151), - [anon_sym_mut] = ACTIONS(2151), - [anon_sym_enum] = ACTIONS(2151), - [anon_sym_interface] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [anon_sym_QMARK] = ACTIONS(2151), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_go] = ACTIONS(2151), - [anon_sym_spawn] = ACTIONS(2151), - [anon_sym_json_DOTdecode] = ACTIONS(2151), - [anon_sym_LBRACK2] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_LT_DASH] = ACTIONS(2151), - [anon_sym_LT_LT] = ACTIONS(2151), - [anon_sym_GT_GT] = ACTIONS(2151), - [anon_sym_GT_GT_GT] = ACTIONS(2151), - [anon_sym_AMP_CARET] = ACTIONS(2151), - [anon_sym_AMP_AMP] = ACTIONS(2151), - [anon_sym_PIPE_PIPE] = ACTIONS(2151), - [anon_sym_or] = ACTIONS(2151), - [sym_none] = ACTIONS(2151), - [sym_true] = ACTIONS(2151), - [sym_false] = ACTIONS(2151), - [sym_nil] = ACTIONS(2151), - [anon_sym_QMARK_DOT] = ACTIONS(2151), - [anon_sym_POUND_LBRACK] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_DOLLARif] = ACTIONS(2151), - [anon_sym_is] = ACTIONS(2151), - [anon_sym_BANGis] = ACTIONS(2151), - [anon_sym_in] = ACTIONS(2151), - [anon_sym_BANGin] = ACTIONS(2151), - [anon_sym_match] = ACTIONS(2151), - [anon_sym_select] = ACTIONS(2151), - [anon_sym_STAR_EQ] = ACTIONS(2151), - [anon_sym_SLASH_EQ] = ACTIONS(2151), - [anon_sym_PERCENT_EQ] = ACTIONS(2151), - [anon_sym_LT_LT_EQ] = ACTIONS(2151), - [anon_sym_GT_GT_EQ] = ACTIONS(2151), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2151), - [anon_sym_AMP_EQ] = ACTIONS(2151), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2151), - [anon_sym_PLUS_EQ] = ACTIONS(2151), - [anon_sym_DASH_EQ] = ACTIONS(2151), - [anon_sym_PIPE_EQ] = ACTIONS(2151), - [anon_sym_CARET_EQ] = ACTIONS(2151), - [anon_sym_COLON_EQ] = ACTIONS(2151), - [anon_sym_lock] = ACTIONS(2151), - [anon_sym_rlock] = ACTIONS(2151), - [anon_sym_unsafe] = ACTIONS(2151), - [anon_sym_sql] = ACTIONS(2151), - [sym_int_literal] = ACTIONS(2151), - [sym_float_literal] = ACTIONS(2151), - [sym_rune_literal] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2151), - [anon_sym_c_SQUOTE] = ACTIONS(2151), - [anon_sym_c_DQUOTE] = ACTIONS(2151), - [anon_sym_r_SQUOTE] = ACTIONS(2151), - [anon_sym_r_DQUOTE] = ACTIONS(2151), - [sym_pseudo_compile_time_identifier] = ACTIONS(2151), - [anon_sym_shared] = ACTIONS(2151), - [anon_sym_map_LBRACK] = ACTIONS(2151), - [anon_sym_chan] = ACTIONS(2151), - [anon_sym_thread] = ACTIONS(2151), - [anon_sym_atomic] = ACTIONS(2151), - [anon_sym_assert] = ACTIONS(2151), - [anon_sym_defer] = ACTIONS(2151), - [anon_sym_goto] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_DOLLARfor] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_POUND] = ACTIONS(2151), - [anon_sym_asm] = ACTIONS(2151), - [anon_sym_AT_LBRACK] = ACTIONS(2151), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1196), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_short_element_list_repeat1] = STATE(321), + [sym_identifier] = ACTIONS(2193), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2196), + [anon_sym_LBRACE] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2202), + [anon_sym_LPAREN] = ACTIONS(2204), + [anon_sym_fn] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2210), + [anon_sym_DASH] = ACTIONS(2210), + [anon_sym_STAR] = ACTIONS(2213), + [anon_sym_struct] = ACTIONS(2216), + [anon_sym_mut] = ACTIONS(2219), + [anon_sym_QMARK] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_go] = ACTIONS(2228), + [anon_sym_spawn] = ACTIONS(2231), + [anon_sym_json_DOTdecode] = ACTIONS(2234), + [anon_sym_LBRACK2] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2210), + [anon_sym_CARET] = ACTIONS(2210), + [anon_sym_AMP] = ACTIONS(2240), + [anon_sym_LT_DASH] = ACTIONS(2243), + [sym_none] = ACTIONS(2246), + [sym_true] = ACTIONS(2246), + [sym_false] = ACTIONS(2246), + [sym_nil] = ACTIONS(2246), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_DOLLARif] = ACTIONS(2252), + [anon_sym_match] = ACTIONS(2255), + [anon_sym_select] = ACTIONS(2258), + [anon_sym_lock] = ACTIONS(2261), + [anon_sym_rlock] = ACTIONS(2261), + [anon_sym_unsafe] = ACTIONS(2264), + [anon_sym_sql] = ACTIONS(2267), + [sym_int_literal] = ACTIONS(2246), + [sym_float_literal] = ACTIONS(2270), + [sym_rune_literal] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2273), + [anon_sym_DQUOTE] = ACTIONS(2276), + [anon_sym_c_SQUOTE] = ACTIONS(2279), + [anon_sym_c_DQUOTE] = ACTIONS(2282), + [anon_sym_r_SQUOTE] = ACTIONS(2285), + [anon_sym_r_DQUOTE] = ACTIONS(2288), + [sym_pseudo_compile_time_identifier] = ACTIONS(2291), + [anon_sym_shared] = ACTIONS(2294), + [anon_sym_map_LBRACK] = ACTIONS(2297), + [anon_sym_chan] = ACTIONS(2300), + [anon_sym_thread] = ACTIONS(2303), + [anon_sym_atomic] = ACTIONS(2306), }, [322] = { [sym_line_comment] = STATE(322), [sym_block_comment] = STATE(322), - [ts_builtin_sym_end] = ACTIONS(2153), - [sym_identifier] = ACTIONS(2155), - [anon_sym_LF] = ACTIONS(2155), - [anon_sym_CR] = ACTIONS(2155), - [anon_sym_CR_LF] = ACTIONS(2155), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2155), - [anon_sym_as] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2155), - [anon_sym_COMMA] = ACTIONS(2155), - [anon_sym_const] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_EQ] = ACTIONS(2155), - [anon_sym___global] = ACTIONS(2155), - [anon_sym_type] = ACTIONS(2155), - [anon_sym_PIPE] = ACTIONS(2155), - [anon_sym_fn] = ACTIONS(2155), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2155), - [anon_sym_SLASH] = ACTIONS(2155), - [anon_sym_PERCENT] = ACTIONS(2155), - [anon_sym_LT] = ACTIONS(2155), - [anon_sym_GT] = ACTIONS(2155), - [anon_sym_EQ_EQ] = ACTIONS(2155), - [anon_sym_BANG_EQ] = ACTIONS(2155), - [anon_sym_LT_EQ] = ACTIONS(2155), - [anon_sym_GT_EQ] = ACTIONS(2155), - [anon_sym_LBRACK] = ACTIONS(2153), - [anon_sym_struct] = ACTIONS(2155), - [anon_sym_union] = ACTIONS(2155), - [anon_sym_pub] = ACTIONS(2155), - [anon_sym_mut] = ACTIONS(2155), - [anon_sym_enum] = ACTIONS(2155), - [anon_sym_interface] = ACTIONS(2155), - [anon_sym_PLUS_PLUS] = ACTIONS(2155), - [anon_sym_DASH_DASH] = ACTIONS(2155), - [anon_sym_QMARK] = ACTIONS(2155), - [anon_sym_BANG] = ACTIONS(2155), - [anon_sym_go] = ACTIONS(2155), - [anon_sym_spawn] = ACTIONS(2155), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2155), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_CARET] = ACTIONS(2155), - [anon_sym_AMP] = ACTIONS(2155), - [anon_sym_LT_DASH] = ACTIONS(2155), - [anon_sym_LT_LT] = ACTIONS(2155), - [anon_sym_GT_GT] = ACTIONS(2155), - [anon_sym_GT_GT_GT] = ACTIONS(2155), - [anon_sym_AMP_CARET] = ACTIONS(2155), - [anon_sym_AMP_AMP] = ACTIONS(2155), - [anon_sym_PIPE_PIPE] = ACTIONS(2155), - [anon_sym_or] = ACTIONS(2155), - [sym_none] = ACTIONS(2155), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [sym_nil] = ACTIONS(2155), - [anon_sym_QMARK_DOT] = ACTIONS(2155), - [anon_sym_POUND_LBRACK] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_DOLLARif] = ACTIONS(2155), - [anon_sym_is] = ACTIONS(2155), - [anon_sym_BANGis] = ACTIONS(2155), - [anon_sym_in] = ACTIONS(2155), - [anon_sym_BANGin] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2155), - [anon_sym_STAR_EQ] = ACTIONS(2155), - [anon_sym_SLASH_EQ] = ACTIONS(2155), - [anon_sym_PERCENT_EQ] = ACTIONS(2155), - [anon_sym_LT_LT_EQ] = ACTIONS(2155), - [anon_sym_GT_GT_EQ] = ACTIONS(2155), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2155), - [anon_sym_AMP_EQ] = ACTIONS(2155), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2155), - [anon_sym_PLUS_EQ] = ACTIONS(2155), - [anon_sym_DASH_EQ] = ACTIONS(2155), - [anon_sym_PIPE_EQ] = ACTIONS(2155), - [anon_sym_CARET_EQ] = ACTIONS(2155), - [anon_sym_COLON_EQ] = ACTIONS(2155), - [anon_sym_lock] = ACTIONS(2155), - [anon_sym_rlock] = ACTIONS(2155), - [anon_sym_unsafe] = ACTIONS(2155), - [anon_sym_sql] = ACTIONS(2155), - [sym_int_literal] = ACTIONS(2155), - [sym_float_literal] = ACTIONS(2155), - [sym_rune_literal] = ACTIONS(2155), - [anon_sym_SQUOTE] = ACTIONS(2155), - [anon_sym_DQUOTE] = ACTIONS(2155), - [anon_sym_c_SQUOTE] = ACTIONS(2155), - [anon_sym_c_DQUOTE] = ACTIONS(2155), - [anon_sym_r_SQUOTE] = ACTIONS(2155), - [anon_sym_r_DQUOTE] = ACTIONS(2155), - [sym_pseudo_compile_time_identifier] = ACTIONS(2155), - [anon_sym_shared] = ACTIONS(2155), - [anon_sym_map_LBRACK] = ACTIONS(2155), - [anon_sym_chan] = ACTIONS(2155), - [anon_sym_thread] = ACTIONS(2155), - [anon_sym_atomic] = ACTIONS(2155), - [anon_sym_assert] = ACTIONS(2155), - [anon_sym_defer] = ACTIONS(2155), - [anon_sym_goto] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_DOLLARfor] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_POUND] = ACTIONS(2155), - [anon_sym_asm] = ACTIONS(2155), - [anon_sym_AT_LBRACK] = ACTIONS(2155), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4418), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [323] = { [sym_line_comment] = STATE(323), [sym_block_comment] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(2157), - [sym_identifier] = ACTIONS(2159), - [anon_sym_LF] = ACTIONS(2159), - [anon_sym_CR] = ACTIONS(2159), - [anon_sym_CR_LF] = ACTIONS(2159), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_as] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_EQ] = ACTIONS(2159), - [anon_sym___global] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_PIPE] = ACTIONS(2159), - [anon_sym_fn] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_PERCENT] = ACTIONS(2159), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_GT] = ACTIONS(2159), - [anon_sym_EQ_EQ] = ACTIONS(2159), - [anon_sym_BANG_EQ] = ACTIONS(2159), - [anon_sym_LT_EQ] = ACTIONS(2159), - [anon_sym_GT_EQ] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2159), - [anon_sym_union] = ACTIONS(2159), - [anon_sym_pub] = ACTIONS(2159), - [anon_sym_mut] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [anon_sym_interface] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [anon_sym_QMARK] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(2159), - [anon_sym_spawn] = ACTIONS(2159), - [anon_sym_json_DOTdecode] = ACTIONS(2159), - [anon_sym_LBRACK2] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2159), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2159), - [anon_sym_LT_LT] = ACTIONS(2159), - [anon_sym_GT_GT] = ACTIONS(2159), - [anon_sym_GT_GT_GT] = ACTIONS(2159), - [anon_sym_AMP_CARET] = ACTIONS(2159), - [anon_sym_AMP_AMP] = ACTIONS(2159), - [anon_sym_PIPE_PIPE] = ACTIONS(2159), - [anon_sym_or] = ACTIONS(2159), - [sym_none] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_nil] = ACTIONS(2159), - [anon_sym_QMARK_DOT] = ACTIONS(2159), - [anon_sym_POUND_LBRACK] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_DOLLARif] = ACTIONS(2159), - [anon_sym_is] = ACTIONS(2159), - [anon_sym_BANGis] = ACTIONS(2159), - [anon_sym_in] = ACTIONS(2159), - [anon_sym_BANGin] = ACTIONS(2159), - [anon_sym_match] = ACTIONS(2159), - [anon_sym_select] = ACTIONS(2159), - [anon_sym_STAR_EQ] = ACTIONS(2159), - [anon_sym_SLASH_EQ] = ACTIONS(2159), - [anon_sym_PERCENT_EQ] = ACTIONS(2159), - [anon_sym_LT_LT_EQ] = ACTIONS(2159), - [anon_sym_GT_GT_EQ] = ACTIONS(2159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2159), - [anon_sym_AMP_EQ] = ACTIONS(2159), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2159), - [anon_sym_PLUS_EQ] = ACTIONS(2159), - [anon_sym_DASH_EQ] = ACTIONS(2159), - [anon_sym_PIPE_EQ] = ACTIONS(2159), - [anon_sym_CARET_EQ] = ACTIONS(2159), - [anon_sym_COLON_EQ] = ACTIONS(2159), - [anon_sym_lock] = ACTIONS(2159), - [anon_sym_rlock] = ACTIONS(2159), - [anon_sym_unsafe] = ACTIONS(2159), - [anon_sym_sql] = ACTIONS(2159), - [sym_int_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), - [sym_rune_literal] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_c_SQUOTE] = ACTIONS(2159), - [anon_sym_c_DQUOTE] = ACTIONS(2159), - [anon_sym_r_SQUOTE] = ACTIONS(2159), - [anon_sym_r_DQUOTE] = ACTIONS(2159), - [sym_pseudo_compile_time_identifier] = ACTIONS(2159), - [anon_sym_shared] = ACTIONS(2159), - [anon_sym_map_LBRACK] = ACTIONS(2159), - [anon_sym_chan] = ACTIONS(2159), - [anon_sym_thread] = ACTIONS(2159), - [anon_sym_atomic] = ACTIONS(2159), - [anon_sym_assert] = ACTIONS(2159), - [anon_sym_defer] = ACTIONS(2159), - [anon_sym_goto] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_DOLLARfor] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_POUND] = ACTIONS(2159), - [anon_sym_asm] = ACTIONS(2159), - [anon_sym_AT_LBRACK] = ACTIONS(2159), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4444), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [324] = { [sym_line_comment] = STATE(324), [sym_block_comment] = STATE(324), - [ts_builtin_sym_end] = ACTIONS(2161), - [sym_identifier] = ACTIONS(2163), - [anon_sym_LF] = ACTIONS(2163), - [anon_sym_CR] = ACTIONS(2163), - [anon_sym_CR_LF] = ACTIONS(2163), + [ts_builtin_sym_end] = ACTIONS(2313), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LF] = ACTIONS(2315), + [anon_sym_CR] = ACTIONS(2315), + [anon_sym_CR_LF] = ACTIONS(2315), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2163), - [anon_sym_as] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_COMMA] = ACTIONS(2163), - [anon_sym_const] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_EQ] = ACTIONS(2163), - [anon_sym___global] = ACTIONS(2163), - [anon_sym_type] = ACTIONS(2163), - [anon_sym_PIPE] = ACTIONS(2163), - [anon_sym_fn] = ACTIONS(2163), - [anon_sym_PLUS] = ACTIONS(2163), - [anon_sym_DASH] = ACTIONS(2163), - [anon_sym_STAR] = ACTIONS(2163), - [anon_sym_SLASH] = ACTIONS(2163), - [anon_sym_PERCENT] = ACTIONS(2163), - [anon_sym_LT] = ACTIONS(2163), - [anon_sym_GT] = ACTIONS(2163), - [anon_sym_EQ_EQ] = ACTIONS(2163), - [anon_sym_BANG_EQ] = ACTIONS(2163), - [anon_sym_LT_EQ] = ACTIONS(2163), - [anon_sym_GT_EQ] = ACTIONS(2163), - [anon_sym_LBRACK] = ACTIONS(2161), - [anon_sym_struct] = ACTIONS(2163), - [anon_sym_union] = ACTIONS(2163), - [anon_sym_pub] = ACTIONS(2163), - [anon_sym_mut] = ACTIONS(2163), - [anon_sym_enum] = ACTIONS(2163), - [anon_sym_interface] = ACTIONS(2163), - [anon_sym_PLUS_PLUS] = ACTIONS(2163), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [anon_sym_QMARK] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(2163), - [anon_sym_go] = ACTIONS(2163), - [anon_sym_spawn] = ACTIONS(2163), - [anon_sym_json_DOTdecode] = ACTIONS(2163), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2163), - [anon_sym_CARET] = ACTIONS(2163), - [anon_sym_AMP] = ACTIONS(2163), - [anon_sym_LT_DASH] = ACTIONS(2163), - [anon_sym_LT_LT] = ACTIONS(2163), - [anon_sym_GT_GT] = ACTIONS(2163), - [anon_sym_GT_GT_GT] = ACTIONS(2163), - [anon_sym_AMP_CARET] = ACTIONS(2163), - [anon_sym_AMP_AMP] = ACTIONS(2163), - [anon_sym_PIPE_PIPE] = ACTIONS(2163), - [anon_sym_or] = ACTIONS(2163), - [sym_none] = ACTIONS(2163), - [sym_true] = ACTIONS(2163), - [sym_false] = ACTIONS(2163), - [sym_nil] = ACTIONS(2163), - [anon_sym_QMARK_DOT] = ACTIONS(2163), - [anon_sym_POUND_LBRACK] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2163), - [anon_sym_DOLLARif] = ACTIONS(2163), - [anon_sym_is] = ACTIONS(2163), - [anon_sym_BANGis] = ACTIONS(2163), - [anon_sym_in] = ACTIONS(2163), - [anon_sym_BANGin] = ACTIONS(2163), - [anon_sym_match] = ACTIONS(2163), - [anon_sym_select] = ACTIONS(2163), - [anon_sym_STAR_EQ] = ACTIONS(2163), - [anon_sym_SLASH_EQ] = ACTIONS(2163), - [anon_sym_PERCENT_EQ] = ACTIONS(2163), - [anon_sym_LT_LT_EQ] = ACTIONS(2163), - [anon_sym_GT_GT_EQ] = ACTIONS(2163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2163), - [anon_sym_AMP_EQ] = ACTIONS(2163), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2163), - [anon_sym_PLUS_EQ] = ACTIONS(2163), - [anon_sym_DASH_EQ] = ACTIONS(2163), - [anon_sym_PIPE_EQ] = ACTIONS(2163), - [anon_sym_CARET_EQ] = ACTIONS(2163), - [anon_sym_COLON_EQ] = ACTIONS(2163), - [anon_sym_lock] = ACTIONS(2163), - [anon_sym_rlock] = ACTIONS(2163), - [anon_sym_unsafe] = ACTIONS(2163), - [anon_sym_sql] = ACTIONS(2163), - [sym_int_literal] = ACTIONS(2163), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(2163), - [anon_sym_c_SQUOTE] = ACTIONS(2163), - [anon_sym_c_DQUOTE] = ACTIONS(2163), - [anon_sym_r_SQUOTE] = ACTIONS(2163), - [anon_sym_r_DQUOTE] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(2163), - [anon_sym_shared] = ACTIONS(2163), - [anon_sym_map_LBRACK] = ACTIONS(2163), - [anon_sym_chan] = ACTIONS(2163), - [anon_sym_thread] = ACTIONS(2163), - [anon_sym_atomic] = ACTIONS(2163), - [anon_sym_assert] = ACTIONS(2163), - [anon_sym_defer] = ACTIONS(2163), - [anon_sym_goto] = ACTIONS(2163), - [anon_sym_break] = ACTIONS(2163), - [anon_sym_continue] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2163), - [anon_sym_DOLLARfor] = ACTIONS(2163), - [anon_sym_for] = ACTIONS(2163), - [anon_sym_POUND] = ACTIONS(2163), - [anon_sym_asm] = ACTIONS(2163), - [anon_sym_AT_LBRACK] = ACTIONS(2163), + [anon_sym_DOT] = ACTIONS(2315), + [anon_sym_as] = ACTIONS(2315), + [anon_sym_LBRACE] = ACTIONS(2315), + [anon_sym_COMMA] = ACTIONS(2315), + [anon_sym_const] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_EQ] = ACTIONS(2315), + [anon_sym___global] = ACTIONS(2315), + [anon_sym_type] = ACTIONS(2315), + [anon_sym_fn] = ACTIONS(2315), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2315), + [anon_sym_SLASH] = ACTIONS(2315), + [anon_sym_PERCENT] = ACTIONS(2315), + [anon_sym_LT] = ACTIONS(2315), + [anon_sym_GT] = ACTIONS(2315), + [anon_sym_EQ_EQ] = ACTIONS(2315), + [anon_sym_BANG_EQ] = ACTIONS(2315), + [anon_sym_LT_EQ] = ACTIONS(2315), + [anon_sym_GT_EQ] = ACTIONS(2315), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_struct] = ACTIONS(2315), + [anon_sym_union] = ACTIONS(2315), + [anon_sym_pub] = ACTIONS(2315), + [anon_sym_mut] = ACTIONS(2315), + [anon_sym_enum] = ACTIONS(2315), + [anon_sym_interface] = ACTIONS(2315), + [anon_sym_PLUS_PLUS] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2315), + [anon_sym_QMARK] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_go] = ACTIONS(2315), + [anon_sym_spawn] = ACTIONS(2315), + [anon_sym_json_DOTdecode] = ACTIONS(2315), + [anon_sym_PIPE] = ACTIONS(2315), + [anon_sym_LBRACK2] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_CARET] = ACTIONS(2315), + [anon_sym_AMP] = ACTIONS(2315), + [anon_sym_LT_DASH] = ACTIONS(2315), + [anon_sym_LT_LT] = ACTIONS(2315), + [anon_sym_GT_GT] = ACTIONS(2315), + [anon_sym_GT_GT_GT] = ACTIONS(2315), + [anon_sym_AMP_CARET] = ACTIONS(2315), + [anon_sym_AMP_AMP] = ACTIONS(2315), + [anon_sym_PIPE_PIPE] = ACTIONS(2315), + [anon_sym_or] = ACTIONS(2315), + [sym_none] = ACTIONS(2315), + [sym_true] = ACTIONS(2315), + [sym_false] = ACTIONS(2315), + [sym_nil] = ACTIONS(2315), + [anon_sym_QMARK_DOT] = ACTIONS(2315), + [anon_sym_POUND_LBRACK] = ACTIONS(2315), + [anon_sym_if] = ACTIONS(2315), + [anon_sym_DOLLARif] = ACTIONS(2315), + [anon_sym_is] = ACTIONS(2315), + [anon_sym_BANGis] = ACTIONS(2315), + [anon_sym_in] = ACTIONS(2315), + [anon_sym_BANGin] = ACTIONS(2315), + [anon_sym_match] = ACTIONS(2315), + [anon_sym_select] = ACTIONS(2315), + [anon_sym_STAR_EQ] = ACTIONS(2315), + [anon_sym_SLASH_EQ] = ACTIONS(2315), + [anon_sym_PERCENT_EQ] = ACTIONS(2315), + [anon_sym_LT_LT_EQ] = ACTIONS(2315), + [anon_sym_GT_GT_EQ] = ACTIONS(2315), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2315), + [anon_sym_AMP_EQ] = ACTIONS(2315), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2315), + [anon_sym_PLUS_EQ] = ACTIONS(2315), + [anon_sym_DASH_EQ] = ACTIONS(2315), + [anon_sym_PIPE_EQ] = ACTIONS(2315), + [anon_sym_CARET_EQ] = ACTIONS(2315), + [anon_sym_COLON_EQ] = ACTIONS(2315), + [anon_sym_lock] = ACTIONS(2315), + [anon_sym_rlock] = ACTIONS(2315), + [anon_sym_unsafe] = ACTIONS(2315), + [anon_sym_sql] = ACTIONS(2315), + [sym_int_literal] = ACTIONS(2315), + [sym_float_literal] = ACTIONS(2315), + [sym_rune_literal] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_DQUOTE] = ACTIONS(2315), + [anon_sym_c_SQUOTE] = ACTIONS(2315), + [anon_sym_c_DQUOTE] = ACTIONS(2315), + [anon_sym_r_SQUOTE] = ACTIONS(2315), + [anon_sym_r_DQUOTE] = ACTIONS(2315), + [sym_pseudo_compile_time_identifier] = ACTIONS(2315), + [anon_sym_shared] = ACTIONS(2315), + [anon_sym_map_LBRACK] = ACTIONS(2315), + [anon_sym_chan] = ACTIONS(2315), + [anon_sym_thread] = ACTIONS(2315), + [anon_sym_atomic] = ACTIONS(2315), + [anon_sym_assert] = ACTIONS(2315), + [anon_sym_defer] = ACTIONS(2315), + [anon_sym_goto] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(2315), + [anon_sym_continue] = ACTIONS(2315), + [anon_sym_return] = ACTIONS(2315), + [anon_sym_DOLLARfor] = ACTIONS(2315), + [anon_sym_for] = ACTIONS(2315), + [anon_sym_POUND] = ACTIONS(2315), + [anon_sym_asm] = ACTIONS(2315), + [anon_sym_AT_LBRACK] = ACTIONS(2315), }, [325] = { [sym_line_comment] = STATE(325), [sym_block_comment] = STATE(325), - [ts_builtin_sym_end] = ACTIONS(2165), - [sym_identifier] = ACTIONS(2167), - [anon_sym_LF] = ACTIONS(2167), - [anon_sym_CR] = ACTIONS(2167), - [anon_sym_CR_LF] = ACTIONS(2167), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2167), - [anon_sym_as] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_COMMA] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_EQ] = ACTIONS(2167), - [anon_sym___global] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_PIPE] = ACTIONS(2167), - [anon_sym_fn] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_STAR] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_PERCENT] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_GT] = ACTIONS(2167), - [anon_sym_EQ_EQ] = ACTIONS(2167), - [anon_sym_BANG_EQ] = ACTIONS(2167), - [anon_sym_LT_EQ] = ACTIONS(2167), - [anon_sym_GT_EQ] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_struct] = ACTIONS(2167), - [anon_sym_union] = ACTIONS(2167), - [anon_sym_pub] = ACTIONS(2167), - [anon_sym_mut] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [anon_sym_QMARK] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_go] = ACTIONS(2167), - [anon_sym_spawn] = ACTIONS(2167), - [anon_sym_json_DOTdecode] = ACTIONS(2167), - [anon_sym_LBRACK2] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_CARET] = ACTIONS(2167), - [anon_sym_AMP] = ACTIONS(2167), - [anon_sym_LT_DASH] = ACTIONS(2167), - [anon_sym_LT_LT] = ACTIONS(2167), - [anon_sym_GT_GT] = ACTIONS(2167), - [anon_sym_GT_GT_GT] = ACTIONS(2167), - [anon_sym_AMP_CARET] = ACTIONS(2167), - [anon_sym_AMP_AMP] = ACTIONS(2167), - [anon_sym_PIPE_PIPE] = ACTIONS(2167), - [anon_sym_or] = ACTIONS(2167), - [sym_none] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_nil] = ACTIONS(2167), - [anon_sym_QMARK_DOT] = ACTIONS(2167), - [anon_sym_POUND_LBRACK] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_DOLLARif] = ACTIONS(2167), - [anon_sym_is] = ACTIONS(2167), - [anon_sym_BANGis] = ACTIONS(2167), - [anon_sym_in] = ACTIONS(2167), - [anon_sym_BANGin] = ACTIONS(2167), - [anon_sym_match] = ACTIONS(2167), - [anon_sym_select] = ACTIONS(2167), - [anon_sym_STAR_EQ] = ACTIONS(2167), - [anon_sym_SLASH_EQ] = ACTIONS(2167), - [anon_sym_PERCENT_EQ] = ACTIONS(2167), - [anon_sym_LT_LT_EQ] = ACTIONS(2167), - [anon_sym_GT_GT_EQ] = ACTIONS(2167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2167), - [anon_sym_AMP_EQ] = ACTIONS(2167), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2167), - [anon_sym_PLUS_EQ] = ACTIONS(2167), - [anon_sym_DASH_EQ] = ACTIONS(2167), - [anon_sym_PIPE_EQ] = ACTIONS(2167), - [anon_sym_CARET_EQ] = ACTIONS(2167), - [anon_sym_COLON_EQ] = ACTIONS(2167), - [anon_sym_lock] = ACTIONS(2167), - [anon_sym_rlock] = ACTIONS(2167), - [anon_sym_unsafe] = ACTIONS(2167), - [anon_sym_sql] = ACTIONS(2167), - [sym_int_literal] = ACTIONS(2167), - [sym_float_literal] = ACTIONS(2167), - [sym_rune_literal] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_c_SQUOTE] = ACTIONS(2167), - [anon_sym_c_DQUOTE] = ACTIONS(2167), - [anon_sym_r_SQUOTE] = ACTIONS(2167), - [anon_sym_r_DQUOTE] = ACTIONS(2167), - [sym_pseudo_compile_time_identifier] = ACTIONS(2167), - [anon_sym_shared] = ACTIONS(2167), - [anon_sym_map_LBRACK] = ACTIONS(2167), - [anon_sym_chan] = ACTIONS(2167), - [anon_sym_thread] = ACTIONS(2167), - [anon_sym_atomic] = ACTIONS(2167), - [anon_sym_assert] = ACTIONS(2167), - [anon_sym_defer] = ACTIONS(2167), - [anon_sym_goto] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_DOLLARfor] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_POUND] = ACTIONS(2167), - [anon_sym_asm] = ACTIONS(2167), - [anon_sym_AT_LBRACK] = ACTIONS(2167), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym__array_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1356), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(2317), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [326] = { [sym_line_comment] = STATE(326), [sym_block_comment] = STATE(326), - [ts_builtin_sym_end] = ACTIONS(2169), - [sym_identifier] = ACTIONS(2171), - [anon_sym_LF] = ACTIONS(2171), - [anon_sym_CR] = ACTIONS(2171), - [anon_sym_CR_LF] = ACTIONS(2171), + [ts_builtin_sym_end] = ACTIONS(2319), + [sym_identifier] = ACTIONS(2321), + [anon_sym_LF] = ACTIONS(2321), + [anon_sym_CR] = ACTIONS(2321), + [anon_sym_CR_LF] = ACTIONS(2321), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_as] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_COMMA] = ACTIONS(2171), - [anon_sym_const] = ACTIONS(2171), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_EQ] = ACTIONS(2171), - [anon_sym___global] = ACTIONS(2171), - [anon_sym_type] = ACTIONS(2171), - [anon_sym_PIPE] = ACTIONS(2171), - [anon_sym_fn] = ACTIONS(2171), - [anon_sym_PLUS] = ACTIONS(2171), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_STAR] = ACTIONS(2171), - [anon_sym_SLASH] = ACTIONS(2171), - [anon_sym_PERCENT] = ACTIONS(2171), - [anon_sym_LT] = ACTIONS(2171), - [anon_sym_GT] = ACTIONS(2171), - [anon_sym_EQ_EQ] = ACTIONS(2171), - [anon_sym_BANG_EQ] = ACTIONS(2171), - [anon_sym_LT_EQ] = ACTIONS(2171), - [anon_sym_GT_EQ] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_struct] = ACTIONS(2171), - [anon_sym_union] = ACTIONS(2171), - [anon_sym_pub] = ACTIONS(2171), - [anon_sym_mut] = ACTIONS(2171), - [anon_sym_enum] = ACTIONS(2171), - [anon_sym_interface] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_QMARK] = ACTIONS(2171), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_go] = ACTIONS(2171), - [anon_sym_spawn] = ACTIONS(2171), - [anon_sym_json_DOTdecode] = ACTIONS(2171), - [anon_sym_LBRACK2] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_LT_DASH] = ACTIONS(2171), - [anon_sym_LT_LT] = ACTIONS(2171), - [anon_sym_GT_GT] = ACTIONS(2171), - [anon_sym_GT_GT_GT] = ACTIONS(2171), - [anon_sym_AMP_CARET] = ACTIONS(2171), - [anon_sym_AMP_AMP] = ACTIONS(2171), - [anon_sym_PIPE_PIPE] = ACTIONS(2171), - [anon_sym_or] = ACTIONS(2171), - [sym_none] = ACTIONS(2171), - [sym_true] = ACTIONS(2171), - [sym_false] = ACTIONS(2171), - [sym_nil] = ACTIONS(2171), - [anon_sym_QMARK_DOT] = ACTIONS(2171), - [anon_sym_POUND_LBRACK] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(2171), - [anon_sym_DOLLARif] = ACTIONS(2171), - [anon_sym_is] = ACTIONS(2171), - [anon_sym_BANGis] = ACTIONS(2171), - [anon_sym_in] = ACTIONS(2171), - [anon_sym_BANGin] = ACTIONS(2171), - [anon_sym_match] = ACTIONS(2171), - [anon_sym_select] = ACTIONS(2171), - [anon_sym_STAR_EQ] = ACTIONS(2171), - [anon_sym_SLASH_EQ] = ACTIONS(2171), - [anon_sym_PERCENT_EQ] = ACTIONS(2171), - [anon_sym_LT_LT_EQ] = ACTIONS(2171), - [anon_sym_GT_GT_EQ] = ACTIONS(2171), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2171), - [anon_sym_AMP_EQ] = ACTIONS(2171), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2171), - [anon_sym_PLUS_EQ] = ACTIONS(2171), - [anon_sym_DASH_EQ] = ACTIONS(2171), - [anon_sym_PIPE_EQ] = ACTIONS(2171), - [anon_sym_CARET_EQ] = ACTIONS(2171), - [anon_sym_COLON_EQ] = ACTIONS(2171), - [anon_sym_lock] = ACTIONS(2171), - [anon_sym_rlock] = ACTIONS(2171), - [anon_sym_unsafe] = ACTIONS(2171), - [anon_sym_sql] = ACTIONS(2171), - [sym_int_literal] = ACTIONS(2171), - [sym_float_literal] = ACTIONS(2171), - [sym_rune_literal] = ACTIONS(2171), - [anon_sym_SQUOTE] = ACTIONS(2171), - [anon_sym_DQUOTE] = ACTIONS(2171), - [anon_sym_c_SQUOTE] = ACTIONS(2171), - [anon_sym_c_DQUOTE] = ACTIONS(2171), - [anon_sym_r_SQUOTE] = ACTIONS(2171), - [anon_sym_r_DQUOTE] = ACTIONS(2171), - [sym_pseudo_compile_time_identifier] = ACTIONS(2171), - [anon_sym_shared] = ACTIONS(2171), - [anon_sym_map_LBRACK] = ACTIONS(2171), - [anon_sym_chan] = ACTIONS(2171), - [anon_sym_thread] = ACTIONS(2171), - [anon_sym_atomic] = ACTIONS(2171), - [anon_sym_assert] = ACTIONS(2171), - [anon_sym_defer] = ACTIONS(2171), - [anon_sym_goto] = ACTIONS(2171), - [anon_sym_break] = ACTIONS(2171), - [anon_sym_continue] = ACTIONS(2171), - [anon_sym_return] = ACTIONS(2171), - [anon_sym_DOLLARfor] = ACTIONS(2171), - [anon_sym_for] = ACTIONS(2171), - [anon_sym_POUND] = ACTIONS(2171), - [anon_sym_asm] = ACTIONS(2171), - [anon_sym_AT_LBRACK] = ACTIONS(2171), + [anon_sym_DOT] = ACTIONS(2321), + [anon_sym_as] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2321), + [anon_sym_COMMA] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_LPAREN] = ACTIONS(2321), + [anon_sym_EQ] = ACTIONS(2321), + [anon_sym___global] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2321), + [anon_sym_fn] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(2321), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_SLASH] = ACTIONS(2321), + [anon_sym_PERCENT] = ACTIONS(2321), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_GT] = ACTIONS(2321), + [anon_sym_EQ_EQ] = ACTIONS(2321), + [anon_sym_BANG_EQ] = ACTIONS(2321), + [anon_sym_LT_EQ] = ACTIONS(2321), + [anon_sym_GT_EQ] = ACTIONS(2321), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_struct] = ACTIONS(2321), + [anon_sym_union] = ACTIONS(2321), + [anon_sym_pub] = ACTIONS(2321), + [anon_sym_mut] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), + [anon_sym_interface] = ACTIONS(2321), + [anon_sym_PLUS_PLUS] = ACTIONS(2321), + [anon_sym_DASH_DASH] = ACTIONS(2321), + [anon_sym_QMARK] = ACTIONS(2321), + [anon_sym_BANG] = ACTIONS(2321), + [anon_sym_go] = ACTIONS(2321), + [anon_sym_spawn] = ACTIONS(2321), + [anon_sym_json_DOTdecode] = ACTIONS(2321), + [anon_sym_PIPE] = ACTIONS(2321), + [anon_sym_LBRACK2] = ACTIONS(2321), + [anon_sym_TILDE] = ACTIONS(2321), + [anon_sym_CARET] = ACTIONS(2321), + [anon_sym_AMP] = ACTIONS(2321), + [anon_sym_LT_DASH] = ACTIONS(2321), + [anon_sym_LT_LT] = ACTIONS(2321), + [anon_sym_GT_GT] = ACTIONS(2321), + [anon_sym_GT_GT_GT] = ACTIONS(2321), + [anon_sym_AMP_CARET] = ACTIONS(2321), + [anon_sym_AMP_AMP] = ACTIONS(2321), + [anon_sym_PIPE_PIPE] = ACTIONS(2321), + [anon_sym_or] = ACTIONS(2321), + [sym_none] = ACTIONS(2321), + [sym_true] = ACTIONS(2321), + [sym_false] = ACTIONS(2321), + [sym_nil] = ACTIONS(2321), + [anon_sym_QMARK_DOT] = ACTIONS(2321), + [anon_sym_POUND_LBRACK] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_DOLLARif] = ACTIONS(2321), + [anon_sym_is] = ACTIONS(2321), + [anon_sym_BANGis] = ACTIONS(2321), + [anon_sym_in] = ACTIONS(2321), + [anon_sym_BANGin] = ACTIONS(2321), + [anon_sym_match] = ACTIONS(2321), + [anon_sym_select] = ACTIONS(2321), + [anon_sym_STAR_EQ] = ACTIONS(2321), + [anon_sym_SLASH_EQ] = ACTIONS(2321), + [anon_sym_PERCENT_EQ] = ACTIONS(2321), + [anon_sym_LT_LT_EQ] = ACTIONS(2321), + [anon_sym_GT_GT_EQ] = ACTIONS(2321), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2321), + [anon_sym_AMP_EQ] = ACTIONS(2321), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2321), + [anon_sym_PLUS_EQ] = ACTIONS(2321), + [anon_sym_DASH_EQ] = ACTIONS(2321), + [anon_sym_PIPE_EQ] = ACTIONS(2321), + [anon_sym_CARET_EQ] = ACTIONS(2321), + [anon_sym_COLON_EQ] = ACTIONS(2321), + [anon_sym_lock] = ACTIONS(2321), + [anon_sym_rlock] = ACTIONS(2321), + [anon_sym_unsafe] = ACTIONS(2321), + [anon_sym_sql] = ACTIONS(2321), + [sym_int_literal] = ACTIONS(2321), + [sym_float_literal] = ACTIONS(2321), + [sym_rune_literal] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE] = ACTIONS(2321), + [anon_sym_c_SQUOTE] = ACTIONS(2321), + [anon_sym_c_DQUOTE] = ACTIONS(2321), + [anon_sym_r_SQUOTE] = ACTIONS(2321), + [anon_sym_r_DQUOTE] = ACTIONS(2321), + [sym_pseudo_compile_time_identifier] = ACTIONS(2321), + [anon_sym_shared] = ACTIONS(2321), + [anon_sym_map_LBRACK] = ACTIONS(2321), + [anon_sym_chan] = ACTIONS(2321), + [anon_sym_thread] = ACTIONS(2321), + [anon_sym_atomic] = ACTIONS(2321), + [anon_sym_assert] = ACTIONS(2321), + [anon_sym_defer] = ACTIONS(2321), + [anon_sym_goto] = ACTIONS(2321), + [anon_sym_break] = ACTIONS(2321), + [anon_sym_continue] = ACTIONS(2321), + [anon_sym_return] = ACTIONS(2321), + [anon_sym_DOLLARfor] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_POUND] = ACTIONS(2321), + [anon_sym_asm] = ACTIONS(2321), + [anon_sym_AT_LBRACK] = ACTIONS(2321), }, [327] = { [sym_line_comment] = STATE(327), [sym_block_comment] = STATE(327), - [ts_builtin_sym_end] = ACTIONS(2173), - [sym_identifier] = ACTIONS(2175), - [anon_sym_LF] = ACTIONS(2175), - [anon_sym_CR] = ACTIONS(2175), - [anon_sym_CR_LF] = ACTIONS(2175), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_EQ] = ACTIONS(2175), - [anon_sym___global] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2175), - [anon_sym_PIPE] = ACTIONS(2175), - [anon_sym_fn] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2175), - [anon_sym_PERCENT] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_GT] = ACTIONS(2175), - [anon_sym_EQ_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ] = ACTIONS(2175), - [anon_sym_LT_EQ] = ACTIONS(2175), - [anon_sym_GT_EQ] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_struct] = ACTIONS(2175), - [anon_sym_union] = ACTIONS(2175), - [anon_sym_pub] = ACTIONS(2175), - [anon_sym_mut] = ACTIONS(2175), - [anon_sym_enum] = ACTIONS(2175), - [anon_sym_interface] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [anon_sym_QMARK] = ACTIONS(2175), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_go] = ACTIONS(2175), - [anon_sym_spawn] = ACTIONS(2175), - [anon_sym_json_DOTdecode] = ACTIONS(2175), - [anon_sym_LBRACK2] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_CARET] = ACTIONS(2175), - [anon_sym_AMP] = ACTIONS(2175), - [anon_sym_LT_DASH] = ACTIONS(2175), - [anon_sym_LT_LT] = ACTIONS(2175), - [anon_sym_GT_GT] = ACTIONS(2175), - [anon_sym_GT_GT_GT] = ACTIONS(2175), - [anon_sym_AMP_CARET] = ACTIONS(2175), - [anon_sym_AMP_AMP] = ACTIONS(2175), - [anon_sym_PIPE_PIPE] = ACTIONS(2175), - [anon_sym_or] = ACTIONS(2175), - [sym_none] = ACTIONS(2175), - [sym_true] = ACTIONS(2175), - [sym_false] = ACTIONS(2175), - [sym_nil] = ACTIONS(2175), - [anon_sym_QMARK_DOT] = ACTIONS(2175), - [anon_sym_POUND_LBRACK] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_DOLLARif] = ACTIONS(2175), - [anon_sym_is] = ACTIONS(2175), - [anon_sym_BANGis] = ACTIONS(2175), - [anon_sym_in] = ACTIONS(2175), - [anon_sym_BANGin] = ACTIONS(2175), - [anon_sym_match] = ACTIONS(2175), - [anon_sym_select] = ACTIONS(2175), - [anon_sym_STAR_EQ] = ACTIONS(2175), - [anon_sym_SLASH_EQ] = ACTIONS(2175), - [anon_sym_PERCENT_EQ] = ACTIONS(2175), - [anon_sym_LT_LT_EQ] = ACTIONS(2175), - [anon_sym_GT_GT_EQ] = ACTIONS(2175), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2175), - [anon_sym_AMP_EQ] = ACTIONS(2175), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2175), - [anon_sym_PLUS_EQ] = ACTIONS(2175), - [anon_sym_DASH_EQ] = ACTIONS(2175), - [anon_sym_PIPE_EQ] = ACTIONS(2175), - [anon_sym_CARET_EQ] = ACTIONS(2175), - [anon_sym_COLON_EQ] = ACTIONS(2175), - [anon_sym_lock] = ACTIONS(2175), - [anon_sym_rlock] = ACTIONS(2175), - [anon_sym_unsafe] = ACTIONS(2175), - [anon_sym_sql] = ACTIONS(2175), - [sym_int_literal] = ACTIONS(2175), - [sym_float_literal] = ACTIONS(2175), - [sym_rune_literal] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_c_SQUOTE] = ACTIONS(2175), - [anon_sym_c_DQUOTE] = ACTIONS(2175), - [anon_sym_r_SQUOTE] = ACTIONS(2175), - [anon_sym_r_DQUOTE] = ACTIONS(2175), - [sym_pseudo_compile_time_identifier] = ACTIONS(2175), - [anon_sym_shared] = ACTIONS(2175), - [anon_sym_map_LBRACK] = ACTIONS(2175), - [anon_sym_chan] = ACTIONS(2175), - [anon_sym_thread] = ACTIONS(2175), - [anon_sym_atomic] = ACTIONS(2175), - [anon_sym_assert] = ACTIONS(2175), - [anon_sym_defer] = ACTIONS(2175), - [anon_sym_goto] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_DOLLARfor] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_POUND] = ACTIONS(2175), - [anon_sym_asm] = ACTIONS(2175), - [anon_sym_AT_LBRACK] = ACTIONS(2175), + [sym__expression] = STATE(2649), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3638), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_range] = STATE(4421), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1486), }, [328] = { [sym_line_comment] = STATE(328), [sym_block_comment] = STATE(328), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4372), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4581), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(2323), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -60961,3825 +61256,3825 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [329] = { [sym_line_comment] = STATE(329), [sym_block_comment] = STATE(329), - [ts_builtin_sym_end] = ACTIONS(2179), - [sym_identifier] = ACTIONS(2181), - [anon_sym_LF] = ACTIONS(2181), - [anon_sym_CR] = ACTIONS(2181), - [anon_sym_CR_LF] = ACTIONS(2181), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2181), - [anon_sym_as] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_COMMA] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_EQ] = ACTIONS(2181), - [anon_sym___global] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_PIPE] = ACTIONS(2181), - [anon_sym_fn] = ACTIONS(2181), - [anon_sym_PLUS] = ACTIONS(2181), - [anon_sym_DASH] = ACTIONS(2181), - [anon_sym_STAR] = ACTIONS(2181), - [anon_sym_SLASH] = ACTIONS(2181), - [anon_sym_PERCENT] = ACTIONS(2181), - [anon_sym_LT] = ACTIONS(2181), - [anon_sym_GT] = ACTIONS(2181), - [anon_sym_EQ_EQ] = ACTIONS(2181), - [anon_sym_BANG_EQ] = ACTIONS(2181), - [anon_sym_LT_EQ] = ACTIONS(2181), - [anon_sym_GT_EQ] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2179), - [anon_sym_struct] = ACTIONS(2181), - [anon_sym_union] = ACTIONS(2181), - [anon_sym_pub] = ACTIONS(2181), - [anon_sym_mut] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [anon_sym_interface] = ACTIONS(2181), - [anon_sym_PLUS_PLUS] = ACTIONS(2181), - [anon_sym_DASH_DASH] = ACTIONS(2181), - [anon_sym_QMARK] = ACTIONS(2181), - [anon_sym_BANG] = ACTIONS(2181), - [anon_sym_go] = ACTIONS(2181), - [anon_sym_spawn] = ACTIONS(2181), - [anon_sym_json_DOTdecode] = ACTIONS(2181), - [anon_sym_LBRACK2] = ACTIONS(2181), - [anon_sym_TILDE] = ACTIONS(2181), - [anon_sym_CARET] = ACTIONS(2181), - [anon_sym_AMP] = ACTIONS(2181), - [anon_sym_LT_DASH] = ACTIONS(2181), - [anon_sym_LT_LT] = ACTIONS(2181), - [anon_sym_GT_GT] = ACTIONS(2181), - [anon_sym_GT_GT_GT] = ACTIONS(2181), - [anon_sym_AMP_CARET] = ACTIONS(2181), - [anon_sym_AMP_AMP] = ACTIONS(2181), - [anon_sym_PIPE_PIPE] = ACTIONS(2181), - [anon_sym_or] = ACTIONS(2181), - [sym_none] = ACTIONS(2181), - [sym_true] = ACTIONS(2181), - [sym_false] = ACTIONS(2181), - [sym_nil] = ACTIONS(2181), - [anon_sym_QMARK_DOT] = ACTIONS(2181), - [anon_sym_POUND_LBRACK] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_DOLLARif] = ACTIONS(2181), - [anon_sym_is] = ACTIONS(2181), - [anon_sym_BANGis] = ACTIONS(2181), - [anon_sym_in] = ACTIONS(2181), - [anon_sym_BANGin] = ACTIONS(2181), - [anon_sym_match] = ACTIONS(2181), - [anon_sym_select] = ACTIONS(2181), - [anon_sym_STAR_EQ] = ACTIONS(2181), - [anon_sym_SLASH_EQ] = ACTIONS(2181), - [anon_sym_PERCENT_EQ] = ACTIONS(2181), - [anon_sym_LT_LT_EQ] = ACTIONS(2181), - [anon_sym_GT_GT_EQ] = ACTIONS(2181), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2181), - [anon_sym_AMP_EQ] = ACTIONS(2181), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2181), - [anon_sym_PLUS_EQ] = ACTIONS(2181), - [anon_sym_DASH_EQ] = ACTIONS(2181), - [anon_sym_PIPE_EQ] = ACTIONS(2181), - [anon_sym_CARET_EQ] = ACTIONS(2181), - [anon_sym_COLON_EQ] = ACTIONS(2181), - [anon_sym_lock] = ACTIONS(2181), - [anon_sym_rlock] = ACTIONS(2181), - [anon_sym_unsafe] = ACTIONS(2181), - [anon_sym_sql] = ACTIONS(2181), - [sym_int_literal] = ACTIONS(2181), - [sym_float_literal] = ACTIONS(2181), - [sym_rune_literal] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_DQUOTE] = ACTIONS(2181), - [anon_sym_c_SQUOTE] = ACTIONS(2181), - [anon_sym_c_DQUOTE] = ACTIONS(2181), - [anon_sym_r_SQUOTE] = ACTIONS(2181), - [anon_sym_r_DQUOTE] = ACTIONS(2181), - [sym_pseudo_compile_time_identifier] = ACTIONS(2181), - [anon_sym_shared] = ACTIONS(2181), - [anon_sym_map_LBRACK] = ACTIONS(2181), - [anon_sym_chan] = ACTIONS(2181), - [anon_sym_thread] = ACTIONS(2181), - [anon_sym_atomic] = ACTIONS(2181), - [anon_sym_assert] = ACTIONS(2181), - [anon_sym_defer] = ACTIONS(2181), - [anon_sym_goto] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_DOLLARfor] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_POUND] = ACTIONS(2181), - [anon_sym_asm] = ACTIONS(2181), - [anon_sym_AT_LBRACK] = ACTIONS(2181), + [sym__expression] = STATE(2649), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_range] = STATE(4421), + [sym_identifier] = ACTIONS(1424), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1486), }, [330] = { [sym_line_comment] = STATE(330), [sym_block_comment] = STATE(330), - [ts_builtin_sym_end] = ACTIONS(2183), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LF] = ACTIONS(2185), - [anon_sym_CR] = ACTIONS(2185), - [anon_sym_CR_LF] = ACTIONS(2185), + [ts_builtin_sym_end] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1845), + [anon_sym_LF] = ACTIONS(1845), + [anon_sym_CR] = ACTIONS(1845), + [anon_sym_CR_LF] = ACTIONS(1845), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_COMMA] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym_EQ] = ACTIONS(2185), - [anon_sym___global] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_PIPE] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(2185), - [anon_sym_SLASH] = ACTIONS(2185), - [anon_sym_PERCENT] = ACTIONS(2185), - [anon_sym_LT] = ACTIONS(2185), - [anon_sym_GT] = ACTIONS(2185), - [anon_sym_EQ_EQ] = ACTIONS(2185), - [anon_sym_BANG_EQ] = ACTIONS(2185), - [anon_sym_LT_EQ] = ACTIONS(2185), - [anon_sym_GT_EQ] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_mut] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_interface] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_QMARK] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_go] = ACTIONS(2185), - [anon_sym_spawn] = ACTIONS(2185), - [anon_sym_json_DOTdecode] = ACTIONS(2185), - [anon_sym_LBRACK2] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_LT_DASH] = ACTIONS(2185), - [anon_sym_LT_LT] = ACTIONS(2185), - [anon_sym_GT_GT] = ACTIONS(2185), - [anon_sym_GT_GT_GT] = ACTIONS(2185), - [anon_sym_AMP_CARET] = ACTIONS(2185), - [anon_sym_AMP_AMP] = ACTIONS(2185), - [anon_sym_PIPE_PIPE] = ACTIONS(2185), - [anon_sym_or] = ACTIONS(2185), - [sym_none] = ACTIONS(2185), - [sym_true] = ACTIONS(2185), - [sym_false] = ACTIONS(2185), - [sym_nil] = ACTIONS(2185), - [anon_sym_QMARK_DOT] = ACTIONS(2185), - [anon_sym_POUND_LBRACK] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_DOLLARif] = ACTIONS(2185), - [anon_sym_is] = ACTIONS(2185), - [anon_sym_BANGis] = ACTIONS(2185), - [anon_sym_in] = ACTIONS(2185), - [anon_sym_BANGin] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_select] = ACTIONS(2185), - [anon_sym_STAR_EQ] = ACTIONS(2185), - [anon_sym_SLASH_EQ] = ACTIONS(2185), - [anon_sym_PERCENT_EQ] = ACTIONS(2185), - [anon_sym_LT_LT_EQ] = ACTIONS(2185), - [anon_sym_GT_GT_EQ] = ACTIONS(2185), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2185), - [anon_sym_AMP_EQ] = ACTIONS(2185), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2185), - [anon_sym_PLUS_EQ] = ACTIONS(2185), - [anon_sym_DASH_EQ] = ACTIONS(2185), - [anon_sym_PIPE_EQ] = ACTIONS(2185), - [anon_sym_CARET_EQ] = ACTIONS(2185), - [anon_sym_COLON_EQ] = ACTIONS(2185), - [anon_sym_lock] = ACTIONS(2185), - [anon_sym_rlock] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_sql] = ACTIONS(2185), - [sym_int_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_rune_literal] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_DQUOTE] = ACTIONS(2185), - [anon_sym_c_SQUOTE] = ACTIONS(2185), - [anon_sym_c_DQUOTE] = ACTIONS(2185), - [anon_sym_r_SQUOTE] = ACTIONS(2185), - [anon_sym_r_DQUOTE] = ACTIONS(2185), - [sym_pseudo_compile_time_identifier] = ACTIONS(2185), - [anon_sym_shared] = ACTIONS(2185), - [anon_sym_map_LBRACK] = ACTIONS(2185), - [anon_sym_chan] = ACTIONS(2185), - [anon_sym_thread] = ACTIONS(2185), - [anon_sym_atomic] = ACTIONS(2185), - [anon_sym_assert] = ACTIONS(2185), - [anon_sym_defer] = ACTIONS(2185), - [anon_sym_goto] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_DOLLARfor] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_POUND] = ACTIONS(2185), - [anon_sym_asm] = ACTIONS(2185), - [anon_sym_AT_LBRACK] = ACTIONS(2185), + [anon_sym_DOT] = ACTIONS(1845), + [anon_sym_as] = ACTIONS(1845), + [anon_sym_LBRACE] = ACTIONS(1845), + [anon_sym_COMMA] = ACTIONS(1845), + [anon_sym_const] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_EQ] = ACTIONS(1845), + [anon_sym___global] = ACTIONS(1845), + [anon_sym_type] = ACTIONS(1845), + [anon_sym_fn] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1845), + [anon_sym_SLASH] = ACTIONS(1845), + [anon_sym_PERCENT] = ACTIONS(1845), + [anon_sym_LT] = ACTIONS(1845), + [anon_sym_GT] = ACTIONS(1845), + [anon_sym_EQ_EQ] = ACTIONS(1845), + [anon_sym_BANG_EQ] = ACTIONS(1845), + [anon_sym_LT_EQ] = ACTIONS(1845), + [anon_sym_GT_EQ] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(1847), + [anon_sym_struct] = ACTIONS(1845), + [anon_sym_union] = ACTIONS(1845), + [anon_sym_pub] = ACTIONS(1845), + [anon_sym_mut] = ACTIONS(1845), + [anon_sym_enum] = ACTIONS(1845), + [anon_sym_interface] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_QMARK] = ACTIONS(1845), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_go] = ACTIONS(1845), + [anon_sym_spawn] = ACTIONS(1845), + [anon_sym_json_DOTdecode] = ACTIONS(1845), + [anon_sym_PIPE] = ACTIONS(1845), + [anon_sym_LBRACK2] = ACTIONS(1845), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_LT_DASH] = ACTIONS(1845), + [anon_sym_LT_LT] = ACTIONS(1845), + [anon_sym_GT_GT] = ACTIONS(1845), + [anon_sym_GT_GT_GT] = ACTIONS(1845), + [anon_sym_AMP_CARET] = ACTIONS(1845), + [anon_sym_AMP_AMP] = ACTIONS(1845), + [anon_sym_PIPE_PIPE] = ACTIONS(1845), + [anon_sym_or] = ACTIONS(1845), + [sym_none] = ACTIONS(1845), + [sym_true] = ACTIONS(1845), + [sym_false] = ACTIONS(1845), + [sym_nil] = ACTIONS(1845), + [anon_sym_QMARK_DOT] = ACTIONS(1845), + [anon_sym_POUND_LBRACK] = ACTIONS(1845), + [anon_sym_if] = ACTIONS(1845), + [anon_sym_DOLLARif] = ACTIONS(1845), + [anon_sym_is] = ACTIONS(1845), + [anon_sym_BANGis] = ACTIONS(1845), + [anon_sym_in] = ACTIONS(1845), + [anon_sym_BANGin] = ACTIONS(1845), + [anon_sym_match] = ACTIONS(1845), + [anon_sym_select] = ACTIONS(1845), + [anon_sym_STAR_EQ] = ACTIONS(1845), + [anon_sym_SLASH_EQ] = ACTIONS(1845), + [anon_sym_PERCENT_EQ] = ACTIONS(1845), + [anon_sym_LT_LT_EQ] = ACTIONS(1845), + [anon_sym_GT_GT_EQ] = ACTIONS(1845), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1845), + [anon_sym_AMP_EQ] = ACTIONS(1845), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1845), + [anon_sym_PLUS_EQ] = ACTIONS(1845), + [anon_sym_DASH_EQ] = ACTIONS(1845), + [anon_sym_PIPE_EQ] = ACTIONS(1845), + [anon_sym_CARET_EQ] = ACTIONS(1845), + [anon_sym_COLON_EQ] = ACTIONS(1845), + [anon_sym_lock] = ACTIONS(1845), + [anon_sym_rlock] = ACTIONS(1845), + [anon_sym_unsafe] = ACTIONS(1845), + [anon_sym_sql] = ACTIONS(1845), + [sym_int_literal] = ACTIONS(1845), + [sym_float_literal] = ACTIONS(1845), + [sym_rune_literal] = ACTIONS(1845), + [anon_sym_SQUOTE] = ACTIONS(1845), + [anon_sym_DQUOTE] = ACTIONS(1845), + [anon_sym_c_SQUOTE] = ACTIONS(1845), + [anon_sym_c_DQUOTE] = ACTIONS(1845), + [anon_sym_r_SQUOTE] = ACTIONS(1845), + [anon_sym_r_DQUOTE] = ACTIONS(1845), + [sym_pseudo_compile_time_identifier] = ACTIONS(1845), + [anon_sym_shared] = ACTIONS(1845), + [anon_sym_map_LBRACK] = ACTIONS(1845), + [anon_sym_chan] = ACTIONS(1845), + [anon_sym_thread] = ACTIONS(1845), + [anon_sym_atomic] = ACTIONS(1845), + [anon_sym_assert] = ACTIONS(1845), + [anon_sym_defer] = ACTIONS(1845), + [anon_sym_goto] = ACTIONS(1845), + [anon_sym_break] = ACTIONS(1845), + [anon_sym_continue] = ACTIONS(1845), + [anon_sym_return] = ACTIONS(1845), + [anon_sym_DOLLARfor] = ACTIONS(1845), + [anon_sym_for] = ACTIONS(1845), + [anon_sym_POUND] = ACTIONS(1845), + [anon_sym_asm] = ACTIONS(1845), + [anon_sym_AT_LBRACK] = ACTIONS(1845), }, [331] = { [sym_line_comment] = STATE(331), [sym_block_comment] = STATE(331), - [ts_builtin_sym_end] = ACTIONS(2187), - [sym_identifier] = ACTIONS(2189), - [anon_sym_LF] = ACTIONS(2189), - [anon_sym_CR] = ACTIONS(2189), - [anon_sym_CR_LF] = ACTIONS(2189), + [ts_builtin_sym_end] = ACTIONS(2325), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LF] = ACTIONS(2327), + [anon_sym_CR] = ACTIONS(2327), + [anon_sym_CR_LF] = ACTIONS(2327), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2189), - [anon_sym_as] = ACTIONS(2189), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_COMMA] = ACTIONS(2189), - [anon_sym_const] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_EQ] = ACTIONS(2189), - [anon_sym___global] = ACTIONS(2189), - [anon_sym_type] = ACTIONS(2189), - [anon_sym_PIPE] = ACTIONS(2189), - [anon_sym_fn] = ACTIONS(2189), - [anon_sym_PLUS] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2189), - [anon_sym_STAR] = ACTIONS(2189), - [anon_sym_SLASH] = ACTIONS(2189), - [anon_sym_PERCENT] = ACTIONS(2189), - [anon_sym_LT] = ACTIONS(2189), - [anon_sym_GT] = ACTIONS(2189), - [anon_sym_EQ_EQ] = ACTIONS(2189), - [anon_sym_BANG_EQ] = ACTIONS(2189), - [anon_sym_LT_EQ] = ACTIONS(2189), - [anon_sym_GT_EQ] = ACTIONS(2189), - [anon_sym_LBRACK] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_pub] = ACTIONS(2189), - [anon_sym_mut] = ACTIONS(2189), - [anon_sym_enum] = ACTIONS(2189), - [anon_sym_interface] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [anon_sym_QMARK] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_go] = ACTIONS(2189), - [anon_sym_spawn] = ACTIONS(2189), - [anon_sym_json_DOTdecode] = ACTIONS(2189), - [anon_sym_LBRACK2] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_CARET] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2189), - [anon_sym_LT_DASH] = ACTIONS(2189), - [anon_sym_LT_LT] = ACTIONS(2189), - [anon_sym_GT_GT] = ACTIONS(2189), - [anon_sym_GT_GT_GT] = ACTIONS(2189), - [anon_sym_AMP_CARET] = ACTIONS(2189), - [anon_sym_AMP_AMP] = ACTIONS(2189), - [anon_sym_PIPE_PIPE] = ACTIONS(2189), - [anon_sym_or] = ACTIONS(2189), - [sym_none] = ACTIONS(2189), - [sym_true] = ACTIONS(2189), - [sym_false] = ACTIONS(2189), - [sym_nil] = ACTIONS(2189), - [anon_sym_QMARK_DOT] = ACTIONS(2189), - [anon_sym_POUND_LBRACK] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_DOLLARif] = ACTIONS(2189), - [anon_sym_is] = ACTIONS(2189), - [anon_sym_BANGis] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(2189), - [anon_sym_BANGin] = ACTIONS(2189), - [anon_sym_match] = ACTIONS(2189), - [anon_sym_select] = ACTIONS(2189), - [anon_sym_STAR_EQ] = ACTIONS(2189), - [anon_sym_SLASH_EQ] = ACTIONS(2189), - [anon_sym_PERCENT_EQ] = ACTIONS(2189), - [anon_sym_LT_LT_EQ] = ACTIONS(2189), - [anon_sym_GT_GT_EQ] = ACTIONS(2189), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2189), - [anon_sym_AMP_EQ] = ACTIONS(2189), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2189), - [anon_sym_PLUS_EQ] = ACTIONS(2189), - [anon_sym_DASH_EQ] = ACTIONS(2189), - [anon_sym_PIPE_EQ] = ACTIONS(2189), - [anon_sym_CARET_EQ] = ACTIONS(2189), - [anon_sym_COLON_EQ] = ACTIONS(2189), - [anon_sym_lock] = ACTIONS(2189), - [anon_sym_rlock] = ACTIONS(2189), - [anon_sym_unsafe] = ACTIONS(2189), - [anon_sym_sql] = ACTIONS(2189), - [sym_int_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_rune_literal] = ACTIONS(2189), - [anon_sym_SQUOTE] = ACTIONS(2189), - [anon_sym_DQUOTE] = ACTIONS(2189), - [anon_sym_c_SQUOTE] = ACTIONS(2189), - [anon_sym_c_DQUOTE] = ACTIONS(2189), - [anon_sym_r_SQUOTE] = ACTIONS(2189), - [anon_sym_r_DQUOTE] = ACTIONS(2189), - [sym_pseudo_compile_time_identifier] = ACTIONS(2189), - [anon_sym_shared] = ACTIONS(2189), - [anon_sym_map_LBRACK] = ACTIONS(2189), - [anon_sym_chan] = ACTIONS(2189), - [anon_sym_thread] = ACTIONS(2189), - [anon_sym_atomic] = ACTIONS(2189), - [anon_sym_assert] = ACTIONS(2189), - [anon_sym_defer] = ACTIONS(2189), - [anon_sym_goto] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), - [anon_sym_return] = ACTIONS(2189), - [anon_sym_DOLLARfor] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_POUND] = ACTIONS(2189), - [anon_sym_asm] = ACTIONS(2189), - [anon_sym_AT_LBRACK] = ACTIONS(2189), + [anon_sym_DOT] = ACTIONS(2327), + [anon_sym_as] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_COMMA] = ACTIONS(2327), + [anon_sym_const] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_EQ] = ACTIONS(2327), + [anon_sym___global] = ACTIONS(2327), + [anon_sym_type] = ACTIONS(2327), + [anon_sym_fn] = ACTIONS(2327), + [anon_sym_PLUS] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2327), + [anon_sym_SLASH] = ACTIONS(2327), + [anon_sym_PERCENT] = ACTIONS(2327), + [anon_sym_LT] = ACTIONS(2327), + [anon_sym_GT] = ACTIONS(2327), + [anon_sym_EQ_EQ] = ACTIONS(2327), + [anon_sym_BANG_EQ] = ACTIONS(2327), + [anon_sym_LT_EQ] = ACTIONS(2327), + [anon_sym_GT_EQ] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2325), + [anon_sym_struct] = ACTIONS(2327), + [anon_sym_union] = ACTIONS(2327), + [anon_sym_pub] = ACTIONS(2327), + [anon_sym_mut] = ACTIONS(2327), + [anon_sym_enum] = ACTIONS(2327), + [anon_sym_interface] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [anon_sym_QMARK] = ACTIONS(2327), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_go] = ACTIONS(2327), + [anon_sym_spawn] = ACTIONS(2327), + [anon_sym_json_DOTdecode] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_LBRACK2] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_CARET] = ACTIONS(2327), + [anon_sym_AMP] = ACTIONS(2327), + [anon_sym_LT_DASH] = ACTIONS(2327), + [anon_sym_LT_LT] = ACTIONS(2327), + [anon_sym_GT_GT] = ACTIONS(2327), + [anon_sym_GT_GT_GT] = ACTIONS(2327), + [anon_sym_AMP_CARET] = ACTIONS(2327), + [anon_sym_AMP_AMP] = ACTIONS(2327), + [anon_sym_PIPE_PIPE] = ACTIONS(2327), + [anon_sym_or] = ACTIONS(2327), + [sym_none] = ACTIONS(2327), + [sym_true] = ACTIONS(2327), + [sym_false] = ACTIONS(2327), + [sym_nil] = ACTIONS(2327), + [anon_sym_QMARK_DOT] = ACTIONS(2327), + [anon_sym_POUND_LBRACK] = ACTIONS(2327), + [anon_sym_if] = ACTIONS(2327), + [anon_sym_DOLLARif] = ACTIONS(2327), + [anon_sym_is] = ACTIONS(2327), + [anon_sym_BANGis] = ACTIONS(2327), + [anon_sym_in] = ACTIONS(2327), + [anon_sym_BANGin] = ACTIONS(2327), + [anon_sym_match] = ACTIONS(2327), + [anon_sym_select] = ACTIONS(2327), + [anon_sym_STAR_EQ] = ACTIONS(2327), + [anon_sym_SLASH_EQ] = ACTIONS(2327), + [anon_sym_PERCENT_EQ] = ACTIONS(2327), + [anon_sym_LT_LT_EQ] = ACTIONS(2327), + [anon_sym_GT_GT_EQ] = ACTIONS(2327), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2327), + [anon_sym_AMP_EQ] = ACTIONS(2327), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2327), + [anon_sym_PLUS_EQ] = ACTIONS(2327), + [anon_sym_DASH_EQ] = ACTIONS(2327), + [anon_sym_PIPE_EQ] = ACTIONS(2327), + [anon_sym_CARET_EQ] = ACTIONS(2327), + [anon_sym_COLON_EQ] = ACTIONS(2327), + [anon_sym_lock] = ACTIONS(2327), + [anon_sym_rlock] = ACTIONS(2327), + [anon_sym_unsafe] = ACTIONS(2327), + [anon_sym_sql] = ACTIONS(2327), + [sym_int_literal] = ACTIONS(2327), + [sym_float_literal] = ACTIONS(2327), + [sym_rune_literal] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [anon_sym_c_SQUOTE] = ACTIONS(2327), + [anon_sym_c_DQUOTE] = ACTIONS(2327), + [anon_sym_r_SQUOTE] = ACTIONS(2327), + [anon_sym_r_DQUOTE] = ACTIONS(2327), + [sym_pseudo_compile_time_identifier] = ACTIONS(2327), + [anon_sym_shared] = ACTIONS(2327), + [anon_sym_map_LBRACK] = ACTIONS(2327), + [anon_sym_chan] = ACTIONS(2327), + [anon_sym_thread] = ACTIONS(2327), + [anon_sym_atomic] = ACTIONS(2327), + [anon_sym_assert] = ACTIONS(2327), + [anon_sym_defer] = ACTIONS(2327), + [anon_sym_goto] = ACTIONS(2327), + [anon_sym_break] = ACTIONS(2327), + [anon_sym_continue] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(2327), + [anon_sym_DOLLARfor] = ACTIONS(2327), + [anon_sym_for] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(2327), + [anon_sym_asm] = ACTIONS(2327), + [anon_sym_AT_LBRACK] = ACTIONS(2327), }, [332] = { [sym_line_comment] = STATE(332), [sym_block_comment] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(2191), - [sym_identifier] = ACTIONS(2193), - [anon_sym_LF] = ACTIONS(2193), - [anon_sym_CR] = ACTIONS(2193), - [anon_sym_CR_LF] = ACTIONS(2193), + [ts_builtin_sym_end] = ACTIONS(2329), + [sym_identifier] = ACTIONS(2331), + [anon_sym_LF] = ACTIONS(2331), + [anon_sym_CR] = ACTIONS(2331), + [anon_sym_CR_LF] = ACTIONS(2331), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2193), - [anon_sym_as] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2193), - [anon_sym_COMMA] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2193), - [anon_sym_EQ] = ACTIONS(2193), - [anon_sym___global] = ACTIONS(2193), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_PIPE] = ACTIONS(2193), - [anon_sym_fn] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_PERCENT] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_GT] = ACTIONS(2193), - [anon_sym_EQ_EQ] = ACTIONS(2193), - [anon_sym_BANG_EQ] = ACTIONS(2193), - [anon_sym_LT_EQ] = ACTIONS(2193), - [anon_sym_GT_EQ] = ACTIONS(2193), - [anon_sym_LBRACK] = ACTIONS(2191), - [anon_sym_struct] = ACTIONS(2193), - [anon_sym_union] = ACTIONS(2193), - [anon_sym_pub] = ACTIONS(2193), - [anon_sym_mut] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), - [anon_sym_interface] = ACTIONS(2193), - [anon_sym_PLUS_PLUS] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2193), - [anon_sym_QMARK] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2193), - [anon_sym_go] = ACTIONS(2193), - [anon_sym_spawn] = ACTIONS(2193), - [anon_sym_json_DOTdecode] = ACTIONS(2193), - [anon_sym_LBRACK2] = ACTIONS(2193), - [anon_sym_TILDE] = ACTIONS(2193), - [anon_sym_CARET] = ACTIONS(2193), - [anon_sym_AMP] = ACTIONS(2193), - [anon_sym_LT_DASH] = ACTIONS(2193), - [anon_sym_LT_LT] = ACTIONS(2193), - [anon_sym_GT_GT] = ACTIONS(2193), - [anon_sym_GT_GT_GT] = ACTIONS(2193), - [anon_sym_AMP_CARET] = ACTIONS(2193), - [anon_sym_AMP_AMP] = ACTIONS(2193), - [anon_sym_PIPE_PIPE] = ACTIONS(2193), - [anon_sym_or] = ACTIONS(2193), - [sym_none] = ACTIONS(2193), - [sym_true] = ACTIONS(2193), - [sym_false] = ACTIONS(2193), - [sym_nil] = ACTIONS(2193), - [anon_sym_QMARK_DOT] = ACTIONS(2193), - [anon_sym_POUND_LBRACK] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_DOLLARif] = ACTIONS(2193), - [anon_sym_is] = ACTIONS(2193), - [anon_sym_BANGis] = ACTIONS(2193), - [anon_sym_in] = ACTIONS(2193), - [anon_sym_BANGin] = ACTIONS(2193), - [anon_sym_match] = ACTIONS(2193), - [anon_sym_select] = ACTIONS(2193), - [anon_sym_STAR_EQ] = ACTIONS(2193), - [anon_sym_SLASH_EQ] = ACTIONS(2193), - [anon_sym_PERCENT_EQ] = ACTIONS(2193), - [anon_sym_LT_LT_EQ] = ACTIONS(2193), - [anon_sym_GT_GT_EQ] = ACTIONS(2193), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2193), - [anon_sym_AMP_EQ] = ACTIONS(2193), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2193), - [anon_sym_PLUS_EQ] = ACTIONS(2193), - [anon_sym_DASH_EQ] = ACTIONS(2193), - [anon_sym_PIPE_EQ] = ACTIONS(2193), - [anon_sym_CARET_EQ] = ACTIONS(2193), - [anon_sym_COLON_EQ] = ACTIONS(2193), - [anon_sym_lock] = ACTIONS(2193), - [anon_sym_rlock] = ACTIONS(2193), - [anon_sym_unsafe] = ACTIONS(2193), - [anon_sym_sql] = ACTIONS(2193), - [sym_int_literal] = ACTIONS(2193), - [sym_float_literal] = ACTIONS(2193), - [sym_rune_literal] = ACTIONS(2193), - [anon_sym_SQUOTE] = ACTIONS(2193), - [anon_sym_DQUOTE] = ACTIONS(2193), - [anon_sym_c_SQUOTE] = ACTIONS(2193), - [anon_sym_c_DQUOTE] = ACTIONS(2193), - [anon_sym_r_SQUOTE] = ACTIONS(2193), - [anon_sym_r_DQUOTE] = ACTIONS(2193), - [sym_pseudo_compile_time_identifier] = ACTIONS(2193), - [anon_sym_shared] = ACTIONS(2193), - [anon_sym_map_LBRACK] = ACTIONS(2193), - [anon_sym_chan] = ACTIONS(2193), - [anon_sym_thread] = ACTIONS(2193), - [anon_sym_atomic] = ACTIONS(2193), - [anon_sym_assert] = ACTIONS(2193), - [anon_sym_defer] = ACTIONS(2193), - [anon_sym_goto] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_DOLLARfor] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_POUND] = ACTIONS(2193), - [anon_sym_asm] = ACTIONS(2193), - [anon_sym_AT_LBRACK] = ACTIONS(2193), + [anon_sym_DOT] = ACTIONS(2331), + [anon_sym_as] = ACTIONS(2331), + [anon_sym_LBRACE] = ACTIONS(2331), + [anon_sym_COMMA] = ACTIONS(2331), + [anon_sym_const] = ACTIONS(2331), + [anon_sym_LPAREN] = ACTIONS(2331), + [anon_sym_EQ] = ACTIONS(2331), + [anon_sym___global] = ACTIONS(2331), + [anon_sym_type] = ACTIONS(2331), + [anon_sym_fn] = ACTIONS(2331), + [anon_sym_PLUS] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_STAR] = ACTIONS(2331), + [anon_sym_SLASH] = ACTIONS(2331), + [anon_sym_PERCENT] = ACTIONS(2331), + [anon_sym_LT] = ACTIONS(2331), + [anon_sym_GT] = ACTIONS(2331), + [anon_sym_EQ_EQ] = ACTIONS(2331), + [anon_sym_BANG_EQ] = ACTIONS(2331), + [anon_sym_LT_EQ] = ACTIONS(2331), + [anon_sym_GT_EQ] = ACTIONS(2331), + [anon_sym_LBRACK] = ACTIONS(2329), + [anon_sym_struct] = ACTIONS(2331), + [anon_sym_union] = ACTIONS(2331), + [anon_sym_pub] = ACTIONS(2331), + [anon_sym_mut] = ACTIONS(2331), + [anon_sym_enum] = ACTIONS(2331), + [anon_sym_interface] = ACTIONS(2331), + [anon_sym_PLUS_PLUS] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2331), + [anon_sym_QMARK] = ACTIONS(2331), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_go] = ACTIONS(2331), + [anon_sym_spawn] = ACTIONS(2331), + [anon_sym_json_DOTdecode] = ACTIONS(2331), + [anon_sym_PIPE] = ACTIONS(2331), + [anon_sym_LBRACK2] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_CARET] = ACTIONS(2331), + [anon_sym_AMP] = ACTIONS(2331), + [anon_sym_LT_DASH] = ACTIONS(2331), + [anon_sym_LT_LT] = ACTIONS(2331), + [anon_sym_GT_GT] = ACTIONS(2331), + [anon_sym_GT_GT_GT] = ACTIONS(2331), + [anon_sym_AMP_CARET] = ACTIONS(2331), + [anon_sym_AMP_AMP] = ACTIONS(2331), + [anon_sym_PIPE_PIPE] = ACTIONS(2331), + [anon_sym_or] = ACTIONS(2331), + [sym_none] = ACTIONS(2331), + [sym_true] = ACTIONS(2331), + [sym_false] = ACTIONS(2331), + [sym_nil] = ACTIONS(2331), + [anon_sym_QMARK_DOT] = ACTIONS(2331), + [anon_sym_POUND_LBRACK] = ACTIONS(2331), + [anon_sym_if] = ACTIONS(2331), + [anon_sym_DOLLARif] = ACTIONS(2331), + [anon_sym_is] = ACTIONS(2331), + [anon_sym_BANGis] = ACTIONS(2331), + [anon_sym_in] = ACTIONS(2331), + [anon_sym_BANGin] = ACTIONS(2331), + [anon_sym_match] = ACTIONS(2331), + [anon_sym_select] = ACTIONS(2331), + [anon_sym_STAR_EQ] = ACTIONS(2331), + [anon_sym_SLASH_EQ] = ACTIONS(2331), + [anon_sym_PERCENT_EQ] = ACTIONS(2331), + [anon_sym_LT_LT_EQ] = ACTIONS(2331), + [anon_sym_GT_GT_EQ] = ACTIONS(2331), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2331), + [anon_sym_AMP_EQ] = ACTIONS(2331), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2331), + [anon_sym_PLUS_EQ] = ACTIONS(2331), + [anon_sym_DASH_EQ] = ACTIONS(2331), + [anon_sym_PIPE_EQ] = ACTIONS(2331), + [anon_sym_CARET_EQ] = ACTIONS(2331), + [anon_sym_COLON_EQ] = ACTIONS(2331), + [anon_sym_lock] = ACTIONS(2331), + [anon_sym_rlock] = ACTIONS(2331), + [anon_sym_unsafe] = ACTIONS(2331), + [anon_sym_sql] = ACTIONS(2331), + [sym_int_literal] = ACTIONS(2331), + [sym_float_literal] = ACTIONS(2331), + [sym_rune_literal] = ACTIONS(2331), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_DQUOTE] = ACTIONS(2331), + [anon_sym_c_SQUOTE] = ACTIONS(2331), + [anon_sym_c_DQUOTE] = ACTIONS(2331), + [anon_sym_r_SQUOTE] = ACTIONS(2331), + [anon_sym_r_DQUOTE] = ACTIONS(2331), + [sym_pseudo_compile_time_identifier] = ACTIONS(2331), + [anon_sym_shared] = ACTIONS(2331), + [anon_sym_map_LBRACK] = ACTIONS(2331), + [anon_sym_chan] = ACTIONS(2331), + [anon_sym_thread] = ACTIONS(2331), + [anon_sym_atomic] = ACTIONS(2331), + [anon_sym_assert] = ACTIONS(2331), + [anon_sym_defer] = ACTIONS(2331), + [anon_sym_goto] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(2331), + [anon_sym_continue] = ACTIONS(2331), + [anon_sym_return] = ACTIONS(2331), + [anon_sym_DOLLARfor] = ACTIONS(2331), + [anon_sym_for] = ACTIONS(2331), + [anon_sym_POUND] = ACTIONS(2331), + [anon_sym_asm] = ACTIONS(2331), + [anon_sym_AT_LBRACK] = ACTIONS(2331), }, [333] = { [sym_line_comment] = STATE(333), [sym_block_comment] = STATE(333), - [ts_builtin_sym_end] = ACTIONS(2195), - [sym_identifier] = ACTIONS(2197), - [anon_sym_LF] = ACTIONS(2197), - [anon_sym_CR] = ACTIONS(2197), - [anon_sym_CR_LF] = ACTIONS(2197), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_COMMA] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_EQ] = ACTIONS(2197), - [anon_sym___global] = ACTIONS(2197), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_PIPE] = ACTIONS(2197), - [anon_sym_fn] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2197), - [anon_sym_SLASH] = ACTIONS(2197), - [anon_sym_PERCENT] = ACTIONS(2197), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_GT] = ACTIONS(2197), - [anon_sym_EQ_EQ] = ACTIONS(2197), - [anon_sym_BANG_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2197), - [anon_sym_union] = ACTIONS(2197), - [anon_sym_pub] = ACTIONS(2197), - [anon_sym_mut] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [anon_sym_interface] = ACTIONS(2197), - [anon_sym_PLUS_PLUS] = ACTIONS(2197), - [anon_sym_DASH_DASH] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_go] = ACTIONS(2197), - [anon_sym_spawn] = ACTIONS(2197), - [anon_sym_json_DOTdecode] = ACTIONS(2197), - [anon_sym_LBRACK2] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_CARET] = ACTIONS(2197), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_LT_DASH] = ACTIONS(2197), - [anon_sym_LT_LT] = ACTIONS(2197), - [anon_sym_GT_GT] = ACTIONS(2197), - [anon_sym_GT_GT_GT] = ACTIONS(2197), - [anon_sym_AMP_CARET] = ACTIONS(2197), - [anon_sym_AMP_AMP] = ACTIONS(2197), - [anon_sym_PIPE_PIPE] = ACTIONS(2197), - [anon_sym_or] = ACTIONS(2197), - [sym_none] = ACTIONS(2197), - [sym_true] = ACTIONS(2197), - [sym_false] = ACTIONS(2197), - [sym_nil] = ACTIONS(2197), - [anon_sym_QMARK_DOT] = ACTIONS(2197), - [anon_sym_POUND_LBRACK] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_DOLLARif] = ACTIONS(2197), - [anon_sym_is] = ACTIONS(2197), - [anon_sym_BANGis] = ACTIONS(2197), - [anon_sym_in] = ACTIONS(2197), - [anon_sym_BANGin] = ACTIONS(2197), - [anon_sym_match] = ACTIONS(2197), - [anon_sym_select] = ACTIONS(2197), - [anon_sym_STAR_EQ] = ACTIONS(2197), - [anon_sym_SLASH_EQ] = ACTIONS(2197), - [anon_sym_PERCENT_EQ] = ACTIONS(2197), - [anon_sym_LT_LT_EQ] = ACTIONS(2197), - [anon_sym_GT_GT_EQ] = ACTIONS(2197), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2197), - [anon_sym_AMP_EQ] = ACTIONS(2197), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2197), - [anon_sym_PLUS_EQ] = ACTIONS(2197), - [anon_sym_DASH_EQ] = ACTIONS(2197), - [anon_sym_PIPE_EQ] = ACTIONS(2197), - [anon_sym_CARET_EQ] = ACTIONS(2197), - [anon_sym_COLON_EQ] = ACTIONS(2197), - [anon_sym_lock] = ACTIONS(2197), - [anon_sym_rlock] = ACTIONS(2197), - [anon_sym_unsafe] = ACTIONS(2197), - [anon_sym_sql] = ACTIONS(2197), - [sym_int_literal] = ACTIONS(2197), - [sym_float_literal] = ACTIONS(2197), - [sym_rune_literal] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_DQUOTE] = ACTIONS(2197), - [anon_sym_c_SQUOTE] = ACTIONS(2197), - [anon_sym_c_DQUOTE] = ACTIONS(2197), - [anon_sym_r_SQUOTE] = ACTIONS(2197), - [anon_sym_r_DQUOTE] = ACTIONS(2197), - [sym_pseudo_compile_time_identifier] = ACTIONS(2197), - [anon_sym_shared] = ACTIONS(2197), - [anon_sym_map_LBRACK] = ACTIONS(2197), - [anon_sym_chan] = ACTIONS(2197), - [anon_sym_thread] = ACTIONS(2197), - [anon_sym_atomic] = ACTIONS(2197), - [anon_sym_assert] = ACTIONS(2197), - [anon_sym_defer] = ACTIONS(2197), - [anon_sym_goto] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_DOLLARfor] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_POUND] = ACTIONS(2197), - [anon_sym_asm] = ACTIONS(2197), - [anon_sym_AT_LBRACK] = ACTIONS(2197), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_range] = STATE(4577), + [sym_identifier] = ACTIONS(1424), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1486), }, [334] = { [sym_line_comment] = STATE(334), [sym_block_comment] = STATE(334), - [ts_builtin_sym_end] = ACTIONS(2199), - [sym_identifier] = ACTIONS(2201), - [anon_sym_LF] = ACTIONS(2201), - [anon_sym_CR] = ACTIONS(2201), - [anon_sym_CR_LF] = ACTIONS(2201), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2201), - [anon_sym_as] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(2201), - [anon_sym_COMMA] = ACTIONS(2201), - [anon_sym_const] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2201), - [anon_sym_EQ] = ACTIONS(2201), - [anon_sym___global] = ACTIONS(2201), - [anon_sym_type] = ACTIONS(2201), - [anon_sym_PIPE] = ACTIONS(2201), - [anon_sym_fn] = ACTIONS(2201), - [anon_sym_PLUS] = ACTIONS(2201), - [anon_sym_DASH] = ACTIONS(2201), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_SLASH] = ACTIONS(2201), - [anon_sym_PERCENT] = ACTIONS(2201), - [anon_sym_LT] = ACTIONS(2201), - [anon_sym_GT] = ACTIONS(2201), - [anon_sym_EQ_EQ] = ACTIONS(2201), - [anon_sym_BANG_EQ] = ACTIONS(2201), - [anon_sym_LT_EQ] = ACTIONS(2201), - [anon_sym_GT_EQ] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2199), - [anon_sym_struct] = ACTIONS(2201), - [anon_sym_union] = ACTIONS(2201), - [anon_sym_pub] = ACTIONS(2201), - [anon_sym_mut] = ACTIONS(2201), - [anon_sym_enum] = ACTIONS(2201), - [anon_sym_interface] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_QMARK] = ACTIONS(2201), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_go] = ACTIONS(2201), - [anon_sym_spawn] = ACTIONS(2201), - [anon_sym_json_DOTdecode] = ACTIONS(2201), - [anon_sym_LBRACK2] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_LT_DASH] = ACTIONS(2201), - [anon_sym_LT_LT] = ACTIONS(2201), - [anon_sym_GT_GT] = ACTIONS(2201), - [anon_sym_GT_GT_GT] = ACTIONS(2201), - [anon_sym_AMP_CARET] = ACTIONS(2201), - [anon_sym_AMP_AMP] = ACTIONS(2201), - [anon_sym_PIPE_PIPE] = ACTIONS(2201), - [anon_sym_or] = ACTIONS(2201), - [sym_none] = ACTIONS(2201), - [sym_true] = ACTIONS(2201), - [sym_false] = ACTIONS(2201), - [sym_nil] = ACTIONS(2201), - [anon_sym_QMARK_DOT] = ACTIONS(2201), - [anon_sym_POUND_LBRACK] = ACTIONS(2201), - [anon_sym_if] = ACTIONS(2201), - [anon_sym_DOLLARif] = ACTIONS(2201), - [anon_sym_is] = ACTIONS(2201), - [anon_sym_BANGis] = ACTIONS(2201), - [anon_sym_in] = ACTIONS(2201), - [anon_sym_BANGin] = ACTIONS(2201), - [anon_sym_match] = ACTIONS(2201), - [anon_sym_select] = ACTIONS(2201), - [anon_sym_STAR_EQ] = ACTIONS(2201), - [anon_sym_SLASH_EQ] = ACTIONS(2201), - [anon_sym_PERCENT_EQ] = ACTIONS(2201), - [anon_sym_LT_LT_EQ] = ACTIONS(2201), - [anon_sym_GT_GT_EQ] = ACTIONS(2201), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2201), - [anon_sym_AMP_EQ] = ACTIONS(2201), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2201), - [anon_sym_PLUS_EQ] = ACTIONS(2201), - [anon_sym_DASH_EQ] = ACTIONS(2201), - [anon_sym_PIPE_EQ] = ACTIONS(2201), - [anon_sym_CARET_EQ] = ACTIONS(2201), - [anon_sym_COLON_EQ] = ACTIONS(2201), - [anon_sym_lock] = ACTIONS(2201), - [anon_sym_rlock] = ACTIONS(2201), - [anon_sym_unsafe] = ACTIONS(2201), - [anon_sym_sql] = ACTIONS(2201), - [sym_int_literal] = ACTIONS(2201), - [sym_float_literal] = ACTIONS(2201), - [sym_rune_literal] = ACTIONS(2201), - [anon_sym_SQUOTE] = ACTIONS(2201), - [anon_sym_DQUOTE] = ACTIONS(2201), - [anon_sym_c_SQUOTE] = ACTIONS(2201), - [anon_sym_c_DQUOTE] = ACTIONS(2201), - [anon_sym_r_SQUOTE] = ACTIONS(2201), - [anon_sym_r_DQUOTE] = ACTIONS(2201), - [sym_pseudo_compile_time_identifier] = ACTIONS(2201), - [anon_sym_shared] = ACTIONS(2201), - [anon_sym_map_LBRACK] = ACTIONS(2201), - [anon_sym_chan] = ACTIONS(2201), - [anon_sym_thread] = ACTIONS(2201), - [anon_sym_atomic] = ACTIONS(2201), - [anon_sym_assert] = ACTIONS(2201), - [anon_sym_defer] = ACTIONS(2201), - [anon_sym_goto] = ACTIONS(2201), - [anon_sym_break] = ACTIONS(2201), - [anon_sym_continue] = ACTIONS(2201), - [anon_sym_return] = ACTIONS(2201), - [anon_sym_DOLLARfor] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(2201), - [anon_sym_POUND] = ACTIONS(2201), - [anon_sym_asm] = ACTIONS(2201), - [anon_sym_AT_LBRACK] = ACTIONS(2201), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3638), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_range] = STATE(4577), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1486), }, [335] = { [sym_line_comment] = STATE(335), [sym_block_comment] = STATE(335), - [ts_builtin_sym_end] = ACTIONS(2203), - [sym_identifier] = ACTIONS(2205), - [anon_sym_LF] = ACTIONS(2205), - [anon_sym_CR] = ACTIONS(2205), - [anon_sym_CR_LF] = ACTIONS(2205), + [ts_builtin_sym_end] = ACTIONS(1885), + [sym_identifier] = ACTIONS(1887), + [anon_sym_LF] = ACTIONS(1887), + [anon_sym_CR] = ACTIONS(1887), + [anon_sym_CR_LF] = ACTIONS(1887), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2205), - [anon_sym_as] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2205), - [anon_sym_COMMA] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_EQ] = ACTIONS(2205), - [anon_sym___global] = ACTIONS(2205), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_PIPE] = ACTIONS(2205), - [anon_sym_fn] = ACTIONS(2205), - [anon_sym_PLUS] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_STAR] = ACTIONS(2205), - [anon_sym_SLASH] = ACTIONS(2205), - [anon_sym_PERCENT] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_GT] = ACTIONS(2205), - [anon_sym_EQ_EQ] = ACTIONS(2205), - [anon_sym_BANG_EQ] = ACTIONS(2205), - [anon_sym_LT_EQ] = ACTIONS(2205), - [anon_sym_GT_EQ] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_struct] = ACTIONS(2205), - [anon_sym_union] = ACTIONS(2205), - [anon_sym_pub] = ACTIONS(2205), - [anon_sym_mut] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), - [anon_sym_interface] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [anon_sym_QMARK] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_go] = ACTIONS(2205), - [anon_sym_spawn] = ACTIONS(2205), - [anon_sym_json_DOTdecode] = ACTIONS(2205), - [anon_sym_LBRACK2] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), - [anon_sym_LT_DASH] = ACTIONS(2205), - [anon_sym_LT_LT] = ACTIONS(2205), - [anon_sym_GT_GT] = ACTIONS(2205), - [anon_sym_GT_GT_GT] = ACTIONS(2205), - [anon_sym_AMP_CARET] = ACTIONS(2205), - [anon_sym_AMP_AMP] = ACTIONS(2205), - [anon_sym_PIPE_PIPE] = ACTIONS(2205), - [anon_sym_or] = ACTIONS(2205), - [sym_none] = ACTIONS(2205), - [sym_true] = ACTIONS(2205), - [sym_false] = ACTIONS(2205), - [sym_nil] = ACTIONS(2205), - [anon_sym_QMARK_DOT] = ACTIONS(2205), - [anon_sym_POUND_LBRACK] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_DOLLARif] = ACTIONS(2205), - [anon_sym_is] = ACTIONS(2205), - [anon_sym_BANGis] = ACTIONS(2205), - [anon_sym_in] = ACTIONS(2205), - [anon_sym_BANGin] = ACTIONS(2205), - [anon_sym_match] = ACTIONS(2205), - [anon_sym_select] = ACTIONS(2205), - [anon_sym_STAR_EQ] = ACTIONS(2205), - [anon_sym_SLASH_EQ] = ACTIONS(2205), - [anon_sym_PERCENT_EQ] = ACTIONS(2205), - [anon_sym_LT_LT_EQ] = ACTIONS(2205), - [anon_sym_GT_GT_EQ] = ACTIONS(2205), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2205), - [anon_sym_AMP_EQ] = ACTIONS(2205), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2205), - [anon_sym_PLUS_EQ] = ACTIONS(2205), - [anon_sym_DASH_EQ] = ACTIONS(2205), - [anon_sym_PIPE_EQ] = ACTIONS(2205), - [anon_sym_CARET_EQ] = ACTIONS(2205), - [anon_sym_COLON_EQ] = ACTIONS(2205), - [anon_sym_lock] = ACTIONS(2205), - [anon_sym_rlock] = ACTIONS(2205), - [anon_sym_unsafe] = ACTIONS(2205), - [anon_sym_sql] = ACTIONS(2205), - [sym_int_literal] = ACTIONS(2205), - [sym_float_literal] = ACTIONS(2205), - [sym_rune_literal] = ACTIONS(2205), - [anon_sym_SQUOTE] = ACTIONS(2205), - [anon_sym_DQUOTE] = ACTIONS(2205), - [anon_sym_c_SQUOTE] = ACTIONS(2205), - [anon_sym_c_DQUOTE] = ACTIONS(2205), - [anon_sym_r_SQUOTE] = ACTIONS(2205), - [anon_sym_r_DQUOTE] = ACTIONS(2205), - [sym_pseudo_compile_time_identifier] = ACTIONS(2205), - [anon_sym_shared] = ACTIONS(2205), - [anon_sym_map_LBRACK] = ACTIONS(2205), - [anon_sym_chan] = ACTIONS(2205), - [anon_sym_thread] = ACTIONS(2205), - [anon_sym_atomic] = ACTIONS(2205), - [anon_sym_assert] = ACTIONS(2205), - [anon_sym_defer] = ACTIONS(2205), - [anon_sym_goto] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_DOLLARfor] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_POUND] = ACTIONS(2205), - [anon_sym_asm] = ACTIONS(2205), - [anon_sym_AT_LBRACK] = ACTIONS(2205), + [anon_sym_DOT] = ACTIONS(1887), + [anon_sym_as] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_COMMA] = ACTIONS(1887), + [anon_sym_const] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_EQ] = ACTIONS(1887), + [anon_sym___global] = ACTIONS(1887), + [anon_sym_type] = ACTIONS(1887), + [anon_sym_fn] = ACTIONS(1887), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1887), + [anon_sym_SLASH] = ACTIONS(1887), + [anon_sym_PERCENT] = ACTIONS(1887), + [anon_sym_LT] = ACTIONS(1887), + [anon_sym_GT] = ACTIONS(1887), + [anon_sym_EQ_EQ] = ACTIONS(1887), + [anon_sym_BANG_EQ] = ACTIONS(1887), + [anon_sym_LT_EQ] = ACTIONS(1887), + [anon_sym_GT_EQ] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1885), + [anon_sym_struct] = ACTIONS(1887), + [anon_sym_union] = ACTIONS(1887), + [anon_sym_pub] = ACTIONS(1887), + [anon_sym_mut] = ACTIONS(1887), + [anon_sym_enum] = ACTIONS(1887), + [anon_sym_interface] = ACTIONS(1887), + [anon_sym_PLUS_PLUS] = ACTIONS(1887), + [anon_sym_DASH_DASH] = ACTIONS(1887), + [anon_sym_QMARK] = ACTIONS(1887), + [anon_sym_BANG] = ACTIONS(1887), + [anon_sym_go] = ACTIONS(1887), + [anon_sym_spawn] = ACTIONS(1887), + [anon_sym_json_DOTdecode] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1887), + [anon_sym_LBRACK2] = ACTIONS(1887), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_CARET] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(1887), + [anon_sym_LT_DASH] = ACTIONS(1887), + [anon_sym_LT_LT] = ACTIONS(1887), + [anon_sym_GT_GT] = ACTIONS(1887), + [anon_sym_GT_GT_GT] = ACTIONS(1887), + [anon_sym_AMP_CARET] = ACTIONS(1887), + [anon_sym_AMP_AMP] = ACTIONS(1887), + [anon_sym_PIPE_PIPE] = ACTIONS(1887), + [anon_sym_or] = ACTIONS(1887), + [sym_none] = ACTIONS(1887), + [sym_true] = ACTIONS(1887), + [sym_false] = ACTIONS(1887), + [sym_nil] = ACTIONS(1887), + [anon_sym_QMARK_DOT] = ACTIONS(1887), + [anon_sym_POUND_LBRACK] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_DOLLARif] = ACTIONS(1887), + [anon_sym_is] = ACTIONS(1887), + [anon_sym_BANGis] = ACTIONS(1887), + [anon_sym_in] = ACTIONS(1887), + [anon_sym_BANGin] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_select] = ACTIONS(1887), + [anon_sym_STAR_EQ] = ACTIONS(1887), + [anon_sym_SLASH_EQ] = ACTIONS(1887), + [anon_sym_PERCENT_EQ] = ACTIONS(1887), + [anon_sym_LT_LT_EQ] = ACTIONS(1887), + [anon_sym_GT_GT_EQ] = ACTIONS(1887), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1887), + [anon_sym_AMP_EQ] = ACTIONS(1887), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1887), + [anon_sym_PLUS_EQ] = ACTIONS(1887), + [anon_sym_DASH_EQ] = ACTIONS(1887), + [anon_sym_PIPE_EQ] = ACTIONS(1887), + [anon_sym_CARET_EQ] = ACTIONS(1887), + [anon_sym_COLON_EQ] = ACTIONS(1887), + [anon_sym_lock] = ACTIONS(1887), + [anon_sym_rlock] = ACTIONS(1887), + [anon_sym_unsafe] = ACTIONS(1887), + [anon_sym_sql] = ACTIONS(1887), + [sym_int_literal] = ACTIONS(1887), + [sym_float_literal] = ACTIONS(1887), + [sym_rune_literal] = ACTIONS(1887), + [anon_sym_SQUOTE] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(1887), + [anon_sym_c_SQUOTE] = ACTIONS(1887), + [anon_sym_c_DQUOTE] = ACTIONS(1887), + [anon_sym_r_SQUOTE] = ACTIONS(1887), + [anon_sym_r_DQUOTE] = ACTIONS(1887), + [sym_pseudo_compile_time_identifier] = ACTIONS(1887), + [anon_sym_shared] = ACTIONS(1887), + [anon_sym_map_LBRACK] = ACTIONS(1887), + [anon_sym_chan] = ACTIONS(1887), + [anon_sym_thread] = ACTIONS(1887), + [anon_sym_atomic] = ACTIONS(1887), + [anon_sym_assert] = ACTIONS(1887), + [anon_sym_defer] = ACTIONS(1887), + [anon_sym_goto] = ACTIONS(1887), + [anon_sym_break] = ACTIONS(1887), + [anon_sym_continue] = ACTIONS(1887), + [anon_sym_return] = ACTIONS(1887), + [anon_sym_DOLLARfor] = ACTIONS(1887), + [anon_sym_for] = ACTIONS(1887), + [anon_sym_POUND] = ACTIONS(1887), + [anon_sym_asm] = ACTIONS(1887), + [anon_sym_AT_LBRACK] = ACTIONS(1887), }, [336] = { [sym_line_comment] = STATE(336), [sym_block_comment] = STATE(336), - [ts_builtin_sym_end] = ACTIONS(2207), - [sym_identifier] = ACTIONS(2209), - [anon_sym_LF] = ACTIONS(2209), - [anon_sym_CR] = ACTIONS(2209), - [anon_sym_CR_LF] = ACTIONS(2209), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_as] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2209), - [anon_sym_COMMA] = ACTIONS(2209), - [anon_sym_const] = ACTIONS(2209), - [anon_sym_LPAREN] = ACTIONS(2209), - [anon_sym_EQ] = ACTIONS(2209), - [anon_sym___global] = ACTIONS(2209), - [anon_sym_type] = ACTIONS(2209), - [anon_sym_PIPE] = ACTIONS(2209), - [anon_sym_fn] = ACTIONS(2209), - [anon_sym_PLUS] = ACTIONS(2209), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_SLASH] = ACTIONS(2209), - [anon_sym_PERCENT] = ACTIONS(2209), - [anon_sym_LT] = ACTIONS(2209), - [anon_sym_GT] = ACTIONS(2209), - [anon_sym_EQ_EQ] = ACTIONS(2209), - [anon_sym_BANG_EQ] = ACTIONS(2209), - [anon_sym_LT_EQ] = ACTIONS(2209), - [anon_sym_GT_EQ] = ACTIONS(2209), - [anon_sym_LBRACK] = ACTIONS(2207), - [anon_sym_struct] = ACTIONS(2209), - [anon_sym_union] = ACTIONS(2209), - [anon_sym_pub] = ACTIONS(2209), - [anon_sym_mut] = ACTIONS(2209), - [anon_sym_enum] = ACTIONS(2209), - [anon_sym_interface] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_QMARK] = ACTIONS(2209), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_go] = ACTIONS(2209), - [anon_sym_spawn] = ACTIONS(2209), - [anon_sym_json_DOTdecode] = ACTIONS(2209), - [anon_sym_LBRACK2] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_LT_DASH] = ACTIONS(2209), - [anon_sym_LT_LT] = ACTIONS(2209), - [anon_sym_GT_GT] = ACTIONS(2209), - [anon_sym_GT_GT_GT] = ACTIONS(2209), - [anon_sym_AMP_CARET] = ACTIONS(2209), - [anon_sym_AMP_AMP] = ACTIONS(2209), - [anon_sym_PIPE_PIPE] = ACTIONS(2209), - [anon_sym_or] = ACTIONS(2209), - [sym_none] = ACTIONS(2209), - [sym_true] = ACTIONS(2209), - [sym_false] = ACTIONS(2209), - [sym_nil] = ACTIONS(2209), - [anon_sym_QMARK_DOT] = ACTIONS(2209), - [anon_sym_POUND_LBRACK] = ACTIONS(2209), - [anon_sym_if] = ACTIONS(2209), - [anon_sym_DOLLARif] = ACTIONS(2209), - [anon_sym_is] = ACTIONS(2209), - [anon_sym_BANGis] = ACTIONS(2209), - [anon_sym_in] = ACTIONS(2209), - [anon_sym_BANGin] = ACTIONS(2209), - [anon_sym_match] = ACTIONS(2209), - [anon_sym_select] = ACTIONS(2209), - [anon_sym_STAR_EQ] = ACTIONS(2209), - [anon_sym_SLASH_EQ] = ACTIONS(2209), - [anon_sym_PERCENT_EQ] = ACTIONS(2209), - [anon_sym_LT_LT_EQ] = ACTIONS(2209), - [anon_sym_GT_GT_EQ] = ACTIONS(2209), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2209), - [anon_sym_AMP_EQ] = ACTIONS(2209), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2209), - [anon_sym_PLUS_EQ] = ACTIONS(2209), - [anon_sym_DASH_EQ] = ACTIONS(2209), - [anon_sym_PIPE_EQ] = ACTIONS(2209), - [anon_sym_CARET_EQ] = ACTIONS(2209), - [anon_sym_COLON_EQ] = ACTIONS(2209), - [anon_sym_lock] = ACTIONS(2209), - [anon_sym_rlock] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(2209), - [anon_sym_sql] = ACTIONS(2209), - [sym_int_literal] = ACTIONS(2209), - [sym_float_literal] = ACTIONS(2209), - [sym_rune_literal] = ACTIONS(2209), - [anon_sym_SQUOTE] = ACTIONS(2209), - [anon_sym_DQUOTE] = ACTIONS(2209), - [anon_sym_c_SQUOTE] = ACTIONS(2209), - [anon_sym_c_DQUOTE] = ACTIONS(2209), - [anon_sym_r_SQUOTE] = ACTIONS(2209), - [anon_sym_r_DQUOTE] = ACTIONS(2209), - [sym_pseudo_compile_time_identifier] = ACTIONS(2209), - [anon_sym_shared] = ACTIONS(2209), - [anon_sym_map_LBRACK] = ACTIONS(2209), - [anon_sym_chan] = ACTIONS(2209), - [anon_sym_thread] = ACTIONS(2209), - [anon_sym_atomic] = ACTIONS(2209), - [anon_sym_assert] = ACTIONS(2209), - [anon_sym_defer] = ACTIONS(2209), - [anon_sym_goto] = ACTIONS(2209), - [anon_sym_break] = ACTIONS(2209), - [anon_sym_continue] = ACTIONS(2209), - [anon_sym_return] = ACTIONS(2209), - [anon_sym_DOLLARfor] = ACTIONS(2209), - [anon_sym_for] = ACTIONS(2209), - [anon_sym_POUND] = ACTIONS(2209), - [anon_sym_asm] = ACTIONS(2209), - [anon_sym_AT_LBRACK] = ACTIONS(2209), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4418), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(2333), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [337] = { [sym_line_comment] = STATE(337), [sym_block_comment] = STATE(337), - [ts_builtin_sym_end] = ACTIONS(2211), - [sym_identifier] = ACTIONS(2213), - [anon_sym_LF] = ACTIONS(2213), - [anon_sym_CR] = ACTIONS(2213), - [anon_sym_CR_LF] = ACTIONS(2213), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2213), - [anon_sym_as] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_COMMA] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_EQ] = ACTIONS(2213), - [anon_sym___global] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_PIPE] = ACTIONS(2213), - [anon_sym_fn] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_STAR] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_PERCENT] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_GT] = ACTIONS(2213), - [anon_sym_EQ_EQ] = ACTIONS(2213), - [anon_sym_BANG_EQ] = ACTIONS(2213), - [anon_sym_LT_EQ] = ACTIONS(2213), - [anon_sym_GT_EQ] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_struct] = ACTIONS(2213), - [anon_sym_union] = ACTIONS(2213), - [anon_sym_pub] = ACTIONS(2213), - [anon_sym_mut] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_PLUS_PLUS] = ACTIONS(2213), - [anon_sym_DASH_DASH] = ACTIONS(2213), - [anon_sym_QMARK] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2213), - [anon_sym_json_DOTdecode] = ACTIONS(2213), - [anon_sym_LBRACK2] = ACTIONS(2213), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_CARET] = ACTIONS(2213), - [anon_sym_AMP] = ACTIONS(2213), - [anon_sym_LT_DASH] = ACTIONS(2213), - [anon_sym_LT_LT] = ACTIONS(2213), - [anon_sym_GT_GT] = ACTIONS(2213), - [anon_sym_GT_GT_GT] = ACTIONS(2213), - [anon_sym_AMP_CARET] = ACTIONS(2213), - [anon_sym_AMP_AMP] = ACTIONS(2213), - [anon_sym_PIPE_PIPE] = ACTIONS(2213), - [anon_sym_or] = ACTIONS(2213), - [sym_none] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_nil] = ACTIONS(2213), - [anon_sym_QMARK_DOT] = ACTIONS(2213), - [anon_sym_POUND_LBRACK] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_DOLLARif] = ACTIONS(2213), - [anon_sym_is] = ACTIONS(2213), - [anon_sym_BANGis] = ACTIONS(2213), - [anon_sym_in] = ACTIONS(2213), - [anon_sym_BANGin] = ACTIONS(2213), - [anon_sym_match] = ACTIONS(2213), - [anon_sym_select] = ACTIONS(2213), - [anon_sym_STAR_EQ] = ACTIONS(2213), - [anon_sym_SLASH_EQ] = ACTIONS(2213), - [anon_sym_PERCENT_EQ] = ACTIONS(2213), - [anon_sym_LT_LT_EQ] = ACTIONS(2213), - [anon_sym_GT_GT_EQ] = ACTIONS(2213), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2213), - [anon_sym_AMP_EQ] = ACTIONS(2213), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2213), - [anon_sym_PLUS_EQ] = ACTIONS(2213), - [anon_sym_DASH_EQ] = ACTIONS(2213), - [anon_sym_PIPE_EQ] = ACTIONS(2213), - [anon_sym_CARET_EQ] = ACTIONS(2213), - [anon_sym_COLON_EQ] = ACTIONS(2213), - [anon_sym_lock] = ACTIONS(2213), - [anon_sym_rlock] = ACTIONS(2213), - [anon_sym_unsafe] = ACTIONS(2213), - [anon_sym_sql] = ACTIONS(2213), - [sym_int_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), - [sym_rune_literal] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_DQUOTE] = ACTIONS(2213), - [anon_sym_c_SQUOTE] = ACTIONS(2213), - [anon_sym_c_DQUOTE] = ACTIONS(2213), - [anon_sym_r_SQUOTE] = ACTIONS(2213), - [anon_sym_r_DQUOTE] = ACTIONS(2213), - [sym_pseudo_compile_time_identifier] = ACTIONS(2213), - [anon_sym_shared] = ACTIONS(2213), - [anon_sym_map_LBRACK] = ACTIONS(2213), - [anon_sym_chan] = ACTIONS(2213), - [anon_sym_thread] = ACTIONS(2213), - [anon_sym_atomic] = ACTIONS(2213), - [anon_sym_assert] = ACTIONS(2213), - [anon_sym_defer] = ACTIONS(2213), - [anon_sym_goto] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_DOLLARfor] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_POUND] = ACTIONS(2213), - [anon_sym_asm] = ACTIONS(2213), - [anon_sym_AT_LBRACK] = ACTIONS(2213), + [sym__expression] = STATE(954), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(661), + [sym_mutable_expression] = STATE(1455), + [sym_expression_list] = STATE(1496), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [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(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_LT_DASH] = ACTIONS(2137), + [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(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [338] = { [sym_line_comment] = STATE(338), [sym_block_comment] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(2215), - [sym_identifier] = ACTIONS(2217), - [anon_sym_LF] = ACTIONS(2217), - [anon_sym_CR] = ACTIONS(2217), - [anon_sym_CR_LF] = ACTIONS(2217), + [ts_builtin_sym_end] = ACTIONS(2335), + [sym_identifier] = ACTIONS(2337), + [anon_sym_LF] = ACTIONS(2337), + [anon_sym_CR] = ACTIONS(2337), + [anon_sym_CR_LF] = ACTIONS(2337), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_as] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2217), - [anon_sym_COMMA] = ACTIONS(2217), - [anon_sym_const] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2217), - [anon_sym_EQ] = ACTIONS(2217), - [anon_sym___global] = ACTIONS(2217), - [anon_sym_type] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2217), - [anon_sym_fn] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2217), - [anon_sym_DASH] = ACTIONS(2217), - [anon_sym_STAR] = ACTIONS(2217), - [anon_sym_SLASH] = ACTIONS(2217), - [anon_sym_PERCENT] = ACTIONS(2217), - [anon_sym_LT] = ACTIONS(2217), - [anon_sym_GT] = ACTIONS(2217), - [anon_sym_EQ_EQ] = ACTIONS(2217), - [anon_sym_BANG_EQ] = ACTIONS(2217), - [anon_sym_LT_EQ] = ACTIONS(2217), - [anon_sym_GT_EQ] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_struct] = ACTIONS(2217), - [anon_sym_union] = ACTIONS(2217), - [anon_sym_pub] = ACTIONS(2217), - [anon_sym_mut] = ACTIONS(2217), - [anon_sym_enum] = ACTIONS(2217), - [anon_sym_interface] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_QMARK] = ACTIONS(2217), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_go] = ACTIONS(2217), - [anon_sym_spawn] = ACTIONS(2217), - [anon_sym_json_DOTdecode] = ACTIONS(2217), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_LT_DASH] = ACTIONS(2217), - [anon_sym_LT_LT] = ACTIONS(2217), - [anon_sym_GT_GT] = ACTIONS(2217), - [anon_sym_GT_GT_GT] = ACTIONS(2217), - [anon_sym_AMP_CARET] = ACTIONS(2217), - [anon_sym_AMP_AMP] = ACTIONS(2217), - [anon_sym_PIPE_PIPE] = ACTIONS(2217), - [anon_sym_or] = ACTIONS(2217), - [sym_none] = ACTIONS(2217), - [sym_true] = ACTIONS(2217), - [sym_false] = ACTIONS(2217), - [sym_nil] = ACTIONS(2217), - [anon_sym_QMARK_DOT] = ACTIONS(2217), - [anon_sym_POUND_LBRACK] = ACTIONS(2217), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_DOLLARif] = ACTIONS(2217), - [anon_sym_is] = ACTIONS(2217), - [anon_sym_BANGis] = ACTIONS(2217), - [anon_sym_in] = ACTIONS(2217), - [anon_sym_BANGin] = ACTIONS(2217), - [anon_sym_match] = ACTIONS(2217), - [anon_sym_select] = ACTIONS(2217), - [anon_sym_STAR_EQ] = ACTIONS(2217), - [anon_sym_SLASH_EQ] = ACTIONS(2217), - [anon_sym_PERCENT_EQ] = ACTIONS(2217), - [anon_sym_LT_LT_EQ] = ACTIONS(2217), - [anon_sym_GT_GT_EQ] = ACTIONS(2217), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2217), - [anon_sym_AMP_EQ] = ACTIONS(2217), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2217), - [anon_sym_PLUS_EQ] = ACTIONS(2217), - [anon_sym_DASH_EQ] = ACTIONS(2217), - [anon_sym_PIPE_EQ] = ACTIONS(2217), - [anon_sym_CARET_EQ] = ACTIONS(2217), - [anon_sym_COLON_EQ] = ACTIONS(2217), - [anon_sym_lock] = ACTIONS(2217), - [anon_sym_rlock] = ACTIONS(2217), - [anon_sym_unsafe] = ACTIONS(2217), - [anon_sym_sql] = ACTIONS(2217), - [sym_int_literal] = ACTIONS(2217), - [sym_float_literal] = ACTIONS(2217), - [sym_rune_literal] = ACTIONS(2217), - [anon_sym_SQUOTE] = ACTIONS(2217), - [anon_sym_DQUOTE] = ACTIONS(2217), - [anon_sym_c_SQUOTE] = ACTIONS(2217), - [anon_sym_c_DQUOTE] = ACTIONS(2217), - [anon_sym_r_SQUOTE] = ACTIONS(2217), - [anon_sym_r_DQUOTE] = ACTIONS(2217), - [sym_pseudo_compile_time_identifier] = ACTIONS(2217), - [anon_sym_shared] = ACTIONS(2217), - [anon_sym_map_LBRACK] = ACTIONS(2217), - [anon_sym_chan] = ACTIONS(2217), - [anon_sym_thread] = ACTIONS(2217), - [anon_sym_atomic] = ACTIONS(2217), - [anon_sym_assert] = ACTIONS(2217), - [anon_sym_defer] = ACTIONS(2217), - [anon_sym_goto] = ACTIONS(2217), - [anon_sym_break] = ACTIONS(2217), - [anon_sym_continue] = ACTIONS(2217), - [anon_sym_return] = ACTIONS(2217), - [anon_sym_DOLLARfor] = ACTIONS(2217), - [anon_sym_for] = ACTIONS(2217), - [anon_sym_POUND] = ACTIONS(2217), - [anon_sym_asm] = ACTIONS(2217), - [anon_sym_AT_LBRACK] = ACTIONS(2217), + [anon_sym_DOT] = ACTIONS(2337), + [anon_sym_as] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_COMMA] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_LPAREN] = ACTIONS(2337), + [anon_sym_EQ] = ACTIONS(2337), + [anon_sym___global] = ACTIONS(2337), + [anon_sym_type] = ACTIONS(2337), + [anon_sym_fn] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(2337), + [anon_sym_SLASH] = ACTIONS(2337), + [anon_sym_PERCENT] = ACTIONS(2337), + [anon_sym_LT] = ACTIONS(2337), + [anon_sym_GT] = ACTIONS(2337), + [anon_sym_EQ_EQ] = ACTIONS(2337), + [anon_sym_BANG_EQ] = ACTIONS(2337), + [anon_sym_LT_EQ] = ACTIONS(2337), + [anon_sym_GT_EQ] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(2335), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_union] = ACTIONS(2337), + [anon_sym_pub] = ACTIONS(2337), + [anon_sym_mut] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_interface] = ACTIONS(2337), + [anon_sym_PLUS_PLUS] = ACTIONS(2337), + [anon_sym_DASH_DASH] = ACTIONS(2337), + [anon_sym_QMARK] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(2337), + [anon_sym_go] = ACTIONS(2337), + [anon_sym_spawn] = ACTIONS(2337), + [anon_sym_json_DOTdecode] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_LBRACK2] = ACTIONS(2337), + [anon_sym_TILDE] = ACTIONS(2337), + [anon_sym_CARET] = ACTIONS(2337), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_LT_DASH] = ACTIONS(2337), + [anon_sym_LT_LT] = ACTIONS(2337), + [anon_sym_GT_GT] = ACTIONS(2337), + [anon_sym_GT_GT_GT] = ACTIONS(2337), + [anon_sym_AMP_CARET] = ACTIONS(2337), + [anon_sym_AMP_AMP] = ACTIONS(2337), + [anon_sym_PIPE_PIPE] = ACTIONS(2337), + [anon_sym_or] = ACTIONS(2337), + [sym_none] = ACTIONS(2337), + [sym_true] = ACTIONS(2337), + [sym_false] = ACTIONS(2337), + [sym_nil] = ACTIONS(2337), + [anon_sym_QMARK_DOT] = ACTIONS(2337), + [anon_sym_POUND_LBRACK] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_DOLLARif] = ACTIONS(2337), + [anon_sym_is] = ACTIONS(2337), + [anon_sym_BANGis] = ACTIONS(2337), + [anon_sym_in] = ACTIONS(2337), + [anon_sym_BANGin] = ACTIONS(2337), + [anon_sym_match] = ACTIONS(2337), + [anon_sym_select] = ACTIONS(2337), + [anon_sym_STAR_EQ] = ACTIONS(2337), + [anon_sym_SLASH_EQ] = ACTIONS(2337), + [anon_sym_PERCENT_EQ] = ACTIONS(2337), + [anon_sym_LT_LT_EQ] = ACTIONS(2337), + [anon_sym_GT_GT_EQ] = ACTIONS(2337), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2337), + [anon_sym_AMP_EQ] = ACTIONS(2337), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2337), + [anon_sym_PLUS_EQ] = ACTIONS(2337), + [anon_sym_DASH_EQ] = ACTIONS(2337), + [anon_sym_PIPE_EQ] = ACTIONS(2337), + [anon_sym_CARET_EQ] = ACTIONS(2337), + [anon_sym_COLON_EQ] = ACTIONS(2337), + [anon_sym_lock] = ACTIONS(2337), + [anon_sym_rlock] = ACTIONS(2337), + [anon_sym_unsafe] = ACTIONS(2337), + [anon_sym_sql] = ACTIONS(2337), + [sym_int_literal] = ACTIONS(2337), + [sym_float_literal] = ACTIONS(2337), + [sym_rune_literal] = ACTIONS(2337), + [anon_sym_SQUOTE] = ACTIONS(2337), + [anon_sym_DQUOTE] = ACTIONS(2337), + [anon_sym_c_SQUOTE] = ACTIONS(2337), + [anon_sym_c_DQUOTE] = ACTIONS(2337), + [anon_sym_r_SQUOTE] = ACTIONS(2337), + [anon_sym_r_DQUOTE] = ACTIONS(2337), + [sym_pseudo_compile_time_identifier] = ACTIONS(2337), + [anon_sym_shared] = ACTIONS(2337), + [anon_sym_map_LBRACK] = ACTIONS(2337), + [anon_sym_chan] = ACTIONS(2337), + [anon_sym_thread] = ACTIONS(2337), + [anon_sym_atomic] = ACTIONS(2337), + [anon_sym_assert] = ACTIONS(2337), + [anon_sym_defer] = ACTIONS(2337), + [anon_sym_goto] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_DOLLARfor] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(2337), + [anon_sym_asm] = ACTIONS(2337), + [anon_sym_AT_LBRACK] = ACTIONS(2337), }, [339] = { [sym_line_comment] = STATE(339), [sym_block_comment] = STATE(339), - [ts_builtin_sym_end] = ACTIONS(2219), - [sym_identifier] = ACTIONS(2221), - [anon_sym_LF] = ACTIONS(2221), - [anon_sym_CR] = ACTIONS(2221), - [anon_sym_CR_LF] = ACTIONS(2221), + [ts_builtin_sym_end] = ACTIONS(2339), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LF] = ACTIONS(2341), + [anon_sym_CR] = ACTIONS(2341), + [anon_sym_CR_LF] = ACTIONS(2341), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2221), - [anon_sym_as] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_COMMA] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_EQ] = ACTIONS(2221), - [anon_sym___global] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(2221), - [anon_sym_fn] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_PERCENT] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_GT] = ACTIONS(2221), - [anon_sym_EQ_EQ] = ACTIONS(2221), - [anon_sym_BANG_EQ] = ACTIONS(2221), - [anon_sym_LT_EQ] = ACTIONS(2221), - [anon_sym_GT_EQ] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2219), - [anon_sym_struct] = ACTIONS(2221), - [anon_sym_union] = ACTIONS(2221), - [anon_sym_pub] = ACTIONS(2221), - [anon_sym_mut] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [anon_sym_QMARK] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_go] = ACTIONS(2221), - [anon_sym_spawn] = ACTIONS(2221), - [anon_sym_json_DOTdecode] = ACTIONS(2221), - [anon_sym_LBRACK2] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_LT_DASH] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_GT_GT] = ACTIONS(2221), - [anon_sym_GT_GT_GT] = ACTIONS(2221), - [anon_sym_AMP_CARET] = ACTIONS(2221), - [anon_sym_AMP_AMP] = ACTIONS(2221), - [anon_sym_PIPE_PIPE] = ACTIONS(2221), - [anon_sym_or] = ACTIONS(2221), - [sym_none] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_nil] = ACTIONS(2221), - [anon_sym_QMARK_DOT] = ACTIONS(2221), - [anon_sym_POUND_LBRACK] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_DOLLARif] = ACTIONS(2221), - [anon_sym_is] = ACTIONS(2221), - [anon_sym_BANGis] = ACTIONS(2221), - [anon_sym_in] = ACTIONS(2221), - [anon_sym_BANGin] = ACTIONS(2221), - [anon_sym_match] = ACTIONS(2221), - [anon_sym_select] = ACTIONS(2221), - [anon_sym_STAR_EQ] = ACTIONS(2221), - [anon_sym_SLASH_EQ] = ACTIONS(2221), - [anon_sym_PERCENT_EQ] = ACTIONS(2221), - [anon_sym_LT_LT_EQ] = ACTIONS(2221), - [anon_sym_GT_GT_EQ] = ACTIONS(2221), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2221), - [anon_sym_AMP_EQ] = ACTIONS(2221), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2221), - [anon_sym_PLUS_EQ] = ACTIONS(2221), - [anon_sym_DASH_EQ] = ACTIONS(2221), - [anon_sym_PIPE_EQ] = ACTIONS(2221), - [anon_sym_CARET_EQ] = ACTIONS(2221), - [anon_sym_COLON_EQ] = ACTIONS(2221), - [anon_sym_lock] = ACTIONS(2221), - [anon_sym_rlock] = ACTIONS(2221), - [anon_sym_unsafe] = ACTIONS(2221), - [anon_sym_sql] = ACTIONS(2221), - [sym_int_literal] = ACTIONS(2221), - [sym_float_literal] = ACTIONS(2221), - [sym_rune_literal] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_c_SQUOTE] = ACTIONS(2221), - [anon_sym_c_DQUOTE] = ACTIONS(2221), - [anon_sym_r_SQUOTE] = ACTIONS(2221), - [anon_sym_r_DQUOTE] = ACTIONS(2221), - [sym_pseudo_compile_time_identifier] = ACTIONS(2221), - [anon_sym_shared] = ACTIONS(2221), - [anon_sym_map_LBRACK] = ACTIONS(2221), - [anon_sym_chan] = ACTIONS(2221), - [anon_sym_thread] = ACTIONS(2221), - [anon_sym_atomic] = ACTIONS(2221), - [anon_sym_assert] = ACTIONS(2221), - [anon_sym_defer] = ACTIONS(2221), - [anon_sym_goto] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_DOLLARfor] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_POUND] = ACTIONS(2221), - [anon_sym_asm] = ACTIONS(2221), - [anon_sym_AT_LBRACK] = ACTIONS(2221), + [anon_sym_DOT] = ACTIONS(2341), + [anon_sym_as] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2341), + [anon_sym_COMMA] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2341), + [anon_sym_EQ] = ACTIONS(2341), + [anon_sym___global] = ACTIONS(2341), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_fn] = ACTIONS(2341), + [anon_sym_PLUS] = ACTIONS(2341), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_STAR] = ACTIONS(2341), + [anon_sym_SLASH] = ACTIONS(2341), + [anon_sym_PERCENT] = ACTIONS(2341), + [anon_sym_LT] = ACTIONS(2341), + [anon_sym_GT] = ACTIONS(2341), + [anon_sym_EQ_EQ] = ACTIONS(2341), + [anon_sym_BANG_EQ] = ACTIONS(2341), + [anon_sym_LT_EQ] = ACTIONS(2341), + [anon_sym_GT_EQ] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2339), + [anon_sym_struct] = ACTIONS(2341), + [anon_sym_union] = ACTIONS(2341), + [anon_sym_pub] = ACTIONS(2341), + [anon_sym_mut] = ACTIONS(2341), + [anon_sym_enum] = ACTIONS(2341), + [anon_sym_interface] = ACTIONS(2341), + [anon_sym_PLUS_PLUS] = ACTIONS(2341), + [anon_sym_DASH_DASH] = ACTIONS(2341), + [anon_sym_QMARK] = ACTIONS(2341), + [anon_sym_BANG] = ACTIONS(2341), + [anon_sym_go] = ACTIONS(2341), + [anon_sym_spawn] = ACTIONS(2341), + [anon_sym_json_DOTdecode] = ACTIONS(2341), + [anon_sym_PIPE] = ACTIONS(2341), + [anon_sym_LBRACK2] = ACTIONS(2341), + [anon_sym_TILDE] = ACTIONS(2341), + [anon_sym_CARET] = ACTIONS(2341), + [anon_sym_AMP] = ACTIONS(2341), + [anon_sym_LT_DASH] = ACTIONS(2341), + [anon_sym_LT_LT] = ACTIONS(2341), + [anon_sym_GT_GT] = ACTIONS(2341), + [anon_sym_GT_GT_GT] = ACTIONS(2341), + [anon_sym_AMP_CARET] = ACTIONS(2341), + [anon_sym_AMP_AMP] = ACTIONS(2341), + [anon_sym_PIPE_PIPE] = ACTIONS(2341), + [anon_sym_or] = ACTIONS(2341), + [sym_none] = ACTIONS(2341), + [sym_true] = ACTIONS(2341), + [sym_false] = ACTIONS(2341), + [sym_nil] = ACTIONS(2341), + [anon_sym_QMARK_DOT] = ACTIONS(2341), + [anon_sym_POUND_LBRACK] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_DOLLARif] = ACTIONS(2341), + [anon_sym_is] = ACTIONS(2341), + [anon_sym_BANGis] = ACTIONS(2341), + [anon_sym_in] = ACTIONS(2341), + [anon_sym_BANGin] = ACTIONS(2341), + [anon_sym_match] = ACTIONS(2341), + [anon_sym_select] = ACTIONS(2341), + [anon_sym_STAR_EQ] = ACTIONS(2341), + [anon_sym_SLASH_EQ] = ACTIONS(2341), + [anon_sym_PERCENT_EQ] = ACTIONS(2341), + [anon_sym_LT_LT_EQ] = ACTIONS(2341), + [anon_sym_GT_GT_EQ] = ACTIONS(2341), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2341), + [anon_sym_AMP_EQ] = ACTIONS(2341), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2341), + [anon_sym_PLUS_EQ] = ACTIONS(2341), + [anon_sym_DASH_EQ] = ACTIONS(2341), + [anon_sym_PIPE_EQ] = ACTIONS(2341), + [anon_sym_CARET_EQ] = ACTIONS(2341), + [anon_sym_COLON_EQ] = ACTIONS(2341), + [anon_sym_lock] = ACTIONS(2341), + [anon_sym_rlock] = ACTIONS(2341), + [anon_sym_unsafe] = ACTIONS(2341), + [anon_sym_sql] = ACTIONS(2341), + [sym_int_literal] = ACTIONS(2341), + [sym_float_literal] = ACTIONS(2341), + [sym_rune_literal] = ACTIONS(2341), + [anon_sym_SQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [anon_sym_c_SQUOTE] = ACTIONS(2341), + [anon_sym_c_DQUOTE] = ACTIONS(2341), + [anon_sym_r_SQUOTE] = ACTIONS(2341), + [anon_sym_r_DQUOTE] = ACTIONS(2341), + [sym_pseudo_compile_time_identifier] = ACTIONS(2341), + [anon_sym_shared] = ACTIONS(2341), + [anon_sym_map_LBRACK] = ACTIONS(2341), + [anon_sym_chan] = ACTIONS(2341), + [anon_sym_thread] = ACTIONS(2341), + [anon_sym_atomic] = ACTIONS(2341), + [anon_sym_assert] = ACTIONS(2341), + [anon_sym_defer] = ACTIONS(2341), + [anon_sym_goto] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2341), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_DOLLARfor] = ACTIONS(2341), + [anon_sym_for] = ACTIONS(2341), + [anon_sym_POUND] = ACTIONS(2341), + [anon_sym_asm] = ACTIONS(2341), + [anon_sym_AT_LBRACK] = ACTIONS(2341), }, [340] = { [sym_line_comment] = STATE(340), [sym_block_comment] = STATE(340), - [ts_builtin_sym_end] = ACTIONS(2223), - [sym_identifier] = ACTIONS(2225), - [anon_sym_LF] = ACTIONS(2225), - [anon_sym_CR] = ACTIONS(2225), - [anon_sym_CR_LF] = ACTIONS(2225), + [ts_builtin_sym_end] = ACTIONS(2343), + [sym_identifier] = ACTIONS(2345), + [anon_sym_LF] = ACTIONS(2345), + [anon_sym_CR] = ACTIONS(2345), + [anon_sym_CR_LF] = ACTIONS(2345), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2225), - [anon_sym_as] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_EQ] = ACTIONS(2225), - [anon_sym___global] = ACTIONS(2225), - [anon_sym_type] = ACTIONS(2225), - [anon_sym_PIPE] = ACTIONS(2225), - [anon_sym_fn] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_STAR] = ACTIONS(2225), - [anon_sym_SLASH] = ACTIONS(2225), - [anon_sym_PERCENT] = ACTIONS(2225), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_GT] = ACTIONS(2225), - [anon_sym_EQ_EQ] = ACTIONS(2225), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_LT_EQ] = ACTIONS(2225), - [anon_sym_GT_EQ] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_struct] = ACTIONS(2225), - [anon_sym_union] = ACTIONS(2225), - [anon_sym_pub] = ACTIONS(2225), - [anon_sym_mut] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), - [anon_sym_interface] = ACTIONS(2225), - [anon_sym_PLUS_PLUS] = ACTIONS(2225), - [anon_sym_DASH_DASH] = ACTIONS(2225), - [anon_sym_QMARK] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_go] = ACTIONS(2225), - [anon_sym_spawn] = ACTIONS(2225), - [anon_sym_json_DOTdecode] = ACTIONS(2225), - [anon_sym_LBRACK2] = ACTIONS(2225), - [anon_sym_TILDE] = ACTIONS(2225), - [anon_sym_CARET] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2225), - [anon_sym_LT_DASH] = ACTIONS(2225), - [anon_sym_LT_LT] = ACTIONS(2225), - [anon_sym_GT_GT] = ACTIONS(2225), - [anon_sym_GT_GT_GT] = ACTIONS(2225), - [anon_sym_AMP_CARET] = ACTIONS(2225), - [anon_sym_AMP_AMP] = ACTIONS(2225), - [anon_sym_PIPE_PIPE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2225), - [sym_none] = ACTIONS(2225), - [sym_true] = ACTIONS(2225), - [sym_false] = ACTIONS(2225), - [sym_nil] = ACTIONS(2225), - [anon_sym_QMARK_DOT] = ACTIONS(2225), - [anon_sym_POUND_LBRACK] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_DOLLARif] = ACTIONS(2225), - [anon_sym_is] = ACTIONS(2225), - [anon_sym_BANGis] = ACTIONS(2225), - [anon_sym_in] = ACTIONS(2225), - [anon_sym_BANGin] = ACTIONS(2225), - [anon_sym_match] = ACTIONS(2225), - [anon_sym_select] = ACTIONS(2225), - [anon_sym_STAR_EQ] = ACTIONS(2225), - [anon_sym_SLASH_EQ] = ACTIONS(2225), - [anon_sym_PERCENT_EQ] = ACTIONS(2225), - [anon_sym_LT_LT_EQ] = ACTIONS(2225), - [anon_sym_GT_GT_EQ] = ACTIONS(2225), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2225), - [anon_sym_AMP_EQ] = ACTIONS(2225), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2225), - [anon_sym_PLUS_EQ] = ACTIONS(2225), - [anon_sym_DASH_EQ] = ACTIONS(2225), - [anon_sym_PIPE_EQ] = ACTIONS(2225), - [anon_sym_CARET_EQ] = ACTIONS(2225), - [anon_sym_COLON_EQ] = ACTIONS(2225), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(2225), - [anon_sym_sql] = ACTIONS(2225), - [sym_int_literal] = ACTIONS(2225), - [sym_float_literal] = ACTIONS(2225), - [sym_rune_literal] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE] = ACTIONS(2225), - [anon_sym_c_SQUOTE] = ACTIONS(2225), - [anon_sym_c_DQUOTE] = ACTIONS(2225), - [anon_sym_r_SQUOTE] = ACTIONS(2225), - [anon_sym_r_DQUOTE] = ACTIONS(2225), - [sym_pseudo_compile_time_identifier] = ACTIONS(2225), - [anon_sym_shared] = ACTIONS(2225), - [anon_sym_map_LBRACK] = ACTIONS(2225), - [anon_sym_chan] = ACTIONS(2225), - [anon_sym_thread] = ACTIONS(2225), - [anon_sym_atomic] = ACTIONS(2225), - [anon_sym_assert] = ACTIONS(2225), - [anon_sym_defer] = ACTIONS(2225), - [anon_sym_goto] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_DOLLARfor] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_POUND] = ACTIONS(2225), - [anon_sym_asm] = ACTIONS(2225), - [anon_sym_AT_LBRACK] = ACTIONS(2225), + [anon_sym_DOT] = ACTIONS(2345), + [anon_sym_as] = ACTIONS(2345), + [anon_sym_LBRACE] = ACTIONS(2345), + [anon_sym_COMMA] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_LPAREN] = ACTIONS(2345), + [anon_sym_EQ] = ACTIONS(2345), + [anon_sym___global] = ACTIONS(2345), + [anon_sym_type] = ACTIONS(2345), + [anon_sym_fn] = ACTIONS(2345), + [anon_sym_PLUS] = ACTIONS(2345), + [anon_sym_DASH] = ACTIONS(2345), + [anon_sym_STAR] = ACTIONS(2345), + [anon_sym_SLASH] = ACTIONS(2345), + [anon_sym_PERCENT] = ACTIONS(2345), + [anon_sym_LT] = ACTIONS(2345), + [anon_sym_GT] = ACTIONS(2345), + [anon_sym_EQ_EQ] = ACTIONS(2345), + [anon_sym_BANG_EQ] = ACTIONS(2345), + [anon_sym_LT_EQ] = ACTIONS(2345), + [anon_sym_GT_EQ] = ACTIONS(2345), + [anon_sym_LBRACK] = ACTIONS(2343), + [anon_sym_struct] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [anon_sym_pub] = ACTIONS(2345), + [anon_sym_mut] = ACTIONS(2345), + [anon_sym_enum] = ACTIONS(2345), + [anon_sym_interface] = ACTIONS(2345), + [anon_sym_PLUS_PLUS] = ACTIONS(2345), + [anon_sym_DASH_DASH] = ACTIONS(2345), + [anon_sym_QMARK] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(2345), + [anon_sym_go] = ACTIONS(2345), + [anon_sym_spawn] = ACTIONS(2345), + [anon_sym_json_DOTdecode] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(2345), + [anon_sym_LBRACK2] = ACTIONS(2345), + [anon_sym_TILDE] = ACTIONS(2345), + [anon_sym_CARET] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(2345), + [anon_sym_LT_DASH] = ACTIONS(2345), + [anon_sym_LT_LT] = ACTIONS(2345), + [anon_sym_GT_GT] = ACTIONS(2345), + [anon_sym_GT_GT_GT] = ACTIONS(2345), + [anon_sym_AMP_CARET] = ACTIONS(2345), + [anon_sym_AMP_AMP] = ACTIONS(2345), + [anon_sym_PIPE_PIPE] = ACTIONS(2345), + [anon_sym_or] = ACTIONS(2345), + [sym_none] = ACTIONS(2345), + [sym_true] = ACTIONS(2345), + [sym_false] = ACTIONS(2345), + [sym_nil] = ACTIONS(2345), + [anon_sym_QMARK_DOT] = ACTIONS(2345), + [anon_sym_POUND_LBRACK] = ACTIONS(2345), + [anon_sym_if] = ACTIONS(2345), + [anon_sym_DOLLARif] = ACTIONS(2345), + [anon_sym_is] = ACTIONS(2345), + [anon_sym_BANGis] = ACTIONS(2345), + [anon_sym_in] = ACTIONS(2345), + [anon_sym_BANGin] = ACTIONS(2345), + [anon_sym_match] = ACTIONS(2345), + [anon_sym_select] = ACTIONS(2345), + [anon_sym_STAR_EQ] = ACTIONS(2345), + [anon_sym_SLASH_EQ] = ACTIONS(2345), + [anon_sym_PERCENT_EQ] = ACTIONS(2345), + [anon_sym_LT_LT_EQ] = ACTIONS(2345), + [anon_sym_GT_GT_EQ] = ACTIONS(2345), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2345), + [anon_sym_AMP_EQ] = ACTIONS(2345), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2345), + [anon_sym_PLUS_EQ] = ACTIONS(2345), + [anon_sym_DASH_EQ] = ACTIONS(2345), + [anon_sym_PIPE_EQ] = ACTIONS(2345), + [anon_sym_CARET_EQ] = ACTIONS(2345), + [anon_sym_COLON_EQ] = ACTIONS(2345), + [anon_sym_lock] = ACTIONS(2345), + [anon_sym_rlock] = ACTIONS(2345), + [anon_sym_unsafe] = ACTIONS(2345), + [anon_sym_sql] = ACTIONS(2345), + [sym_int_literal] = ACTIONS(2345), + [sym_float_literal] = ACTIONS(2345), + [sym_rune_literal] = ACTIONS(2345), + [anon_sym_SQUOTE] = ACTIONS(2345), + [anon_sym_DQUOTE] = ACTIONS(2345), + [anon_sym_c_SQUOTE] = ACTIONS(2345), + [anon_sym_c_DQUOTE] = ACTIONS(2345), + [anon_sym_r_SQUOTE] = ACTIONS(2345), + [anon_sym_r_DQUOTE] = ACTIONS(2345), + [sym_pseudo_compile_time_identifier] = ACTIONS(2345), + [anon_sym_shared] = ACTIONS(2345), + [anon_sym_map_LBRACK] = ACTIONS(2345), + [anon_sym_chan] = ACTIONS(2345), + [anon_sym_thread] = ACTIONS(2345), + [anon_sym_atomic] = ACTIONS(2345), + [anon_sym_assert] = ACTIONS(2345), + [anon_sym_defer] = ACTIONS(2345), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_break] = ACTIONS(2345), + [anon_sym_continue] = ACTIONS(2345), + [anon_sym_return] = ACTIONS(2345), + [anon_sym_DOLLARfor] = ACTIONS(2345), + [anon_sym_for] = ACTIONS(2345), + [anon_sym_POUND] = ACTIONS(2345), + [anon_sym_asm] = ACTIONS(2345), + [anon_sym_AT_LBRACK] = ACTIONS(2345), }, [341] = { [sym_line_comment] = STATE(341), [sym_block_comment] = STATE(341), - [ts_builtin_sym_end] = ACTIONS(2227), - [sym_identifier] = ACTIONS(2229), - [anon_sym_LF] = ACTIONS(2229), - [anon_sym_CR] = ACTIONS(2229), - [anon_sym_CR_LF] = ACTIONS(2229), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2229), - [anon_sym_as] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2229), - [anon_sym_COMMA] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_EQ] = ACTIONS(2229), - [anon_sym___global] = ACTIONS(2229), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_PIPE] = ACTIONS(2229), - [anon_sym_fn] = ACTIONS(2229), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_STAR] = ACTIONS(2229), - [anon_sym_SLASH] = ACTIONS(2229), - [anon_sym_PERCENT] = ACTIONS(2229), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_GT] = ACTIONS(2229), - [anon_sym_EQ_EQ] = ACTIONS(2229), - [anon_sym_BANG_EQ] = ACTIONS(2229), - [anon_sym_LT_EQ] = ACTIONS(2229), - [anon_sym_GT_EQ] = ACTIONS(2229), - [anon_sym_LBRACK] = ACTIONS(2227), - [anon_sym_struct] = ACTIONS(2229), - [anon_sym_union] = ACTIONS(2229), - [anon_sym_pub] = ACTIONS(2229), - [anon_sym_mut] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [anon_sym_interface] = ACTIONS(2229), - [anon_sym_PLUS_PLUS] = ACTIONS(2229), - [anon_sym_DASH_DASH] = ACTIONS(2229), - [anon_sym_QMARK] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2229), - [anon_sym_go] = ACTIONS(2229), - [anon_sym_spawn] = ACTIONS(2229), - [anon_sym_json_DOTdecode] = ACTIONS(2229), - [anon_sym_LBRACK2] = ACTIONS(2229), - [anon_sym_TILDE] = ACTIONS(2229), - [anon_sym_CARET] = ACTIONS(2229), - [anon_sym_AMP] = ACTIONS(2229), - [anon_sym_LT_DASH] = ACTIONS(2229), - [anon_sym_LT_LT] = ACTIONS(2229), - [anon_sym_GT_GT] = ACTIONS(2229), - [anon_sym_GT_GT_GT] = ACTIONS(2229), - [anon_sym_AMP_CARET] = ACTIONS(2229), - [anon_sym_AMP_AMP] = ACTIONS(2229), - [anon_sym_PIPE_PIPE] = ACTIONS(2229), - [anon_sym_or] = ACTIONS(2229), - [sym_none] = ACTIONS(2229), - [sym_true] = ACTIONS(2229), - [sym_false] = ACTIONS(2229), - [sym_nil] = ACTIONS(2229), - [anon_sym_QMARK_DOT] = ACTIONS(2229), - [anon_sym_POUND_LBRACK] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_DOLLARif] = ACTIONS(2229), - [anon_sym_is] = ACTIONS(2229), - [anon_sym_BANGis] = ACTIONS(2229), - [anon_sym_in] = ACTIONS(2229), - [anon_sym_BANGin] = ACTIONS(2229), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_select] = ACTIONS(2229), - [anon_sym_STAR_EQ] = ACTIONS(2229), - [anon_sym_SLASH_EQ] = ACTIONS(2229), - [anon_sym_PERCENT_EQ] = ACTIONS(2229), - [anon_sym_LT_LT_EQ] = ACTIONS(2229), - [anon_sym_GT_GT_EQ] = ACTIONS(2229), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2229), - [anon_sym_AMP_EQ] = ACTIONS(2229), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2229), - [anon_sym_PLUS_EQ] = ACTIONS(2229), - [anon_sym_DASH_EQ] = ACTIONS(2229), - [anon_sym_PIPE_EQ] = ACTIONS(2229), - [anon_sym_CARET_EQ] = ACTIONS(2229), - [anon_sym_COLON_EQ] = ACTIONS(2229), - [anon_sym_lock] = ACTIONS(2229), - [anon_sym_rlock] = ACTIONS(2229), - [anon_sym_unsafe] = ACTIONS(2229), - [anon_sym_sql] = ACTIONS(2229), - [sym_int_literal] = ACTIONS(2229), - [sym_float_literal] = ACTIONS(2229), - [sym_rune_literal] = ACTIONS(2229), - [anon_sym_SQUOTE] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2229), - [anon_sym_c_SQUOTE] = ACTIONS(2229), - [anon_sym_c_DQUOTE] = ACTIONS(2229), - [anon_sym_r_SQUOTE] = ACTIONS(2229), - [anon_sym_r_DQUOTE] = ACTIONS(2229), - [sym_pseudo_compile_time_identifier] = ACTIONS(2229), - [anon_sym_shared] = ACTIONS(2229), - [anon_sym_map_LBRACK] = ACTIONS(2229), - [anon_sym_chan] = ACTIONS(2229), - [anon_sym_thread] = ACTIONS(2229), - [anon_sym_atomic] = ACTIONS(2229), - [anon_sym_assert] = ACTIONS(2229), - [anon_sym_defer] = ACTIONS(2229), - [anon_sym_goto] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_DOLLARfor] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_POUND] = ACTIONS(2229), - [anon_sym_asm] = ACTIONS(2229), - [anon_sym_AT_LBRACK] = ACTIONS(2229), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4464), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(2347), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [342] = { [sym_line_comment] = STATE(342), [sym_block_comment] = STATE(342), - [ts_builtin_sym_end] = ACTIONS(2231), - [sym_identifier] = ACTIONS(2233), - [anon_sym_LF] = ACTIONS(2233), - [anon_sym_CR] = ACTIONS(2233), - [anon_sym_CR_LF] = ACTIONS(2233), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_as] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_COMMA] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_EQ] = ACTIONS(2233), - [anon_sym___global] = ACTIONS(2233), - [anon_sym_type] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2233), - [anon_sym_fn] = ACTIONS(2233), - [anon_sym_PLUS] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2233), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_SLASH] = ACTIONS(2233), - [anon_sym_PERCENT] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2233), - [anon_sym_GT] = ACTIONS(2233), - [anon_sym_EQ_EQ] = ACTIONS(2233), - [anon_sym_BANG_EQ] = ACTIONS(2233), - [anon_sym_LT_EQ] = ACTIONS(2233), - [anon_sym_GT_EQ] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2231), - [anon_sym_struct] = ACTIONS(2233), - [anon_sym_union] = ACTIONS(2233), - [anon_sym_pub] = ACTIONS(2233), - [anon_sym_mut] = ACTIONS(2233), - [anon_sym_enum] = ACTIONS(2233), - [anon_sym_interface] = ACTIONS(2233), - [anon_sym_PLUS_PLUS] = ACTIONS(2233), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [anon_sym_QMARK] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2233), - [anon_sym_go] = ACTIONS(2233), - [anon_sym_spawn] = ACTIONS(2233), - [anon_sym_json_DOTdecode] = ACTIONS(2233), - [anon_sym_LBRACK2] = ACTIONS(2233), - [anon_sym_TILDE] = ACTIONS(2233), - [anon_sym_CARET] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_LT_DASH] = ACTIONS(2233), - [anon_sym_LT_LT] = ACTIONS(2233), - [anon_sym_GT_GT] = ACTIONS(2233), - [anon_sym_GT_GT_GT] = ACTIONS(2233), - [anon_sym_AMP_CARET] = ACTIONS(2233), - [anon_sym_AMP_AMP] = ACTIONS(2233), - [anon_sym_PIPE_PIPE] = ACTIONS(2233), - [anon_sym_or] = ACTIONS(2233), - [sym_none] = ACTIONS(2233), - [sym_true] = ACTIONS(2233), - [sym_false] = ACTIONS(2233), - [sym_nil] = ACTIONS(2233), - [anon_sym_QMARK_DOT] = ACTIONS(2233), - [anon_sym_POUND_LBRACK] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_DOLLARif] = ACTIONS(2233), - [anon_sym_is] = ACTIONS(2233), - [anon_sym_BANGis] = ACTIONS(2233), - [anon_sym_in] = ACTIONS(2233), - [anon_sym_BANGin] = ACTIONS(2233), - [anon_sym_match] = ACTIONS(2233), - [anon_sym_select] = ACTIONS(2233), - [anon_sym_STAR_EQ] = ACTIONS(2233), - [anon_sym_SLASH_EQ] = ACTIONS(2233), - [anon_sym_PERCENT_EQ] = ACTIONS(2233), - [anon_sym_LT_LT_EQ] = ACTIONS(2233), - [anon_sym_GT_GT_EQ] = ACTIONS(2233), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2233), - [anon_sym_AMP_EQ] = ACTIONS(2233), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2233), - [anon_sym_PLUS_EQ] = ACTIONS(2233), - [anon_sym_DASH_EQ] = ACTIONS(2233), - [anon_sym_PIPE_EQ] = ACTIONS(2233), - [anon_sym_CARET_EQ] = ACTIONS(2233), - [anon_sym_COLON_EQ] = ACTIONS(2233), - [anon_sym_lock] = ACTIONS(2233), - [anon_sym_rlock] = ACTIONS(2233), - [anon_sym_unsafe] = ACTIONS(2233), - [anon_sym_sql] = ACTIONS(2233), - [sym_int_literal] = ACTIONS(2233), - [sym_float_literal] = ACTIONS(2233), - [sym_rune_literal] = ACTIONS(2233), - [anon_sym_SQUOTE] = ACTIONS(2233), - [anon_sym_DQUOTE] = ACTIONS(2233), - [anon_sym_c_SQUOTE] = ACTIONS(2233), - [anon_sym_c_DQUOTE] = ACTIONS(2233), - [anon_sym_r_SQUOTE] = ACTIONS(2233), - [anon_sym_r_DQUOTE] = ACTIONS(2233), - [sym_pseudo_compile_time_identifier] = ACTIONS(2233), - [anon_sym_shared] = ACTIONS(2233), - [anon_sym_map_LBRACK] = ACTIONS(2233), - [anon_sym_chan] = ACTIONS(2233), - [anon_sym_thread] = ACTIONS(2233), - [anon_sym_atomic] = ACTIONS(2233), - [anon_sym_assert] = ACTIONS(2233), - [anon_sym_defer] = ACTIONS(2233), - [anon_sym_goto] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_DOLLARfor] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_POUND] = ACTIONS(2233), - [anon_sym_asm] = ACTIONS(2233), - [anon_sym_AT_LBRACK] = ACTIONS(2233), + [sym__expression] = STATE(2619), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_range] = STATE(4685), + [sym_identifier] = ACTIONS(1424), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1486), }, [343] = { [sym_line_comment] = STATE(343), [sym_block_comment] = STATE(343), - [ts_builtin_sym_end] = ACTIONS(2235), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LF] = ACTIONS(2237), - [anon_sym_CR] = ACTIONS(2237), - [anon_sym_CR_LF] = ACTIONS(2237), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2237), - [anon_sym_as] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_COMMA] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_EQ] = ACTIONS(2237), - [anon_sym___global] = ACTIONS(2237), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_PIPE] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_PERCENT] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_GT] = ACTIONS(2237), - [anon_sym_EQ_EQ] = ACTIONS(2237), - [anon_sym_BANG_EQ] = ACTIONS(2237), - [anon_sym_LT_EQ] = ACTIONS(2237), - [anon_sym_GT_EQ] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2237), - [anon_sym_union] = ACTIONS(2237), - [anon_sym_pub] = ACTIONS(2237), - [anon_sym_mut] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [anon_sym_QMARK] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_go] = ACTIONS(2237), - [anon_sym_spawn] = ACTIONS(2237), - [anon_sym_json_DOTdecode] = ACTIONS(2237), - [anon_sym_LBRACK2] = ACTIONS(2237), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_CARET] = ACTIONS(2237), - [anon_sym_AMP] = ACTIONS(2237), - [anon_sym_LT_DASH] = ACTIONS(2237), - [anon_sym_LT_LT] = ACTIONS(2237), - [anon_sym_GT_GT] = ACTIONS(2237), - [anon_sym_GT_GT_GT] = ACTIONS(2237), - [anon_sym_AMP_CARET] = ACTIONS(2237), - [anon_sym_AMP_AMP] = ACTIONS(2237), - [anon_sym_PIPE_PIPE] = ACTIONS(2237), - [anon_sym_or] = ACTIONS(2237), - [sym_none] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_nil] = ACTIONS(2237), - [anon_sym_QMARK_DOT] = ACTIONS(2237), - [anon_sym_POUND_LBRACK] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_DOLLARif] = ACTIONS(2237), - [anon_sym_is] = ACTIONS(2237), - [anon_sym_BANGis] = ACTIONS(2237), - [anon_sym_in] = ACTIONS(2237), - [anon_sym_BANGin] = ACTIONS(2237), - [anon_sym_match] = ACTIONS(2237), - [anon_sym_select] = ACTIONS(2237), - [anon_sym_STAR_EQ] = ACTIONS(2237), - [anon_sym_SLASH_EQ] = ACTIONS(2237), - [anon_sym_PERCENT_EQ] = ACTIONS(2237), - [anon_sym_LT_LT_EQ] = ACTIONS(2237), - [anon_sym_GT_GT_EQ] = ACTIONS(2237), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2237), - [anon_sym_AMP_EQ] = ACTIONS(2237), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2237), - [anon_sym_PLUS_EQ] = ACTIONS(2237), - [anon_sym_DASH_EQ] = ACTIONS(2237), - [anon_sym_PIPE_EQ] = ACTIONS(2237), - [anon_sym_CARET_EQ] = ACTIONS(2237), - [anon_sym_COLON_EQ] = ACTIONS(2237), - [anon_sym_lock] = ACTIONS(2237), - [anon_sym_rlock] = ACTIONS(2237), - [anon_sym_unsafe] = ACTIONS(2237), - [anon_sym_sql] = ACTIONS(2237), - [sym_int_literal] = ACTIONS(2237), - [sym_float_literal] = ACTIONS(2237), - [sym_rune_literal] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2237), - [anon_sym_c_SQUOTE] = ACTIONS(2237), - [anon_sym_c_DQUOTE] = ACTIONS(2237), - [anon_sym_r_SQUOTE] = ACTIONS(2237), - [anon_sym_r_DQUOTE] = ACTIONS(2237), - [sym_pseudo_compile_time_identifier] = ACTIONS(2237), - [anon_sym_shared] = ACTIONS(2237), - [anon_sym_map_LBRACK] = ACTIONS(2237), - [anon_sym_chan] = ACTIONS(2237), - [anon_sym_thread] = ACTIONS(2237), - [anon_sym_atomic] = ACTIONS(2237), - [anon_sym_assert] = ACTIONS(2237), - [anon_sym_defer] = ACTIONS(2237), - [anon_sym_goto] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_DOLLARfor] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_POUND] = ACTIONS(2237), - [anon_sym_asm] = ACTIONS(2237), - [anon_sym_AT_LBRACK] = ACTIONS(2237), + [sym__expression] = STATE(2619), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3638), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_range] = STATE(4685), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1486), }, [344] = { [sym_line_comment] = STATE(344), [sym_block_comment] = STATE(344), - [ts_builtin_sym_end] = ACTIONS(2239), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LF] = ACTIONS(2241), - [anon_sym_CR] = ACTIONS(2241), - [anon_sym_CR_LF] = ACTIONS(2241), + [ts_builtin_sym_end] = ACTIONS(2349), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LF] = ACTIONS(2351), + [anon_sym_CR] = ACTIONS(2351), + [anon_sym_CR_LF] = ACTIONS(2351), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2241), - [anon_sym_as] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_COMMA] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_EQ] = ACTIONS(2241), - [anon_sym___global] = ACTIONS(2241), - [anon_sym_type] = ACTIONS(2241), - [anon_sym_PIPE] = ACTIONS(2241), - [anon_sym_fn] = ACTIONS(2241), - [anon_sym_PLUS] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_STAR] = ACTIONS(2241), - [anon_sym_SLASH] = ACTIONS(2241), - [anon_sym_PERCENT] = ACTIONS(2241), - [anon_sym_LT] = ACTIONS(2241), - [anon_sym_GT] = ACTIONS(2241), - [anon_sym_EQ_EQ] = ACTIONS(2241), - [anon_sym_BANG_EQ] = ACTIONS(2241), - [anon_sym_LT_EQ] = ACTIONS(2241), - [anon_sym_GT_EQ] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2239), - [anon_sym_struct] = ACTIONS(2241), - [anon_sym_union] = ACTIONS(2241), - [anon_sym_pub] = ACTIONS(2241), - [anon_sym_mut] = ACTIONS(2241), - [anon_sym_enum] = ACTIONS(2241), - [anon_sym_interface] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_QMARK] = ACTIONS(2241), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_go] = ACTIONS(2241), - [anon_sym_spawn] = ACTIONS(2241), - [anon_sym_json_DOTdecode] = ACTIONS(2241), - [anon_sym_LBRACK2] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2241), - [anon_sym_LT_DASH] = ACTIONS(2241), - [anon_sym_LT_LT] = ACTIONS(2241), - [anon_sym_GT_GT] = ACTIONS(2241), - [anon_sym_GT_GT_GT] = ACTIONS(2241), - [anon_sym_AMP_CARET] = ACTIONS(2241), - [anon_sym_AMP_AMP] = ACTIONS(2241), - [anon_sym_PIPE_PIPE] = ACTIONS(2241), - [anon_sym_or] = ACTIONS(2241), - [sym_none] = ACTIONS(2241), - [sym_true] = ACTIONS(2241), - [sym_false] = ACTIONS(2241), - [sym_nil] = ACTIONS(2241), - [anon_sym_QMARK_DOT] = ACTIONS(2241), - [anon_sym_POUND_LBRACK] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_DOLLARif] = ACTIONS(2241), - [anon_sym_is] = ACTIONS(2241), - [anon_sym_BANGis] = ACTIONS(2241), - [anon_sym_in] = ACTIONS(2241), - [anon_sym_BANGin] = ACTIONS(2241), - [anon_sym_match] = ACTIONS(2241), - [anon_sym_select] = ACTIONS(2241), - [anon_sym_STAR_EQ] = ACTIONS(2241), - [anon_sym_SLASH_EQ] = ACTIONS(2241), - [anon_sym_PERCENT_EQ] = ACTIONS(2241), - [anon_sym_LT_LT_EQ] = ACTIONS(2241), - [anon_sym_GT_GT_EQ] = ACTIONS(2241), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2241), - [anon_sym_AMP_EQ] = ACTIONS(2241), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2241), - [anon_sym_PLUS_EQ] = ACTIONS(2241), - [anon_sym_DASH_EQ] = ACTIONS(2241), - [anon_sym_PIPE_EQ] = ACTIONS(2241), - [anon_sym_CARET_EQ] = ACTIONS(2241), - [anon_sym_COLON_EQ] = ACTIONS(2241), - [anon_sym_lock] = ACTIONS(2241), - [anon_sym_rlock] = ACTIONS(2241), - [anon_sym_unsafe] = ACTIONS(2241), - [anon_sym_sql] = ACTIONS(2241), - [sym_int_literal] = ACTIONS(2241), - [sym_float_literal] = ACTIONS(2241), - [sym_rune_literal] = ACTIONS(2241), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_DQUOTE] = ACTIONS(2241), - [anon_sym_c_SQUOTE] = ACTIONS(2241), - [anon_sym_c_DQUOTE] = ACTIONS(2241), - [anon_sym_r_SQUOTE] = ACTIONS(2241), - [anon_sym_r_DQUOTE] = ACTIONS(2241), - [sym_pseudo_compile_time_identifier] = ACTIONS(2241), - [anon_sym_shared] = ACTIONS(2241), - [anon_sym_map_LBRACK] = ACTIONS(2241), - [anon_sym_chan] = ACTIONS(2241), - [anon_sym_thread] = ACTIONS(2241), - [anon_sym_atomic] = ACTIONS(2241), - [anon_sym_assert] = ACTIONS(2241), - [anon_sym_defer] = ACTIONS(2241), - [anon_sym_goto] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_DOLLARfor] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_POUND] = ACTIONS(2241), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym_AT_LBRACK] = ACTIONS(2241), + [anon_sym_DOT] = ACTIONS(2351), + [anon_sym_as] = ACTIONS(2351), + [anon_sym_LBRACE] = ACTIONS(2351), + [anon_sym_COMMA] = ACTIONS(2351), + [anon_sym_const] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_EQ] = ACTIONS(2351), + [anon_sym___global] = ACTIONS(2351), + [anon_sym_type] = ACTIONS(2351), + [anon_sym_fn] = ACTIONS(2351), + [anon_sym_PLUS] = ACTIONS(2351), + [anon_sym_DASH] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(2351), + [anon_sym_SLASH] = ACTIONS(2351), + [anon_sym_PERCENT] = ACTIONS(2351), + [anon_sym_LT] = ACTIONS(2351), + [anon_sym_GT] = ACTIONS(2351), + [anon_sym_EQ_EQ] = ACTIONS(2351), + [anon_sym_BANG_EQ] = ACTIONS(2351), + [anon_sym_LT_EQ] = ACTIONS(2351), + [anon_sym_GT_EQ] = ACTIONS(2351), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_struct] = ACTIONS(2351), + [anon_sym_union] = ACTIONS(2351), + [anon_sym_pub] = ACTIONS(2351), + [anon_sym_mut] = ACTIONS(2351), + [anon_sym_enum] = ACTIONS(2351), + [anon_sym_interface] = ACTIONS(2351), + [anon_sym_PLUS_PLUS] = ACTIONS(2351), + [anon_sym_DASH_DASH] = ACTIONS(2351), + [anon_sym_QMARK] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(2351), + [anon_sym_go] = ACTIONS(2351), + [anon_sym_spawn] = ACTIONS(2351), + [anon_sym_json_DOTdecode] = ACTIONS(2351), + [anon_sym_PIPE] = ACTIONS(2351), + [anon_sym_LBRACK2] = ACTIONS(2351), + [anon_sym_TILDE] = ACTIONS(2351), + [anon_sym_CARET] = ACTIONS(2351), + [anon_sym_AMP] = ACTIONS(2351), + [anon_sym_LT_DASH] = ACTIONS(2351), + [anon_sym_LT_LT] = ACTIONS(2351), + [anon_sym_GT_GT] = ACTIONS(2351), + [anon_sym_GT_GT_GT] = ACTIONS(2351), + [anon_sym_AMP_CARET] = ACTIONS(2351), + [anon_sym_AMP_AMP] = ACTIONS(2351), + [anon_sym_PIPE_PIPE] = ACTIONS(2351), + [anon_sym_or] = ACTIONS(2351), + [sym_none] = ACTIONS(2351), + [sym_true] = ACTIONS(2351), + [sym_false] = ACTIONS(2351), + [sym_nil] = ACTIONS(2351), + [anon_sym_QMARK_DOT] = ACTIONS(2351), + [anon_sym_POUND_LBRACK] = ACTIONS(2351), + [anon_sym_if] = ACTIONS(2351), + [anon_sym_DOLLARif] = ACTIONS(2351), + [anon_sym_is] = ACTIONS(2351), + [anon_sym_BANGis] = ACTIONS(2351), + [anon_sym_in] = ACTIONS(2351), + [anon_sym_BANGin] = ACTIONS(2351), + [anon_sym_match] = ACTIONS(2351), + [anon_sym_select] = ACTIONS(2351), + [anon_sym_STAR_EQ] = ACTIONS(2351), + [anon_sym_SLASH_EQ] = ACTIONS(2351), + [anon_sym_PERCENT_EQ] = ACTIONS(2351), + [anon_sym_LT_LT_EQ] = ACTIONS(2351), + [anon_sym_GT_GT_EQ] = ACTIONS(2351), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2351), + [anon_sym_AMP_EQ] = ACTIONS(2351), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2351), + [anon_sym_PLUS_EQ] = ACTIONS(2351), + [anon_sym_DASH_EQ] = ACTIONS(2351), + [anon_sym_PIPE_EQ] = ACTIONS(2351), + [anon_sym_CARET_EQ] = ACTIONS(2351), + [anon_sym_COLON_EQ] = ACTIONS(2351), + [anon_sym_lock] = ACTIONS(2351), + [anon_sym_rlock] = ACTIONS(2351), + [anon_sym_unsafe] = ACTIONS(2351), + [anon_sym_sql] = ACTIONS(2351), + [sym_int_literal] = ACTIONS(2351), + [sym_float_literal] = ACTIONS(2351), + [sym_rune_literal] = ACTIONS(2351), + [anon_sym_SQUOTE] = ACTIONS(2351), + [anon_sym_DQUOTE] = ACTIONS(2351), + [anon_sym_c_SQUOTE] = ACTIONS(2351), + [anon_sym_c_DQUOTE] = ACTIONS(2351), + [anon_sym_r_SQUOTE] = ACTIONS(2351), + [anon_sym_r_DQUOTE] = ACTIONS(2351), + [sym_pseudo_compile_time_identifier] = ACTIONS(2351), + [anon_sym_shared] = ACTIONS(2351), + [anon_sym_map_LBRACK] = ACTIONS(2351), + [anon_sym_chan] = ACTIONS(2351), + [anon_sym_thread] = ACTIONS(2351), + [anon_sym_atomic] = ACTIONS(2351), + [anon_sym_assert] = ACTIONS(2351), + [anon_sym_defer] = ACTIONS(2351), + [anon_sym_goto] = ACTIONS(2351), + [anon_sym_break] = ACTIONS(2351), + [anon_sym_continue] = ACTIONS(2351), + [anon_sym_return] = ACTIONS(2351), + [anon_sym_DOLLARfor] = ACTIONS(2351), + [anon_sym_for] = ACTIONS(2351), + [anon_sym_POUND] = ACTIONS(2351), + [anon_sym_asm] = ACTIONS(2351), + [anon_sym_AT_LBRACK] = ACTIONS(2351), }, [345] = { [sym_line_comment] = STATE(345), [sym_block_comment] = STATE(345), - [ts_builtin_sym_end] = ACTIONS(2243), - [sym_identifier] = ACTIONS(2245), - [anon_sym_LF] = ACTIONS(2245), - [anon_sym_CR] = ACTIONS(2245), - [anon_sym_CR_LF] = ACTIONS(2245), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2245), - [anon_sym_as] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_COMMA] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_EQ] = ACTIONS(2245), - [anon_sym___global] = ACTIONS(2245), - [anon_sym_type] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_fn] = ACTIONS(2245), - [anon_sym_PLUS] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_STAR] = ACTIONS(2245), - [anon_sym_SLASH] = ACTIONS(2245), - [anon_sym_PERCENT] = ACTIONS(2245), - [anon_sym_LT] = ACTIONS(2245), - [anon_sym_GT] = ACTIONS(2245), - [anon_sym_EQ_EQ] = ACTIONS(2245), - [anon_sym_BANG_EQ] = ACTIONS(2245), - [anon_sym_LT_EQ] = ACTIONS(2245), - [anon_sym_GT_EQ] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2243), - [anon_sym_struct] = ACTIONS(2245), - [anon_sym_union] = ACTIONS(2245), - [anon_sym_pub] = ACTIONS(2245), - [anon_sym_mut] = ACTIONS(2245), - [anon_sym_enum] = ACTIONS(2245), - [anon_sym_interface] = ACTIONS(2245), - [anon_sym_PLUS_PLUS] = ACTIONS(2245), - [anon_sym_DASH_DASH] = ACTIONS(2245), - [anon_sym_QMARK] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(2245), - [anon_sym_go] = ACTIONS(2245), - [anon_sym_spawn] = ACTIONS(2245), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2245), - [anon_sym_TILDE] = ACTIONS(2245), - [anon_sym_CARET] = ACTIONS(2245), - [anon_sym_AMP] = ACTIONS(2245), - [anon_sym_LT_DASH] = ACTIONS(2245), - [anon_sym_LT_LT] = ACTIONS(2245), - [anon_sym_GT_GT] = ACTIONS(2245), - [anon_sym_GT_GT_GT] = ACTIONS(2245), - [anon_sym_AMP_CARET] = ACTIONS(2245), - [anon_sym_AMP_AMP] = ACTIONS(2245), - [anon_sym_PIPE_PIPE] = ACTIONS(2245), - [anon_sym_or] = ACTIONS(2245), - [sym_none] = ACTIONS(2245), - [sym_true] = ACTIONS(2245), - [sym_false] = ACTIONS(2245), - [sym_nil] = ACTIONS(2245), - [anon_sym_QMARK_DOT] = ACTIONS(2245), - [anon_sym_POUND_LBRACK] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_DOLLARif] = ACTIONS(2245), - [anon_sym_is] = ACTIONS(2245), - [anon_sym_BANGis] = ACTIONS(2245), - [anon_sym_in] = ACTIONS(2245), - [anon_sym_BANGin] = ACTIONS(2245), - [anon_sym_match] = ACTIONS(2245), - [anon_sym_select] = ACTIONS(2245), - [anon_sym_STAR_EQ] = ACTIONS(2245), - [anon_sym_SLASH_EQ] = ACTIONS(2245), - [anon_sym_PERCENT_EQ] = ACTIONS(2245), - [anon_sym_LT_LT_EQ] = ACTIONS(2245), - [anon_sym_GT_GT_EQ] = ACTIONS(2245), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2245), - [anon_sym_AMP_EQ] = ACTIONS(2245), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2245), - [anon_sym_PLUS_EQ] = ACTIONS(2245), - [anon_sym_DASH_EQ] = ACTIONS(2245), - [anon_sym_PIPE_EQ] = ACTIONS(2245), - [anon_sym_CARET_EQ] = ACTIONS(2245), - [anon_sym_COLON_EQ] = ACTIONS(2245), - [anon_sym_lock] = ACTIONS(2245), - [anon_sym_rlock] = ACTIONS(2245), - [anon_sym_unsafe] = ACTIONS(2245), - [anon_sym_sql] = ACTIONS(2245), - [sym_int_literal] = ACTIONS(2245), - [sym_float_literal] = ACTIONS(2245), - [sym_rune_literal] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(2245), - [anon_sym_c_SQUOTE] = ACTIONS(2245), - [anon_sym_c_DQUOTE] = ACTIONS(2245), - [anon_sym_r_SQUOTE] = ACTIONS(2245), - [anon_sym_r_DQUOTE] = ACTIONS(2245), - [sym_pseudo_compile_time_identifier] = ACTIONS(2245), - [anon_sym_shared] = ACTIONS(2245), - [anon_sym_map_LBRACK] = ACTIONS(2245), - [anon_sym_chan] = ACTIONS(2245), - [anon_sym_thread] = ACTIONS(2245), - [anon_sym_atomic] = ACTIONS(2245), - [anon_sym_assert] = ACTIONS(2245), - [anon_sym_defer] = ACTIONS(2245), - [anon_sym_goto] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_DOLLARfor] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_POUND] = ACTIONS(2245), - [anon_sym_asm] = ACTIONS(2245), - [anon_sym_AT_LBRACK] = ACTIONS(2245), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4408), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(2353), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [346] = { [sym_line_comment] = STATE(346), [sym_block_comment] = STATE(346), - [ts_builtin_sym_end] = ACTIONS(2247), - [sym_identifier] = ACTIONS(2249), - [anon_sym_LF] = ACTIONS(2249), - [anon_sym_CR] = ACTIONS(2249), - [anon_sym_CR_LF] = ACTIONS(2249), + [ts_builtin_sym_end] = ACTIONS(2355), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LF] = ACTIONS(2357), + [anon_sym_CR] = ACTIONS(2357), + [anon_sym_CR_LF] = ACTIONS(2357), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2249), - [anon_sym_as] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_COMMA] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2249), - [anon_sym_EQ] = ACTIONS(2249), - [anon_sym___global] = ACTIONS(2249), - [anon_sym_type] = ACTIONS(2249), - [anon_sym_PIPE] = ACTIONS(2249), - [anon_sym_fn] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2249), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_GT] = ACTIONS(2249), - [anon_sym_EQ_EQ] = ACTIONS(2249), - [anon_sym_BANG_EQ] = ACTIONS(2249), - [anon_sym_LT_EQ] = ACTIONS(2249), - [anon_sym_GT_EQ] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2247), - [anon_sym_struct] = ACTIONS(2249), - [anon_sym_union] = ACTIONS(2249), - [anon_sym_pub] = ACTIONS(2249), - [anon_sym_mut] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), - [anon_sym_interface] = ACTIONS(2249), - [anon_sym_PLUS_PLUS] = ACTIONS(2249), - [anon_sym_DASH_DASH] = ACTIONS(2249), - [anon_sym_QMARK] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(2249), - [anon_sym_go] = ACTIONS(2249), - [anon_sym_spawn] = ACTIONS(2249), - [anon_sym_json_DOTdecode] = ACTIONS(2249), - [anon_sym_LBRACK2] = ACTIONS(2249), - [anon_sym_TILDE] = ACTIONS(2249), - [anon_sym_CARET] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_DASH] = ACTIONS(2249), - [anon_sym_LT_LT] = ACTIONS(2249), - [anon_sym_GT_GT] = ACTIONS(2249), - [anon_sym_GT_GT_GT] = ACTIONS(2249), - [anon_sym_AMP_CARET] = ACTIONS(2249), - [anon_sym_AMP_AMP] = ACTIONS(2249), - [anon_sym_PIPE_PIPE] = ACTIONS(2249), - [anon_sym_or] = ACTIONS(2249), - [sym_none] = ACTIONS(2249), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [sym_nil] = ACTIONS(2249), - [anon_sym_QMARK_DOT] = ACTIONS(2249), - [anon_sym_POUND_LBRACK] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_DOLLARif] = ACTIONS(2249), - [anon_sym_is] = ACTIONS(2249), - [anon_sym_BANGis] = ACTIONS(2249), - [anon_sym_in] = ACTIONS(2249), - [anon_sym_BANGin] = ACTIONS(2249), - [anon_sym_match] = ACTIONS(2249), - [anon_sym_select] = ACTIONS(2249), - [anon_sym_STAR_EQ] = ACTIONS(2249), - [anon_sym_SLASH_EQ] = ACTIONS(2249), - [anon_sym_PERCENT_EQ] = ACTIONS(2249), - [anon_sym_LT_LT_EQ] = ACTIONS(2249), - [anon_sym_GT_GT_EQ] = ACTIONS(2249), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2249), - [anon_sym_AMP_EQ] = ACTIONS(2249), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2249), - [anon_sym_PLUS_EQ] = ACTIONS(2249), - [anon_sym_DASH_EQ] = ACTIONS(2249), - [anon_sym_PIPE_EQ] = ACTIONS(2249), - [anon_sym_CARET_EQ] = ACTIONS(2249), - [anon_sym_COLON_EQ] = ACTIONS(2249), - [anon_sym_lock] = ACTIONS(2249), - [anon_sym_rlock] = ACTIONS(2249), - [anon_sym_unsafe] = ACTIONS(2249), - [anon_sym_sql] = ACTIONS(2249), - [sym_int_literal] = ACTIONS(2249), - [sym_float_literal] = ACTIONS(2249), - [sym_rune_literal] = ACTIONS(2249), - [anon_sym_SQUOTE] = ACTIONS(2249), - [anon_sym_DQUOTE] = ACTIONS(2249), - [anon_sym_c_SQUOTE] = ACTIONS(2249), - [anon_sym_c_DQUOTE] = ACTIONS(2249), - [anon_sym_r_SQUOTE] = ACTIONS(2249), - [anon_sym_r_DQUOTE] = ACTIONS(2249), - [sym_pseudo_compile_time_identifier] = ACTIONS(2249), - [anon_sym_shared] = ACTIONS(2249), - [anon_sym_map_LBRACK] = ACTIONS(2249), - [anon_sym_chan] = ACTIONS(2249), - [anon_sym_thread] = ACTIONS(2249), - [anon_sym_atomic] = ACTIONS(2249), - [anon_sym_assert] = ACTIONS(2249), - [anon_sym_defer] = ACTIONS(2249), - [anon_sym_goto] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_DOLLARfor] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_POUND] = ACTIONS(2249), - [anon_sym_asm] = ACTIONS(2249), - [anon_sym_AT_LBRACK] = ACTIONS(2249), + [anon_sym_DOT] = ACTIONS(2357), + [anon_sym_as] = ACTIONS(2357), + [anon_sym_LBRACE] = ACTIONS(2357), + [anon_sym_COMMA] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2357), + [anon_sym_EQ] = ACTIONS(2357), + [anon_sym___global] = ACTIONS(2357), + [anon_sym_type] = ACTIONS(2357), + [anon_sym_fn] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2357), + [anon_sym_DASH] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_SLASH] = ACTIONS(2357), + [anon_sym_PERCENT] = ACTIONS(2357), + [anon_sym_LT] = ACTIONS(2357), + [anon_sym_GT] = ACTIONS(2357), + [anon_sym_EQ_EQ] = ACTIONS(2357), + [anon_sym_BANG_EQ] = ACTIONS(2357), + [anon_sym_LT_EQ] = ACTIONS(2357), + [anon_sym_GT_EQ] = ACTIONS(2357), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_struct] = ACTIONS(2357), + [anon_sym_union] = ACTIONS(2357), + [anon_sym_pub] = ACTIONS(2357), + [anon_sym_mut] = ACTIONS(2357), + [anon_sym_enum] = ACTIONS(2357), + [anon_sym_interface] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_QMARK] = ACTIONS(2357), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_go] = ACTIONS(2357), + [anon_sym_spawn] = ACTIONS(2357), + [anon_sym_json_DOTdecode] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2357), + [anon_sym_LBRACK2] = ACTIONS(2357), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_CARET] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_LT_DASH] = ACTIONS(2357), + [anon_sym_LT_LT] = ACTIONS(2357), + [anon_sym_GT_GT] = ACTIONS(2357), + [anon_sym_GT_GT_GT] = ACTIONS(2357), + [anon_sym_AMP_CARET] = ACTIONS(2357), + [anon_sym_AMP_AMP] = ACTIONS(2357), + [anon_sym_PIPE_PIPE] = ACTIONS(2357), + [anon_sym_or] = ACTIONS(2357), + [sym_none] = ACTIONS(2357), + [sym_true] = ACTIONS(2357), + [sym_false] = ACTIONS(2357), + [sym_nil] = ACTIONS(2357), + [anon_sym_QMARK_DOT] = ACTIONS(2357), + [anon_sym_POUND_LBRACK] = ACTIONS(2357), + [anon_sym_if] = ACTIONS(2357), + [anon_sym_DOLLARif] = ACTIONS(2357), + [anon_sym_is] = ACTIONS(2357), + [anon_sym_BANGis] = ACTIONS(2357), + [anon_sym_in] = ACTIONS(2357), + [anon_sym_BANGin] = ACTIONS(2357), + [anon_sym_match] = ACTIONS(2357), + [anon_sym_select] = ACTIONS(2357), + [anon_sym_STAR_EQ] = ACTIONS(2357), + [anon_sym_SLASH_EQ] = ACTIONS(2357), + [anon_sym_PERCENT_EQ] = ACTIONS(2357), + [anon_sym_LT_LT_EQ] = ACTIONS(2357), + [anon_sym_GT_GT_EQ] = ACTIONS(2357), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2357), + [anon_sym_AMP_EQ] = ACTIONS(2357), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2357), + [anon_sym_PLUS_EQ] = ACTIONS(2357), + [anon_sym_DASH_EQ] = ACTIONS(2357), + [anon_sym_PIPE_EQ] = ACTIONS(2357), + [anon_sym_CARET_EQ] = ACTIONS(2357), + [anon_sym_COLON_EQ] = ACTIONS(2357), + [anon_sym_lock] = ACTIONS(2357), + [anon_sym_rlock] = ACTIONS(2357), + [anon_sym_unsafe] = ACTIONS(2357), + [anon_sym_sql] = ACTIONS(2357), + [sym_int_literal] = ACTIONS(2357), + [sym_float_literal] = ACTIONS(2357), + [sym_rune_literal] = ACTIONS(2357), + [anon_sym_SQUOTE] = ACTIONS(2357), + [anon_sym_DQUOTE] = ACTIONS(2357), + [anon_sym_c_SQUOTE] = ACTIONS(2357), + [anon_sym_c_DQUOTE] = ACTIONS(2357), + [anon_sym_r_SQUOTE] = ACTIONS(2357), + [anon_sym_r_DQUOTE] = ACTIONS(2357), + [sym_pseudo_compile_time_identifier] = ACTIONS(2357), + [anon_sym_shared] = ACTIONS(2357), + [anon_sym_map_LBRACK] = ACTIONS(2357), + [anon_sym_chan] = ACTIONS(2357), + [anon_sym_thread] = ACTIONS(2357), + [anon_sym_atomic] = ACTIONS(2357), + [anon_sym_assert] = ACTIONS(2357), + [anon_sym_defer] = ACTIONS(2357), + [anon_sym_goto] = ACTIONS(2357), + [anon_sym_break] = ACTIONS(2357), + [anon_sym_continue] = ACTIONS(2357), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_DOLLARfor] = ACTIONS(2357), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_POUND] = ACTIONS(2357), + [anon_sym_asm] = ACTIONS(2357), + [anon_sym_AT_LBRACK] = ACTIONS(2357), }, [347] = { [sym_line_comment] = STATE(347), [sym_block_comment] = STATE(347), - [ts_builtin_sym_end] = ACTIONS(2251), - [sym_identifier] = ACTIONS(2253), - [anon_sym_LF] = ACTIONS(2253), - [anon_sym_CR] = ACTIONS(2253), - [anon_sym_CR_LF] = ACTIONS(2253), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2253), - [anon_sym_as] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(2253), - [anon_sym_COMMA] = ACTIONS(2253), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(2253), - [anon_sym_EQ] = ACTIONS(2253), - [anon_sym___global] = ACTIONS(2253), - [anon_sym_type] = ACTIONS(2253), - [anon_sym_PIPE] = ACTIONS(2253), - [anon_sym_fn] = ACTIONS(2253), - [anon_sym_PLUS] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_SLASH] = ACTIONS(2253), - [anon_sym_PERCENT] = ACTIONS(2253), - [anon_sym_LT] = ACTIONS(2253), - [anon_sym_GT] = ACTIONS(2253), - [anon_sym_EQ_EQ] = ACTIONS(2253), - [anon_sym_BANG_EQ] = ACTIONS(2253), - [anon_sym_LT_EQ] = ACTIONS(2253), - [anon_sym_GT_EQ] = ACTIONS(2253), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_struct] = ACTIONS(2253), - [anon_sym_union] = ACTIONS(2253), - [anon_sym_pub] = ACTIONS(2253), - [anon_sym_mut] = ACTIONS(2253), - [anon_sym_enum] = ACTIONS(2253), - [anon_sym_interface] = ACTIONS(2253), - [anon_sym_PLUS_PLUS] = ACTIONS(2253), - [anon_sym_DASH_DASH] = ACTIONS(2253), - [anon_sym_QMARK] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(2253), - [anon_sym_go] = ACTIONS(2253), - [anon_sym_spawn] = ACTIONS(2253), - [anon_sym_json_DOTdecode] = ACTIONS(2253), - [anon_sym_LBRACK2] = ACTIONS(2253), - [anon_sym_TILDE] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2253), - [anon_sym_AMP] = ACTIONS(2253), - [anon_sym_LT_DASH] = ACTIONS(2253), - [anon_sym_LT_LT] = ACTIONS(2253), - [anon_sym_GT_GT] = ACTIONS(2253), - [anon_sym_GT_GT_GT] = ACTIONS(2253), - [anon_sym_AMP_CARET] = ACTIONS(2253), - [anon_sym_AMP_AMP] = ACTIONS(2253), - [anon_sym_PIPE_PIPE] = ACTIONS(2253), - [anon_sym_or] = ACTIONS(2253), - [sym_none] = ACTIONS(2253), - [sym_true] = ACTIONS(2253), - [sym_false] = ACTIONS(2253), - [sym_nil] = ACTIONS(2253), - [anon_sym_QMARK_DOT] = ACTIONS(2253), - [anon_sym_POUND_LBRACK] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2253), - [anon_sym_DOLLARif] = ACTIONS(2253), - [anon_sym_is] = ACTIONS(2253), - [anon_sym_BANGis] = ACTIONS(2253), - [anon_sym_in] = ACTIONS(2253), - [anon_sym_BANGin] = ACTIONS(2253), - [anon_sym_match] = ACTIONS(2253), - [anon_sym_select] = ACTIONS(2253), - [anon_sym_STAR_EQ] = ACTIONS(2253), - [anon_sym_SLASH_EQ] = ACTIONS(2253), - [anon_sym_PERCENT_EQ] = ACTIONS(2253), - [anon_sym_LT_LT_EQ] = ACTIONS(2253), - [anon_sym_GT_GT_EQ] = ACTIONS(2253), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2253), - [anon_sym_AMP_EQ] = ACTIONS(2253), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2253), - [anon_sym_PLUS_EQ] = ACTIONS(2253), - [anon_sym_DASH_EQ] = ACTIONS(2253), - [anon_sym_PIPE_EQ] = ACTIONS(2253), - [anon_sym_CARET_EQ] = ACTIONS(2253), - [anon_sym_COLON_EQ] = ACTIONS(2253), - [anon_sym_lock] = ACTIONS(2253), - [anon_sym_rlock] = ACTIONS(2253), - [anon_sym_unsafe] = ACTIONS(2253), - [anon_sym_sql] = ACTIONS(2253), - [sym_int_literal] = ACTIONS(2253), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [anon_sym_SQUOTE] = ACTIONS(2253), - [anon_sym_DQUOTE] = ACTIONS(2253), - [anon_sym_c_SQUOTE] = ACTIONS(2253), - [anon_sym_c_DQUOTE] = ACTIONS(2253), - [anon_sym_r_SQUOTE] = ACTIONS(2253), - [anon_sym_r_DQUOTE] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(2253), - [anon_sym_shared] = ACTIONS(2253), - [anon_sym_map_LBRACK] = ACTIONS(2253), - [anon_sym_chan] = ACTIONS(2253), - [anon_sym_thread] = ACTIONS(2253), - [anon_sym_atomic] = ACTIONS(2253), - [anon_sym_assert] = ACTIONS(2253), - [anon_sym_defer] = ACTIONS(2253), - [anon_sym_goto] = ACTIONS(2253), - [anon_sym_break] = ACTIONS(2253), - [anon_sym_continue] = ACTIONS(2253), - [anon_sym_return] = ACTIONS(2253), - [anon_sym_DOLLARfor] = ACTIONS(2253), - [anon_sym_for] = ACTIONS(2253), - [anon_sym_POUND] = ACTIONS(2253), - [anon_sym_asm] = ACTIONS(2253), - [anon_sym_AT_LBRACK] = ACTIONS(2253), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1399), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1398), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym__array_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1356), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(2359), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1404), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [348] = { [sym_line_comment] = STATE(348), [sym_block_comment] = STATE(348), - [ts_builtin_sym_end] = ACTIONS(2255), - [sym_identifier] = ACTIONS(2257), - [anon_sym_LF] = ACTIONS(2257), - [anon_sym_CR] = ACTIONS(2257), - [anon_sym_CR_LF] = ACTIONS(2257), + [ts_builtin_sym_end] = ACTIONS(2361), + [sym_identifier] = ACTIONS(2363), + [anon_sym_LF] = ACTIONS(2363), + [anon_sym_CR] = ACTIONS(2363), + [anon_sym_CR_LF] = ACTIONS(2363), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2257), - [anon_sym_as] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2257), - [anon_sym_COMMA] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(2257), - [anon_sym_EQ] = ACTIONS(2257), - [anon_sym___global] = ACTIONS(2257), - [anon_sym_type] = ACTIONS(2257), - [anon_sym_PIPE] = ACTIONS(2257), - [anon_sym_fn] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2257), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_STAR] = ACTIONS(2257), - [anon_sym_SLASH] = ACTIONS(2257), - [anon_sym_PERCENT] = ACTIONS(2257), - [anon_sym_LT] = ACTIONS(2257), - [anon_sym_GT] = ACTIONS(2257), - [anon_sym_EQ_EQ] = ACTIONS(2257), - [anon_sym_BANG_EQ] = ACTIONS(2257), - [anon_sym_LT_EQ] = ACTIONS(2257), - [anon_sym_GT_EQ] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2255), - [anon_sym_struct] = ACTIONS(2257), - [anon_sym_union] = ACTIONS(2257), - [anon_sym_pub] = ACTIONS(2257), - [anon_sym_mut] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), - [anon_sym_interface] = ACTIONS(2257), - [anon_sym_PLUS_PLUS] = ACTIONS(2257), - [anon_sym_DASH_DASH] = ACTIONS(2257), - [anon_sym_QMARK] = ACTIONS(2257), - [anon_sym_BANG] = ACTIONS(2257), - [anon_sym_go] = ACTIONS(2257), - [anon_sym_spawn] = ACTIONS(2257), - [anon_sym_json_DOTdecode] = ACTIONS(2257), - [anon_sym_LBRACK2] = ACTIONS(2257), - [anon_sym_TILDE] = ACTIONS(2257), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), - [anon_sym_LT_DASH] = ACTIONS(2257), - [anon_sym_LT_LT] = ACTIONS(2257), - [anon_sym_GT_GT] = ACTIONS(2257), - [anon_sym_GT_GT_GT] = ACTIONS(2257), - [anon_sym_AMP_CARET] = ACTIONS(2257), - [anon_sym_AMP_AMP] = ACTIONS(2257), - [anon_sym_PIPE_PIPE] = ACTIONS(2257), - [anon_sym_or] = ACTIONS(2257), - [sym_none] = ACTIONS(2257), - [sym_true] = ACTIONS(2257), - [sym_false] = ACTIONS(2257), - [sym_nil] = ACTIONS(2257), - [anon_sym_QMARK_DOT] = ACTIONS(2257), - [anon_sym_POUND_LBRACK] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_DOLLARif] = ACTIONS(2257), - [anon_sym_is] = ACTIONS(2257), - [anon_sym_BANGis] = ACTIONS(2257), - [anon_sym_in] = ACTIONS(2257), - [anon_sym_BANGin] = ACTIONS(2257), - [anon_sym_match] = ACTIONS(2257), - [anon_sym_select] = ACTIONS(2257), - [anon_sym_STAR_EQ] = ACTIONS(2257), - [anon_sym_SLASH_EQ] = ACTIONS(2257), - [anon_sym_PERCENT_EQ] = ACTIONS(2257), - [anon_sym_LT_LT_EQ] = ACTIONS(2257), - [anon_sym_GT_GT_EQ] = ACTIONS(2257), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2257), - [anon_sym_AMP_EQ] = ACTIONS(2257), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2257), - [anon_sym_PLUS_EQ] = ACTIONS(2257), - [anon_sym_DASH_EQ] = ACTIONS(2257), - [anon_sym_PIPE_EQ] = ACTIONS(2257), - [anon_sym_CARET_EQ] = ACTIONS(2257), - [anon_sym_COLON_EQ] = ACTIONS(2257), - [anon_sym_lock] = ACTIONS(2257), - [anon_sym_rlock] = ACTIONS(2257), - [anon_sym_unsafe] = ACTIONS(2257), - [anon_sym_sql] = ACTIONS(2257), - [sym_int_literal] = ACTIONS(2257), - [sym_float_literal] = ACTIONS(2257), - [sym_rune_literal] = ACTIONS(2257), - [anon_sym_SQUOTE] = ACTIONS(2257), - [anon_sym_DQUOTE] = ACTIONS(2257), - [anon_sym_c_SQUOTE] = ACTIONS(2257), - [anon_sym_c_DQUOTE] = ACTIONS(2257), - [anon_sym_r_SQUOTE] = ACTIONS(2257), - [anon_sym_r_DQUOTE] = ACTIONS(2257), - [sym_pseudo_compile_time_identifier] = ACTIONS(2257), - [anon_sym_shared] = ACTIONS(2257), - [anon_sym_map_LBRACK] = ACTIONS(2257), - [anon_sym_chan] = ACTIONS(2257), - [anon_sym_thread] = ACTIONS(2257), - [anon_sym_atomic] = ACTIONS(2257), - [anon_sym_assert] = ACTIONS(2257), - [anon_sym_defer] = ACTIONS(2257), - [anon_sym_goto] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_DOLLARfor] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_POUND] = ACTIONS(2257), - [anon_sym_asm] = ACTIONS(2257), - [anon_sym_AT_LBRACK] = ACTIONS(2257), + [anon_sym_DOT] = ACTIONS(2363), + [anon_sym_as] = ACTIONS(2363), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_COMMA] = ACTIONS(2363), + [anon_sym_const] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_EQ] = ACTIONS(2363), + [anon_sym___global] = ACTIONS(2363), + [anon_sym_type] = ACTIONS(2363), + [anon_sym_fn] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(2363), + [anon_sym_SLASH] = ACTIONS(2363), + [anon_sym_PERCENT] = ACTIONS(2363), + [anon_sym_LT] = ACTIONS(2363), + [anon_sym_GT] = ACTIONS(2363), + [anon_sym_EQ_EQ] = ACTIONS(2363), + [anon_sym_BANG_EQ] = ACTIONS(2363), + [anon_sym_LT_EQ] = ACTIONS(2363), + [anon_sym_GT_EQ] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_struct] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), + [anon_sym_pub] = ACTIONS(2363), + [anon_sym_mut] = ACTIONS(2363), + [anon_sym_enum] = ACTIONS(2363), + [anon_sym_interface] = ACTIONS(2363), + [anon_sym_PLUS_PLUS] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(2363), + [anon_sym_QMARK] = ACTIONS(2363), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_go] = ACTIONS(2363), + [anon_sym_spawn] = ACTIONS(2363), + [anon_sym_json_DOTdecode] = ACTIONS(2363), + [anon_sym_PIPE] = ACTIONS(2363), + [anon_sym_LBRACK2] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2363), + [anon_sym_CARET] = ACTIONS(2363), + [anon_sym_AMP] = ACTIONS(2363), + [anon_sym_LT_DASH] = ACTIONS(2363), + [anon_sym_LT_LT] = ACTIONS(2363), + [anon_sym_GT_GT] = ACTIONS(2363), + [anon_sym_GT_GT_GT] = ACTIONS(2363), + [anon_sym_AMP_CARET] = ACTIONS(2363), + [anon_sym_AMP_AMP] = ACTIONS(2363), + [anon_sym_PIPE_PIPE] = ACTIONS(2363), + [anon_sym_or] = ACTIONS(2363), + [sym_none] = ACTIONS(2363), + [sym_true] = ACTIONS(2363), + [sym_false] = ACTIONS(2363), + [sym_nil] = ACTIONS(2363), + [anon_sym_QMARK_DOT] = ACTIONS(2363), + [anon_sym_POUND_LBRACK] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_DOLLARif] = ACTIONS(2363), + [anon_sym_is] = ACTIONS(2363), + [anon_sym_BANGis] = ACTIONS(2363), + [anon_sym_in] = ACTIONS(2363), + [anon_sym_BANGin] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), + [anon_sym_select] = ACTIONS(2363), + [anon_sym_STAR_EQ] = ACTIONS(2363), + [anon_sym_SLASH_EQ] = ACTIONS(2363), + [anon_sym_PERCENT_EQ] = ACTIONS(2363), + [anon_sym_LT_LT_EQ] = ACTIONS(2363), + [anon_sym_GT_GT_EQ] = ACTIONS(2363), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2363), + [anon_sym_AMP_EQ] = ACTIONS(2363), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2363), + [anon_sym_PLUS_EQ] = ACTIONS(2363), + [anon_sym_DASH_EQ] = ACTIONS(2363), + [anon_sym_PIPE_EQ] = ACTIONS(2363), + [anon_sym_CARET_EQ] = ACTIONS(2363), + [anon_sym_COLON_EQ] = ACTIONS(2363), + [anon_sym_lock] = ACTIONS(2363), + [anon_sym_rlock] = ACTIONS(2363), + [anon_sym_unsafe] = ACTIONS(2363), + [anon_sym_sql] = ACTIONS(2363), + [sym_int_literal] = ACTIONS(2363), + [sym_float_literal] = ACTIONS(2363), + [sym_rune_literal] = ACTIONS(2363), + [anon_sym_SQUOTE] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), + [anon_sym_c_SQUOTE] = ACTIONS(2363), + [anon_sym_c_DQUOTE] = ACTIONS(2363), + [anon_sym_r_SQUOTE] = ACTIONS(2363), + [anon_sym_r_DQUOTE] = ACTIONS(2363), + [sym_pseudo_compile_time_identifier] = ACTIONS(2363), + [anon_sym_shared] = ACTIONS(2363), + [anon_sym_map_LBRACK] = ACTIONS(2363), + [anon_sym_chan] = ACTIONS(2363), + [anon_sym_thread] = ACTIONS(2363), + [anon_sym_atomic] = ACTIONS(2363), + [anon_sym_assert] = ACTIONS(2363), + [anon_sym_defer] = ACTIONS(2363), + [anon_sym_goto] = ACTIONS(2363), + [anon_sym_break] = ACTIONS(2363), + [anon_sym_continue] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_DOLLARfor] = ACTIONS(2363), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_POUND] = ACTIONS(2363), + [anon_sym_asm] = ACTIONS(2363), + [anon_sym_AT_LBRACK] = ACTIONS(2363), }, [349] = { [sym_line_comment] = STATE(349), [sym_block_comment] = STATE(349), - [ts_builtin_sym_end] = ACTIONS(2259), - [sym_identifier] = ACTIONS(2261), - [anon_sym_LF] = ACTIONS(2261), - [anon_sym_CR] = ACTIONS(2261), - [anon_sym_CR_LF] = ACTIONS(2261), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2261), - [anon_sym_as] = ACTIONS(2261), - [anon_sym_LBRACE] = ACTIONS(2261), - [anon_sym_COMMA] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(2261), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_EQ] = ACTIONS(2261), - [anon_sym___global] = ACTIONS(2261), - [anon_sym_type] = ACTIONS(2261), - [anon_sym_PIPE] = ACTIONS(2261), - [anon_sym_fn] = ACTIONS(2261), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2261), - [anon_sym_SLASH] = ACTIONS(2261), - [anon_sym_PERCENT] = ACTIONS(2261), - [anon_sym_LT] = ACTIONS(2261), - [anon_sym_GT] = ACTIONS(2261), - [anon_sym_EQ_EQ] = ACTIONS(2261), - [anon_sym_BANG_EQ] = ACTIONS(2261), - [anon_sym_LT_EQ] = ACTIONS(2261), - [anon_sym_GT_EQ] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(2259), - [anon_sym_struct] = ACTIONS(2261), - [anon_sym_union] = ACTIONS(2261), - [anon_sym_pub] = ACTIONS(2261), - [anon_sym_mut] = ACTIONS(2261), - [anon_sym_enum] = ACTIONS(2261), - [anon_sym_interface] = ACTIONS(2261), - [anon_sym_PLUS_PLUS] = ACTIONS(2261), - [anon_sym_DASH_DASH] = ACTIONS(2261), - [anon_sym_QMARK] = ACTIONS(2261), - [anon_sym_BANG] = ACTIONS(2261), - [anon_sym_go] = ACTIONS(2261), - [anon_sym_spawn] = ACTIONS(2261), - [anon_sym_json_DOTdecode] = ACTIONS(2261), - [anon_sym_LBRACK2] = ACTIONS(2261), - [anon_sym_TILDE] = ACTIONS(2261), - [anon_sym_CARET] = ACTIONS(2261), - [anon_sym_AMP] = ACTIONS(2261), - [anon_sym_LT_DASH] = ACTIONS(2261), - [anon_sym_LT_LT] = ACTIONS(2261), - [anon_sym_GT_GT] = ACTIONS(2261), - [anon_sym_GT_GT_GT] = ACTIONS(2261), - [anon_sym_AMP_CARET] = ACTIONS(2261), - [anon_sym_AMP_AMP] = ACTIONS(2261), - [anon_sym_PIPE_PIPE] = ACTIONS(2261), - [anon_sym_or] = ACTIONS(2261), - [sym_none] = ACTIONS(2261), - [sym_true] = ACTIONS(2261), - [sym_false] = ACTIONS(2261), - [sym_nil] = ACTIONS(2261), - [anon_sym_QMARK_DOT] = ACTIONS(2261), - [anon_sym_POUND_LBRACK] = ACTIONS(2261), - [anon_sym_if] = ACTIONS(2261), - [anon_sym_DOLLARif] = ACTIONS(2261), - [anon_sym_is] = ACTIONS(2261), - [anon_sym_BANGis] = ACTIONS(2261), - [anon_sym_in] = ACTIONS(2261), - [anon_sym_BANGin] = ACTIONS(2261), - [anon_sym_match] = ACTIONS(2261), - [anon_sym_select] = ACTIONS(2261), - [anon_sym_STAR_EQ] = ACTIONS(2261), - [anon_sym_SLASH_EQ] = ACTIONS(2261), - [anon_sym_PERCENT_EQ] = ACTIONS(2261), - [anon_sym_LT_LT_EQ] = ACTIONS(2261), - [anon_sym_GT_GT_EQ] = ACTIONS(2261), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2261), - [anon_sym_AMP_EQ] = ACTIONS(2261), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2261), - [anon_sym_PLUS_EQ] = ACTIONS(2261), - [anon_sym_DASH_EQ] = ACTIONS(2261), - [anon_sym_PIPE_EQ] = ACTIONS(2261), - [anon_sym_CARET_EQ] = ACTIONS(2261), - [anon_sym_COLON_EQ] = ACTIONS(2261), - [anon_sym_lock] = ACTIONS(2261), - [anon_sym_rlock] = ACTIONS(2261), - [anon_sym_unsafe] = ACTIONS(2261), - [anon_sym_sql] = ACTIONS(2261), - [sym_int_literal] = ACTIONS(2261), - [sym_float_literal] = ACTIONS(2261), - [sym_rune_literal] = ACTIONS(2261), - [anon_sym_SQUOTE] = ACTIONS(2261), - [anon_sym_DQUOTE] = ACTIONS(2261), - [anon_sym_c_SQUOTE] = ACTIONS(2261), - [anon_sym_c_DQUOTE] = ACTIONS(2261), - [anon_sym_r_SQUOTE] = ACTIONS(2261), - [anon_sym_r_DQUOTE] = ACTIONS(2261), - [sym_pseudo_compile_time_identifier] = ACTIONS(2261), - [anon_sym_shared] = ACTIONS(2261), - [anon_sym_map_LBRACK] = ACTIONS(2261), - [anon_sym_chan] = ACTIONS(2261), - [anon_sym_thread] = ACTIONS(2261), - [anon_sym_atomic] = ACTIONS(2261), - [anon_sym_assert] = ACTIONS(2261), - [anon_sym_defer] = ACTIONS(2261), - [anon_sym_goto] = ACTIONS(2261), - [anon_sym_break] = ACTIONS(2261), - [anon_sym_continue] = ACTIONS(2261), - [anon_sym_return] = ACTIONS(2261), - [anon_sym_DOLLARfor] = ACTIONS(2261), - [anon_sym_for] = ACTIONS(2261), - [anon_sym_POUND] = ACTIONS(2261), - [anon_sym_asm] = ACTIONS(2261), - [anon_sym_AT_LBRACK] = ACTIONS(2261), + [sym__expression] = STATE(2642), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3638), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_range] = STATE(4642), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1486), }, [350] = { [sym_line_comment] = STATE(350), [sym_block_comment] = STATE(350), - [ts_builtin_sym_end] = ACTIONS(2263), - [sym_identifier] = ACTIONS(2265), - [anon_sym_LF] = ACTIONS(2265), - [anon_sym_CR] = ACTIONS(2265), - [anon_sym_CR_LF] = ACTIONS(2265), + [ts_builtin_sym_end] = ACTIONS(2365), + [sym_identifier] = ACTIONS(2367), + [anon_sym_LF] = ACTIONS(2367), + [anon_sym_CR] = ACTIONS(2367), + [anon_sym_CR_LF] = ACTIONS(2367), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2265), - [anon_sym_as] = ACTIONS(2265), - [anon_sym_LBRACE] = ACTIONS(2265), - [anon_sym_COMMA] = ACTIONS(2265), - [anon_sym_const] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2265), - [anon_sym_EQ] = ACTIONS(2265), - [anon_sym___global] = ACTIONS(2265), - [anon_sym_type] = ACTIONS(2265), - [anon_sym_PIPE] = ACTIONS(2265), - [anon_sym_fn] = ACTIONS(2265), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_SLASH] = ACTIONS(2265), - [anon_sym_PERCENT] = ACTIONS(2265), - [anon_sym_LT] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(2265), - [anon_sym_EQ_EQ] = ACTIONS(2265), - [anon_sym_BANG_EQ] = ACTIONS(2265), - [anon_sym_LT_EQ] = ACTIONS(2265), - [anon_sym_GT_EQ] = ACTIONS(2265), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_struct] = ACTIONS(2265), - [anon_sym_union] = ACTIONS(2265), - [anon_sym_pub] = ACTIONS(2265), - [anon_sym_mut] = ACTIONS(2265), - [anon_sym_enum] = ACTIONS(2265), - [anon_sym_interface] = ACTIONS(2265), - [anon_sym_PLUS_PLUS] = ACTIONS(2265), - [anon_sym_DASH_DASH] = ACTIONS(2265), - [anon_sym_QMARK] = ACTIONS(2265), - [anon_sym_BANG] = ACTIONS(2265), - [anon_sym_go] = ACTIONS(2265), - [anon_sym_spawn] = ACTIONS(2265), - [anon_sym_json_DOTdecode] = ACTIONS(2265), - [anon_sym_LBRACK2] = ACTIONS(2265), - [anon_sym_TILDE] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2265), - [anon_sym_AMP] = ACTIONS(2265), - [anon_sym_LT_DASH] = ACTIONS(2265), - [anon_sym_LT_LT] = ACTIONS(2265), - [anon_sym_GT_GT] = ACTIONS(2265), - [anon_sym_GT_GT_GT] = ACTIONS(2265), - [anon_sym_AMP_CARET] = ACTIONS(2265), - [anon_sym_AMP_AMP] = ACTIONS(2265), - [anon_sym_PIPE_PIPE] = ACTIONS(2265), - [anon_sym_or] = ACTIONS(2265), - [sym_none] = ACTIONS(2265), - [sym_true] = ACTIONS(2265), - [sym_false] = ACTIONS(2265), - [sym_nil] = ACTIONS(2265), - [anon_sym_QMARK_DOT] = ACTIONS(2265), - [anon_sym_POUND_LBRACK] = ACTIONS(2265), - [anon_sym_if] = ACTIONS(2265), - [anon_sym_DOLLARif] = ACTIONS(2265), - [anon_sym_is] = ACTIONS(2265), - [anon_sym_BANGis] = ACTIONS(2265), - [anon_sym_in] = ACTIONS(2265), - [anon_sym_BANGin] = ACTIONS(2265), - [anon_sym_match] = ACTIONS(2265), - [anon_sym_select] = ACTIONS(2265), - [anon_sym_STAR_EQ] = ACTIONS(2265), - [anon_sym_SLASH_EQ] = ACTIONS(2265), - [anon_sym_PERCENT_EQ] = ACTIONS(2265), - [anon_sym_LT_LT_EQ] = ACTIONS(2265), - [anon_sym_GT_GT_EQ] = ACTIONS(2265), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2265), - [anon_sym_AMP_EQ] = ACTIONS(2265), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2265), - [anon_sym_PLUS_EQ] = ACTIONS(2265), - [anon_sym_DASH_EQ] = ACTIONS(2265), - [anon_sym_PIPE_EQ] = ACTIONS(2265), - [anon_sym_CARET_EQ] = ACTIONS(2265), - [anon_sym_COLON_EQ] = ACTIONS(2265), - [anon_sym_lock] = ACTIONS(2265), - [anon_sym_rlock] = ACTIONS(2265), - [anon_sym_unsafe] = ACTIONS(2265), - [anon_sym_sql] = ACTIONS(2265), - [sym_int_literal] = ACTIONS(2265), - [sym_float_literal] = ACTIONS(2265), - [sym_rune_literal] = ACTIONS(2265), - [anon_sym_SQUOTE] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2265), - [anon_sym_c_SQUOTE] = ACTIONS(2265), - [anon_sym_c_DQUOTE] = ACTIONS(2265), - [anon_sym_r_SQUOTE] = ACTIONS(2265), - [anon_sym_r_DQUOTE] = ACTIONS(2265), - [sym_pseudo_compile_time_identifier] = ACTIONS(2265), - [anon_sym_shared] = ACTIONS(2265), - [anon_sym_map_LBRACK] = ACTIONS(2265), - [anon_sym_chan] = ACTIONS(2265), - [anon_sym_thread] = ACTIONS(2265), - [anon_sym_atomic] = ACTIONS(2265), - [anon_sym_assert] = ACTIONS(2265), - [anon_sym_defer] = ACTIONS(2265), - [anon_sym_goto] = ACTIONS(2265), - [anon_sym_break] = ACTIONS(2265), - [anon_sym_continue] = ACTIONS(2265), - [anon_sym_return] = ACTIONS(2265), - [anon_sym_DOLLARfor] = ACTIONS(2265), - [anon_sym_for] = ACTIONS(2265), - [anon_sym_POUND] = ACTIONS(2265), - [anon_sym_asm] = ACTIONS(2265), - [anon_sym_AT_LBRACK] = ACTIONS(2265), + [anon_sym_DOT] = ACTIONS(2367), + [anon_sym_as] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_COMMA] = ACTIONS(2367), + [anon_sym_const] = ACTIONS(2367), + [anon_sym_LPAREN] = ACTIONS(2367), + [anon_sym_EQ] = ACTIONS(2367), + [anon_sym___global] = ACTIONS(2367), + [anon_sym_type] = ACTIONS(2367), + [anon_sym_fn] = ACTIONS(2367), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_SLASH] = ACTIONS(2367), + [anon_sym_PERCENT] = ACTIONS(2367), + [anon_sym_LT] = ACTIONS(2367), + [anon_sym_GT] = ACTIONS(2367), + [anon_sym_EQ_EQ] = ACTIONS(2367), + [anon_sym_BANG_EQ] = ACTIONS(2367), + [anon_sym_LT_EQ] = ACTIONS(2367), + [anon_sym_GT_EQ] = ACTIONS(2367), + [anon_sym_LBRACK] = ACTIONS(2365), + [anon_sym_struct] = ACTIONS(2367), + [anon_sym_union] = ACTIONS(2367), + [anon_sym_pub] = ACTIONS(2367), + [anon_sym_mut] = ACTIONS(2367), + [anon_sym_enum] = ACTIONS(2367), + [anon_sym_interface] = ACTIONS(2367), + [anon_sym_PLUS_PLUS] = ACTIONS(2367), + [anon_sym_DASH_DASH] = ACTIONS(2367), + [anon_sym_QMARK] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_go] = ACTIONS(2367), + [anon_sym_spawn] = ACTIONS(2367), + [anon_sym_json_DOTdecode] = ACTIONS(2367), + [anon_sym_PIPE] = ACTIONS(2367), + [anon_sym_LBRACK2] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_CARET] = ACTIONS(2367), + [anon_sym_AMP] = ACTIONS(2367), + [anon_sym_LT_DASH] = ACTIONS(2367), + [anon_sym_LT_LT] = ACTIONS(2367), + [anon_sym_GT_GT] = ACTIONS(2367), + [anon_sym_GT_GT_GT] = ACTIONS(2367), + [anon_sym_AMP_CARET] = ACTIONS(2367), + [anon_sym_AMP_AMP] = ACTIONS(2367), + [anon_sym_PIPE_PIPE] = ACTIONS(2367), + [anon_sym_or] = ACTIONS(2367), + [sym_none] = ACTIONS(2367), + [sym_true] = ACTIONS(2367), + [sym_false] = ACTIONS(2367), + [sym_nil] = ACTIONS(2367), + [anon_sym_QMARK_DOT] = ACTIONS(2367), + [anon_sym_POUND_LBRACK] = ACTIONS(2367), + [anon_sym_if] = ACTIONS(2367), + [anon_sym_DOLLARif] = ACTIONS(2367), + [anon_sym_is] = ACTIONS(2367), + [anon_sym_BANGis] = ACTIONS(2367), + [anon_sym_in] = ACTIONS(2367), + [anon_sym_BANGin] = ACTIONS(2367), + [anon_sym_match] = ACTIONS(2367), + [anon_sym_select] = ACTIONS(2367), + [anon_sym_STAR_EQ] = ACTIONS(2367), + [anon_sym_SLASH_EQ] = ACTIONS(2367), + [anon_sym_PERCENT_EQ] = ACTIONS(2367), + [anon_sym_LT_LT_EQ] = ACTIONS(2367), + [anon_sym_GT_GT_EQ] = ACTIONS(2367), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2367), + [anon_sym_AMP_EQ] = ACTIONS(2367), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2367), + [anon_sym_PLUS_EQ] = ACTIONS(2367), + [anon_sym_DASH_EQ] = ACTIONS(2367), + [anon_sym_PIPE_EQ] = ACTIONS(2367), + [anon_sym_CARET_EQ] = ACTIONS(2367), + [anon_sym_COLON_EQ] = ACTIONS(2367), + [anon_sym_lock] = ACTIONS(2367), + [anon_sym_rlock] = ACTIONS(2367), + [anon_sym_unsafe] = ACTIONS(2367), + [anon_sym_sql] = ACTIONS(2367), + [sym_int_literal] = ACTIONS(2367), + [sym_float_literal] = ACTIONS(2367), + [sym_rune_literal] = ACTIONS(2367), + [anon_sym_SQUOTE] = ACTIONS(2367), + [anon_sym_DQUOTE] = ACTIONS(2367), + [anon_sym_c_SQUOTE] = ACTIONS(2367), + [anon_sym_c_DQUOTE] = ACTIONS(2367), + [anon_sym_r_SQUOTE] = ACTIONS(2367), + [anon_sym_r_DQUOTE] = ACTIONS(2367), + [sym_pseudo_compile_time_identifier] = ACTIONS(2367), + [anon_sym_shared] = ACTIONS(2367), + [anon_sym_map_LBRACK] = ACTIONS(2367), + [anon_sym_chan] = ACTIONS(2367), + [anon_sym_thread] = ACTIONS(2367), + [anon_sym_atomic] = ACTIONS(2367), + [anon_sym_assert] = ACTIONS(2367), + [anon_sym_defer] = ACTIONS(2367), + [anon_sym_goto] = ACTIONS(2367), + [anon_sym_break] = ACTIONS(2367), + [anon_sym_continue] = ACTIONS(2367), + [anon_sym_return] = ACTIONS(2367), + [anon_sym_DOLLARfor] = ACTIONS(2367), + [anon_sym_for] = ACTIONS(2367), + [anon_sym_POUND] = ACTIONS(2367), + [anon_sym_asm] = ACTIONS(2367), + [anon_sym_AT_LBRACK] = ACTIONS(2367), }, [351] = { [sym_line_comment] = STATE(351), [sym_block_comment] = STATE(351), - [ts_builtin_sym_end] = ACTIONS(2267), - [sym_identifier] = ACTIONS(2269), - [anon_sym_LF] = ACTIONS(2269), - [anon_sym_CR] = ACTIONS(2269), - [anon_sym_CR_LF] = ACTIONS(2269), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2269), - [anon_sym_as] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(2269), - [anon_sym_COMMA] = ACTIONS(2269), - [anon_sym_const] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(2269), - [anon_sym_EQ] = ACTIONS(2269), - [anon_sym___global] = ACTIONS(2269), - [anon_sym_type] = ACTIONS(2269), - [anon_sym_PIPE] = ACTIONS(2269), - [anon_sym_fn] = ACTIONS(2269), - [anon_sym_PLUS] = ACTIONS(2269), - [anon_sym_DASH] = ACTIONS(2269), - [anon_sym_STAR] = ACTIONS(2269), - [anon_sym_SLASH] = ACTIONS(2269), - [anon_sym_PERCENT] = ACTIONS(2269), - [anon_sym_LT] = ACTIONS(2269), - [anon_sym_GT] = ACTIONS(2269), - [anon_sym_EQ_EQ] = ACTIONS(2269), - [anon_sym_BANG_EQ] = ACTIONS(2269), - [anon_sym_LT_EQ] = ACTIONS(2269), - [anon_sym_GT_EQ] = ACTIONS(2269), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_struct] = ACTIONS(2269), - [anon_sym_union] = ACTIONS(2269), - [anon_sym_pub] = ACTIONS(2269), - [anon_sym_mut] = ACTIONS(2269), - [anon_sym_enum] = ACTIONS(2269), - [anon_sym_interface] = ACTIONS(2269), - [anon_sym_PLUS_PLUS] = ACTIONS(2269), - [anon_sym_DASH_DASH] = ACTIONS(2269), - [anon_sym_QMARK] = ACTIONS(2269), - [anon_sym_BANG] = ACTIONS(2269), - [anon_sym_go] = ACTIONS(2269), - [anon_sym_spawn] = ACTIONS(2269), - [anon_sym_json_DOTdecode] = ACTIONS(2269), - [anon_sym_LBRACK2] = ACTIONS(2269), - [anon_sym_TILDE] = ACTIONS(2269), - [anon_sym_CARET] = ACTIONS(2269), - [anon_sym_AMP] = ACTIONS(2269), - [anon_sym_LT_DASH] = ACTIONS(2269), - [anon_sym_LT_LT] = ACTIONS(2269), - [anon_sym_GT_GT] = ACTIONS(2269), - [anon_sym_GT_GT_GT] = ACTIONS(2269), - [anon_sym_AMP_CARET] = ACTIONS(2269), - [anon_sym_AMP_AMP] = ACTIONS(2269), - [anon_sym_PIPE_PIPE] = ACTIONS(2269), - [anon_sym_or] = ACTIONS(2269), - [sym_none] = ACTIONS(2269), - [sym_true] = ACTIONS(2269), - [sym_false] = ACTIONS(2269), - [sym_nil] = ACTIONS(2269), - [anon_sym_QMARK_DOT] = ACTIONS(2269), - [anon_sym_POUND_LBRACK] = ACTIONS(2269), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_DOLLARif] = ACTIONS(2269), - [anon_sym_is] = ACTIONS(2269), - [anon_sym_BANGis] = ACTIONS(2269), - [anon_sym_in] = ACTIONS(2269), - [anon_sym_BANGin] = ACTIONS(2269), - [anon_sym_match] = ACTIONS(2269), - [anon_sym_select] = ACTIONS(2269), - [anon_sym_STAR_EQ] = ACTIONS(2269), - [anon_sym_SLASH_EQ] = ACTIONS(2269), - [anon_sym_PERCENT_EQ] = ACTIONS(2269), - [anon_sym_LT_LT_EQ] = ACTIONS(2269), - [anon_sym_GT_GT_EQ] = ACTIONS(2269), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2269), - [anon_sym_AMP_EQ] = ACTIONS(2269), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2269), - [anon_sym_PLUS_EQ] = ACTIONS(2269), - [anon_sym_DASH_EQ] = ACTIONS(2269), - [anon_sym_PIPE_EQ] = ACTIONS(2269), - [anon_sym_CARET_EQ] = ACTIONS(2269), - [anon_sym_COLON_EQ] = ACTIONS(2269), - [anon_sym_lock] = ACTIONS(2269), - [anon_sym_rlock] = ACTIONS(2269), - [anon_sym_unsafe] = ACTIONS(2269), - [anon_sym_sql] = ACTIONS(2269), - [sym_int_literal] = ACTIONS(2269), - [sym_float_literal] = ACTIONS(2269), - [sym_rune_literal] = ACTIONS(2269), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_DQUOTE] = ACTIONS(2269), - [anon_sym_c_SQUOTE] = ACTIONS(2269), - [anon_sym_c_DQUOTE] = ACTIONS(2269), - [anon_sym_r_SQUOTE] = ACTIONS(2269), - [anon_sym_r_DQUOTE] = ACTIONS(2269), - [sym_pseudo_compile_time_identifier] = ACTIONS(2269), - [anon_sym_shared] = ACTIONS(2269), - [anon_sym_map_LBRACK] = ACTIONS(2269), - [anon_sym_chan] = ACTIONS(2269), - [anon_sym_thread] = ACTIONS(2269), - [anon_sym_atomic] = ACTIONS(2269), - [anon_sym_assert] = ACTIONS(2269), - [anon_sym_defer] = ACTIONS(2269), - [anon_sym_goto] = ACTIONS(2269), - [anon_sym_break] = ACTIONS(2269), - [anon_sym_continue] = ACTIONS(2269), - [anon_sym_return] = ACTIONS(2269), - [anon_sym_DOLLARfor] = ACTIONS(2269), - [anon_sym_for] = ACTIONS(2269), - [anon_sym_POUND] = ACTIONS(2269), - [anon_sym_asm] = ACTIONS(2269), - [anon_sym_AT_LBRACK] = ACTIONS(2269), + [sym__expression] = STATE(2642), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_range] = STATE(4642), + [sym_identifier] = ACTIONS(1424), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1486), }, [352] = { [sym_line_comment] = STATE(352), [sym_block_comment] = STATE(352), - [ts_builtin_sym_end] = ACTIONS(2271), - [sym_identifier] = ACTIONS(2273), - [anon_sym_LF] = ACTIONS(2273), - [anon_sym_CR] = ACTIONS(2273), - [anon_sym_CR_LF] = ACTIONS(2273), + [ts_builtin_sym_end] = ACTIONS(2369), + [sym_identifier] = ACTIONS(2371), + [anon_sym_LF] = ACTIONS(2371), + [anon_sym_CR] = ACTIONS(2371), + [anon_sym_CR_LF] = ACTIONS(2371), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2273), - [anon_sym_as] = ACTIONS(2273), - [anon_sym_LBRACE] = ACTIONS(2273), - [anon_sym_COMMA] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2273), - [anon_sym_EQ] = ACTIONS(2273), - [anon_sym___global] = ACTIONS(2273), - [anon_sym_type] = ACTIONS(2273), - [anon_sym_PIPE] = ACTIONS(2273), - [anon_sym_fn] = ACTIONS(2273), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_SLASH] = ACTIONS(2273), - [anon_sym_PERCENT] = ACTIONS(2273), - [anon_sym_LT] = ACTIONS(2273), - [anon_sym_GT] = ACTIONS(2273), - [anon_sym_EQ_EQ] = ACTIONS(2273), - [anon_sym_BANG_EQ] = ACTIONS(2273), - [anon_sym_LT_EQ] = ACTIONS(2273), - [anon_sym_GT_EQ] = ACTIONS(2273), - [anon_sym_LBRACK] = ACTIONS(2271), - [anon_sym_struct] = ACTIONS(2273), - [anon_sym_union] = ACTIONS(2273), - [anon_sym_pub] = ACTIONS(2273), - [anon_sym_mut] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2273), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_PLUS_PLUS] = ACTIONS(2273), - [anon_sym_DASH_DASH] = ACTIONS(2273), - [anon_sym_QMARK] = ACTIONS(2273), - [anon_sym_BANG] = ACTIONS(2273), - [anon_sym_go] = ACTIONS(2273), - [anon_sym_spawn] = ACTIONS(2273), - [anon_sym_json_DOTdecode] = ACTIONS(2273), - [anon_sym_LBRACK2] = ACTIONS(2273), - [anon_sym_TILDE] = ACTIONS(2273), - [anon_sym_CARET] = ACTIONS(2273), - [anon_sym_AMP] = ACTIONS(2273), - [anon_sym_LT_DASH] = ACTIONS(2273), - [anon_sym_LT_LT] = ACTIONS(2273), - [anon_sym_GT_GT] = ACTIONS(2273), - [anon_sym_GT_GT_GT] = ACTIONS(2273), - [anon_sym_AMP_CARET] = ACTIONS(2273), - [anon_sym_AMP_AMP] = ACTIONS(2273), - [anon_sym_PIPE_PIPE] = ACTIONS(2273), - [anon_sym_or] = ACTIONS(2273), - [sym_none] = ACTIONS(2273), - [sym_true] = ACTIONS(2273), - [sym_false] = ACTIONS(2273), - [sym_nil] = ACTIONS(2273), - [anon_sym_QMARK_DOT] = ACTIONS(2273), - [anon_sym_POUND_LBRACK] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_DOLLARif] = ACTIONS(2273), - [anon_sym_is] = ACTIONS(2273), - [anon_sym_BANGis] = ACTIONS(2273), - [anon_sym_in] = ACTIONS(2273), - [anon_sym_BANGin] = ACTIONS(2273), - [anon_sym_match] = ACTIONS(2273), - [anon_sym_select] = ACTIONS(2273), - [anon_sym_STAR_EQ] = ACTIONS(2273), - [anon_sym_SLASH_EQ] = ACTIONS(2273), - [anon_sym_PERCENT_EQ] = ACTIONS(2273), - [anon_sym_LT_LT_EQ] = ACTIONS(2273), - [anon_sym_GT_GT_EQ] = ACTIONS(2273), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2273), - [anon_sym_AMP_EQ] = ACTIONS(2273), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2273), - [anon_sym_PLUS_EQ] = ACTIONS(2273), - [anon_sym_DASH_EQ] = ACTIONS(2273), - [anon_sym_PIPE_EQ] = ACTIONS(2273), - [anon_sym_CARET_EQ] = ACTIONS(2273), - [anon_sym_COLON_EQ] = ACTIONS(2273), - [anon_sym_lock] = ACTIONS(2273), - [anon_sym_rlock] = ACTIONS(2273), - [anon_sym_unsafe] = ACTIONS(2273), - [anon_sym_sql] = ACTIONS(2273), - [sym_int_literal] = ACTIONS(2273), - [sym_float_literal] = ACTIONS(2273), - [sym_rune_literal] = ACTIONS(2273), - [anon_sym_SQUOTE] = ACTIONS(2273), - [anon_sym_DQUOTE] = ACTIONS(2273), - [anon_sym_c_SQUOTE] = ACTIONS(2273), - [anon_sym_c_DQUOTE] = ACTIONS(2273), - [anon_sym_r_SQUOTE] = ACTIONS(2273), - [anon_sym_r_DQUOTE] = ACTIONS(2273), - [sym_pseudo_compile_time_identifier] = ACTIONS(2273), - [anon_sym_shared] = ACTIONS(2273), - [anon_sym_map_LBRACK] = ACTIONS(2273), - [anon_sym_chan] = ACTIONS(2273), - [anon_sym_thread] = ACTIONS(2273), - [anon_sym_atomic] = ACTIONS(2273), - [anon_sym_assert] = ACTIONS(2273), - [anon_sym_defer] = ACTIONS(2273), - [anon_sym_goto] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_DOLLARfor] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_POUND] = ACTIONS(2273), - [anon_sym_asm] = ACTIONS(2273), - [anon_sym_AT_LBRACK] = ACTIONS(2273), + [anon_sym_DOT] = ACTIONS(2371), + [anon_sym_as] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_COMMA] = ACTIONS(2371), + [anon_sym_const] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_EQ] = ACTIONS(2371), + [anon_sym___global] = ACTIONS(2371), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_fn] = ACTIONS(2371), + [anon_sym_PLUS] = ACTIONS(2371), + [anon_sym_DASH] = ACTIONS(2371), + [anon_sym_STAR] = ACTIONS(2371), + [anon_sym_SLASH] = ACTIONS(2371), + [anon_sym_PERCENT] = ACTIONS(2371), + [anon_sym_LT] = ACTIONS(2371), + [anon_sym_GT] = ACTIONS(2371), + [anon_sym_EQ_EQ] = ACTIONS(2371), + [anon_sym_BANG_EQ] = ACTIONS(2371), + [anon_sym_LT_EQ] = ACTIONS(2371), + [anon_sym_GT_EQ] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2369), + [anon_sym_struct] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), + [anon_sym_pub] = ACTIONS(2371), + [anon_sym_mut] = ACTIONS(2371), + [anon_sym_enum] = ACTIONS(2371), + [anon_sym_interface] = ACTIONS(2371), + [anon_sym_PLUS_PLUS] = ACTIONS(2371), + [anon_sym_DASH_DASH] = ACTIONS(2371), + [anon_sym_QMARK] = ACTIONS(2371), + [anon_sym_BANG] = ACTIONS(2371), + [anon_sym_go] = ACTIONS(2371), + [anon_sym_spawn] = ACTIONS(2371), + [anon_sym_json_DOTdecode] = ACTIONS(2371), + [anon_sym_PIPE] = ACTIONS(2371), + [anon_sym_LBRACK2] = ACTIONS(2371), + [anon_sym_TILDE] = ACTIONS(2371), + [anon_sym_CARET] = ACTIONS(2371), + [anon_sym_AMP] = ACTIONS(2371), + [anon_sym_LT_DASH] = ACTIONS(2371), + [anon_sym_LT_LT] = ACTIONS(2371), + [anon_sym_GT_GT] = ACTIONS(2371), + [anon_sym_GT_GT_GT] = ACTIONS(2371), + [anon_sym_AMP_CARET] = ACTIONS(2371), + [anon_sym_AMP_AMP] = ACTIONS(2371), + [anon_sym_PIPE_PIPE] = ACTIONS(2371), + [anon_sym_or] = ACTIONS(2371), + [sym_none] = ACTIONS(2371), + [sym_true] = ACTIONS(2371), + [sym_false] = ACTIONS(2371), + [sym_nil] = ACTIONS(2371), + [anon_sym_QMARK_DOT] = ACTIONS(2371), + [anon_sym_POUND_LBRACK] = ACTIONS(2371), + [anon_sym_if] = ACTIONS(2371), + [anon_sym_DOLLARif] = ACTIONS(2371), + [anon_sym_is] = ACTIONS(2371), + [anon_sym_BANGis] = ACTIONS(2371), + [anon_sym_in] = ACTIONS(2371), + [anon_sym_BANGin] = ACTIONS(2371), + [anon_sym_match] = ACTIONS(2371), + [anon_sym_select] = ACTIONS(2371), + [anon_sym_STAR_EQ] = ACTIONS(2371), + [anon_sym_SLASH_EQ] = ACTIONS(2371), + [anon_sym_PERCENT_EQ] = ACTIONS(2371), + [anon_sym_LT_LT_EQ] = ACTIONS(2371), + [anon_sym_GT_GT_EQ] = ACTIONS(2371), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2371), + [anon_sym_AMP_EQ] = ACTIONS(2371), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2371), + [anon_sym_PLUS_EQ] = ACTIONS(2371), + [anon_sym_DASH_EQ] = ACTIONS(2371), + [anon_sym_PIPE_EQ] = ACTIONS(2371), + [anon_sym_CARET_EQ] = ACTIONS(2371), + [anon_sym_COLON_EQ] = ACTIONS(2371), + [anon_sym_lock] = ACTIONS(2371), + [anon_sym_rlock] = ACTIONS(2371), + [anon_sym_unsafe] = ACTIONS(2371), + [anon_sym_sql] = ACTIONS(2371), + [sym_int_literal] = ACTIONS(2371), + [sym_float_literal] = ACTIONS(2371), + [sym_rune_literal] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2371), + [anon_sym_DQUOTE] = ACTIONS(2371), + [anon_sym_c_SQUOTE] = ACTIONS(2371), + [anon_sym_c_DQUOTE] = ACTIONS(2371), + [anon_sym_r_SQUOTE] = ACTIONS(2371), + [anon_sym_r_DQUOTE] = ACTIONS(2371), + [sym_pseudo_compile_time_identifier] = ACTIONS(2371), + [anon_sym_shared] = ACTIONS(2371), + [anon_sym_map_LBRACK] = ACTIONS(2371), + [anon_sym_chan] = ACTIONS(2371), + [anon_sym_thread] = ACTIONS(2371), + [anon_sym_atomic] = ACTIONS(2371), + [anon_sym_assert] = ACTIONS(2371), + [anon_sym_defer] = ACTIONS(2371), + [anon_sym_goto] = ACTIONS(2371), + [anon_sym_break] = ACTIONS(2371), + [anon_sym_continue] = ACTIONS(2371), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_DOLLARfor] = ACTIONS(2371), + [anon_sym_for] = ACTIONS(2371), + [anon_sym_POUND] = ACTIONS(2371), + [anon_sym_asm] = ACTIONS(2371), + [anon_sym_AT_LBRACK] = ACTIONS(2371), }, [353] = { [sym_line_comment] = STATE(353), [sym_block_comment] = STATE(353), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1228), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_short_element_list_repeat1] = STATE(353), - [sym_identifier] = ACTIONS(2275), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1399), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1398), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym__array_repeat1] = STATE(443), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [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), - [anon_sym_SQUOTE] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2358), - [anon_sym_c_SQUOTE] = ACTIONS(2361), - [anon_sym_c_DQUOTE] = ACTIONS(2364), - [anon_sym_r_SQUOTE] = ACTIONS(2367), - [anon_sym_r_DQUOTE] = ACTIONS(2370), - [sym_pseudo_compile_time_identifier] = ACTIONS(2373), - [anon_sym_shared] = ACTIONS(2376), - [anon_sym_map_LBRACK] = ACTIONS(2379), - [anon_sym_chan] = ACTIONS(2382), - [anon_sym_thread] = ACTIONS(2385), - [anon_sym_atomic] = ACTIONS(2388), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(2373), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1404), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [354] = { [sym_line_comment] = STATE(354), [sym_block_comment] = STATE(354), - [sym__expression] = STATE(2607), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3548), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_range] = STATE(4609), - [sym_identifier] = ACTIONS(2391), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_range] = STATE(4531), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT] = ACTIONS(1486), }, [355] = { [sym_line_comment] = STATE(355), [sym_block_comment] = STATE(355), - [sym__expression] = STATE(2607), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_range] = STATE(4609), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym__array_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(2375), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1281), }, [356] = { [sym_line_comment] = STATE(356), [sym_block_comment] = STATE(356), - [sym__expression] = STATE(2575), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(870), - [sym_mutable_expression] = STATE(3805), - [sym_expression_list] = STATE(4274), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3638), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_range] = STATE(4531), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2405), - [anon_sym_go] = ACTIONS(2407), - [anon_sym_spawn] = ACTIONS(2409), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2401), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(2417), - [anon_sym_lock] = ACTIONS(2419), - [anon_sym_rlock] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1486), }, [357] = { [sym_line_comment] = STATE(357), [sym_block_comment] = STATE(357), - [ts_builtin_sym_end] = ACTIONS(2421), - [sym_identifier] = ACTIONS(2423), - [anon_sym_LF] = ACTIONS(2423), - [anon_sym_CR] = ACTIONS(2423), - [anon_sym_CR_LF] = ACTIONS(2423), + [ts_builtin_sym_end] = ACTIONS(2377), + [sym_identifier] = ACTIONS(2379), + [anon_sym_LF] = ACTIONS(2379), + [anon_sym_CR] = ACTIONS(2379), + [anon_sym_CR_LF] = ACTIONS(2379), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2423), - [anon_sym_as] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_COMMA] = ACTIONS(2423), - [anon_sym_const] = ACTIONS(2423), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_EQ] = ACTIONS(2423), - [anon_sym___global] = ACTIONS(2423), - [anon_sym_type] = ACTIONS(2423), - [anon_sym_PIPE] = ACTIONS(2423), - [anon_sym_fn] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2423), - [anon_sym_DASH] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_SLASH] = ACTIONS(2423), - [anon_sym_PERCENT] = ACTIONS(2423), - [anon_sym_LT] = ACTIONS(2423), - [anon_sym_GT] = ACTIONS(2423), - [anon_sym_EQ_EQ] = ACTIONS(2423), - [anon_sym_BANG_EQ] = ACTIONS(2423), - [anon_sym_LT_EQ] = ACTIONS(2423), - [anon_sym_GT_EQ] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(2423), - [anon_sym_union] = ACTIONS(2423), - [anon_sym_pub] = ACTIONS(2423), - [anon_sym_mut] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2423), - [anon_sym_interface] = ACTIONS(2423), - [anon_sym_PLUS_PLUS] = ACTIONS(2423), - [anon_sym_DASH_DASH] = ACTIONS(2423), - [anon_sym_QMARK] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2423), - [anon_sym_spawn] = ACTIONS(2423), - [anon_sym_json_DOTdecode] = ACTIONS(2423), - [anon_sym_LBRACK2] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2423), - [anon_sym_CARET] = ACTIONS(2423), - [anon_sym_AMP] = ACTIONS(2423), - [anon_sym_LT_DASH] = ACTIONS(2423), - [anon_sym_LT_LT] = ACTIONS(2423), - [anon_sym_GT_GT] = ACTIONS(2423), - [anon_sym_GT_GT_GT] = ACTIONS(2423), - [anon_sym_AMP_CARET] = ACTIONS(2423), - [anon_sym_AMP_AMP] = ACTIONS(2423), - [anon_sym_PIPE_PIPE] = ACTIONS(2423), - [anon_sym_or] = ACTIONS(2423), - [sym_none] = ACTIONS(2423), - [sym_true] = ACTIONS(2423), - [sym_false] = ACTIONS(2423), - [sym_nil] = ACTIONS(2423), - [anon_sym_QMARK_DOT] = ACTIONS(2423), - [anon_sym_POUND_LBRACK] = ACTIONS(2423), - [anon_sym_if] = ACTIONS(2423), - [anon_sym_DOLLARif] = ACTIONS(2423), - [anon_sym_is] = ACTIONS(2423), - [anon_sym_BANGis] = ACTIONS(2423), - [anon_sym_in] = ACTIONS(2423), - [anon_sym_BANGin] = ACTIONS(2423), - [anon_sym_match] = ACTIONS(2423), - [anon_sym_select] = ACTIONS(2423), - [anon_sym_STAR_EQ] = ACTIONS(2423), - [anon_sym_SLASH_EQ] = ACTIONS(2423), - [anon_sym_PERCENT_EQ] = ACTIONS(2423), - [anon_sym_LT_LT_EQ] = ACTIONS(2423), - [anon_sym_GT_GT_EQ] = ACTIONS(2423), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2423), - [anon_sym_AMP_EQ] = ACTIONS(2423), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2423), - [anon_sym_PLUS_EQ] = ACTIONS(2423), - [anon_sym_DASH_EQ] = ACTIONS(2423), - [anon_sym_PIPE_EQ] = ACTIONS(2423), - [anon_sym_CARET_EQ] = ACTIONS(2423), - [anon_sym_COLON_EQ] = ACTIONS(2423), - [anon_sym_lock] = ACTIONS(2423), - [anon_sym_rlock] = ACTIONS(2423), - [anon_sym_unsafe] = ACTIONS(2423), - [anon_sym_sql] = ACTIONS(2423), - [sym_int_literal] = ACTIONS(2423), - [sym_float_literal] = ACTIONS(2423), - [sym_rune_literal] = ACTIONS(2423), - [anon_sym_SQUOTE] = ACTIONS(2423), - [anon_sym_DQUOTE] = ACTIONS(2423), - [anon_sym_c_SQUOTE] = ACTIONS(2423), - [anon_sym_c_DQUOTE] = ACTIONS(2423), - [anon_sym_r_SQUOTE] = ACTIONS(2423), - [anon_sym_r_DQUOTE] = ACTIONS(2423), - [sym_pseudo_compile_time_identifier] = ACTIONS(2423), - [anon_sym_shared] = ACTIONS(2423), - [anon_sym_map_LBRACK] = ACTIONS(2423), - [anon_sym_chan] = ACTIONS(2423), - [anon_sym_thread] = ACTIONS(2423), - [anon_sym_atomic] = ACTIONS(2423), - [anon_sym_assert] = ACTIONS(2423), - [anon_sym_defer] = ACTIONS(2423), - [anon_sym_goto] = ACTIONS(2423), - [anon_sym_break] = ACTIONS(2423), - [anon_sym_continue] = ACTIONS(2423), - [anon_sym_return] = ACTIONS(2423), - [anon_sym_DOLLARfor] = ACTIONS(2423), - [anon_sym_for] = ACTIONS(2423), - [anon_sym_POUND] = ACTIONS(2423), - [anon_sym_asm] = ACTIONS(2423), - [anon_sym_AT_LBRACK] = ACTIONS(2423), + [anon_sym_DOT] = ACTIONS(2379), + [anon_sym_as] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_COMMA] = ACTIONS(2379), + [anon_sym_const] = ACTIONS(2379), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_EQ] = ACTIONS(2379), + [anon_sym___global] = ACTIONS(2379), + [anon_sym_type] = ACTIONS(2379), + [anon_sym_fn] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_STAR] = ACTIONS(2379), + [anon_sym_SLASH] = ACTIONS(2379), + [anon_sym_PERCENT] = ACTIONS(2379), + [anon_sym_LT] = ACTIONS(2379), + [anon_sym_GT] = ACTIONS(2379), + [anon_sym_EQ_EQ] = ACTIONS(2379), + [anon_sym_BANG_EQ] = ACTIONS(2379), + [anon_sym_LT_EQ] = ACTIONS(2379), + [anon_sym_GT_EQ] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(2377), + [anon_sym_struct] = ACTIONS(2379), + [anon_sym_union] = ACTIONS(2379), + [anon_sym_pub] = ACTIONS(2379), + [anon_sym_mut] = ACTIONS(2379), + [anon_sym_enum] = ACTIONS(2379), + [anon_sym_interface] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_QMARK] = ACTIONS(2379), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_go] = ACTIONS(2379), + [anon_sym_spawn] = ACTIONS(2379), + [anon_sym_json_DOTdecode] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(2379), + [anon_sym_LBRACK2] = ACTIONS(2379), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_LT_DASH] = ACTIONS(2379), + [anon_sym_LT_LT] = ACTIONS(2379), + [anon_sym_GT_GT] = ACTIONS(2379), + [anon_sym_GT_GT_GT] = ACTIONS(2379), + [anon_sym_AMP_CARET] = ACTIONS(2379), + [anon_sym_AMP_AMP] = ACTIONS(2379), + [anon_sym_PIPE_PIPE] = ACTIONS(2379), + [anon_sym_or] = ACTIONS(2379), + [sym_none] = ACTIONS(2379), + [sym_true] = ACTIONS(2379), + [sym_false] = ACTIONS(2379), + [sym_nil] = ACTIONS(2379), + [anon_sym_QMARK_DOT] = ACTIONS(2379), + [anon_sym_POUND_LBRACK] = ACTIONS(2379), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_DOLLARif] = ACTIONS(2379), + [anon_sym_is] = ACTIONS(2379), + [anon_sym_BANGis] = ACTIONS(2379), + [anon_sym_in] = ACTIONS(2379), + [anon_sym_BANGin] = ACTIONS(2379), + [anon_sym_match] = ACTIONS(2379), + [anon_sym_select] = ACTIONS(2379), + [anon_sym_STAR_EQ] = ACTIONS(2379), + [anon_sym_SLASH_EQ] = ACTIONS(2379), + [anon_sym_PERCENT_EQ] = ACTIONS(2379), + [anon_sym_LT_LT_EQ] = ACTIONS(2379), + [anon_sym_GT_GT_EQ] = ACTIONS(2379), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2379), + [anon_sym_AMP_EQ] = ACTIONS(2379), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2379), + [anon_sym_PLUS_EQ] = ACTIONS(2379), + [anon_sym_DASH_EQ] = ACTIONS(2379), + [anon_sym_PIPE_EQ] = ACTIONS(2379), + [anon_sym_CARET_EQ] = ACTIONS(2379), + [anon_sym_COLON_EQ] = ACTIONS(2379), + [anon_sym_lock] = ACTIONS(2379), + [anon_sym_rlock] = ACTIONS(2379), + [anon_sym_unsafe] = ACTIONS(2379), + [anon_sym_sql] = ACTIONS(2379), + [sym_int_literal] = ACTIONS(2379), + [sym_float_literal] = ACTIONS(2379), + [sym_rune_literal] = ACTIONS(2379), + [anon_sym_SQUOTE] = ACTIONS(2379), + [anon_sym_DQUOTE] = ACTIONS(2379), + [anon_sym_c_SQUOTE] = ACTIONS(2379), + [anon_sym_c_DQUOTE] = ACTIONS(2379), + [anon_sym_r_SQUOTE] = ACTIONS(2379), + [anon_sym_r_DQUOTE] = ACTIONS(2379), + [sym_pseudo_compile_time_identifier] = ACTIONS(2379), + [anon_sym_shared] = ACTIONS(2379), + [anon_sym_map_LBRACK] = ACTIONS(2379), + [anon_sym_chan] = ACTIONS(2379), + [anon_sym_thread] = ACTIONS(2379), + [anon_sym_atomic] = ACTIONS(2379), + [anon_sym_assert] = ACTIONS(2379), + [anon_sym_defer] = ACTIONS(2379), + [anon_sym_goto] = ACTIONS(2379), + [anon_sym_break] = ACTIONS(2379), + [anon_sym_continue] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2379), + [anon_sym_DOLLARfor] = ACTIONS(2379), + [anon_sym_for] = ACTIONS(2379), + [anon_sym_POUND] = ACTIONS(2379), + [anon_sym_asm] = ACTIONS(2379), + [anon_sym_AT_LBRACK] = ACTIONS(2379), }, [358] = { [sym_line_comment] = STATE(358), [sym_block_comment] = STATE(358), - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [anon_sym_LF] = ACTIONS(1899), - [anon_sym_CR] = ACTIONS(1899), - [anon_sym_CR_LF] = ACTIONS(1899), + [ts_builtin_sym_end] = ACTIONS(2381), + [sym_identifier] = ACTIONS(2383), + [anon_sym_LF] = ACTIONS(2383), + [anon_sym_CR] = ACTIONS(2383), + [anon_sym_CR_LF] = ACTIONS(2383), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1899), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_EQ] = ACTIONS(1899), - [anon_sym___global] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_fn] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_union] = ACTIONS(1899), - [anon_sym_pub] = ACTIONS(1899), - [anon_sym_mut] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [anon_sym_interface] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [anon_sym_QMARK] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_go] = ACTIONS(1899), - [anon_sym_spawn] = ACTIONS(1899), - [anon_sym_json_DOTdecode] = ACTIONS(1899), - [anon_sym_LBRACK2] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_LT_DASH] = ACTIONS(1899), - [anon_sym_LT_LT] = ACTIONS(1899), - [anon_sym_GT_GT] = ACTIONS(1899), - [anon_sym_GT_GT_GT] = ACTIONS(1899), - [anon_sym_AMP_CARET] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_or] = ACTIONS(1899), - [sym_none] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_nil] = ACTIONS(1899), - [anon_sym_QMARK_DOT] = ACTIONS(1899), - [anon_sym_POUND_LBRACK] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_DOLLARif] = ACTIONS(1899), - [anon_sym_is] = ACTIONS(1899), - [anon_sym_BANGis] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_BANGin] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_select] = ACTIONS(1899), - [anon_sym_STAR_EQ] = ACTIONS(1899), - [anon_sym_SLASH_EQ] = ACTIONS(1899), - [anon_sym_PERCENT_EQ] = ACTIONS(1899), - [anon_sym_LT_LT_EQ] = ACTIONS(1899), - [anon_sym_GT_GT_EQ] = ACTIONS(1899), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1899), - [anon_sym_AMP_EQ] = ACTIONS(1899), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1899), - [anon_sym_PLUS_EQ] = ACTIONS(1899), - [anon_sym_DASH_EQ] = ACTIONS(1899), - [anon_sym_PIPE_EQ] = ACTIONS(1899), - [anon_sym_CARET_EQ] = ACTIONS(1899), - [anon_sym_COLON_EQ] = ACTIONS(1899), - [anon_sym_lock] = ACTIONS(1899), - [anon_sym_rlock] = ACTIONS(1899), - [anon_sym_unsafe] = ACTIONS(1899), - [anon_sym_sql] = ACTIONS(1899), - [sym_int_literal] = ACTIONS(1899), - [sym_float_literal] = ACTIONS(1899), - [sym_rune_literal] = ACTIONS(1899), - [anon_sym_SQUOTE] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1899), - [anon_sym_c_SQUOTE] = ACTIONS(1899), - [anon_sym_c_DQUOTE] = ACTIONS(1899), - [anon_sym_r_SQUOTE] = ACTIONS(1899), - [anon_sym_r_DQUOTE] = ACTIONS(1899), - [sym_pseudo_compile_time_identifier] = ACTIONS(1899), - [anon_sym_shared] = ACTIONS(1899), - [anon_sym_map_LBRACK] = ACTIONS(1899), - [anon_sym_chan] = ACTIONS(1899), - [anon_sym_thread] = ACTIONS(1899), - [anon_sym_atomic] = ACTIONS(1899), - [anon_sym_assert] = ACTIONS(1899), - [anon_sym_defer] = ACTIONS(1899), - [anon_sym_goto] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_DOLLARfor] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_POUND] = ACTIONS(1899), - [anon_sym_asm] = ACTIONS(1899), - [anon_sym_AT_LBRACK] = ACTIONS(1899), + [anon_sym_DOT] = ACTIONS(2383), + [anon_sym_as] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_COMMA] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym_EQ] = ACTIONS(2383), + [anon_sym___global] = ACTIONS(2383), + [anon_sym_type] = ACTIONS(2383), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_PLUS] = ACTIONS(2383), + [anon_sym_DASH] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(2383), + [anon_sym_SLASH] = ACTIONS(2383), + [anon_sym_PERCENT] = ACTIONS(2383), + [anon_sym_LT] = ACTIONS(2383), + [anon_sym_GT] = ACTIONS(2383), + [anon_sym_EQ_EQ] = ACTIONS(2383), + [anon_sym_BANG_EQ] = ACTIONS(2383), + [anon_sym_LT_EQ] = ACTIONS(2383), + [anon_sym_GT_EQ] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2381), + [anon_sym_struct] = ACTIONS(2383), + [anon_sym_union] = ACTIONS(2383), + [anon_sym_pub] = ACTIONS(2383), + [anon_sym_mut] = ACTIONS(2383), + [anon_sym_enum] = ACTIONS(2383), + [anon_sym_interface] = ACTIONS(2383), + [anon_sym_PLUS_PLUS] = ACTIONS(2383), + [anon_sym_DASH_DASH] = ACTIONS(2383), + [anon_sym_QMARK] = ACTIONS(2383), + [anon_sym_BANG] = ACTIONS(2383), + [anon_sym_go] = ACTIONS(2383), + [anon_sym_spawn] = ACTIONS(2383), + [anon_sym_json_DOTdecode] = ACTIONS(2383), + [anon_sym_PIPE] = ACTIONS(2383), + [anon_sym_LBRACK2] = ACTIONS(2383), + [anon_sym_TILDE] = ACTIONS(2383), + [anon_sym_CARET] = ACTIONS(2383), + [anon_sym_AMP] = ACTIONS(2383), + [anon_sym_LT_DASH] = ACTIONS(2383), + [anon_sym_LT_LT] = ACTIONS(2383), + [anon_sym_GT_GT] = ACTIONS(2383), + [anon_sym_GT_GT_GT] = ACTIONS(2383), + [anon_sym_AMP_CARET] = ACTIONS(2383), + [anon_sym_AMP_AMP] = ACTIONS(2383), + [anon_sym_PIPE_PIPE] = ACTIONS(2383), + [anon_sym_or] = ACTIONS(2383), + [sym_none] = ACTIONS(2383), + [sym_true] = ACTIONS(2383), + [sym_false] = ACTIONS(2383), + [sym_nil] = ACTIONS(2383), + [anon_sym_QMARK_DOT] = ACTIONS(2383), + [anon_sym_POUND_LBRACK] = ACTIONS(2383), + [anon_sym_if] = ACTIONS(2383), + [anon_sym_DOLLARif] = ACTIONS(2383), + [anon_sym_is] = ACTIONS(2383), + [anon_sym_BANGis] = ACTIONS(2383), + [anon_sym_in] = ACTIONS(2383), + [anon_sym_BANGin] = ACTIONS(2383), + [anon_sym_match] = ACTIONS(2383), + [anon_sym_select] = ACTIONS(2383), + [anon_sym_STAR_EQ] = ACTIONS(2383), + [anon_sym_SLASH_EQ] = ACTIONS(2383), + [anon_sym_PERCENT_EQ] = ACTIONS(2383), + [anon_sym_LT_LT_EQ] = ACTIONS(2383), + [anon_sym_GT_GT_EQ] = ACTIONS(2383), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2383), + [anon_sym_AMP_EQ] = ACTIONS(2383), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2383), + [anon_sym_PLUS_EQ] = ACTIONS(2383), + [anon_sym_DASH_EQ] = ACTIONS(2383), + [anon_sym_PIPE_EQ] = ACTIONS(2383), + [anon_sym_CARET_EQ] = ACTIONS(2383), + [anon_sym_COLON_EQ] = ACTIONS(2383), + [anon_sym_lock] = ACTIONS(2383), + [anon_sym_rlock] = ACTIONS(2383), + [anon_sym_unsafe] = ACTIONS(2383), + [anon_sym_sql] = ACTIONS(2383), + [sym_int_literal] = ACTIONS(2383), + [sym_float_literal] = ACTIONS(2383), + [sym_rune_literal] = ACTIONS(2383), + [anon_sym_SQUOTE] = ACTIONS(2383), + [anon_sym_DQUOTE] = ACTIONS(2383), + [anon_sym_c_SQUOTE] = ACTIONS(2383), + [anon_sym_c_DQUOTE] = ACTIONS(2383), + [anon_sym_r_SQUOTE] = ACTIONS(2383), + [anon_sym_r_DQUOTE] = ACTIONS(2383), + [sym_pseudo_compile_time_identifier] = ACTIONS(2383), + [anon_sym_shared] = ACTIONS(2383), + [anon_sym_map_LBRACK] = ACTIONS(2383), + [anon_sym_chan] = ACTIONS(2383), + [anon_sym_thread] = ACTIONS(2383), + [anon_sym_atomic] = ACTIONS(2383), + [anon_sym_assert] = ACTIONS(2383), + [anon_sym_defer] = ACTIONS(2383), + [anon_sym_goto] = ACTIONS(2383), + [anon_sym_break] = ACTIONS(2383), + [anon_sym_continue] = ACTIONS(2383), + [anon_sym_return] = ACTIONS(2383), + [anon_sym_DOLLARfor] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(2383), + [anon_sym_POUND] = ACTIONS(2383), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym_AT_LBRACK] = ACTIONS(2383), }, [359] = { [sym_line_comment] = STATE(359), [sym_block_comment] = STATE(359), - [ts_builtin_sym_end] = ACTIONS(2425), - [sym_identifier] = ACTIONS(2427), - [anon_sym_LF] = ACTIONS(2427), - [anon_sym_CR] = ACTIONS(2427), - [anon_sym_CR_LF] = ACTIONS(2427), + [ts_builtin_sym_end] = ACTIONS(2385), + [sym_identifier] = ACTIONS(2387), + [anon_sym_LF] = ACTIONS(2387), + [anon_sym_CR] = ACTIONS(2387), + [anon_sym_CR_LF] = ACTIONS(2387), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2427), - [anon_sym_as] = ACTIONS(2427), - [anon_sym_LBRACE] = ACTIONS(2427), - [anon_sym_COMMA] = ACTIONS(2427), - [anon_sym_const] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_EQ] = ACTIONS(2427), - [anon_sym___global] = ACTIONS(2427), - [anon_sym_type] = ACTIONS(2427), - [anon_sym_PIPE] = ACTIONS(2427), - [anon_sym_fn] = ACTIONS(2427), - [anon_sym_PLUS] = ACTIONS(2427), - [anon_sym_DASH] = ACTIONS(2427), - [anon_sym_STAR] = ACTIONS(2427), - [anon_sym_SLASH] = ACTIONS(2427), - [anon_sym_PERCENT] = ACTIONS(2427), - [anon_sym_LT] = ACTIONS(2427), - [anon_sym_GT] = ACTIONS(2427), - [anon_sym_EQ_EQ] = ACTIONS(2427), - [anon_sym_BANG_EQ] = ACTIONS(2427), - [anon_sym_LT_EQ] = ACTIONS(2427), - [anon_sym_GT_EQ] = ACTIONS(2427), - [anon_sym_LBRACK] = ACTIONS(2425), - [anon_sym_struct] = ACTIONS(2427), - [anon_sym_union] = ACTIONS(2427), - [anon_sym_pub] = ACTIONS(2427), - [anon_sym_mut] = ACTIONS(2427), - [anon_sym_enum] = ACTIONS(2427), - [anon_sym_interface] = ACTIONS(2427), - [anon_sym_PLUS_PLUS] = ACTIONS(2427), - [anon_sym_DASH_DASH] = ACTIONS(2427), - [anon_sym_QMARK] = ACTIONS(2427), - [anon_sym_BANG] = ACTIONS(2427), - [anon_sym_go] = ACTIONS(2427), - [anon_sym_spawn] = ACTIONS(2427), - [anon_sym_json_DOTdecode] = ACTIONS(2427), - [anon_sym_LBRACK2] = ACTIONS(2427), - [anon_sym_TILDE] = ACTIONS(2427), - [anon_sym_CARET] = ACTIONS(2427), - [anon_sym_AMP] = ACTIONS(2427), - [anon_sym_LT_DASH] = ACTIONS(2427), - [anon_sym_LT_LT] = ACTIONS(2427), - [anon_sym_GT_GT] = ACTIONS(2427), - [anon_sym_GT_GT_GT] = ACTIONS(2427), - [anon_sym_AMP_CARET] = ACTIONS(2427), - [anon_sym_AMP_AMP] = ACTIONS(2427), - [anon_sym_PIPE_PIPE] = ACTIONS(2427), - [anon_sym_or] = ACTIONS(2427), - [sym_none] = ACTIONS(2427), - [sym_true] = ACTIONS(2427), - [sym_false] = ACTIONS(2427), - [sym_nil] = ACTIONS(2427), - [anon_sym_QMARK_DOT] = ACTIONS(2427), - [anon_sym_POUND_LBRACK] = ACTIONS(2427), - [anon_sym_if] = ACTIONS(2427), - [anon_sym_DOLLARif] = ACTIONS(2427), - [anon_sym_is] = ACTIONS(2427), - [anon_sym_BANGis] = ACTIONS(2427), - [anon_sym_in] = ACTIONS(2427), - [anon_sym_BANGin] = ACTIONS(2427), - [anon_sym_match] = ACTIONS(2427), - [anon_sym_select] = ACTIONS(2427), - [anon_sym_STAR_EQ] = ACTIONS(2427), - [anon_sym_SLASH_EQ] = ACTIONS(2427), - [anon_sym_PERCENT_EQ] = ACTIONS(2427), - [anon_sym_LT_LT_EQ] = ACTIONS(2427), - [anon_sym_GT_GT_EQ] = ACTIONS(2427), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2427), - [anon_sym_AMP_EQ] = ACTIONS(2427), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2427), - [anon_sym_PLUS_EQ] = ACTIONS(2427), - [anon_sym_DASH_EQ] = ACTIONS(2427), - [anon_sym_PIPE_EQ] = ACTIONS(2427), - [anon_sym_CARET_EQ] = ACTIONS(2427), - [anon_sym_COLON_EQ] = ACTIONS(2427), - [anon_sym_lock] = ACTIONS(2427), - [anon_sym_rlock] = ACTIONS(2427), - [anon_sym_unsafe] = ACTIONS(2427), - [anon_sym_sql] = ACTIONS(2427), - [sym_int_literal] = ACTIONS(2427), - [sym_float_literal] = ACTIONS(2427), - [sym_rune_literal] = ACTIONS(2427), - [anon_sym_SQUOTE] = ACTIONS(2427), - [anon_sym_DQUOTE] = ACTIONS(2427), - [anon_sym_c_SQUOTE] = ACTIONS(2427), - [anon_sym_c_DQUOTE] = ACTIONS(2427), - [anon_sym_r_SQUOTE] = ACTIONS(2427), - [anon_sym_r_DQUOTE] = ACTIONS(2427), - [sym_pseudo_compile_time_identifier] = ACTIONS(2427), - [anon_sym_shared] = ACTIONS(2427), - [anon_sym_map_LBRACK] = ACTIONS(2427), - [anon_sym_chan] = ACTIONS(2427), - [anon_sym_thread] = ACTIONS(2427), - [anon_sym_atomic] = ACTIONS(2427), - [anon_sym_assert] = ACTIONS(2427), - [anon_sym_defer] = ACTIONS(2427), - [anon_sym_goto] = ACTIONS(2427), - [anon_sym_break] = ACTIONS(2427), - [anon_sym_continue] = ACTIONS(2427), - [anon_sym_return] = ACTIONS(2427), - [anon_sym_DOLLARfor] = ACTIONS(2427), - [anon_sym_for] = ACTIONS(2427), - [anon_sym_POUND] = ACTIONS(2427), - [anon_sym_asm] = ACTIONS(2427), - [anon_sym_AT_LBRACK] = ACTIONS(2427), + [anon_sym_DOT] = ACTIONS(2387), + [anon_sym_as] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2387), + [anon_sym_COMMA] = ACTIONS(2387), + [anon_sym_const] = ACTIONS(2387), + [anon_sym_LPAREN] = ACTIONS(2387), + [anon_sym_EQ] = ACTIONS(2387), + [anon_sym___global] = ACTIONS(2387), + [anon_sym_type] = ACTIONS(2387), + [anon_sym_fn] = ACTIONS(2387), + [anon_sym_PLUS] = ACTIONS(2387), + [anon_sym_DASH] = ACTIONS(2387), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_SLASH] = ACTIONS(2387), + [anon_sym_PERCENT] = ACTIONS(2387), + [anon_sym_LT] = ACTIONS(2387), + [anon_sym_GT] = ACTIONS(2387), + [anon_sym_EQ_EQ] = ACTIONS(2387), + [anon_sym_BANG_EQ] = ACTIONS(2387), + [anon_sym_LT_EQ] = ACTIONS(2387), + [anon_sym_GT_EQ] = ACTIONS(2387), + [anon_sym_LBRACK] = ACTIONS(2385), + [anon_sym_struct] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_pub] = ACTIONS(2387), + [anon_sym_mut] = ACTIONS(2387), + [anon_sym_enum] = ACTIONS(2387), + [anon_sym_interface] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2387), + [anon_sym_DASH_DASH] = ACTIONS(2387), + [anon_sym_QMARK] = ACTIONS(2387), + [anon_sym_BANG] = ACTIONS(2387), + [anon_sym_go] = ACTIONS(2387), + [anon_sym_spawn] = ACTIONS(2387), + [anon_sym_json_DOTdecode] = ACTIONS(2387), + [anon_sym_PIPE] = ACTIONS(2387), + [anon_sym_LBRACK2] = ACTIONS(2387), + [anon_sym_TILDE] = ACTIONS(2387), + [anon_sym_CARET] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2387), + [anon_sym_LT_DASH] = ACTIONS(2387), + [anon_sym_LT_LT] = ACTIONS(2387), + [anon_sym_GT_GT] = ACTIONS(2387), + [anon_sym_GT_GT_GT] = ACTIONS(2387), + [anon_sym_AMP_CARET] = ACTIONS(2387), + [anon_sym_AMP_AMP] = ACTIONS(2387), + [anon_sym_PIPE_PIPE] = ACTIONS(2387), + [anon_sym_or] = ACTIONS(2387), + [sym_none] = ACTIONS(2387), + [sym_true] = ACTIONS(2387), + [sym_false] = ACTIONS(2387), + [sym_nil] = ACTIONS(2387), + [anon_sym_QMARK_DOT] = ACTIONS(2387), + [anon_sym_POUND_LBRACK] = ACTIONS(2387), + [anon_sym_if] = ACTIONS(2387), + [anon_sym_DOLLARif] = ACTIONS(2387), + [anon_sym_is] = ACTIONS(2387), + [anon_sym_BANGis] = ACTIONS(2387), + [anon_sym_in] = ACTIONS(2387), + [anon_sym_BANGin] = ACTIONS(2387), + [anon_sym_match] = ACTIONS(2387), + [anon_sym_select] = ACTIONS(2387), + [anon_sym_STAR_EQ] = ACTIONS(2387), + [anon_sym_SLASH_EQ] = ACTIONS(2387), + [anon_sym_PERCENT_EQ] = ACTIONS(2387), + [anon_sym_LT_LT_EQ] = ACTIONS(2387), + [anon_sym_GT_GT_EQ] = ACTIONS(2387), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2387), + [anon_sym_AMP_EQ] = ACTIONS(2387), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2387), + [anon_sym_PLUS_EQ] = ACTIONS(2387), + [anon_sym_DASH_EQ] = ACTIONS(2387), + [anon_sym_PIPE_EQ] = ACTIONS(2387), + [anon_sym_CARET_EQ] = ACTIONS(2387), + [anon_sym_COLON_EQ] = ACTIONS(2387), + [anon_sym_lock] = ACTIONS(2387), + [anon_sym_rlock] = ACTIONS(2387), + [anon_sym_unsafe] = ACTIONS(2387), + [anon_sym_sql] = ACTIONS(2387), + [sym_int_literal] = ACTIONS(2387), + [sym_float_literal] = ACTIONS(2387), + [sym_rune_literal] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [anon_sym_DQUOTE] = ACTIONS(2387), + [anon_sym_c_SQUOTE] = ACTIONS(2387), + [anon_sym_c_DQUOTE] = ACTIONS(2387), + [anon_sym_r_SQUOTE] = ACTIONS(2387), + [anon_sym_r_DQUOTE] = ACTIONS(2387), + [sym_pseudo_compile_time_identifier] = ACTIONS(2387), + [anon_sym_shared] = ACTIONS(2387), + [anon_sym_map_LBRACK] = ACTIONS(2387), + [anon_sym_chan] = ACTIONS(2387), + [anon_sym_thread] = ACTIONS(2387), + [anon_sym_atomic] = ACTIONS(2387), + [anon_sym_assert] = ACTIONS(2387), + [anon_sym_defer] = ACTIONS(2387), + [anon_sym_goto] = ACTIONS(2387), + [anon_sym_break] = ACTIONS(2387), + [anon_sym_continue] = ACTIONS(2387), + [anon_sym_return] = ACTIONS(2387), + [anon_sym_DOLLARfor] = ACTIONS(2387), + [anon_sym_for] = ACTIONS(2387), + [anon_sym_POUND] = ACTIONS(2387), + [anon_sym_asm] = ACTIONS(2387), + [anon_sym_AT_LBRACK] = ACTIONS(2387), }, [360] = { [sym_line_comment] = STATE(360), [sym_block_comment] = STATE(360), - [ts_builtin_sym_end] = ACTIONS(2429), - [sym_identifier] = ACTIONS(2431), - [anon_sym_LF] = ACTIONS(2431), - [anon_sym_CR] = ACTIONS(2431), - [anon_sym_CR_LF] = ACTIONS(2431), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2431), - [anon_sym_as] = ACTIONS(2431), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_COMMA] = ACTIONS(2431), - [anon_sym_const] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_EQ] = ACTIONS(2431), - [anon_sym___global] = ACTIONS(2431), - [anon_sym_type] = ACTIONS(2431), - [anon_sym_PIPE] = ACTIONS(2431), - [anon_sym_fn] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2431), - [anon_sym_DASH] = ACTIONS(2431), - [anon_sym_STAR] = ACTIONS(2431), - [anon_sym_SLASH] = ACTIONS(2431), - [anon_sym_PERCENT] = ACTIONS(2431), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_GT] = ACTIONS(2431), - [anon_sym_EQ_EQ] = ACTIONS(2431), - [anon_sym_BANG_EQ] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(2431), - [anon_sym_GT_EQ] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2429), - [anon_sym_struct] = ACTIONS(2431), - [anon_sym_union] = ACTIONS(2431), - [anon_sym_pub] = ACTIONS(2431), - [anon_sym_mut] = ACTIONS(2431), - [anon_sym_enum] = ACTIONS(2431), - [anon_sym_interface] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_QMARK] = ACTIONS(2431), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_go] = ACTIONS(2431), - [anon_sym_spawn] = ACTIONS(2431), - [anon_sym_json_DOTdecode] = ACTIONS(2431), - [anon_sym_LBRACK2] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_LT_DASH] = ACTIONS(2431), - [anon_sym_LT_LT] = ACTIONS(2431), - [anon_sym_GT_GT] = ACTIONS(2431), - [anon_sym_GT_GT_GT] = ACTIONS(2431), - [anon_sym_AMP_CARET] = ACTIONS(2431), - [anon_sym_AMP_AMP] = ACTIONS(2431), - [anon_sym_PIPE_PIPE] = ACTIONS(2431), - [anon_sym_or] = ACTIONS(2431), - [sym_none] = ACTIONS(2431), - [sym_true] = ACTIONS(2431), - [sym_false] = ACTIONS(2431), - [sym_nil] = ACTIONS(2431), - [anon_sym_QMARK_DOT] = ACTIONS(2431), - [anon_sym_POUND_LBRACK] = ACTIONS(2431), - [anon_sym_if] = ACTIONS(2431), - [anon_sym_DOLLARif] = ACTIONS(2431), - [anon_sym_is] = ACTIONS(2431), - [anon_sym_BANGis] = ACTIONS(2431), - [anon_sym_in] = ACTIONS(2431), - [anon_sym_BANGin] = ACTIONS(2431), - [anon_sym_match] = ACTIONS(2431), - [anon_sym_select] = ACTIONS(2431), - [anon_sym_STAR_EQ] = ACTIONS(2431), - [anon_sym_SLASH_EQ] = ACTIONS(2431), - [anon_sym_PERCENT_EQ] = ACTIONS(2431), - [anon_sym_LT_LT_EQ] = ACTIONS(2431), - [anon_sym_GT_GT_EQ] = ACTIONS(2431), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2431), - [anon_sym_AMP_EQ] = ACTIONS(2431), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2431), - [anon_sym_PLUS_EQ] = ACTIONS(2431), - [anon_sym_DASH_EQ] = ACTIONS(2431), - [anon_sym_PIPE_EQ] = ACTIONS(2431), - [anon_sym_CARET_EQ] = ACTIONS(2431), - [anon_sym_COLON_EQ] = ACTIONS(2431), - [anon_sym_lock] = ACTIONS(2431), - [anon_sym_rlock] = ACTIONS(2431), - [anon_sym_unsafe] = ACTIONS(2431), - [anon_sym_sql] = ACTIONS(2431), - [sym_int_literal] = ACTIONS(2431), - [sym_float_literal] = ACTIONS(2431), - [sym_rune_literal] = ACTIONS(2431), - [anon_sym_SQUOTE] = ACTIONS(2431), - [anon_sym_DQUOTE] = ACTIONS(2431), - [anon_sym_c_SQUOTE] = ACTIONS(2431), - [anon_sym_c_DQUOTE] = ACTIONS(2431), - [anon_sym_r_SQUOTE] = ACTIONS(2431), - [anon_sym_r_DQUOTE] = ACTIONS(2431), - [sym_pseudo_compile_time_identifier] = ACTIONS(2431), - [anon_sym_shared] = ACTIONS(2431), - [anon_sym_map_LBRACK] = ACTIONS(2431), - [anon_sym_chan] = ACTIONS(2431), - [anon_sym_thread] = ACTIONS(2431), - [anon_sym_atomic] = ACTIONS(2431), - [anon_sym_assert] = ACTIONS(2431), - [anon_sym_defer] = ACTIONS(2431), - [anon_sym_goto] = ACTIONS(2431), - [anon_sym_break] = ACTIONS(2431), - [anon_sym_continue] = ACTIONS(2431), - [anon_sym_return] = ACTIONS(2431), - [anon_sym_DOLLARfor] = ACTIONS(2431), - [anon_sym_for] = ACTIONS(2431), - [anon_sym_POUND] = ACTIONS(2431), - [anon_sym_asm] = ACTIONS(2431), - [anon_sym_AT_LBRACK] = ACTIONS(2431), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym__array_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1356), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(2389), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [361] = { [sym_line_comment] = STATE(361), [sym_block_comment] = STATE(361), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1398), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1396), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym__array_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4464), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(2433), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(2391), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1347), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -64789,345 +65084,345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [362] = { [sym_line_comment] = STATE(362), [sym_block_comment] = STATE(362), - [ts_builtin_sym_end] = ACTIONS(2157), - [sym_identifier] = ACTIONS(2159), - [anon_sym_LF] = ACTIONS(2159), - [anon_sym_CR] = ACTIONS(2159), - [anon_sym_CR_LF] = ACTIONS(2159), + [ts_builtin_sym_end] = ACTIONS(2393), + [sym_identifier] = ACTIONS(2395), + [anon_sym_LF] = ACTIONS(2395), + [anon_sym_CR] = ACTIONS(2395), + [anon_sym_CR_LF] = ACTIONS(2395), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_EQ] = ACTIONS(2159), - [anon_sym___global] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_PIPE] = ACTIONS(2159), - [anon_sym_fn] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_PERCENT] = ACTIONS(2159), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_GT] = ACTIONS(2159), - [anon_sym_EQ_EQ] = ACTIONS(2159), - [anon_sym_BANG_EQ] = ACTIONS(2159), - [anon_sym_LT_EQ] = ACTIONS(2159), - [anon_sym_GT_EQ] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2159), - [anon_sym_union] = ACTIONS(2159), - [anon_sym_pub] = ACTIONS(2159), - [anon_sym_mut] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [anon_sym_interface] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [anon_sym_QMARK] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(2159), - [anon_sym_spawn] = ACTIONS(2159), - [anon_sym_json_DOTdecode] = ACTIONS(2159), - [anon_sym_LBRACK2] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2159), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2159), - [anon_sym_LT_LT] = ACTIONS(2159), - [anon_sym_GT_GT] = ACTIONS(2159), - [anon_sym_GT_GT_GT] = ACTIONS(2159), - [anon_sym_AMP_CARET] = ACTIONS(2159), - [anon_sym_AMP_AMP] = ACTIONS(2159), - [anon_sym_PIPE_PIPE] = ACTIONS(2159), - [anon_sym_or] = ACTIONS(2159), - [sym_none] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_nil] = ACTIONS(2159), - [anon_sym_QMARK_DOT] = ACTIONS(2159), - [anon_sym_POUND_LBRACK] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_DOLLARif] = ACTIONS(2159), - [anon_sym_is] = ACTIONS(2159), - [anon_sym_BANGis] = ACTIONS(2159), - [anon_sym_in] = ACTIONS(2159), - [anon_sym_BANGin] = ACTIONS(2159), - [anon_sym_match] = ACTIONS(2159), - [anon_sym_select] = ACTIONS(2159), - [anon_sym_STAR_EQ] = ACTIONS(2159), - [anon_sym_SLASH_EQ] = ACTIONS(2159), - [anon_sym_PERCENT_EQ] = ACTIONS(2159), - [anon_sym_LT_LT_EQ] = ACTIONS(2159), - [anon_sym_GT_GT_EQ] = ACTIONS(2159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2159), - [anon_sym_AMP_EQ] = ACTIONS(2159), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2159), - [anon_sym_PLUS_EQ] = ACTIONS(2159), - [anon_sym_DASH_EQ] = ACTIONS(2159), - [anon_sym_PIPE_EQ] = ACTIONS(2159), - [anon_sym_CARET_EQ] = ACTIONS(2159), - [anon_sym_COLON_EQ] = ACTIONS(2159), - [anon_sym_lock] = ACTIONS(2159), - [anon_sym_rlock] = ACTIONS(2159), - [anon_sym_unsafe] = ACTIONS(2159), - [anon_sym_sql] = ACTIONS(2159), - [sym_int_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), - [sym_rune_literal] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_c_SQUOTE] = ACTIONS(2159), - [anon_sym_c_DQUOTE] = ACTIONS(2159), - [anon_sym_r_SQUOTE] = ACTIONS(2159), - [anon_sym_r_DQUOTE] = ACTIONS(2159), - [sym_pseudo_compile_time_identifier] = ACTIONS(2159), - [anon_sym_shared] = ACTIONS(2159), - [anon_sym_map_LBRACK] = ACTIONS(2159), - [anon_sym_chan] = ACTIONS(2159), - [anon_sym_thread] = ACTIONS(2159), - [anon_sym_atomic] = ACTIONS(2159), - [anon_sym_assert] = ACTIONS(2159), - [anon_sym_defer] = ACTIONS(2159), - [anon_sym_goto] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_DOLLARfor] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_POUND] = ACTIONS(2159), - [anon_sym_asm] = ACTIONS(2159), - [anon_sym_AT_LBRACK] = ACTIONS(2159), + [anon_sym_DOT] = ACTIONS(2395), + [anon_sym_as] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_COMMA] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_EQ] = ACTIONS(2395), + [anon_sym___global] = ACTIONS(2395), + [anon_sym_type] = ACTIONS(2395), + [anon_sym_fn] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_SLASH] = ACTIONS(2395), + [anon_sym_PERCENT] = ACTIONS(2395), + [anon_sym_LT] = ACTIONS(2395), + [anon_sym_GT] = ACTIONS(2395), + [anon_sym_EQ_EQ] = ACTIONS(2395), + [anon_sym_BANG_EQ] = ACTIONS(2395), + [anon_sym_LT_EQ] = ACTIONS(2395), + [anon_sym_GT_EQ] = ACTIONS(2395), + [anon_sym_LBRACK] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_pub] = ACTIONS(2395), + [anon_sym_mut] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_interface] = ACTIONS(2395), + [anon_sym_PLUS_PLUS] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2395), + [anon_sym_QMARK] = ACTIONS(2395), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_go] = ACTIONS(2395), + [anon_sym_spawn] = ACTIONS(2395), + [anon_sym_json_DOTdecode] = ACTIONS(2395), + [anon_sym_PIPE] = ACTIONS(2395), + [anon_sym_LBRACK2] = ACTIONS(2395), + [anon_sym_TILDE] = ACTIONS(2395), + [anon_sym_CARET] = ACTIONS(2395), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_LT_DASH] = ACTIONS(2395), + [anon_sym_LT_LT] = ACTIONS(2395), + [anon_sym_GT_GT] = ACTIONS(2395), + [anon_sym_GT_GT_GT] = ACTIONS(2395), + [anon_sym_AMP_CARET] = ACTIONS(2395), + [anon_sym_AMP_AMP] = ACTIONS(2395), + [anon_sym_PIPE_PIPE] = ACTIONS(2395), + [anon_sym_or] = ACTIONS(2395), + [sym_none] = ACTIONS(2395), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_nil] = ACTIONS(2395), + [anon_sym_QMARK_DOT] = ACTIONS(2395), + [anon_sym_POUND_LBRACK] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_DOLLARif] = ACTIONS(2395), + [anon_sym_is] = ACTIONS(2395), + [anon_sym_BANGis] = ACTIONS(2395), + [anon_sym_in] = ACTIONS(2395), + [anon_sym_BANGin] = ACTIONS(2395), + [anon_sym_match] = ACTIONS(2395), + [anon_sym_select] = ACTIONS(2395), + [anon_sym_STAR_EQ] = ACTIONS(2395), + [anon_sym_SLASH_EQ] = ACTIONS(2395), + [anon_sym_PERCENT_EQ] = ACTIONS(2395), + [anon_sym_LT_LT_EQ] = ACTIONS(2395), + [anon_sym_GT_GT_EQ] = ACTIONS(2395), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2395), + [anon_sym_AMP_EQ] = ACTIONS(2395), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2395), + [anon_sym_PLUS_EQ] = ACTIONS(2395), + [anon_sym_DASH_EQ] = ACTIONS(2395), + [anon_sym_PIPE_EQ] = ACTIONS(2395), + [anon_sym_CARET_EQ] = ACTIONS(2395), + [anon_sym_COLON_EQ] = ACTIONS(2395), + [anon_sym_lock] = ACTIONS(2395), + [anon_sym_rlock] = ACTIONS(2395), + [anon_sym_unsafe] = ACTIONS(2395), + [anon_sym_sql] = ACTIONS(2395), + [sym_int_literal] = ACTIONS(2395), + [sym_float_literal] = ACTIONS(2395), + [sym_rune_literal] = ACTIONS(2395), + [anon_sym_SQUOTE] = ACTIONS(2395), + [anon_sym_DQUOTE] = ACTIONS(2395), + [anon_sym_c_SQUOTE] = ACTIONS(2395), + [anon_sym_c_DQUOTE] = ACTIONS(2395), + [anon_sym_r_SQUOTE] = ACTIONS(2395), + [anon_sym_r_DQUOTE] = ACTIONS(2395), + [sym_pseudo_compile_time_identifier] = ACTIONS(2395), + [anon_sym_shared] = ACTIONS(2395), + [anon_sym_map_LBRACK] = ACTIONS(2395), + [anon_sym_chan] = ACTIONS(2395), + [anon_sym_thread] = ACTIONS(2395), + [anon_sym_atomic] = ACTIONS(2395), + [anon_sym_assert] = ACTIONS(2395), + [anon_sym_defer] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_DOLLARfor] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_POUND] = ACTIONS(2395), + [anon_sym_asm] = ACTIONS(2395), + [anon_sym_AT_LBRACK] = ACTIONS(2395), }, [363] = { [sym_line_comment] = STATE(363), [sym_block_comment] = STATE(363), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4276), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(2093), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LF] = ACTIONS(2095), + [anon_sym_CR] = ACTIONS(2095), + [anon_sym_CR_LF] = ACTIONS(2095), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_COMMA] = ACTIONS(2095), + [anon_sym_const] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_EQ] = ACTIONS(2095), + [anon_sym___global] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2095), + [anon_sym_fn] = ACTIONS(2095), + [anon_sym_PLUS] = ACTIONS(2095), + [anon_sym_DASH] = ACTIONS(2095), + [anon_sym_STAR] = ACTIONS(2095), + [anon_sym_SLASH] = ACTIONS(2095), + [anon_sym_PERCENT] = ACTIONS(2095), + [anon_sym_LT] = ACTIONS(2095), + [anon_sym_GT] = ACTIONS(2095), + [anon_sym_EQ_EQ] = ACTIONS(2095), + [anon_sym_BANG_EQ] = ACTIONS(2095), + [anon_sym_LT_EQ] = ACTIONS(2095), + [anon_sym_GT_EQ] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2095), + [anon_sym_union] = ACTIONS(2095), + [anon_sym_pub] = ACTIONS(2095), + [anon_sym_mut] = ACTIONS(2095), + [anon_sym_enum] = ACTIONS(2095), + [anon_sym_interface] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_QMARK] = ACTIONS(2095), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_go] = ACTIONS(2095), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(2095), + [anon_sym_PIPE] = ACTIONS(2095), + [anon_sym_LBRACK2] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_LT_DASH] = ACTIONS(2095), + [anon_sym_LT_LT] = ACTIONS(2095), + [anon_sym_GT_GT] = ACTIONS(2095), + [anon_sym_GT_GT_GT] = ACTIONS(2095), + [anon_sym_AMP_CARET] = ACTIONS(2095), + [anon_sym_AMP_AMP] = ACTIONS(2095), + [anon_sym_PIPE_PIPE] = ACTIONS(2095), + [anon_sym_or] = ACTIONS(2095), + [sym_none] = ACTIONS(2095), + [sym_true] = ACTIONS(2095), + [sym_false] = ACTIONS(2095), + [sym_nil] = ACTIONS(2095), + [anon_sym_QMARK_DOT] = ACTIONS(2095), + [anon_sym_POUND_LBRACK] = ACTIONS(2095), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_DOLLARif] = ACTIONS(2095), + [anon_sym_is] = ACTIONS(2095), + [anon_sym_BANGis] = ACTIONS(2095), + [anon_sym_in] = ACTIONS(2095), + [anon_sym_BANGin] = ACTIONS(2095), + [anon_sym_match] = ACTIONS(2095), + [anon_sym_select] = ACTIONS(2095), + [anon_sym_STAR_EQ] = ACTIONS(2095), + [anon_sym_SLASH_EQ] = ACTIONS(2095), + [anon_sym_PERCENT_EQ] = ACTIONS(2095), + [anon_sym_LT_LT_EQ] = ACTIONS(2095), + [anon_sym_GT_GT_EQ] = ACTIONS(2095), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2095), + [anon_sym_AMP_EQ] = ACTIONS(2095), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2095), + [anon_sym_PLUS_EQ] = ACTIONS(2095), + [anon_sym_DASH_EQ] = ACTIONS(2095), + [anon_sym_PIPE_EQ] = ACTIONS(2095), + [anon_sym_CARET_EQ] = ACTIONS(2095), + [anon_sym_COLON_EQ] = ACTIONS(2095), + [anon_sym_lock] = ACTIONS(2095), + [anon_sym_rlock] = ACTIONS(2095), + [anon_sym_unsafe] = ACTIONS(2095), + [anon_sym_sql] = ACTIONS(2095), + [sym_int_literal] = ACTIONS(2095), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [anon_sym_SQUOTE] = ACTIONS(2095), + [anon_sym_DQUOTE] = ACTIONS(2095), + [anon_sym_c_SQUOTE] = ACTIONS(2095), + [anon_sym_c_DQUOTE] = ACTIONS(2095), + [anon_sym_r_SQUOTE] = ACTIONS(2095), + [anon_sym_r_DQUOTE] = ACTIONS(2095), + [sym_pseudo_compile_time_identifier] = ACTIONS(2095), + [anon_sym_shared] = ACTIONS(2095), + [anon_sym_map_LBRACK] = ACTIONS(2095), + [anon_sym_chan] = ACTIONS(2095), + [anon_sym_thread] = ACTIONS(2095), + [anon_sym_atomic] = ACTIONS(2095), + [anon_sym_assert] = ACTIONS(2095), + [anon_sym_defer] = ACTIONS(2095), + [anon_sym_goto] = ACTIONS(2095), + [anon_sym_break] = ACTIONS(2095), + [anon_sym_continue] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2095), + [anon_sym_DOLLARfor] = ACTIONS(2095), + [anon_sym_for] = ACTIONS(2095), + [anon_sym_POUND] = ACTIONS(2095), + [anon_sym_asm] = ACTIONS(2095), + [anon_sym_AT_LBRACK] = ACTIONS(2095), }, [364] = { [sym_line_comment] = STATE(364), [sym_block_comment] = STATE(364), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4383), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4461), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -65137,1002 +65432,1002 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [365] = { [sym_line_comment] = STATE(365), [sym_block_comment] = STATE(365), - [ts_builtin_sym_end] = ACTIONS(2437), - [sym_identifier] = ACTIONS(2439), - [anon_sym_LF] = ACTIONS(2439), - [anon_sym_CR] = ACTIONS(2439), - [anon_sym_CR_LF] = ACTIONS(2439), + [ts_builtin_sym_end] = ACTIONS(2399), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LF] = ACTIONS(2401), + [anon_sym_CR] = ACTIONS(2401), + [anon_sym_CR_LF] = ACTIONS(2401), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2439), - [anon_sym_as] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_COMMA] = ACTIONS(2439), - [anon_sym_const] = ACTIONS(2439), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym___global] = ACTIONS(2439), - [anon_sym_type] = ACTIONS(2439), - [anon_sym_PIPE] = ACTIONS(2439), - [anon_sym_fn] = ACTIONS(2439), - [anon_sym_PLUS] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2439), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_SLASH] = ACTIONS(2439), - [anon_sym_PERCENT] = ACTIONS(2439), - [anon_sym_LT] = ACTIONS(2439), - [anon_sym_GT] = ACTIONS(2439), - [anon_sym_EQ_EQ] = ACTIONS(2439), - [anon_sym_BANG_EQ] = ACTIONS(2439), - [anon_sym_LT_EQ] = ACTIONS(2439), - [anon_sym_GT_EQ] = ACTIONS(2439), - [anon_sym_LBRACK] = ACTIONS(2437), - [anon_sym_struct] = ACTIONS(2439), - [anon_sym_union] = ACTIONS(2439), - [anon_sym_pub] = ACTIONS(2439), - [anon_sym_mut] = ACTIONS(2439), - [anon_sym_enum] = ACTIONS(2439), - [anon_sym_interface] = ACTIONS(2439), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [anon_sym_QMARK] = ACTIONS(2439), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_go] = ACTIONS(2439), - [anon_sym_spawn] = ACTIONS(2439), - [anon_sym_json_DOTdecode] = ACTIONS(2439), - [anon_sym_LBRACK2] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2439), - [anon_sym_CARET] = ACTIONS(2439), - [anon_sym_AMP] = ACTIONS(2439), - [anon_sym_LT_DASH] = ACTIONS(2439), - [anon_sym_LT_LT] = ACTIONS(2439), - [anon_sym_GT_GT] = ACTIONS(2439), - [anon_sym_GT_GT_GT] = ACTIONS(2439), - [anon_sym_AMP_CARET] = ACTIONS(2439), - [anon_sym_AMP_AMP] = ACTIONS(2439), - [anon_sym_PIPE_PIPE] = ACTIONS(2439), - [anon_sym_or] = ACTIONS(2439), - [sym_none] = ACTIONS(2439), - [sym_true] = ACTIONS(2439), - [sym_false] = ACTIONS(2439), - [sym_nil] = ACTIONS(2439), - [anon_sym_QMARK_DOT] = ACTIONS(2439), - [anon_sym_POUND_LBRACK] = ACTIONS(2439), - [anon_sym_if] = ACTIONS(2439), - [anon_sym_DOLLARif] = ACTIONS(2439), - [anon_sym_is] = ACTIONS(2439), - [anon_sym_BANGis] = ACTIONS(2439), - [anon_sym_in] = ACTIONS(2439), - [anon_sym_BANGin] = ACTIONS(2439), - [anon_sym_match] = ACTIONS(2439), - [anon_sym_select] = ACTIONS(2439), - [anon_sym_STAR_EQ] = ACTIONS(2439), - [anon_sym_SLASH_EQ] = ACTIONS(2439), - [anon_sym_PERCENT_EQ] = ACTIONS(2439), - [anon_sym_LT_LT_EQ] = ACTIONS(2439), - [anon_sym_GT_GT_EQ] = ACTIONS(2439), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2439), - [anon_sym_AMP_EQ] = ACTIONS(2439), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2439), - [anon_sym_PLUS_EQ] = ACTIONS(2439), - [anon_sym_DASH_EQ] = ACTIONS(2439), - [anon_sym_PIPE_EQ] = ACTIONS(2439), - [anon_sym_CARET_EQ] = ACTIONS(2439), - [anon_sym_COLON_EQ] = ACTIONS(2439), - [anon_sym_lock] = ACTIONS(2439), - [anon_sym_rlock] = ACTIONS(2439), - [anon_sym_unsafe] = ACTIONS(2439), - [anon_sym_sql] = ACTIONS(2439), - [sym_int_literal] = ACTIONS(2439), - [sym_float_literal] = ACTIONS(2439), - [sym_rune_literal] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_DQUOTE] = ACTIONS(2439), - [anon_sym_c_SQUOTE] = ACTIONS(2439), - [anon_sym_c_DQUOTE] = ACTIONS(2439), - [anon_sym_r_SQUOTE] = ACTIONS(2439), - [anon_sym_r_DQUOTE] = ACTIONS(2439), - [sym_pseudo_compile_time_identifier] = ACTIONS(2439), - [anon_sym_shared] = ACTIONS(2439), - [anon_sym_map_LBRACK] = ACTIONS(2439), - [anon_sym_chan] = ACTIONS(2439), - [anon_sym_thread] = ACTIONS(2439), - [anon_sym_atomic] = ACTIONS(2439), - [anon_sym_assert] = ACTIONS(2439), - [anon_sym_defer] = ACTIONS(2439), - [anon_sym_goto] = ACTIONS(2439), - [anon_sym_break] = ACTIONS(2439), - [anon_sym_continue] = ACTIONS(2439), - [anon_sym_return] = ACTIONS(2439), - [anon_sym_DOLLARfor] = ACTIONS(2439), - [anon_sym_for] = ACTIONS(2439), - [anon_sym_POUND] = ACTIONS(2439), - [anon_sym_asm] = ACTIONS(2439), - [anon_sym_AT_LBRACK] = ACTIONS(2439), + [anon_sym_DOT] = ACTIONS(2401), + [anon_sym_as] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_COMMA] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2401), + [anon_sym_EQ] = ACTIONS(2401), + [anon_sym___global] = ACTIONS(2401), + [anon_sym_type] = ACTIONS(2401), + [anon_sym_fn] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2401), + [anon_sym_SLASH] = ACTIONS(2401), + [anon_sym_PERCENT] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_GT] = ACTIONS(2401), + [anon_sym_EQ_EQ] = ACTIONS(2401), + [anon_sym_BANG_EQ] = ACTIONS(2401), + [anon_sym_LT_EQ] = ACTIONS(2401), + [anon_sym_GT_EQ] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_struct] = ACTIONS(2401), + [anon_sym_union] = ACTIONS(2401), + [anon_sym_pub] = ACTIONS(2401), + [anon_sym_mut] = ACTIONS(2401), + [anon_sym_enum] = ACTIONS(2401), + [anon_sym_interface] = ACTIONS(2401), + [anon_sym_PLUS_PLUS] = ACTIONS(2401), + [anon_sym_DASH_DASH] = ACTIONS(2401), + [anon_sym_QMARK] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2401), + [anon_sym_go] = ACTIONS(2401), + [anon_sym_spawn] = ACTIONS(2401), + [anon_sym_json_DOTdecode] = ACTIONS(2401), + [anon_sym_PIPE] = ACTIONS(2401), + [anon_sym_LBRACK2] = ACTIONS(2401), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2401), + [anon_sym_LT_DASH] = ACTIONS(2401), + [anon_sym_LT_LT] = ACTIONS(2401), + [anon_sym_GT_GT] = ACTIONS(2401), + [anon_sym_GT_GT_GT] = ACTIONS(2401), + [anon_sym_AMP_CARET] = ACTIONS(2401), + [anon_sym_AMP_AMP] = ACTIONS(2401), + [anon_sym_PIPE_PIPE] = ACTIONS(2401), + [anon_sym_or] = ACTIONS(2401), + [sym_none] = ACTIONS(2401), + [sym_true] = ACTIONS(2401), + [sym_false] = ACTIONS(2401), + [sym_nil] = ACTIONS(2401), + [anon_sym_QMARK_DOT] = ACTIONS(2401), + [anon_sym_POUND_LBRACK] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_DOLLARif] = ACTIONS(2401), + [anon_sym_is] = ACTIONS(2401), + [anon_sym_BANGis] = ACTIONS(2401), + [anon_sym_in] = ACTIONS(2401), + [anon_sym_BANGin] = ACTIONS(2401), + [anon_sym_match] = ACTIONS(2401), + [anon_sym_select] = ACTIONS(2401), + [anon_sym_STAR_EQ] = ACTIONS(2401), + [anon_sym_SLASH_EQ] = ACTIONS(2401), + [anon_sym_PERCENT_EQ] = ACTIONS(2401), + [anon_sym_LT_LT_EQ] = ACTIONS(2401), + [anon_sym_GT_GT_EQ] = ACTIONS(2401), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2401), + [anon_sym_AMP_EQ] = ACTIONS(2401), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2401), + [anon_sym_PLUS_EQ] = ACTIONS(2401), + [anon_sym_DASH_EQ] = ACTIONS(2401), + [anon_sym_PIPE_EQ] = ACTIONS(2401), + [anon_sym_CARET_EQ] = ACTIONS(2401), + [anon_sym_COLON_EQ] = ACTIONS(2401), + [anon_sym_lock] = ACTIONS(2401), + [anon_sym_rlock] = ACTIONS(2401), + [anon_sym_unsafe] = ACTIONS(2401), + [anon_sym_sql] = ACTIONS(2401), + [sym_int_literal] = ACTIONS(2401), + [sym_float_literal] = ACTIONS(2401), + [sym_rune_literal] = ACTIONS(2401), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(2401), + [anon_sym_c_SQUOTE] = ACTIONS(2401), + [anon_sym_c_DQUOTE] = ACTIONS(2401), + [anon_sym_r_SQUOTE] = ACTIONS(2401), + [anon_sym_r_DQUOTE] = ACTIONS(2401), + [sym_pseudo_compile_time_identifier] = ACTIONS(2401), + [anon_sym_shared] = ACTIONS(2401), + [anon_sym_map_LBRACK] = ACTIONS(2401), + [anon_sym_chan] = ACTIONS(2401), + [anon_sym_thread] = ACTIONS(2401), + [anon_sym_atomic] = ACTIONS(2401), + [anon_sym_assert] = ACTIONS(2401), + [anon_sym_defer] = ACTIONS(2401), + [anon_sym_goto] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_DOLLARfor] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_POUND] = ACTIONS(2401), + [anon_sym_asm] = ACTIONS(2401), + [anon_sym_AT_LBRACK] = ACTIONS(2401), }, [366] = { [sym_line_comment] = STATE(366), [sym_block_comment] = STATE(366), - [ts_builtin_sym_end] = ACTIONS(2142), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LF] = ACTIONS(2139), - [anon_sym_CR] = ACTIONS(2139), - [anon_sym_CR_LF] = ACTIONS(2139), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_as] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_COMMA] = ACTIONS(2139), - [anon_sym_const] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_EQ] = ACTIONS(2139), - [anon_sym___global] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(2139), - [anon_sym_fn] = ACTIONS(2139), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_SLASH] = ACTIONS(2139), - [anon_sym_PERCENT] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_GT] = ACTIONS(2139), - [anon_sym_EQ_EQ] = ACTIONS(2139), - [anon_sym_BANG_EQ] = ACTIONS(2139), - [anon_sym_LT_EQ] = ACTIONS(2139), - [anon_sym_GT_EQ] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2139), - [anon_sym_union] = ACTIONS(2139), - [anon_sym_pub] = ACTIONS(2139), - [anon_sym_mut] = ACTIONS(2139), - [anon_sym_enum] = ACTIONS(2139), - [anon_sym_interface] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_QMARK] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(2139), - [anon_sym_spawn] = ACTIONS(2139), - [anon_sym_json_DOTdecode] = ACTIONS(2139), - [anon_sym_LBRACK2] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_LT_DASH] = ACTIONS(2139), - [anon_sym_LT_LT] = ACTIONS(2139), - [anon_sym_GT_GT] = ACTIONS(2139), - [anon_sym_GT_GT_GT] = ACTIONS(2139), - [anon_sym_AMP_CARET] = ACTIONS(2139), - [anon_sym_AMP_AMP] = ACTIONS(2139), - [anon_sym_PIPE_PIPE] = ACTIONS(2139), - [anon_sym_or] = ACTIONS(2139), - [sym_none] = ACTIONS(2139), - [sym_true] = ACTIONS(2139), - [sym_false] = ACTIONS(2139), - [sym_nil] = ACTIONS(2139), - [anon_sym_QMARK_DOT] = ACTIONS(2139), - [anon_sym_POUND_LBRACK] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2139), - [anon_sym_DOLLARif] = ACTIONS(2139), - [anon_sym_is] = ACTIONS(2139), - [anon_sym_BANGis] = ACTIONS(2139), - [anon_sym_in] = ACTIONS(2139), - [anon_sym_BANGin] = ACTIONS(2139), - [anon_sym_match] = ACTIONS(2139), - [anon_sym_select] = ACTIONS(2139), - [anon_sym_STAR_EQ] = ACTIONS(2139), - [anon_sym_SLASH_EQ] = ACTIONS(2139), - [anon_sym_PERCENT_EQ] = ACTIONS(2139), - [anon_sym_LT_LT_EQ] = ACTIONS(2139), - [anon_sym_GT_GT_EQ] = ACTIONS(2139), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2139), - [anon_sym_AMP_EQ] = ACTIONS(2139), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2139), - [anon_sym_PLUS_EQ] = ACTIONS(2139), - [anon_sym_DASH_EQ] = ACTIONS(2139), - [anon_sym_PIPE_EQ] = ACTIONS(2139), - [anon_sym_CARET_EQ] = ACTIONS(2139), - [anon_sym_COLON_EQ] = ACTIONS(2139), - [anon_sym_lock] = ACTIONS(2139), - [anon_sym_rlock] = ACTIONS(2139), - [anon_sym_unsafe] = ACTIONS(2139), - [anon_sym_sql] = ACTIONS(2139), - [sym_int_literal] = ACTIONS(2139), - [sym_float_literal] = ACTIONS(2139), - [sym_rune_literal] = ACTIONS(2139), - [anon_sym_SQUOTE] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2139), - [anon_sym_c_SQUOTE] = ACTIONS(2139), - [anon_sym_c_DQUOTE] = ACTIONS(2139), - [anon_sym_r_SQUOTE] = ACTIONS(2139), - [anon_sym_r_DQUOTE] = ACTIONS(2139), - [sym_pseudo_compile_time_identifier] = ACTIONS(2139), - [anon_sym_shared] = ACTIONS(2139), - [anon_sym_map_LBRACK] = ACTIONS(2139), - [anon_sym_chan] = ACTIONS(2139), - [anon_sym_thread] = ACTIONS(2139), - [anon_sym_atomic] = ACTIONS(2139), - [anon_sym_assert] = ACTIONS(2139), - [anon_sym_defer] = ACTIONS(2139), - [anon_sym_goto] = ACTIONS(2139), - [anon_sym_break] = ACTIONS(2139), - [anon_sym_continue] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2139), - [anon_sym_DOLLARfor] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(2139), - [anon_sym_POUND] = ACTIONS(2139), - [anon_sym_asm] = ACTIONS(2139), - [anon_sym_AT_LBRACK] = ACTIONS(2139), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3609), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_RPAREN] = ACTIONS(599), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [367] = { [sym_line_comment] = STATE(367), [sym_block_comment] = STATE(367), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym__array_repeat1] = STATE(403), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(2626), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_range] = STATE(4489), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(2441), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1486), }, [368] = { [sym_line_comment] = STATE(368), [sym_block_comment] = STATE(368), - [sym__expression] = STATE(2580), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3548), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_range] = STATE(4502), - [sym_identifier] = ACTIONS(2391), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1399), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1398), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym__array_repeat1] = STATE(325), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(2417), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1404), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1281), }, [369] = { [sym_line_comment] = STATE(369), [sym_block_comment] = STATE(369), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym__array_repeat1] = STATE(403), - [sym_identifier] = ACTIONS(1299), + [ts_builtin_sym_end] = ACTIONS(2419), + [sym_identifier] = ACTIONS(2421), + [anon_sym_LF] = ACTIONS(2421), + [anon_sym_CR] = ACTIONS(2421), + [anon_sym_CR_LF] = ACTIONS(2421), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2421), + [anon_sym_as] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_COMMA] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2421), + [anon_sym_LPAREN] = ACTIONS(2421), + [anon_sym_EQ] = ACTIONS(2421), + [anon_sym___global] = ACTIONS(2421), + [anon_sym_type] = ACTIONS(2421), + [anon_sym_fn] = ACTIONS(2421), + [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_SLASH] = ACTIONS(2421), + [anon_sym_PERCENT] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2421), + [anon_sym_GT] = ACTIONS(2421), + [anon_sym_EQ_EQ] = ACTIONS(2421), + [anon_sym_BANG_EQ] = ACTIONS(2421), + [anon_sym_LT_EQ] = ACTIONS(2421), + [anon_sym_GT_EQ] = ACTIONS(2421), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_struct] = ACTIONS(2421), + [anon_sym_union] = ACTIONS(2421), + [anon_sym_pub] = ACTIONS(2421), + [anon_sym_mut] = ACTIONS(2421), + [anon_sym_enum] = ACTIONS(2421), + [anon_sym_interface] = ACTIONS(2421), + [anon_sym_PLUS_PLUS] = ACTIONS(2421), + [anon_sym_DASH_DASH] = ACTIONS(2421), + [anon_sym_QMARK] = ACTIONS(2421), + [anon_sym_BANG] = ACTIONS(2421), + [anon_sym_go] = ACTIONS(2421), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(2421), + [anon_sym_PIPE] = ACTIONS(2421), + [anon_sym_LBRACK2] = ACTIONS(2421), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_CARET] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2421), + [anon_sym_LT_DASH] = ACTIONS(2421), + [anon_sym_LT_LT] = ACTIONS(2421), + [anon_sym_GT_GT] = ACTIONS(2421), + [anon_sym_GT_GT_GT] = ACTIONS(2421), + [anon_sym_AMP_CARET] = ACTIONS(2421), + [anon_sym_AMP_AMP] = ACTIONS(2421), + [anon_sym_PIPE_PIPE] = ACTIONS(2421), + [anon_sym_or] = ACTIONS(2421), + [sym_none] = ACTIONS(2421), + [sym_true] = ACTIONS(2421), + [sym_false] = ACTIONS(2421), + [sym_nil] = ACTIONS(2421), + [anon_sym_QMARK_DOT] = ACTIONS(2421), + [anon_sym_POUND_LBRACK] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_DOLLARif] = ACTIONS(2421), + [anon_sym_is] = ACTIONS(2421), + [anon_sym_BANGis] = ACTIONS(2421), + [anon_sym_in] = ACTIONS(2421), + [anon_sym_BANGin] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(2421), + [anon_sym_select] = ACTIONS(2421), + [anon_sym_STAR_EQ] = ACTIONS(2421), + [anon_sym_SLASH_EQ] = ACTIONS(2421), + [anon_sym_PERCENT_EQ] = ACTIONS(2421), + [anon_sym_LT_LT_EQ] = ACTIONS(2421), + [anon_sym_GT_GT_EQ] = ACTIONS(2421), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2421), + [anon_sym_AMP_EQ] = ACTIONS(2421), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2421), + [anon_sym_PLUS_EQ] = ACTIONS(2421), + [anon_sym_DASH_EQ] = ACTIONS(2421), + [anon_sym_PIPE_EQ] = ACTIONS(2421), + [anon_sym_CARET_EQ] = ACTIONS(2421), + [anon_sym_COLON_EQ] = ACTIONS(2421), + [anon_sym_lock] = ACTIONS(2421), + [anon_sym_rlock] = ACTIONS(2421), + [anon_sym_unsafe] = ACTIONS(2421), + [anon_sym_sql] = ACTIONS(2421), + [sym_int_literal] = ACTIONS(2421), + [sym_float_literal] = ACTIONS(2421), + [sym_rune_literal] = ACTIONS(2421), + [anon_sym_SQUOTE] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(2421), + [anon_sym_c_SQUOTE] = ACTIONS(2421), + [anon_sym_c_DQUOTE] = ACTIONS(2421), + [anon_sym_r_SQUOTE] = ACTIONS(2421), + [anon_sym_r_DQUOTE] = ACTIONS(2421), + [sym_pseudo_compile_time_identifier] = ACTIONS(2421), + [anon_sym_shared] = ACTIONS(2421), + [anon_sym_map_LBRACK] = ACTIONS(2421), + [anon_sym_chan] = ACTIONS(2421), + [anon_sym_thread] = ACTIONS(2421), + [anon_sym_atomic] = ACTIONS(2421), + [anon_sym_assert] = ACTIONS(2421), + [anon_sym_defer] = ACTIONS(2421), + [anon_sym_goto] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_DOLLARfor] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_POUND] = ACTIONS(2421), + [anon_sym_asm] = ACTIONS(2421), + [anon_sym_AT_LBRACK] = ACTIONS(2421), + }, + [370] = { + [sym_line_comment] = STATE(370), + [sym_block_comment] = STATE(370), + [sym__expression] = STATE(2634), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_range] = STATE(4614), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(2443), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - }, - [370] = { - [sym_line_comment] = STATE(370), - [sym_block_comment] = STATE(370), - [ts_builtin_sym_end] = ACTIONS(2031), - [sym_identifier] = ACTIONS(2029), - [anon_sym_LF] = ACTIONS(2029), - [anon_sym_CR] = ACTIONS(2029), - [anon_sym_CR_LF] = ACTIONS(2029), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2029), - [anon_sym_as] = ACTIONS(2029), - [anon_sym_LBRACE] = ACTIONS(2029), - [anon_sym_COMMA] = ACTIONS(2029), - [anon_sym_const] = ACTIONS(2029), - [anon_sym_LPAREN] = ACTIONS(2029), - [anon_sym_EQ] = ACTIONS(2029), - [anon_sym___global] = ACTIONS(2029), - [anon_sym_type] = ACTIONS(2029), - [anon_sym_PIPE] = ACTIONS(2029), - [anon_sym_fn] = ACTIONS(2029), - [anon_sym_PLUS] = ACTIONS(2029), - [anon_sym_DASH] = ACTIONS(2029), - [anon_sym_STAR] = ACTIONS(2029), - [anon_sym_SLASH] = ACTIONS(2029), - [anon_sym_PERCENT] = ACTIONS(2029), - [anon_sym_LT] = ACTIONS(2029), - [anon_sym_GT] = ACTIONS(2029), - [anon_sym_EQ_EQ] = ACTIONS(2029), - [anon_sym_BANG_EQ] = ACTIONS(2029), - [anon_sym_LT_EQ] = ACTIONS(2029), - [anon_sym_GT_EQ] = ACTIONS(2029), - [anon_sym_LBRACK] = ACTIONS(2031), - [anon_sym_struct] = ACTIONS(2029), - [anon_sym_union] = ACTIONS(2029), - [anon_sym_pub] = ACTIONS(2029), - [anon_sym_mut] = ACTIONS(2029), - [anon_sym_enum] = ACTIONS(2029), - [anon_sym_interface] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_QMARK] = ACTIONS(2029), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_go] = ACTIONS(2029), - [anon_sym_spawn] = ACTIONS(2029), - [anon_sym_json_DOTdecode] = ACTIONS(2029), - [anon_sym_LBRACK2] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_LT_DASH] = ACTIONS(2029), - [anon_sym_LT_LT] = ACTIONS(2029), - [anon_sym_GT_GT] = ACTIONS(2029), - [anon_sym_GT_GT_GT] = ACTIONS(2029), - [anon_sym_AMP_CARET] = ACTIONS(2029), - [anon_sym_AMP_AMP] = ACTIONS(2029), - [anon_sym_PIPE_PIPE] = ACTIONS(2029), - [anon_sym_or] = ACTIONS(2029), - [sym_none] = ACTIONS(2029), - [sym_true] = ACTIONS(2029), - [sym_false] = ACTIONS(2029), - [sym_nil] = ACTIONS(2029), - [anon_sym_QMARK_DOT] = ACTIONS(2029), - [anon_sym_POUND_LBRACK] = ACTIONS(2029), - [anon_sym_if] = ACTIONS(2029), - [anon_sym_DOLLARif] = ACTIONS(2029), - [anon_sym_is] = ACTIONS(2029), - [anon_sym_BANGis] = ACTIONS(2029), - [anon_sym_in] = ACTIONS(2029), - [anon_sym_BANGin] = ACTIONS(2029), - [anon_sym_match] = ACTIONS(2029), - [anon_sym_select] = ACTIONS(2029), - [anon_sym_STAR_EQ] = ACTIONS(2029), - [anon_sym_SLASH_EQ] = ACTIONS(2029), - [anon_sym_PERCENT_EQ] = ACTIONS(2029), - [anon_sym_LT_LT_EQ] = ACTIONS(2029), - [anon_sym_GT_GT_EQ] = ACTIONS(2029), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2029), - [anon_sym_AMP_EQ] = ACTIONS(2029), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2029), - [anon_sym_PLUS_EQ] = ACTIONS(2029), - [anon_sym_DASH_EQ] = ACTIONS(2029), - [anon_sym_PIPE_EQ] = ACTIONS(2029), - [anon_sym_CARET_EQ] = ACTIONS(2029), - [anon_sym_COLON_EQ] = ACTIONS(2029), - [anon_sym_lock] = ACTIONS(2029), - [anon_sym_rlock] = ACTIONS(2029), - [anon_sym_unsafe] = ACTIONS(2029), - [anon_sym_sql] = ACTIONS(2029), - [sym_int_literal] = ACTIONS(2029), - [sym_float_literal] = ACTIONS(2029), - [sym_rune_literal] = ACTIONS(2029), - [anon_sym_SQUOTE] = ACTIONS(2029), - [anon_sym_DQUOTE] = ACTIONS(2029), - [anon_sym_c_SQUOTE] = ACTIONS(2029), - [anon_sym_c_DQUOTE] = ACTIONS(2029), - [anon_sym_r_SQUOTE] = ACTIONS(2029), - [anon_sym_r_DQUOTE] = ACTIONS(2029), - [sym_pseudo_compile_time_identifier] = ACTIONS(2029), - [anon_sym_shared] = ACTIONS(2029), - [anon_sym_map_LBRACK] = ACTIONS(2029), - [anon_sym_chan] = ACTIONS(2029), - [anon_sym_thread] = ACTIONS(2029), - [anon_sym_atomic] = ACTIONS(2029), - [anon_sym_assert] = ACTIONS(2029), - [anon_sym_defer] = ACTIONS(2029), - [anon_sym_goto] = ACTIONS(2029), - [anon_sym_break] = ACTIONS(2029), - [anon_sym_continue] = ACTIONS(2029), - [anon_sym_return] = ACTIONS(2029), - [anon_sym_DOLLARfor] = ACTIONS(2029), - [anon_sym_for] = ACTIONS(2029), - [anon_sym_POUND] = ACTIONS(2029), - [anon_sym_asm] = ACTIONS(2029), - [anon_sym_AT_LBRACK] = ACTIONS(2029), + [anon_sym_DOT_DOT] = ACTIONS(1486), }, [371] = { [sym_line_comment] = STATE(371), [sym_block_comment] = STATE(371), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym__array_repeat1] = STATE(403), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(2634), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3638), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_range] = STATE(4614), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(2445), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1486), }, [372] = { [sym_line_comment] = STATE(372), [sym_block_comment] = STATE(372), - [sym__expression] = STATE(2580), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_range] = STATE(4502), - [sym_identifier] = ACTIONS(1219), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1281), + [ts_builtin_sym_end] = ACTIONS(2423), + [sym_identifier] = ACTIONS(2425), + [anon_sym_LF] = ACTIONS(2425), + [anon_sym_CR] = ACTIONS(2425), + [anon_sym_CR_LF] = ACTIONS(2425), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2425), + [anon_sym_as] = ACTIONS(2425), + [anon_sym_LBRACE] = ACTIONS(2425), + [anon_sym_COMMA] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2425), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym___global] = ACTIONS(2425), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_fn] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2425), + [anon_sym_DASH] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_SLASH] = ACTIONS(2425), + [anon_sym_PERCENT] = ACTIONS(2425), + [anon_sym_LT] = ACTIONS(2425), + [anon_sym_GT] = ACTIONS(2425), + [anon_sym_EQ_EQ] = ACTIONS(2425), + [anon_sym_BANG_EQ] = ACTIONS(2425), + [anon_sym_LT_EQ] = ACTIONS(2425), + [anon_sym_GT_EQ] = ACTIONS(2425), + [anon_sym_LBRACK] = ACTIONS(2423), + [anon_sym_struct] = ACTIONS(2425), + [anon_sym_union] = ACTIONS(2425), + [anon_sym_pub] = ACTIONS(2425), + [anon_sym_mut] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_interface] = ACTIONS(2425), + [anon_sym_PLUS_PLUS] = ACTIONS(2425), + [anon_sym_DASH_DASH] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2425), + [anon_sym_BANG] = ACTIONS(2425), + [anon_sym_go] = ACTIONS(2425), + [anon_sym_spawn] = ACTIONS(2425), + [anon_sym_json_DOTdecode] = ACTIONS(2425), + [anon_sym_PIPE] = ACTIONS(2425), + [anon_sym_LBRACK2] = ACTIONS(2425), + [anon_sym_TILDE] = ACTIONS(2425), + [anon_sym_CARET] = ACTIONS(2425), + [anon_sym_AMP] = ACTIONS(2425), + [anon_sym_LT_DASH] = ACTIONS(2425), + [anon_sym_LT_LT] = ACTIONS(2425), + [anon_sym_GT_GT] = ACTIONS(2425), + [anon_sym_GT_GT_GT] = ACTIONS(2425), + [anon_sym_AMP_CARET] = ACTIONS(2425), + [anon_sym_AMP_AMP] = ACTIONS(2425), + [anon_sym_PIPE_PIPE] = ACTIONS(2425), + [anon_sym_or] = ACTIONS(2425), + [sym_none] = ACTIONS(2425), + [sym_true] = ACTIONS(2425), + [sym_false] = ACTIONS(2425), + [sym_nil] = ACTIONS(2425), + [anon_sym_QMARK_DOT] = ACTIONS(2425), + [anon_sym_POUND_LBRACK] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_DOLLARif] = ACTIONS(2425), + [anon_sym_is] = ACTIONS(2425), + [anon_sym_BANGis] = ACTIONS(2425), + [anon_sym_in] = ACTIONS(2425), + [anon_sym_BANGin] = ACTIONS(2425), + [anon_sym_match] = ACTIONS(2425), + [anon_sym_select] = ACTIONS(2425), + [anon_sym_STAR_EQ] = ACTIONS(2425), + [anon_sym_SLASH_EQ] = ACTIONS(2425), + [anon_sym_PERCENT_EQ] = ACTIONS(2425), + [anon_sym_LT_LT_EQ] = ACTIONS(2425), + [anon_sym_GT_GT_EQ] = ACTIONS(2425), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2425), + [anon_sym_AMP_EQ] = ACTIONS(2425), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2425), + [anon_sym_PLUS_EQ] = ACTIONS(2425), + [anon_sym_DASH_EQ] = ACTIONS(2425), + [anon_sym_PIPE_EQ] = ACTIONS(2425), + [anon_sym_CARET_EQ] = ACTIONS(2425), + [anon_sym_COLON_EQ] = ACTIONS(2425), + [anon_sym_lock] = ACTIONS(2425), + [anon_sym_rlock] = ACTIONS(2425), + [anon_sym_unsafe] = ACTIONS(2425), + [anon_sym_sql] = ACTIONS(2425), + [sym_int_literal] = ACTIONS(2425), + [sym_float_literal] = ACTIONS(2425), + [sym_rune_literal] = ACTIONS(2425), + [anon_sym_SQUOTE] = ACTIONS(2425), + [anon_sym_DQUOTE] = ACTIONS(2425), + [anon_sym_c_SQUOTE] = ACTIONS(2425), + [anon_sym_c_DQUOTE] = ACTIONS(2425), + [anon_sym_r_SQUOTE] = ACTIONS(2425), + [anon_sym_r_DQUOTE] = ACTIONS(2425), + [sym_pseudo_compile_time_identifier] = ACTIONS(2425), + [anon_sym_shared] = ACTIONS(2425), + [anon_sym_map_LBRACK] = ACTIONS(2425), + [anon_sym_chan] = ACTIONS(2425), + [anon_sym_thread] = ACTIONS(2425), + [anon_sym_atomic] = ACTIONS(2425), + [anon_sym_assert] = ACTIONS(2425), + [anon_sym_defer] = ACTIONS(2425), + [anon_sym_goto] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_DOLLARfor] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_POUND] = ACTIONS(2425), + [anon_sym_asm] = ACTIONS(2425), + [anon_sym_AT_LBRACK] = ACTIONS(2425), }, [373] = { [sym_line_comment] = STATE(373), [sym_block_comment] = STATE(373), - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1228), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_short_element_list_repeat1] = STATE(353), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1196), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_short_element_list_repeat1] = STATE(321), [sym_identifier] = ACTIONS(1071), [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(2447), + [anon_sym_RBRACE] = ACTIONS(2427), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -66181,113 +66476,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [374] = { [sym_line_comment] = STATE(374), [sym_block_comment] = STATE(374), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1398), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1396), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym__array_repeat1] = STATE(448), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4464), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(2449), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1347), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -66297,6 +66592,934 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [375] = { [sym_line_comment] = STATE(375), [sym_block_comment] = STATE(375), + [ts_builtin_sym_end] = ACTIONS(2431), + [sym_identifier] = ACTIONS(2433), + [anon_sym_LF] = ACTIONS(2433), + [anon_sym_CR] = ACTIONS(2433), + [anon_sym_CR_LF] = ACTIONS(2433), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2433), + [anon_sym_as] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(2433), + [anon_sym_COMMA] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [anon_sym_LPAREN] = ACTIONS(2433), + [anon_sym_EQ] = ACTIONS(2433), + [anon_sym___global] = ACTIONS(2433), + [anon_sym_type] = ACTIONS(2433), + [anon_sym_fn] = ACTIONS(2433), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2433), + [anon_sym_SLASH] = ACTIONS(2433), + [anon_sym_PERCENT] = ACTIONS(2433), + [anon_sym_LT] = ACTIONS(2433), + [anon_sym_GT] = ACTIONS(2433), + [anon_sym_EQ_EQ] = ACTIONS(2433), + [anon_sym_BANG_EQ] = ACTIONS(2433), + [anon_sym_LT_EQ] = ACTIONS(2433), + [anon_sym_GT_EQ] = ACTIONS(2433), + [anon_sym_LBRACK] = ACTIONS(2431), + [anon_sym_struct] = ACTIONS(2433), + [anon_sym_union] = ACTIONS(2433), + [anon_sym_pub] = ACTIONS(2433), + [anon_sym_mut] = ACTIONS(2433), + [anon_sym_enum] = ACTIONS(2433), + [anon_sym_interface] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_QMARK] = ACTIONS(2433), + [anon_sym_BANG] = ACTIONS(2433), + [anon_sym_go] = ACTIONS(2433), + [anon_sym_spawn] = ACTIONS(2433), + [anon_sym_json_DOTdecode] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2433), + [anon_sym_LBRACK2] = ACTIONS(2433), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2433), + [anon_sym_LT_DASH] = ACTIONS(2433), + [anon_sym_LT_LT] = ACTIONS(2433), + [anon_sym_GT_GT] = ACTIONS(2433), + [anon_sym_GT_GT_GT] = ACTIONS(2433), + [anon_sym_AMP_CARET] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2433), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_or] = ACTIONS(2433), + [sym_none] = ACTIONS(2433), + [sym_true] = ACTIONS(2433), + [sym_false] = ACTIONS(2433), + [sym_nil] = ACTIONS(2433), + [anon_sym_QMARK_DOT] = ACTIONS(2433), + [anon_sym_POUND_LBRACK] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_DOLLARif] = ACTIONS(2433), + [anon_sym_is] = ACTIONS(2433), + [anon_sym_BANGis] = ACTIONS(2433), + [anon_sym_in] = ACTIONS(2433), + [anon_sym_BANGin] = ACTIONS(2433), + [anon_sym_match] = ACTIONS(2433), + [anon_sym_select] = ACTIONS(2433), + [anon_sym_STAR_EQ] = ACTIONS(2433), + [anon_sym_SLASH_EQ] = ACTIONS(2433), + [anon_sym_PERCENT_EQ] = ACTIONS(2433), + [anon_sym_LT_LT_EQ] = ACTIONS(2433), + [anon_sym_GT_GT_EQ] = ACTIONS(2433), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2433), + [anon_sym_AMP_EQ] = ACTIONS(2433), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2433), + [anon_sym_PLUS_EQ] = ACTIONS(2433), + [anon_sym_DASH_EQ] = ACTIONS(2433), + [anon_sym_PIPE_EQ] = ACTIONS(2433), + [anon_sym_CARET_EQ] = ACTIONS(2433), + [anon_sym_COLON_EQ] = ACTIONS(2433), + [anon_sym_lock] = ACTIONS(2433), + [anon_sym_rlock] = ACTIONS(2433), + [anon_sym_unsafe] = ACTIONS(2433), + [anon_sym_sql] = ACTIONS(2433), + [sym_int_literal] = ACTIONS(2433), + [sym_float_literal] = ACTIONS(2433), + [sym_rune_literal] = ACTIONS(2433), + [anon_sym_SQUOTE] = ACTIONS(2433), + [anon_sym_DQUOTE] = ACTIONS(2433), + [anon_sym_c_SQUOTE] = ACTIONS(2433), + [anon_sym_c_DQUOTE] = ACTIONS(2433), + [anon_sym_r_SQUOTE] = ACTIONS(2433), + [anon_sym_r_DQUOTE] = ACTIONS(2433), + [sym_pseudo_compile_time_identifier] = ACTIONS(2433), + [anon_sym_shared] = ACTIONS(2433), + [anon_sym_map_LBRACK] = ACTIONS(2433), + [anon_sym_chan] = ACTIONS(2433), + [anon_sym_thread] = ACTIONS(2433), + [anon_sym_atomic] = ACTIONS(2433), + [anon_sym_assert] = ACTIONS(2433), + [anon_sym_defer] = ACTIONS(2433), + [anon_sym_goto] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_DOLLARfor] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_POUND] = ACTIONS(2433), + [anon_sym_asm] = ACTIONS(2433), + [anon_sym_AT_LBRACK] = ACTIONS(2433), + }, + [376] = { + [sym_line_comment] = STATE(376), + [sym_block_comment] = STATE(376), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1399), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1398), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym__array_repeat1] = STATE(467), + [sym_identifier] = ACTIONS(1356), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(2435), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1404), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [377] = { + [sym_line_comment] = STATE(377), + [sym_block_comment] = STATE(377), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym__array_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1356), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(2437), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [378] = { + [sym_line_comment] = STATE(378), + [sym_block_comment] = STATE(378), + [ts_builtin_sym_end] = ACTIONS(2439), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LF] = ACTIONS(2441), + [anon_sym_CR] = ACTIONS(2441), + [anon_sym_CR_LF] = ACTIONS(2441), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2441), + [anon_sym_as] = ACTIONS(2441), + [anon_sym_LBRACE] = ACTIONS(2441), + [anon_sym_COMMA] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym_EQ] = ACTIONS(2441), + [anon_sym___global] = ACTIONS(2441), + [anon_sym_type] = ACTIONS(2441), + [anon_sym_fn] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2441), + [anon_sym_DASH] = ACTIONS(2441), + [anon_sym_STAR] = ACTIONS(2441), + [anon_sym_SLASH] = ACTIONS(2441), + [anon_sym_PERCENT] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2441), + [anon_sym_GT] = ACTIONS(2441), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT_EQ] = ACTIONS(2441), + [anon_sym_GT_EQ] = ACTIONS(2441), + [anon_sym_LBRACK] = ACTIONS(2439), + [anon_sym_struct] = ACTIONS(2441), + [anon_sym_union] = ACTIONS(2441), + [anon_sym_pub] = ACTIONS(2441), + [anon_sym_mut] = ACTIONS(2441), + [anon_sym_enum] = ACTIONS(2441), + [anon_sym_interface] = ACTIONS(2441), + [anon_sym_PLUS_PLUS] = ACTIONS(2441), + [anon_sym_DASH_DASH] = ACTIONS(2441), + [anon_sym_QMARK] = ACTIONS(2441), + [anon_sym_BANG] = ACTIONS(2441), + [anon_sym_go] = ACTIONS(2441), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(2441), + [anon_sym_PIPE] = ACTIONS(2441), + [anon_sym_LBRACK2] = ACTIONS(2441), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_CARET] = ACTIONS(2441), + [anon_sym_AMP] = ACTIONS(2441), + [anon_sym_LT_DASH] = ACTIONS(2441), + [anon_sym_LT_LT] = ACTIONS(2441), + [anon_sym_GT_GT] = ACTIONS(2441), + [anon_sym_GT_GT_GT] = ACTIONS(2441), + [anon_sym_AMP_CARET] = ACTIONS(2441), + [anon_sym_AMP_AMP] = ACTIONS(2441), + [anon_sym_PIPE_PIPE] = ACTIONS(2441), + [anon_sym_or] = ACTIONS(2441), + [sym_none] = ACTIONS(2441), + [sym_true] = ACTIONS(2441), + [sym_false] = ACTIONS(2441), + [sym_nil] = ACTIONS(2441), + [anon_sym_QMARK_DOT] = ACTIONS(2441), + [anon_sym_POUND_LBRACK] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_DOLLARif] = ACTIONS(2441), + [anon_sym_is] = ACTIONS(2441), + [anon_sym_BANGis] = ACTIONS(2441), + [anon_sym_in] = ACTIONS(2441), + [anon_sym_BANGin] = ACTIONS(2441), + [anon_sym_match] = ACTIONS(2441), + [anon_sym_select] = ACTIONS(2441), + [anon_sym_STAR_EQ] = ACTIONS(2441), + [anon_sym_SLASH_EQ] = ACTIONS(2441), + [anon_sym_PERCENT_EQ] = ACTIONS(2441), + [anon_sym_LT_LT_EQ] = ACTIONS(2441), + [anon_sym_GT_GT_EQ] = ACTIONS(2441), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2441), + [anon_sym_AMP_EQ] = ACTIONS(2441), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2441), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_PIPE_EQ] = ACTIONS(2441), + [anon_sym_CARET_EQ] = ACTIONS(2441), + [anon_sym_COLON_EQ] = ACTIONS(2441), + [anon_sym_lock] = ACTIONS(2441), + [anon_sym_rlock] = ACTIONS(2441), + [anon_sym_unsafe] = ACTIONS(2441), + [anon_sym_sql] = ACTIONS(2441), + [sym_int_literal] = ACTIONS(2441), + [sym_float_literal] = ACTIONS(2441), + [sym_rune_literal] = ACTIONS(2441), + [anon_sym_SQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [anon_sym_c_SQUOTE] = ACTIONS(2441), + [anon_sym_c_DQUOTE] = ACTIONS(2441), + [anon_sym_r_SQUOTE] = ACTIONS(2441), + [anon_sym_r_DQUOTE] = ACTIONS(2441), + [sym_pseudo_compile_time_identifier] = ACTIONS(2441), + [anon_sym_shared] = ACTIONS(2441), + [anon_sym_map_LBRACK] = ACTIONS(2441), + [anon_sym_chan] = ACTIONS(2441), + [anon_sym_thread] = ACTIONS(2441), + [anon_sym_atomic] = ACTIONS(2441), + [anon_sym_assert] = ACTIONS(2441), + [anon_sym_defer] = ACTIONS(2441), + [anon_sym_goto] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_DOLLARfor] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_POUND] = ACTIONS(2441), + [anon_sym_asm] = ACTIONS(2441), + [anon_sym_AT_LBRACK] = ACTIONS(2441), + }, + [379] = { + [sym_line_comment] = STATE(379), + [sym_block_comment] = STATE(379), + [ts_builtin_sym_end] = ACTIONS(2443), + [sym_identifier] = ACTIONS(2445), + [anon_sym_LF] = ACTIONS(2445), + [anon_sym_CR] = ACTIONS(2445), + [anon_sym_CR_LF] = ACTIONS(2445), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_COMMA] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(2445), + [anon_sym___global] = ACTIONS(2445), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_PERCENT] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_GT] = ACTIONS(2445), + [anon_sym_EQ_EQ] = ACTIONS(2445), + [anon_sym_BANG_EQ] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_struct] = ACTIONS(2445), + [anon_sym_union] = ACTIONS(2445), + [anon_sym_pub] = ACTIONS(2445), + [anon_sym_mut] = ACTIONS(2445), + [anon_sym_enum] = ACTIONS(2445), + [anon_sym_interface] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_QMARK] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2445), + [anon_sym_go] = ACTIONS(2445), + [anon_sym_spawn] = ACTIONS(2445), + [anon_sym_json_DOTdecode] = ACTIONS(2445), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_LBRACK2] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2445), + [anon_sym_CARET] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_LT_DASH] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2445), + [anon_sym_GT_GT] = ACTIONS(2445), + [anon_sym_GT_GT_GT] = ACTIONS(2445), + [anon_sym_AMP_CARET] = ACTIONS(2445), + [anon_sym_AMP_AMP] = ACTIONS(2445), + [anon_sym_PIPE_PIPE] = ACTIONS(2445), + [anon_sym_or] = ACTIONS(2445), + [sym_none] = ACTIONS(2445), + [sym_true] = ACTIONS(2445), + [sym_false] = ACTIONS(2445), + [sym_nil] = ACTIONS(2445), + [anon_sym_QMARK_DOT] = ACTIONS(2445), + [anon_sym_POUND_LBRACK] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_DOLLARif] = ACTIONS(2445), + [anon_sym_is] = ACTIONS(2445), + [anon_sym_BANGis] = ACTIONS(2445), + [anon_sym_in] = ACTIONS(2445), + [anon_sym_BANGin] = ACTIONS(2445), + [anon_sym_match] = ACTIONS(2445), + [anon_sym_select] = ACTIONS(2445), + [anon_sym_STAR_EQ] = ACTIONS(2445), + [anon_sym_SLASH_EQ] = ACTIONS(2445), + [anon_sym_PERCENT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_GT_EQ] = ACTIONS(2445), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2445), + [anon_sym_AMP_EQ] = ACTIONS(2445), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2445), + [anon_sym_PLUS_EQ] = ACTIONS(2445), + [anon_sym_DASH_EQ] = ACTIONS(2445), + [anon_sym_PIPE_EQ] = ACTIONS(2445), + [anon_sym_CARET_EQ] = ACTIONS(2445), + [anon_sym_COLON_EQ] = ACTIONS(2445), + [anon_sym_lock] = ACTIONS(2445), + [anon_sym_rlock] = ACTIONS(2445), + [anon_sym_unsafe] = ACTIONS(2445), + [anon_sym_sql] = ACTIONS(2445), + [sym_int_literal] = ACTIONS(2445), + [sym_float_literal] = ACTIONS(2445), + [sym_rune_literal] = ACTIONS(2445), + [anon_sym_SQUOTE] = ACTIONS(2445), + [anon_sym_DQUOTE] = ACTIONS(2445), + [anon_sym_c_SQUOTE] = ACTIONS(2445), + [anon_sym_c_DQUOTE] = ACTIONS(2445), + [anon_sym_r_SQUOTE] = ACTIONS(2445), + [anon_sym_r_DQUOTE] = ACTIONS(2445), + [sym_pseudo_compile_time_identifier] = ACTIONS(2445), + [anon_sym_shared] = ACTIONS(2445), + [anon_sym_map_LBRACK] = ACTIONS(2445), + [anon_sym_chan] = ACTIONS(2445), + [anon_sym_thread] = ACTIONS(2445), + [anon_sym_atomic] = ACTIONS(2445), + [anon_sym_assert] = ACTIONS(2445), + [anon_sym_defer] = ACTIONS(2445), + [anon_sym_goto] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_DOLLARfor] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_POUND] = ACTIONS(2445), + [anon_sym_asm] = ACTIONS(2445), + [anon_sym_AT_LBRACK] = ACTIONS(2445), + }, + [380] = { + [sym_line_comment] = STATE(380), + [sym_block_comment] = STATE(380), + [sym__expression] = STATE(2626), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3638), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_range] = STATE(4489), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1486), + }, + [381] = { + [sym_line_comment] = STATE(381), + [sym_block_comment] = STATE(381), + [sym__expression] = STATE(2326), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(865), + [sym_mutable_expression] = STATE(3600), + [sym_expression_list] = STATE(3716), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_struct] = ACTIONS(1717), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_go] = ACTIONS(1721), + [anon_sym_spawn] = ACTIONS(1723), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_DASH] = ACTIONS(2173), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(1741), + [anon_sym_lock] = ACTIONS(1743), + [anon_sym_rlock] = ACTIONS(1743), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [382] = { + [sym_line_comment] = STATE(382), + [sym_block_comment] = STATE(382), + [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_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_fn] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_SLASH] = 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_PIPE] = 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_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), + [anon_sym_SQUOTE] = ACTIONS(2449), + [anon_sym_DQUOTE] = ACTIONS(2449), + [anon_sym_c_SQUOTE] = ACTIONS(2449), + [anon_sym_c_DQUOTE] = ACTIONS(2449), + [anon_sym_r_SQUOTE] = ACTIONS(2449), + [anon_sym_r_DQUOTE] = 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), + }, + [383] = { + [sym_line_comment] = STATE(383), + [sym_block_comment] = STATE(383), [ts_builtin_sym_end] = ACTIONS(2451), [sym_identifier] = ACTIONS(2453), [anon_sym_LF] = ACTIONS(2453), @@ -66313,7 +67536,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(2453), [anon_sym___global] = ACTIONS(2453), [anon_sym_type] = ACTIONS(2453), - [anon_sym_PIPE] = ACTIONS(2453), [anon_sym_fn] = ACTIONS(2453), [anon_sym_PLUS] = ACTIONS(2453), [anon_sym_DASH] = ACTIONS(2453), @@ -66340,6 +67562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(2453), [anon_sym_spawn] = ACTIONS(2453), [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_PIPE] = ACTIONS(2453), [anon_sym_LBRACK2] = ACTIONS(2453), [anon_sym_TILDE] = ACTIONS(2453), [anon_sym_CARET] = ACTIONS(2453), @@ -66410,9 +67633,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2453), [anon_sym_AT_LBRACK] = ACTIONS(2453), }, - [376] = { - [sym_line_comment] = STATE(376), - [sym_block_comment] = STATE(376), + [384] = { + [sym_line_comment] = STATE(384), + [sym_block_comment] = STATE(384), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1399), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1398), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym__array_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(1356), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1404), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [385] = { + [sym_line_comment] = STATE(385), + [sym_block_comment] = STATE(385), [ts_builtin_sym_end] = ACTIONS(2455), [sym_identifier] = ACTIONS(2457), [anon_sym_LF] = ACTIONS(2457), @@ -66429,7 +67768,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -66456,6 +67794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(2457), [anon_sym_spawn] = ACTIONS(2457), [anon_sym_json_DOTdecode] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(2457), [anon_sym_LBRACK2] = ACTIONS(2457), [anon_sym_TILDE] = ACTIONS(2457), [anon_sym_CARET] = ACTIONS(2457), @@ -66526,937 +67865,821 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2457), [anon_sym_AT_LBRACK] = ACTIONS(2457), }, - [377] = { - [sym_line_comment] = STATE(377), - [sym_block_comment] = STATE(377), - [sym__expression] = STATE(2604), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3548), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_range] = STATE(4566), - [sym_identifier] = ACTIONS(2391), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1281), - }, - [378] = { - [sym_line_comment] = STATE(378), - [sym_block_comment] = STATE(378), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4383), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [386] = { + [sym_line_comment] = STATE(386), + [sym_block_comment] = STATE(386), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4399), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1426), [anon_sym_LBRACE] = ACTIONS(2459), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [379] = { - [sym_line_comment] = STATE(379), - [sym_block_comment] = STATE(379), - [sym__expression] = STATE(2583), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_range] = STATE(4525), - [sym_identifier] = ACTIONS(1219), + [387] = { + [sym_line_comment] = STATE(387), + [sym_block_comment] = STATE(387), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4408), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1281), }, - [380] = { - [sym_line_comment] = STATE(380), - [sym_block_comment] = STATE(380), - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2463), - [anon_sym_LF] = ACTIONS(2463), - [anon_sym_CR] = ACTIONS(2463), - [anon_sym_CR_LF] = ACTIONS(2463), + [388] = { + [sym_line_comment] = STATE(388), + [sym_block_comment] = STATE(388), + [ts_builtin_sym_end] = ACTIONS(2463), + [sym_identifier] = ACTIONS(2465), + [anon_sym_LF] = ACTIONS(2465), + [anon_sym_CR] = ACTIONS(2465), + [anon_sym_CR_LF] = ACTIONS(2465), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2463), - [anon_sym_as] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(2463), - [anon_sym_COMMA] = ACTIONS(2463), - [anon_sym_const] = ACTIONS(2463), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym_EQ] = ACTIONS(2463), - [anon_sym___global] = ACTIONS(2463), - [anon_sym_type] = ACTIONS(2463), - [anon_sym_PIPE] = ACTIONS(2463), - [anon_sym_fn] = ACTIONS(2463), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(2463), - [anon_sym_STAR] = ACTIONS(2463), - [anon_sym_SLASH] = ACTIONS(2463), - [anon_sym_PERCENT] = ACTIONS(2463), - [anon_sym_LT] = ACTIONS(2463), - [anon_sym_GT] = ACTIONS(2463), - [anon_sym_EQ_EQ] = ACTIONS(2463), - [anon_sym_BANG_EQ] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(2463), - [anon_sym_GT_EQ] = ACTIONS(2463), - [anon_sym_LBRACK] = ACTIONS(2461), - [anon_sym_struct] = ACTIONS(2463), - [anon_sym_union] = ACTIONS(2463), - [anon_sym_pub] = ACTIONS(2463), - [anon_sym_mut] = ACTIONS(2463), - [anon_sym_enum] = ACTIONS(2463), - [anon_sym_interface] = ACTIONS(2463), - [anon_sym_PLUS_PLUS] = ACTIONS(2463), - [anon_sym_DASH_DASH] = ACTIONS(2463), - [anon_sym_QMARK] = ACTIONS(2463), - [anon_sym_BANG] = ACTIONS(2463), - [anon_sym_go] = ACTIONS(2463), - [anon_sym_spawn] = ACTIONS(2463), - [anon_sym_json_DOTdecode] = ACTIONS(2463), - [anon_sym_LBRACK2] = ACTIONS(2463), - [anon_sym_TILDE] = ACTIONS(2463), - [anon_sym_CARET] = ACTIONS(2463), - [anon_sym_AMP] = ACTIONS(2463), - [anon_sym_LT_DASH] = ACTIONS(2463), - [anon_sym_LT_LT] = ACTIONS(2463), - [anon_sym_GT_GT] = ACTIONS(2463), - [anon_sym_GT_GT_GT] = ACTIONS(2463), - [anon_sym_AMP_CARET] = ACTIONS(2463), - [anon_sym_AMP_AMP] = ACTIONS(2463), - [anon_sym_PIPE_PIPE] = ACTIONS(2463), - [anon_sym_or] = ACTIONS(2463), - [sym_none] = ACTIONS(2463), - [sym_true] = ACTIONS(2463), - [sym_false] = ACTIONS(2463), - [sym_nil] = ACTIONS(2463), - [anon_sym_QMARK_DOT] = ACTIONS(2463), - [anon_sym_POUND_LBRACK] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2463), - [anon_sym_DOLLARif] = ACTIONS(2463), - [anon_sym_is] = ACTIONS(2463), - [anon_sym_BANGis] = ACTIONS(2463), - [anon_sym_in] = ACTIONS(2463), - [anon_sym_BANGin] = ACTIONS(2463), - [anon_sym_match] = ACTIONS(2463), - [anon_sym_select] = ACTIONS(2463), - [anon_sym_STAR_EQ] = ACTIONS(2463), - [anon_sym_SLASH_EQ] = ACTIONS(2463), - [anon_sym_PERCENT_EQ] = ACTIONS(2463), - [anon_sym_LT_LT_EQ] = ACTIONS(2463), - [anon_sym_GT_GT_EQ] = ACTIONS(2463), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2463), - [anon_sym_AMP_EQ] = ACTIONS(2463), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2463), - [anon_sym_PLUS_EQ] = ACTIONS(2463), - [anon_sym_DASH_EQ] = ACTIONS(2463), - [anon_sym_PIPE_EQ] = ACTIONS(2463), - [anon_sym_CARET_EQ] = ACTIONS(2463), - [anon_sym_COLON_EQ] = ACTIONS(2463), - [anon_sym_lock] = ACTIONS(2463), - [anon_sym_rlock] = ACTIONS(2463), - [anon_sym_unsafe] = ACTIONS(2463), - [anon_sym_sql] = ACTIONS(2463), - [sym_int_literal] = ACTIONS(2463), - [sym_float_literal] = ACTIONS(2463), - [sym_rune_literal] = ACTIONS(2463), - [anon_sym_SQUOTE] = ACTIONS(2463), - [anon_sym_DQUOTE] = ACTIONS(2463), - [anon_sym_c_SQUOTE] = ACTIONS(2463), - [anon_sym_c_DQUOTE] = ACTIONS(2463), - [anon_sym_r_SQUOTE] = ACTIONS(2463), - [anon_sym_r_DQUOTE] = ACTIONS(2463), - [sym_pseudo_compile_time_identifier] = ACTIONS(2463), - [anon_sym_shared] = ACTIONS(2463), - [anon_sym_map_LBRACK] = ACTIONS(2463), - [anon_sym_chan] = ACTIONS(2463), - [anon_sym_thread] = ACTIONS(2463), - [anon_sym_atomic] = ACTIONS(2463), - [anon_sym_assert] = ACTIONS(2463), - [anon_sym_defer] = ACTIONS(2463), - [anon_sym_goto] = ACTIONS(2463), - [anon_sym_break] = ACTIONS(2463), - [anon_sym_continue] = ACTIONS(2463), - [anon_sym_return] = ACTIONS(2463), - [anon_sym_DOLLARfor] = ACTIONS(2463), - [anon_sym_for] = ACTIONS(2463), - [anon_sym_POUND] = ACTIONS(2463), - [anon_sym_asm] = ACTIONS(2463), - [anon_sym_AT_LBRACK] = ACTIONS(2463), + [anon_sym_DOT] = ACTIONS(2465), + [anon_sym_as] = ACTIONS(2465), + [anon_sym_LBRACE] = ACTIONS(2465), + [anon_sym_COMMA] = ACTIONS(2465), + [anon_sym_const] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_EQ] = ACTIONS(2465), + [anon_sym___global] = ACTIONS(2465), + [anon_sym_type] = ACTIONS(2465), + [anon_sym_fn] = ACTIONS(2465), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_SLASH] = ACTIONS(2465), + [anon_sym_PERCENT] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_EQ_EQ] = ACTIONS(2465), + [anon_sym_BANG_EQ] = ACTIONS(2465), + [anon_sym_LT_EQ] = ACTIONS(2465), + [anon_sym_GT_EQ] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_struct] = ACTIONS(2465), + [anon_sym_union] = ACTIONS(2465), + [anon_sym_pub] = ACTIONS(2465), + [anon_sym_mut] = ACTIONS(2465), + [anon_sym_enum] = ACTIONS(2465), + [anon_sym_interface] = ACTIONS(2465), + [anon_sym_PLUS_PLUS] = ACTIONS(2465), + [anon_sym_DASH_DASH] = ACTIONS(2465), + [anon_sym_QMARK] = ACTIONS(2465), + [anon_sym_BANG] = ACTIONS(2465), + [anon_sym_go] = ACTIONS(2465), + [anon_sym_spawn] = ACTIONS(2465), + [anon_sym_json_DOTdecode] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(2465), + [anon_sym_LBRACK2] = ACTIONS(2465), + [anon_sym_TILDE] = ACTIONS(2465), + [anon_sym_CARET] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2465), + [anon_sym_LT_DASH] = ACTIONS(2465), + [anon_sym_LT_LT] = ACTIONS(2465), + [anon_sym_GT_GT] = ACTIONS(2465), + [anon_sym_GT_GT_GT] = ACTIONS(2465), + [anon_sym_AMP_CARET] = ACTIONS(2465), + [anon_sym_AMP_AMP] = ACTIONS(2465), + [anon_sym_PIPE_PIPE] = ACTIONS(2465), + [anon_sym_or] = ACTIONS(2465), + [sym_none] = ACTIONS(2465), + [sym_true] = ACTIONS(2465), + [sym_false] = ACTIONS(2465), + [sym_nil] = ACTIONS(2465), + [anon_sym_QMARK_DOT] = ACTIONS(2465), + [anon_sym_POUND_LBRACK] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_DOLLARif] = ACTIONS(2465), + [anon_sym_is] = ACTIONS(2465), + [anon_sym_BANGis] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(2465), + [anon_sym_BANGin] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_STAR_EQ] = ACTIONS(2465), + [anon_sym_SLASH_EQ] = ACTIONS(2465), + [anon_sym_PERCENT_EQ] = ACTIONS(2465), + [anon_sym_LT_LT_EQ] = ACTIONS(2465), + [anon_sym_GT_GT_EQ] = ACTIONS(2465), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2465), + [anon_sym_AMP_EQ] = ACTIONS(2465), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2465), + [anon_sym_PLUS_EQ] = ACTIONS(2465), + [anon_sym_DASH_EQ] = ACTIONS(2465), + [anon_sym_PIPE_EQ] = ACTIONS(2465), + [anon_sym_CARET_EQ] = ACTIONS(2465), + [anon_sym_COLON_EQ] = ACTIONS(2465), + [anon_sym_lock] = ACTIONS(2465), + [anon_sym_rlock] = ACTIONS(2465), + [anon_sym_unsafe] = ACTIONS(2465), + [anon_sym_sql] = ACTIONS(2465), + [sym_int_literal] = ACTIONS(2465), + [sym_float_literal] = ACTIONS(2465), + [sym_rune_literal] = ACTIONS(2465), + [anon_sym_SQUOTE] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(2465), + [anon_sym_c_SQUOTE] = ACTIONS(2465), + [anon_sym_c_DQUOTE] = ACTIONS(2465), + [anon_sym_r_SQUOTE] = ACTIONS(2465), + [anon_sym_r_DQUOTE] = ACTIONS(2465), + [sym_pseudo_compile_time_identifier] = ACTIONS(2465), + [anon_sym_shared] = ACTIONS(2465), + [anon_sym_map_LBRACK] = ACTIONS(2465), + [anon_sym_chan] = ACTIONS(2465), + [anon_sym_thread] = ACTIONS(2465), + [anon_sym_atomic] = ACTIONS(2465), + [anon_sym_assert] = ACTIONS(2465), + [anon_sym_defer] = ACTIONS(2465), + [anon_sym_goto] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_DOLLARfor] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_POUND] = ACTIONS(2465), + [anon_sym_asm] = ACTIONS(2465), + [anon_sym_AT_LBRACK] = ACTIONS(2465), }, - [381] = { - [sym_line_comment] = STATE(381), - [sym_block_comment] = STATE(381), - [sym__expression] = STATE(2583), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3548), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_range] = STATE(4525), - [sym_identifier] = ACTIONS(2391), + [389] = { + [sym_line_comment] = STATE(389), + [sym_block_comment] = STATE(389), + [sym__expression] = STATE(2625), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_range] = STATE(4470), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT] = ACTIONS(1486), }, - [382] = { - [sym_line_comment] = STATE(382), - [sym_block_comment] = STATE(382), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1398), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1396), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym__array_repeat1] = STATE(456), - [sym_identifier] = ACTIONS(1299), + [390] = { + [sym_line_comment] = STATE(390), + [sym_block_comment] = STATE(390), + [sym__expression] = STATE(2625), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3638), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_range] = STATE(4470), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(2465), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1347), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1486), }, - [383] = { - [sym_line_comment] = STATE(383), - [sym_block_comment] = STATE(383), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4383), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [391] = { + [sym_line_comment] = STATE(391), + [sym_block_comment] = STATE(391), + [ts_builtin_sym_end] = ACTIONS(2467), + [sym_identifier] = ACTIONS(2469), + [anon_sym_LF] = ACTIONS(2469), + [anon_sym_CR] = ACTIONS(2469), + [anon_sym_CR_LF] = ACTIONS(2469), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2469), + [anon_sym_as] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2469), + [anon_sym_COMMA] = ACTIONS(2469), + [anon_sym_const] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2469), + [anon_sym_EQ] = ACTIONS(2469), + [anon_sym___global] = ACTIONS(2469), + [anon_sym_type] = ACTIONS(2469), + [anon_sym_fn] = ACTIONS(2469), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_STAR] = ACTIONS(2469), + [anon_sym_SLASH] = ACTIONS(2469), + [anon_sym_PERCENT] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2469), + [anon_sym_GT] = ACTIONS(2469), + [anon_sym_EQ_EQ] = ACTIONS(2469), + [anon_sym_BANG_EQ] = ACTIONS(2469), + [anon_sym_LT_EQ] = ACTIONS(2469), + [anon_sym_GT_EQ] = ACTIONS(2469), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_struct] = ACTIONS(2469), + [anon_sym_union] = ACTIONS(2469), + [anon_sym_pub] = ACTIONS(2469), + [anon_sym_mut] = ACTIONS(2469), + [anon_sym_enum] = ACTIONS(2469), + [anon_sym_interface] = ACTIONS(2469), + [anon_sym_PLUS_PLUS] = ACTIONS(2469), + [anon_sym_DASH_DASH] = ACTIONS(2469), + [anon_sym_QMARK] = ACTIONS(2469), + [anon_sym_BANG] = ACTIONS(2469), + [anon_sym_go] = ACTIONS(2469), + [anon_sym_spawn] = ACTIONS(2469), + [anon_sym_json_DOTdecode] = ACTIONS(2469), + [anon_sym_PIPE] = ACTIONS(2469), + [anon_sym_LBRACK2] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_CARET] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_LT_DASH] = ACTIONS(2469), + [anon_sym_LT_LT] = ACTIONS(2469), + [anon_sym_GT_GT] = ACTIONS(2469), + [anon_sym_GT_GT_GT] = ACTIONS(2469), + [anon_sym_AMP_CARET] = ACTIONS(2469), + [anon_sym_AMP_AMP] = ACTIONS(2469), + [anon_sym_PIPE_PIPE] = ACTIONS(2469), + [anon_sym_or] = ACTIONS(2469), + [sym_none] = ACTIONS(2469), + [sym_true] = ACTIONS(2469), + [sym_false] = ACTIONS(2469), + [sym_nil] = ACTIONS(2469), + [anon_sym_QMARK_DOT] = ACTIONS(2469), + [anon_sym_POUND_LBRACK] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_DOLLARif] = ACTIONS(2469), + [anon_sym_is] = ACTIONS(2469), + [anon_sym_BANGis] = ACTIONS(2469), + [anon_sym_in] = ACTIONS(2469), + [anon_sym_BANGin] = ACTIONS(2469), + [anon_sym_match] = ACTIONS(2469), + [anon_sym_select] = ACTIONS(2469), + [anon_sym_STAR_EQ] = ACTIONS(2469), + [anon_sym_SLASH_EQ] = ACTIONS(2469), + [anon_sym_PERCENT_EQ] = ACTIONS(2469), + [anon_sym_LT_LT_EQ] = ACTIONS(2469), + [anon_sym_GT_GT_EQ] = ACTIONS(2469), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2469), + [anon_sym_AMP_EQ] = ACTIONS(2469), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2469), + [anon_sym_PLUS_EQ] = ACTIONS(2469), + [anon_sym_DASH_EQ] = ACTIONS(2469), + [anon_sym_PIPE_EQ] = ACTIONS(2469), + [anon_sym_CARET_EQ] = ACTIONS(2469), + [anon_sym_COLON_EQ] = ACTIONS(2469), + [anon_sym_lock] = ACTIONS(2469), + [anon_sym_rlock] = ACTIONS(2469), + [anon_sym_unsafe] = ACTIONS(2469), + [anon_sym_sql] = ACTIONS(2469), + [sym_int_literal] = ACTIONS(2469), + [sym_float_literal] = ACTIONS(2469), + [sym_rune_literal] = ACTIONS(2469), + [anon_sym_SQUOTE] = ACTIONS(2469), + [anon_sym_DQUOTE] = ACTIONS(2469), + [anon_sym_c_SQUOTE] = ACTIONS(2469), + [anon_sym_c_DQUOTE] = ACTIONS(2469), + [anon_sym_r_SQUOTE] = ACTIONS(2469), + [anon_sym_r_DQUOTE] = ACTIONS(2469), + [sym_pseudo_compile_time_identifier] = ACTIONS(2469), + [anon_sym_shared] = ACTIONS(2469), + [anon_sym_map_LBRACK] = ACTIONS(2469), + [anon_sym_chan] = ACTIONS(2469), + [anon_sym_thread] = ACTIONS(2469), + [anon_sym_atomic] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2469), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_goto] = ACTIONS(2469), + [anon_sym_break] = ACTIONS(2469), + [anon_sym_continue] = ACTIONS(2469), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_DOLLARfor] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_POUND] = ACTIONS(2469), + [anon_sym_asm] = ACTIONS(2469), + [anon_sym_AT_LBRACK] = ACTIONS(2469), + }, + [392] = { + [sym_line_comment] = STATE(392), + [sym_block_comment] = STATE(392), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4482), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(2467), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [384] = { - [sym_line_comment] = STATE(384), - [sym_block_comment] = STATE(384), - [ts_builtin_sym_end] = ACTIONS(2469), - [sym_identifier] = ACTIONS(2471), - [anon_sym_LF] = ACTIONS(2471), - [anon_sym_CR] = ACTIONS(2471), - [anon_sym_CR_LF] = ACTIONS(2471), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2471), - [anon_sym_as] = ACTIONS(2471), - [anon_sym_LBRACE] = ACTIONS(2471), - [anon_sym_COMMA] = ACTIONS(2471), - [anon_sym_const] = ACTIONS(2471), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_EQ] = ACTIONS(2471), - [anon_sym___global] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_PIPE] = ACTIONS(2471), - [anon_sym_fn] = ACTIONS(2471), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_STAR] = ACTIONS(2471), - [anon_sym_SLASH] = ACTIONS(2471), - [anon_sym_PERCENT] = ACTIONS(2471), - [anon_sym_LT] = ACTIONS(2471), - [anon_sym_GT] = ACTIONS(2471), - [anon_sym_EQ_EQ] = ACTIONS(2471), - [anon_sym_BANG_EQ] = ACTIONS(2471), - [anon_sym_LT_EQ] = ACTIONS(2471), - [anon_sym_GT_EQ] = ACTIONS(2471), - [anon_sym_LBRACK] = ACTIONS(2469), - [anon_sym_struct] = ACTIONS(2471), - [anon_sym_union] = ACTIONS(2471), - [anon_sym_pub] = ACTIONS(2471), - [anon_sym_mut] = ACTIONS(2471), - [anon_sym_enum] = ACTIONS(2471), - [anon_sym_interface] = ACTIONS(2471), - [anon_sym_PLUS_PLUS] = ACTIONS(2471), - [anon_sym_DASH_DASH] = ACTIONS(2471), - [anon_sym_QMARK] = ACTIONS(2471), - [anon_sym_BANG] = ACTIONS(2471), - [anon_sym_go] = ACTIONS(2471), - [anon_sym_spawn] = ACTIONS(2471), - [anon_sym_json_DOTdecode] = ACTIONS(2471), - [anon_sym_LBRACK2] = ACTIONS(2471), - [anon_sym_TILDE] = ACTIONS(2471), - [anon_sym_CARET] = ACTIONS(2471), - [anon_sym_AMP] = ACTIONS(2471), - [anon_sym_LT_DASH] = ACTIONS(2471), - [anon_sym_LT_LT] = ACTIONS(2471), - [anon_sym_GT_GT] = ACTIONS(2471), - [anon_sym_GT_GT_GT] = ACTIONS(2471), - [anon_sym_AMP_CARET] = ACTIONS(2471), - [anon_sym_AMP_AMP] = ACTIONS(2471), - [anon_sym_PIPE_PIPE] = ACTIONS(2471), - [anon_sym_or] = ACTIONS(2471), - [sym_none] = ACTIONS(2471), - [sym_true] = ACTIONS(2471), - [sym_false] = ACTIONS(2471), - [sym_nil] = ACTIONS(2471), - [anon_sym_QMARK_DOT] = ACTIONS(2471), - [anon_sym_POUND_LBRACK] = ACTIONS(2471), - [anon_sym_if] = ACTIONS(2471), - [anon_sym_DOLLARif] = ACTIONS(2471), - [anon_sym_is] = ACTIONS(2471), - [anon_sym_BANGis] = ACTIONS(2471), - [anon_sym_in] = ACTIONS(2471), - [anon_sym_BANGin] = ACTIONS(2471), - [anon_sym_match] = ACTIONS(2471), - [anon_sym_select] = ACTIONS(2471), - [anon_sym_STAR_EQ] = ACTIONS(2471), - [anon_sym_SLASH_EQ] = ACTIONS(2471), - [anon_sym_PERCENT_EQ] = ACTIONS(2471), - [anon_sym_LT_LT_EQ] = ACTIONS(2471), - [anon_sym_GT_GT_EQ] = ACTIONS(2471), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2471), - [anon_sym_AMP_EQ] = ACTIONS(2471), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2471), - [anon_sym_PLUS_EQ] = ACTIONS(2471), - [anon_sym_DASH_EQ] = ACTIONS(2471), - [anon_sym_PIPE_EQ] = ACTIONS(2471), - [anon_sym_CARET_EQ] = ACTIONS(2471), - [anon_sym_COLON_EQ] = ACTIONS(2471), - [anon_sym_lock] = ACTIONS(2471), - [anon_sym_rlock] = ACTIONS(2471), - [anon_sym_unsafe] = ACTIONS(2471), - [anon_sym_sql] = ACTIONS(2471), - [sym_int_literal] = ACTIONS(2471), - [sym_float_literal] = ACTIONS(2471), - [sym_rune_literal] = ACTIONS(2471), - [anon_sym_SQUOTE] = ACTIONS(2471), - [anon_sym_DQUOTE] = ACTIONS(2471), - [anon_sym_c_SQUOTE] = ACTIONS(2471), - [anon_sym_c_DQUOTE] = ACTIONS(2471), - [anon_sym_r_SQUOTE] = ACTIONS(2471), - [anon_sym_r_DQUOTE] = ACTIONS(2471), - [sym_pseudo_compile_time_identifier] = ACTIONS(2471), - [anon_sym_shared] = ACTIONS(2471), - [anon_sym_map_LBRACK] = ACTIONS(2471), - [anon_sym_chan] = ACTIONS(2471), - [anon_sym_thread] = ACTIONS(2471), - [anon_sym_atomic] = ACTIONS(2471), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_defer] = ACTIONS(2471), - [anon_sym_goto] = ACTIONS(2471), - [anon_sym_break] = ACTIONS(2471), - [anon_sym_continue] = ACTIONS(2471), - [anon_sym_return] = ACTIONS(2471), - [anon_sym_DOLLARfor] = ACTIONS(2471), - [anon_sym_for] = ACTIONS(2471), - [anon_sym_POUND] = ACTIONS(2471), - [anon_sym_asm] = ACTIONS(2471), - [anon_sym_AT_LBRACK] = ACTIONS(2471), - }, - [385] = { - [sym_line_comment] = STATE(385), - [sym_block_comment] = STATE(385), + [393] = { + [sym_line_comment] = STATE(393), + [sym_block_comment] = STATE(393), [ts_builtin_sym_end] = ACTIONS(2473), [sym_identifier] = ACTIONS(2475), [anon_sym_LF] = ACTIONS(2475), @@ -67473,7 +68696,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(2475), [anon_sym___global] = ACTIONS(2475), [anon_sym_type] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(2475), [anon_sym_PLUS] = ACTIONS(2475), [anon_sym_DASH] = ACTIONS(2475), @@ -67500,6 +68722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(2475), [anon_sym_spawn] = ACTIONS(2475), [anon_sym_json_DOTdecode] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(2475), [anon_sym_LBRACK2] = ACTIONS(2475), [anon_sym_TILDE] = ACTIONS(2475), [anon_sym_CARET] = ACTIONS(2475), @@ -67570,2793 +68793,4417 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2475), [anon_sym_AT_LBRACK] = ACTIONS(2475), }, - [386] = { - [sym_line_comment] = STATE(386), - [sym_block_comment] = STATE(386), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym__array_repeat1] = STATE(403), - [sym_identifier] = ACTIONS(1299), + [394] = { + [sym_line_comment] = STATE(394), + [sym_block_comment] = STATE(394), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(2479), + [anon_sym_LF] = ACTIONS(2479), + [anon_sym_CR] = ACTIONS(2479), + [anon_sym_CR_LF] = ACTIONS(2479), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2479), + [anon_sym_as] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2479), + [anon_sym_COMMA] = ACTIONS(2479), + [anon_sym_const] = ACTIONS(2479), + [anon_sym_LPAREN] = ACTIONS(2479), + [anon_sym_EQ] = ACTIONS(2479), + [anon_sym___global] = ACTIONS(2479), + [anon_sym_type] = ACTIONS(2479), + [anon_sym_fn] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2479), + [anon_sym_SLASH] = ACTIONS(2479), + [anon_sym_PERCENT] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_EQ_EQ] = ACTIONS(2479), + [anon_sym_BANG_EQ] = ACTIONS(2479), + [anon_sym_LT_EQ] = ACTIONS(2479), + [anon_sym_GT_EQ] = ACTIONS(2479), + [anon_sym_LBRACK] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(2479), + [anon_sym_union] = ACTIONS(2479), + [anon_sym_pub] = ACTIONS(2479), + [anon_sym_mut] = ACTIONS(2479), + [anon_sym_enum] = ACTIONS(2479), + [anon_sym_interface] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_QMARK] = ACTIONS(2479), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_go] = ACTIONS(2479), + [anon_sym_spawn] = ACTIONS(2479), + [anon_sym_json_DOTdecode] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(2479), + [anon_sym_LBRACK2] = ACTIONS(2479), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_LT_DASH] = ACTIONS(2479), + [anon_sym_LT_LT] = ACTIONS(2479), + [anon_sym_GT_GT] = ACTIONS(2479), + [anon_sym_GT_GT_GT] = ACTIONS(2479), + [anon_sym_AMP_CARET] = ACTIONS(2479), + [anon_sym_AMP_AMP] = ACTIONS(2479), + [anon_sym_PIPE_PIPE] = ACTIONS(2479), + [anon_sym_or] = ACTIONS(2479), + [sym_none] = ACTIONS(2479), + [sym_true] = ACTIONS(2479), + [sym_false] = ACTIONS(2479), + [sym_nil] = ACTIONS(2479), + [anon_sym_QMARK_DOT] = ACTIONS(2479), + [anon_sym_POUND_LBRACK] = ACTIONS(2479), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_DOLLARif] = ACTIONS(2479), + [anon_sym_is] = ACTIONS(2479), + [anon_sym_BANGis] = ACTIONS(2479), + [anon_sym_in] = ACTIONS(2479), + [anon_sym_BANGin] = ACTIONS(2479), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_select] = ACTIONS(2479), + [anon_sym_STAR_EQ] = ACTIONS(2479), + [anon_sym_SLASH_EQ] = ACTIONS(2479), + [anon_sym_PERCENT_EQ] = ACTIONS(2479), + [anon_sym_LT_LT_EQ] = ACTIONS(2479), + [anon_sym_GT_GT_EQ] = ACTIONS(2479), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2479), + [anon_sym_AMP_EQ] = ACTIONS(2479), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2479), + [anon_sym_PLUS_EQ] = ACTIONS(2479), + [anon_sym_DASH_EQ] = ACTIONS(2479), + [anon_sym_PIPE_EQ] = ACTIONS(2479), + [anon_sym_CARET_EQ] = ACTIONS(2479), + [anon_sym_COLON_EQ] = ACTIONS(2479), + [anon_sym_lock] = ACTIONS(2479), + [anon_sym_rlock] = ACTIONS(2479), + [anon_sym_unsafe] = ACTIONS(2479), + [anon_sym_sql] = ACTIONS(2479), + [sym_int_literal] = ACTIONS(2479), + [sym_float_literal] = ACTIONS(2479), + [sym_rune_literal] = ACTIONS(2479), + [anon_sym_SQUOTE] = ACTIONS(2479), + [anon_sym_DQUOTE] = ACTIONS(2479), + [anon_sym_c_SQUOTE] = ACTIONS(2479), + [anon_sym_c_DQUOTE] = ACTIONS(2479), + [anon_sym_r_SQUOTE] = ACTIONS(2479), + [anon_sym_r_DQUOTE] = ACTIONS(2479), + [sym_pseudo_compile_time_identifier] = ACTIONS(2479), + [anon_sym_shared] = ACTIONS(2479), + [anon_sym_map_LBRACK] = ACTIONS(2479), + [anon_sym_chan] = ACTIONS(2479), + [anon_sym_thread] = ACTIONS(2479), + [anon_sym_atomic] = ACTIONS(2479), + [anon_sym_assert] = ACTIONS(2479), + [anon_sym_defer] = ACTIONS(2479), + [anon_sym_goto] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2479), + [anon_sym_continue] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2479), + [anon_sym_DOLLARfor] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_POUND] = ACTIONS(2479), + [anon_sym_asm] = ACTIONS(2479), + [anon_sym_AT_LBRACK] = ACTIONS(2479), + }, + [395] = { + [sym_line_comment] = STATE(395), + [sym_block_comment] = STATE(395), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4399), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(2477), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [387] = { - [sym_line_comment] = STATE(387), - [sym_block_comment] = STATE(387), - [ts_builtin_sym_end] = ACTIONS(2053), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_EQ] = ACTIONS(2055), - [anon_sym___global] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_union] = ACTIONS(2055), - [anon_sym_pub] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_QMARK] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_LBRACK2] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_AMP_CARET] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(2055), - [anon_sym_POUND_LBRACK] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_STAR_EQ] = ACTIONS(2055), - [anon_sym_SLASH_EQ] = ACTIONS(2055), - [anon_sym_PERCENT_EQ] = ACTIONS(2055), - [anon_sym_LT_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_AMP_EQ] = ACTIONS(2055), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2055), - [anon_sym_PLUS_EQ] = ACTIONS(2055), - [anon_sym_DASH_EQ] = ACTIONS(2055), - [anon_sym_PIPE_EQ] = ACTIONS(2055), - [anon_sym_CARET_EQ] = ACTIONS(2055), - [anon_sym_COLON_EQ] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), - [anon_sym_AT_LBRACK] = ACTIONS(2055), + [396] = { + [sym_line_comment] = STATE(396), + [sym_block_comment] = STATE(396), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4542), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(2483), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [388] = { - [sym_line_comment] = STATE(388), - [sym_block_comment] = STATE(388), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1398), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1396), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym__array_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1299), + [397] = { + [sym_line_comment] = STATE(397), + [sym_block_comment] = STATE(397), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4432), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(2479), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(2485), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1347), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [389] = { - [sym_line_comment] = STATE(389), - [sym_block_comment] = STATE(389), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym__array_repeat1] = STATE(403), - [sym_identifier] = ACTIONS(1299), + [398] = { + [sym_line_comment] = STATE(398), + [sym_block_comment] = STATE(398), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4503), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [390] = { - [sym_line_comment] = STATE(390), - [sym_block_comment] = STATE(390), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1398), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1396), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym__array_repeat1] = STATE(312), - [sym_identifier] = ACTIONS(1299), + [399] = { + [sym_line_comment] = STATE(399), + [sym_block_comment] = STATE(399), + [ts_builtin_sym_end] = ACTIONS(2489), + [sym_identifier] = ACTIONS(2491), + [anon_sym_LF] = ACTIONS(2491), + [anon_sym_CR] = ACTIONS(2491), + [anon_sym_CR_LF] = ACTIONS(2491), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2491), + [anon_sym_as] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_COMMA] = ACTIONS(2491), + [anon_sym_const] = ACTIONS(2491), + [anon_sym_LPAREN] = ACTIONS(2491), + [anon_sym_EQ] = ACTIONS(2491), + [anon_sym___global] = ACTIONS(2491), + [anon_sym_type] = ACTIONS(2491), + [anon_sym_fn] = ACTIONS(2491), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_STAR] = ACTIONS(2491), + [anon_sym_SLASH] = ACTIONS(2491), + [anon_sym_PERCENT] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2491), + [anon_sym_GT] = ACTIONS(2491), + [anon_sym_EQ_EQ] = ACTIONS(2491), + [anon_sym_BANG_EQ] = ACTIONS(2491), + [anon_sym_LT_EQ] = ACTIONS(2491), + [anon_sym_GT_EQ] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(2491), + [anon_sym_union] = ACTIONS(2491), + [anon_sym_pub] = ACTIONS(2491), + [anon_sym_mut] = ACTIONS(2491), + [anon_sym_enum] = ACTIONS(2491), + [anon_sym_interface] = ACTIONS(2491), + [anon_sym_PLUS_PLUS] = ACTIONS(2491), + [anon_sym_DASH_DASH] = ACTIONS(2491), + [anon_sym_QMARK] = ACTIONS(2491), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2491), + [anon_sym_spawn] = ACTIONS(2491), + [anon_sym_json_DOTdecode] = ACTIONS(2491), + [anon_sym_PIPE] = ACTIONS(2491), + [anon_sym_LBRACK2] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_CARET] = ACTIONS(2491), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2491), + [anon_sym_LT_LT] = ACTIONS(2491), + [anon_sym_GT_GT] = ACTIONS(2491), + [anon_sym_GT_GT_GT] = ACTIONS(2491), + [anon_sym_AMP_CARET] = ACTIONS(2491), + [anon_sym_AMP_AMP] = ACTIONS(2491), + [anon_sym_PIPE_PIPE] = ACTIONS(2491), + [anon_sym_or] = ACTIONS(2491), + [sym_none] = ACTIONS(2491), + [sym_true] = ACTIONS(2491), + [sym_false] = ACTIONS(2491), + [sym_nil] = ACTIONS(2491), + [anon_sym_QMARK_DOT] = ACTIONS(2491), + [anon_sym_POUND_LBRACK] = ACTIONS(2491), + [anon_sym_if] = ACTIONS(2491), + [anon_sym_DOLLARif] = ACTIONS(2491), + [anon_sym_is] = ACTIONS(2491), + [anon_sym_BANGis] = ACTIONS(2491), + [anon_sym_in] = ACTIONS(2491), + [anon_sym_BANGin] = ACTIONS(2491), + [anon_sym_match] = ACTIONS(2491), + [anon_sym_select] = ACTIONS(2491), + [anon_sym_STAR_EQ] = ACTIONS(2491), + [anon_sym_SLASH_EQ] = ACTIONS(2491), + [anon_sym_PERCENT_EQ] = ACTIONS(2491), + [anon_sym_LT_LT_EQ] = ACTIONS(2491), + [anon_sym_GT_GT_EQ] = ACTIONS(2491), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2491), + [anon_sym_AMP_EQ] = ACTIONS(2491), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2491), + [anon_sym_PLUS_EQ] = ACTIONS(2491), + [anon_sym_DASH_EQ] = ACTIONS(2491), + [anon_sym_PIPE_EQ] = ACTIONS(2491), + [anon_sym_CARET_EQ] = ACTIONS(2491), + [anon_sym_COLON_EQ] = ACTIONS(2491), + [anon_sym_lock] = ACTIONS(2491), + [anon_sym_rlock] = ACTIONS(2491), + [anon_sym_unsafe] = ACTIONS(2491), + [anon_sym_sql] = ACTIONS(2491), + [sym_int_literal] = ACTIONS(2491), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2491), + [anon_sym_DQUOTE] = ACTIONS(2491), + [anon_sym_c_SQUOTE] = ACTIONS(2491), + [anon_sym_c_DQUOTE] = ACTIONS(2491), + [anon_sym_r_SQUOTE] = ACTIONS(2491), + [anon_sym_r_DQUOTE] = ACTIONS(2491), + [sym_pseudo_compile_time_identifier] = ACTIONS(2491), + [anon_sym_shared] = ACTIONS(2491), + [anon_sym_map_LBRACK] = ACTIONS(2491), + [anon_sym_chan] = ACTIONS(2491), + [anon_sym_thread] = ACTIONS(2491), + [anon_sym_atomic] = ACTIONS(2491), + [anon_sym_assert] = ACTIONS(2491), + [anon_sym_defer] = ACTIONS(2491), + [anon_sym_goto] = ACTIONS(2491), + [anon_sym_break] = ACTIONS(2491), + [anon_sym_continue] = ACTIONS(2491), + [anon_sym_return] = ACTIONS(2491), + [anon_sym_DOLLARfor] = ACTIONS(2491), + [anon_sym_for] = ACTIONS(2491), + [anon_sym_POUND] = ACTIONS(2491), + [anon_sym_asm] = ACTIONS(2491), + [anon_sym_AT_LBRACK] = ACTIONS(2491), + }, + [400] = { + [sym_line_comment] = STATE(400), + [sym_block_comment] = STATE(400), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4524), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(2483), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1347), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [391] = { - [sym_line_comment] = STATE(391), - [sym_block_comment] = STATE(391), - [sym__expression] = STATE(1259), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_string_interpolation_repeat1] = STATE(413), - [sym_identifier] = ACTIONS(1299), + [401] = { + [sym_line_comment] = STATE(401), + [sym_block_comment] = STATE(401), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4540), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_RBRACE] = ACTIONS(2485), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2491), - [anon_sym_go] = ACTIONS(2493), - [anon_sym_spawn] = ACTIONS(2495), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_AMP] = ACTIONS(2497), - [anon_sym_LT_DASH] = ACTIONS(2499), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(2501), - [anon_sym_lock] = ACTIONS(2503), - [anon_sym_rlock] = ACTIONS(2503), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [392] = { - [sym_line_comment] = STATE(392), - [sym_block_comment] = STATE(392), - [ts_builtin_sym_end] = ACTIONS(2505), - [sym_identifier] = ACTIONS(2507), - [anon_sym_LF] = ACTIONS(2507), - [anon_sym_CR] = ACTIONS(2507), - [anon_sym_CR_LF] = ACTIONS(2507), + [402] = { + [sym_line_comment] = STATE(402), + [sym_block_comment] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(2497), + [sym_identifier] = ACTIONS(2499), + [anon_sym_LF] = ACTIONS(2499), + [anon_sym_CR] = ACTIONS(2499), + [anon_sym_CR_LF] = ACTIONS(2499), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2507), - [anon_sym_as] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_COMMA] = ACTIONS(2507), - [anon_sym_const] = ACTIONS(2507), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_EQ] = ACTIONS(2507), - [anon_sym___global] = ACTIONS(2507), - [anon_sym_type] = ACTIONS(2507), - [anon_sym_PIPE] = ACTIONS(2507), - [anon_sym_fn] = ACTIONS(2507), - [anon_sym_PLUS] = ACTIONS(2507), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_STAR] = ACTIONS(2507), - [anon_sym_SLASH] = ACTIONS(2507), - [anon_sym_PERCENT] = ACTIONS(2507), - [anon_sym_LT] = ACTIONS(2507), - [anon_sym_GT] = ACTIONS(2507), - [anon_sym_EQ_EQ] = ACTIONS(2507), - [anon_sym_BANG_EQ] = ACTIONS(2507), - [anon_sym_LT_EQ] = ACTIONS(2507), - [anon_sym_GT_EQ] = ACTIONS(2507), - [anon_sym_LBRACK] = ACTIONS(2505), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_union] = ACTIONS(2507), - [anon_sym_pub] = ACTIONS(2507), - [anon_sym_mut] = ACTIONS(2507), - [anon_sym_enum] = ACTIONS(2507), - [anon_sym_interface] = ACTIONS(2507), - [anon_sym_PLUS_PLUS] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2507), - [anon_sym_QMARK] = ACTIONS(2507), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_go] = ACTIONS(2507), - [anon_sym_spawn] = ACTIONS(2507), - [anon_sym_json_DOTdecode] = ACTIONS(2507), - [anon_sym_LBRACK2] = ACTIONS(2507), - [anon_sym_TILDE] = ACTIONS(2507), - [anon_sym_CARET] = ACTIONS(2507), - [anon_sym_AMP] = ACTIONS(2507), - [anon_sym_LT_DASH] = ACTIONS(2507), - [anon_sym_LT_LT] = ACTIONS(2507), - [anon_sym_GT_GT] = ACTIONS(2507), - [anon_sym_GT_GT_GT] = ACTIONS(2507), - [anon_sym_AMP_CARET] = ACTIONS(2507), - [anon_sym_AMP_AMP] = ACTIONS(2507), - [anon_sym_PIPE_PIPE] = ACTIONS(2507), - [anon_sym_or] = ACTIONS(2507), - [sym_none] = ACTIONS(2507), - [sym_true] = ACTIONS(2507), - [sym_false] = ACTIONS(2507), - [sym_nil] = ACTIONS(2507), - [anon_sym_QMARK_DOT] = ACTIONS(2507), - [anon_sym_POUND_LBRACK] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_DOLLARif] = ACTIONS(2507), - [anon_sym_is] = ACTIONS(2507), - [anon_sym_BANGis] = ACTIONS(2507), - [anon_sym_in] = ACTIONS(2507), - [anon_sym_BANGin] = ACTIONS(2507), - [anon_sym_match] = ACTIONS(2507), - [anon_sym_select] = ACTIONS(2507), - [anon_sym_STAR_EQ] = ACTIONS(2507), - [anon_sym_SLASH_EQ] = ACTIONS(2507), - [anon_sym_PERCENT_EQ] = ACTIONS(2507), - [anon_sym_LT_LT_EQ] = ACTIONS(2507), - [anon_sym_GT_GT_EQ] = ACTIONS(2507), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2507), - [anon_sym_AMP_EQ] = ACTIONS(2507), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2507), - [anon_sym_PLUS_EQ] = ACTIONS(2507), - [anon_sym_DASH_EQ] = ACTIONS(2507), - [anon_sym_PIPE_EQ] = ACTIONS(2507), - [anon_sym_CARET_EQ] = ACTIONS(2507), - [anon_sym_COLON_EQ] = ACTIONS(2507), - [anon_sym_lock] = ACTIONS(2507), - [anon_sym_rlock] = ACTIONS(2507), - [anon_sym_unsafe] = ACTIONS(2507), - [anon_sym_sql] = ACTIONS(2507), - [sym_int_literal] = ACTIONS(2507), - [sym_float_literal] = ACTIONS(2507), - [sym_rune_literal] = ACTIONS(2507), - [anon_sym_SQUOTE] = ACTIONS(2507), - [anon_sym_DQUOTE] = ACTIONS(2507), - [anon_sym_c_SQUOTE] = ACTIONS(2507), - [anon_sym_c_DQUOTE] = ACTIONS(2507), - [anon_sym_r_SQUOTE] = ACTIONS(2507), - [anon_sym_r_DQUOTE] = ACTIONS(2507), - [sym_pseudo_compile_time_identifier] = ACTIONS(2507), - [anon_sym_shared] = ACTIONS(2507), - [anon_sym_map_LBRACK] = ACTIONS(2507), - [anon_sym_chan] = ACTIONS(2507), - [anon_sym_thread] = ACTIONS(2507), - [anon_sym_atomic] = ACTIONS(2507), - [anon_sym_assert] = ACTIONS(2507), - [anon_sym_defer] = ACTIONS(2507), - [anon_sym_goto] = ACTIONS(2507), - [anon_sym_break] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2507), - [anon_sym_DOLLARfor] = ACTIONS(2507), - [anon_sym_for] = ACTIONS(2507), - [anon_sym_POUND] = ACTIONS(2507), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym_AT_LBRACK] = ACTIONS(2507), + [anon_sym_DOT] = ACTIONS(2499), + [anon_sym_as] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_COMMA] = ACTIONS(2499), + [anon_sym_const] = ACTIONS(2499), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_EQ] = ACTIONS(2499), + [anon_sym___global] = ACTIONS(2499), + [anon_sym_type] = ACTIONS(2499), + [anon_sym_fn] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(2499), + [anon_sym_SLASH] = ACTIONS(2499), + [anon_sym_PERCENT] = ACTIONS(2499), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(2499), + [anon_sym_EQ_EQ] = ACTIONS(2499), + [anon_sym_BANG_EQ] = ACTIONS(2499), + [anon_sym_LT_EQ] = ACTIONS(2499), + [anon_sym_GT_EQ] = ACTIONS(2499), + [anon_sym_LBRACK] = ACTIONS(2497), + [anon_sym_struct] = ACTIONS(2499), + [anon_sym_union] = ACTIONS(2499), + [anon_sym_pub] = ACTIONS(2499), + [anon_sym_mut] = ACTIONS(2499), + [anon_sym_enum] = ACTIONS(2499), + [anon_sym_interface] = ACTIONS(2499), + [anon_sym_PLUS_PLUS] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(2499), + [anon_sym_QMARK] = ACTIONS(2499), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_go] = ACTIONS(2499), + [anon_sym_spawn] = ACTIONS(2499), + [anon_sym_json_DOTdecode] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_LBRACK2] = ACTIONS(2499), + [anon_sym_TILDE] = ACTIONS(2499), + [anon_sym_CARET] = ACTIONS(2499), + [anon_sym_AMP] = ACTIONS(2499), + [anon_sym_LT_DASH] = ACTIONS(2499), + [anon_sym_LT_LT] = ACTIONS(2499), + [anon_sym_GT_GT] = ACTIONS(2499), + [anon_sym_GT_GT_GT] = ACTIONS(2499), + [anon_sym_AMP_CARET] = ACTIONS(2499), + [anon_sym_AMP_AMP] = ACTIONS(2499), + [anon_sym_PIPE_PIPE] = ACTIONS(2499), + [anon_sym_or] = ACTIONS(2499), + [sym_none] = ACTIONS(2499), + [sym_true] = ACTIONS(2499), + [sym_false] = ACTIONS(2499), + [sym_nil] = ACTIONS(2499), + [anon_sym_QMARK_DOT] = ACTIONS(2499), + [anon_sym_POUND_LBRACK] = ACTIONS(2499), + [anon_sym_if] = ACTIONS(2499), + [anon_sym_DOLLARif] = ACTIONS(2499), + [anon_sym_is] = ACTIONS(2499), + [anon_sym_BANGis] = ACTIONS(2499), + [anon_sym_in] = ACTIONS(2499), + [anon_sym_BANGin] = ACTIONS(2499), + [anon_sym_match] = ACTIONS(2499), + [anon_sym_select] = ACTIONS(2499), + [anon_sym_STAR_EQ] = ACTIONS(2499), + [anon_sym_SLASH_EQ] = ACTIONS(2499), + [anon_sym_PERCENT_EQ] = ACTIONS(2499), + [anon_sym_LT_LT_EQ] = ACTIONS(2499), + [anon_sym_GT_GT_EQ] = ACTIONS(2499), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2499), + [anon_sym_AMP_EQ] = ACTIONS(2499), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2499), + [anon_sym_PLUS_EQ] = ACTIONS(2499), + [anon_sym_DASH_EQ] = ACTIONS(2499), + [anon_sym_PIPE_EQ] = ACTIONS(2499), + [anon_sym_CARET_EQ] = ACTIONS(2499), + [anon_sym_COLON_EQ] = ACTIONS(2499), + [anon_sym_lock] = ACTIONS(2499), + [anon_sym_rlock] = ACTIONS(2499), + [anon_sym_unsafe] = ACTIONS(2499), + [anon_sym_sql] = ACTIONS(2499), + [sym_int_literal] = ACTIONS(2499), + [sym_float_literal] = ACTIONS(2499), + [sym_rune_literal] = ACTIONS(2499), + [anon_sym_SQUOTE] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(2499), + [anon_sym_c_SQUOTE] = ACTIONS(2499), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2499), + [anon_sym_r_DQUOTE] = ACTIONS(2499), + [sym_pseudo_compile_time_identifier] = ACTIONS(2499), + [anon_sym_shared] = ACTIONS(2499), + [anon_sym_map_LBRACK] = ACTIONS(2499), + [anon_sym_chan] = ACTIONS(2499), + [anon_sym_thread] = ACTIONS(2499), + [anon_sym_atomic] = ACTIONS(2499), + [anon_sym_assert] = ACTIONS(2499), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_goto] = ACTIONS(2499), + [anon_sym_break] = ACTIONS(2499), + [anon_sym_continue] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_DOLLARfor] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(2499), + [anon_sym_asm] = ACTIONS(2499), + [anon_sym_AT_LBRACK] = ACTIONS(2499), }, - [393] = { - [sym_line_comment] = STATE(393), - [sym_block_comment] = STATE(393), - [sym__expression] = STATE(2287), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(624), - [sym_mutable_expression] = STATE(3538), - [sym_expression_list] = STATE(3680), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [403] = { + [sym_line_comment] = STATE(403), + [sym_block_comment] = STATE(403), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym__array_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(2503), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_DOT] = ACTIONS(2506), [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(2512), + [anon_sym_fn] = ACTIONS(2515), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_STAR] = ACTIONS(2521), + [anon_sym_RBRACK] = ACTIONS(2524), + [anon_sym_struct] = ACTIONS(2526), + [anon_sym_mut] = ACTIONS(2529), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_BANG] = ACTIONS(2535), + [anon_sym_go] = ACTIONS(2538), + [anon_sym_spawn] = ACTIONS(2541), + [anon_sym_json_DOTdecode] = ACTIONS(2544), + [anon_sym_LBRACK2] = ACTIONS(2547), + [anon_sym_TILDE] = ACTIONS(2518), + [anon_sym_CARET] = ACTIONS(2518), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_LT_DASH] = ACTIONS(2553), + [sym_none] = ACTIONS(2556), + [sym_true] = ACTIONS(2556), + [sym_false] = ACTIONS(2556), + [sym_nil] = ACTIONS(2556), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_DOLLARif] = ACTIONS(2562), + [anon_sym_match] = ACTIONS(2565), + [anon_sym_select] = ACTIONS(2568), + [anon_sym_lock] = ACTIONS(2571), + [anon_sym_rlock] = ACTIONS(2571), + [anon_sym_unsafe] = ACTIONS(2574), + [anon_sym_sql] = ACTIONS(2577), + [sym_int_literal] = ACTIONS(2556), + [sym_float_literal] = ACTIONS(2580), + [sym_rune_literal] = ACTIONS(2580), + [anon_sym_SQUOTE] = ACTIONS(2583), + [anon_sym_DQUOTE] = ACTIONS(2586), + [anon_sym_c_SQUOTE] = ACTIONS(2589), + [anon_sym_c_DQUOTE] = ACTIONS(2592), + [anon_sym_r_SQUOTE] = ACTIONS(2595), + [anon_sym_r_DQUOTE] = ACTIONS(2598), + [sym_pseudo_compile_time_identifier] = ACTIONS(2601), + [anon_sym_shared] = ACTIONS(2604), + [anon_sym_map_LBRACK] = ACTIONS(2607), + [anon_sym_chan] = ACTIONS(2610), + [anon_sym_thread] = ACTIONS(2613), + [anon_sym_atomic] = ACTIONS(2616), + }, + [404] = { + [sym_line_comment] = STATE(404), + [sym_block_comment] = STATE(404), + [ts_builtin_sym_end] = ACTIONS(2619), + [sym_identifier] = ACTIONS(2621), + [anon_sym_LF] = ACTIONS(2621), + [anon_sym_CR] = ACTIONS(2621), + [anon_sym_CR_LF] = ACTIONS(2621), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2621), + [anon_sym_as] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_COMMA] = ACTIONS(2621), + [anon_sym_const] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym___global] = ACTIONS(2621), + [anon_sym_type] = ACTIONS(2621), + [anon_sym_fn] = ACTIONS(2621), + [anon_sym_PLUS] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_SLASH] = ACTIONS(2621), + [anon_sym_PERCENT] = ACTIONS(2621), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_GT] = ACTIONS(2621), + [anon_sym_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_EQ] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_struct] = ACTIONS(2621), + [anon_sym_union] = ACTIONS(2621), + [anon_sym_pub] = ACTIONS(2621), + [anon_sym_mut] = ACTIONS(2621), + [anon_sym_enum] = ACTIONS(2621), + [anon_sym_interface] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_QMARK] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_go] = ACTIONS(2621), + [anon_sym_spawn] = ACTIONS(2621), + [anon_sym_json_DOTdecode] = ACTIONS(2621), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_LBRACK2] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_LT_DASH] = ACTIONS(2621), + [anon_sym_LT_LT] = ACTIONS(2621), + [anon_sym_GT_GT] = ACTIONS(2621), + [anon_sym_GT_GT_GT] = ACTIONS(2621), + [anon_sym_AMP_CARET] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2621), + [sym_none] = ACTIONS(2621), + [sym_true] = ACTIONS(2621), + [sym_false] = ACTIONS(2621), + [sym_nil] = ACTIONS(2621), + [anon_sym_QMARK_DOT] = ACTIONS(2621), + [anon_sym_POUND_LBRACK] = ACTIONS(2621), + [anon_sym_if] = ACTIONS(2621), + [anon_sym_DOLLARif] = ACTIONS(2621), + [anon_sym_is] = ACTIONS(2621), + [anon_sym_BANGis] = ACTIONS(2621), + [anon_sym_in] = ACTIONS(2621), + [anon_sym_BANGin] = ACTIONS(2621), + [anon_sym_match] = ACTIONS(2621), + [anon_sym_select] = ACTIONS(2621), + [anon_sym_STAR_EQ] = ACTIONS(2621), + [anon_sym_SLASH_EQ] = ACTIONS(2621), + [anon_sym_PERCENT_EQ] = ACTIONS(2621), + [anon_sym_LT_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_GT_EQ] = ACTIONS(2621), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2621), + [anon_sym_AMP_EQ] = ACTIONS(2621), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2621), + [anon_sym_PLUS_EQ] = ACTIONS(2621), + [anon_sym_DASH_EQ] = ACTIONS(2621), + [anon_sym_PIPE_EQ] = ACTIONS(2621), + [anon_sym_CARET_EQ] = ACTIONS(2621), + [anon_sym_COLON_EQ] = ACTIONS(2621), + [anon_sym_lock] = ACTIONS(2621), + [anon_sym_rlock] = ACTIONS(2621), + [anon_sym_unsafe] = ACTIONS(2621), + [anon_sym_sql] = ACTIONS(2621), + [sym_int_literal] = ACTIONS(2621), + [sym_float_literal] = ACTIONS(2621), + [sym_rune_literal] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [anon_sym_c_SQUOTE] = ACTIONS(2621), + [anon_sym_c_DQUOTE] = ACTIONS(2621), + [anon_sym_r_SQUOTE] = ACTIONS(2621), + [anon_sym_r_DQUOTE] = ACTIONS(2621), + [sym_pseudo_compile_time_identifier] = ACTIONS(2621), + [anon_sym_shared] = ACTIONS(2621), + [anon_sym_map_LBRACK] = ACTIONS(2621), + [anon_sym_chan] = ACTIONS(2621), + [anon_sym_thread] = ACTIONS(2621), + [anon_sym_atomic] = ACTIONS(2621), + [anon_sym_assert] = ACTIONS(2621), + [anon_sym_defer] = ACTIONS(2621), + [anon_sym_goto] = ACTIONS(2621), + [anon_sym_break] = ACTIONS(2621), + [anon_sym_continue] = ACTIONS(2621), + [anon_sym_return] = ACTIONS(2621), + [anon_sym_DOLLARfor] = ACTIONS(2621), + [anon_sym_for] = ACTIONS(2621), + [anon_sym_POUND] = ACTIONS(2621), + [anon_sym_asm] = ACTIONS(2621), + [anon_sym_AT_LBRACK] = ACTIONS(2621), + }, + [405] = { + [sym_line_comment] = STATE(405), + [sym_block_comment] = STATE(405), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4524), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(2623), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2523), - [anon_sym_LT_DASH] = ACTIONS(2525), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [394] = { - [sym_line_comment] = STATE(394), - [sym_block_comment] = STATE(394), - [sym__expression] = STATE(2287), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(624), - [sym_mutable_expression] = STATE(3538), - [sym_expression_list] = STATE(3685), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [406] = { + [sym_line_comment] = STATE(406), + [sym_block_comment] = STATE(406), + [ts_builtin_sym_end] = ACTIONS(2625), + [sym_identifier] = ACTIONS(2627), + [anon_sym_LF] = ACTIONS(2627), + [anon_sym_CR] = ACTIONS(2627), + [anon_sym_CR_LF] = ACTIONS(2627), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2629), + [anon_sym_as] = ACTIONS(2629), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_COMMA] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym___global] = ACTIONS(2627), + [anon_sym_type] = ACTIONS(2627), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), + [anon_sym_pub] = ACTIONS(2627), + [anon_sym_mut] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_interface] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_QMARK] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_go] = ACTIONS(2627), + [anon_sym_spawn] = ACTIONS(2627), + [anon_sym_json_DOTdecode] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2629), + [anon_sym_LT_DASH] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT] = ACTIONS(2629), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_AMP_CARET] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_or] = ACTIONS(2629), + [sym_none] = ACTIONS(2627), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [sym_nil] = ACTIONS(2627), + [anon_sym_QMARK_DOT] = ACTIONS(2629), + [anon_sym_POUND_LBRACK] = ACTIONS(2629), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_DOLLARif] = ACTIONS(2627), + [anon_sym_is] = ACTIONS(2629), + [anon_sym_BANGis] = ACTIONS(2629), + [anon_sym_in] = ACTIONS(2629), + [anon_sym_BANGin] = ACTIONS(2629), + [anon_sym_match] = ACTIONS(2627), + [anon_sym_select] = ACTIONS(2627), + [anon_sym_STAR_EQ] = ACTIONS(2627), + [anon_sym_SLASH_EQ] = ACTIONS(2627), + [anon_sym_PERCENT_EQ] = ACTIONS(2627), + [anon_sym_LT_LT_EQ] = ACTIONS(2627), + [anon_sym_GT_GT_EQ] = ACTIONS(2627), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2627), + [anon_sym_AMP_EQ] = ACTIONS(2627), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2627), + [anon_sym_PLUS_EQ] = ACTIONS(2627), + [anon_sym_DASH_EQ] = ACTIONS(2627), + [anon_sym_PIPE_EQ] = ACTIONS(2627), + [anon_sym_CARET_EQ] = ACTIONS(2627), + [anon_sym_COLON_EQ] = ACTIONS(2627), + [anon_sym_lock] = ACTIONS(2627), + [anon_sym_rlock] = ACTIONS(2627), + [anon_sym_unsafe] = ACTIONS(2627), + [anon_sym_sql] = ACTIONS(2627), + [sym_int_literal] = ACTIONS(2627), + [sym_float_literal] = ACTIONS(2627), + [sym_rune_literal] = ACTIONS(2627), + [anon_sym_SQUOTE] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [anon_sym_c_SQUOTE] = ACTIONS(2627), + [anon_sym_c_DQUOTE] = ACTIONS(2627), + [anon_sym_r_SQUOTE] = ACTIONS(2627), + [anon_sym_r_DQUOTE] = ACTIONS(2627), + [sym_pseudo_compile_time_identifier] = ACTIONS(2627), + [anon_sym_shared] = ACTIONS(2627), + [anon_sym_map_LBRACK] = ACTIONS(2627), + [anon_sym_chan] = ACTIONS(2627), + [anon_sym_thread] = ACTIONS(2627), + [anon_sym_atomic] = ACTIONS(2627), + [anon_sym_assert] = ACTIONS(2627), + [anon_sym_defer] = ACTIONS(2627), + [anon_sym_goto] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_DOLLARfor] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_POUND] = ACTIONS(2627), + [anon_sym_asm] = ACTIONS(2627), + [anon_sym_AT_LBRACK] = ACTIONS(2627), + }, + [407] = { + [sym_line_comment] = STATE(407), + [sym_block_comment] = STATE(407), + [sym__expression] = STATE(2635), + [sym__expression_without_blocks] = STATE(2688), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_match_arm_type] = STATE(4368), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4040), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__definite_range] = STATE(4358), + [sym_identifier] = ACTIONS(1079), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2523), - [anon_sym_LT_DASH] = ACTIONS(2525), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [395] = { - [sym_line_comment] = STATE(395), - [sym_block_comment] = STATE(395), - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3548), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_range] = STATE(4318), - [sym_identifier] = ACTIONS(2391), + [408] = { + [sym_line_comment] = STATE(408), + [sym_block_comment] = STATE(408), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4524), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1281), }, - [396] = { - [sym_line_comment] = STATE(396), - [sym_block_comment] = STATE(396), - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_range] = STATE(4318), - [sym_identifier] = ACTIONS(1219), + [409] = { + [sym_line_comment] = STATE(409), + [sym_block_comment] = STATE(409), + [ts_builtin_sym_end] = ACTIONS(2637), + [sym_identifier] = ACTIONS(2639), + [anon_sym_LF] = ACTIONS(2639), + [anon_sym_CR] = ACTIONS(2639), + [anon_sym_CR_LF] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2639), + [anon_sym_as] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_COMMA] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2639), + [anon_sym_EQ] = ACTIONS(2639), + [anon_sym___global] = ACTIONS(2639), + [anon_sym_type] = ACTIONS(2639), + [anon_sym_fn] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_SLASH] = ACTIONS(2639), + [anon_sym_PERCENT] = ACTIONS(2639), + [anon_sym_LT] = ACTIONS(2639), + [anon_sym_GT] = ACTIONS(2639), + [anon_sym_EQ_EQ] = ACTIONS(2639), + [anon_sym_BANG_EQ] = ACTIONS(2639), + [anon_sym_LT_EQ] = ACTIONS(2639), + [anon_sym_GT_EQ] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_union] = ACTIONS(2639), + [anon_sym_pub] = ACTIONS(2639), + [anon_sym_mut] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), + [anon_sym_interface] = ACTIONS(2639), + [anon_sym_PLUS_PLUS] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2639), + [anon_sym_QMARK] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_go] = ACTIONS(2639), + [anon_sym_spawn] = ACTIONS(2639), + [anon_sym_json_DOTdecode] = ACTIONS(2639), + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_LBRACK2] = ACTIONS(2639), + [anon_sym_TILDE] = ACTIONS(2639), + [anon_sym_CARET] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_LT_DASH] = ACTIONS(2639), + [anon_sym_LT_LT] = ACTIONS(2639), + [anon_sym_GT_GT] = ACTIONS(2639), + [anon_sym_GT_GT_GT] = ACTIONS(2639), + [anon_sym_AMP_CARET] = ACTIONS(2639), + [anon_sym_AMP_AMP] = ACTIONS(2639), + [anon_sym_PIPE_PIPE] = ACTIONS(2639), + [anon_sym_or] = ACTIONS(2639), + [sym_none] = ACTIONS(2639), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [sym_nil] = ACTIONS(2639), + [anon_sym_QMARK_DOT] = ACTIONS(2639), + [anon_sym_POUND_LBRACK] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_DOLLARif] = ACTIONS(2639), + [anon_sym_is] = ACTIONS(2639), + [anon_sym_BANGis] = ACTIONS(2639), + [anon_sym_in] = ACTIONS(2639), + [anon_sym_BANGin] = ACTIONS(2639), + [anon_sym_match] = ACTIONS(2639), + [anon_sym_select] = ACTIONS(2639), + [anon_sym_STAR_EQ] = ACTIONS(2639), + [anon_sym_SLASH_EQ] = ACTIONS(2639), + [anon_sym_PERCENT_EQ] = ACTIONS(2639), + [anon_sym_LT_LT_EQ] = ACTIONS(2639), + [anon_sym_GT_GT_EQ] = ACTIONS(2639), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2639), + [anon_sym_AMP_EQ] = ACTIONS(2639), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2639), + [anon_sym_PLUS_EQ] = ACTIONS(2639), + [anon_sym_DASH_EQ] = ACTIONS(2639), + [anon_sym_PIPE_EQ] = ACTIONS(2639), + [anon_sym_CARET_EQ] = ACTIONS(2639), + [anon_sym_COLON_EQ] = ACTIONS(2639), + [anon_sym_lock] = ACTIONS(2639), + [anon_sym_rlock] = ACTIONS(2639), + [anon_sym_unsafe] = ACTIONS(2639), + [anon_sym_sql] = ACTIONS(2639), + [sym_int_literal] = ACTIONS(2639), + [sym_float_literal] = ACTIONS(2639), + [sym_rune_literal] = ACTIONS(2639), + [anon_sym_SQUOTE] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2639), + [anon_sym_c_SQUOTE] = ACTIONS(2639), + [anon_sym_c_DQUOTE] = ACTIONS(2639), + [anon_sym_r_SQUOTE] = ACTIONS(2639), + [anon_sym_r_DQUOTE] = ACTIONS(2639), + [sym_pseudo_compile_time_identifier] = ACTIONS(2639), + [anon_sym_shared] = ACTIONS(2639), + [anon_sym_map_LBRACK] = ACTIONS(2639), + [anon_sym_chan] = ACTIONS(2639), + [anon_sym_thread] = ACTIONS(2639), + [anon_sym_atomic] = ACTIONS(2639), + [anon_sym_assert] = ACTIONS(2639), + [anon_sym_defer] = ACTIONS(2639), + [anon_sym_goto] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_DOLLARfor] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_POUND] = ACTIONS(2639), + [anon_sym_asm] = ACTIONS(2639), + [anon_sym_AT_LBRACK] = ACTIONS(2639), + }, + [410] = { + [sym_line_comment] = STATE(410), + [sym_block_comment] = STATE(410), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [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_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_PIPE] = 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_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), + [anon_sym_SQUOTE] = ACTIONS(2643), + [anon_sym_DQUOTE] = ACTIONS(2643), + [anon_sym_c_SQUOTE] = ACTIONS(2643), + [anon_sym_c_DQUOTE] = ACTIONS(2643), + [anon_sym_r_SQUOTE] = ACTIONS(2643), + [anon_sym_r_DQUOTE] = 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), + }, + [411] = { + [sym_line_comment] = STATE(411), + [sym_block_comment] = STATE(411), + [ts_builtin_sym_end] = ACTIONS(2645), + [sym_identifier] = ACTIONS(2647), + [anon_sym_LF] = ACTIONS(2647), + [anon_sym_CR] = ACTIONS(2647), + [anon_sym_CR_LF] = ACTIONS(2647), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2647), + [anon_sym_as] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_COMMA] = ACTIONS(2647), + [anon_sym_const] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym___global] = ACTIONS(2647), + [anon_sym_type] = ACTIONS(2647), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_PERCENT] = ACTIONS(2647), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_GT] = ACTIONS(2647), + [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(2645), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_union] = ACTIONS(2647), + [anon_sym_pub] = ACTIONS(2647), + [anon_sym_mut] = ACTIONS(2647), + [anon_sym_enum] = ACTIONS(2647), + [anon_sym_interface] = ACTIONS(2647), + [anon_sym_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_DASH_DASH] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_go] = ACTIONS(2647), + [anon_sym_spawn] = ACTIONS(2647), + [anon_sym_json_DOTdecode] = ACTIONS(2647), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_LBRACK2] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_LT_DASH] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [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(2647), + [sym_none] = ACTIONS(2647), + [sym_true] = ACTIONS(2647), + [sym_false] = ACTIONS(2647), + [sym_nil] = ACTIONS(2647), + [anon_sym_QMARK_DOT] = ACTIONS(2647), + [anon_sym_POUND_LBRACK] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_DOLLARif] = ACTIONS(2647), + [anon_sym_is] = ACTIONS(2647), + [anon_sym_BANGis] = ACTIONS(2647), + [anon_sym_in] = ACTIONS(2647), + [anon_sym_BANGin] = ACTIONS(2647), + [anon_sym_match] = ACTIONS(2647), + [anon_sym_select] = ACTIONS(2647), + [anon_sym_STAR_EQ] = ACTIONS(2647), + [anon_sym_SLASH_EQ] = ACTIONS(2647), + [anon_sym_PERCENT_EQ] = ACTIONS(2647), + [anon_sym_LT_LT_EQ] = ACTIONS(2647), + [anon_sym_GT_GT_EQ] = ACTIONS(2647), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2647), + [anon_sym_AMP_EQ] = ACTIONS(2647), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2647), + [anon_sym_PLUS_EQ] = ACTIONS(2647), + [anon_sym_DASH_EQ] = ACTIONS(2647), + [anon_sym_PIPE_EQ] = ACTIONS(2647), + [anon_sym_CARET_EQ] = ACTIONS(2647), + [anon_sym_COLON_EQ] = ACTIONS(2647), + [anon_sym_lock] = ACTIONS(2647), + [anon_sym_rlock] = ACTIONS(2647), + [anon_sym_unsafe] = ACTIONS(2647), + [anon_sym_sql] = ACTIONS(2647), + [sym_int_literal] = ACTIONS(2647), + [sym_float_literal] = ACTIONS(2647), + [sym_rune_literal] = ACTIONS(2647), + [anon_sym_SQUOTE] = ACTIONS(2647), + [anon_sym_DQUOTE] = ACTIONS(2647), + [anon_sym_c_SQUOTE] = ACTIONS(2647), + [anon_sym_c_DQUOTE] = ACTIONS(2647), + [anon_sym_r_SQUOTE] = ACTIONS(2647), + [anon_sym_r_DQUOTE] = ACTIONS(2647), + [sym_pseudo_compile_time_identifier] = ACTIONS(2647), + [anon_sym_shared] = ACTIONS(2647), + [anon_sym_map_LBRACK] = ACTIONS(2647), + [anon_sym_chan] = ACTIONS(2647), + [anon_sym_thread] = ACTIONS(2647), + [anon_sym_atomic] = ACTIONS(2647), + [anon_sym_assert] = ACTIONS(2647), + [anon_sym_defer] = ACTIONS(2647), + [anon_sym_goto] = ACTIONS(2647), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_DOLLARfor] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_POUND] = ACTIONS(2647), + [anon_sym_asm] = ACTIONS(2647), + [anon_sym_AT_LBRACK] = ACTIONS(2647), + }, + [412] = { + [sym_line_comment] = STATE(412), + [sym_block_comment] = STATE(412), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4503), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1281), }, - [397] = { - [sym_line_comment] = STATE(397), - [sym_block_comment] = STATE(397), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1398), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1396), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym__array_repeat1] = STATE(456), - [sym_identifier] = ACTIONS(1299), + [413] = { + [sym_line_comment] = STATE(413), + [sym_block_comment] = STATE(413), + [ts_builtin_sym_end] = ACTIONS(2651), + [sym_identifier] = ACTIONS(2653), + [anon_sym_LF] = ACTIONS(2653), + [anon_sym_CR] = ACTIONS(2653), + [anon_sym_CR_LF] = ACTIONS(2653), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2653), + [anon_sym_as] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_COMMA] = ACTIONS(2653), + [anon_sym_const] = ACTIONS(2653), + [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_EQ] = ACTIONS(2653), + [anon_sym___global] = ACTIONS(2653), + [anon_sym_type] = ACTIONS(2653), + [anon_sym_fn] = ACTIONS(2653), + [anon_sym_PLUS] = ACTIONS(2653), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_STAR] = ACTIONS(2653), + [anon_sym_SLASH] = ACTIONS(2653), + [anon_sym_PERCENT] = ACTIONS(2653), + [anon_sym_LT] = ACTIONS(2653), + [anon_sym_GT] = ACTIONS(2653), + [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(2651), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_union] = ACTIONS(2653), + [anon_sym_pub] = ACTIONS(2653), + [anon_sym_mut] = ACTIONS(2653), + [anon_sym_enum] = ACTIONS(2653), + [anon_sym_interface] = ACTIONS(2653), + [anon_sym_PLUS_PLUS] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2653), + [anon_sym_QMARK] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2653), + [anon_sym_go] = ACTIONS(2653), + [anon_sym_spawn] = ACTIONS(2653), + [anon_sym_json_DOTdecode] = ACTIONS(2653), + [anon_sym_PIPE] = ACTIONS(2653), + [anon_sym_LBRACK2] = ACTIONS(2653), + [anon_sym_TILDE] = ACTIONS(2653), + [anon_sym_CARET] = ACTIONS(2653), + [anon_sym_AMP] = ACTIONS(2653), + [anon_sym_LT_DASH] = ACTIONS(2653), + [anon_sym_LT_LT] = ACTIONS(2653), + [anon_sym_GT_GT] = ACTIONS(2653), + [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(2653), + [sym_none] = ACTIONS(2653), + [sym_true] = ACTIONS(2653), + [sym_false] = ACTIONS(2653), + [sym_nil] = ACTIONS(2653), + [anon_sym_QMARK_DOT] = ACTIONS(2653), + [anon_sym_POUND_LBRACK] = ACTIONS(2653), + [anon_sym_if] = ACTIONS(2653), + [anon_sym_DOLLARif] = ACTIONS(2653), + [anon_sym_is] = ACTIONS(2653), + [anon_sym_BANGis] = ACTIONS(2653), + [anon_sym_in] = ACTIONS(2653), + [anon_sym_BANGin] = ACTIONS(2653), + [anon_sym_match] = ACTIONS(2653), + [anon_sym_select] = ACTIONS(2653), + [anon_sym_STAR_EQ] = ACTIONS(2653), + [anon_sym_SLASH_EQ] = ACTIONS(2653), + [anon_sym_PERCENT_EQ] = ACTIONS(2653), + [anon_sym_LT_LT_EQ] = ACTIONS(2653), + [anon_sym_GT_GT_EQ] = ACTIONS(2653), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2653), + [anon_sym_AMP_EQ] = ACTIONS(2653), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2653), + [anon_sym_PLUS_EQ] = ACTIONS(2653), + [anon_sym_DASH_EQ] = ACTIONS(2653), + [anon_sym_PIPE_EQ] = ACTIONS(2653), + [anon_sym_CARET_EQ] = ACTIONS(2653), + [anon_sym_COLON_EQ] = ACTIONS(2653), + [anon_sym_lock] = ACTIONS(2653), + [anon_sym_rlock] = ACTIONS(2653), + [anon_sym_unsafe] = ACTIONS(2653), + [anon_sym_sql] = ACTIONS(2653), + [sym_int_literal] = ACTIONS(2653), + [sym_float_literal] = ACTIONS(2653), + [sym_rune_literal] = ACTIONS(2653), + [anon_sym_SQUOTE] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2653), + [anon_sym_c_SQUOTE] = ACTIONS(2653), + [anon_sym_c_DQUOTE] = ACTIONS(2653), + [anon_sym_r_SQUOTE] = ACTIONS(2653), + [anon_sym_r_DQUOTE] = ACTIONS(2653), + [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_shared] = ACTIONS(2653), + [anon_sym_map_LBRACK] = ACTIONS(2653), + [anon_sym_chan] = ACTIONS(2653), + [anon_sym_thread] = ACTIONS(2653), + [anon_sym_atomic] = ACTIONS(2653), + [anon_sym_assert] = ACTIONS(2653), + [anon_sym_defer] = ACTIONS(2653), + [anon_sym_goto] = ACTIONS(2653), + [anon_sym_break] = ACTIONS(2653), + [anon_sym_continue] = ACTIONS(2653), + [anon_sym_return] = ACTIONS(2653), + [anon_sym_DOLLARfor] = ACTIONS(2653), + [anon_sym_for] = ACTIONS(2653), + [anon_sym_POUND] = ACTIONS(2653), + [anon_sym_asm] = ACTIONS(2653), + [anon_sym_AT_LBRACK] = ACTIONS(2653), + }, + [414] = { + [sym_line_comment] = STATE(414), + [sym_block_comment] = STATE(414), + [ts_builtin_sym_end] = ACTIONS(2655), + [sym_identifier] = ACTIONS(2657), + [anon_sym_LF] = ACTIONS(2657), + [anon_sym_CR] = ACTIONS(2657), + [anon_sym_CR_LF] = ACTIONS(2657), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2657), + [anon_sym_as] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_COMMA] = ACTIONS(2657), + [anon_sym_const] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_EQ] = ACTIONS(2657), + [anon_sym___global] = ACTIONS(2657), + [anon_sym_type] = ACTIONS(2657), + [anon_sym_fn] = ACTIONS(2657), + [anon_sym_PLUS] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2657), + [anon_sym_SLASH] = ACTIONS(2657), + [anon_sym_PERCENT] = ACTIONS(2657), + [anon_sym_LT] = ACTIONS(2657), + [anon_sym_GT] = ACTIONS(2657), + [anon_sym_EQ_EQ] = ACTIONS(2657), + [anon_sym_BANG_EQ] = ACTIONS(2657), + [anon_sym_LT_EQ] = ACTIONS(2657), + [anon_sym_GT_EQ] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2655), + [anon_sym_struct] = ACTIONS(2657), + [anon_sym_union] = ACTIONS(2657), + [anon_sym_pub] = ACTIONS(2657), + [anon_sym_mut] = ACTIONS(2657), + [anon_sym_enum] = ACTIONS(2657), + [anon_sym_interface] = ACTIONS(2657), + [anon_sym_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_DASH_DASH] = ACTIONS(2657), + [anon_sym_QMARK] = ACTIONS(2657), + [anon_sym_BANG] = ACTIONS(2657), + [anon_sym_go] = ACTIONS(2657), + [anon_sym_spawn] = ACTIONS(2657), + [anon_sym_json_DOTdecode] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(2657), + [anon_sym_LBRACK2] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2657), + [anon_sym_CARET] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2657), + [anon_sym_LT_DASH] = ACTIONS(2657), + [anon_sym_LT_LT] = ACTIONS(2657), + [anon_sym_GT_GT] = ACTIONS(2657), + [anon_sym_GT_GT_GT] = ACTIONS(2657), + [anon_sym_AMP_CARET] = ACTIONS(2657), + [anon_sym_AMP_AMP] = ACTIONS(2657), + [anon_sym_PIPE_PIPE] = ACTIONS(2657), + [anon_sym_or] = ACTIONS(2657), + [sym_none] = ACTIONS(2657), + [sym_true] = ACTIONS(2657), + [sym_false] = ACTIONS(2657), + [sym_nil] = ACTIONS(2657), + [anon_sym_QMARK_DOT] = ACTIONS(2657), + [anon_sym_POUND_LBRACK] = ACTIONS(2657), + [anon_sym_if] = ACTIONS(2657), + [anon_sym_DOLLARif] = ACTIONS(2657), + [anon_sym_is] = ACTIONS(2657), + [anon_sym_BANGis] = ACTIONS(2657), + [anon_sym_in] = ACTIONS(2657), + [anon_sym_BANGin] = ACTIONS(2657), + [anon_sym_match] = ACTIONS(2657), + [anon_sym_select] = ACTIONS(2657), + [anon_sym_STAR_EQ] = ACTIONS(2657), + [anon_sym_SLASH_EQ] = ACTIONS(2657), + [anon_sym_PERCENT_EQ] = ACTIONS(2657), + [anon_sym_LT_LT_EQ] = ACTIONS(2657), + [anon_sym_GT_GT_EQ] = ACTIONS(2657), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2657), + [anon_sym_AMP_EQ] = ACTIONS(2657), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2657), + [anon_sym_PLUS_EQ] = ACTIONS(2657), + [anon_sym_DASH_EQ] = ACTIONS(2657), + [anon_sym_PIPE_EQ] = ACTIONS(2657), + [anon_sym_CARET_EQ] = ACTIONS(2657), + [anon_sym_COLON_EQ] = ACTIONS(2657), + [anon_sym_lock] = ACTIONS(2657), + [anon_sym_rlock] = ACTIONS(2657), + [anon_sym_unsafe] = ACTIONS(2657), + [anon_sym_sql] = ACTIONS(2657), + [sym_int_literal] = ACTIONS(2657), + [sym_float_literal] = ACTIONS(2657), + [sym_rune_literal] = ACTIONS(2657), + [anon_sym_SQUOTE] = ACTIONS(2657), + [anon_sym_DQUOTE] = ACTIONS(2657), + [anon_sym_c_SQUOTE] = ACTIONS(2657), + [anon_sym_c_DQUOTE] = ACTIONS(2657), + [anon_sym_r_SQUOTE] = ACTIONS(2657), + [anon_sym_r_DQUOTE] = ACTIONS(2657), + [sym_pseudo_compile_time_identifier] = ACTIONS(2657), + [anon_sym_shared] = ACTIONS(2657), + [anon_sym_map_LBRACK] = ACTIONS(2657), + [anon_sym_chan] = ACTIONS(2657), + [anon_sym_thread] = ACTIONS(2657), + [anon_sym_atomic] = ACTIONS(2657), + [anon_sym_assert] = ACTIONS(2657), + [anon_sym_defer] = ACTIONS(2657), + [anon_sym_goto] = ACTIONS(2657), + [anon_sym_break] = ACTIONS(2657), + [anon_sym_continue] = ACTIONS(2657), + [anon_sym_return] = ACTIONS(2657), + [anon_sym_DOLLARfor] = ACTIONS(2657), + [anon_sym_for] = ACTIONS(2657), + [anon_sym_POUND] = ACTIONS(2657), + [anon_sym_asm] = ACTIONS(2657), + [anon_sym_AT_LBRACK] = ACTIONS(2657), + }, + [415] = { + [sym_line_comment] = STATE(415), + [sym_block_comment] = STATE(415), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1399), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1398), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym__array_repeat1] = STATE(355), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(2541), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1347), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1404), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [398] = { - [sym_line_comment] = STATE(398), - [sym_block_comment] = STATE(398), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4341), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [416] = { + [sym_line_comment] = STATE(416), + [sym_block_comment] = STATE(416), + [sym__expression] = STATE(2650), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_range] = STATE(4447), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(2543), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1486), }, - [399] = { - [sym_line_comment] = STATE(399), - [sym_block_comment] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(2545), - [sym_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2547), - [anon_sym_CR] = ACTIONS(2547), - [anon_sym_CR_LF] = ACTIONS(2547), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_COMMA] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_EQ] = ACTIONS(2547), - [anon_sym___global] = ACTIONS(2547), - [anon_sym_type] = ACTIONS(2547), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_fn] = ACTIONS(2547), - [anon_sym_PLUS] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_STAR] = ACTIONS(2547), - [anon_sym_SLASH] = ACTIONS(2547), - [anon_sym_PERCENT] = ACTIONS(2547), - [anon_sym_LT] = ACTIONS(2547), - [anon_sym_GT] = ACTIONS(2547), - [anon_sym_EQ_EQ] = ACTIONS(2547), - [anon_sym_BANG_EQ] = ACTIONS(2547), - [anon_sym_LT_EQ] = ACTIONS(2547), - [anon_sym_GT_EQ] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2545), - [anon_sym_struct] = ACTIONS(2547), - [anon_sym_union] = ACTIONS(2547), - [anon_sym_pub] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_enum] = ACTIONS(2547), - [anon_sym_interface] = ACTIONS(2547), - [anon_sym_PLUS_PLUS] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_QMARK] = ACTIONS(2547), - [anon_sym_BANG] = ACTIONS(2547), - [anon_sym_go] = ACTIONS(2547), - [anon_sym_spawn] = ACTIONS(2547), - [anon_sym_json_DOTdecode] = ACTIONS(2547), - [anon_sym_LBRACK2] = ACTIONS(2547), - [anon_sym_TILDE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [anon_sym_AMP] = ACTIONS(2547), - [anon_sym_LT_DASH] = ACTIONS(2547), - [anon_sym_LT_LT] = ACTIONS(2547), - [anon_sym_GT_GT] = ACTIONS(2547), - [anon_sym_GT_GT_GT] = ACTIONS(2547), - [anon_sym_AMP_CARET] = ACTIONS(2547), - [anon_sym_AMP_AMP] = ACTIONS(2547), - [anon_sym_PIPE_PIPE] = ACTIONS(2547), - [anon_sym_or] = ACTIONS(2547), - [sym_none] = ACTIONS(2547), - [sym_true] = ACTIONS(2547), - [sym_false] = ACTIONS(2547), - [sym_nil] = ACTIONS(2547), - [anon_sym_QMARK_DOT] = ACTIONS(2547), - [anon_sym_POUND_LBRACK] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_DOLLARif] = ACTIONS(2547), - [anon_sym_is] = ACTIONS(2547), - [anon_sym_BANGis] = ACTIONS(2547), - [anon_sym_in] = ACTIONS(2547), - [anon_sym_BANGin] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_select] = ACTIONS(2547), - [anon_sym_STAR_EQ] = ACTIONS(2547), - [anon_sym_SLASH_EQ] = ACTIONS(2547), - [anon_sym_PERCENT_EQ] = ACTIONS(2547), - [anon_sym_LT_LT_EQ] = ACTIONS(2547), - [anon_sym_GT_GT_EQ] = ACTIONS(2547), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2547), - [anon_sym_AMP_EQ] = ACTIONS(2547), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2547), - [anon_sym_PLUS_EQ] = ACTIONS(2547), - [anon_sym_DASH_EQ] = ACTIONS(2547), - [anon_sym_PIPE_EQ] = ACTIONS(2547), - [anon_sym_CARET_EQ] = ACTIONS(2547), - [anon_sym_COLON_EQ] = ACTIONS(2547), - [anon_sym_lock] = ACTIONS(2547), - [anon_sym_rlock] = ACTIONS(2547), - [anon_sym_unsafe] = ACTIONS(2547), - [anon_sym_sql] = ACTIONS(2547), - [sym_int_literal] = ACTIONS(2547), - [sym_float_literal] = ACTIONS(2547), - [sym_rune_literal] = ACTIONS(2547), - [anon_sym_SQUOTE] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [anon_sym_c_SQUOTE] = ACTIONS(2547), - [anon_sym_c_DQUOTE] = ACTIONS(2547), - [anon_sym_r_SQUOTE] = ACTIONS(2547), - [anon_sym_r_DQUOTE] = ACTIONS(2547), - [sym_pseudo_compile_time_identifier] = ACTIONS(2547), - [anon_sym_shared] = ACTIONS(2547), - [anon_sym_map_LBRACK] = ACTIONS(2547), - [anon_sym_chan] = ACTIONS(2547), - [anon_sym_thread] = ACTIONS(2547), - [anon_sym_atomic] = ACTIONS(2547), - [anon_sym_assert] = ACTIONS(2547), - [anon_sym_defer] = ACTIONS(2547), - [anon_sym_goto] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_DOLLARfor] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(2547), - [anon_sym_asm] = ACTIONS(2547), - [anon_sym_AT_LBRACK] = ACTIONS(2547), - }, - [400] = { - [sym_line_comment] = STATE(400), - [sym_block_comment] = STATE(400), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4346), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [417] = { + [sym_line_comment] = STATE(417), + [sym_block_comment] = STATE(417), + [sym__expression] = STATE(2650), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3638), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_range] = STATE(4447), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1486), }, - [401] = { - [sym_line_comment] = STATE(401), - [sym_block_comment] = STATE(401), - [sym__expression] = STATE(953), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(653), - [sym_mutable_expression] = STATE(1413), - [sym_expression_list] = STATE(1486), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [418] = { + [sym_line_comment] = STATE(418), + [sym_block_comment] = STATE(418), + [sym__expression] = STATE(1263), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_string_interpolation_repeat1] = STATE(466), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(2661), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_CARET] = ACTIONS(2555), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym_LT_DASH] = ACTIONS(2567), - [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(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2671), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_CARET] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_LT_DASH] = ACTIONS(2675), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [402] = { - [sym_line_comment] = STATE(402), - [sym_block_comment] = STATE(402), - [ts_builtin_sym_end] = ACTIONS(2583), - [sym_identifier] = ACTIONS(2585), - [anon_sym_LF] = ACTIONS(2585), - [anon_sym_CR] = ACTIONS(2585), - [anon_sym_CR_LF] = ACTIONS(2585), + [419] = { + [sym_line_comment] = STATE(419), + [sym_block_comment] = STATE(419), + [ts_builtin_sym_end] = ACTIONS(2681), + [sym_identifier] = ACTIONS(2683), + [anon_sym_LF] = ACTIONS(2683), + [anon_sym_CR] = ACTIONS(2683), + [anon_sym_CR_LF] = ACTIONS(2683), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2585), - [anon_sym_as] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_COMMA] = ACTIONS(2585), - [anon_sym_const] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2585), - [anon_sym_EQ] = ACTIONS(2585), - [anon_sym___global] = ACTIONS(2585), - [anon_sym_type] = ACTIONS(2585), - [anon_sym_PIPE] = ACTIONS(2585), - [anon_sym_fn] = ACTIONS(2585), - [anon_sym_PLUS] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_SLASH] = ACTIONS(2585), - [anon_sym_PERCENT] = ACTIONS(2585), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_GT] = ACTIONS(2585), - [anon_sym_EQ_EQ] = ACTIONS(2585), - [anon_sym_BANG_EQ] = ACTIONS(2585), - [anon_sym_LT_EQ] = ACTIONS(2585), - [anon_sym_GT_EQ] = ACTIONS(2585), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_struct] = ACTIONS(2585), - [anon_sym_union] = ACTIONS(2585), - [anon_sym_pub] = ACTIONS(2585), - [anon_sym_mut] = ACTIONS(2585), - [anon_sym_enum] = ACTIONS(2585), - [anon_sym_interface] = ACTIONS(2585), - [anon_sym_PLUS_PLUS] = ACTIONS(2585), - [anon_sym_DASH_DASH] = ACTIONS(2585), - [anon_sym_QMARK] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(2587), - [anon_sym_go] = ACTIONS(2585), - [anon_sym_spawn] = ACTIONS(2585), - [anon_sym_json_DOTdecode] = ACTIONS(2585), - [anon_sym_LBRACK2] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [anon_sym_CARET] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2585), - [anon_sym_LT_DASH] = ACTIONS(2585), - [anon_sym_LT_LT] = ACTIONS(2585), - [anon_sym_GT_GT] = ACTIONS(2585), - [anon_sym_GT_GT_GT] = ACTIONS(2585), - [anon_sym_AMP_CARET] = ACTIONS(2585), - [anon_sym_AMP_AMP] = ACTIONS(2585), - [anon_sym_PIPE_PIPE] = ACTIONS(2585), - [anon_sym_or] = ACTIONS(2585), - [sym_none] = ACTIONS(2585), - [sym_true] = ACTIONS(2585), - [sym_false] = ACTIONS(2585), - [sym_nil] = ACTIONS(2585), - [anon_sym_QMARK_DOT] = ACTIONS(2585), - [anon_sym_POUND_LBRACK] = ACTIONS(2585), - [anon_sym_if] = ACTIONS(2585), - [anon_sym_DOLLARif] = ACTIONS(2585), - [anon_sym_is] = ACTIONS(2585), - [anon_sym_BANGis] = ACTIONS(2585), - [anon_sym_in] = ACTIONS(2585), - [anon_sym_BANGin] = ACTIONS(2585), - [anon_sym_match] = ACTIONS(2585), - [anon_sym_select] = ACTIONS(2585), - [anon_sym_STAR_EQ] = ACTIONS(2585), - [anon_sym_SLASH_EQ] = ACTIONS(2585), - [anon_sym_PERCENT_EQ] = ACTIONS(2585), - [anon_sym_LT_LT_EQ] = ACTIONS(2585), - [anon_sym_GT_GT_EQ] = ACTIONS(2585), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2585), - [anon_sym_AMP_EQ] = ACTIONS(2585), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2585), - [anon_sym_PLUS_EQ] = ACTIONS(2585), - [anon_sym_DASH_EQ] = ACTIONS(2585), - [anon_sym_PIPE_EQ] = ACTIONS(2585), - [anon_sym_CARET_EQ] = ACTIONS(2585), - [anon_sym_COLON_EQ] = ACTIONS(2585), - [anon_sym_lock] = ACTIONS(2585), - [anon_sym_rlock] = ACTIONS(2585), - [anon_sym_unsafe] = ACTIONS(2585), - [anon_sym_sql] = ACTIONS(2585), - [sym_int_literal] = ACTIONS(2585), - [sym_float_literal] = ACTIONS(2585), - [sym_rune_literal] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2585), - [anon_sym_DQUOTE] = ACTIONS(2585), - [anon_sym_c_SQUOTE] = ACTIONS(2585), - [anon_sym_c_DQUOTE] = ACTIONS(2585), - [anon_sym_r_SQUOTE] = ACTIONS(2585), - [anon_sym_r_DQUOTE] = ACTIONS(2585), - [sym_pseudo_compile_time_identifier] = ACTIONS(2585), - [anon_sym_shared] = ACTIONS(2585), - [anon_sym_map_LBRACK] = ACTIONS(2585), - [anon_sym_chan] = ACTIONS(2585), - [anon_sym_thread] = ACTIONS(2585), - [anon_sym_atomic] = ACTIONS(2585), - [anon_sym_assert] = ACTIONS(2585), - [anon_sym_defer] = ACTIONS(2585), - [anon_sym_goto] = ACTIONS(2585), - [anon_sym_break] = ACTIONS(2585), - [anon_sym_continue] = ACTIONS(2585), - [anon_sym_return] = ACTIONS(2585), - [anon_sym_DOLLARfor] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2585), - [anon_sym_POUND] = ACTIONS(2585), - [anon_sym_asm] = ACTIONS(2585), - [anon_sym_AT_LBRACK] = ACTIONS(2585), + [anon_sym_DOT] = ACTIONS(2683), + [anon_sym_as] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_COMMA] = ACTIONS(2683), + [anon_sym_const] = ACTIONS(2683), + [anon_sym_LPAREN] = ACTIONS(2683), + [anon_sym_EQ] = ACTIONS(2683), + [anon_sym___global] = ACTIONS(2683), + [anon_sym_type] = ACTIONS(2683), + [anon_sym_fn] = ACTIONS(2683), + [anon_sym_PLUS] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(2683), + [anon_sym_SLASH] = ACTIONS(2683), + [anon_sym_PERCENT] = ACTIONS(2683), + [anon_sym_LT] = ACTIONS(2683), + [anon_sym_GT] = ACTIONS(2683), + [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(2681), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2683), + [anon_sym_pub] = ACTIONS(2683), + [anon_sym_mut] = ACTIONS(2683), + [anon_sym_enum] = ACTIONS(2683), + [anon_sym_interface] = ACTIONS(2683), + [anon_sym_PLUS_PLUS] = ACTIONS(2683), + [anon_sym_DASH_DASH] = ACTIONS(2683), + [anon_sym_QMARK] = ACTIONS(2683), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_go] = ACTIONS(2683), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(2683), + [anon_sym_PIPE] = ACTIONS(2683), + [anon_sym_LBRACK2] = ACTIONS(2683), + [anon_sym_TILDE] = ACTIONS(2683), + [anon_sym_CARET] = ACTIONS(2683), + [anon_sym_AMP] = ACTIONS(2683), + [anon_sym_LT_DASH] = ACTIONS(2683), + [anon_sym_LT_LT] = ACTIONS(2683), + [anon_sym_GT_GT] = ACTIONS(2683), + [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(2683), + [sym_none] = ACTIONS(2683), + [sym_true] = ACTIONS(2683), + [sym_false] = ACTIONS(2683), + [sym_nil] = ACTIONS(2683), + [anon_sym_QMARK_DOT] = ACTIONS(2683), + [anon_sym_POUND_LBRACK] = ACTIONS(2683), + [anon_sym_if] = ACTIONS(2683), + [anon_sym_DOLLARif] = ACTIONS(2683), + [anon_sym_is] = ACTIONS(2683), + [anon_sym_BANGis] = ACTIONS(2683), + [anon_sym_in] = ACTIONS(2683), + [anon_sym_BANGin] = ACTIONS(2683), + [anon_sym_match] = ACTIONS(2683), + [anon_sym_select] = ACTIONS(2683), + [anon_sym_STAR_EQ] = ACTIONS(2683), + [anon_sym_SLASH_EQ] = ACTIONS(2683), + [anon_sym_PERCENT_EQ] = ACTIONS(2683), + [anon_sym_LT_LT_EQ] = ACTIONS(2683), + [anon_sym_GT_GT_EQ] = ACTIONS(2683), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2683), + [anon_sym_AMP_EQ] = ACTIONS(2683), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2683), + [anon_sym_PLUS_EQ] = ACTIONS(2683), + [anon_sym_DASH_EQ] = ACTIONS(2683), + [anon_sym_PIPE_EQ] = ACTIONS(2683), + [anon_sym_CARET_EQ] = ACTIONS(2683), + [anon_sym_COLON_EQ] = ACTIONS(2683), + [anon_sym_lock] = ACTIONS(2683), + [anon_sym_rlock] = ACTIONS(2683), + [anon_sym_unsafe] = ACTIONS(2683), + [anon_sym_sql] = ACTIONS(2683), + [sym_int_literal] = ACTIONS(2683), + [sym_float_literal] = ACTIONS(2683), + [sym_rune_literal] = ACTIONS(2683), + [anon_sym_SQUOTE] = ACTIONS(2683), + [anon_sym_DQUOTE] = ACTIONS(2683), + [anon_sym_c_SQUOTE] = ACTIONS(2683), + [anon_sym_c_DQUOTE] = ACTIONS(2683), + [anon_sym_r_SQUOTE] = ACTIONS(2683), + [anon_sym_r_DQUOTE] = ACTIONS(2683), + [sym_pseudo_compile_time_identifier] = ACTIONS(2683), + [anon_sym_shared] = ACTIONS(2683), + [anon_sym_map_LBRACK] = ACTIONS(2683), + [anon_sym_chan] = ACTIONS(2683), + [anon_sym_thread] = ACTIONS(2683), + [anon_sym_atomic] = ACTIONS(2683), + [anon_sym_assert] = ACTIONS(2683), + [anon_sym_defer] = ACTIONS(2683), + [anon_sym_goto] = ACTIONS(2683), + [anon_sym_break] = ACTIONS(2683), + [anon_sym_continue] = ACTIONS(2683), + [anon_sym_return] = ACTIONS(2683), + [anon_sym_DOLLARfor] = ACTIONS(2683), + [anon_sym_for] = ACTIONS(2683), + [anon_sym_POUND] = ACTIONS(2683), + [anon_sym_asm] = ACTIONS(2683), + [anon_sym_AT_LBRACK] = ACTIONS(2683), }, - [403] = { - [sym_line_comment] = STATE(403), - [sym_block_comment] = STATE(403), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym__array_repeat1] = STATE(403), - [sym_identifier] = ACTIONS(2589), + [420] = { + [sym_line_comment] = STATE(420), + [sym_block_comment] = STATE(420), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4464), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2592), - [anon_sym_LBRACE] = ACTIONS(2595), - [anon_sym_LPAREN] = ACTIONS(2598), - [anon_sym_fn] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2604), - [anon_sym_DASH] = ACTIONS(2604), - [anon_sym_STAR] = ACTIONS(2607), - [anon_sym_RBRACK] = ACTIONS(2610), - [anon_sym_struct] = ACTIONS(2612), - [anon_sym_mut] = ACTIONS(2615), - [anon_sym_QMARK] = ACTIONS(2618), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2627), - [anon_sym_json_DOTdecode] = ACTIONS(2630), - [anon_sym_LBRACK2] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2604), - [anon_sym_CARET] = ACTIONS(2604), - [anon_sym_AMP] = ACTIONS(2636), - [anon_sym_LT_DASH] = ACTIONS(2639), - [sym_none] = ACTIONS(2642), - [sym_true] = ACTIONS(2642), - [sym_false] = ACTIONS(2642), - [sym_nil] = ACTIONS(2642), - [anon_sym_if] = ACTIONS(2645), - [anon_sym_DOLLARif] = ACTIONS(2648), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_select] = ACTIONS(2654), - [anon_sym_lock] = ACTIONS(2657), - [anon_sym_rlock] = ACTIONS(2657), - [anon_sym_unsafe] = ACTIONS(2660), - [anon_sym_sql] = ACTIONS(2663), - [sym_int_literal] = ACTIONS(2642), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_SQUOTE] = ACTIONS(2669), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_c_SQUOTE] = ACTIONS(2675), - [anon_sym_c_DQUOTE] = ACTIONS(2678), - [anon_sym_r_SQUOTE] = ACTIONS(2681), - [anon_sym_r_DQUOTE] = ACTIONS(2684), - [sym_pseudo_compile_time_identifier] = ACTIONS(2687), - [anon_sym_shared] = ACTIONS(2690), - [anon_sym_map_LBRACK] = ACTIONS(2693), - [anon_sym_chan] = ACTIONS(2696), - [anon_sym_thread] = ACTIONS(2699), - [anon_sym_atomic] = ACTIONS(2702), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [404] = { - [sym_line_comment] = STATE(404), - [sym_block_comment] = STATE(404), - [ts_builtin_sym_end] = ACTIONS(2705), - [sym_identifier] = ACTIONS(2707), - [anon_sym_LF] = ACTIONS(2707), - [anon_sym_CR] = ACTIONS(2707), - [anon_sym_CR_LF] = ACTIONS(2707), + [421] = { + [sym_line_comment] = STATE(421), + [sym_block_comment] = STATE(421), + [ts_builtin_sym_end] = ACTIONS(2687), + [sym_identifier] = ACTIONS(2689), + [anon_sym_LF] = ACTIONS(2689), + [anon_sym_CR] = ACTIONS(2689), + [anon_sym_CR_LF] = ACTIONS(2689), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2707), - [anon_sym_as] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2707), - [anon_sym_COMMA] = ACTIONS(2707), - [anon_sym_const] = ACTIONS(2707), - [anon_sym_LPAREN] = ACTIONS(2707), - [anon_sym_EQ] = ACTIONS(2707), - [anon_sym___global] = ACTIONS(2707), - [anon_sym_type] = ACTIONS(2707), - [anon_sym_PIPE] = ACTIONS(2707), - [anon_sym_fn] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_SLASH] = ACTIONS(2707), - [anon_sym_PERCENT] = ACTIONS(2707), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_GT] = ACTIONS(2707), - [anon_sym_EQ_EQ] = ACTIONS(2707), - [anon_sym_BANG_EQ] = ACTIONS(2707), - [anon_sym_LT_EQ] = ACTIONS(2707), - [anon_sym_GT_EQ] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2705), - [anon_sym_struct] = ACTIONS(2707), - [anon_sym_union] = ACTIONS(2707), - [anon_sym_pub] = ACTIONS(2707), - [anon_sym_mut] = ACTIONS(2707), - [anon_sym_enum] = ACTIONS(2707), - [anon_sym_interface] = ACTIONS(2707), - [anon_sym_PLUS_PLUS] = ACTIONS(2707), - [anon_sym_DASH_DASH] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(2707), - [anon_sym_BANG] = ACTIONS(2707), - [anon_sym_go] = ACTIONS(2707), - [anon_sym_spawn] = ACTIONS(2707), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2707), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2707), - [anon_sym_LT_DASH] = ACTIONS(2707), - [anon_sym_LT_LT] = ACTIONS(2707), - [anon_sym_GT_GT] = ACTIONS(2707), - [anon_sym_GT_GT_GT] = ACTIONS(2707), - [anon_sym_AMP_CARET] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(2707), - [anon_sym_PIPE_PIPE] = ACTIONS(2707), - [anon_sym_or] = ACTIONS(2707), - [sym_none] = ACTIONS(2707), - [sym_true] = ACTIONS(2707), - [sym_false] = ACTIONS(2707), - [sym_nil] = ACTIONS(2707), - [anon_sym_QMARK_DOT] = ACTIONS(2707), - [anon_sym_POUND_LBRACK] = ACTIONS(2707), - [anon_sym_if] = ACTIONS(2707), - [anon_sym_DOLLARif] = ACTIONS(2707), - [anon_sym_is] = ACTIONS(2707), - [anon_sym_BANGis] = ACTIONS(2707), - [anon_sym_in] = ACTIONS(2707), - [anon_sym_BANGin] = ACTIONS(2707), - [anon_sym_match] = ACTIONS(2707), - [anon_sym_select] = ACTIONS(2707), - [anon_sym_STAR_EQ] = ACTIONS(2707), - [anon_sym_SLASH_EQ] = ACTIONS(2707), - [anon_sym_PERCENT_EQ] = ACTIONS(2707), - [anon_sym_LT_LT_EQ] = ACTIONS(2707), - [anon_sym_GT_GT_EQ] = ACTIONS(2707), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2707), - [anon_sym_AMP_EQ] = ACTIONS(2707), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2707), - [anon_sym_PLUS_EQ] = ACTIONS(2707), - [anon_sym_DASH_EQ] = ACTIONS(2707), - [anon_sym_PIPE_EQ] = ACTIONS(2707), - [anon_sym_CARET_EQ] = ACTIONS(2707), - [anon_sym_COLON_EQ] = ACTIONS(2707), - [anon_sym_lock] = ACTIONS(2707), - [anon_sym_rlock] = ACTIONS(2707), - [anon_sym_unsafe] = ACTIONS(2707), - [anon_sym_sql] = ACTIONS(2707), - [sym_int_literal] = ACTIONS(2707), - [sym_float_literal] = ACTIONS(2707), - [sym_rune_literal] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2707), - [anon_sym_c_SQUOTE] = ACTIONS(2707), - [anon_sym_c_DQUOTE] = ACTIONS(2707), - [anon_sym_r_SQUOTE] = ACTIONS(2707), - [anon_sym_r_DQUOTE] = ACTIONS(2707), - [sym_pseudo_compile_time_identifier] = ACTIONS(2707), - [anon_sym_shared] = ACTIONS(2707), - [anon_sym_map_LBRACK] = ACTIONS(2707), - [anon_sym_chan] = ACTIONS(2707), - [anon_sym_thread] = ACTIONS(2707), - [anon_sym_atomic] = ACTIONS(2707), - [anon_sym_assert] = ACTIONS(2707), - [anon_sym_defer] = ACTIONS(2707), - [anon_sym_goto] = ACTIONS(2707), - [anon_sym_break] = ACTIONS(2707), - [anon_sym_continue] = ACTIONS(2707), - [anon_sym_return] = ACTIONS(2707), - [anon_sym_DOLLARfor] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(2707), - [anon_sym_POUND] = ACTIONS(2707), - [anon_sym_asm] = ACTIONS(2707), - [anon_sym_AT_LBRACK] = ACTIONS(2707), + [anon_sym_DOT] = ACTIONS(2689), + [anon_sym_as] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2689), + [anon_sym_COMMA] = ACTIONS(2689), + [anon_sym_const] = ACTIONS(2689), + [anon_sym_LPAREN] = ACTIONS(2689), + [anon_sym_EQ] = ACTIONS(2689), + [anon_sym___global] = ACTIONS(2689), + [anon_sym_type] = ACTIONS(2689), + [anon_sym_fn] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_SLASH] = ACTIONS(2689), + [anon_sym_PERCENT] = ACTIONS(2689), + [anon_sym_LT] = ACTIONS(2689), + [anon_sym_GT] = ACTIONS(2689), + [anon_sym_EQ_EQ] = ACTIONS(2689), + [anon_sym_BANG_EQ] = ACTIONS(2689), + [anon_sym_LT_EQ] = ACTIONS(2689), + [anon_sym_GT_EQ] = ACTIONS(2689), + [anon_sym_LBRACK] = ACTIONS(2687), + [anon_sym_struct] = ACTIONS(2689), + [anon_sym_union] = ACTIONS(2689), + [anon_sym_pub] = ACTIONS(2689), + [anon_sym_mut] = ACTIONS(2689), + [anon_sym_enum] = ACTIONS(2689), + [anon_sym_interface] = ACTIONS(2689), + [anon_sym_PLUS_PLUS] = ACTIONS(2689), + [anon_sym_DASH_DASH] = ACTIONS(2689), + [anon_sym_QMARK] = ACTIONS(2689), + [anon_sym_BANG] = ACTIONS(2689), + [anon_sym_go] = ACTIONS(2689), + [anon_sym_spawn] = ACTIONS(2689), + [anon_sym_json_DOTdecode] = ACTIONS(2689), + [anon_sym_PIPE] = ACTIONS(2689), + [anon_sym_LBRACK2] = ACTIONS(2689), + [anon_sym_TILDE] = ACTIONS(2689), + [anon_sym_CARET] = ACTIONS(2689), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_LT_DASH] = ACTIONS(2689), + [anon_sym_LT_LT] = ACTIONS(2689), + [anon_sym_GT_GT] = ACTIONS(2689), + [anon_sym_GT_GT_GT] = ACTIONS(2689), + [anon_sym_AMP_CARET] = ACTIONS(2689), + [anon_sym_AMP_AMP] = ACTIONS(2689), + [anon_sym_PIPE_PIPE] = ACTIONS(2689), + [anon_sym_or] = ACTIONS(2689), + [sym_none] = ACTIONS(2689), + [sym_true] = ACTIONS(2689), + [sym_false] = ACTIONS(2689), + [sym_nil] = ACTIONS(2689), + [anon_sym_QMARK_DOT] = ACTIONS(2689), + [anon_sym_POUND_LBRACK] = ACTIONS(2689), + [anon_sym_if] = ACTIONS(2689), + [anon_sym_DOLLARif] = ACTIONS(2689), + [anon_sym_is] = ACTIONS(2689), + [anon_sym_BANGis] = ACTIONS(2689), + [anon_sym_in] = ACTIONS(2689), + [anon_sym_BANGin] = ACTIONS(2689), + [anon_sym_match] = ACTIONS(2689), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_STAR_EQ] = ACTIONS(2689), + [anon_sym_SLASH_EQ] = ACTIONS(2689), + [anon_sym_PERCENT_EQ] = ACTIONS(2689), + [anon_sym_LT_LT_EQ] = ACTIONS(2689), + [anon_sym_GT_GT_EQ] = ACTIONS(2689), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2689), + [anon_sym_AMP_EQ] = ACTIONS(2689), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2689), + [anon_sym_PLUS_EQ] = ACTIONS(2689), + [anon_sym_DASH_EQ] = ACTIONS(2689), + [anon_sym_PIPE_EQ] = ACTIONS(2689), + [anon_sym_CARET_EQ] = ACTIONS(2689), + [anon_sym_COLON_EQ] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2689), + [anon_sym_rlock] = ACTIONS(2689), + [anon_sym_unsafe] = ACTIONS(2689), + [anon_sym_sql] = ACTIONS(2689), + [sym_int_literal] = ACTIONS(2689), + [sym_float_literal] = ACTIONS(2689), + [sym_rune_literal] = ACTIONS(2689), + [anon_sym_SQUOTE] = ACTIONS(2689), + [anon_sym_DQUOTE] = ACTIONS(2689), + [anon_sym_c_SQUOTE] = ACTIONS(2689), + [anon_sym_c_DQUOTE] = ACTIONS(2689), + [anon_sym_r_SQUOTE] = ACTIONS(2689), + [anon_sym_r_DQUOTE] = ACTIONS(2689), + [sym_pseudo_compile_time_identifier] = ACTIONS(2689), + [anon_sym_shared] = ACTIONS(2689), + [anon_sym_map_LBRACK] = ACTIONS(2689), + [anon_sym_chan] = ACTIONS(2689), + [anon_sym_thread] = ACTIONS(2689), + [anon_sym_atomic] = ACTIONS(2689), + [anon_sym_assert] = ACTIONS(2689), + [anon_sym_defer] = ACTIONS(2689), + [anon_sym_goto] = ACTIONS(2689), + [anon_sym_break] = ACTIONS(2689), + [anon_sym_continue] = ACTIONS(2689), + [anon_sym_return] = ACTIONS(2689), + [anon_sym_DOLLARfor] = ACTIONS(2689), + [anon_sym_for] = ACTIONS(2689), + [anon_sym_POUND] = ACTIONS(2689), + [anon_sym_asm] = ACTIONS(2689), + [anon_sym_AT_LBRACK] = ACTIONS(2689), }, - [405] = { - [sym_line_comment] = STATE(405), - [sym_block_comment] = STATE(405), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3553), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2391), + [422] = { + [sym_line_comment] = STATE(422), + [sym_block_comment] = STATE(422), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2927), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2691), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(2393), - [anon_sym_RBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(2693), + [anon_sym_volatile] = ACTIONS(2695), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [406] = { - [sym_line_comment] = STATE(406), - [sym_block_comment] = STATE(406), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), + [423] = { + [sym_line_comment] = STATE(423), + [sym_block_comment] = STATE(423), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), [aux_sym__array_repeat1] = STATE(403), - [sym_identifier] = ACTIONS(1299), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(2697), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [407] = { - [sym_line_comment] = STATE(407), - [sym_block_comment] = STATE(407), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym__array_repeat1] = STATE(403), - [sym_identifier] = ACTIONS(1299), + [424] = { + [sym_line_comment] = STATE(424), + [sym_block_comment] = STATE(424), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3609), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(2711), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_RBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [408] = { - [sym_line_comment] = STATE(408), - [sym_block_comment] = STATE(408), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3548), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_range] = STATE(4532), - [sym_identifier] = ACTIONS(2391), + [425] = { + [sym_line_comment] = STATE(425), + [sym_block_comment] = STATE(425), + [ts_builtin_sym_end] = ACTIONS(2699), + [sym_identifier] = ACTIONS(2701), + [anon_sym_LF] = ACTIONS(2701), + [anon_sym_CR] = ACTIONS(2701), + [anon_sym_CR_LF] = ACTIONS(2701), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2701), + [anon_sym_as] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2701), + [anon_sym_COMMA] = ACTIONS(2701), + [anon_sym_const] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(2701), + [anon_sym_EQ] = ACTIONS(2701), + [anon_sym___global] = ACTIONS(2701), + [anon_sym_type] = ACTIONS(2701), + [anon_sym_fn] = ACTIONS(2701), + [anon_sym_PLUS] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(2701), + [anon_sym_STAR] = ACTIONS(2701), + [anon_sym_SLASH] = ACTIONS(2701), + [anon_sym_PERCENT] = ACTIONS(2701), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_GT] = ACTIONS(2701), + [anon_sym_EQ_EQ] = ACTIONS(2701), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_LT_EQ] = ACTIONS(2701), + [anon_sym_GT_EQ] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_struct] = ACTIONS(2701), + [anon_sym_union] = ACTIONS(2701), + [anon_sym_pub] = ACTIONS(2701), + [anon_sym_mut] = ACTIONS(2701), + [anon_sym_enum] = ACTIONS(2701), + [anon_sym_interface] = ACTIONS(2701), + [anon_sym_PLUS_PLUS] = ACTIONS(2701), + [anon_sym_DASH_DASH] = ACTIONS(2701), + [anon_sym_QMARK] = ACTIONS(2701), + [anon_sym_BANG] = ACTIONS(2701), + [anon_sym_go] = ACTIONS(2701), + [anon_sym_spawn] = ACTIONS(2701), + [anon_sym_json_DOTdecode] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(2701), + [anon_sym_LBRACK2] = ACTIONS(2701), + [anon_sym_TILDE] = ACTIONS(2701), + [anon_sym_CARET] = ACTIONS(2701), + [anon_sym_AMP] = ACTIONS(2701), + [anon_sym_LT_DASH] = ACTIONS(2701), + [anon_sym_LT_LT] = ACTIONS(2701), + [anon_sym_GT_GT] = ACTIONS(2701), + [anon_sym_GT_GT_GT] = ACTIONS(2701), + [anon_sym_AMP_CARET] = ACTIONS(2701), + [anon_sym_AMP_AMP] = ACTIONS(2701), + [anon_sym_PIPE_PIPE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2701), + [sym_none] = ACTIONS(2701), + [sym_true] = ACTIONS(2701), + [sym_false] = ACTIONS(2701), + [sym_nil] = ACTIONS(2701), + [anon_sym_QMARK_DOT] = ACTIONS(2701), + [anon_sym_POUND_LBRACK] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_DOLLARif] = ACTIONS(2701), + [anon_sym_is] = ACTIONS(2701), + [anon_sym_BANGis] = ACTIONS(2701), + [anon_sym_in] = ACTIONS(2701), + [anon_sym_BANGin] = ACTIONS(2701), + [anon_sym_match] = ACTIONS(2701), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_STAR_EQ] = ACTIONS(2701), + [anon_sym_SLASH_EQ] = ACTIONS(2701), + [anon_sym_PERCENT_EQ] = ACTIONS(2701), + [anon_sym_LT_LT_EQ] = ACTIONS(2701), + [anon_sym_GT_GT_EQ] = ACTIONS(2701), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2701), + [anon_sym_AMP_EQ] = ACTIONS(2701), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2701), + [anon_sym_PLUS_EQ] = ACTIONS(2701), + [anon_sym_DASH_EQ] = ACTIONS(2701), + [anon_sym_PIPE_EQ] = ACTIONS(2701), + [anon_sym_CARET_EQ] = ACTIONS(2701), + [anon_sym_COLON_EQ] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2701), + [anon_sym_rlock] = ACTIONS(2701), + [anon_sym_unsafe] = ACTIONS(2701), + [anon_sym_sql] = ACTIONS(2701), + [sym_int_literal] = ACTIONS(2701), + [sym_float_literal] = ACTIONS(2701), + [sym_rune_literal] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE] = ACTIONS(2701), + [anon_sym_c_SQUOTE] = ACTIONS(2701), + [anon_sym_c_DQUOTE] = ACTIONS(2701), + [anon_sym_r_SQUOTE] = ACTIONS(2701), + [anon_sym_r_DQUOTE] = ACTIONS(2701), + [sym_pseudo_compile_time_identifier] = ACTIONS(2701), + [anon_sym_shared] = ACTIONS(2701), + [anon_sym_map_LBRACK] = ACTIONS(2701), + [anon_sym_chan] = ACTIONS(2701), + [anon_sym_thread] = ACTIONS(2701), + [anon_sym_atomic] = ACTIONS(2701), + [anon_sym_assert] = ACTIONS(2701), + [anon_sym_defer] = ACTIONS(2701), + [anon_sym_goto] = ACTIONS(2701), + [anon_sym_break] = ACTIONS(2701), + [anon_sym_continue] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_DOLLARfor] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_POUND] = ACTIONS(2701), + [anon_sym_asm] = ACTIONS(2701), + [anon_sym_AT_LBRACK] = ACTIONS(2701), + }, + [426] = { + [sym_line_comment] = STATE(426), + [sym_block_comment] = STATE(426), + [ts_builtin_sym_end] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2705), + [anon_sym_LF] = ACTIONS(2705), + [anon_sym_CR] = ACTIONS(2705), + [anon_sym_CR_LF] = ACTIONS(2705), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2705), + [anon_sym_as] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_COMMA] = ACTIONS(2705), + [anon_sym_const] = ACTIONS(2705), + [anon_sym_LPAREN] = ACTIONS(2705), + [anon_sym_EQ] = ACTIONS(2705), + [anon_sym___global] = ACTIONS(2705), + [anon_sym_type] = ACTIONS(2705), + [anon_sym_fn] = ACTIONS(2705), + [anon_sym_PLUS] = ACTIONS(2705), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2705), + [anon_sym_SLASH] = ACTIONS(2705), + [anon_sym_PERCENT] = ACTIONS(2705), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_GT] = ACTIONS(2705), + [anon_sym_EQ_EQ] = ACTIONS(2705), + [anon_sym_BANG_EQ] = ACTIONS(2705), + [anon_sym_LT_EQ] = ACTIONS(2705), + [anon_sym_GT_EQ] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_struct] = ACTIONS(2705), + [anon_sym_union] = ACTIONS(2705), + [anon_sym_pub] = ACTIONS(2705), + [anon_sym_mut] = ACTIONS(2705), + [anon_sym_enum] = ACTIONS(2705), + [anon_sym_interface] = ACTIONS(2705), + [anon_sym_PLUS_PLUS] = ACTIONS(2705), + [anon_sym_DASH_DASH] = ACTIONS(2705), + [anon_sym_QMARK] = ACTIONS(2705), + [anon_sym_BANG] = ACTIONS(2705), + [anon_sym_go] = ACTIONS(2705), + [anon_sym_spawn] = ACTIONS(2705), + [anon_sym_json_DOTdecode] = ACTIONS(2705), + [anon_sym_PIPE] = ACTIONS(2705), + [anon_sym_LBRACK2] = ACTIONS(2705), + [anon_sym_TILDE] = ACTIONS(2705), + [anon_sym_CARET] = ACTIONS(2705), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_LT_DASH] = ACTIONS(2705), + [anon_sym_LT_LT] = ACTIONS(2705), + [anon_sym_GT_GT] = ACTIONS(2705), + [anon_sym_GT_GT_GT] = ACTIONS(2705), + [anon_sym_AMP_CARET] = ACTIONS(2705), + [anon_sym_AMP_AMP] = ACTIONS(2705), + [anon_sym_PIPE_PIPE] = ACTIONS(2705), + [anon_sym_or] = ACTIONS(2705), + [sym_none] = ACTIONS(2705), + [sym_true] = ACTIONS(2705), + [sym_false] = ACTIONS(2705), + [sym_nil] = ACTIONS(2705), + [anon_sym_QMARK_DOT] = ACTIONS(2705), + [anon_sym_POUND_LBRACK] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_DOLLARif] = ACTIONS(2705), + [anon_sym_is] = ACTIONS(2705), + [anon_sym_BANGis] = ACTIONS(2705), + [anon_sym_in] = ACTIONS(2705), + [anon_sym_BANGin] = ACTIONS(2705), + [anon_sym_match] = ACTIONS(2705), + [anon_sym_select] = ACTIONS(2705), + [anon_sym_STAR_EQ] = ACTIONS(2705), + [anon_sym_SLASH_EQ] = ACTIONS(2705), + [anon_sym_PERCENT_EQ] = ACTIONS(2705), + [anon_sym_LT_LT_EQ] = ACTIONS(2705), + [anon_sym_GT_GT_EQ] = ACTIONS(2705), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2705), + [anon_sym_AMP_EQ] = ACTIONS(2705), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2705), + [anon_sym_PLUS_EQ] = ACTIONS(2705), + [anon_sym_DASH_EQ] = ACTIONS(2705), + [anon_sym_PIPE_EQ] = ACTIONS(2705), + [anon_sym_CARET_EQ] = ACTIONS(2705), + [anon_sym_COLON_EQ] = ACTIONS(2705), + [anon_sym_lock] = ACTIONS(2705), + [anon_sym_rlock] = ACTIONS(2705), + [anon_sym_unsafe] = ACTIONS(2705), + [anon_sym_sql] = ACTIONS(2705), + [sym_int_literal] = ACTIONS(2705), + [sym_float_literal] = ACTIONS(2705), + [sym_rune_literal] = ACTIONS(2705), + [anon_sym_SQUOTE] = ACTIONS(2705), + [anon_sym_DQUOTE] = ACTIONS(2705), + [anon_sym_c_SQUOTE] = ACTIONS(2705), + [anon_sym_c_DQUOTE] = ACTIONS(2705), + [anon_sym_r_SQUOTE] = ACTIONS(2705), + [anon_sym_r_DQUOTE] = ACTIONS(2705), + [sym_pseudo_compile_time_identifier] = ACTIONS(2705), + [anon_sym_shared] = ACTIONS(2705), + [anon_sym_map_LBRACK] = ACTIONS(2705), + [anon_sym_chan] = ACTIONS(2705), + [anon_sym_thread] = ACTIONS(2705), + [anon_sym_atomic] = ACTIONS(2705), + [anon_sym_assert] = ACTIONS(2705), + [anon_sym_defer] = ACTIONS(2705), + [anon_sym_goto] = ACTIONS(2705), + [anon_sym_break] = ACTIONS(2705), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_return] = ACTIONS(2705), + [anon_sym_DOLLARfor] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_POUND] = ACTIONS(2705), + [anon_sym_asm] = ACTIONS(2705), + [anon_sym_AT_LBRACK] = ACTIONS(2705), + }, + [427] = { + [sym_line_comment] = STATE(427), + [sym_block_comment] = STATE(427), + [sym__expression] = STATE(2643), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3638), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_range] = STATE(4598), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT] = ACTIONS(1486), }, - [409] = { - [sym_line_comment] = STATE(409), - [sym_block_comment] = STATE(409), - [sym__expression] = STATE(2588), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_range] = STATE(4532), - [sym_identifier] = ACTIONS(1219), + [428] = { + [sym_line_comment] = STATE(428), + [sym_block_comment] = STATE(428), + [ts_builtin_sym_end] = ACTIONS(2707), + [sym_identifier] = ACTIONS(2709), + [anon_sym_LF] = ACTIONS(2709), + [anon_sym_CR] = ACTIONS(2709), + [anon_sym_CR_LF] = ACTIONS(2709), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2709), + [anon_sym_as] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2709), + [anon_sym_COMMA] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_LPAREN] = ACTIONS(2709), + [anon_sym_EQ] = ACTIONS(2709), + [anon_sym___global] = ACTIONS(2709), + [anon_sym_type] = ACTIONS(2709), + [anon_sym_fn] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2709), + [anon_sym_SLASH] = ACTIONS(2709), + [anon_sym_PERCENT] = ACTIONS(2709), + [anon_sym_LT] = ACTIONS(2709), + [anon_sym_GT] = ACTIONS(2709), + [anon_sym_EQ_EQ] = ACTIONS(2709), + [anon_sym_BANG_EQ] = ACTIONS(2709), + [anon_sym_LT_EQ] = ACTIONS(2709), + [anon_sym_GT_EQ] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2707), + [anon_sym_struct] = ACTIONS(2709), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_pub] = ACTIONS(2709), + [anon_sym_mut] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_interface] = ACTIONS(2709), + [anon_sym_PLUS_PLUS] = ACTIONS(2709), + [anon_sym_DASH_DASH] = ACTIONS(2709), + [anon_sym_QMARK] = ACTIONS(2709), + [anon_sym_BANG] = ACTIONS(2709), + [anon_sym_go] = ACTIONS(2709), + [anon_sym_spawn] = ACTIONS(2709), + [anon_sym_json_DOTdecode] = ACTIONS(2709), + [anon_sym_PIPE] = ACTIONS(2709), + [anon_sym_LBRACK2] = ACTIONS(2709), + [anon_sym_TILDE] = ACTIONS(2709), + [anon_sym_CARET] = ACTIONS(2709), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_LT_DASH] = ACTIONS(2709), + [anon_sym_LT_LT] = ACTIONS(2709), + [anon_sym_GT_GT] = ACTIONS(2709), + [anon_sym_GT_GT_GT] = ACTIONS(2709), + [anon_sym_AMP_CARET] = ACTIONS(2709), + [anon_sym_AMP_AMP] = ACTIONS(2709), + [anon_sym_PIPE_PIPE] = ACTIONS(2709), + [anon_sym_or] = ACTIONS(2709), + [sym_none] = ACTIONS(2709), + [sym_true] = ACTIONS(2709), + [sym_false] = ACTIONS(2709), + [sym_nil] = ACTIONS(2709), + [anon_sym_QMARK_DOT] = ACTIONS(2709), + [anon_sym_POUND_LBRACK] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_DOLLARif] = ACTIONS(2709), + [anon_sym_is] = ACTIONS(2709), + [anon_sym_BANGis] = ACTIONS(2709), + [anon_sym_in] = ACTIONS(2709), + [anon_sym_BANGin] = ACTIONS(2709), + [anon_sym_match] = ACTIONS(2709), + [anon_sym_select] = ACTIONS(2709), + [anon_sym_STAR_EQ] = ACTIONS(2709), + [anon_sym_SLASH_EQ] = ACTIONS(2709), + [anon_sym_PERCENT_EQ] = ACTIONS(2709), + [anon_sym_LT_LT_EQ] = ACTIONS(2709), + [anon_sym_GT_GT_EQ] = ACTIONS(2709), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2709), + [anon_sym_AMP_EQ] = ACTIONS(2709), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2709), + [anon_sym_PLUS_EQ] = ACTIONS(2709), + [anon_sym_DASH_EQ] = ACTIONS(2709), + [anon_sym_PIPE_EQ] = ACTIONS(2709), + [anon_sym_CARET_EQ] = ACTIONS(2709), + [anon_sym_COLON_EQ] = ACTIONS(2709), + [anon_sym_lock] = ACTIONS(2709), + [anon_sym_rlock] = ACTIONS(2709), + [anon_sym_unsafe] = ACTIONS(2709), + [anon_sym_sql] = ACTIONS(2709), + [sym_int_literal] = ACTIONS(2709), + [sym_float_literal] = ACTIONS(2709), + [sym_rune_literal] = ACTIONS(2709), + [anon_sym_SQUOTE] = ACTIONS(2709), + [anon_sym_DQUOTE] = ACTIONS(2709), + [anon_sym_c_SQUOTE] = ACTIONS(2709), + [anon_sym_c_DQUOTE] = ACTIONS(2709), + [anon_sym_r_SQUOTE] = ACTIONS(2709), + [anon_sym_r_DQUOTE] = ACTIONS(2709), + [sym_pseudo_compile_time_identifier] = ACTIONS(2709), + [anon_sym_shared] = ACTIONS(2709), + [anon_sym_map_LBRACK] = ACTIONS(2709), + [anon_sym_chan] = ACTIONS(2709), + [anon_sym_thread] = ACTIONS(2709), + [anon_sym_atomic] = ACTIONS(2709), + [anon_sym_assert] = ACTIONS(2709), + [anon_sym_defer] = ACTIONS(2709), + [anon_sym_goto] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_DOLLARfor] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_POUND] = ACTIONS(2709), + [anon_sym_asm] = ACTIONS(2709), + [anon_sym_AT_LBRACK] = ACTIONS(2709), + }, + [429] = { + [sym_line_comment] = STATE(429), + [sym_block_comment] = STATE(429), + [ts_builtin_sym_end] = ACTIONS(1885), + [sym_identifier] = ACTIONS(1887), + [anon_sym_LF] = ACTIONS(1887), + [anon_sym_CR] = ACTIONS(1887), + [anon_sym_CR_LF] = ACTIONS(1887), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1887), + [anon_sym_as] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_COMMA] = ACTIONS(1887), + [anon_sym_const] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_EQ] = ACTIONS(1887), + [anon_sym___global] = ACTIONS(1887), + [anon_sym_type] = ACTIONS(1887), + [anon_sym_fn] = ACTIONS(1887), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1887), + [anon_sym_SLASH] = ACTIONS(1887), + [anon_sym_PERCENT] = ACTIONS(1887), + [anon_sym_LT] = ACTIONS(1887), + [anon_sym_GT] = ACTIONS(1887), + [anon_sym_EQ_EQ] = ACTIONS(1887), + [anon_sym_BANG_EQ] = ACTIONS(1887), + [anon_sym_LT_EQ] = ACTIONS(1887), + [anon_sym_GT_EQ] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_struct] = ACTIONS(1887), + [anon_sym_union] = ACTIONS(1887), + [anon_sym_pub] = ACTIONS(1887), + [anon_sym_mut] = ACTIONS(1887), + [anon_sym_enum] = ACTIONS(1887), + [anon_sym_interface] = ACTIONS(1887), + [anon_sym_PLUS_PLUS] = ACTIONS(1887), + [anon_sym_DASH_DASH] = ACTIONS(1887), + [anon_sym_QMARK] = ACTIONS(1887), + [anon_sym_BANG] = ACTIONS(1887), + [anon_sym_go] = ACTIONS(1887), + [anon_sym_spawn] = ACTIONS(1887), + [anon_sym_json_DOTdecode] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1887), + [anon_sym_LBRACK2] = ACTIONS(1887), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_CARET] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(1887), + [anon_sym_LT_DASH] = ACTIONS(1887), + [anon_sym_LT_LT] = ACTIONS(1887), + [anon_sym_GT_GT] = ACTIONS(1887), + [anon_sym_GT_GT_GT] = ACTIONS(1887), + [anon_sym_AMP_CARET] = ACTIONS(1887), + [anon_sym_AMP_AMP] = ACTIONS(1887), + [anon_sym_PIPE_PIPE] = ACTIONS(1887), + [anon_sym_or] = ACTIONS(1887), + [sym_none] = ACTIONS(1887), + [sym_true] = ACTIONS(1887), + [sym_false] = ACTIONS(1887), + [sym_nil] = ACTIONS(1887), + [anon_sym_QMARK_DOT] = ACTIONS(1887), + [anon_sym_POUND_LBRACK] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_DOLLARif] = ACTIONS(1887), + [anon_sym_is] = ACTIONS(1887), + [anon_sym_BANGis] = ACTIONS(1887), + [anon_sym_in] = ACTIONS(1887), + [anon_sym_BANGin] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_select] = ACTIONS(1887), + [anon_sym_STAR_EQ] = ACTIONS(1887), + [anon_sym_SLASH_EQ] = ACTIONS(1887), + [anon_sym_PERCENT_EQ] = ACTIONS(1887), + [anon_sym_LT_LT_EQ] = ACTIONS(1887), + [anon_sym_GT_GT_EQ] = ACTIONS(1887), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1887), + [anon_sym_AMP_EQ] = ACTIONS(1887), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1887), + [anon_sym_PLUS_EQ] = ACTIONS(1887), + [anon_sym_DASH_EQ] = ACTIONS(1887), + [anon_sym_PIPE_EQ] = ACTIONS(1887), + [anon_sym_CARET_EQ] = ACTIONS(1887), + [anon_sym_COLON_EQ] = ACTIONS(1887), + [anon_sym_lock] = ACTIONS(1887), + [anon_sym_rlock] = ACTIONS(1887), + [anon_sym_unsafe] = ACTIONS(1887), + [anon_sym_sql] = ACTIONS(1887), + [sym_int_literal] = ACTIONS(1887), + [sym_float_literal] = ACTIONS(1887), + [sym_rune_literal] = ACTIONS(1887), + [anon_sym_SQUOTE] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(1887), + [anon_sym_c_SQUOTE] = ACTIONS(1887), + [anon_sym_c_DQUOTE] = ACTIONS(1887), + [anon_sym_r_SQUOTE] = ACTIONS(1887), + [anon_sym_r_DQUOTE] = ACTIONS(1887), + [sym_pseudo_compile_time_identifier] = ACTIONS(1887), + [anon_sym_shared] = ACTIONS(1887), + [anon_sym_map_LBRACK] = ACTIONS(1887), + [anon_sym_chan] = ACTIONS(1887), + [anon_sym_thread] = ACTIONS(1887), + [anon_sym_atomic] = ACTIONS(1887), + [anon_sym_assert] = ACTIONS(1887), + [anon_sym_defer] = ACTIONS(1887), + [anon_sym_goto] = ACTIONS(1887), + [anon_sym_break] = ACTIONS(1887), + [anon_sym_continue] = ACTIONS(1887), + [anon_sym_return] = ACTIONS(1887), + [anon_sym_DOLLARfor] = ACTIONS(1887), + [anon_sym_for] = ACTIONS(1887), + [anon_sym_POUND] = ACTIONS(1887), + [anon_sym_asm] = ACTIONS(1887), + [anon_sym_AT_LBRACK] = ACTIONS(1887), + }, + [430] = { + [sym_line_comment] = STATE(430), + [sym_block_comment] = STATE(430), + [sym__expression] = STATE(2643), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_range] = STATE(4598), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT] = ACTIONS(1486), }, - [410] = { - [sym_line_comment] = STATE(410), - [sym_block_comment] = STATE(410), + [431] = { + [sym_line_comment] = STATE(431), + [sym_block_comment] = STATE(431), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_string_interpolation_repeat1] = STATE(454), + [sym_identifier] = ACTIONS(1356), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(2711), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2671), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_CARET] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_LT_DASH] = ACTIONS(2675), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [432] = { + [sym_line_comment] = STATE(432), + [sym_block_comment] = STATE(432), [ts_builtin_sym_end] = ACTIONS(2713), [sym_identifier] = ACTIONS(2715), [anon_sym_LF] = ACTIONS(2715), @@ -70373,7 +73220,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -70400,6 +73246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(2715), [anon_sym_spawn] = ACTIONS(2715), [anon_sym_json_DOTdecode] = ACTIONS(2715), + [anon_sym_PIPE] = ACTIONS(2715), [anon_sym_LBRACK2] = ACTIONS(2715), [anon_sym_TILDE] = ACTIONS(2715), [anon_sym_CARET] = ACTIONS(2715), @@ -70470,125 +73317,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2715), [anon_sym_AT_LBRACK] = ACTIONS(2715), }, - [411] = { - [sym_line_comment] = STATE(411), - [sym_block_comment] = STATE(411), - [ts_builtin_sym_end] = ACTIONS(2053), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_EQ] = ACTIONS(2055), - [anon_sym___global] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2053), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_union] = ACTIONS(2055), - [anon_sym_pub] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_QMARK] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_LBRACK2] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_AMP_CARET] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(2055), - [anon_sym_POUND_LBRACK] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_STAR_EQ] = ACTIONS(2055), - [anon_sym_SLASH_EQ] = ACTIONS(2055), - [anon_sym_PERCENT_EQ] = ACTIONS(2055), - [anon_sym_LT_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2055), - [anon_sym_AMP_EQ] = ACTIONS(2055), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2055), - [anon_sym_PLUS_EQ] = ACTIONS(2055), - [anon_sym_DASH_EQ] = ACTIONS(2055), - [anon_sym_PIPE_EQ] = ACTIONS(2055), - [anon_sym_CARET_EQ] = ACTIONS(2055), - [anon_sym_COLON_EQ] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), - [anon_sym_AT_LBRACK] = ACTIONS(2055), - }, - [412] = { - [sym_line_comment] = STATE(412), - [sym_block_comment] = STATE(412), + [433] = { + [sym_line_comment] = STATE(433), + [sym_block_comment] = STATE(433), [ts_builtin_sym_end] = ACTIONS(2717), [sym_identifier] = ACTIONS(2719), [anon_sym_LF] = ACTIONS(2719), @@ -70605,7 +73336,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(2719), [anon_sym___global] = ACTIONS(2719), [anon_sym_type] = ACTIONS(2719), - [anon_sym_PIPE] = ACTIONS(2719), [anon_sym_fn] = ACTIONS(2719), [anon_sym_PLUS] = ACTIONS(2719), [anon_sym_DASH] = ACTIONS(2719), @@ -70632,6 +73362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(2719), [anon_sym_spawn] = ACTIONS(2719), [anon_sym_json_DOTdecode] = ACTIONS(2719), + [anon_sym_PIPE] = ACTIONS(2719), [anon_sym_LBRACK2] = ACTIONS(2719), [anon_sym_TILDE] = ACTIONS(2719), [anon_sym_CARET] = ACTIONS(2719), @@ -70702,1401 +73433,705 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2719), [anon_sym_AT_LBRACK] = ACTIONS(2719), }, - [413] = { - [sym_line_comment] = STATE(413), - [sym_block_comment] = STATE(413), - [sym__expression] = STATE(1370), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_string_interpolation_repeat1] = STATE(479), - [sym_identifier] = ACTIONS(1299), + [434] = { + [sym_line_comment] = STATE(434), + [sym_block_comment] = STATE(434), + [ts_builtin_sym_end] = ACTIONS(2721), + [sym_identifier] = ACTIONS(2723), + [anon_sym_LF] = ACTIONS(2723), + [anon_sym_CR] = ACTIONS(2723), + [anon_sym_CR_LF] = ACTIONS(2723), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2723), + [anon_sym_as] = ACTIONS(2723), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_COMMA] = ACTIONS(2723), + [anon_sym_const] = ACTIONS(2723), + [anon_sym_LPAREN] = ACTIONS(2723), + [anon_sym_EQ] = ACTIONS(2723), + [anon_sym___global] = ACTIONS(2723), + [anon_sym_type] = ACTIONS(2723), + [anon_sym_fn] = ACTIONS(2723), + [anon_sym_PLUS] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2723), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_SLASH] = ACTIONS(2723), + [anon_sym_PERCENT] = ACTIONS(2723), + [anon_sym_LT] = ACTIONS(2723), + [anon_sym_GT] = ACTIONS(2723), + [anon_sym_EQ_EQ] = ACTIONS(2723), + [anon_sym_BANG_EQ] = ACTIONS(2723), + [anon_sym_LT_EQ] = ACTIONS(2723), + [anon_sym_GT_EQ] = ACTIONS(2723), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2723), + [anon_sym_union] = ACTIONS(2723), + [anon_sym_pub] = ACTIONS(2723), + [anon_sym_mut] = ACTIONS(2723), + [anon_sym_enum] = ACTIONS(2723), + [anon_sym_interface] = ACTIONS(2723), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_QMARK] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_go] = ACTIONS(2723), + [anon_sym_spawn] = ACTIONS(2723), + [anon_sym_json_DOTdecode] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2723), + [anon_sym_LBRACK2] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_CARET] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_LT_DASH] = ACTIONS(2723), + [anon_sym_LT_LT] = ACTIONS(2723), + [anon_sym_GT_GT] = ACTIONS(2723), + [anon_sym_GT_GT_GT] = ACTIONS(2723), + [anon_sym_AMP_CARET] = ACTIONS(2723), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_PIPE_PIPE] = ACTIONS(2723), + [anon_sym_or] = ACTIONS(2723), + [sym_none] = ACTIONS(2723), + [sym_true] = ACTIONS(2723), + [sym_false] = ACTIONS(2723), + [sym_nil] = ACTIONS(2723), + [anon_sym_QMARK_DOT] = ACTIONS(2723), + [anon_sym_POUND_LBRACK] = ACTIONS(2723), + [anon_sym_if] = ACTIONS(2723), + [anon_sym_DOLLARif] = ACTIONS(2723), + [anon_sym_is] = ACTIONS(2723), + [anon_sym_BANGis] = ACTIONS(2723), + [anon_sym_in] = ACTIONS(2723), + [anon_sym_BANGin] = ACTIONS(2723), + [anon_sym_match] = ACTIONS(2723), + [anon_sym_select] = ACTIONS(2723), + [anon_sym_STAR_EQ] = ACTIONS(2723), + [anon_sym_SLASH_EQ] = ACTIONS(2723), + [anon_sym_PERCENT_EQ] = ACTIONS(2723), + [anon_sym_LT_LT_EQ] = ACTIONS(2723), + [anon_sym_GT_GT_EQ] = ACTIONS(2723), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2723), + [anon_sym_AMP_EQ] = ACTIONS(2723), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2723), + [anon_sym_PLUS_EQ] = ACTIONS(2723), + [anon_sym_DASH_EQ] = ACTIONS(2723), + [anon_sym_PIPE_EQ] = ACTIONS(2723), + [anon_sym_CARET_EQ] = ACTIONS(2723), + [anon_sym_COLON_EQ] = ACTIONS(2723), + [anon_sym_lock] = ACTIONS(2723), + [anon_sym_rlock] = ACTIONS(2723), + [anon_sym_unsafe] = ACTIONS(2723), + [anon_sym_sql] = ACTIONS(2723), + [sym_int_literal] = ACTIONS(2723), + [sym_float_literal] = ACTIONS(2723), + [sym_rune_literal] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2723), + [anon_sym_c_SQUOTE] = ACTIONS(2723), + [anon_sym_c_DQUOTE] = ACTIONS(2723), + [anon_sym_r_SQUOTE] = ACTIONS(2723), + [anon_sym_r_DQUOTE] = ACTIONS(2723), + [sym_pseudo_compile_time_identifier] = ACTIONS(2723), + [anon_sym_shared] = ACTIONS(2723), + [anon_sym_map_LBRACK] = ACTIONS(2723), + [anon_sym_chan] = ACTIONS(2723), + [anon_sym_thread] = ACTIONS(2723), + [anon_sym_atomic] = ACTIONS(2723), + [anon_sym_assert] = ACTIONS(2723), + [anon_sym_defer] = ACTIONS(2723), + [anon_sym_goto] = ACTIONS(2723), + [anon_sym_break] = ACTIONS(2723), + [anon_sym_continue] = ACTIONS(2723), + [anon_sym_return] = ACTIONS(2723), + [anon_sym_DOLLARfor] = ACTIONS(2723), + [anon_sym_for] = ACTIONS(2723), + [anon_sym_POUND] = ACTIONS(2723), + [anon_sym_asm] = ACTIONS(2723), + [anon_sym_AT_LBRACK] = ACTIONS(2723), + }, + [435] = { + [sym_line_comment] = STATE(435), + [sym_block_comment] = STATE(435), + [ts_builtin_sym_end] = ACTIONS(2725), + [sym_identifier] = ACTIONS(2727), + [anon_sym_LF] = ACTIONS(2727), + [anon_sym_CR] = ACTIONS(2727), + [anon_sym_CR_LF] = ACTIONS(2727), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2727), + [anon_sym_as] = ACTIONS(2727), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_COMMA] = ACTIONS(2727), + [anon_sym_const] = ACTIONS(2727), + [anon_sym_LPAREN] = ACTIONS(2727), + [anon_sym_EQ] = ACTIONS(2727), + [anon_sym___global] = ACTIONS(2727), + [anon_sym_type] = ACTIONS(2727), + [anon_sym_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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2727), + [anon_sym_DQUOTE] = ACTIONS(2727), + [anon_sym_c_SQUOTE] = ACTIONS(2727), + [anon_sym_c_DQUOTE] = ACTIONS(2727), + [anon_sym_r_SQUOTE] = ACTIONS(2727), + [anon_sym_r_DQUOTE] = 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), + }, + [436] = { + [sym_line_comment] = STATE(436), + [sym_block_comment] = STATE(436), + [ts_builtin_sym_end] = ACTIONS(2729), + [sym_identifier] = ACTIONS(2731), + [anon_sym_LF] = ACTIONS(2731), + [anon_sym_CR] = ACTIONS(2731), + [anon_sym_CR_LF] = ACTIONS(2731), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2731), + [anon_sym_as] = ACTIONS(2731), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_COMMA] = ACTIONS(2731), + [anon_sym_const] = ACTIONS(2731), + [anon_sym_LPAREN] = ACTIONS(2731), + [anon_sym_EQ] = ACTIONS(2731), + [anon_sym___global] = ACTIONS(2731), + [anon_sym_type] = ACTIONS(2731), + [anon_sym_fn] = ACTIONS(2731), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2731), + [anon_sym_SLASH] = ACTIONS(2731), + [anon_sym_PERCENT] = ACTIONS(2731), + [anon_sym_LT] = ACTIONS(2731), + [anon_sym_GT] = ACTIONS(2731), + [anon_sym_EQ_EQ] = ACTIONS(2731), + [anon_sym_BANG_EQ] = ACTIONS(2731), + [anon_sym_LT_EQ] = ACTIONS(2731), + [anon_sym_GT_EQ] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2729), + [anon_sym_struct] = ACTIONS(2731), + [anon_sym_union] = ACTIONS(2731), + [anon_sym_pub] = ACTIONS(2731), + [anon_sym_mut] = ACTIONS(2731), + [anon_sym_enum] = ACTIONS(2731), + [anon_sym_interface] = ACTIONS(2731), + [anon_sym_PLUS_PLUS] = ACTIONS(2731), + [anon_sym_DASH_DASH] = ACTIONS(2731), + [anon_sym_QMARK] = ACTIONS(2731), + [anon_sym_BANG] = ACTIONS(2731), + [anon_sym_go] = ACTIONS(2731), + [anon_sym_spawn] = ACTIONS(2731), + [anon_sym_json_DOTdecode] = ACTIONS(2731), + [anon_sym_PIPE] = ACTIONS(2731), + [anon_sym_LBRACK2] = ACTIONS(2731), + [anon_sym_TILDE] = ACTIONS(2731), + [anon_sym_CARET] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_LT_DASH] = ACTIONS(2731), + [anon_sym_LT_LT] = ACTIONS(2731), + [anon_sym_GT_GT] = ACTIONS(2731), + [anon_sym_GT_GT_GT] = ACTIONS(2731), + [anon_sym_AMP_CARET] = ACTIONS(2731), + [anon_sym_AMP_AMP] = ACTIONS(2731), + [anon_sym_PIPE_PIPE] = ACTIONS(2731), + [anon_sym_or] = ACTIONS(2731), + [sym_none] = ACTIONS(2731), + [sym_true] = ACTIONS(2731), + [sym_false] = ACTIONS(2731), + [sym_nil] = ACTIONS(2731), + [anon_sym_QMARK_DOT] = ACTIONS(2731), + [anon_sym_POUND_LBRACK] = ACTIONS(2731), + [anon_sym_if] = ACTIONS(2731), + [anon_sym_DOLLARif] = ACTIONS(2731), + [anon_sym_is] = ACTIONS(2731), + [anon_sym_BANGis] = ACTIONS(2731), + [anon_sym_in] = ACTIONS(2731), + [anon_sym_BANGin] = ACTIONS(2731), + [anon_sym_match] = ACTIONS(2731), + [anon_sym_select] = ACTIONS(2731), + [anon_sym_STAR_EQ] = ACTIONS(2731), + [anon_sym_SLASH_EQ] = ACTIONS(2731), + [anon_sym_PERCENT_EQ] = ACTIONS(2731), + [anon_sym_LT_LT_EQ] = ACTIONS(2731), + [anon_sym_GT_GT_EQ] = ACTIONS(2731), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2731), + [anon_sym_AMP_EQ] = ACTIONS(2731), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2731), + [anon_sym_PLUS_EQ] = ACTIONS(2731), + [anon_sym_DASH_EQ] = ACTIONS(2731), + [anon_sym_PIPE_EQ] = ACTIONS(2731), + [anon_sym_CARET_EQ] = ACTIONS(2731), + [anon_sym_COLON_EQ] = ACTIONS(2731), + [anon_sym_lock] = ACTIONS(2731), + [anon_sym_rlock] = ACTIONS(2731), + [anon_sym_unsafe] = ACTIONS(2731), + [anon_sym_sql] = ACTIONS(2731), + [sym_int_literal] = ACTIONS(2731), + [sym_float_literal] = ACTIONS(2731), + [sym_rune_literal] = ACTIONS(2731), + [anon_sym_SQUOTE] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(2731), + [anon_sym_c_SQUOTE] = ACTIONS(2731), + [anon_sym_c_DQUOTE] = ACTIONS(2731), + [anon_sym_r_SQUOTE] = ACTIONS(2731), + [anon_sym_r_DQUOTE] = ACTIONS(2731), + [sym_pseudo_compile_time_identifier] = ACTIONS(2731), + [anon_sym_shared] = ACTIONS(2731), + [anon_sym_map_LBRACK] = ACTIONS(2731), + [anon_sym_chan] = ACTIONS(2731), + [anon_sym_thread] = ACTIONS(2731), + [anon_sym_atomic] = ACTIONS(2731), + [anon_sym_assert] = ACTIONS(2731), + [anon_sym_defer] = ACTIONS(2731), + [anon_sym_goto] = ACTIONS(2731), + [anon_sym_break] = ACTIONS(2731), + [anon_sym_continue] = ACTIONS(2731), + [anon_sym_return] = ACTIONS(2731), + [anon_sym_DOLLARfor] = ACTIONS(2731), + [anon_sym_for] = ACTIONS(2731), + [anon_sym_POUND] = ACTIONS(2731), + [anon_sym_asm] = ACTIONS(2731), + [anon_sym_AT_LBRACK] = ACTIONS(2731), + }, + [437] = { + [sym_line_comment] = STATE(437), + [sym_block_comment] = STATE(437), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1399), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1398), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym__array_repeat1] = STATE(450), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_RBRACE] = ACTIONS(2721), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(2733), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2491), - [anon_sym_go] = ACTIONS(2493), - [anon_sym_spawn] = ACTIONS(2495), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_AMP] = ACTIONS(2497), - [anon_sym_LT_DASH] = ACTIONS(2499), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(2501), - [anon_sym_lock] = ACTIONS(2503), - [anon_sym_rlock] = ACTIONS(2503), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1404), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [414] = { - [sym_line_comment] = STATE(414), - [sym_block_comment] = STATE(414), - [ts_builtin_sym_end] = ACTIONS(2723), - [sym_identifier] = ACTIONS(2725), - [anon_sym_LF] = ACTIONS(2725), - [anon_sym_CR] = ACTIONS(2725), - [anon_sym_CR_LF] = ACTIONS(2725), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2725), - [anon_sym_as] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_COMMA] = ACTIONS(2725), - [anon_sym_const] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(2725), - [anon_sym_EQ] = ACTIONS(2725), - [anon_sym___global] = ACTIONS(2725), - [anon_sym_type] = ACTIONS(2725), - [anon_sym_PIPE] = ACTIONS(2725), - [anon_sym_fn] = ACTIONS(2725), - [anon_sym_PLUS] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2725), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_SLASH] = ACTIONS(2725), - [anon_sym_PERCENT] = ACTIONS(2725), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_GT] = ACTIONS(2725), - [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(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2725), - [anon_sym_pub] = ACTIONS(2725), - [anon_sym_mut] = ACTIONS(2725), - [anon_sym_enum] = ACTIONS(2725), - [anon_sym_interface] = ACTIONS(2725), - [anon_sym_PLUS_PLUS] = ACTIONS(2725), - [anon_sym_DASH_DASH] = ACTIONS(2725), - [anon_sym_QMARK] = ACTIONS(2725), - [anon_sym_BANG] = ACTIONS(2725), - [anon_sym_go] = ACTIONS(2725), - [anon_sym_spawn] = ACTIONS(2725), - [anon_sym_json_DOTdecode] = ACTIONS(2725), - [anon_sym_LBRACK2] = ACTIONS(2725), - [anon_sym_TILDE] = ACTIONS(2725), - [anon_sym_CARET] = ACTIONS(2725), - [anon_sym_AMP] = ACTIONS(2725), - [anon_sym_LT_DASH] = ACTIONS(2725), - [anon_sym_LT_LT] = ACTIONS(2725), - [anon_sym_GT_GT] = ACTIONS(2725), - [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(2725), - [sym_none] = ACTIONS(2725), - [sym_true] = ACTIONS(2725), - [sym_false] = ACTIONS(2725), - [sym_nil] = ACTIONS(2725), - [anon_sym_QMARK_DOT] = ACTIONS(2725), - [anon_sym_POUND_LBRACK] = ACTIONS(2725), - [anon_sym_if] = ACTIONS(2725), - [anon_sym_DOLLARif] = ACTIONS(2725), - [anon_sym_is] = ACTIONS(2725), - [anon_sym_BANGis] = ACTIONS(2725), - [anon_sym_in] = ACTIONS(2725), - [anon_sym_BANGin] = ACTIONS(2725), - [anon_sym_match] = ACTIONS(2725), - [anon_sym_select] = ACTIONS(2725), - [anon_sym_STAR_EQ] = ACTIONS(2725), - [anon_sym_SLASH_EQ] = ACTIONS(2725), - [anon_sym_PERCENT_EQ] = ACTIONS(2725), - [anon_sym_LT_LT_EQ] = ACTIONS(2725), - [anon_sym_GT_GT_EQ] = ACTIONS(2725), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2725), - [anon_sym_AMP_EQ] = ACTIONS(2725), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2725), - [anon_sym_PLUS_EQ] = ACTIONS(2725), - [anon_sym_DASH_EQ] = ACTIONS(2725), - [anon_sym_PIPE_EQ] = ACTIONS(2725), - [anon_sym_CARET_EQ] = ACTIONS(2725), - [anon_sym_COLON_EQ] = ACTIONS(2725), - [anon_sym_lock] = ACTIONS(2725), - [anon_sym_rlock] = ACTIONS(2725), - [anon_sym_unsafe] = ACTIONS(2725), - [anon_sym_sql] = ACTIONS(2725), - [sym_int_literal] = ACTIONS(2725), - [sym_float_literal] = ACTIONS(2725), - [sym_rune_literal] = ACTIONS(2725), - [anon_sym_SQUOTE] = ACTIONS(2725), - [anon_sym_DQUOTE] = ACTIONS(2725), - [anon_sym_c_SQUOTE] = ACTIONS(2725), - [anon_sym_c_DQUOTE] = ACTIONS(2725), - [anon_sym_r_SQUOTE] = ACTIONS(2725), - [anon_sym_r_DQUOTE] = ACTIONS(2725), - [sym_pseudo_compile_time_identifier] = ACTIONS(2725), - [anon_sym_shared] = ACTIONS(2725), - [anon_sym_map_LBRACK] = ACTIONS(2725), - [anon_sym_chan] = ACTIONS(2725), - [anon_sym_thread] = ACTIONS(2725), - [anon_sym_atomic] = ACTIONS(2725), - [anon_sym_assert] = ACTIONS(2725), - [anon_sym_defer] = ACTIONS(2725), - [anon_sym_goto] = ACTIONS(2725), - [anon_sym_break] = ACTIONS(2725), - [anon_sym_continue] = ACTIONS(2725), - [anon_sym_return] = ACTIONS(2725), - [anon_sym_DOLLARfor] = ACTIONS(2725), - [anon_sym_for] = ACTIONS(2725), - [anon_sym_POUND] = ACTIONS(2725), - [anon_sym_asm] = ACTIONS(2725), - [anon_sym_AT_LBRACK] = ACTIONS(2725), - }, - [415] = { - [sym_line_comment] = STATE(415), - [sym_block_comment] = STATE(415), - [ts_builtin_sym_end] = ACTIONS(2727), - [sym_identifier] = ACTIONS(2729), - [anon_sym_LF] = ACTIONS(2729), - [anon_sym_CR] = ACTIONS(2729), - [anon_sym_CR_LF] = ACTIONS(2729), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2729), - [anon_sym_as] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_COMMA] = ACTIONS(2729), - [anon_sym_const] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_EQ] = ACTIONS(2729), - [anon_sym___global] = ACTIONS(2729), - [anon_sym_type] = ACTIONS(2729), - [anon_sym_PIPE] = ACTIONS(2729), - [anon_sym_fn] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_SLASH] = ACTIONS(2729), - [anon_sym_PERCENT] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2729), - [anon_sym_GT] = ACTIONS(2729), - [anon_sym_EQ_EQ] = ACTIONS(2729), - [anon_sym_BANG_EQ] = ACTIONS(2729), - [anon_sym_LT_EQ] = ACTIONS(2729), - [anon_sym_GT_EQ] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_struct] = ACTIONS(2729), - [anon_sym_union] = ACTIONS(2729), - [anon_sym_pub] = ACTIONS(2729), - [anon_sym_mut] = ACTIONS(2729), - [anon_sym_enum] = ACTIONS(2729), - [anon_sym_interface] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2729), - [anon_sym_DASH_DASH] = ACTIONS(2729), - [anon_sym_QMARK] = ACTIONS(2729), - [anon_sym_BANG] = ACTIONS(2729), - [anon_sym_go] = ACTIONS(2729), - [anon_sym_spawn] = ACTIONS(2729), - [anon_sym_json_DOTdecode] = ACTIONS(2729), - [anon_sym_LBRACK2] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2729), - [anon_sym_CARET] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_LT_DASH] = ACTIONS(2729), - [anon_sym_LT_LT] = ACTIONS(2729), - [anon_sym_GT_GT] = ACTIONS(2729), - [anon_sym_GT_GT_GT] = ACTIONS(2729), - [anon_sym_AMP_CARET] = ACTIONS(2729), - [anon_sym_AMP_AMP] = ACTIONS(2729), - [anon_sym_PIPE_PIPE] = ACTIONS(2729), - [anon_sym_or] = ACTIONS(2729), - [sym_none] = ACTIONS(2729), - [sym_true] = ACTIONS(2729), - [sym_false] = ACTIONS(2729), - [sym_nil] = ACTIONS(2729), - [anon_sym_QMARK_DOT] = ACTIONS(2729), - [anon_sym_POUND_LBRACK] = ACTIONS(2729), - [anon_sym_if] = ACTIONS(2729), - [anon_sym_DOLLARif] = ACTIONS(2729), - [anon_sym_is] = ACTIONS(2729), - [anon_sym_BANGis] = ACTIONS(2729), - [anon_sym_in] = ACTIONS(2729), - [anon_sym_BANGin] = ACTIONS(2729), - [anon_sym_match] = ACTIONS(2729), - [anon_sym_select] = ACTIONS(2729), - [anon_sym_STAR_EQ] = ACTIONS(2729), - [anon_sym_SLASH_EQ] = ACTIONS(2729), - [anon_sym_PERCENT_EQ] = ACTIONS(2729), - [anon_sym_LT_LT_EQ] = ACTIONS(2729), - [anon_sym_GT_GT_EQ] = ACTIONS(2729), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2729), - [anon_sym_AMP_EQ] = ACTIONS(2729), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2729), - [anon_sym_PLUS_EQ] = ACTIONS(2729), - [anon_sym_DASH_EQ] = ACTIONS(2729), - [anon_sym_PIPE_EQ] = ACTIONS(2729), - [anon_sym_CARET_EQ] = ACTIONS(2729), - [anon_sym_COLON_EQ] = ACTIONS(2729), - [anon_sym_lock] = ACTIONS(2729), - [anon_sym_rlock] = ACTIONS(2729), - [anon_sym_unsafe] = ACTIONS(2729), - [anon_sym_sql] = ACTIONS(2729), - [sym_int_literal] = ACTIONS(2729), - [sym_float_literal] = ACTIONS(2729), - [sym_rune_literal] = ACTIONS(2729), - [anon_sym_SQUOTE] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2729), - [anon_sym_c_SQUOTE] = ACTIONS(2729), - [anon_sym_c_DQUOTE] = ACTIONS(2729), - [anon_sym_r_SQUOTE] = ACTIONS(2729), - [anon_sym_r_DQUOTE] = ACTIONS(2729), - [sym_pseudo_compile_time_identifier] = ACTIONS(2729), - [anon_sym_shared] = ACTIONS(2729), - [anon_sym_map_LBRACK] = ACTIONS(2729), - [anon_sym_chan] = ACTIONS(2729), - [anon_sym_thread] = ACTIONS(2729), - [anon_sym_atomic] = ACTIONS(2729), - [anon_sym_assert] = ACTIONS(2729), - [anon_sym_defer] = ACTIONS(2729), - [anon_sym_goto] = ACTIONS(2729), - [anon_sym_break] = ACTIONS(2729), - [anon_sym_continue] = ACTIONS(2729), - [anon_sym_return] = ACTIONS(2729), - [anon_sym_DOLLARfor] = ACTIONS(2729), - [anon_sym_for] = ACTIONS(2729), - [anon_sym_POUND] = ACTIONS(2729), - [anon_sym_asm] = ACTIONS(2729), - [anon_sym_AT_LBRACK] = ACTIONS(2729), - }, - [416] = { - [sym_line_comment] = STATE(416), - [sym_block_comment] = STATE(416), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4327), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [438] = { + [sym_line_comment] = STATE(438), + [sym_block_comment] = STATE(438), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym__array_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(2731), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(2735), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [417] = { - [sym_line_comment] = STATE(417), - [sym_block_comment] = STATE(417), - [sym__expression] = STATE(953), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(653), - [sym_mutable_expression] = STATE(1413), - [sym_expression_list] = STATE(1487), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [439] = { + [sym_line_comment] = STATE(439), + [sym_block_comment] = STATE(439), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1399), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1398), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym__array_repeat1] = STATE(438), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(2737), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_CARET] = ACTIONS(2555), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym_LT_DASH] = ACTIONS(2567), - [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(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [418] = { - [sym_line_comment] = STATE(418), - [sym_block_comment] = STATE(418), - [sym__expression] = STATE(2584), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3548), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_range] = STATE(4579), - [sym_identifier] = ACTIONS(2391), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1281), - }, - [419] = { - [sym_line_comment] = STATE(419), - [sym_block_comment] = STATE(419), - [sym__expression] = STATE(2584), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_range] = STATE(4579), - [sym_identifier] = ACTIONS(1219), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1281), - }, - [420] = { - [sym_line_comment] = STATE(420), - [sym_block_comment] = STATE(420), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4327), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(2733), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [421] = { - [sym_line_comment] = STATE(421), - [sym_block_comment] = STATE(421), - [ts_builtin_sym_end] = ACTIONS(2735), - [sym_identifier] = ACTIONS(2737), - [anon_sym_LF] = ACTIONS(2737), - [anon_sym_CR] = ACTIONS(2737), - [anon_sym_CR_LF] = ACTIONS(2737), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2737), - [anon_sym_as] = ACTIONS(2737), - [anon_sym_LBRACE] = ACTIONS(2737), - [anon_sym_COMMA] = ACTIONS(2737), - [anon_sym_const] = ACTIONS(2737), - [anon_sym_LPAREN] = ACTIONS(2737), - [anon_sym_EQ] = ACTIONS(2737), - [anon_sym___global] = ACTIONS(2737), - [anon_sym_type] = ACTIONS(2737), - [anon_sym_PIPE] = ACTIONS(2737), - [anon_sym_fn] = ACTIONS(2737), - [anon_sym_PLUS] = ACTIONS(2737), - [anon_sym_DASH] = ACTIONS(2737), - [anon_sym_STAR] = ACTIONS(2737), - [anon_sym_SLASH] = ACTIONS(2737), - [anon_sym_PERCENT] = ACTIONS(2737), - [anon_sym_LT] = ACTIONS(2737), - [anon_sym_GT] = ACTIONS(2737), - [anon_sym_EQ_EQ] = ACTIONS(2737), - [anon_sym_BANG_EQ] = ACTIONS(2737), - [anon_sym_LT_EQ] = ACTIONS(2737), - [anon_sym_GT_EQ] = ACTIONS(2737), - [anon_sym_LBRACK] = ACTIONS(2735), - [anon_sym_struct] = ACTIONS(2737), - [anon_sym_union] = ACTIONS(2737), - [anon_sym_pub] = ACTIONS(2737), - [anon_sym_mut] = ACTIONS(2737), - [anon_sym_enum] = ACTIONS(2737), - [anon_sym_interface] = ACTIONS(2737), - [anon_sym_PLUS_PLUS] = ACTIONS(2737), - [anon_sym_DASH_DASH] = ACTIONS(2737), - [anon_sym_QMARK] = ACTIONS(2737), - [anon_sym_BANG] = ACTIONS(2737), - [anon_sym_go] = ACTIONS(2737), - [anon_sym_spawn] = ACTIONS(2737), - [anon_sym_json_DOTdecode] = ACTIONS(2737), - [anon_sym_LBRACK2] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2737), - [anon_sym_CARET] = ACTIONS(2737), - [anon_sym_AMP] = ACTIONS(2737), - [anon_sym_LT_DASH] = ACTIONS(2737), - [anon_sym_LT_LT] = ACTIONS(2737), - [anon_sym_GT_GT] = ACTIONS(2737), - [anon_sym_GT_GT_GT] = ACTIONS(2737), - [anon_sym_AMP_CARET] = ACTIONS(2737), - [anon_sym_AMP_AMP] = ACTIONS(2737), - [anon_sym_PIPE_PIPE] = ACTIONS(2737), - [anon_sym_or] = ACTIONS(2737), - [sym_none] = ACTIONS(2737), - [sym_true] = ACTIONS(2737), - [sym_false] = ACTIONS(2737), - [sym_nil] = ACTIONS(2737), - [anon_sym_QMARK_DOT] = ACTIONS(2737), - [anon_sym_POUND_LBRACK] = ACTIONS(2737), - [anon_sym_if] = ACTIONS(2737), - [anon_sym_DOLLARif] = ACTIONS(2737), - [anon_sym_is] = ACTIONS(2737), - [anon_sym_BANGis] = ACTIONS(2737), - [anon_sym_in] = ACTIONS(2737), - [anon_sym_BANGin] = ACTIONS(2737), - [anon_sym_match] = ACTIONS(2737), - [anon_sym_select] = ACTIONS(2737), - [anon_sym_STAR_EQ] = ACTIONS(2737), - [anon_sym_SLASH_EQ] = ACTIONS(2737), - [anon_sym_PERCENT_EQ] = ACTIONS(2737), - [anon_sym_LT_LT_EQ] = ACTIONS(2737), - [anon_sym_GT_GT_EQ] = ACTIONS(2737), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2737), - [anon_sym_AMP_EQ] = ACTIONS(2737), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2737), - [anon_sym_PLUS_EQ] = ACTIONS(2737), - [anon_sym_DASH_EQ] = ACTIONS(2737), - [anon_sym_PIPE_EQ] = ACTIONS(2737), - [anon_sym_CARET_EQ] = ACTIONS(2737), - [anon_sym_COLON_EQ] = ACTIONS(2737), - [anon_sym_lock] = ACTIONS(2737), - [anon_sym_rlock] = ACTIONS(2737), - [anon_sym_unsafe] = ACTIONS(2737), - [anon_sym_sql] = ACTIONS(2737), - [sym_int_literal] = ACTIONS(2737), - [sym_float_literal] = ACTIONS(2737), - [sym_rune_literal] = ACTIONS(2737), - [anon_sym_SQUOTE] = ACTIONS(2737), - [anon_sym_DQUOTE] = ACTIONS(2737), - [anon_sym_c_SQUOTE] = ACTIONS(2737), - [anon_sym_c_DQUOTE] = ACTIONS(2737), - [anon_sym_r_SQUOTE] = ACTIONS(2737), - [anon_sym_r_DQUOTE] = ACTIONS(2737), - [sym_pseudo_compile_time_identifier] = ACTIONS(2737), - [anon_sym_shared] = ACTIONS(2737), - [anon_sym_map_LBRACK] = ACTIONS(2737), - [anon_sym_chan] = ACTIONS(2737), - [anon_sym_thread] = ACTIONS(2737), - [anon_sym_atomic] = ACTIONS(2737), - [anon_sym_assert] = ACTIONS(2737), - [anon_sym_defer] = ACTIONS(2737), - [anon_sym_goto] = ACTIONS(2737), - [anon_sym_break] = ACTIONS(2737), - [anon_sym_continue] = ACTIONS(2737), - [anon_sym_return] = ACTIONS(2737), - [anon_sym_DOLLARfor] = ACTIONS(2737), - [anon_sym_for] = ACTIONS(2737), - [anon_sym_POUND] = ACTIONS(2737), - [anon_sym_asm] = ACTIONS(2737), - [anon_sym_AT_LBRACK] = ACTIONS(2737), - }, - [422] = { - [sym_line_comment] = STATE(422), - [sym_block_comment] = STATE(422), - [sym__expression] = STATE(2594), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_range] = STATE(4416), - [sym_identifier] = ACTIONS(1219), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1281), - }, - [423] = { - [sym_line_comment] = STATE(423), - [sym_block_comment] = STATE(423), - [sym__expression] = STATE(2595), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3548), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_range] = STATE(4379), - [sym_identifier] = ACTIONS(2391), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1281), - }, - [424] = { - [sym_line_comment] = STATE(424), - [sym_block_comment] = STATE(424), - [sym__expression] = STATE(2595), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_range] = STATE(4379), - [sym_identifier] = ACTIONS(1219), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1404), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1281), }, - [425] = { - [sym_line_comment] = STATE(425), - [sym_block_comment] = STATE(425), + [440] = { + [sym_line_comment] = STATE(440), + [sym_block_comment] = STATE(440), [ts_builtin_sym_end] = ACTIONS(2739), [sym_identifier] = ACTIONS(2741), [anon_sym_LF] = ACTIONS(2741), @@ -72113,7 +74148,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(2741), [anon_sym___global] = ACTIONS(2741), [anon_sym_type] = ACTIONS(2741), - [anon_sym_PIPE] = ACTIONS(2741), [anon_sym_fn] = ACTIONS(2741), [anon_sym_PLUS] = ACTIONS(2741), [anon_sym_DASH] = ACTIONS(2741), @@ -72140,6 +74174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(2741), [anon_sym_spawn] = ACTIONS(2741), [anon_sym_json_DOTdecode] = ACTIONS(2741), + [anon_sym_PIPE] = ACTIONS(2741), [anon_sym_LBRACK2] = ACTIONS(2741), [anon_sym_TILDE] = ACTIONS(2741), [anon_sym_CARET] = ACTIONS(2741), @@ -72210,9 +74245,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2741), [anon_sym_AT_LBRACK] = ACTIONS(2741), }, - [426] = { - [sym_line_comment] = STATE(426), - [sym_block_comment] = STATE(426), + [441] = { + [sym_line_comment] = STATE(441), + [sym_block_comment] = STATE(441), [ts_builtin_sym_end] = ACTIONS(2743), [sym_identifier] = ACTIONS(2745), [anon_sym_LF] = ACTIONS(2745), @@ -72229,7 +74264,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(2745), [anon_sym___global] = ACTIONS(2745), [anon_sym_type] = ACTIONS(2745), - [anon_sym_PIPE] = ACTIONS(2745), [anon_sym_fn] = ACTIONS(2745), [anon_sym_PLUS] = ACTIONS(2745), [anon_sym_DASH] = ACTIONS(2745), @@ -72256,6 +74290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(2745), [anon_sym_spawn] = ACTIONS(2745), [anon_sym_json_DOTdecode] = ACTIONS(2745), + [anon_sym_PIPE] = ACTIONS(2745), [anon_sym_LBRACK2] = ACTIONS(2745), [anon_sym_TILDE] = ACTIONS(2745), [anon_sym_CARET] = ACTIONS(2745), @@ -72326,9 +74361,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2745), [anon_sym_AT_LBRACK] = ACTIONS(2745), }, - [427] = { - [sym_line_comment] = STATE(427), - [sym_block_comment] = STATE(427), + [442] = { + [sym_line_comment] = STATE(442), + [sym_block_comment] = STATE(442), [ts_builtin_sym_end] = ACTIONS(2747), [sym_identifier] = ACTIONS(2749), [anon_sym_LF] = ACTIONS(2749), @@ -72345,7 +74380,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(2749), [anon_sym___global] = ACTIONS(2749), [anon_sym_type] = ACTIONS(2749), - [anon_sym_PIPE] = ACTIONS(2749), [anon_sym_fn] = ACTIONS(2749), [anon_sym_PLUS] = ACTIONS(2749), [anon_sym_DASH] = ACTIONS(2749), @@ -72372,6 +74406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(2749), [anon_sym_spawn] = ACTIONS(2749), [anon_sym_json_DOTdecode] = ACTIONS(2749), + [anon_sym_PIPE] = ACTIONS(2749), [anon_sym_LBRACK2] = ACTIONS(2749), [anon_sym_TILDE] = ACTIONS(2749), [anon_sym_CARET] = ACTIONS(2749), @@ -72442,705 +74477,937 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2749), [anon_sym_AT_LBRACK] = ACTIONS(2749), }, - [428] = { - [sym_line_comment] = STATE(428), - [sym_block_comment] = STATE(428), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1398), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1396), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym__array_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1299), + [443] = { + [sym_line_comment] = STATE(443), + [sym_block_comment] = STATE(443), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym__array_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), [anon_sym_RBRACK] = ACTIONS(2751), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1347), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [429] = { - [sym_line_comment] = STATE(429), - [sym_block_comment] = STATE(429), - [sym__expression] = STATE(2594), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3548), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_range] = STATE(4416), - [sym_identifier] = ACTIONS(2391), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1281), + [444] = { + [sym_line_comment] = STATE(444), + [sym_block_comment] = STATE(444), + [ts_builtin_sym_end] = ACTIONS(2753), + [sym_identifier] = ACTIONS(2755), + [anon_sym_LF] = ACTIONS(2755), + [anon_sym_CR] = ACTIONS(2755), + [anon_sym_CR_LF] = ACTIONS(2755), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2755), + [anon_sym_as] = ACTIONS(2755), + [anon_sym_LBRACE] = ACTIONS(2755), + [anon_sym_COMMA] = ACTIONS(2755), + [anon_sym_const] = ACTIONS(2755), + [anon_sym_LPAREN] = ACTIONS(2755), + [anon_sym_EQ] = ACTIONS(2755), + [anon_sym___global] = ACTIONS(2755), + [anon_sym_type] = ACTIONS(2755), + [anon_sym_fn] = ACTIONS(2755), + [anon_sym_PLUS] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_SLASH] = ACTIONS(2755), + [anon_sym_PERCENT] = ACTIONS(2755), + [anon_sym_LT] = ACTIONS(2755), + [anon_sym_GT] = ACTIONS(2755), + [anon_sym_EQ_EQ] = ACTIONS(2755), + [anon_sym_BANG_EQ] = ACTIONS(2755), + [anon_sym_LT_EQ] = ACTIONS(2755), + [anon_sym_GT_EQ] = ACTIONS(2755), + [anon_sym_LBRACK] = ACTIONS(2753), + [anon_sym_struct] = ACTIONS(2755), + [anon_sym_union] = ACTIONS(2755), + [anon_sym_pub] = ACTIONS(2755), + [anon_sym_mut] = ACTIONS(2755), + [anon_sym_enum] = ACTIONS(2755), + [anon_sym_interface] = ACTIONS(2755), + [anon_sym_PLUS_PLUS] = ACTIONS(2755), + [anon_sym_DASH_DASH] = ACTIONS(2755), + [anon_sym_QMARK] = ACTIONS(2755), + [anon_sym_BANG] = ACTIONS(2755), + [anon_sym_go] = ACTIONS(2755), + [anon_sym_spawn] = ACTIONS(2755), + [anon_sym_json_DOTdecode] = ACTIONS(2755), + [anon_sym_PIPE] = ACTIONS(2755), + [anon_sym_LBRACK2] = ACTIONS(2755), + [anon_sym_TILDE] = ACTIONS(2755), + [anon_sym_CARET] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(2755), + [anon_sym_LT_DASH] = ACTIONS(2755), + [anon_sym_LT_LT] = ACTIONS(2755), + [anon_sym_GT_GT] = ACTIONS(2755), + [anon_sym_GT_GT_GT] = ACTIONS(2755), + [anon_sym_AMP_CARET] = ACTIONS(2755), + [anon_sym_AMP_AMP] = ACTIONS(2755), + [anon_sym_PIPE_PIPE] = ACTIONS(2755), + [anon_sym_or] = ACTIONS(2755), + [sym_none] = ACTIONS(2755), + [sym_true] = ACTIONS(2755), + [sym_false] = ACTIONS(2755), + [sym_nil] = ACTIONS(2755), + [anon_sym_QMARK_DOT] = ACTIONS(2755), + [anon_sym_POUND_LBRACK] = ACTIONS(2755), + [anon_sym_if] = ACTIONS(2755), + [anon_sym_DOLLARif] = ACTIONS(2755), + [anon_sym_is] = ACTIONS(2755), + [anon_sym_BANGis] = ACTIONS(2755), + [anon_sym_in] = ACTIONS(2755), + [anon_sym_BANGin] = ACTIONS(2755), + [anon_sym_match] = ACTIONS(2755), + [anon_sym_select] = ACTIONS(2755), + [anon_sym_STAR_EQ] = ACTIONS(2755), + [anon_sym_SLASH_EQ] = ACTIONS(2755), + [anon_sym_PERCENT_EQ] = ACTIONS(2755), + [anon_sym_LT_LT_EQ] = ACTIONS(2755), + [anon_sym_GT_GT_EQ] = ACTIONS(2755), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2755), + [anon_sym_AMP_EQ] = ACTIONS(2755), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2755), + [anon_sym_PLUS_EQ] = ACTIONS(2755), + [anon_sym_DASH_EQ] = ACTIONS(2755), + [anon_sym_PIPE_EQ] = ACTIONS(2755), + [anon_sym_CARET_EQ] = ACTIONS(2755), + [anon_sym_COLON_EQ] = ACTIONS(2755), + [anon_sym_lock] = ACTIONS(2755), + [anon_sym_rlock] = ACTIONS(2755), + [anon_sym_unsafe] = ACTIONS(2755), + [anon_sym_sql] = ACTIONS(2755), + [sym_int_literal] = ACTIONS(2755), + [sym_float_literal] = ACTIONS(2755), + [sym_rune_literal] = ACTIONS(2755), + [anon_sym_SQUOTE] = ACTIONS(2755), + [anon_sym_DQUOTE] = ACTIONS(2755), + [anon_sym_c_SQUOTE] = ACTIONS(2755), + [anon_sym_c_DQUOTE] = ACTIONS(2755), + [anon_sym_r_SQUOTE] = ACTIONS(2755), + [anon_sym_r_DQUOTE] = ACTIONS(2755), + [sym_pseudo_compile_time_identifier] = ACTIONS(2755), + [anon_sym_shared] = ACTIONS(2755), + [anon_sym_map_LBRACK] = ACTIONS(2755), + [anon_sym_chan] = ACTIONS(2755), + [anon_sym_thread] = ACTIONS(2755), + [anon_sym_atomic] = ACTIONS(2755), + [anon_sym_assert] = ACTIONS(2755), + [anon_sym_defer] = ACTIONS(2755), + [anon_sym_goto] = ACTIONS(2755), + [anon_sym_break] = ACTIONS(2755), + [anon_sym_continue] = ACTIONS(2755), + [anon_sym_return] = ACTIONS(2755), + [anon_sym_DOLLARfor] = ACTIONS(2755), + [anon_sym_for] = ACTIONS(2755), + [anon_sym_POUND] = ACTIONS(2755), + [anon_sym_asm] = ACTIONS(2755), + [anon_sym_AT_LBRACK] = ACTIONS(2755), }, - [430] = { - [sym_line_comment] = STATE(430), - [sym_block_comment] = STATE(430), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2928), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2753), + [445] = { + [sym_line_comment] = STATE(445), + [sym_block_comment] = STATE(445), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1399), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1398), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym__array_repeat1] = STATE(438), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(2757), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_static] = ACTIONS(2755), - [anon_sym_volatile] = ACTIONS(2757), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1404), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [431] = { - [sym_line_comment] = STATE(431), - [sym_block_comment] = STATE(431), - [sym__expression] = STATE(1370), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_string_interpolation_repeat1] = STATE(479), - [sym_identifier] = ACTIONS(1299), + [446] = { + [sym_line_comment] = STATE(446), + [sym_block_comment] = STATE(446), + [ts_builtin_sym_end] = ACTIONS(1943), + [sym_identifier] = ACTIONS(1945), + [anon_sym_LF] = ACTIONS(1945), + [anon_sym_CR] = ACTIONS(1945), + [anon_sym_CR_LF] = ACTIONS(1945), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1945), + [anon_sym_as] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1945), + [anon_sym_COMMA] = ACTIONS(1945), + [anon_sym_const] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_EQ] = ACTIONS(1945), + [anon_sym___global] = ACTIONS(1945), + [anon_sym_type] = ACTIONS(1945), + [anon_sym_fn] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1945), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_SLASH] = ACTIONS(1945), + [anon_sym_PERCENT] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1945), + [anon_sym_GT] = ACTIONS(1945), + [anon_sym_EQ_EQ] = ACTIONS(1945), + [anon_sym_BANG_EQ] = ACTIONS(1945), + [anon_sym_LT_EQ] = ACTIONS(1945), + [anon_sym_GT_EQ] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1943), + [anon_sym_struct] = ACTIONS(1945), + [anon_sym_union] = ACTIONS(1945), + [anon_sym_pub] = ACTIONS(1945), + [anon_sym_mut] = ACTIONS(1945), + [anon_sym_enum] = ACTIONS(1945), + [anon_sym_interface] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), + [anon_sym_QMARK] = ACTIONS(1945), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_go] = ACTIONS(1945), + [anon_sym_spawn] = ACTIONS(1945), + [anon_sym_json_DOTdecode] = ACTIONS(1945), + [anon_sym_PIPE] = ACTIONS(1945), + [anon_sym_LBRACK2] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), + [anon_sym_LT_DASH] = ACTIONS(1945), + [anon_sym_LT_LT] = ACTIONS(1945), + [anon_sym_GT_GT] = ACTIONS(1945), + [anon_sym_GT_GT_GT] = ACTIONS(1945), + [anon_sym_AMP_CARET] = ACTIONS(1945), + [anon_sym_AMP_AMP] = ACTIONS(1945), + [anon_sym_PIPE_PIPE] = ACTIONS(1945), + [anon_sym_or] = ACTIONS(1945), + [sym_none] = ACTIONS(1945), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_nil] = ACTIONS(1945), + [anon_sym_QMARK_DOT] = ACTIONS(1945), + [anon_sym_POUND_LBRACK] = ACTIONS(1945), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_DOLLARif] = ACTIONS(1945), + [anon_sym_is] = ACTIONS(1945), + [anon_sym_BANGis] = ACTIONS(1945), + [anon_sym_in] = ACTIONS(1945), + [anon_sym_BANGin] = ACTIONS(1945), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_select] = ACTIONS(1945), + [anon_sym_STAR_EQ] = ACTIONS(1945), + [anon_sym_SLASH_EQ] = ACTIONS(1945), + [anon_sym_PERCENT_EQ] = ACTIONS(1945), + [anon_sym_LT_LT_EQ] = ACTIONS(1945), + [anon_sym_GT_GT_EQ] = ACTIONS(1945), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1945), + [anon_sym_AMP_EQ] = ACTIONS(1945), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1945), + [anon_sym_PLUS_EQ] = ACTIONS(1945), + [anon_sym_DASH_EQ] = ACTIONS(1945), + [anon_sym_PIPE_EQ] = ACTIONS(1945), + [anon_sym_CARET_EQ] = ACTIONS(1945), + [anon_sym_COLON_EQ] = ACTIONS(1945), + [anon_sym_lock] = ACTIONS(1945), + [anon_sym_rlock] = ACTIONS(1945), + [anon_sym_unsafe] = ACTIONS(1945), + [anon_sym_sql] = ACTIONS(1945), + [sym_int_literal] = ACTIONS(1945), + [sym_float_literal] = ACTIONS(1945), + [sym_rune_literal] = ACTIONS(1945), + [anon_sym_SQUOTE] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(1945), + [anon_sym_c_SQUOTE] = ACTIONS(1945), + [anon_sym_c_DQUOTE] = ACTIONS(1945), + [anon_sym_r_SQUOTE] = ACTIONS(1945), + [anon_sym_r_DQUOTE] = ACTIONS(1945), + [sym_pseudo_compile_time_identifier] = ACTIONS(1945), + [anon_sym_shared] = ACTIONS(1945), + [anon_sym_map_LBRACK] = ACTIONS(1945), + [anon_sym_chan] = ACTIONS(1945), + [anon_sym_thread] = ACTIONS(1945), + [anon_sym_atomic] = ACTIONS(1945), + [anon_sym_assert] = ACTIONS(1945), + [anon_sym_defer] = ACTIONS(1945), + [anon_sym_goto] = ACTIONS(1945), + [anon_sym_break] = ACTIONS(1945), + [anon_sym_continue] = ACTIONS(1945), + [anon_sym_return] = ACTIONS(1945), + [anon_sym_DOLLARfor] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1945), + [anon_sym_POUND] = ACTIONS(1945), + [anon_sym_asm] = ACTIONS(1945), + [anon_sym_AT_LBRACK] = ACTIONS(1945), + }, + [447] = { + [sym_line_comment] = STATE(447), + [sym_block_comment] = STATE(447), + [ts_builtin_sym_end] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1837), + [anon_sym_LF] = ACTIONS(1837), + [anon_sym_CR] = ACTIONS(1837), + [anon_sym_CR_LF] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_as] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_const] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym___global] = ACTIONS(1837), + [anon_sym_type] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_struct] = ACTIONS(1837), + [anon_sym_union] = ACTIONS(1837), + [anon_sym_pub] = ACTIONS(1837), + [anon_sym_mut] = ACTIONS(1837), + [anon_sym_enum] = ACTIONS(1837), + [anon_sym_interface] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_QMARK] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_go] = ACTIONS(1837), + [anon_sym_spawn] = ACTIONS(1837), + [anon_sym_json_DOTdecode] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_LBRACK2] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_AMP_CARET] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [sym_none] = ACTIONS(1837), + [sym_true] = ACTIONS(1837), + [sym_false] = ACTIONS(1837), + [sym_nil] = ACTIONS(1837), + [anon_sym_QMARK_DOT] = ACTIONS(1837), + [anon_sym_POUND_LBRACK] = ACTIONS(1837), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_DOLLARif] = ACTIONS(1837), + [anon_sym_is] = ACTIONS(1837), + [anon_sym_BANGis] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_BANGin] = ACTIONS(1837), + [anon_sym_match] = ACTIONS(1837), + [anon_sym_select] = ACTIONS(1837), + [anon_sym_STAR_EQ] = ACTIONS(1837), + [anon_sym_SLASH_EQ] = ACTIONS(1837), + [anon_sym_PERCENT_EQ] = ACTIONS(1837), + [anon_sym_LT_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_GT_EQ] = ACTIONS(1837), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1837), + [anon_sym_AMP_EQ] = ACTIONS(1837), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1837), + [anon_sym_PLUS_EQ] = ACTIONS(1837), + [anon_sym_DASH_EQ] = ACTIONS(1837), + [anon_sym_PIPE_EQ] = ACTIONS(1837), + [anon_sym_CARET_EQ] = ACTIONS(1837), + [anon_sym_COLON_EQ] = ACTIONS(1837), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1837), + [anon_sym_sql] = ACTIONS(1837), + [sym_int_literal] = ACTIONS(1837), + [sym_float_literal] = ACTIONS(1837), + [sym_rune_literal] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_c_SQUOTE] = ACTIONS(1837), + [anon_sym_c_DQUOTE] = ACTIONS(1837), + [anon_sym_r_SQUOTE] = ACTIONS(1837), + [anon_sym_r_DQUOTE] = ACTIONS(1837), + [sym_pseudo_compile_time_identifier] = ACTIONS(1837), + [anon_sym_shared] = ACTIONS(1837), + [anon_sym_map_LBRACK] = ACTIONS(1837), + [anon_sym_chan] = ACTIONS(1837), + [anon_sym_thread] = ACTIONS(1837), + [anon_sym_atomic] = ACTIONS(1837), + [anon_sym_assert] = ACTIONS(1837), + [anon_sym_defer] = ACTIONS(1837), + [anon_sym_goto] = ACTIONS(1837), + [anon_sym_break] = ACTIONS(1837), + [anon_sym_continue] = ACTIONS(1837), + [anon_sym_return] = ACTIONS(1837), + [anon_sym_DOLLARfor] = ACTIONS(1837), + [anon_sym_for] = ACTIONS(1837), + [anon_sym_POUND] = ACTIONS(1837), + [anon_sym_asm] = ACTIONS(1837), + [anon_sym_AT_LBRACK] = ACTIONS(1837), + }, + [448] = { + [sym_line_comment] = STATE(448), + [sym_block_comment] = STATE(448), + [ts_builtin_sym_end] = ACTIONS(2759), + [sym_identifier] = ACTIONS(2761), + [anon_sym_LF] = ACTIONS(2761), + [anon_sym_CR] = ACTIONS(2761), + [anon_sym_CR_LF] = ACTIONS(2761), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2761), + [anon_sym_as] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2761), + [anon_sym_COMMA] = ACTIONS(2761), + [anon_sym_const] = ACTIONS(2761), + [anon_sym_LPAREN] = ACTIONS(2761), + [anon_sym_EQ] = ACTIONS(2761), + [anon_sym___global] = ACTIONS(2761), + [anon_sym_type] = ACTIONS(2761), + [anon_sym_fn] = ACTIONS(2761), + [anon_sym_PLUS] = ACTIONS(2761), + [anon_sym_DASH] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(2761), + [anon_sym_SLASH] = ACTIONS(2761), + [anon_sym_PERCENT] = ACTIONS(2761), + [anon_sym_LT] = ACTIONS(2761), + [anon_sym_GT] = ACTIONS(2761), + [anon_sym_EQ_EQ] = ACTIONS(2761), + [anon_sym_BANG_EQ] = ACTIONS(2761), + [anon_sym_LT_EQ] = ACTIONS(2761), + [anon_sym_GT_EQ] = ACTIONS(2761), + [anon_sym_LBRACK] = ACTIONS(2759), + [anon_sym_struct] = ACTIONS(2761), + [anon_sym_union] = ACTIONS(2761), + [anon_sym_pub] = ACTIONS(2761), + [anon_sym_mut] = ACTIONS(2761), + [anon_sym_enum] = ACTIONS(2761), + [anon_sym_interface] = ACTIONS(2761), + [anon_sym_PLUS_PLUS] = ACTIONS(2761), + [anon_sym_DASH_DASH] = ACTIONS(2761), + [anon_sym_QMARK] = ACTIONS(2761), + [anon_sym_BANG] = ACTIONS(2761), + [anon_sym_go] = ACTIONS(2761), + [anon_sym_spawn] = ACTIONS(2761), + [anon_sym_json_DOTdecode] = ACTIONS(2761), + [anon_sym_PIPE] = ACTIONS(2761), + [anon_sym_LBRACK2] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2761), + [anon_sym_CARET] = ACTIONS(2761), + [anon_sym_AMP] = ACTIONS(2761), + [anon_sym_LT_DASH] = ACTIONS(2761), + [anon_sym_LT_LT] = ACTIONS(2761), + [anon_sym_GT_GT] = ACTIONS(2761), + [anon_sym_GT_GT_GT] = ACTIONS(2761), + [anon_sym_AMP_CARET] = ACTIONS(2761), + [anon_sym_AMP_AMP] = ACTIONS(2761), + [anon_sym_PIPE_PIPE] = ACTIONS(2761), + [anon_sym_or] = ACTIONS(2761), + [sym_none] = ACTIONS(2761), + [sym_true] = ACTIONS(2761), + [sym_false] = ACTIONS(2761), + [sym_nil] = ACTIONS(2761), + [anon_sym_QMARK_DOT] = ACTIONS(2761), + [anon_sym_POUND_LBRACK] = ACTIONS(2761), + [anon_sym_if] = ACTIONS(2761), + [anon_sym_DOLLARif] = ACTIONS(2761), + [anon_sym_is] = ACTIONS(2761), + [anon_sym_BANGis] = ACTIONS(2761), + [anon_sym_in] = ACTIONS(2761), + [anon_sym_BANGin] = ACTIONS(2761), + [anon_sym_match] = ACTIONS(2761), + [anon_sym_select] = ACTIONS(2761), + [anon_sym_STAR_EQ] = ACTIONS(2761), + [anon_sym_SLASH_EQ] = ACTIONS(2761), + [anon_sym_PERCENT_EQ] = ACTIONS(2761), + [anon_sym_LT_LT_EQ] = ACTIONS(2761), + [anon_sym_GT_GT_EQ] = ACTIONS(2761), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2761), + [anon_sym_AMP_EQ] = ACTIONS(2761), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2761), + [anon_sym_PLUS_EQ] = ACTIONS(2761), + [anon_sym_DASH_EQ] = ACTIONS(2761), + [anon_sym_PIPE_EQ] = ACTIONS(2761), + [anon_sym_CARET_EQ] = ACTIONS(2761), + [anon_sym_COLON_EQ] = ACTIONS(2761), + [anon_sym_lock] = ACTIONS(2761), + [anon_sym_rlock] = ACTIONS(2761), + [anon_sym_unsafe] = ACTIONS(2761), + [anon_sym_sql] = ACTIONS(2761), + [sym_int_literal] = ACTIONS(2761), + [sym_float_literal] = ACTIONS(2761), + [sym_rune_literal] = ACTIONS(2761), + [anon_sym_SQUOTE] = ACTIONS(2761), + [anon_sym_DQUOTE] = ACTIONS(2761), + [anon_sym_c_SQUOTE] = ACTIONS(2761), + [anon_sym_c_DQUOTE] = ACTIONS(2761), + [anon_sym_r_SQUOTE] = ACTIONS(2761), + [anon_sym_r_DQUOTE] = ACTIONS(2761), + [sym_pseudo_compile_time_identifier] = ACTIONS(2761), + [anon_sym_shared] = ACTIONS(2761), + [anon_sym_map_LBRACK] = ACTIONS(2761), + [anon_sym_chan] = ACTIONS(2761), + [anon_sym_thread] = ACTIONS(2761), + [anon_sym_atomic] = ACTIONS(2761), + [anon_sym_assert] = ACTIONS(2761), + [anon_sym_defer] = ACTIONS(2761), + [anon_sym_goto] = ACTIONS(2761), + [anon_sym_break] = ACTIONS(2761), + [anon_sym_continue] = ACTIONS(2761), + [anon_sym_return] = ACTIONS(2761), + [anon_sym_DOLLARfor] = ACTIONS(2761), + [anon_sym_for] = ACTIONS(2761), + [anon_sym_POUND] = ACTIONS(2761), + [anon_sym_asm] = ACTIONS(2761), + [anon_sym_AT_LBRACK] = ACTIONS(2761), + }, + [449] = { + [sym_line_comment] = STATE(449), + [sym_block_comment] = STATE(449), + [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_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_fn] = ACTIONS(2765), + [anon_sym_PLUS] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(2765), + [anon_sym_STAR] = ACTIONS(2765), + [anon_sym_SLASH] = 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_PIPE] = 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_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), + [anon_sym_SQUOTE] = ACTIONS(2765), + [anon_sym_DQUOTE] = ACTIONS(2765), + [anon_sym_c_SQUOTE] = ACTIONS(2765), + [anon_sym_c_DQUOTE] = ACTIONS(2765), + [anon_sym_r_SQUOTE] = ACTIONS(2765), + [anon_sym_r_DQUOTE] = 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), + }, + [450] = { + [sym_line_comment] = STATE(450), + [sym_block_comment] = STATE(450), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym__array_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_RBRACE] = ACTIONS(2759), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(2767), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2491), - [anon_sym_go] = ACTIONS(2493), - [anon_sym_spawn] = ACTIONS(2495), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_AMP] = ACTIONS(2497), - [anon_sym_LT_DASH] = ACTIONS(2499), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(2501), - [anon_sym_lock] = ACTIONS(2503), - [anon_sym_rlock] = ACTIONS(2503), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [432] = { - [sym_line_comment] = STATE(432), - [sym_block_comment] = STATE(432), - [ts_builtin_sym_end] = ACTIONS(2761), - [sym_identifier] = ACTIONS(2763), - [anon_sym_LF] = ACTIONS(2763), - [anon_sym_CR] = ACTIONS(2763), - [anon_sym_CR_LF] = ACTIONS(2763), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2763), - [anon_sym_as] = ACTIONS(2763), - [anon_sym_LBRACE] = ACTIONS(2763), - [anon_sym_COMMA] = ACTIONS(2763), - [anon_sym_const] = ACTIONS(2763), - [anon_sym_LPAREN] = ACTIONS(2763), - [anon_sym_EQ] = ACTIONS(2763), - [anon_sym___global] = ACTIONS(2763), - [anon_sym_type] = ACTIONS(2763), - [anon_sym_PIPE] = ACTIONS(2763), - [anon_sym_fn] = ACTIONS(2763), - [anon_sym_PLUS] = ACTIONS(2763), - [anon_sym_DASH] = ACTIONS(2763), - [anon_sym_STAR] = ACTIONS(2763), - [anon_sym_SLASH] = ACTIONS(2763), - [anon_sym_PERCENT] = ACTIONS(2763), - [anon_sym_LT] = ACTIONS(2763), - [anon_sym_GT] = ACTIONS(2763), - [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(2761), - [anon_sym_struct] = ACTIONS(2763), - [anon_sym_union] = ACTIONS(2763), - [anon_sym_pub] = ACTIONS(2763), - [anon_sym_mut] = ACTIONS(2763), - [anon_sym_enum] = ACTIONS(2763), - [anon_sym_interface] = ACTIONS(2763), - [anon_sym_PLUS_PLUS] = ACTIONS(2763), - [anon_sym_DASH_DASH] = ACTIONS(2763), - [anon_sym_QMARK] = ACTIONS(2763), - [anon_sym_BANG] = ACTIONS(2763), - [anon_sym_go] = ACTIONS(2763), - [anon_sym_spawn] = ACTIONS(2763), - [anon_sym_json_DOTdecode] = ACTIONS(2763), - [anon_sym_LBRACK2] = ACTIONS(2763), - [anon_sym_TILDE] = ACTIONS(2763), - [anon_sym_CARET] = ACTIONS(2763), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_LT_DASH] = ACTIONS(2763), - [anon_sym_LT_LT] = ACTIONS(2763), - [anon_sym_GT_GT] = ACTIONS(2763), - [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(2763), - [sym_none] = ACTIONS(2763), - [sym_true] = ACTIONS(2763), - [sym_false] = ACTIONS(2763), - [sym_nil] = ACTIONS(2763), - [anon_sym_QMARK_DOT] = ACTIONS(2763), - [anon_sym_POUND_LBRACK] = ACTIONS(2763), - [anon_sym_if] = ACTIONS(2763), - [anon_sym_DOLLARif] = ACTIONS(2763), - [anon_sym_is] = ACTIONS(2763), - [anon_sym_BANGis] = ACTIONS(2763), - [anon_sym_in] = ACTIONS(2763), - [anon_sym_BANGin] = ACTIONS(2763), - [anon_sym_match] = ACTIONS(2763), - [anon_sym_select] = ACTIONS(2763), - [anon_sym_STAR_EQ] = ACTIONS(2763), - [anon_sym_SLASH_EQ] = ACTIONS(2763), - [anon_sym_PERCENT_EQ] = ACTIONS(2763), - [anon_sym_LT_LT_EQ] = ACTIONS(2763), - [anon_sym_GT_GT_EQ] = ACTIONS(2763), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2763), - [anon_sym_AMP_EQ] = ACTIONS(2763), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2763), - [anon_sym_PLUS_EQ] = ACTIONS(2763), - [anon_sym_DASH_EQ] = ACTIONS(2763), - [anon_sym_PIPE_EQ] = ACTIONS(2763), - [anon_sym_CARET_EQ] = ACTIONS(2763), - [anon_sym_COLON_EQ] = ACTIONS(2763), - [anon_sym_lock] = ACTIONS(2763), - [anon_sym_rlock] = ACTIONS(2763), - [anon_sym_unsafe] = ACTIONS(2763), - [anon_sym_sql] = ACTIONS(2763), - [sym_int_literal] = ACTIONS(2763), - [sym_float_literal] = ACTIONS(2763), - [sym_rune_literal] = ACTIONS(2763), - [anon_sym_SQUOTE] = ACTIONS(2763), - [anon_sym_DQUOTE] = ACTIONS(2763), - [anon_sym_c_SQUOTE] = ACTIONS(2763), - [anon_sym_c_DQUOTE] = ACTIONS(2763), - [anon_sym_r_SQUOTE] = ACTIONS(2763), - [anon_sym_r_DQUOTE] = ACTIONS(2763), - [sym_pseudo_compile_time_identifier] = ACTIONS(2763), - [anon_sym_shared] = ACTIONS(2763), - [anon_sym_map_LBRACK] = ACTIONS(2763), - [anon_sym_chan] = ACTIONS(2763), - [anon_sym_thread] = ACTIONS(2763), - [anon_sym_atomic] = ACTIONS(2763), - [anon_sym_assert] = ACTIONS(2763), - [anon_sym_defer] = ACTIONS(2763), - [anon_sym_goto] = ACTIONS(2763), - [anon_sym_break] = ACTIONS(2763), - [anon_sym_continue] = ACTIONS(2763), - [anon_sym_return] = ACTIONS(2763), - [anon_sym_DOLLARfor] = ACTIONS(2763), - [anon_sym_for] = ACTIONS(2763), - [anon_sym_POUND] = ACTIONS(2763), - [anon_sym_asm] = ACTIONS(2763), - [anon_sym_AT_LBRACK] = ACTIONS(2763), - }, - [433] = { - [sym_line_comment] = STATE(433), - [sym_block_comment] = STATE(433), - [ts_builtin_sym_end] = ACTIONS(2765), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LF] = ACTIONS(2767), - [anon_sym_CR] = ACTIONS(2767), - [anon_sym_CR_LF] = ACTIONS(2767), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2767), - [anon_sym_as] = ACTIONS(2767), - [anon_sym_LBRACE] = ACTIONS(2767), - [anon_sym_COMMA] = ACTIONS(2767), - [anon_sym_const] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2767), - [anon_sym_EQ] = ACTIONS(2767), - [anon_sym___global] = ACTIONS(2767), - [anon_sym_type] = ACTIONS(2767), - [anon_sym_PIPE] = ACTIONS(2767), - [anon_sym_fn] = ACTIONS(2767), - [anon_sym_PLUS] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2767), - [anon_sym_SLASH] = ACTIONS(2767), - [anon_sym_PERCENT] = ACTIONS(2767), - [anon_sym_LT] = ACTIONS(2767), - [anon_sym_GT] = ACTIONS(2767), - [anon_sym_EQ_EQ] = ACTIONS(2767), - [anon_sym_BANG_EQ] = ACTIONS(2767), - [anon_sym_LT_EQ] = ACTIONS(2767), - [anon_sym_GT_EQ] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2765), - [anon_sym_struct] = ACTIONS(2767), - [anon_sym_union] = ACTIONS(2767), - [anon_sym_pub] = ACTIONS(2767), - [anon_sym_mut] = ACTIONS(2767), - [anon_sym_enum] = ACTIONS(2767), - [anon_sym_interface] = ACTIONS(2767), - [anon_sym_PLUS_PLUS] = ACTIONS(2767), - [anon_sym_DASH_DASH] = ACTIONS(2767), - [anon_sym_QMARK] = ACTIONS(2767), - [anon_sym_BANG] = ACTIONS(2767), - [anon_sym_go] = ACTIONS(2767), - [anon_sym_spawn] = ACTIONS(2767), - [anon_sym_json_DOTdecode] = ACTIONS(2767), - [anon_sym_LBRACK2] = ACTIONS(2767), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_LT_DASH] = ACTIONS(2767), - [anon_sym_LT_LT] = ACTIONS(2767), - [anon_sym_GT_GT] = ACTIONS(2767), - [anon_sym_GT_GT_GT] = ACTIONS(2767), - [anon_sym_AMP_CARET] = ACTIONS(2767), - [anon_sym_AMP_AMP] = ACTIONS(2767), - [anon_sym_PIPE_PIPE] = ACTIONS(2767), - [anon_sym_or] = ACTIONS(2767), - [sym_none] = ACTIONS(2767), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [sym_nil] = ACTIONS(2767), - [anon_sym_QMARK_DOT] = ACTIONS(2767), - [anon_sym_POUND_LBRACK] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2767), - [anon_sym_DOLLARif] = ACTIONS(2767), - [anon_sym_is] = ACTIONS(2767), - [anon_sym_BANGis] = ACTIONS(2767), - [anon_sym_in] = ACTIONS(2767), - [anon_sym_BANGin] = ACTIONS(2767), - [anon_sym_match] = ACTIONS(2767), - [anon_sym_select] = ACTIONS(2767), - [anon_sym_STAR_EQ] = ACTIONS(2767), - [anon_sym_SLASH_EQ] = ACTIONS(2767), - [anon_sym_PERCENT_EQ] = ACTIONS(2767), - [anon_sym_LT_LT_EQ] = ACTIONS(2767), - [anon_sym_GT_GT_EQ] = ACTIONS(2767), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2767), - [anon_sym_AMP_EQ] = ACTIONS(2767), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2767), - [anon_sym_PLUS_EQ] = ACTIONS(2767), - [anon_sym_DASH_EQ] = ACTIONS(2767), - [anon_sym_PIPE_EQ] = ACTIONS(2767), - [anon_sym_CARET_EQ] = ACTIONS(2767), - [anon_sym_COLON_EQ] = ACTIONS(2767), - [anon_sym_lock] = ACTIONS(2767), - [anon_sym_rlock] = ACTIONS(2767), - [anon_sym_unsafe] = ACTIONS(2767), - [anon_sym_sql] = ACTIONS(2767), - [sym_int_literal] = ACTIONS(2767), - [sym_float_literal] = ACTIONS(2767), - [sym_rune_literal] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2767), - [anon_sym_DQUOTE] = ACTIONS(2767), - [anon_sym_c_SQUOTE] = ACTIONS(2767), - [anon_sym_c_DQUOTE] = ACTIONS(2767), - [anon_sym_r_SQUOTE] = ACTIONS(2767), - [anon_sym_r_DQUOTE] = ACTIONS(2767), - [sym_pseudo_compile_time_identifier] = ACTIONS(2767), - [anon_sym_shared] = ACTIONS(2767), - [anon_sym_map_LBRACK] = ACTIONS(2767), - [anon_sym_chan] = ACTIONS(2767), - [anon_sym_thread] = ACTIONS(2767), - [anon_sym_atomic] = ACTIONS(2767), - [anon_sym_assert] = ACTIONS(2767), - [anon_sym_defer] = ACTIONS(2767), - [anon_sym_goto] = ACTIONS(2767), - [anon_sym_break] = ACTIONS(2767), - [anon_sym_continue] = ACTIONS(2767), - [anon_sym_return] = ACTIONS(2767), - [anon_sym_DOLLARfor] = ACTIONS(2767), - [anon_sym_for] = ACTIONS(2767), - [anon_sym_POUND] = ACTIONS(2767), - [anon_sym_asm] = ACTIONS(2767), - [anon_sym_AT_LBRACK] = ACTIONS(2767), - }, - [434] = { - [sym_line_comment] = STATE(434), - [sym_block_comment] = STATE(434), + [451] = { + [sym_line_comment] = STATE(451), + [sym_block_comment] = STATE(451), [ts_builtin_sym_end] = ACTIONS(2769), [sym_identifier] = ACTIONS(2771), [anon_sym_LF] = ACTIONS(2771), @@ -73157,7 +75424,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(2771), [anon_sym___global] = ACTIONS(2771), [anon_sym_type] = ACTIONS(2771), - [anon_sym_PIPE] = ACTIONS(2771), [anon_sym_fn] = ACTIONS(2771), [anon_sym_PLUS] = ACTIONS(2771), [anon_sym_DASH] = ACTIONS(2771), @@ -73184,6 +75450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(2771), [anon_sym_spawn] = ACTIONS(2771), [anon_sym_json_DOTdecode] = ACTIONS(2771), + [anon_sym_PIPE] = ACTIONS(2771), [anon_sym_LBRACK2] = ACTIONS(2771), [anon_sym_TILDE] = ACTIONS(2771), [anon_sym_CARET] = ACTIONS(2771), @@ -73254,9 +75521,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2771), [anon_sym_AT_LBRACK] = ACTIONS(2771), }, - [435] = { - [sym_line_comment] = STATE(435), - [sym_block_comment] = STATE(435), + [452] = { + [sym_line_comment] = STATE(452), + [sym_block_comment] = STATE(452), [ts_builtin_sym_end] = ACTIONS(2773), [sym_identifier] = ACTIONS(2775), [anon_sym_LF] = ACTIONS(2775), @@ -73273,7 +75540,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(2775), [anon_sym___global] = ACTIONS(2775), [anon_sym_type] = ACTIONS(2775), - [anon_sym_PIPE] = ACTIONS(2775), [anon_sym_fn] = ACTIONS(2775), [anon_sym_PLUS] = ACTIONS(2775), [anon_sym_DASH] = ACTIONS(2775), @@ -73300,6 +75566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(2775), [anon_sym_spawn] = ACTIONS(2775), [anon_sym_json_DOTdecode] = ACTIONS(2775), + [anon_sym_PIPE] = ACTIONS(2775), [anon_sym_LBRACK2] = ACTIONS(2775), [anon_sym_TILDE] = ACTIONS(2775), [anon_sym_CARET] = ACTIONS(2775), @@ -73370,9 +75637,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2775), [anon_sym_AT_LBRACK] = ACTIONS(2775), }, - [436] = { - [sym_line_comment] = STATE(436), - [sym_block_comment] = STATE(436), + [453] = { + [sym_line_comment] = STATE(453), + [sym_block_comment] = STATE(453), [ts_builtin_sym_end] = ACTIONS(2777), [sym_identifier] = ACTIONS(2779), [anon_sym_LF] = ACTIONS(2779), @@ -73389,7 +75656,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(2779), [anon_sym___global] = ACTIONS(2779), [anon_sym_type] = ACTIONS(2779), - [anon_sym_PIPE] = ACTIONS(2779), [anon_sym_fn] = ACTIONS(2779), [anon_sym_PLUS] = ACTIONS(2779), [anon_sym_DASH] = ACTIONS(2779), @@ -73416,6 +75682,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(2779), [anon_sym_spawn] = ACTIONS(2779), [anon_sym_json_DOTdecode] = ACTIONS(2779), + [anon_sym_PIPE] = ACTIONS(2779), [anon_sym_LBRACK2] = ACTIONS(2779), [anon_sym_TILDE] = ACTIONS(2779), [anon_sym_CARET] = ACTIONS(2779), @@ -73486,2320 +75753,348 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2779), [anon_sym_AT_LBRACK] = ACTIONS(2779), }, - [437] = { - [sym_line_comment] = STATE(437), - [sym_block_comment] = STATE(437), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4348), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [438] = { - [sym_line_comment] = STATE(438), - [sym_block_comment] = STATE(438), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3553), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_RPAREN] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2787), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [439] = { - [sym_line_comment] = STATE(439), - [sym_block_comment] = STATE(439), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1398), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1396), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym__array_repeat1] = STATE(456), - [sym_identifier] = ACTIONS(1299), + [454] = { + [sym_line_comment] = STATE(454), + [sym_block_comment] = STATE(454), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_string_interpolation_repeat1] = STATE(454), + [sym_identifier] = ACTIONS(2781), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(1315), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1347), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [440] = { - [sym_line_comment] = STATE(440), - [sym_block_comment] = STATE(440), - [ts_builtin_sym_end] = ACTIONS(2799), - [sym_identifier] = ACTIONS(2801), - [anon_sym_LF] = ACTIONS(2801), - [anon_sym_CR] = ACTIONS(2801), - [anon_sym_CR_LF] = ACTIONS(2801), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2801), - [anon_sym_as] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_COMMA] = ACTIONS(2801), - [anon_sym_const] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2801), - [anon_sym_EQ] = ACTIONS(2801), - [anon_sym___global] = ACTIONS(2801), - [anon_sym_type] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(2801), - [anon_sym_fn] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_DOT] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2787), + [anon_sym_RBRACE] = ACTIONS(2790), + [anon_sym_LPAREN] = ACTIONS(2792), + [anon_sym_fn] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2798), [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_SLASH] = ACTIONS(2801), - [anon_sym_PERCENT] = ACTIONS(2801), - [anon_sym_LT] = ACTIONS(2801), - [anon_sym_GT] = ACTIONS(2801), - [anon_sym_EQ_EQ] = ACTIONS(2801), - [anon_sym_BANG_EQ] = ACTIONS(2801), - [anon_sym_LT_EQ] = ACTIONS(2801), - [anon_sym_GT_EQ] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_struct] = ACTIONS(2801), - [anon_sym_union] = ACTIONS(2801), - [anon_sym_pub] = ACTIONS(2801), - [anon_sym_mut] = ACTIONS(2801), - [anon_sym_enum] = ACTIONS(2801), - [anon_sym_interface] = ACTIONS(2801), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_go] = ACTIONS(2801), - [anon_sym_spawn] = ACTIONS(2801), - [anon_sym_json_DOTdecode] = ACTIONS(2801), - [anon_sym_LBRACK2] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_LT_DASH] = ACTIONS(2801), - [anon_sym_LT_LT] = ACTIONS(2801), - [anon_sym_GT_GT] = ACTIONS(2801), - [anon_sym_GT_GT_GT] = ACTIONS(2801), - [anon_sym_AMP_CARET] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_PIPE_PIPE] = ACTIONS(2801), - [anon_sym_or] = ACTIONS(2801), - [sym_none] = ACTIONS(2801), - [sym_true] = ACTIONS(2801), - [sym_false] = ACTIONS(2801), - [sym_nil] = ACTIONS(2801), - [anon_sym_QMARK_DOT] = ACTIONS(2801), - [anon_sym_POUND_LBRACK] = ACTIONS(2801), - [anon_sym_if] = ACTIONS(2801), - [anon_sym_DOLLARif] = ACTIONS(2801), - [anon_sym_is] = ACTIONS(2801), - [anon_sym_BANGis] = ACTIONS(2801), - [anon_sym_in] = ACTIONS(2801), - [anon_sym_BANGin] = ACTIONS(2801), - [anon_sym_match] = ACTIONS(2801), - [anon_sym_select] = ACTIONS(2801), - [anon_sym_STAR_EQ] = ACTIONS(2801), - [anon_sym_SLASH_EQ] = ACTIONS(2801), - [anon_sym_PERCENT_EQ] = ACTIONS(2801), - [anon_sym_LT_LT_EQ] = ACTIONS(2801), - [anon_sym_GT_GT_EQ] = ACTIONS(2801), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2801), - [anon_sym_AMP_EQ] = ACTIONS(2801), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2801), - [anon_sym_PLUS_EQ] = ACTIONS(2801), - [anon_sym_DASH_EQ] = ACTIONS(2801), - [anon_sym_PIPE_EQ] = ACTIONS(2801), - [anon_sym_CARET_EQ] = ACTIONS(2801), - [anon_sym_COLON_EQ] = ACTIONS(2801), - [anon_sym_lock] = ACTIONS(2801), - [anon_sym_rlock] = ACTIONS(2801), - [anon_sym_unsafe] = ACTIONS(2801), - [anon_sym_sql] = ACTIONS(2801), - [sym_int_literal] = ACTIONS(2801), - [sym_float_literal] = ACTIONS(2801), - [sym_rune_literal] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2801), - [anon_sym_DQUOTE] = ACTIONS(2801), - [anon_sym_c_SQUOTE] = ACTIONS(2801), - [anon_sym_c_DQUOTE] = ACTIONS(2801), - [anon_sym_r_SQUOTE] = ACTIONS(2801), - [anon_sym_r_DQUOTE] = ACTIONS(2801), - [sym_pseudo_compile_time_identifier] = ACTIONS(2801), - [anon_sym_shared] = ACTIONS(2801), - [anon_sym_map_LBRACK] = ACTIONS(2801), - [anon_sym_chan] = ACTIONS(2801), - [anon_sym_thread] = ACTIONS(2801), - [anon_sym_atomic] = ACTIONS(2801), - [anon_sym_assert] = ACTIONS(2801), - [anon_sym_defer] = ACTIONS(2801), - [anon_sym_goto] = ACTIONS(2801), - [anon_sym_break] = ACTIONS(2801), - [anon_sym_continue] = ACTIONS(2801), - [anon_sym_return] = ACTIONS(2801), - [anon_sym_DOLLARfor] = ACTIONS(2801), - [anon_sym_for] = ACTIONS(2801), - [anon_sym_POUND] = ACTIONS(2801), - [anon_sym_asm] = ACTIONS(2801), - [anon_sym_AT_LBRACK] = ACTIONS(2801), - }, - [441] = { - [sym_line_comment] = STATE(441), - [sym_block_comment] = STATE(441), - [sym__expression] = STATE(2587), - [sym__expression_without_blocks] = STATE(2780), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [sym_match_expression] = STATE(2642), - [sym_match_arm_type] = STATE(4293), - [sym_select_expression] = STATE(2642), - [sym_lock_expression] = STATE(2642), - [sym_unsafe_expression] = STATE(2642), - [sym_sql_expression] = STATE(2642), - [sym_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(3874), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__definite_range] = STATE(4295), - [sym_identifier] = ACTIONS(1083), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_struct] = ACTIONS(1099), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1111), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(1125), - [anon_sym_lock] = ACTIONS(1127), - [anon_sym_rlock] = ACTIONS(1127), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [442] = { - [sym_line_comment] = STATE(442), - [sym_block_comment] = STATE(442), - [ts_builtin_sym_end] = ACTIONS(2803), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LF] = ACTIONS(2805), - [anon_sym_CR] = ACTIONS(2805), - [anon_sym_CR_LF] = ACTIONS(2805), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2805), - [anon_sym_as] = ACTIONS(2805), - [anon_sym_LBRACE] = ACTIONS(2805), - [anon_sym_COMMA] = ACTIONS(2805), - [anon_sym_const] = ACTIONS(2805), - [anon_sym_LPAREN] = ACTIONS(2805), - [anon_sym_EQ] = ACTIONS(2805), - [anon_sym___global] = ACTIONS(2805), - [anon_sym_type] = ACTIONS(2805), - [anon_sym_PIPE] = ACTIONS(2805), - [anon_sym_fn] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2805), - [anon_sym_DASH] = ACTIONS(2805), - [anon_sym_STAR] = ACTIONS(2805), - [anon_sym_SLASH] = ACTIONS(2805), - [anon_sym_PERCENT] = ACTIONS(2805), - [anon_sym_LT] = ACTIONS(2805), - [anon_sym_GT] = ACTIONS(2805), - [anon_sym_EQ_EQ] = ACTIONS(2805), - [anon_sym_BANG_EQ] = ACTIONS(2805), - [anon_sym_LT_EQ] = ACTIONS(2805), - [anon_sym_GT_EQ] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2805), - [anon_sym_union] = ACTIONS(2805), - [anon_sym_pub] = ACTIONS(2805), - [anon_sym_mut] = ACTIONS(2805), - [anon_sym_enum] = ACTIONS(2805), - [anon_sym_interface] = ACTIONS(2805), - [anon_sym_PLUS_PLUS] = ACTIONS(2805), - [anon_sym_DASH_DASH] = ACTIONS(2805), - [anon_sym_QMARK] = ACTIONS(2805), - [anon_sym_BANG] = ACTIONS(2805), - [anon_sym_go] = ACTIONS(2805), - [anon_sym_spawn] = ACTIONS(2805), - [anon_sym_json_DOTdecode] = ACTIONS(2805), - [anon_sym_LBRACK2] = ACTIONS(2805), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_CARET] = ACTIONS(2805), - [anon_sym_AMP] = ACTIONS(2805), - [anon_sym_LT_DASH] = ACTIONS(2805), - [anon_sym_LT_LT] = ACTIONS(2805), - [anon_sym_GT_GT] = ACTIONS(2805), - [anon_sym_GT_GT_GT] = ACTIONS(2805), - [anon_sym_AMP_CARET] = ACTIONS(2805), - [anon_sym_AMP_AMP] = ACTIONS(2805), - [anon_sym_PIPE_PIPE] = ACTIONS(2805), - [anon_sym_or] = ACTIONS(2805), - [sym_none] = ACTIONS(2805), - [sym_true] = ACTIONS(2805), - [sym_false] = ACTIONS(2805), - [sym_nil] = ACTIONS(2805), - [anon_sym_QMARK_DOT] = ACTIONS(2805), - [anon_sym_POUND_LBRACK] = ACTIONS(2805), - [anon_sym_if] = ACTIONS(2805), - [anon_sym_DOLLARif] = ACTIONS(2805), - [anon_sym_is] = ACTIONS(2805), - [anon_sym_BANGis] = ACTIONS(2805), - [anon_sym_in] = ACTIONS(2805), - [anon_sym_BANGin] = ACTIONS(2805), - [anon_sym_match] = ACTIONS(2805), - [anon_sym_select] = ACTIONS(2805), - [anon_sym_STAR_EQ] = ACTIONS(2805), - [anon_sym_SLASH_EQ] = ACTIONS(2805), - [anon_sym_PERCENT_EQ] = ACTIONS(2805), - [anon_sym_LT_LT_EQ] = ACTIONS(2805), - [anon_sym_GT_GT_EQ] = ACTIONS(2805), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2805), - [anon_sym_AMP_EQ] = ACTIONS(2805), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2805), - [anon_sym_PLUS_EQ] = ACTIONS(2805), - [anon_sym_DASH_EQ] = ACTIONS(2805), - [anon_sym_PIPE_EQ] = ACTIONS(2805), - [anon_sym_CARET_EQ] = ACTIONS(2805), - [anon_sym_COLON_EQ] = ACTIONS(2805), - [anon_sym_lock] = ACTIONS(2805), - [anon_sym_rlock] = ACTIONS(2805), - [anon_sym_unsafe] = ACTIONS(2805), - [anon_sym_sql] = ACTIONS(2805), - [sym_int_literal] = ACTIONS(2805), - [sym_float_literal] = ACTIONS(2805), - [sym_rune_literal] = ACTIONS(2805), - [anon_sym_SQUOTE] = ACTIONS(2805), - [anon_sym_DQUOTE] = ACTIONS(2805), - [anon_sym_c_SQUOTE] = ACTIONS(2805), - [anon_sym_c_DQUOTE] = ACTIONS(2805), - [anon_sym_r_SQUOTE] = ACTIONS(2805), - [anon_sym_r_DQUOTE] = ACTIONS(2805), - [sym_pseudo_compile_time_identifier] = ACTIONS(2805), - [anon_sym_shared] = ACTIONS(2805), - [anon_sym_map_LBRACK] = ACTIONS(2805), - [anon_sym_chan] = ACTIONS(2805), - [anon_sym_thread] = ACTIONS(2805), - [anon_sym_atomic] = ACTIONS(2805), - [anon_sym_assert] = ACTIONS(2805), - [anon_sym_defer] = ACTIONS(2805), - [anon_sym_goto] = ACTIONS(2805), - [anon_sym_break] = ACTIONS(2805), - [anon_sym_continue] = ACTIONS(2805), - [anon_sym_return] = ACTIONS(2805), - [anon_sym_DOLLARfor] = ACTIONS(2805), - [anon_sym_for] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(2805), - [anon_sym_asm] = ACTIONS(2805), - [anon_sym_AT_LBRACK] = ACTIONS(2805), - }, - [443] = { - [sym_line_comment] = STATE(443), - [sym_block_comment] = STATE(443), - [ts_builtin_sym_end] = ACTIONS(2807), - [sym_identifier] = ACTIONS(2809), - [anon_sym_LF] = ACTIONS(2809), - [anon_sym_CR] = ACTIONS(2809), - [anon_sym_CR_LF] = ACTIONS(2809), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2809), - [anon_sym_as] = ACTIONS(2809), - [anon_sym_LBRACE] = ACTIONS(2809), - [anon_sym_COMMA] = ACTIONS(2809), - [anon_sym_const] = ACTIONS(2809), - [anon_sym_LPAREN] = ACTIONS(2809), - [anon_sym_EQ] = ACTIONS(2809), - [anon_sym___global] = ACTIONS(2809), - [anon_sym_type] = ACTIONS(2809), - [anon_sym_PIPE] = ACTIONS(2809), - [anon_sym_fn] = ACTIONS(2809), - [anon_sym_PLUS] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2809), - [anon_sym_SLASH] = ACTIONS(2809), - [anon_sym_PERCENT] = ACTIONS(2809), - [anon_sym_LT] = ACTIONS(2809), - [anon_sym_GT] = ACTIONS(2809), - [anon_sym_EQ_EQ] = ACTIONS(2809), - [anon_sym_BANG_EQ] = ACTIONS(2809), - [anon_sym_LT_EQ] = ACTIONS(2809), - [anon_sym_GT_EQ] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_struct] = ACTIONS(2809), - [anon_sym_union] = ACTIONS(2809), - [anon_sym_pub] = ACTIONS(2809), - [anon_sym_mut] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(2809), - [anon_sym_interface] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2809), - [anon_sym_DASH_DASH] = ACTIONS(2809), - [anon_sym_QMARK] = ACTIONS(2809), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_go] = ACTIONS(2809), - [anon_sym_spawn] = ACTIONS(2809), - [anon_sym_json_DOTdecode] = ACTIONS(2809), - [anon_sym_LBRACK2] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_CARET] = ACTIONS(2809), - [anon_sym_AMP] = ACTIONS(2809), - [anon_sym_LT_DASH] = ACTIONS(2809), - [anon_sym_LT_LT] = ACTIONS(2809), - [anon_sym_GT_GT] = ACTIONS(2809), - [anon_sym_GT_GT_GT] = ACTIONS(2809), - [anon_sym_AMP_CARET] = ACTIONS(2809), - [anon_sym_AMP_AMP] = ACTIONS(2809), - [anon_sym_PIPE_PIPE] = ACTIONS(2809), - [anon_sym_or] = ACTIONS(2809), - [sym_none] = ACTIONS(2809), - [sym_true] = ACTIONS(2809), - [sym_false] = ACTIONS(2809), - [sym_nil] = ACTIONS(2809), - [anon_sym_QMARK_DOT] = ACTIONS(2809), - [anon_sym_POUND_LBRACK] = ACTIONS(2809), - [anon_sym_if] = ACTIONS(2809), - [anon_sym_DOLLARif] = ACTIONS(2809), - [anon_sym_is] = ACTIONS(2809), - [anon_sym_BANGis] = ACTIONS(2809), - [anon_sym_in] = ACTIONS(2809), - [anon_sym_BANGin] = ACTIONS(2809), - [anon_sym_match] = ACTIONS(2809), - [anon_sym_select] = ACTIONS(2809), - [anon_sym_STAR_EQ] = ACTIONS(2809), - [anon_sym_SLASH_EQ] = ACTIONS(2809), - [anon_sym_PERCENT_EQ] = ACTIONS(2809), - [anon_sym_LT_LT_EQ] = ACTIONS(2809), - [anon_sym_GT_GT_EQ] = ACTIONS(2809), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2809), - [anon_sym_AMP_EQ] = ACTIONS(2809), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2809), - [anon_sym_PLUS_EQ] = ACTIONS(2809), - [anon_sym_DASH_EQ] = ACTIONS(2809), - [anon_sym_PIPE_EQ] = ACTIONS(2809), - [anon_sym_CARET_EQ] = ACTIONS(2809), - [anon_sym_COLON_EQ] = ACTIONS(2809), - [anon_sym_lock] = ACTIONS(2809), - [anon_sym_rlock] = ACTIONS(2809), - [anon_sym_unsafe] = ACTIONS(2809), - [anon_sym_sql] = ACTIONS(2809), - [sym_int_literal] = ACTIONS(2809), - [sym_float_literal] = ACTIONS(2809), - [sym_rune_literal] = ACTIONS(2809), - [anon_sym_SQUOTE] = ACTIONS(2809), - [anon_sym_DQUOTE] = ACTIONS(2809), - [anon_sym_c_SQUOTE] = ACTIONS(2809), - [anon_sym_c_DQUOTE] = ACTIONS(2809), - [anon_sym_r_SQUOTE] = ACTIONS(2809), - [anon_sym_r_DQUOTE] = ACTIONS(2809), - [sym_pseudo_compile_time_identifier] = ACTIONS(2809), - [anon_sym_shared] = ACTIONS(2809), - [anon_sym_map_LBRACK] = ACTIONS(2809), - [anon_sym_chan] = ACTIONS(2809), - [anon_sym_thread] = ACTIONS(2809), - [anon_sym_atomic] = ACTIONS(2809), - [anon_sym_assert] = ACTIONS(2809), - [anon_sym_defer] = ACTIONS(2809), - [anon_sym_goto] = ACTIONS(2809), - [anon_sym_break] = ACTIONS(2809), - [anon_sym_continue] = ACTIONS(2809), - [anon_sym_return] = ACTIONS(2809), - [anon_sym_DOLLARfor] = ACTIONS(2809), - [anon_sym_for] = ACTIONS(2809), - [anon_sym_POUND] = ACTIONS(2809), - [anon_sym_asm] = ACTIONS(2809), - [anon_sym_AT_LBRACK] = ACTIONS(2809), - }, - [444] = { - [sym_line_comment] = STATE(444), - [sym_block_comment] = STATE(444), - [ts_builtin_sym_end] = ACTIONS(2811), - [sym_identifier] = ACTIONS(2813), - [anon_sym_LF] = ACTIONS(2813), - [anon_sym_CR] = ACTIONS(2813), - [anon_sym_CR_LF] = ACTIONS(2813), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2813), - [anon_sym_as] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2813), - [anon_sym_COMMA] = ACTIONS(2813), - [anon_sym_const] = ACTIONS(2813), - [anon_sym_LPAREN] = ACTIONS(2813), - [anon_sym_EQ] = ACTIONS(2813), - [anon_sym___global] = ACTIONS(2813), - [anon_sym_type] = ACTIONS(2813), - [anon_sym_PIPE] = ACTIONS(2813), - [anon_sym_fn] = ACTIONS(2813), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_SLASH] = ACTIONS(2813), - [anon_sym_PERCENT] = ACTIONS(2813), - [anon_sym_LT] = ACTIONS(2813), - [anon_sym_GT] = ACTIONS(2813), - [anon_sym_EQ_EQ] = ACTIONS(2813), - [anon_sym_BANG_EQ] = ACTIONS(2813), - [anon_sym_LT_EQ] = ACTIONS(2813), - [anon_sym_GT_EQ] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_struct] = ACTIONS(2813), - [anon_sym_union] = ACTIONS(2813), - [anon_sym_pub] = ACTIONS(2813), - [anon_sym_mut] = ACTIONS(2813), - [anon_sym_enum] = ACTIONS(2813), - [anon_sym_interface] = ACTIONS(2813), - [anon_sym_PLUS_PLUS] = ACTIONS(2813), - [anon_sym_DASH_DASH] = ACTIONS(2813), - [anon_sym_QMARK] = ACTIONS(2813), + [anon_sym_struct] = ACTIONS(2804), + [anon_sym_mut] = ACTIONS(2807), + [anon_sym_QMARK] = ACTIONS(2810), [anon_sym_BANG] = ACTIONS(2813), - [anon_sym_go] = ACTIONS(2813), - [anon_sym_spawn] = ACTIONS(2813), - [anon_sym_json_DOTdecode] = ACTIONS(2813), - [anon_sym_LBRACK2] = ACTIONS(2813), - [anon_sym_TILDE] = ACTIONS(2813), - [anon_sym_CARET] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_LT_DASH] = ACTIONS(2813), - [anon_sym_LT_LT] = ACTIONS(2813), - [anon_sym_GT_GT] = ACTIONS(2813), - [anon_sym_GT_GT_GT] = ACTIONS(2813), - [anon_sym_AMP_CARET] = ACTIONS(2813), - [anon_sym_AMP_AMP] = ACTIONS(2813), - [anon_sym_PIPE_PIPE] = ACTIONS(2813), - [anon_sym_or] = ACTIONS(2813), - [sym_none] = ACTIONS(2813), - [sym_true] = ACTIONS(2813), - [sym_false] = ACTIONS(2813), - [sym_nil] = ACTIONS(2813), - [anon_sym_QMARK_DOT] = ACTIONS(2813), - [anon_sym_POUND_LBRACK] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2813), - [anon_sym_DOLLARif] = ACTIONS(2813), - [anon_sym_is] = ACTIONS(2813), - [anon_sym_BANGis] = ACTIONS(2813), - [anon_sym_in] = ACTIONS(2813), - [anon_sym_BANGin] = ACTIONS(2813), - [anon_sym_match] = ACTIONS(2813), - [anon_sym_select] = ACTIONS(2813), - [anon_sym_STAR_EQ] = ACTIONS(2813), - [anon_sym_SLASH_EQ] = ACTIONS(2813), - [anon_sym_PERCENT_EQ] = ACTIONS(2813), - [anon_sym_LT_LT_EQ] = ACTIONS(2813), - [anon_sym_GT_GT_EQ] = ACTIONS(2813), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2813), - [anon_sym_AMP_EQ] = ACTIONS(2813), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2813), - [anon_sym_PLUS_EQ] = ACTIONS(2813), - [anon_sym_DASH_EQ] = ACTIONS(2813), - [anon_sym_PIPE_EQ] = ACTIONS(2813), - [anon_sym_CARET_EQ] = ACTIONS(2813), - [anon_sym_COLON_EQ] = ACTIONS(2813), - [anon_sym_lock] = ACTIONS(2813), - [anon_sym_rlock] = ACTIONS(2813), - [anon_sym_unsafe] = ACTIONS(2813), - [anon_sym_sql] = ACTIONS(2813), - [sym_int_literal] = ACTIONS(2813), - [sym_float_literal] = ACTIONS(2813), - [sym_rune_literal] = ACTIONS(2813), - [anon_sym_SQUOTE] = ACTIONS(2813), - [anon_sym_DQUOTE] = ACTIONS(2813), - [anon_sym_c_SQUOTE] = ACTIONS(2813), - [anon_sym_c_DQUOTE] = ACTIONS(2813), - [anon_sym_r_SQUOTE] = ACTIONS(2813), - [anon_sym_r_DQUOTE] = ACTIONS(2813), - [sym_pseudo_compile_time_identifier] = ACTIONS(2813), - [anon_sym_shared] = ACTIONS(2813), - [anon_sym_map_LBRACK] = ACTIONS(2813), - [anon_sym_chan] = ACTIONS(2813), - [anon_sym_thread] = ACTIONS(2813), - [anon_sym_atomic] = ACTIONS(2813), - [anon_sym_assert] = ACTIONS(2813), - [anon_sym_defer] = ACTIONS(2813), - [anon_sym_goto] = ACTIONS(2813), - [anon_sym_break] = ACTIONS(2813), - [anon_sym_continue] = ACTIONS(2813), - [anon_sym_return] = ACTIONS(2813), - [anon_sym_DOLLARfor] = ACTIONS(2813), - [anon_sym_for] = ACTIONS(2813), - [anon_sym_POUND] = ACTIONS(2813), - [anon_sym_asm] = ACTIONS(2813), - [anon_sym_AT_LBRACK] = ACTIONS(2813), - }, - [445] = { - [sym_line_comment] = STATE(445), - [sym_block_comment] = STATE(445), - [ts_builtin_sym_end] = ACTIONS(2815), - [sym_identifier] = ACTIONS(2817), - [anon_sym_LF] = ACTIONS(2817), - [anon_sym_CR] = ACTIONS(2817), - [anon_sym_CR_LF] = ACTIONS(2817), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2817), - [anon_sym_as] = ACTIONS(2817), - [anon_sym_LBRACE] = ACTIONS(2817), - [anon_sym_COMMA] = ACTIONS(2817), - [anon_sym_const] = ACTIONS(2817), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_EQ] = ACTIONS(2817), - [anon_sym___global] = ACTIONS(2817), - [anon_sym_type] = ACTIONS(2817), - [anon_sym_PIPE] = ACTIONS(2817), - [anon_sym_fn] = ACTIONS(2817), - [anon_sym_PLUS] = ACTIONS(2817), - [anon_sym_DASH] = ACTIONS(2817), - [anon_sym_STAR] = ACTIONS(2817), - [anon_sym_SLASH] = ACTIONS(2817), - [anon_sym_PERCENT] = ACTIONS(2817), - [anon_sym_LT] = ACTIONS(2817), - [anon_sym_GT] = ACTIONS(2817), - [anon_sym_EQ_EQ] = ACTIONS(2817), - [anon_sym_BANG_EQ] = ACTIONS(2817), - [anon_sym_LT_EQ] = ACTIONS(2817), - [anon_sym_GT_EQ] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(2817), - [anon_sym_union] = ACTIONS(2817), - [anon_sym_pub] = ACTIONS(2817), - [anon_sym_mut] = ACTIONS(2817), - [anon_sym_enum] = ACTIONS(2817), - [anon_sym_interface] = ACTIONS(2817), - [anon_sym_PLUS_PLUS] = ACTIONS(2817), - [anon_sym_DASH_DASH] = ACTIONS(2817), - [anon_sym_QMARK] = ACTIONS(2817), - [anon_sym_BANG] = ACTIONS(2817), - [anon_sym_go] = ACTIONS(2817), - [anon_sym_spawn] = ACTIONS(2817), - [anon_sym_json_DOTdecode] = ACTIONS(2817), - [anon_sym_LBRACK2] = ACTIONS(2817), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_CARET] = ACTIONS(2817), - [anon_sym_AMP] = ACTIONS(2817), - [anon_sym_LT_DASH] = ACTIONS(2817), - [anon_sym_LT_LT] = ACTIONS(2817), - [anon_sym_GT_GT] = ACTIONS(2817), - [anon_sym_GT_GT_GT] = ACTIONS(2817), - [anon_sym_AMP_CARET] = ACTIONS(2817), - [anon_sym_AMP_AMP] = ACTIONS(2817), - [anon_sym_PIPE_PIPE] = ACTIONS(2817), - [anon_sym_or] = ACTIONS(2817), - [sym_none] = ACTIONS(2817), - [sym_true] = ACTIONS(2817), - [sym_false] = ACTIONS(2817), - [sym_nil] = ACTIONS(2817), - [anon_sym_QMARK_DOT] = ACTIONS(2817), - [anon_sym_POUND_LBRACK] = ACTIONS(2817), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_DOLLARif] = ACTIONS(2817), - [anon_sym_is] = ACTIONS(2817), - [anon_sym_BANGis] = ACTIONS(2817), - [anon_sym_in] = ACTIONS(2817), - [anon_sym_BANGin] = ACTIONS(2817), - [anon_sym_match] = ACTIONS(2817), - [anon_sym_select] = ACTIONS(2817), - [anon_sym_STAR_EQ] = ACTIONS(2817), - [anon_sym_SLASH_EQ] = ACTIONS(2817), - [anon_sym_PERCENT_EQ] = ACTIONS(2817), - [anon_sym_LT_LT_EQ] = ACTIONS(2817), - [anon_sym_GT_GT_EQ] = ACTIONS(2817), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2817), - [anon_sym_AMP_EQ] = ACTIONS(2817), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2817), - [anon_sym_PLUS_EQ] = ACTIONS(2817), - [anon_sym_DASH_EQ] = ACTIONS(2817), - [anon_sym_PIPE_EQ] = ACTIONS(2817), - [anon_sym_CARET_EQ] = ACTIONS(2817), - [anon_sym_COLON_EQ] = ACTIONS(2817), - [anon_sym_lock] = ACTIONS(2817), - [anon_sym_rlock] = ACTIONS(2817), - [anon_sym_unsafe] = ACTIONS(2817), - [anon_sym_sql] = ACTIONS(2817), - [sym_int_literal] = ACTIONS(2817), - [sym_float_literal] = ACTIONS(2817), - [sym_rune_literal] = ACTIONS(2817), - [anon_sym_SQUOTE] = ACTIONS(2817), - [anon_sym_DQUOTE] = ACTIONS(2817), - [anon_sym_c_SQUOTE] = ACTIONS(2817), - [anon_sym_c_DQUOTE] = ACTIONS(2817), - [anon_sym_r_SQUOTE] = ACTIONS(2817), - [anon_sym_r_DQUOTE] = ACTIONS(2817), - [sym_pseudo_compile_time_identifier] = ACTIONS(2817), - [anon_sym_shared] = ACTIONS(2817), - [anon_sym_map_LBRACK] = ACTIONS(2817), - [anon_sym_chan] = ACTIONS(2817), - [anon_sym_thread] = ACTIONS(2817), - [anon_sym_atomic] = ACTIONS(2817), - [anon_sym_assert] = ACTIONS(2817), - [anon_sym_defer] = ACTIONS(2817), - [anon_sym_goto] = ACTIONS(2817), - [anon_sym_break] = ACTIONS(2817), - [anon_sym_continue] = ACTIONS(2817), - [anon_sym_return] = ACTIONS(2817), - [anon_sym_DOLLARfor] = ACTIONS(2817), - [anon_sym_for] = ACTIONS(2817), - [anon_sym_POUND] = ACTIONS(2817), - [anon_sym_asm] = ACTIONS(2817), - [anon_sym_AT_LBRACK] = ACTIONS(2817), - }, - [446] = { - [sym_line_comment] = STATE(446), - [sym_block_comment] = STATE(446), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1398), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1396), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym__array_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(1299), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(1313), - [anon_sym_struct] = ACTIONS(1315), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1347), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [447] = { - [sym_line_comment] = STATE(447), - [sym_block_comment] = STATE(447), - [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_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_SLASH] = 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_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), - [anon_sym_SQUOTE] = ACTIONS(2821), - [anon_sym_DQUOTE] = ACTIONS(2821), - [anon_sym_c_SQUOTE] = ACTIONS(2821), - [anon_sym_c_DQUOTE] = ACTIONS(2821), - [anon_sym_r_SQUOTE] = ACTIONS(2821), - [anon_sym_r_DQUOTE] = 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), - }, - [448] = { - [sym_line_comment] = STATE(448), - [sym_block_comment] = STATE(448), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym__array_repeat1] = STATE(403), - [sym_identifier] = ACTIONS(1299), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(2823), - [anon_sym_struct] = ACTIONS(1315), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [449] = { - [sym_line_comment] = STATE(449), - [sym_block_comment] = STATE(449), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym__array_repeat1] = STATE(403), - [sym_identifier] = ACTIONS(1299), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(1315), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [450] = { - [sym_line_comment] = STATE(450), - [sym_block_comment] = STATE(450), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4459), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(2827), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [451] = { - [sym_line_comment] = STATE(451), - [sym_block_comment] = STATE(451), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1398), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1396), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym__array_repeat1] = STATE(389), - [sym_identifier] = ACTIONS(1299), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(2829), - [anon_sym_struct] = ACTIONS(1315), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1347), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [452] = { - [sym_line_comment] = STATE(452), - [sym_block_comment] = STATE(452), - [sym__expression] = STATE(2597), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3548), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_range] = STATE(4317), - [sym_identifier] = ACTIONS(2391), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1281), - }, - [453] = { - [sym_line_comment] = STATE(453), - [sym_block_comment] = STATE(453), - [sym__expression] = STATE(2597), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_range] = STATE(4317), - [sym_identifier] = ACTIONS(1219), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1281), - }, - [454] = { - [sym_line_comment] = STATE(454), - [sym_block_comment] = STATE(454), - [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_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_SLASH] = 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), - [anon_sym_SQUOTE] = ACTIONS(2833), - [anon_sym_DQUOTE] = ACTIONS(2833), - [anon_sym_c_SQUOTE] = ACTIONS(2833), - [anon_sym_c_DQUOTE] = ACTIONS(2833), - [anon_sym_r_SQUOTE] = ACTIONS(2833), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_go] = ACTIONS(2816), + [anon_sym_spawn] = ACTIONS(2819), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2825), + [anon_sym_TILDE] = ACTIONS(2798), + [anon_sym_CARET] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2828), + [anon_sym_LT_DASH] = ACTIONS(2831), + [sym_none] = ACTIONS(2834), + [sym_true] = ACTIONS(2834), + [sym_false] = ACTIONS(2834), + [sym_nil] = ACTIONS(2834), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_DOLLARif] = ACTIONS(2840), + [anon_sym_match] = ACTIONS(2843), + [anon_sym_select] = ACTIONS(2846), + [anon_sym_lock] = ACTIONS(2849), + [anon_sym_rlock] = ACTIONS(2849), + [anon_sym_unsafe] = ACTIONS(2852), + [anon_sym_sql] = ACTIONS(2855), + [sym_int_literal] = ACTIONS(2834), + [sym_float_literal] = ACTIONS(2858), + [sym_rune_literal] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2861), + [anon_sym_DQUOTE] = ACTIONS(2864), + [anon_sym_c_SQUOTE] = ACTIONS(2867), + [anon_sym_c_DQUOTE] = ACTIONS(2870), + [anon_sym_r_SQUOTE] = ACTIONS(2873), + [anon_sym_r_DQUOTE] = ACTIONS(2876), + [sym_pseudo_compile_time_identifier] = ACTIONS(2879), + [anon_sym_shared] = ACTIONS(2882), + [anon_sym_map_LBRACK] = ACTIONS(2885), + [anon_sym_chan] = ACTIONS(2888), + [anon_sym_thread] = ACTIONS(2891), + [anon_sym_atomic] = ACTIONS(2894), }, [455] = { [sym_line_comment] = STATE(455), [sym_block_comment] = STATE(455), - [ts_builtin_sym_end] = ACTIONS(2835), - [sym_identifier] = ACTIONS(2837), - [anon_sym_LF] = ACTIONS(2837), - [anon_sym_CR] = ACTIONS(2837), - [anon_sym_CR_LF] = ACTIONS(2837), + [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), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2837), - [anon_sym_as] = ACTIONS(2837), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_COMMA] = ACTIONS(2837), - [anon_sym_const] = ACTIONS(2837), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_EQ] = ACTIONS(2837), - [anon_sym___global] = ACTIONS(2837), - [anon_sym_type] = ACTIONS(2837), - [anon_sym_PIPE] = ACTIONS(2837), - [anon_sym_fn] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2837), - [anon_sym_STAR] = ACTIONS(2837), - [anon_sym_SLASH] = ACTIONS(2837), - [anon_sym_PERCENT] = ACTIONS(2837), - [anon_sym_LT] = ACTIONS(2837), - [anon_sym_GT] = ACTIONS(2837), - [anon_sym_EQ_EQ] = ACTIONS(2837), - [anon_sym_BANG_EQ] = ACTIONS(2837), - [anon_sym_LT_EQ] = ACTIONS(2837), - [anon_sym_GT_EQ] = ACTIONS(2837), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_struct] = ACTIONS(2837), - [anon_sym_union] = ACTIONS(2837), - [anon_sym_pub] = ACTIONS(2837), - [anon_sym_mut] = ACTIONS(2837), - [anon_sym_enum] = ACTIONS(2837), - [anon_sym_interface] = ACTIONS(2837), - [anon_sym_PLUS_PLUS] = ACTIONS(2837), - [anon_sym_DASH_DASH] = ACTIONS(2837), - [anon_sym_QMARK] = ACTIONS(2837), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_go] = ACTIONS(2837), - [anon_sym_spawn] = ACTIONS(2837), - [anon_sym_json_DOTdecode] = ACTIONS(2837), - [anon_sym_LBRACK2] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_CARET] = ACTIONS(2837), - [anon_sym_AMP] = ACTIONS(2837), - [anon_sym_LT_DASH] = ACTIONS(2837), - [anon_sym_LT_LT] = ACTIONS(2837), - [anon_sym_GT_GT] = ACTIONS(2837), - [anon_sym_GT_GT_GT] = ACTIONS(2837), - [anon_sym_AMP_CARET] = ACTIONS(2837), - [anon_sym_AMP_AMP] = ACTIONS(2837), - [anon_sym_PIPE_PIPE] = ACTIONS(2837), - [anon_sym_or] = ACTIONS(2837), - [sym_none] = ACTIONS(2837), - [sym_true] = ACTIONS(2837), - [sym_false] = ACTIONS(2837), - [sym_nil] = ACTIONS(2837), - [anon_sym_QMARK_DOT] = ACTIONS(2837), - [anon_sym_POUND_LBRACK] = ACTIONS(2837), - [anon_sym_if] = ACTIONS(2837), - [anon_sym_DOLLARif] = ACTIONS(2837), - [anon_sym_is] = ACTIONS(2837), - [anon_sym_BANGis] = ACTIONS(2837), - [anon_sym_in] = ACTIONS(2837), - [anon_sym_BANGin] = ACTIONS(2837), - [anon_sym_match] = ACTIONS(2837), - [anon_sym_select] = ACTIONS(2837), - [anon_sym_STAR_EQ] = ACTIONS(2837), - [anon_sym_SLASH_EQ] = ACTIONS(2837), - [anon_sym_PERCENT_EQ] = ACTIONS(2837), - [anon_sym_LT_LT_EQ] = ACTIONS(2837), - [anon_sym_GT_GT_EQ] = ACTIONS(2837), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2837), - [anon_sym_AMP_EQ] = ACTIONS(2837), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2837), - [anon_sym_PLUS_EQ] = ACTIONS(2837), - [anon_sym_DASH_EQ] = ACTIONS(2837), - [anon_sym_PIPE_EQ] = ACTIONS(2837), - [anon_sym_CARET_EQ] = ACTIONS(2837), - [anon_sym_COLON_EQ] = ACTIONS(2837), - [anon_sym_lock] = ACTIONS(2837), - [anon_sym_rlock] = ACTIONS(2837), - [anon_sym_unsafe] = ACTIONS(2837), - [anon_sym_sql] = ACTIONS(2837), - [sym_int_literal] = ACTIONS(2837), - [sym_float_literal] = ACTIONS(2837), - [sym_rune_literal] = ACTIONS(2837), - [anon_sym_SQUOTE] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2837), - [anon_sym_c_SQUOTE] = ACTIONS(2837), - [anon_sym_c_DQUOTE] = ACTIONS(2837), - [anon_sym_r_SQUOTE] = ACTIONS(2837), - [anon_sym_r_DQUOTE] = ACTIONS(2837), - [sym_pseudo_compile_time_identifier] = ACTIONS(2837), - [anon_sym_shared] = ACTIONS(2837), - [anon_sym_map_LBRACK] = ACTIONS(2837), - [anon_sym_chan] = ACTIONS(2837), - [anon_sym_thread] = ACTIONS(2837), - [anon_sym_atomic] = ACTIONS(2837), - [anon_sym_assert] = ACTIONS(2837), - [anon_sym_defer] = ACTIONS(2837), - [anon_sym_goto] = ACTIONS(2837), - [anon_sym_break] = ACTIONS(2837), - [anon_sym_continue] = ACTIONS(2837), - [anon_sym_return] = ACTIONS(2837), - [anon_sym_DOLLARfor] = ACTIONS(2837), - [anon_sym_for] = ACTIONS(2837), - [anon_sym_POUND] = ACTIONS(2837), - [anon_sym_asm] = ACTIONS(2837), - [anon_sym_AT_LBRACK] = ACTIONS(2837), + [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_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_PIPE] = 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_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), + [anon_sym_SQUOTE] = ACTIONS(2899), + [anon_sym_DQUOTE] = ACTIONS(2899), + [anon_sym_c_SQUOTE] = ACTIONS(2899), + [anon_sym_c_DQUOTE] = ACTIONS(2899), + [anon_sym_r_SQUOTE] = ACTIONS(2899), + [anon_sym_r_DQUOTE] = 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), }, [456] = { [sym_line_comment] = STATE(456), [sym_block_comment] = STATE(456), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym__array_repeat1] = STATE(403), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(2524), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(687), + [sym_mutable_expression] = STATE(3824), + [sym_expression_list] = STATE(4356), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(2839), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_go] = ACTIONS(2909), + [anon_sym_spawn] = ACTIONS(2911), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_LT_DASH] = ACTIONS(2917), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(2919), + [anon_sym_lock] = ACTIONS(2921), + [anon_sym_rlock] = ACTIONS(2921), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -75809,809 +76104,809 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [457] = { [sym_line_comment] = STATE(457), [sym_block_comment] = STATE(457), - [ts_builtin_sym_end] = ACTIONS(2841), - [sym_identifier] = ACTIONS(2843), - [anon_sym_LF] = ACTIONS(2843), - [anon_sym_CR] = ACTIONS(2843), - [anon_sym_CR_LF] = ACTIONS(2843), + [ts_builtin_sym_end] = ACTIONS(2923), + [sym_identifier] = ACTIONS(2925), + [anon_sym_LF] = ACTIONS(2925), + [anon_sym_CR] = ACTIONS(2925), + [anon_sym_CR_LF] = ACTIONS(2925), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2843), - [anon_sym_as] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_COMMA] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_EQ] = ACTIONS(2843), - [anon_sym___global] = ACTIONS(2843), - [anon_sym_type] = ACTIONS(2843), - [anon_sym_PIPE] = ACTIONS(2843), - [anon_sym_fn] = ACTIONS(2843), - [anon_sym_PLUS] = ACTIONS(2843), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_STAR] = ACTIONS(2843), - [anon_sym_SLASH] = ACTIONS(2843), - [anon_sym_PERCENT] = ACTIONS(2843), - [anon_sym_LT] = ACTIONS(2843), - [anon_sym_GT] = ACTIONS(2843), - [anon_sym_EQ_EQ] = ACTIONS(2843), - [anon_sym_BANG_EQ] = ACTIONS(2843), - [anon_sym_LT_EQ] = ACTIONS(2843), - [anon_sym_GT_EQ] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_struct] = ACTIONS(2843), - [anon_sym_union] = ACTIONS(2843), - [anon_sym_pub] = ACTIONS(2843), - [anon_sym_mut] = ACTIONS(2843), - [anon_sym_enum] = ACTIONS(2843), - [anon_sym_interface] = ACTIONS(2843), - [anon_sym_PLUS_PLUS] = ACTIONS(2843), - [anon_sym_DASH_DASH] = ACTIONS(2843), - [anon_sym_QMARK] = ACTIONS(2843), - [anon_sym_BANG] = ACTIONS(2843), - [anon_sym_go] = ACTIONS(2843), - [anon_sym_spawn] = ACTIONS(2843), - [anon_sym_json_DOTdecode] = ACTIONS(2843), - [anon_sym_LBRACK2] = ACTIONS(2843), - [anon_sym_TILDE] = ACTIONS(2843), - [anon_sym_CARET] = ACTIONS(2843), - [anon_sym_AMP] = ACTIONS(2843), - [anon_sym_LT_DASH] = ACTIONS(2843), - [anon_sym_LT_LT] = ACTIONS(2843), - [anon_sym_GT_GT] = ACTIONS(2843), - [anon_sym_GT_GT_GT] = ACTIONS(2843), - [anon_sym_AMP_CARET] = ACTIONS(2843), - [anon_sym_AMP_AMP] = ACTIONS(2843), - [anon_sym_PIPE_PIPE] = ACTIONS(2843), - [anon_sym_or] = ACTIONS(2843), - [sym_none] = ACTIONS(2843), - [sym_true] = ACTIONS(2843), - [sym_false] = ACTIONS(2843), - [sym_nil] = ACTIONS(2843), - [anon_sym_QMARK_DOT] = ACTIONS(2843), - [anon_sym_POUND_LBRACK] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_DOLLARif] = ACTIONS(2843), - [anon_sym_is] = ACTIONS(2843), - [anon_sym_BANGis] = ACTIONS(2843), - [anon_sym_in] = ACTIONS(2843), - [anon_sym_BANGin] = ACTIONS(2843), - [anon_sym_match] = ACTIONS(2843), - [anon_sym_select] = ACTIONS(2843), - [anon_sym_STAR_EQ] = ACTIONS(2843), - [anon_sym_SLASH_EQ] = ACTIONS(2843), - [anon_sym_PERCENT_EQ] = ACTIONS(2843), - [anon_sym_LT_LT_EQ] = ACTIONS(2843), - [anon_sym_GT_GT_EQ] = ACTIONS(2843), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2843), - [anon_sym_AMP_EQ] = ACTIONS(2843), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2843), - [anon_sym_PLUS_EQ] = ACTIONS(2843), - [anon_sym_DASH_EQ] = ACTIONS(2843), - [anon_sym_PIPE_EQ] = ACTIONS(2843), - [anon_sym_CARET_EQ] = ACTIONS(2843), - [anon_sym_COLON_EQ] = ACTIONS(2843), - [anon_sym_lock] = ACTIONS(2843), - [anon_sym_rlock] = ACTIONS(2843), - [anon_sym_unsafe] = ACTIONS(2843), - [anon_sym_sql] = ACTIONS(2843), - [sym_int_literal] = ACTIONS(2843), - [sym_float_literal] = ACTIONS(2843), - [sym_rune_literal] = ACTIONS(2843), - [anon_sym_SQUOTE] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [anon_sym_c_SQUOTE] = ACTIONS(2843), - [anon_sym_c_DQUOTE] = ACTIONS(2843), - [anon_sym_r_SQUOTE] = ACTIONS(2843), - [anon_sym_r_DQUOTE] = ACTIONS(2843), - [sym_pseudo_compile_time_identifier] = ACTIONS(2843), - [anon_sym_shared] = ACTIONS(2843), - [anon_sym_map_LBRACK] = ACTIONS(2843), - [anon_sym_chan] = ACTIONS(2843), - [anon_sym_thread] = ACTIONS(2843), - [anon_sym_atomic] = ACTIONS(2843), - [anon_sym_assert] = ACTIONS(2843), - [anon_sym_defer] = ACTIONS(2843), - [anon_sym_goto] = ACTIONS(2843), - [anon_sym_break] = ACTIONS(2843), - [anon_sym_continue] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2843), - [anon_sym_DOLLARfor] = ACTIONS(2843), - [anon_sym_for] = ACTIONS(2843), - [anon_sym_POUND] = ACTIONS(2843), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym_AT_LBRACK] = ACTIONS(2843), + [anon_sym_DOT] = ACTIONS(2925), + [anon_sym_as] = ACTIONS(2925), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_COMMA] = ACTIONS(2925), + [anon_sym_const] = ACTIONS(2925), + [anon_sym_LPAREN] = ACTIONS(2925), + [anon_sym_EQ] = ACTIONS(2925), + [anon_sym___global] = ACTIONS(2925), + [anon_sym_type] = ACTIONS(2925), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_SLASH] = ACTIONS(2925), + [anon_sym_PERCENT] = ACTIONS(2925), + [anon_sym_LT] = ACTIONS(2925), + [anon_sym_GT] = ACTIONS(2925), + [anon_sym_EQ_EQ] = ACTIONS(2925), + [anon_sym_BANG_EQ] = ACTIONS(2925), + [anon_sym_LT_EQ] = ACTIONS(2925), + [anon_sym_GT_EQ] = ACTIONS(2925), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2925), + [anon_sym_union] = ACTIONS(2925), + [anon_sym_pub] = ACTIONS(2925), + [anon_sym_mut] = ACTIONS(2925), + [anon_sym_enum] = ACTIONS(2925), + [anon_sym_interface] = ACTIONS(2925), + [anon_sym_PLUS_PLUS] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(2925), + [anon_sym_QMARK] = ACTIONS(2925), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2925), + [anon_sym_spawn] = ACTIONS(2925), + [anon_sym_json_DOTdecode] = ACTIONS(2925), + [anon_sym_PIPE] = ACTIONS(2925), + [anon_sym_LBRACK2] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_CARET] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2925), + [anon_sym_LT_DASH] = ACTIONS(2925), + [anon_sym_LT_LT] = ACTIONS(2925), + [anon_sym_GT_GT] = ACTIONS(2925), + [anon_sym_GT_GT_GT] = ACTIONS(2925), + [anon_sym_AMP_CARET] = ACTIONS(2925), + [anon_sym_AMP_AMP] = ACTIONS(2925), + [anon_sym_PIPE_PIPE] = ACTIONS(2925), + [anon_sym_or] = ACTIONS(2925), + [sym_none] = ACTIONS(2925), + [sym_true] = ACTIONS(2925), + [sym_false] = ACTIONS(2925), + [sym_nil] = ACTIONS(2925), + [anon_sym_QMARK_DOT] = ACTIONS(2925), + [anon_sym_POUND_LBRACK] = ACTIONS(2925), + [anon_sym_if] = ACTIONS(2925), + [anon_sym_DOLLARif] = ACTIONS(2925), + [anon_sym_is] = ACTIONS(2925), + [anon_sym_BANGis] = ACTIONS(2925), + [anon_sym_in] = ACTIONS(2925), + [anon_sym_BANGin] = ACTIONS(2925), + [anon_sym_match] = ACTIONS(2925), + [anon_sym_select] = ACTIONS(2925), + [anon_sym_STAR_EQ] = ACTIONS(2925), + [anon_sym_SLASH_EQ] = ACTIONS(2925), + [anon_sym_PERCENT_EQ] = ACTIONS(2925), + [anon_sym_LT_LT_EQ] = ACTIONS(2925), + [anon_sym_GT_GT_EQ] = ACTIONS(2925), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2925), + [anon_sym_AMP_EQ] = ACTIONS(2925), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2925), + [anon_sym_PLUS_EQ] = ACTIONS(2925), + [anon_sym_DASH_EQ] = ACTIONS(2925), + [anon_sym_PIPE_EQ] = ACTIONS(2925), + [anon_sym_CARET_EQ] = ACTIONS(2925), + [anon_sym_COLON_EQ] = ACTIONS(2925), + [anon_sym_lock] = ACTIONS(2925), + [anon_sym_rlock] = ACTIONS(2925), + [anon_sym_unsafe] = ACTIONS(2925), + [anon_sym_sql] = ACTIONS(2925), + [sym_int_literal] = ACTIONS(2925), + [sym_float_literal] = ACTIONS(2925), + [sym_rune_literal] = ACTIONS(2925), + [anon_sym_SQUOTE] = ACTIONS(2925), + [anon_sym_DQUOTE] = ACTIONS(2925), + [anon_sym_c_SQUOTE] = ACTIONS(2925), + [anon_sym_c_DQUOTE] = ACTIONS(2925), + [anon_sym_r_SQUOTE] = ACTIONS(2925), + [anon_sym_r_DQUOTE] = ACTIONS(2925), + [sym_pseudo_compile_time_identifier] = ACTIONS(2925), + [anon_sym_shared] = ACTIONS(2925), + [anon_sym_map_LBRACK] = ACTIONS(2925), + [anon_sym_chan] = ACTIONS(2925), + [anon_sym_thread] = ACTIONS(2925), + [anon_sym_atomic] = ACTIONS(2925), + [anon_sym_assert] = ACTIONS(2925), + [anon_sym_defer] = ACTIONS(2925), + [anon_sym_goto] = ACTIONS(2925), + [anon_sym_break] = ACTIONS(2925), + [anon_sym_continue] = ACTIONS(2925), + [anon_sym_return] = ACTIONS(2925), + [anon_sym_DOLLARfor] = ACTIONS(2925), + [anon_sym_for] = ACTIONS(2925), + [anon_sym_POUND] = ACTIONS(2925), + [anon_sym_asm] = ACTIONS(2925), + [anon_sym_AT_LBRACK] = ACTIONS(2925), }, [458] = { [sym_line_comment] = STATE(458), [sym_block_comment] = STATE(458), - [ts_builtin_sym_end] = ACTIONS(2845), - [sym_identifier] = ACTIONS(2847), - [anon_sym_LF] = ACTIONS(2847), - [anon_sym_CR] = ACTIONS(2847), - [anon_sym_CR_LF] = ACTIONS(2847), + [ts_builtin_sym_end] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), + [anon_sym_LF] = ACTIONS(2929), + [anon_sym_CR] = ACTIONS(2929), + [anon_sym_CR_LF] = ACTIONS(2929), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2847), - [anon_sym_as] = ACTIONS(2847), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_COMMA] = ACTIONS(2847), - [anon_sym_const] = ACTIONS(2847), - [anon_sym_LPAREN] = ACTIONS(2847), - [anon_sym_EQ] = ACTIONS(2847), - [anon_sym___global] = ACTIONS(2847), - [anon_sym_type] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2847), - [anon_sym_fn] = ACTIONS(2847), - [anon_sym_PLUS] = ACTIONS(2847), - [anon_sym_DASH] = ACTIONS(2847), - [anon_sym_STAR] = ACTIONS(2847), - [anon_sym_SLASH] = ACTIONS(2847), - [anon_sym_PERCENT] = ACTIONS(2847), - [anon_sym_LT] = ACTIONS(2847), - [anon_sym_GT] = ACTIONS(2847), - [anon_sym_EQ_EQ] = ACTIONS(2847), - [anon_sym_BANG_EQ] = ACTIONS(2847), - [anon_sym_LT_EQ] = ACTIONS(2847), - [anon_sym_GT_EQ] = ACTIONS(2847), - [anon_sym_LBRACK] = ACTIONS(2845), - [anon_sym_struct] = ACTIONS(2847), - [anon_sym_union] = ACTIONS(2847), - [anon_sym_pub] = ACTIONS(2847), - [anon_sym_mut] = ACTIONS(2847), - [anon_sym_enum] = ACTIONS(2847), - [anon_sym_interface] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_QMARK] = ACTIONS(2847), - [anon_sym_BANG] = ACTIONS(2847), - [anon_sym_go] = ACTIONS(2847), - [anon_sym_spawn] = ACTIONS(2847), - [anon_sym_json_DOTdecode] = ACTIONS(2847), - [anon_sym_LBRACK2] = ACTIONS(2847), - [anon_sym_TILDE] = ACTIONS(2847), - [anon_sym_CARET] = ACTIONS(2847), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_LT_DASH] = ACTIONS(2847), - [anon_sym_LT_LT] = ACTIONS(2847), - [anon_sym_GT_GT] = ACTIONS(2847), - [anon_sym_GT_GT_GT] = ACTIONS(2847), - [anon_sym_AMP_CARET] = ACTIONS(2847), - [anon_sym_AMP_AMP] = ACTIONS(2847), - [anon_sym_PIPE_PIPE] = ACTIONS(2847), - [anon_sym_or] = ACTIONS(2847), - [sym_none] = ACTIONS(2847), - [sym_true] = ACTIONS(2847), - [sym_false] = ACTIONS(2847), - [sym_nil] = ACTIONS(2847), - [anon_sym_QMARK_DOT] = ACTIONS(2847), - [anon_sym_POUND_LBRACK] = ACTIONS(2847), - [anon_sym_if] = ACTIONS(2847), - [anon_sym_DOLLARif] = ACTIONS(2847), - [anon_sym_is] = ACTIONS(2847), - [anon_sym_BANGis] = ACTIONS(2847), - [anon_sym_in] = ACTIONS(2847), - [anon_sym_BANGin] = ACTIONS(2847), - [anon_sym_match] = ACTIONS(2847), - [anon_sym_select] = ACTIONS(2847), - [anon_sym_STAR_EQ] = ACTIONS(2847), - [anon_sym_SLASH_EQ] = ACTIONS(2847), - [anon_sym_PERCENT_EQ] = ACTIONS(2847), - [anon_sym_LT_LT_EQ] = ACTIONS(2847), - [anon_sym_GT_GT_EQ] = ACTIONS(2847), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2847), - [anon_sym_AMP_EQ] = ACTIONS(2847), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2847), - [anon_sym_PLUS_EQ] = ACTIONS(2847), - [anon_sym_DASH_EQ] = ACTIONS(2847), - [anon_sym_PIPE_EQ] = ACTIONS(2847), - [anon_sym_CARET_EQ] = ACTIONS(2847), - [anon_sym_COLON_EQ] = ACTIONS(2847), - [anon_sym_lock] = ACTIONS(2847), - [anon_sym_rlock] = ACTIONS(2847), - [anon_sym_unsafe] = ACTIONS(2847), - [anon_sym_sql] = ACTIONS(2847), - [sym_int_literal] = ACTIONS(2847), - [sym_float_literal] = ACTIONS(2847), - [sym_rune_literal] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2847), - [anon_sym_c_SQUOTE] = ACTIONS(2847), - [anon_sym_c_DQUOTE] = ACTIONS(2847), - [anon_sym_r_SQUOTE] = ACTIONS(2847), - [anon_sym_r_DQUOTE] = ACTIONS(2847), - [sym_pseudo_compile_time_identifier] = ACTIONS(2847), - [anon_sym_shared] = ACTIONS(2847), - [anon_sym_map_LBRACK] = ACTIONS(2847), - [anon_sym_chan] = ACTIONS(2847), - [anon_sym_thread] = ACTIONS(2847), - [anon_sym_atomic] = ACTIONS(2847), - [anon_sym_assert] = ACTIONS(2847), - [anon_sym_defer] = ACTIONS(2847), - [anon_sym_goto] = ACTIONS(2847), - [anon_sym_break] = ACTIONS(2847), - [anon_sym_continue] = ACTIONS(2847), - [anon_sym_return] = ACTIONS(2847), - [anon_sym_DOLLARfor] = ACTIONS(2847), - [anon_sym_for] = ACTIONS(2847), - [anon_sym_POUND] = ACTIONS(2847), - [anon_sym_asm] = ACTIONS(2847), - [anon_sym_AT_LBRACK] = ACTIONS(2847), + [anon_sym_DOT] = ACTIONS(2929), + [anon_sym_as] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2929), + [anon_sym_COMMA] = ACTIONS(2929), + [anon_sym_const] = ACTIONS(2929), + [anon_sym_LPAREN] = ACTIONS(2929), + [anon_sym_EQ] = ACTIONS(2929), + [anon_sym___global] = ACTIONS(2929), + [anon_sym_type] = ACTIONS(2929), + [anon_sym_fn] = ACTIONS(2929), + [anon_sym_PLUS] = ACTIONS(2929), + [anon_sym_DASH] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_SLASH] = ACTIONS(2929), + [anon_sym_PERCENT] = ACTIONS(2929), + [anon_sym_LT] = ACTIONS(2929), + [anon_sym_GT] = ACTIONS(2929), + [anon_sym_EQ_EQ] = ACTIONS(2929), + [anon_sym_BANG_EQ] = ACTIONS(2929), + [anon_sym_LT_EQ] = ACTIONS(2929), + [anon_sym_GT_EQ] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_struct] = ACTIONS(2929), + [anon_sym_union] = ACTIONS(2929), + [anon_sym_pub] = ACTIONS(2929), + [anon_sym_mut] = ACTIONS(2929), + [anon_sym_enum] = ACTIONS(2929), + [anon_sym_interface] = ACTIONS(2929), + [anon_sym_PLUS_PLUS] = ACTIONS(2929), + [anon_sym_DASH_DASH] = ACTIONS(2929), + [anon_sym_QMARK] = ACTIONS(2929), + [anon_sym_BANG] = ACTIONS(2929), + [anon_sym_go] = ACTIONS(2929), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2929), + [anon_sym_PIPE] = ACTIONS(2929), + [anon_sym_LBRACK2] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_CARET] = ACTIONS(2929), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_LT_DASH] = ACTIONS(2929), + [anon_sym_LT_LT] = ACTIONS(2929), + [anon_sym_GT_GT] = ACTIONS(2929), + [anon_sym_GT_GT_GT] = ACTIONS(2929), + [anon_sym_AMP_CARET] = ACTIONS(2929), + [anon_sym_AMP_AMP] = ACTIONS(2929), + [anon_sym_PIPE_PIPE] = ACTIONS(2929), + [anon_sym_or] = ACTIONS(2929), + [sym_none] = ACTIONS(2929), + [sym_true] = ACTIONS(2929), + [sym_false] = ACTIONS(2929), + [sym_nil] = ACTIONS(2929), + [anon_sym_QMARK_DOT] = ACTIONS(2929), + [anon_sym_POUND_LBRACK] = ACTIONS(2929), + [anon_sym_if] = ACTIONS(2929), + [anon_sym_DOLLARif] = ACTIONS(2929), + [anon_sym_is] = ACTIONS(2929), + [anon_sym_BANGis] = ACTIONS(2929), + [anon_sym_in] = ACTIONS(2929), + [anon_sym_BANGin] = ACTIONS(2929), + [anon_sym_match] = ACTIONS(2929), + [anon_sym_select] = ACTIONS(2929), + [anon_sym_STAR_EQ] = ACTIONS(2929), + [anon_sym_SLASH_EQ] = ACTIONS(2929), + [anon_sym_PERCENT_EQ] = ACTIONS(2929), + [anon_sym_LT_LT_EQ] = ACTIONS(2929), + [anon_sym_GT_GT_EQ] = ACTIONS(2929), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2929), + [anon_sym_AMP_EQ] = ACTIONS(2929), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2929), + [anon_sym_PLUS_EQ] = ACTIONS(2929), + [anon_sym_DASH_EQ] = ACTIONS(2929), + [anon_sym_PIPE_EQ] = ACTIONS(2929), + [anon_sym_CARET_EQ] = ACTIONS(2929), + [anon_sym_COLON_EQ] = ACTIONS(2929), + [anon_sym_lock] = ACTIONS(2929), + [anon_sym_rlock] = ACTIONS(2929), + [anon_sym_unsafe] = ACTIONS(2929), + [anon_sym_sql] = ACTIONS(2929), + [sym_int_literal] = ACTIONS(2929), + [sym_float_literal] = ACTIONS(2929), + [sym_rune_literal] = ACTIONS(2929), + [anon_sym_SQUOTE] = ACTIONS(2929), + [anon_sym_DQUOTE] = ACTIONS(2929), + [anon_sym_c_SQUOTE] = ACTIONS(2929), + [anon_sym_c_DQUOTE] = ACTIONS(2929), + [anon_sym_r_SQUOTE] = ACTIONS(2929), + [anon_sym_r_DQUOTE] = ACTIONS(2929), + [sym_pseudo_compile_time_identifier] = ACTIONS(2929), + [anon_sym_shared] = ACTIONS(2929), + [anon_sym_map_LBRACK] = ACTIONS(2929), + [anon_sym_chan] = ACTIONS(2929), + [anon_sym_thread] = ACTIONS(2929), + [anon_sym_atomic] = ACTIONS(2929), + [anon_sym_assert] = ACTIONS(2929), + [anon_sym_defer] = ACTIONS(2929), + [anon_sym_goto] = ACTIONS(2929), + [anon_sym_break] = ACTIONS(2929), + [anon_sym_continue] = ACTIONS(2929), + [anon_sym_return] = ACTIONS(2929), + [anon_sym_DOLLARfor] = ACTIONS(2929), + [anon_sym_for] = ACTIONS(2929), + [anon_sym_POUND] = ACTIONS(2929), + [anon_sym_asm] = ACTIONS(2929), + [anon_sym_AT_LBRACK] = ACTIONS(2929), }, [459] = { [sym_line_comment] = STATE(459), [sym_block_comment] = STATE(459), - [ts_builtin_sym_end] = ACTIONS(2849), - [sym_identifier] = ACTIONS(2851), - [anon_sym_LF] = ACTIONS(2851), - [anon_sym_CR] = ACTIONS(2851), - [anon_sym_CR_LF] = ACTIONS(2851), + [ts_builtin_sym_end] = ACTIONS(2931), + [sym_identifier] = ACTIONS(2933), + [anon_sym_LF] = ACTIONS(2933), + [anon_sym_CR] = ACTIONS(2933), + [anon_sym_CR_LF] = ACTIONS(2933), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2851), - [anon_sym_as] = ACTIONS(2851), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_COMMA] = ACTIONS(2851), - [anon_sym_const] = ACTIONS(2851), - [anon_sym_LPAREN] = ACTIONS(2851), - [anon_sym_EQ] = ACTIONS(2851), - [anon_sym___global] = ACTIONS(2851), - [anon_sym_type] = ACTIONS(2851), - [anon_sym_PIPE] = ACTIONS(2851), - [anon_sym_fn] = ACTIONS(2851), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2851), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_SLASH] = ACTIONS(2851), - [anon_sym_PERCENT] = ACTIONS(2851), - [anon_sym_LT] = ACTIONS(2851), - [anon_sym_GT] = ACTIONS(2851), - [anon_sym_EQ_EQ] = ACTIONS(2851), - [anon_sym_BANG_EQ] = ACTIONS(2851), - [anon_sym_LT_EQ] = ACTIONS(2851), - [anon_sym_GT_EQ] = ACTIONS(2851), - [anon_sym_LBRACK] = ACTIONS(2849), - [anon_sym_struct] = ACTIONS(2851), - [anon_sym_union] = ACTIONS(2851), - [anon_sym_pub] = ACTIONS(2851), - [anon_sym_mut] = ACTIONS(2851), - [anon_sym_enum] = ACTIONS(2851), - [anon_sym_interface] = ACTIONS(2851), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_DASH_DASH] = ACTIONS(2851), - [anon_sym_QMARK] = ACTIONS(2851), - [anon_sym_BANG] = ACTIONS(2851), - [anon_sym_go] = ACTIONS(2851), - [anon_sym_spawn] = ACTIONS(2851), - [anon_sym_json_DOTdecode] = ACTIONS(2851), - [anon_sym_LBRACK2] = ACTIONS(2851), - [anon_sym_TILDE] = ACTIONS(2851), - [anon_sym_CARET] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2851), - [anon_sym_LT_DASH] = ACTIONS(2851), - [anon_sym_LT_LT] = ACTIONS(2851), - [anon_sym_GT_GT] = ACTIONS(2851), - [anon_sym_GT_GT_GT] = ACTIONS(2851), - [anon_sym_AMP_CARET] = ACTIONS(2851), - [anon_sym_AMP_AMP] = ACTIONS(2851), - [anon_sym_PIPE_PIPE] = ACTIONS(2851), - [anon_sym_or] = ACTIONS(2851), - [sym_none] = ACTIONS(2851), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [sym_nil] = ACTIONS(2851), - [anon_sym_QMARK_DOT] = ACTIONS(2851), - [anon_sym_POUND_LBRACK] = ACTIONS(2851), - [anon_sym_if] = ACTIONS(2851), - [anon_sym_DOLLARif] = ACTIONS(2851), - [anon_sym_is] = ACTIONS(2851), - [anon_sym_BANGis] = ACTIONS(2851), - [anon_sym_in] = ACTIONS(2851), - [anon_sym_BANGin] = ACTIONS(2851), - [anon_sym_match] = ACTIONS(2851), - [anon_sym_select] = ACTIONS(2851), - [anon_sym_STAR_EQ] = ACTIONS(2851), - [anon_sym_SLASH_EQ] = ACTIONS(2851), - [anon_sym_PERCENT_EQ] = ACTIONS(2851), - [anon_sym_LT_LT_EQ] = ACTIONS(2851), - [anon_sym_GT_GT_EQ] = ACTIONS(2851), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2851), - [anon_sym_AMP_EQ] = ACTIONS(2851), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2851), - [anon_sym_PLUS_EQ] = ACTIONS(2851), - [anon_sym_DASH_EQ] = ACTIONS(2851), - [anon_sym_PIPE_EQ] = ACTIONS(2851), - [anon_sym_CARET_EQ] = ACTIONS(2851), - [anon_sym_COLON_EQ] = ACTIONS(2851), - [anon_sym_lock] = ACTIONS(2851), - [anon_sym_rlock] = ACTIONS(2851), - [anon_sym_unsafe] = ACTIONS(2851), - [anon_sym_sql] = ACTIONS(2851), - [sym_int_literal] = ACTIONS(2851), - [sym_float_literal] = ACTIONS(2851), - [sym_rune_literal] = ACTIONS(2851), - [anon_sym_SQUOTE] = ACTIONS(2851), - [anon_sym_DQUOTE] = ACTIONS(2851), - [anon_sym_c_SQUOTE] = ACTIONS(2851), - [anon_sym_c_DQUOTE] = ACTIONS(2851), - [anon_sym_r_SQUOTE] = ACTIONS(2851), - [anon_sym_r_DQUOTE] = ACTIONS(2851), - [sym_pseudo_compile_time_identifier] = ACTIONS(2851), - [anon_sym_shared] = ACTIONS(2851), - [anon_sym_map_LBRACK] = ACTIONS(2851), - [anon_sym_chan] = ACTIONS(2851), - [anon_sym_thread] = ACTIONS(2851), - [anon_sym_atomic] = ACTIONS(2851), - [anon_sym_assert] = ACTIONS(2851), - [anon_sym_defer] = ACTIONS(2851), - [anon_sym_goto] = ACTIONS(2851), - [anon_sym_break] = ACTIONS(2851), - [anon_sym_continue] = ACTIONS(2851), - [anon_sym_return] = ACTIONS(2851), - [anon_sym_DOLLARfor] = ACTIONS(2851), - [anon_sym_for] = ACTIONS(2851), - [anon_sym_POUND] = ACTIONS(2851), - [anon_sym_asm] = ACTIONS(2851), - [anon_sym_AT_LBRACK] = ACTIONS(2851), + [anon_sym_DOT] = ACTIONS(2933), + [anon_sym_as] = ACTIONS(2933), + [anon_sym_LBRACE] = ACTIONS(2933), + [anon_sym_COMMA] = ACTIONS(2933), + [anon_sym_const] = ACTIONS(2933), + [anon_sym_LPAREN] = ACTIONS(2933), + [anon_sym_EQ] = ACTIONS(2933), + [anon_sym___global] = ACTIONS(2933), + [anon_sym_type] = ACTIONS(2933), + [anon_sym_fn] = ACTIONS(2933), + [anon_sym_PLUS] = ACTIONS(2933), + [anon_sym_DASH] = ACTIONS(2933), + [anon_sym_STAR] = ACTIONS(2933), + [anon_sym_SLASH] = ACTIONS(2933), + [anon_sym_PERCENT] = ACTIONS(2933), + [anon_sym_LT] = ACTIONS(2933), + [anon_sym_GT] = ACTIONS(2933), + [anon_sym_EQ_EQ] = ACTIONS(2933), + [anon_sym_BANG_EQ] = ACTIONS(2933), + [anon_sym_LT_EQ] = ACTIONS(2933), + [anon_sym_GT_EQ] = ACTIONS(2933), + [anon_sym_LBRACK] = ACTIONS(2931), + [anon_sym_struct] = ACTIONS(2933), + [anon_sym_union] = ACTIONS(2933), + [anon_sym_pub] = ACTIONS(2933), + [anon_sym_mut] = ACTIONS(2933), + [anon_sym_enum] = ACTIONS(2933), + [anon_sym_interface] = ACTIONS(2933), + [anon_sym_PLUS_PLUS] = ACTIONS(2933), + [anon_sym_DASH_DASH] = ACTIONS(2933), + [anon_sym_QMARK] = ACTIONS(2933), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_go] = ACTIONS(2933), + [anon_sym_spawn] = ACTIONS(2933), + [anon_sym_json_DOTdecode] = ACTIONS(2933), + [anon_sym_PIPE] = ACTIONS(2933), + [anon_sym_LBRACK2] = ACTIONS(2933), + [anon_sym_TILDE] = ACTIONS(2933), + [anon_sym_CARET] = ACTIONS(2933), + [anon_sym_AMP] = ACTIONS(2933), + [anon_sym_LT_DASH] = ACTIONS(2933), + [anon_sym_LT_LT] = ACTIONS(2933), + [anon_sym_GT_GT] = ACTIONS(2933), + [anon_sym_GT_GT_GT] = ACTIONS(2933), + [anon_sym_AMP_CARET] = ACTIONS(2933), + [anon_sym_AMP_AMP] = ACTIONS(2933), + [anon_sym_PIPE_PIPE] = ACTIONS(2933), + [anon_sym_or] = ACTIONS(2933), + [sym_none] = ACTIONS(2933), + [sym_true] = ACTIONS(2933), + [sym_false] = ACTIONS(2933), + [sym_nil] = ACTIONS(2933), + [anon_sym_QMARK_DOT] = ACTIONS(2933), + [anon_sym_POUND_LBRACK] = ACTIONS(2933), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_DOLLARif] = ACTIONS(2933), + [anon_sym_is] = ACTIONS(2933), + [anon_sym_BANGis] = ACTIONS(2933), + [anon_sym_in] = ACTIONS(2933), + [anon_sym_BANGin] = ACTIONS(2933), + [anon_sym_match] = ACTIONS(2933), + [anon_sym_select] = ACTIONS(2933), + [anon_sym_STAR_EQ] = ACTIONS(2933), + [anon_sym_SLASH_EQ] = ACTIONS(2933), + [anon_sym_PERCENT_EQ] = ACTIONS(2933), + [anon_sym_LT_LT_EQ] = ACTIONS(2933), + [anon_sym_GT_GT_EQ] = ACTIONS(2933), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2933), + [anon_sym_AMP_EQ] = ACTIONS(2933), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2933), + [anon_sym_PLUS_EQ] = ACTIONS(2933), + [anon_sym_DASH_EQ] = ACTIONS(2933), + [anon_sym_PIPE_EQ] = ACTIONS(2933), + [anon_sym_CARET_EQ] = ACTIONS(2933), + [anon_sym_COLON_EQ] = ACTIONS(2933), + [anon_sym_lock] = ACTIONS(2933), + [anon_sym_rlock] = ACTIONS(2933), + [anon_sym_unsafe] = ACTIONS(2933), + [anon_sym_sql] = ACTIONS(2933), + [sym_int_literal] = ACTIONS(2933), + [sym_float_literal] = ACTIONS(2933), + [sym_rune_literal] = ACTIONS(2933), + [anon_sym_SQUOTE] = ACTIONS(2933), + [anon_sym_DQUOTE] = ACTIONS(2933), + [anon_sym_c_SQUOTE] = ACTIONS(2933), + [anon_sym_c_DQUOTE] = ACTIONS(2933), + [anon_sym_r_SQUOTE] = ACTIONS(2933), + [anon_sym_r_DQUOTE] = ACTIONS(2933), + [sym_pseudo_compile_time_identifier] = ACTIONS(2933), + [anon_sym_shared] = ACTIONS(2933), + [anon_sym_map_LBRACK] = ACTIONS(2933), + [anon_sym_chan] = ACTIONS(2933), + [anon_sym_thread] = ACTIONS(2933), + [anon_sym_atomic] = ACTIONS(2933), + [anon_sym_assert] = ACTIONS(2933), + [anon_sym_defer] = ACTIONS(2933), + [anon_sym_goto] = ACTIONS(2933), + [anon_sym_break] = ACTIONS(2933), + [anon_sym_continue] = ACTIONS(2933), + [anon_sym_return] = ACTIONS(2933), + [anon_sym_DOLLARfor] = ACTIONS(2933), + [anon_sym_for] = ACTIONS(2933), + [anon_sym_POUND] = ACTIONS(2933), + [anon_sym_asm] = ACTIONS(2933), + [anon_sym_AT_LBRACK] = ACTIONS(2933), }, [460] = { [sym_line_comment] = STATE(460), [sym_block_comment] = STATE(460), - [ts_builtin_sym_end] = ACTIONS(2853), - [sym_identifier] = ACTIONS(2855), - [anon_sym_LF] = ACTIONS(2855), - [anon_sym_CR] = ACTIONS(2855), - [anon_sym_CR_LF] = ACTIONS(2855), + [ts_builtin_sym_end] = ACTIONS(2935), + [sym_identifier] = ACTIONS(2937), + [anon_sym_LF] = ACTIONS(2937), + [anon_sym_CR] = ACTIONS(2937), + [anon_sym_CR_LF] = ACTIONS(2937), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2855), - [anon_sym_as] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_COMMA] = ACTIONS(2855), - [anon_sym_const] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym_EQ] = ACTIONS(2855), - [anon_sym___global] = ACTIONS(2855), - [anon_sym_type] = ACTIONS(2855), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_fn] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_SLASH] = ACTIONS(2855), - [anon_sym_PERCENT] = ACTIONS(2855), - [anon_sym_LT] = ACTIONS(2855), - [anon_sym_GT] = ACTIONS(2855), - [anon_sym_EQ_EQ] = ACTIONS(2855), - [anon_sym_BANG_EQ] = ACTIONS(2855), - [anon_sym_LT_EQ] = ACTIONS(2855), - [anon_sym_GT_EQ] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_union] = ACTIONS(2855), - [anon_sym_pub] = ACTIONS(2855), - [anon_sym_mut] = ACTIONS(2855), - [anon_sym_enum] = ACTIONS(2855), - [anon_sym_interface] = ACTIONS(2855), - [anon_sym_PLUS_PLUS] = ACTIONS(2855), - [anon_sym_DASH_DASH] = ACTIONS(2855), - [anon_sym_QMARK] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_go] = ACTIONS(2855), - [anon_sym_spawn] = ACTIONS(2855), - [anon_sym_json_DOTdecode] = ACTIONS(2855), - [anon_sym_LBRACK2] = ACTIONS(2855), - [anon_sym_TILDE] = ACTIONS(2855), - [anon_sym_CARET] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_LT_DASH] = ACTIONS(2855), - [anon_sym_LT_LT] = ACTIONS(2855), - [anon_sym_GT_GT] = ACTIONS(2855), - [anon_sym_GT_GT_GT] = ACTIONS(2855), - [anon_sym_AMP_CARET] = ACTIONS(2855), - [anon_sym_AMP_AMP] = ACTIONS(2855), - [anon_sym_PIPE_PIPE] = ACTIONS(2855), - [anon_sym_or] = ACTIONS(2855), - [sym_none] = ACTIONS(2855), - [sym_true] = ACTIONS(2855), - [sym_false] = ACTIONS(2855), - [sym_nil] = ACTIONS(2855), - [anon_sym_QMARK_DOT] = ACTIONS(2855), - [anon_sym_POUND_LBRACK] = ACTIONS(2855), - [anon_sym_if] = ACTIONS(2855), - [anon_sym_DOLLARif] = ACTIONS(2855), - [anon_sym_is] = ACTIONS(2855), - [anon_sym_BANGis] = ACTIONS(2855), - [anon_sym_in] = ACTIONS(2855), - [anon_sym_BANGin] = ACTIONS(2855), - [anon_sym_match] = ACTIONS(2855), - [anon_sym_select] = ACTIONS(2855), - [anon_sym_STAR_EQ] = ACTIONS(2855), - [anon_sym_SLASH_EQ] = ACTIONS(2855), - [anon_sym_PERCENT_EQ] = ACTIONS(2855), - [anon_sym_LT_LT_EQ] = ACTIONS(2855), - [anon_sym_GT_GT_EQ] = ACTIONS(2855), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2855), - [anon_sym_AMP_EQ] = ACTIONS(2855), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2855), - [anon_sym_PLUS_EQ] = ACTIONS(2855), - [anon_sym_DASH_EQ] = ACTIONS(2855), - [anon_sym_PIPE_EQ] = ACTIONS(2855), - [anon_sym_CARET_EQ] = ACTIONS(2855), - [anon_sym_COLON_EQ] = ACTIONS(2855), - [anon_sym_lock] = ACTIONS(2855), - [anon_sym_rlock] = ACTIONS(2855), - [anon_sym_unsafe] = ACTIONS(2855), - [anon_sym_sql] = ACTIONS(2855), - [sym_int_literal] = ACTIONS(2855), - [sym_float_literal] = ACTIONS(2855), - [sym_rune_literal] = ACTIONS(2855), - [anon_sym_SQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [anon_sym_c_SQUOTE] = ACTIONS(2855), - [anon_sym_c_DQUOTE] = ACTIONS(2855), - [anon_sym_r_SQUOTE] = ACTIONS(2855), - [anon_sym_r_DQUOTE] = ACTIONS(2855), - [sym_pseudo_compile_time_identifier] = ACTIONS(2855), - [anon_sym_shared] = ACTIONS(2855), - [anon_sym_map_LBRACK] = ACTIONS(2855), - [anon_sym_chan] = ACTIONS(2855), - [anon_sym_thread] = ACTIONS(2855), - [anon_sym_atomic] = ACTIONS(2855), - [anon_sym_assert] = ACTIONS(2855), - [anon_sym_defer] = ACTIONS(2855), - [anon_sym_goto] = ACTIONS(2855), - [anon_sym_break] = ACTIONS(2855), - [anon_sym_continue] = ACTIONS(2855), - [anon_sym_return] = ACTIONS(2855), - [anon_sym_DOLLARfor] = ACTIONS(2855), - [anon_sym_for] = ACTIONS(2855), - [anon_sym_POUND] = ACTIONS(2855), - [anon_sym_asm] = ACTIONS(2855), - [anon_sym_AT_LBRACK] = ACTIONS(2855), + [anon_sym_DOT] = ACTIONS(2937), + [anon_sym_as] = ACTIONS(2937), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(2937), + [anon_sym_const] = ACTIONS(2937), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_EQ] = ACTIONS(2937), + [anon_sym___global] = ACTIONS(2937), + [anon_sym_type] = ACTIONS(2937), + [anon_sym_fn] = ACTIONS(2937), + [anon_sym_PLUS] = ACTIONS(2937), + [anon_sym_DASH] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2937), + [anon_sym_SLASH] = ACTIONS(2937), + [anon_sym_PERCENT] = ACTIONS(2937), + [anon_sym_LT] = ACTIONS(2937), + [anon_sym_GT] = ACTIONS(2937), + [anon_sym_EQ_EQ] = ACTIONS(2937), + [anon_sym_BANG_EQ] = ACTIONS(2937), + [anon_sym_LT_EQ] = ACTIONS(2937), + [anon_sym_GT_EQ] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2935), + [anon_sym_struct] = ACTIONS(2937), + [anon_sym_union] = ACTIONS(2937), + [anon_sym_pub] = ACTIONS(2937), + [anon_sym_mut] = ACTIONS(2937), + [anon_sym_enum] = ACTIONS(2937), + [anon_sym_interface] = ACTIONS(2937), + [anon_sym_PLUS_PLUS] = ACTIONS(2937), + [anon_sym_DASH_DASH] = ACTIONS(2937), + [anon_sym_QMARK] = ACTIONS(2937), + [anon_sym_BANG] = ACTIONS(2937), + [anon_sym_go] = ACTIONS(2937), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2937), + [anon_sym_PIPE] = ACTIONS(2937), + [anon_sym_LBRACK2] = ACTIONS(2937), + [anon_sym_TILDE] = ACTIONS(2937), + [anon_sym_CARET] = ACTIONS(2937), + [anon_sym_AMP] = ACTIONS(2937), + [anon_sym_LT_DASH] = ACTIONS(2937), + [anon_sym_LT_LT] = ACTIONS(2937), + [anon_sym_GT_GT] = ACTIONS(2937), + [anon_sym_GT_GT_GT] = ACTIONS(2937), + [anon_sym_AMP_CARET] = ACTIONS(2937), + [anon_sym_AMP_AMP] = ACTIONS(2937), + [anon_sym_PIPE_PIPE] = ACTIONS(2937), + [anon_sym_or] = ACTIONS(2937), + [sym_none] = ACTIONS(2937), + [sym_true] = ACTIONS(2937), + [sym_false] = ACTIONS(2937), + [sym_nil] = ACTIONS(2937), + [anon_sym_QMARK_DOT] = ACTIONS(2937), + [anon_sym_POUND_LBRACK] = ACTIONS(2937), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_DOLLARif] = ACTIONS(2937), + [anon_sym_is] = ACTIONS(2937), + [anon_sym_BANGis] = ACTIONS(2937), + [anon_sym_in] = ACTIONS(2937), + [anon_sym_BANGin] = ACTIONS(2937), + [anon_sym_match] = ACTIONS(2937), + [anon_sym_select] = ACTIONS(2937), + [anon_sym_STAR_EQ] = ACTIONS(2937), + [anon_sym_SLASH_EQ] = ACTIONS(2937), + [anon_sym_PERCENT_EQ] = ACTIONS(2937), + [anon_sym_LT_LT_EQ] = ACTIONS(2937), + [anon_sym_GT_GT_EQ] = ACTIONS(2937), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2937), + [anon_sym_AMP_EQ] = ACTIONS(2937), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2937), + [anon_sym_PLUS_EQ] = ACTIONS(2937), + [anon_sym_DASH_EQ] = ACTIONS(2937), + [anon_sym_PIPE_EQ] = ACTIONS(2937), + [anon_sym_CARET_EQ] = ACTIONS(2937), + [anon_sym_COLON_EQ] = ACTIONS(2937), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(2937), + [anon_sym_sql] = ACTIONS(2937), + [sym_int_literal] = ACTIONS(2937), + [sym_float_literal] = ACTIONS(2937), + [sym_rune_literal] = ACTIONS(2937), + [anon_sym_SQUOTE] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2937), + [anon_sym_c_SQUOTE] = ACTIONS(2937), + [anon_sym_c_DQUOTE] = ACTIONS(2937), + [anon_sym_r_SQUOTE] = ACTIONS(2937), + [anon_sym_r_DQUOTE] = ACTIONS(2937), + [sym_pseudo_compile_time_identifier] = ACTIONS(2937), + [anon_sym_shared] = ACTIONS(2937), + [anon_sym_map_LBRACK] = ACTIONS(2937), + [anon_sym_chan] = ACTIONS(2937), + [anon_sym_thread] = ACTIONS(2937), + [anon_sym_atomic] = ACTIONS(2937), + [anon_sym_assert] = ACTIONS(2937), + [anon_sym_defer] = ACTIONS(2937), + [anon_sym_goto] = ACTIONS(2937), + [anon_sym_break] = ACTIONS(2937), + [anon_sym_continue] = ACTIONS(2937), + [anon_sym_return] = ACTIONS(2937), + [anon_sym_DOLLARfor] = ACTIONS(2937), + [anon_sym_for] = ACTIONS(2937), + [anon_sym_POUND] = ACTIONS(2937), + [anon_sym_asm] = ACTIONS(2937), + [anon_sym_AT_LBRACK] = ACTIONS(2937), }, [461] = { [sym_line_comment] = STATE(461), [sym_block_comment] = STATE(461), - [ts_builtin_sym_end] = ACTIONS(2857), - [sym_identifier] = ACTIONS(2859), - [anon_sym_LF] = ACTIONS(2859), - [anon_sym_CR] = ACTIONS(2859), - [anon_sym_CR_LF] = ACTIONS(2859), + [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_DOT] = ACTIONS(2859), - [anon_sym_as] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2859), - [anon_sym_COMMA] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_LPAREN] = ACTIONS(2859), - [anon_sym_EQ] = ACTIONS(2859), - [anon_sym___global] = ACTIONS(2859), - [anon_sym_type] = ACTIONS(2859), - [anon_sym_PIPE] = ACTIONS(2859), - [anon_sym_fn] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2859), - [anon_sym_SLASH] = ACTIONS(2859), - [anon_sym_PERCENT] = ACTIONS(2859), - [anon_sym_LT] = ACTIONS(2859), - [anon_sym_GT] = ACTIONS(2859), - [anon_sym_EQ_EQ] = ACTIONS(2859), - [anon_sym_BANG_EQ] = ACTIONS(2859), - [anon_sym_LT_EQ] = ACTIONS(2859), - [anon_sym_GT_EQ] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2857), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_pub] = ACTIONS(2859), - [anon_sym_mut] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_interface] = ACTIONS(2859), - [anon_sym_PLUS_PLUS] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2859), - [anon_sym_QMARK] = ACTIONS(2859), - [anon_sym_BANG] = ACTIONS(2859), - [anon_sym_go] = ACTIONS(2859), - [anon_sym_spawn] = ACTIONS(2859), - [anon_sym_json_DOTdecode] = ACTIONS(2859), - [anon_sym_LBRACK2] = ACTIONS(2859), - [anon_sym_TILDE] = ACTIONS(2859), - [anon_sym_CARET] = ACTIONS(2859), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_LT_DASH] = ACTIONS(2859), - [anon_sym_LT_LT] = ACTIONS(2859), - [anon_sym_GT_GT] = ACTIONS(2859), - [anon_sym_GT_GT_GT] = ACTIONS(2859), - [anon_sym_AMP_CARET] = ACTIONS(2859), - [anon_sym_AMP_AMP] = ACTIONS(2859), - [anon_sym_PIPE_PIPE] = ACTIONS(2859), - [anon_sym_or] = ACTIONS(2859), - [sym_none] = ACTIONS(2859), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [sym_nil] = ACTIONS(2859), - [anon_sym_QMARK_DOT] = ACTIONS(2859), - [anon_sym_POUND_LBRACK] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_DOLLARif] = ACTIONS(2859), - [anon_sym_is] = ACTIONS(2859), - [anon_sym_BANGis] = ACTIONS(2859), - [anon_sym_in] = ACTIONS(2859), - [anon_sym_BANGin] = ACTIONS(2859), - [anon_sym_match] = ACTIONS(2859), - [anon_sym_select] = ACTIONS(2859), - [anon_sym_STAR_EQ] = ACTIONS(2859), - [anon_sym_SLASH_EQ] = ACTIONS(2859), - [anon_sym_PERCENT_EQ] = ACTIONS(2859), - [anon_sym_LT_LT_EQ] = ACTIONS(2859), - [anon_sym_GT_GT_EQ] = ACTIONS(2859), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2859), - [anon_sym_AMP_EQ] = ACTIONS(2859), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2859), - [anon_sym_PLUS_EQ] = ACTIONS(2859), - [anon_sym_DASH_EQ] = ACTIONS(2859), - [anon_sym_PIPE_EQ] = ACTIONS(2859), - [anon_sym_CARET_EQ] = ACTIONS(2859), - [anon_sym_COLON_EQ] = ACTIONS(2859), - [anon_sym_lock] = ACTIONS(2859), - [anon_sym_rlock] = ACTIONS(2859), - [anon_sym_unsafe] = ACTIONS(2859), - [anon_sym_sql] = ACTIONS(2859), - [sym_int_literal] = ACTIONS(2859), - [sym_float_literal] = ACTIONS(2859), - [sym_rune_literal] = ACTIONS(2859), - [anon_sym_SQUOTE] = ACTIONS(2859), - [anon_sym_DQUOTE] = ACTIONS(2859), - [anon_sym_c_SQUOTE] = ACTIONS(2859), - [anon_sym_c_DQUOTE] = ACTIONS(2859), - [anon_sym_r_SQUOTE] = ACTIONS(2859), - [anon_sym_r_DQUOTE] = ACTIONS(2859), - [sym_pseudo_compile_time_identifier] = ACTIONS(2859), - [anon_sym_shared] = ACTIONS(2859), - [anon_sym_map_LBRACK] = ACTIONS(2859), - [anon_sym_chan] = ACTIONS(2859), - [anon_sym_thread] = ACTIONS(2859), - [anon_sym_atomic] = ACTIONS(2859), - [anon_sym_assert] = ACTIONS(2859), - [anon_sym_defer] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_DOLLARfor] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_POUND] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym_AT_LBRACK] = ACTIONS(2859), + [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_fn] = ACTIONS(2941), + [anon_sym_PLUS] = ACTIONS(2941), + [anon_sym_DASH] = ACTIONS(2941), + [anon_sym_STAR] = ACTIONS(2941), + [anon_sym_SLASH] = 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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2941), + [anon_sym_DQUOTE] = ACTIONS(2941), + [anon_sym_c_SQUOTE] = ACTIONS(2941), + [anon_sym_c_DQUOTE] = ACTIONS(2941), + [anon_sym_r_SQUOTE] = ACTIONS(2941), + [anon_sym_r_DQUOTE] = 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), }, [462] = { [sym_line_comment] = STATE(462), [sym_block_comment] = STATE(462), - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2863), - [anon_sym_LF] = ACTIONS(2863), - [anon_sym_CR] = ACTIONS(2863), - [anon_sym_CR_LF] = ACTIONS(2863), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2863), - [anon_sym_as] = ACTIONS(2863), - [anon_sym_LBRACE] = ACTIONS(2863), - [anon_sym_COMMA] = ACTIONS(2863), - [anon_sym_const] = ACTIONS(2863), - [anon_sym_LPAREN] = ACTIONS(2863), - [anon_sym_EQ] = ACTIONS(2863), - [anon_sym___global] = ACTIONS(2863), - [anon_sym_type] = ACTIONS(2863), - [anon_sym_PIPE] = ACTIONS(2863), - [anon_sym_fn] = ACTIONS(2863), - [anon_sym_PLUS] = ACTIONS(2863), - [anon_sym_DASH] = ACTIONS(2863), - [anon_sym_STAR] = ACTIONS(2863), - [anon_sym_SLASH] = ACTIONS(2863), - [anon_sym_PERCENT] = ACTIONS(2863), - [anon_sym_LT] = ACTIONS(2863), - [anon_sym_GT] = ACTIONS(2863), - [anon_sym_EQ_EQ] = ACTIONS(2863), - [anon_sym_BANG_EQ] = ACTIONS(2863), - [anon_sym_LT_EQ] = ACTIONS(2863), - [anon_sym_GT_EQ] = ACTIONS(2863), - [anon_sym_LBRACK] = ACTIONS(2861), - [anon_sym_struct] = ACTIONS(2863), - [anon_sym_union] = ACTIONS(2863), - [anon_sym_pub] = ACTIONS(2863), - [anon_sym_mut] = ACTIONS(2863), - [anon_sym_enum] = ACTIONS(2863), - [anon_sym_interface] = ACTIONS(2863), - [anon_sym_PLUS_PLUS] = ACTIONS(2863), - [anon_sym_DASH_DASH] = ACTIONS(2863), - [anon_sym_QMARK] = ACTIONS(2863), - [anon_sym_BANG] = ACTIONS(2863), - [anon_sym_go] = ACTIONS(2863), - [anon_sym_spawn] = ACTIONS(2863), - [anon_sym_json_DOTdecode] = ACTIONS(2863), - [anon_sym_LBRACK2] = ACTIONS(2863), - [anon_sym_TILDE] = ACTIONS(2863), - [anon_sym_CARET] = ACTIONS(2863), - [anon_sym_AMP] = ACTIONS(2863), - [anon_sym_LT_DASH] = ACTIONS(2863), - [anon_sym_LT_LT] = ACTIONS(2863), - [anon_sym_GT_GT] = ACTIONS(2863), - [anon_sym_GT_GT_GT] = ACTIONS(2863), - [anon_sym_AMP_CARET] = ACTIONS(2863), - [anon_sym_AMP_AMP] = ACTIONS(2863), - [anon_sym_PIPE_PIPE] = ACTIONS(2863), - [anon_sym_or] = ACTIONS(2863), - [sym_none] = ACTIONS(2863), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [sym_nil] = ACTIONS(2863), - [anon_sym_QMARK_DOT] = ACTIONS(2863), - [anon_sym_POUND_LBRACK] = ACTIONS(2863), - [anon_sym_if] = ACTIONS(2863), - [anon_sym_DOLLARif] = ACTIONS(2863), - [anon_sym_is] = ACTIONS(2863), - [anon_sym_BANGis] = ACTIONS(2863), - [anon_sym_in] = ACTIONS(2863), - [anon_sym_BANGin] = ACTIONS(2863), - [anon_sym_match] = ACTIONS(2863), - [anon_sym_select] = ACTIONS(2863), - [anon_sym_STAR_EQ] = ACTIONS(2863), - [anon_sym_SLASH_EQ] = ACTIONS(2863), - [anon_sym_PERCENT_EQ] = ACTIONS(2863), - [anon_sym_LT_LT_EQ] = ACTIONS(2863), - [anon_sym_GT_GT_EQ] = ACTIONS(2863), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2863), - [anon_sym_AMP_EQ] = ACTIONS(2863), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2863), - [anon_sym_PLUS_EQ] = ACTIONS(2863), - [anon_sym_DASH_EQ] = ACTIONS(2863), - [anon_sym_PIPE_EQ] = ACTIONS(2863), - [anon_sym_CARET_EQ] = ACTIONS(2863), - [anon_sym_COLON_EQ] = ACTIONS(2863), - [anon_sym_lock] = ACTIONS(2863), - [anon_sym_rlock] = ACTIONS(2863), - [anon_sym_unsafe] = ACTIONS(2863), - [anon_sym_sql] = ACTIONS(2863), - [sym_int_literal] = ACTIONS(2863), - [sym_float_literal] = ACTIONS(2863), - [sym_rune_literal] = ACTIONS(2863), - [anon_sym_SQUOTE] = ACTIONS(2863), - [anon_sym_DQUOTE] = ACTIONS(2863), - [anon_sym_c_SQUOTE] = ACTIONS(2863), - [anon_sym_c_DQUOTE] = ACTIONS(2863), - [anon_sym_r_SQUOTE] = ACTIONS(2863), - [anon_sym_r_DQUOTE] = ACTIONS(2863), - [sym_pseudo_compile_time_identifier] = ACTIONS(2863), - [anon_sym_shared] = ACTIONS(2863), - [anon_sym_map_LBRACK] = ACTIONS(2863), - [anon_sym_chan] = ACTIONS(2863), - [anon_sym_thread] = ACTIONS(2863), - [anon_sym_atomic] = ACTIONS(2863), - [anon_sym_assert] = ACTIONS(2863), - [anon_sym_defer] = ACTIONS(2863), - [anon_sym_goto] = ACTIONS(2863), - [anon_sym_break] = ACTIONS(2863), - [anon_sym_continue] = ACTIONS(2863), - [anon_sym_return] = ACTIONS(2863), - [anon_sym_DOLLARfor] = ACTIONS(2863), - [anon_sym_for] = ACTIONS(2863), - [anon_sym_POUND] = ACTIONS(2863), - [anon_sym_asm] = ACTIONS(2863), - [anon_sym_AT_LBRACK] = ACTIONS(2863), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4345), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [463] = { [sym_line_comment] = STATE(463), [sym_block_comment] = STATE(463), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4369), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1399), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1398), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym__array_repeat1] = STATE(377), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(2865), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(2943), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1404), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -76621,113 +76916,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [464] = { [sym_line_comment] = STATE(464), [sym_block_comment] = STATE(464), - [sym__expression] = STATE(2575), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(870), - [sym_mutable_expression] = STATE(3805), - [sym_expression_list] = STATE(4276), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(1264), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_string_interpolation_repeat1] = STATE(431), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(2945), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2405), - [anon_sym_go] = ACTIONS(2407), - [anon_sym_spawn] = ACTIONS(2409), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2401), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(2417), - [anon_sym_lock] = ACTIONS(2419), - [anon_sym_rlock] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2671), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_CARET] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_LT_DASH] = ACTIONS(2675), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -76737,229 +77032,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [465] = { [sym_line_comment] = STATE(465), [sym_block_comment] = STATE(465), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1398), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1396), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym__array_repeat1] = STATE(406), - [sym_identifier] = ACTIONS(1299), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(2867), - [anon_sym_struct] = ACTIONS(1315), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1347), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [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_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_fn] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2949), + [anon_sym_SLASH] = 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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [anon_sym_c_SQUOTE] = ACTIONS(2949), + [anon_sym_c_DQUOTE] = ACTIONS(2949), + [anon_sym_r_SQUOTE] = ACTIONS(2949), + [anon_sym_r_DQUOTE] = 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), }, [466] = { [sym_line_comment] = STATE(466), [sym_block_comment] = STATE(466), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4274), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym_string_interpolation_repeat1] = STATE(454), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2671), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_CARET] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_LT_DASH] = ACTIONS(2675), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -76969,1853 +77264,1853 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [467] = { [sym_line_comment] = STATE(467), [sym_block_comment] = STATE(467), - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3548), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_range] = STATE(4437), - [sym_identifier] = ACTIONS(2391), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym__array_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(2953), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1281), }, [468] = { [sym_line_comment] = STATE(468), [sym_block_comment] = STATE(468), - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_range] = STATE(4437), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2524), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(687), + [sym_mutable_expression] = STATE(3824), + [sym_expression_list] = STATE(4345), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_go] = ACTIONS(2909), + [anon_sym_spawn] = ACTIONS(2911), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_LT_DASH] = ACTIONS(2917), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(2919), + [anon_sym_lock] = ACTIONS(2921), + [anon_sym_rlock] = ACTIONS(2921), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1281), }, [469] = { [sym_line_comment] = STATE(469), [sym_block_comment] = STATE(469), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym__array_repeat1] = STATE(403), - [sym_identifier] = ACTIONS(1299), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(2869), - [anon_sym_struct] = ACTIONS(1315), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(2955), + [sym_identifier] = ACTIONS(2957), + [anon_sym_LF] = ACTIONS(2957), + [anon_sym_CR] = ACTIONS(2957), + [anon_sym_CR_LF] = ACTIONS(2957), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_as] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_COMMA] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_EQ] = ACTIONS(2957), + [anon_sym___global] = ACTIONS(2957), + [anon_sym_type] = ACTIONS(2957), + [anon_sym_fn] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_SLASH] = ACTIONS(2957), + [anon_sym_PERCENT] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2957), + [anon_sym_GT] = ACTIONS(2957), + [anon_sym_EQ_EQ] = ACTIONS(2957), + [anon_sym_BANG_EQ] = ACTIONS(2957), + [anon_sym_LT_EQ] = ACTIONS(2957), + [anon_sym_GT_EQ] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2955), + [anon_sym_struct] = ACTIONS(2957), + [anon_sym_union] = ACTIONS(2957), + [anon_sym_pub] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2957), + [anon_sym_interface] = ACTIONS(2957), + [anon_sym_PLUS_PLUS] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2957), + [anon_sym_QMARK] = ACTIONS(2957), + [anon_sym_BANG] = ACTIONS(2957), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2957), + [anon_sym_json_DOTdecode] = ACTIONS(2957), + [anon_sym_PIPE] = ACTIONS(2957), + [anon_sym_LBRACK2] = ACTIONS(2957), + [anon_sym_TILDE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2957), + [anon_sym_AMP] = ACTIONS(2957), + [anon_sym_LT_DASH] = ACTIONS(2957), + [anon_sym_LT_LT] = ACTIONS(2957), + [anon_sym_GT_GT] = ACTIONS(2957), + [anon_sym_GT_GT_GT] = ACTIONS(2957), + [anon_sym_AMP_CARET] = ACTIONS(2957), + [anon_sym_AMP_AMP] = ACTIONS(2957), + [anon_sym_PIPE_PIPE] = ACTIONS(2957), + [anon_sym_or] = ACTIONS(2957), + [sym_none] = ACTIONS(2957), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_nil] = ACTIONS(2957), + [anon_sym_QMARK_DOT] = ACTIONS(2957), + [anon_sym_POUND_LBRACK] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_DOLLARif] = ACTIONS(2957), + [anon_sym_is] = ACTIONS(2957), + [anon_sym_BANGis] = ACTIONS(2957), + [anon_sym_in] = ACTIONS(2957), + [anon_sym_BANGin] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_select] = ACTIONS(2957), + [anon_sym_STAR_EQ] = ACTIONS(2957), + [anon_sym_SLASH_EQ] = ACTIONS(2957), + [anon_sym_PERCENT_EQ] = ACTIONS(2957), + [anon_sym_LT_LT_EQ] = ACTIONS(2957), + [anon_sym_GT_GT_EQ] = ACTIONS(2957), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2957), + [anon_sym_AMP_EQ] = ACTIONS(2957), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2957), + [anon_sym_PLUS_EQ] = ACTIONS(2957), + [anon_sym_DASH_EQ] = ACTIONS(2957), + [anon_sym_PIPE_EQ] = ACTIONS(2957), + [anon_sym_CARET_EQ] = ACTIONS(2957), + [anon_sym_COLON_EQ] = ACTIONS(2957), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_rlock] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2957), + [anon_sym_sql] = ACTIONS(2957), + [sym_int_literal] = ACTIONS(2957), + [sym_float_literal] = ACTIONS(2957), + [sym_rune_literal] = ACTIONS(2957), + [anon_sym_SQUOTE] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [anon_sym_c_SQUOTE] = ACTIONS(2957), + [anon_sym_c_DQUOTE] = ACTIONS(2957), + [anon_sym_r_SQUOTE] = ACTIONS(2957), + [anon_sym_r_DQUOTE] = ACTIONS(2957), + [sym_pseudo_compile_time_identifier] = ACTIONS(2957), + [anon_sym_shared] = ACTIONS(2957), + [anon_sym_map_LBRACK] = ACTIONS(2957), + [anon_sym_chan] = ACTIONS(2957), + [anon_sym_thread] = ACTIONS(2957), + [anon_sym_atomic] = ACTIONS(2957), + [anon_sym_assert] = ACTIONS(2957), + [anon_sym_defer] = ACTIONS(2957), + [anon_sym_goto] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_DOLLARfor] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_POUND] = ACTIONS(2957), + [anon_sym_asm] = ACTIONS(2957), + [anon_sym_AT_LBRACK] = ACTIONS(2957), }, [470] = { [sym_line_comment] = STATE(470), [sym_block_comment] = STATE(470), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1398), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1396), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym__array_repeat1] = STATE(386), - [sym_identifier] = ACTIONS(1299), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(2871), - [anon_sym_struct] = ACTIONS(1315), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1347), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(2959), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LF] = ACTIONS(2961), + [anon_sym_CR] = ACTIONS(2961), + [anon_sym_CR_LF] = ACTIONS(2961), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2961), + [anon_sym_as] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2961), + [anon_sym_COMMA] = ACTIONS(2961), + [anon_sym_const] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2961), + [anon_sym_EQ] = ACTIONS(2961), + [anon_sym___global] = ACTIONS(2961), + [anon_sym_type] = ACTIONS(2961), + [anon_sym_fn] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2961), + [anon_sym_SLASH] = ACTIONS(2961), + [anon_sym_PERCENT] = ACTIONS(2961), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_EQ_EQ] = ACTIONS(2961), + [anon_sym_BANG_EQ] = ACTIONS(2961), + [anon_sym_LT_EQ] = ACTIONS(2961), + [anon_sym_GT_EQ] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2959), + [anon_sym_struct] = ACTIONS(2961), + [anon_sym_union] = ACTIONS(2961), + [anon_sym_pub] = ACTIONS(2961), + [anon_sym_mut] = ACTIONS(2961), + [anon_sym_enum] = ACTIONS(2961), + [anon_sym_interface] = ACTIONS(2961), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_DASH_DASH] = ACTIONS(2961), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_BANG] = ACTIONS(2961), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2961), + [anon_sym_json_DOTdecode] = ACTIONS(2961), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_LBRACK2] = ACTIONS(2961), + [anon_sym_TILDE] = ACTIONS(2961), + [anon_sym_CARET] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2961), + [anon_sym_LT_LT] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(2961), + [anon_sym_GT_GT_GT] = ACTIONS(2961), + [anon_sym_AMP_CARET] = ACTIONS(2961), + [anon_sym_AMP_AMP] = ACTIONS(2961), + [anon_sym_PIPE_PIPE] = ACTIONS(2961), + [anon_sym_or] = ACTIONS(2961), + [sym_none] = ACTIONS(2961), + [sym_true] = ACTIONS(2961), + [sym_false] = ACTIONS(2961), + [sym_nil] = ACTIONS(2961), + [anon_sym_QMARK_DOT] = ACTIONS(2961), + [anon_sym_POUND_LBRACK] = ACTIONS(2961), + [anon_sym_if] = ACTIONS(2961), + [anon_sym_DOLLARif] = ACTIONS(2961), + [anon_sym_is] = ACTIONS(2961), + [anon_sym_BANGis] = ACTIONS(2961), + [anon_sym_in] = ACTIONS(2961), + [anon_sym_BANGin] = ACTIONS(2961), + [anon_sym_match] = ACTIONS(2961), + [anon_sym_select] = ACTIONS(2961), + [anon_sym_STAR_EQ] = ACTIONS(2961), + [anon_sym_SLASH_EQ] = ACTIONS(2961), + [anon_sym_PERCENT_EQ] = ACTIONS(2961), + [anon_sym_LT_LT_EQ] = ACTIONS(2961), + [anon_sym_GT_GT_EQ] = ACTIONS(2961), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2961), + [anon_sym_AMP_EQ] = ACTIONS(2961), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2961), + [anon_sym_PLUS_EQ] = ACTIONS(2961), + [anon_sym_DASH_EQ] = ACTIONS(2961), + [anon_sym_PIPE_EQ] = ACTIONS(2961), + [anon_sym_CARET_EQ] = ACTIONS(2961), + [anon_sym_COLON_EQ] = ACTIONS(2961), + [anon_sym_lock] = ACTIONS(2961), + [anon_sym_rlock] = ACTIONS(2961), + [anon_sym_unsafe] = ACTIONS(2961), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2961), + [sym_float_literal] = ACTIONS(2961), + [sym_rune_literal] = ACTIONS(2961), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_DQUOTE] = ACTIONS(2961), + [anon_sym_c_SQUOTE] = ACTIONS(2961), + [anon_sym_c_DQUOTE] = ACTIONS(2961), + [anon_sym_r_SQUOTE] = ACTIONS(2961), + [anon_sym_r_DQUOTE] = ACTIONS(2961), + [sym_pseudo_compile_time_identifier] = ACTIONS(2961), + [anon_sym_shared] = ACTIONS(2961), + [anon_sym_map_LBRACK] = ACTIONS(2961), + [anon_sym_chan] = ACTIONS(2961), + [anon_sym_thread] = ACTIONS(2961), + [anon_sym_atomic] = ACTIONS(2961), + [anon_sym_assert] = ACTIONS(2961), + [anon_sym_defer] = ACTIONS(2961), + [anon_sym_goto] = ACTIONS(2961), + [anon_sym_break] = ACTIONS(2961), + [anon_sym_continue] = ACTIONS(2961), + [anon_sym_return] = ACTIONS(2961), + [anon_sym_DOLLARfor] = ACTIONS(2961), + [anon_sym_for] = ACTIONS(2961), + [anon_sym_POUND] = ACTIONS(2961), + [anon_sym_asm] = ACTIONS(2961), + [anon_sym_AT_LBRACK] = ACTIONS(2961), }, [471] = { [sym_line_comment] = STATE(471), [sym_block_comment] = STATE(471), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1398), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1396), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym__array_repeat1] = STATE(367), - [sym_identifier] = ACTIONS(1299), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(1315), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1347), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(2963), + [sym_identifier] = ACTIONS(2965), + [anon_sym_LF] = ACTIONS(2965), + [anon_sym_CR] = ACTIONS(2965), + [anon_sym_CR_LF] = ACTIONS(2965), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_as] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_COMMA] = ACTIONS(2965), + [anon_sym_const] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym___global] = ACTIONS(2965), + [anon_sym_type] = ACTIONS(2965), + [anon_sym_fn] = ACTIONS(2965), + [anon_sym_PLUS] = ACTIONS(2965), + [anon_sym_DASH] = ACTIONS(2965), + [anon_sym_STAR] = ACTIONS(2965), + [anon_sym_SLASH] = ACTIONS(2965), + [anon_sym_PERCENT] = ACTIONS(2965), + [anon_sym_LT] = ACTIONS(2965), + [anon_sym_GT] = ACTIONS(2965), + [anon_sym_EQ_EQ] = ACTIONS(2965), + [anon_sym_BANG_EQ] = ACTIONS(2965), + [anon_sym_LT_EQ] = ACTIONS(2965), + [anon_sym_GT_EQ] = ACTIONS(2965), + [anon_sym_LBRACK] = ACTIONS(2963), + [anon_sym_struct] = ACTIONS(2965), + [anon_sym_union] = ACTIONS(2965), + [anon_sym_pub] = ACTIONS(2965), + [anon_sym_mut] = ACTIONS(2965), + [anon_sym_enum] = ACTIONS(2965), + [anon_sym_interface] = ACTIONS(2965), + [anon_sym_PLUS_PLUS] = ACTIONS(2965), + [anon_sym_DASH_DASH] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_BANG] = ACTIONS(2965), + [anon_sym_go] = ACTIONS(2965), + [anon_sym_spawn] = ACTIONS(2965), + [anon_sym_json_DOTdecode] = ACTIONS(2965), + [anon_sym_PIPE] = ACTIONS(2965), + [anon_sym_LBRACK2] = ACTIONS(2965), + [anon_sym_TILDE] = ACTIONS(2965), + [anon_sym_CARET] = ACTIONS(2965), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_LT_DASH] = ACTIONS(2965), + [anon_sym_LT_LT] = ACTIONS(2965), + [anon_sym_GT_GT] = ACTIONS(2965), + [anon_sym_GT_GT_GT] = ACTIONS(2965), + [anon_sym_AMP_CARET] = ACTIONS(2965), + [anon_sym_AMP_AMP] = ACTIONS(2965), + [anon_sym_PIPE_PIPE] = ACTIONS(2965), + [anon_sym_or] = ACTIONS(2965), + [sym_none] = ACTIONS(2965), + [sym_true] = ACTIONS(2965), + [sym_false] = ACTIONS(2965), + [sym_nil] = ACTIONS(2965), + [anon_sym_QMARK_DOT] = ACTIONS(2965), + [anon_sym_POUND_LBRACK] = ACTIONS(2965), + [anon_sym_if] = ACTIONS(2965), + [anon_sym_DOLLARif] = ACTIONS(2965), + [anon_sym_is] = ACTIONS(2965), + [anon_sym_BANGis] = ACTIONS(2965), + [anon_sym_in] = ACTIONS(2965), + [anon_sym_BANGin] = ACTIONS(2965), + [anon_sym_match] = ACTIONS(2965), + [anon_sym_select] = ACTIONS(2965), + [anon_sym_STAR_EQ] = ACTIONS(2965), + [anon_sym_SLASH_EQ] = ACTIONS(2965), + [anon_sym_PERCENT_EQ] = ACTIONS(2965), + [anon_sym_LT_LT_EQ] = ACTIONS(2965), + [anon_sym_GT_GT_EQ] = ACTIONS(2965), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2965), + [anon_sym_AMP_EQ] = ACTIONS(2965), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2965), + [anon_sym_PLUS_EQ] = ACTIONS(2965), + [anon_sym_DASH_EQ] = ACTIONS(2965), + [anon_sym_PIPE_EQ] = ACTIONS(2965), + [anon_sym_CARET_EQ] = ACTIONS(2965), + [anon_sym_COLON_EQ] = ACTIONS(2965), + [anon_sym_lock] = ACTIONS(2965), + [anon_sym_rlock] = ACTIONS(2965), + [anon_sym_unsafe] = ACTIONS(2965), + [anon_sym_sql] = ACTIONS(2965), + [sym_int_literal] = ACTIONS(2965), + [sym_float_literal] = ACTIONS(2965), + [sym_rune_literal] = ACTIONS(2965), + [anon_sym_SQUOTE] = ACTIONS(2965), + [anon_sym_DQUOTE] = ACTIONS(2965), + [anon_sym_c_SQUOTE] = ACTIONS(2965), + [anon_sym_c_DQUOTE] = ACTIONS(2965), + [anon_sym_r_SQUOTE] = ACTIONS(2965), + [anon_sym_r_DQUOTE] = ACTIONS(2965), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), + [anon_sym_shared] = ACTIONS(2965), + [anon_sym_map_LBRACK] = ACTIONS(2965), + [anon_sym_chan] = ACTIONS(2965), + [anon_sym_thread] = ACTIONS(2965), + [anon_sym_atomic] = ACTIONS(2965), + [anon_sym_assert] = ACTIONS(2965), + [anon_sym_defer] = ACTIONS(2965), + [anon_sym_goto] = ACTIONS(2965), + [anon_sym_break] = ACTIONS(2965), + [anon_sym_continue] = ACTIONS(2965), + [anon_sym_return] = ACTIONS(2965), + [anon_sym_DOLLARfor] = ACTIONS(2965), + [anon_sym_for] = ACTIONS(2965), + [anon_sym_POUND] = ACTIONS(2965), + [anon_sym_asm] = ACTIONS(2965), + [anon_sym_AT_LBRACK] = ACTIONS(2965), }, [472] = { [sym_line_comment] = STATE(472), [sym_block_comment] = STATE(472), - [ts_builtin_sym_end] = ACTIONS(2875), - [sym_identifier] = ACTIONS(2877), - [anon_sym_LF] = ACTIONS(2877), - [anon_sym_CR] = ACTIONS(2877), - [anon_sym_CR_LF] = ACTIONS(2877), + [ts_builtin_sym_end] = ACTIONS(2967), + [sym_identifier] = ACTIONS(2969), + [anon_sym_LF] = ACTIONS(2969), + [anon_sym_CR] = ACTIONS(2969), + [anon_sym_CR_LF] = ACTIONS(2969), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2877), - [anon_sym_as] = ACTIONS(2877), - [anon_sym_LBRACE] = ACTIONS(2877), - [anon_sym_COMMA] = ACTIONS(2877), - [anon_sym_const] = ACTIONS(2877), - [anon_sym_LPAREN] = ACTIONS(2877), - [anon_sym_EQ] = ACTIONS(2877), - [anon_sym___global] = ACTIONS(2877), - [anon_sym_type] = ACTIONS(2877), - [anon_sym_PIPE] = ACTIONS(2877), - [anon_sym_fn] = ACTIONS(2877), - [anon_sym_PLUS] = ACTIONS(2877), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_STAR] = ACTIONS(2877), - [anon_sym_SLASH] = ACTIONS(2877), - [anon_sym_PERCENT] = ACTIONS(2877), - [anon_sym_LT] = ACTIONS(2877), - [anon_sym_GT] = ACTIONS(2877), - [anon_sym_EQ_EQ] = ACTIONS(2877), - [anon_sym_BANG_EQ] = ACTIONS(2877), - [anon_sym_LT_EQ] = ACTIONS(2877), - [anon_sym_GT_EQ] = ACTIONS(2877), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_struct] = ACTIONS(2877), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_pub] = ACTIONS(2877), - [anon_sym_mut] = ACTIONS(2877), - [anon_sym_enum] = ACTIONS(2877), - [anon_sym_interface] = ACTIONS(2877), - [anon_sym_PLUS_PLUS] = ACTIONS(2877), - [anon_sym_DASH_DASH] = ACTIONS(2877), - [anon_sym_QMARK] = ACTIONS(2877), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_go] = ACTIONS(2877), - [anon_sym_spawn] = ACTIONS(2877), - [anon_sym_json_DOTdecode] = ACTIONS(2877), - [anon_sym_LBRACK2] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_CARET] = ACTIONS(2877), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_LT_DASH] = ACTIONS(2877), - [anon_sym_LT_LT] = ACTIONS(2877), - [anon_sym_GT_GT] = ACTIONS(2877), - [anon_sym_GT_GT_GT] = ACTIONS(2877), - [anon_sym_AMP_CARET] = ACTIONS(2877), - [anon_sym_AMP_AMP] = ACTIONS(2877), - [anon_sym_PIPE_PIPE] = ACTIONS(2877), - [anon_sym_or] = ACTIONS(2877), - [sym_none] = ACTIONS(2877), - [sym_true] = ACTIONS(2877), - [sym_false] = ACTIONS(2877), - [sym_nil] = ACTIONS(2877), - [anon_sym_QMARK_DOT] = ACTIONS(2877), - [anon_sym_POUND_LBRACK] = ACTIONS(2877), - [anon_sym_if] = ACTIONS(2877), - [anon_sym_DOLLARif] = ACTIONS(2877), - [anon_sym_is] = ACTIONS(2877), - [anon_sym_BANGis] = ACTIONS(2877), - [anon_sym_in] = ACTIONS(2877), - [anon_sym_BANGin] = ACTIONS(2877), - [anon_sym_match] = ACTIONS(2877), - [anon_sym_select] = ACTIONS(2877), - [anon_sym_STAR_EQ] = ACTIONS(2877), - [anon_sym_SLASH_EQ] = ACTIONS(2877), - [anon_sym_PERCENT_EQ] = ACTIONS(2877), - [anon_sym_LT_LT_EQ] = ACTIONS(2877), - [anon_sym_GT_GT_EQ] = ACTIONS(2877), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2877), - [anon_sym_AMP_EQ] = ACTIONS(2877), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2877), - [anon_sym_PLUS_EQ] = ACTIONS(2877), - [anon_sym_DASH_EQ] = ACTIONS(2877), - [anon_sym_PIPE_EQ] = ACTIONS(2877), - [anon_sym_CARET_EQ] = ACTIONS(2877), - [anon_sym_COLON_EQ] = ACTIONS(2877), - [anon_sym_lock] = ACTIONS(2877), - [anon_sym_rlock] = ACTIONS(2877), - [anon_sym_unsafe] = ACTIONS(2877), - [anon_sym_sql] = ACTIONS(2877), - [sym_int_literal] = ACTIONS(2877), - [sym_float_literal] = ACTIONS(2877), - [sym_rune_literal] = ACTIONS(2877), - [anon_sym_SQUOTE] = ACTIONS(2877), - [anon_sym_DQUOTE] = ACTIONS(2877), - [anon_sym_c_SQUOTE] = ACTIONS(2877), - [anon_sym_c_DQUOTE] = ACTIONS(2877), - [anon_sym_r_SQUOTE] = ACTIONS(2877), - [anon_sym_r_DQUOTE] = ACTIONS(2877), - [sym_pseudo_compile_time_identifier] = ACTIONS(2877), - [anon_sym_shared] = ACTIONS(2877), - [anon_sym_map_LBRACK] = ACTIONS(2877), - [anon_sym_chan] = ACTIONS(2877), - [anon_sym_thread] = ACTIONS(2877), - [anon_sym_atomic] = ACTIONS(2877), - [anon_sym_assert] = ACTIONS(2877), - [anon_sym_defer] = ACTIONS(2877), - [anon_sym_goto] = ACTIONS(2877), - [anon_sym_break] = ACTIONS(2877), - [anon_sym_continue] = ACTIONS(2877), - [anon_sym_return] = ACTIONS(2877), - [anon_sym_DOLLARfor] = ACTIONS(2877), - [anon_sym_for] = ACTIONS(2877), - [anon_sym_POUND] = ACTIONS(2877), - [anon_sym_asm] = ACTIONS(2877), - [anon_sym_AT_LBRACK] = ACTIONS(2877), + [anon_sym_DOT] = ACTIONS(2969), + [anon_sym_as] = ACTIONS(2969), + [anon_sym_LBRACE] = ACTIONS(2969), + [anon_sym_COMMA] = ACTIONS(2969), + [anon_sym_const] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2969), + [anon_sym_EQ] = ACTIONS(2969), + [anon_sym___global] = ACTIONS(2969), + [anon_sym_type] = ACTIONS(2969), + [anon_sym_fn] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(2969), + [anon_sym_SLASH] = ACTIONS(2969), + [anon_sym_PERCENT] = ACTIONS(2969), + [anon_sym_LT] = ACTIONS(2969), + [anon_sym_GT] = ACTIONS(2969), + [anon_sym_EQ_EQ] = ACTIONS(2969), + [anon_sym_BANG_EQ] = ACTIONS(2969), + [anon_sym_LT_EQ] = ACTIONS(2969), + [anon_sym_GT_EQ] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(2967), + [anon_sym_struct] = ACTIONS(2969), + [anon_sym_union] = ACTIONS(2969), + [anon_sym_pub] = ACTIONS(2969), + [anon_sym_mut] = ACTIONS(2969), + [anon_sym_enum] = ACTIONS(2969), + [anon_sym_interface] = ACTIONS(2969), + [anon_sym_PLUS_PLUS] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(2969), + [anon_sym_QMARK] = ACTIONS(2969), + [anon_sym_BANG] = ACTIONS(2969), + [anon_sym_go] = ACTIONS(2969), + [anon_sym_spawn] = ACTIONS(2969), + [anon_sym_json_DOTdecode] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2969), + [anon_sym_LBRACK2] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2969), + [anon_sym_CARET] = ACTIONS(2969), + [anon_sym_AMP] = ACTIONS(2969), + [anon_sym_LT_DASH] = ACTIONS(2969), + [anon_sym_LT_LT] = ACTIONS(2969), + [anon_sym_GT_GT] = ACTIONS(2969), + [anon_sym_GT_GT_GT] = ACTIONS(2969), + [anon_sym_AMP_CARET] = ACTIONS(2969), + [anon_sym_AMP_AMP] = ACTIONS(2969), + [anon_sym_PIPE_PIPE] = ACTIONS(2969), + [anon_sym_or] = ACTIONS(2969), + [sym_none] = ACTIONS(2969), + [sym_true] = ACTIONS(2969), + [sym_false] = ACTIONS(2969), + [sym_nil] = ACTIONS(2969), + [anon_sym_QMARK_DOT] = ACTIONS(2969), + [anon_sym_POUND_LBRACK] = ACTIONS(2969), + [anon_sym_if] = ACTIONS(2969), + [anon_sym_DOLLARif] = ACTIONS(2969), + [anon_sym_is] = ACTIONS(2969), + [anon_sym_BANGis] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(2969), + [anon_sym_BANGin] = ACTIONS(2969), + [anon_sym_match] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), + [anon_sym_STAR_EQ] = ACTIONS(2969), + [anon_sym_SLASH_EQ] = ACTIONS(2969), + [anon_sym_PERCENT_EQ] = ACTIONS(2969), + [anon_sym_LT_LT_EQ] = ACTIONS(2969), + [anon_sym_GT_GT_EQ] = ACTIONS(2969), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2969), + [anon_sym_AMP_EQ] = ACTIONS(2969), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2969), + [anon_sym_PLUS_EQ] = ACTIONS(2969), + [anon_sym_DASH_EQ] = ACTIONS(2969), + [anon_sym_PIPE_EQ] = ACTIONS(2969), + [anon_sym_CARET_EQ] = ACTIONS(2969), + [anon_sym_COLON_EQ] = ACTIONS(2969), + [anon_sym_lock] = ACTIONS(2969), + [anon_sym_rlock] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(2969), + [anon_sym_sql] = ACTIONS(2969), + [sym_int_literal] = ACTIONS(2969), + [sym_float_literal] = ACTIONS(2969), + [sym_rune_literal] = ACTIONS(2969), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_DQUOTE] = ACTIONS(2969), + [anon_sym_c_SQUOTE] = ACTIONS(2969), + [anon_sym_c_DQUOTE] = ACTIONS(2969), + [anon_sym_r_SQUOTE] = ACTIONS(2969), + [anon_sym_r_DQUOTE] = ACTIONS(2969), + [sym_pseudo_compile_time_identifier] = ACTIONS(2969), + [anon_sym_shared] = ACTIONS(2969), + [anon_sym_map_LBRACK] = ACTIONS(2969), + [anon_sym_chan] = ACTIONS(2969), + [anon_sym_thread] = ACTIONS(2969), + [anon_sym_atomic] = ACTIONS(2969), + [anon_sym_assert] = ACTIONS(2969), + [anon_sym_defer] = ACTIONS(2969), + [anon_sym_goto] = ACTIONS(2969), + [anon_sym_break] = ACTIONS(2969), + [anon_sym_continue] = ACTIONS(2969), + [anon_sym_return] = ACTIONS(2969), + [anon_sym_DOLLARfor] = ACTIONS(2969), + [anon_sym_for] = ACTIONS(2969), + [anon_sym_POUND] = ACTIONS(2969), + [anon_sym_asm] = ACTIONS(2969), + [anon_sym_AT_LBRACK] = ACTIONS(2969), }, [473] = { [sym_line_comment] = STATE(473), [sym_block_comment] = STATE(473), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4383), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(2971), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LF] = ACTIONS(2973), + [anon_sym_CR] = ACTIONS(2973), + [anon_sym_CR_LF] = ACTIONS(2973), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2973), + [anon_sym_as] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(2973), + [anon_sym_const] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2973), + [anon_sym_EQ] = ACTIONS(2973), + [anon_sym___global] = ACTIONS(2973), + [anon_sym_type] = ACTIONS(2973), + [anon_sym_fn] = ACTIONS(2973), + [anon_sym_PLUS] = ACTIONS(2973), + [anon_sym_DASH] = ACTIONS(2973), + [anon_sym_STAR] = ACTIONS(2973), + [anon_sym_SLASH] = ACTIONS(2973), + [anon_sym_PERCENT] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_GT] = ACTIONS(2973), + [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(2971), + [anon_sym_struct] = ACTIONS(2973), + [anon_sym_union] = ACTIONS(2973), + [anon_sym_pub] = ACTIONS(2973), + [anon_sym_mut] = ACTIONS(2973), + [anon_sym_enum] = ACTIONS(2973), + [anon_sym_interface] = ACTIONS(2973), + [anon_sym_PLUS_PLUS] = ACTIONS(2973), + [anon_sym_DASH_DASH] = ACTIONS(2973), + [anon_sym_QMARK] = ACTIONS(2973), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_go] = ACTIONS(2973), + [anon_sym_spawn] = ACTIONS(2973), + [anon_sym_json_DOTdecode] = ACTIONS(2973), + [anon_sym_PIPE] = ACTIONS(2973), + [anon_sym_LBRACK2] = ACTIONS(2973), + [anon_sym_TILDE] = ACTIONS(2973), + [anon_sym_CARET] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2973), + [anon_sym_LT_DASH] = ACTIONS(2973), + [anon_sym_LT_LT] = ACTIONS(2973), + [anon_sym_GT_GT] = ACTIONS(2973), + [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(2973), + [sym_none] = ACTIONS(2973), + [sym_true] = ACTIONS(2973), + [sym_false] = ACTIONS(2973), + [sym_nil] = ACTIONS(2973), + [anon_sym_QMARK_DOT] = ACTIONS(2973), + [anon_sym_POUND_LBRACK] = ACTIONS(2973), + [anon_sym_if] = ACTIONS(2973), + [anon_sym_DOLLARif] = ACTIONS(2973), + [anon_sym_is] = ACTIONS(2973), + [anon_sym_BANGis] = ACTIONS(2973), + [anon_sym_in] = ACTIONS(2973), + [anon_sym_BANGin] = ACTIONS(2973), + [anon_sym_match] = ACTIONS(2973), + [anon_sym_select] = ACTIONS(2973), + [anon_sym_STAR_EQ] = ACTIONS(2973), + [anon_sym_SLASH_EQ] = ACTIONS(2973), + [anon_sym_PERCENT_EQ] = ACTIONS(2973), + [anon_sym_LT_LT_EQ] = ACTIONS(2973), + [anon_sym_GT_GT_EQ] = ACTIONS(2973), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2973), + [anon_sym_AMP_EQ] = ACTIONS(2973), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2973), + [anon_sym_PLUS_EQ] = ACTIONS(2973), + [anon_sym_DASH_EQ] = ACTIONS(2973), + [anon_sym_PIPE_EQ] = ACTIONS(2973), + [anon_sym_CARET_EQ] = ACTIONS(2973), + [anon_sym_COLON_EQ] = ACTIONS(2973), + [anon_sym_lock] = ACTIONS(2973), + [anon_sym_rlock] = ACTIONS(2973), + [anon_sym_unsafe] = ACTIONS(2973), + [anon_sym_sql] = ACTIONS(2973), + [sym_int_literal] = ACTIONS(2973), + [sym_float_literal] = ACTIONS(2973), + [sym_rune_literal] = ACTIONS(2973), + [anon_sym_SQUOTE] = ACTIONS(2973), + [anon_sym_DQUOTE] = ACTIONS(2973), + [anon_sym_c_SQUOTE] = ACTIONS(2973), + [anon_sym_c_DQUOTE] = ACTIONS(2973), + [anon_sym_r_SQUOTE] = ACTIONS(2973), + [anon_sym_r_DQUOTE] = ACTIONS(2973), + [sym_pseudo_compile_time_identifier] = ACTIONS(2973), + [anon_sym_shared] = ACTIONS(2973), + [anon_sym_map_LBRACK] = ACTIONS(2973), + [anon_sym_chan] = ACTIONS(2973), + [anon_sym_thread] = ACTIONS(2973), + [anon_sym_atomic] = ACTIONS(2973), + [anon_sym_assert] = ACTIONS(2973), + [anon_sym_defer] = ACTIONS(2973), + [anon_sym_goto] = ACTIONS(2973), + [anon_sym_break] = ACTIONS(2973), + [anon_sym_continue] = ACTIONS(2973), + [anon_sym_return] = ACTIONS(2973), + [anon_sym_DOLLARfor] = ACTIONS(2973), + [anon_sym_for] = ACTIONS(2973), + [anon_sym_POUND] = ACTIONS(2973), + [anon_sym_asm] = ACTIONS(2973), + [anon_sym_AT_LBRACK] = ACTIONS(2973), }, [474] = { [sym_line_comment] = STATE(474), [sym_block_comment] = STATE(474), - [ts_builtin_sym_end] = ACTIONS(2881), - [sym_identifier] = ACTIONS(2883), - [anon_sym_LF] = ACTIONS(2883), - [anon_sym_CR] = ACTIONS(2883), - [anon_sym_CR_LF] = ACTIONS(2883), + [ts_builtin_sym_end] = ACTIONS(2975), + [sym_identifier] = ACTIONS(2977), + [anon_sym_LF] = ACTIONS(2977), + [anon_sym_CR] = ACTIONS(2977), + [anon_sym_CR_LF] = ACTIONS(2977), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2883), - [anon_sym_as] = ACTIONS(2883), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2883), - [anon_sym_const] = ACTIONS(2883), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_EQ] = ACTIONS(2883), - [anon_sym___global] = ACTIONS(2883), - [anon_sym_type] = ACTIONS(2883), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_fn] = ACTIONS(2883), - [anon_sym_PLUS] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2883), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_PERCENT] = ACTIONS(2883), - [anon_sym_LT] = ACTIONS(2883), - [anon_sym_GT] = ACTIONS(2883), - [anon_sym_EQ_EQ] = ACTIONS(2883), - [anon_sym_BANG_EQ] = ACTIONS(2883), - [anon_sym_LT_EQ] = ACTIONS(2883), - [anon_sym_GT_EQ] = ACTIONS(2883), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2883), - [anon_sym_union] = ACTIONS(2883), - [anon_sym_pub] = ACTIONS(2883), - [anon_sym_mut] = ACTIONS(2883), - [anon_sym_enum] = ACTIONS(2883), - [anon_sym_interface] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2883), - [anon_sym_DASH_DASH] = ACTIONS(2883), - [anon_sym_QMARK] = ACTIONS(2883), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_go] = ACTIONS(2883), - [anon_sym_spawn] = ACTIONS(2883), - [anon_sym_json_DOTdecode] = ACTIONS(2883), - [anon_sym_LBRACK2] = ACTIONS(2883), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_CARET] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2883), - [anon_sym_LT_DASH] = ACTIONS(2883), - [anon_sym_LT_LT] = ACTIONS(2883), - [anon_sym_GT_GT] = ACTIONS(2883), - [anon_sym_GT_GT_GT] = ACTIONS(2883), - [anon_sym_AMP_CARET] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_PIPE_PIPE] = ACTIONS(2883), - [anon_sym_or] = ACTIONS(2883), - [sym_none] = ACTIONS(2883), - [sym_true] = ACTIONS(2883), - [sym_false] = ACTIONS(2883), - [sym_nil] = ACTIONS(2883), - [anon_sym_QMARK_DOT] = ACTIONS(2883), - [anon_sym_POUND_LBRACK] = ACTIONS(2883), - [anon_sym_if] = ACTIONS(2883), - [anon_sym_DOLLARif] = ACTIONS(2883), - [anon_sym_is] = ACTIONS(2883), - [anon_sym_BANGis] = ACTIONS(2883), - [anon_sym_in] = ACTIONS(2883), - [anon_sym_BANGin] = ACTIONS(2883), - [anon_sym_match] = ACTIONS(2883), - [anon_sym_select] = ACTIONS(2883), - [anon_sym_STAR_EQ] = ACTIONS(2883), - [anon_sym_SLASH_EQ] = ACTIONS(2883), - [anon_sym_PERCENT_EQ] = ACTIONS(2883), - [anon_sym_LT_LT_EQ] = ACTIONS(2883), - [anon_sym_GT_GT_EQ] = ACTIONS(2883), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2883), - [anon_sym_AMP_EQ] = ACTIONS(2883), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2883), - [anon_sym_PLUS_EQ] = ACTIONS(2883), - [anon_sym_DASH_EQ] = ACTIONS(2883), - [anon_sym_PIPE_EQ] = ACTIONS(2883), - [anon_sym_CARET_EQ] = ACTIONS(2883), - [anon_sym_COLON_EQ] = ACTIONS(2883), - [anon_sym_lock] = ACTIONS(2883), - [anon_sym_rlock] = ACTIONS(2883), - [anon_sym_unsafe] = ACTIONS(2883), - [anon_sym_sql] = ACTIONS(2883), - [sym_int_literal] = ACTIONS(2883), - [sym_float_literal] = ACTIONS(2883), - [sym_rune_literal] = ACTIONS(2883), - [anon_sym_SQUOTE] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [anon_sym_c_SQUOTE] = ACTIONS(2883), - [anon_sym_c_DQUOTE] = ACTIONS(2883), - [anon_sym_r_SQUOTE] = ACTIONS(2883), - [anon_sym_r_DQUOTE] = ACTIONS(2883), - [sym_pseudo_compile_time_identifier] = ACTIONS(2883), - [anon_sym_shared] = ACTIONS(2883), - [anon_sym_map_LBRACK] = ACTIONS(2883), - [anon_sym_chan] = ACTIONS(2883), - [anon_sym_thread] = ACTIONS(2883), - [anon_sym_atomic] = ACTIONS(2883), - [anon_sym_assert] = ACTIONS(2883), - [anon_sym_defer] = ACTIONS(2883), - [anon_sym_goto] = ACTIONS(2883), - [anon_sym_break] = ACTIONS(2883), - [anon_sym_continue] = ACTIONS(2883), - [anon_sym_return] = ACTIONS(2883), - [anon_sym_DOLLARfor] = ACTIONS(2883), - [anon_sym_for] = ACTIONS(2883), - [anon_sym_POUND] = ACTIONS(2883), - [anon_sym_asm] = ACTIONS(2883), - [anon_sym_AT_LBRACK] = ACTIONS(2883), + [anon_sym_DOT] = ACTIONS(2977), + [anon_sym_as] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2977), + [anon_sym_COMMA] = ACTIONS(2977), + [anon_sym_const] = ACTIONS(2977), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_EQ] = ACTIONS(2977), + [anon_sym___global] = ACTIONS(2977), + [anon_sym_type] = ACTIONS(2977), + [anon_sym_fn] = ACTIONS(2977), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2977), + [anon_sym_SLASH] = ACTIONS(2977), + [anon_sym_PERCENT] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_GT] = ACTIONS(2977), + [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(2975), + [anon_sym_struct] = ACTIONS(2977), + [anon_sym_union] = ACTIONS(2977), + [anon_sym_pub] = ACTIONS(2977), + [anon_sym_mut] = ACTIONS(2977), + [anon_sym_enum] = ACTIONS(2977), + [anon_sym_interface] = ACTIONS(2977), + [anon_sym_PLUS_PLUS] = ACTIONS(2977), + [anon_sym_DASH_DASH] = ACTIONS(2977), + [anon_sym_QMARK] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_go] = ACTIONS(2977), + [anon_sym_spawn] = ACTIONS(2977), + [anon_sym_json_DOTdecode] = ACTIONS(2977), + [anon_sym_PIPE] = ACTIONS(2977), + [anon_sym_LBRACK2] = ACTIONS(2977), + [anon_sym_TILDE] = ACTIONS(2977), + [anon_sym_CARET] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_LT_DASH] = ACTIONS(2977), + [anon_sym_LT_LT] = ACTIONS(2977), + [anon_sym_GT_GT] = ACTIONS(2977), + [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(2977), + [sym_none] = ACTIONS(2977), + [sym_true] = ACTIONS(2977), + [sym_false] = ACTIONS(2977), + [sym_nil] = ACTIONS(2977), + [anon_sym_QMARK_DOT] = ACTIONS(2977), + [anon_sym_POUND_LBRACK] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_DOLLARif] = ACTIONS(2977), + [anon_sym_is] = ACTIONS(2977), + [anon_sym_BANGis] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2977), + [anon_sym_BANGin] = ACTIONS(2977), + [anon_sym_match] = ACTIONS(2977), + [anon_sym_select] = ACTIONS(2977), + [anon_sym_STAR_EQ] = ACTIONS(2977), + [anon_sym_SLASH_EQ] = ACTIONS(2977), + [anon_sym_PERCENT_EQ] = ACTIONS(2977), + [anon_sym_LT_LT_EQ] = ACTIONS(2977), + [anon_sym_GT_GT_EQ] = ACTIONS(2977), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2977), + [anon_sym_AMP_EQ] = ACTIONS(2977), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2977), + [anon_sym_PLUS_EQ] = ACTIONS(2977), + [anon_sym_DASH_EQ] = ACTIONS(2977), + [anon_sym_PIPE_EQ] = ACTIONS(2977), + [anon_sym_CARET_EQ] = ACTIONS(2977), + [anon_sym_COLON_EQ] = ACTIONS(2977), + [anon_sym_lock] = ACTIONS(2977), + [anon_sym_rlock] = ACTIONS(2977), + [anon_sym_unsafe] = ACTIONS(2977), + [anon_sym_sql] = ACTIONS(2977), + [sym_int_literal] = ACTIONS(2977), + [sym_float_literal] = ACTIONS(2977), + [sym_rune_literal] = ACTIONS(2977), + [anon_sym_SQUOTE] = ACTIONS(2977), + [anon_sym_DQUOTE] = ACTIONS(2977), + [anon_sym_c_SQUOTE] = ACTIONS(2977), + [anon_sym_c_DQUOTE] = ACTIONS(2977), + [anon_sym_r_SQUOTE] = ACTIONS(2977), + [anon_sym_r_DQUOTE] = ACTIONS(2977), + [sym_pseudo_compile_time_identifier] = ACTIONS(2977), + [anon_sym_shared] = ACTIONS(2977), + [anon_sym_map_LBRACK] = ACTIONS(2977), + [anon_sym_chan] = ACTIONS(2977), + [anon_sym_thread] = ACTIONS(2977), + [anon_sym_atomic] = ACTIONS(2977), + [anon_sym_assert] = ACTIONS(2977), + [anon_sym_defer] = ACTIONS(2977), + [anon_sym_goto] = ACTIONS(2977), + [anon_sym_break] = ACTIONS(2977), + [anon_sym_continue] = ACTIONS(2977), + [anon_sym_return] = ACTIONS(2977), + [anon_sym_DOLLARfor] = ACTIONS(2977), + [anon_sym_for] = ACTIONS(2977), + [anon_sym_POUND] = ACTIONS(2977), + [anon_sym_asm] = ACTIONS(2977), + [anon_sym_AT_LBRACK] = ACTIONS(2977), }, [475] = { [sym_line_comment] = STATE(475), [sym_block_comment] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(2885), - [sym_identifier] = ACTIONS(2887), - [anon_sym_LF] = ACTIONS(2887), - [anon_sym_CR] = ACTIONS(2887), - [anon_sym_CR_LF] = ACTIONS(2887), + [ts_builtin_sym_end] = ACTIONS(2979), + [sym_identifier] = ACTIONS(2981), + [anon_sym_LF] = ACTIONS(2981), + [anon_sym_CR] = ACTIONS(2981), + [anon_sym_CR_LF] = ACTIONS(2981), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2887), - [anon_sym_as] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_COMMA] = ACTIONS(2887), - [anon_sym_const] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(2887), - [anon_sym_EQ] = ACTIONS(2887), - [anon_sym___global] = ACTIONS(2887), - [anon_sym_type] = ACTIONS(2887), - [anon_sym_PIPE] = ACTIONS(2887), - [anon_sym_fn] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2887), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_EQ_EQ] = ACTIONS(2887), - [anon_sym_BANG_EQ] = ACTIONS(2887), - [anon_sym_LT_EQ] = ACTIONS(2887), - [anon_sym_GT_EQ] = ACTIONS(2887), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2887), - [anon_sym_union] = ACTIONS(2887), - [anon_sym_pub] = ACTIONS(2887), - [anon_sym_mut] = ACTIONS(2887), - [anon_sym_enum] = ACTIONS(2887), - [anon_sym_interface] = ACTIONS(2887), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [anon_sym_QMARK] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_go] = ACTIONS(2887), - [anon_sym_spawn] = ACTIONS(2887), - [anon_sym_json_DOTdecode] = ACTIONS(2887), - [anon_sym_LBRACK2] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_CARET] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2887), - [anon_sym_LT_LT] = ACTIONS(2887), - [anon_sym_GT_GT] = ACTIONS(2887), - [anon_sym_GT_GT_GT] = ACTIONS(2887), - [anon_sym_AMP_CARET] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_PIPE_PIPE] = ACTIONS(2887), - [anon_sym_or] = ACTIONS(2887), - [sym_none] = ACTIONS(2887), - [sym_true] = ACTIONS(2887), - [sym_false] = ACTIONS(2887), - [sym_nil] = ACTIONS(2887), - [anon_sym_QMARK_DOT] = ACTIONS(2887), - [anon_sym_POUND_LBRACK] = ACTIONS(2887), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_DOLLARif] = ACTIONS(2887), - [anon_sym_is] = ACTIONS(2887), - [anon_sym_BANGis] = ACTIONS(2887), - [anon_sym_in] = ACTIONS(2887), - [anon_sym_BANGin] = ACTIONS(2887), - [anon_sym_match] = ACTIONS(2887), - [anon_sym_select] = ACTIONS(2887), - [anon_sym_STAR_EQ] = ACTIONS(2887), - [anon_sym_SLASH_EQ] = ACTIONS(2887), - [anon_sym_PERCENT_EQ] = ACTIONS(2887), - [anon_sym_LT_LT_EQ] = ACTIONS(2887), - [anon_sym_GT_GT_EQ] = ACTIONS(2887), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2887), - [anon_sym_AMP_EQ] = ACTIONS(2887), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2887), - [anon_sym_PLUS_EQ] = ACTIONS(2887), - [anon_sym_DASH_EQ] = ACTIONS(2887), - [anon_sym_PIPE_EQ] = ACTIONS(2887), - [anon_sym_CARET_EQ] = ACTIONS(2887), - [anon_sym_COLON_EQ] = ACTIONS(2887), - [anon_sym_lock] = ACTIONS(2887), - [anon_sym_rlock] = ACTIONS(2887), - [anon_sym_unsafe] = ACTIONS(2887), - [anon_sym_sql] = ACTIONS(2887), - [sym_int_literal] = ACTIONS(2887), - [sym_float_literal] = ACTIONS(2887), - [sym_rune_literal] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [anon_sym_c_SQUOTE] = ACTIONS(2887), - [anon_sym_c_DQUOTE] = ACTIONS(2887), - [anon_sym_r_SQUOTE] = ACTIONS(2887), - [anon_sym_r_DQUOTE] = ACTIONS(2887), - [sym_pseudo_compile_time_identifier] = ACTIONS(2887), - [anon_sym_shared] = ACTIONS(2887), - [anon_sym_map_LBRACK] = ACTIONS(2887), - [anon_sym_chan] = ACTIONS(2887), - [anon_sym_thread] = ACTIONS(2887), - [anon_sym_atomic] = ACTIONS(2887), - [anon_sym_assert] = ACTIONS(2887), - [anon_sym_defer] = ACTIONS(2887), - [anon_sym_goto] = ACTIONS(2887), - [anon_sym_break] = ACTIONS(2887), - [anon_sym_continue] = ACTIONS(2887), - [anon_sym_return] = ACTIONS(2887), - [anon_sym_DOLLARfor] = ACTIONS(2887), - [anon_sym_for] = ACTIONS(2887), - [anon_sym_POUND] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2887), - [anon_sym_AT_LBRACK] = ACTIONS(2887), + [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_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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE] = ACTIONS(2981), + [anon_sym_c_SQUOTE] = ACTIONS(2981), + [anon_sym_c_DQUOTE] = ACTIONS(2981), + [anon_sym_r_SQUOTE] = ACTIONS(2981), + [anon_sym_r_DQUOTE] = 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), }, [476] = { [sym_line_comment] = STATE(476), [sym_block_comment] = STATE(476), - [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), + [ts_builtin_sym_end] = ACTIONS(2983), + [sym_identifier] = ACTIONS(2985), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_CR] = ACTIONS(2985), + [anon_sym_CR_LF] = ACTIONS(2985), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2891), - [anon_sym_as] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2891), - [anon_sym_COMMA] = ACTIONS(2891), - [anon_sym_const] = ACTIONS(2891), - [anon_sym_LPAREN] = ACTIONS(2891), - [anon_sym_EQ] = ACTIONS(2891), - [anon_sym___global] = ACTIONS(2891), - [anon_sym_type] = ACTIONS(2891), - [anon_sym_PIPE] = ACTIONS(2891), - [anon_sym_fn] = ACTIONS(2891), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_SLASH] = ACTIONS(2891), - [anon_sym_PERCENT] = ACTIONS(2891), - [anon_sym_LT] = ACTIONS(2891), - [anon_sym_GT] = ACTIONS(2891), - [anon_sym_EQ_EQ] = ACTIONS(2891), - [anon_sym_BANG_EQ] = ACTIONS(2891), - [anon_sym_LT_EQ] = ACTIONS(2891), - [anon_sym_GT_EQ] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_struct] = ACTIONS(2891), - [anon_sym_union] = ACTIONS(2891), - [anon_sym_pub] = ACTIONS(2891), - [anon_sym_mut] = ACTIONS(2891), - [anon_sym_enum] = ACTIONS(2891), - [anon_sym_interface] = ACTIONS(2891), - [anon_sym_PLUS_PLUS] = ACTIONS(2891), - [anon_sym_DASH_DASH] = ACTIONS(2891), - [anon_sym_QMARK] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2891), - [anon_sym_go] = ACTIONS(2891), - [anon_sym_spawn] = ACTIONS(2891), - [anon_sym_json_DOTdecode] = ACTIONS(2891), - [anon_sym_LBRACK2] = ACTIONS(2891), - [anon_sym_TILDE] = ACTIONS(2891), - [anon_sym_CARET] = ACTIONS(2891), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_LT_DASH] = ACTIONS(2891), - [anon_sym_LT_LT] = ACTIONS(2891), - [anon_sym_GT_GT] = ACTIONS(2891), - [anon_sym_GT_GT_GT] = ACTIONS(2891), - [anon_sym_AMP_CARET] = ACTIONS(2891), - [anon_sym_AMP_AMP] = ACTIONS(2891), - [anon_sym_PIPE_PIPE] = ACTIONS(2891), - [anon_sym_or] = ACTIONS(2891), - [sym_none] = ACTIONS(2891), - [sym_true] = ACTIONS(2891), - [sym_false] = ACTIONS(2891), - [sym_nil] = ACTIONS(2891), - [anon_sym_QMARK_DOT] = ACTIONS(2891), - [anon_sym_POUND_LBRACK] = ACTIONS(2891), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_DOLLARif] = ACTIONS(2891), - [anon_sym_is] = ACTIONS(2891), - [anon_sym_BANGis] = ACTIONS(2891), - [anon_sym_in] = ACTIONS(2891), - [anon_sym_BANGin] = ACTIONS(2891), - [anon_sym_match] = ACTIONS(2891), - [anon_sym_select] = ACTIONS(2891), - [anon_sym_STAR_EQ] = ACTIONS(2891), - [anon_sym_SLASH_EQ] = ACTIONS(2891), - [anon_sym_PERCENT_EQ] = ACTIONS(2891), - [anon_sym_LT_LT_EQ] = ACTIONS(2891), - [anon_sym_GT_GT_EQ] = ACTIONS(2891), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2891), - [anon_sym_AMP_EQ] = ACTIONS(2891), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2891), - [anon_sym_PLUS_EQ] = ACTIONS(2891), - [anon_sym_DASH_EQ] = ACTIONS(2891), - [anon_sym_PIPE_EQ] = ACTIONS(2891), - [anon_sym_CARET_EQ] = ACTIONS(2891), - [anon_sym_COLON_EQ] = ACTIONS(2891), - [anon_sym_lock] = ACTIONS(2891), - [anon_sym_rlock] = ACTIONS(2891), - [anon_sym_unsafe] = ACTIONS(2891), - [anon_sym_sql] = ACTIONS(2891), - [sym_int_literal] = ACTIONS(2891), - [sym_float_literal] = ACTIONS(2891), - [sym_rune_literal] = ACTIONS(2891), - [anon_sym_SQUOTE] = ACTIONS(2891), - [anon_sym_DQUOTE] = ACTIONS(2891), - [anon_sym_c_SQUOTE] = ACTIONS(2891), - [anon_sym_c_DQUOTE] = ACTIONS(2891), - [anon_sym_r_SQUOTE] = ACTIONS(2891), - [anon_sym_r_DQUOTE] = 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), + [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_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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(2985), + [anon_sym_c_SQUOTE] = ACTIONS(2985), + [anon_sym_c_DQUOTE] = ACTIONS(2985), + [anon_sym_r_SQUOTE] = ACTIONS(2985), + [anon_sym_r_DQUOTE] = 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), }, [477] = { [sym_line_comment] = STATE(477), [sym_block_comment] = STATE(477), - [sym__expression] = STATE(2589), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3548), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_range] = STATE(4617), - [sym_identifier] = ACTIONS(2391), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1281), + [ts_builtin_sym_end] = ACTIONS(2987), + [sym_identifier] = ACTIONS(2989), + [anon_sym_LF] = ACTIONS(2989), + [anon_sym_CR] = ACTIONS(2989), + [anon_sym_CR_LF] = ACTIONS(2989), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_as] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_COMMA] = ACTIONS(2989), + [anon_sym_const] = ACTIONS(2989), + [anon_sym_LPAREN] = ACTIONS(2989), + [anon_sym_EQ] = ACTIONS(2989), + [anon_sym___global] = ACTIONS(2989), + [anon_sym_type] = ACTIONS(2989), + [anon_sym_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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2989), + [anon_sym_DQUOTE] = ACTIONS(2989), + [anon_sym_c_SQUOTE] = ACTIONS(2989), + [anon_sym_c_DQUOTE] = ACTIONS(2989), + [anon_sym_r_SQUOTE] = ACTIONS(2989), + [anon_sym_r_DQUOTE] = 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), }, [478] = { [sym_line_comment] = STATE(478), [sym_block_comment] = STATE(478), - [sym__expression] = STATE(2589), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_range] = STATE(4617), - [sym_identifier] = ACTIONS(1219), + [ts_builtin_sym_end] = ACTIONS(2632), + [sym_identifier] = ACTIONS(2629), + [anon_sym_LF] = ACTIONS(2629), + [anon_sym_CR] = ACTIONS(2629), + [anon_sym_CR_LF] = ACTIONS(2629), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2629), + [anon_sym_as] = ACTIONS(2629), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_COMMA] = ACTIONS(2629), + [anon_sym_const] = ACTIONS(2629), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_EQ] = ACTIONS(2629), + [anon_sym___global] = ACTIONS(2629), + [anon_sym_type] = ACTIONS(2629), + [anon_sym_fn] = ACTIONS(2629), + [anon_sym_PLUS] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2629), + [anon_sym_union] = ACTIONS(2629), + [anon_sym_pub] = ACTIONS(2629), + [anon_sym_mut] = ACTIONS(2629), + [anon_sym_enum] = ACTIONS(2629), + [anon_sym_interface] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_QMARK] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_go] = ACTIONS(2629), + [anon_sym_spawn] = ACTIONS(2629), + [anon_sym_json_DOTdecode] = ACTIONS(2629), + [anon_sym_PIPE] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2629), + [anon_sym_LT_DASH] = ACTIONS(2629), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT] = ACTIONS(2629), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_AMP_CARET] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_or] = ACTIONS(2629), + [sym_none] = ACTIONS(2629), + [sym_true] = ACTIONS(2629), + [sym_false] = ACTIONS(2629), + [sym_nil] = ACTIONS(2629), + [anon_sym_QMARK_DOT] = ACTIONS(2629), + [anon_sym_POUND_LBRACK] = ACTIONS(2629), + [anon_sym_if] = ACTIONS(2629), + [anon_sym_DOLLARif] = ACTIONS(2629), + [anon_sym_is] = ACTIONS(2629), + [anon_sym_BANGis] = ACTIONS(2629), + [anon_sym_in] = ACTIONS(2629), + [anon_sym_BANGin] = ACTIONS(2629), + [anon_sym_match] = ACTIONS(2629), + [anon_sym_select] = ACTIONS(2629), + [anon_sym_STAR_EQ] = ACTIONS(2629), + [anon_sym_SLASH_EQ] = ACTIONS(2629), + [anon_sym_PERCENT_EQ] = ACTIONS(2629), + [anon_sym_LT_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_GT_EQ] = ACTIONS(2629), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2629), + [anon_sym_AMP_EQ] = ACTIONS(2629), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2629), + [anon_sym_PLUS_EQ] = ACTIONS(2629), + [anon_sym_DASH_EQ] = ACTIONS(2629), + [anon_sym_PIPE_EQ] = ACTIONS(2629), + [anon_sym_CARET_EQ] = ACTIONS(2629), + [anon_sym_COLON_EQ] = ACTIONS(2629), + [anon_sym_lock] = ACTIONS(2629), + [anon_sym_rlock] = ACTIONS(2629), + [anon_sym_unsafe] = ACTIONS(2629), + [anon_sym_sql] = ACTIONS(2629), + [sym_int_literal] = ACTIONS(2629), + [sym_float_literal] = ACTIONS(2629), + [sym_rune_literal] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [anon_sym_c_SQUOTE] = ACTIONS(2629), + [anon_sym_c_DQUOTE] = ACTIONS(2629), + [anon_sym_r_SQUOTE] = ACTIONS(2629), + [anon_sym_r_DQUOTE] = ACTIONS(2629), + [sym_pseudo_compile_time_identifier] = ACTIONS(2629), + [anon_sym_shared] = ACTIONS(2629), + [anon_sym_map_LBRACK] = ACTIONS(2629), + [anon_sym_chan] = ACTIONS(2629), + [anon_sym_thread] = ACTIONS(2629), + [anon_sym_atomic] = ACTIONS(2629), + [anon_sym_assert] = ACTIONS(2629), + [anon_sym_defer] = ACTIONS(2629), + [anon_sym_goto] = ACTIONS(2629), + [anon_sym_break] = ACTIONS(2629), + [anon_sym_continue] = ACTIONS(2629), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_DOLLARfor] = ACTIONS(2629), + [anon_sym_for] = ACTIONS(2629), + [anon_sym_POUND] = ACTIONS(2629), + [anon_sym_asm] = ACTIONS(2629), + [anon_sym_AT_LBRACK] = ACTIONS(2629), + }, + [479] = { + [sym_line_comment] = STATE(479), + [sym_block_comment] = STATE(479), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym__array_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(2991), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(1281), - }, - [479] = { - [sym_line_comment] = STATE(479), - [sym_block_comment] = STATE(479), - [sym__expression] = STATE(1370), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_string_interpolation_repeat1] = STATE(479), - [sym_identifier] = ACTIONS(2893), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2896), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_RBRACE] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym_fn] = ACTIONS(2907), - [anon_sym_PLUS] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2916), - [anon_sym_mut] = ACTIONS(2919), - [anon_sym_QMARK] = ACTIONS(2922), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2928), - [anon_sym_spawn] = ACTIONS(2931), - [anon_sym_json_DOTdecode] = ACTIONS(2934), - [anon_sym_LBRACK2] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2910), - [anon_sym_CARET] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2940), - [anon_sym_LT_DASH] = ACTIONS(2943), - [sym_none] = ACTIONS(2946), - [sym_true] = ACTIONS(2946), - [sym_false] = ACTIONS(2946), - [sym_nil] = ACTIONS(2946), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2952), - [anon_sym_match] = ACTIONS(2955), - [anon_sym_select] = ACTIONS(2958), - [anon_sym_lock] = ACTIONS(2961), - [anon_sym_rlock] = ACTIONS(2961), - [anon_sym_unsafe] = ACTIONS(2964), - [anon_sym_sql] = ACTIONS(2967), - [sym_int_literal] = ACTIONS(2946), - [sym_float_literal] = ACTIONS(2970), - [sym_rune_literal] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2976), - [anon_sym_c_SQUOTE] = ACTIONS(2979), - [anon_sym_c_DQUOTE] = ACTIONS(2982), - [anon_sym_r_SQUOTE] = ACTIONS(2985), - [anon_sym_r_DQUOTE] = ACTIONS(2988), - [sym_pseudo_compile_time_identifier] = ACTIONS(2991), - [anon_sym_shared] = ACTIONS(2994), - [anon_sym_map_LBRACK] = ACTIONS(2997), - [anon_sym_chan] = ACTIONS(3000), - [anon_sym_thread] = ACTIONS(3003), - [anon_sym_atomic] = ACTIONS(3006), }, [480] = { [sym_line_comment] = STATE(480), [sym_block_comment] = STATE(480), - [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), + [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_DOT] = ACTIONS(3011), - [anon_sym_as] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(3011), - [anon_sym_COMMA] = ACTIONS(3011), - [anon_sym_const] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3011), - [anon_sym_EQ] = ACTIONS(3011), - [anon_sym___global] = ACTIONS(3011), - [anon_sym_type] = ACTIONS(3011), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_fn] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3011), - [anon_sym_LT] = ACTIONS(3011), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_EQ] = ACTIONS(3011), - [anon_sym_LBRACK] = ACTIONS(3009), - [anon_sym_struct] = ACTIONS(3011), - [anon_sym_union] = ACTIONS(3011), - [anon_sym_pub] = ACTIONS(3011), - [anon_sym_mut] = ACTIONS(3011), - [anon_sym_enum] = ACTIONS(3011), - [anon_sym_interface] = ACTIONS(3011), - [anon_sym_PLUS_PLUS] = ACTIONS(3011), - [anon_sym_DASH_DASH] = ACTIONS(3011), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_go] = ACTIONS(3011), - [anon_sym_spawn] = ACTIONS(3011), - [anon_sym_json_DOTdecode] = ACTIONS(3011), - [anon_sym_LBRACK2] = ACTIONS(3011), - [anon_sym_TILDE] = ACTIONS(3011), - [anon_sym_CARET] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(3011), - [anon_sym_LT_DASH] = ACTIONS(3011), - [anon_sym_LT_LT] = ACTIONS(3011), - [anon_sym_GT_GT] = ACTIONS(3011), - [anon_sym_GT_GT_GT] = ACTIONS(3011), - [anon_sym_AMP_CARET] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3011), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_or] = ACTIONS(3011), - [sym_none] = ACTIONS(3011), - [sym_true] = ACTIONS(3011), - [sym_false] = ACTIONS(3011), - [sym_nil] = ACTIONS(3011), - [anon_sym_QMARK_DOT] = ACTIONS(3011), - [anon_sym_POUND_LBRACK] = ACTIONS(3011), - [anon_sym_if] = ACTIONS(3011), - [anon_sym_DOLLARif] = ACTIONS(3011), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3011), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_BANGin] = ACTIONS(3011), - [anon_sym_match] = ACTIONS(3011), - [anon_sym_select] = ACTIONS(3011), - [anon_sym_STAR_EQ] = ACTIONS(3011), - [anon_sym_SLASH_EQ] = ACTIONS(3011), - [anon_sym_PERCENT_EQ] = ACTIONS(3011), - [anon_sym_LT_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_GT_EQ] = ACTIONS(3011), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3011), - [anon_sym_AMP_EQ] = ACTIONS(3011), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3011), - [anon_sym_PLUS_EQ] = ACTIONS(3011), - [anon_sym_DASH_EQ] = ACTIONS(3011), - [anon_sym_PIPE_EQ] = ACTIONS(3011), - [anon_sym_CARET_EQ] = ACTIONS(3011), - [anon_sym_COLON_EQ] = ACTIONS(3011), - [anon_sym_lock] = ACTIONS(3011), - [anon_sym_rlock] = ACTIONS(3011), - [anon_sym_unsafe] = ACTIONS(3011), - [anon_sym_sql] = ACTIONS(3011), - [sym_int_literal] = ACTIONS(3011), - [sym_float_literal] = ACTIONS(3011), - [sym_rune_literal] = ACTIONS(3011), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_DQUOTE] = ACTIONS(3011), - [anon_sym_c_SQUOTE] = ACTIONS(3011), - [anon_sym_c_DQUOTE] = ACTIONS(3011), - [anon_sym_r_SQUOTE] = ACTIONS(3011), - [anon_sym_r_DQUOTE] = 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), + [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_fn] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_SLASH] = 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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2995), + [anon_sym_c_SQUOTE] = ACTIONS(2995), + [anon_sym_c_DQUOTE] = ACTIONS(2995), + [anon_sym_r_SQUOTE] = ACTIONS(2995), + [anon_sym_r_DQUOTE] = 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), }, [481] = { [sym_line_comment] = STATE(481), [sym_block_comment] = STATE(481), - [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), + [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_DOT] = ACTIONS(3015), - [anon_sym_as] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3015), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_const] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3015), - [anon_sym_EQ] = ACTIONS(3015), - [anon_sym___global] = ACTIONS(3015), - [anon_sym_type] = ACTIONS(3015), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_fn] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3015), - [anon_sym_DASH] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_SLASH] = ACTIONS(3015), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3015), - [anon_sym_EQ_EQ] = ACTIONS(3015), - [anon_sym_BANG_EQ] = ACTIONS(3015), - [anon_sym_LT_EQ] = ACTIONS(3015), - [anon_sym_GT_EQ] = ACTIONS(3015), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_struct] = ACTIONS(3015), - [anon_sym_union] = ACTIONS(3015), - [anon_sym_pub] = ACTIONS(3015), - [anon_sym_mut] = ACTIONS(3015), - [anon_sym_enum] = ACTIONS(3015), - [anon_sym_interface] = ACTIONS(3015), - [anon_sym_PLUS_PLUS] = ACTIONS(3015), - [anon_sym_DASH_DASH] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(3015), - [anon_sym_BANG] = ACTIONS(3015), - [anon_sym_go] = ACTIONS(3015), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3015), - [anon_sym_LBRACK2] = ACTIONS(3015), - [anon_sym_TILDE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3015), - [anon_sym_LT_DASH] = ACTIONS(3015), - [anon_sym_LT_LT] = ACTIONS(3015), - [anon_sym_GT_GT] = ACTIONS(3015), - [anon_sym_GT_GT_GT] = ACTIONS(3015), - [anon_sym_AMP_CARET] = ACTIONS(3015), - [anon_sym_AMP_AMP] = ACTIONS(3015), - [anon_sym_PIPE_PIPE] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3015), - [sym_none] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [sym_nil] = ACTIONS(3015), - [anon_sym_QMARK_DOT] = ACTIONS(3015), - [anon_sym_POUND_LBRACK] = ACTIONS(3015), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_DOLLARif] = ACTIONS(3015), - [anon_sym_is] = ACTIONS(3015), - [anon_sym_BANGis] = ACTIONS(3015), - [anon_sym_in] = ACTIONS(3015), - [anon_sym_BANGin] = ACTIONS(3015), - [anon_sym_match] = ACTIONS(3015), - [anon_sym_select] = ACTIONS(3015), - [anon_sym_STAR_EQ] = ACTIONS(3015), - [anon_sym_SLASH_EQ] = ACTIONS(3015), - [anon_sym_PERCENT_EQ] = ACTIONS(3015), - [anon_sym_LT_LT_EQ] = ACTIONS(3015), - [anon_sym_GT_GT_EQ] = ACTIONS(3015), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3015), - [anon_sym_AMP_EQ] = ACTIONS(3015), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3015), - [anon_sym_PLUS_EQ] = ACTIONS(3015), - [anon_sym_DASH_EQ] = ACTIONS(3015), - [anon_sym_PIPE_EQ] = ACTIONS(3015), - [anon_sym_CARET_EQ] = ACTIONS(3015), - [anon_sym_COLON_EQ] = ACTIONS(3015), - [anon_sym_lock] = ACTIONS(3015), - [anon_sym_rlock] = ACTIONS(3015), - [anon_sym_unsafe] = ACTIONS(3015), - [anon_sym_sql] = ACTIONS(3015), - [sym_int_literal] = ACTIONS(3015), - [sym_float_literal] = ACTIONS(3015), - [sym_rune_literal] = ACTIONS(3015), - [anon_sym_SQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE] = ACTIONS(3015), - [anon_sym_c_SQUOTE] = ACTIONS(3015), - [anon_sym_c_DQUOTE] = ACTIONS(3015), - [anon_sym_r_SQUOTE] = ACTIONS(3015), - [anon_sym_r_DQUOTE] = 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), + [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_fn] = ACTIONS(2999), + [anon_sym_PLUS] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_SLASH] = 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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_DQUOTE] = ACTIONS(2999), + [anon_sym_c_SQUOTE] = ACTIONS(2999), + [anon_sym_c_DQUOTE] = ACTIONS(2999), + [anon_sym_r_SQUOTE] = ACTIONS(2999), + [anon_sym_r_DQUOTE] = 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), }, [482] = { [sym_line_comment] = STATE(482), [sym_block_comment] = STATE(482), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4390), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3985), + [sym_expression_list] = STATE(4356), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -78825,1157 +79120,1157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [483] = { [sym_line_comment] = STATE(483), [sym_block_comment] = STATE(483), - [ts_builtin_sym_end] = ACTIONS(3019), - [sym_identifier] = ACTIONS(3021), - [anon_sym_LF] = ACTIONS(3021), - [anon_sym_CR] = ACTIONS(3021), - [anon_sym_CR_LF] = ACTIONS(3021), + [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_DOT] = ACTIONS(3021), - [anon_sym_as] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_COMMA] = ACTIONS(3021), - [anon_sym_const] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3021), - [anon_sym_EQ] = ACTIONS(3021), - [anon_sym___global] = ACTIONS(3021), - [anon_sym_type] = ACTIONS(3021), - [anon_sym_PIPE] = ACTIONS(3021), - [anon_sym_fn] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [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(3019), - [anon_sym_struct] = ACTIONS(3021), - [anon_sym_union] = ACTIONS(3021), - [anon_sym_pub] = ACTIONS(3021), - [anon_sym_mut] = ACTIONS(3021), - [anon_sym_enum] = ACTIONS(3021), - [anon_sym_interface] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(3021), - [anon_sym_DASH_DASH] = ACTIONS(3021), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_go] = ACTIONS(3021), - [anon_sym_spawn] = ACTIONS(3021), - [anon_sym_json_DOTdecode] = ACTIONS(3021), - [anon_sym_LBRACK2] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3021), - [anon_sym_LT_LT] = ACTIONS(3021), - [anon_sym_GT_GT] = ACTIONS(3021), - [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(3021), - [sym_none] = ACTIONS(3021), - [sym_true] = ACTIONS(3021), - [sym_false] = ACTIONS(3021), - [sym_nil] = ACTIONS(3021), - [anon_sym_QMARK_DOT] = ACTIONS(3021), - [anon_sym_POUND_LBRACK] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_DOLLARif] = ACTIONS(3021), - [anon_sym_is] = ACTIONS(3021), - [anon_sym_BANGis] = ACTIONS(3021), - [anon_sym_in] = ACTIONS(3021), - [anon_sym_BANGin] = ACTIONS(3021), - [anon_sym_match] = ACTIONS(3021), - [anon_sym_select] = ACTIONS(3021), - [anon_sym_STAR_EQ] = ACTIONS(3021), - [anon_sym_SLASH_EQ] = ACTIONS(3021), - [anon_sym_PERCENT_EQ] = ACTIONS(3021), - [anon_sym_LT_LT_EQ] = ACTIONS(3021), - [anon_sym_GT_GT_EQ] = ACTIONS(3021), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3021), - [anon_sym_AMP_EQ] = ACTIONS(3021), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3021), - [anon_sym_PLUS_EQ] = ACTIONS(3021), - [anon_sym_DASH_EQ] = ACTIONS(3021), - [anon_sym_PIPE_EQ] = ACTIONS(3021), - [anon_sym_CARET_EQ] = ACTIONS(3021), - [anon_sym_COLON_EQ] = ACTIONS(3021), - [anon_sym_lock] = ACTIONS(3021), - [anon_sym_rlock] = ACTIONS(3021), - [anon_sym_unsafe] = ACTIONS(3021), - [anon_sym_sql] = ACTIONS(3021), - [sym_int_literal] = ACTIONS(3021), - [sym_float_literal] = ACTIONS(3021), - [sym_rune_literal] = ACTIONS(3021), - [anon_sym_SQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [anon_sym_c_SQUOTE] = ACTIONS(3021), - [anon_sym_c_DQUOTE] = ACTIONS(3021), - [anon_sym_r_SQUOTE] = ACTIONS(3021), - [anon_sym_r_DQUOTE] = ACTIONS(3021), - [sym_pseudo_compile_time_identifier] = ACTIONS(3021), - [anon_sym_shared] = ACTIONS(3021), - [anon_sym_map_LBRACK] = ACTIONS(3021), - [anon_sym_chan] = ACTIONS(3021), - [anon_sym_thread] = ACTIONS(3021), - [anon_sym_atomic] = ACTIONS(3021), - [anon_sym_assert] = ACTIONS(3021), - [anon_sym_defer] = ACTIONS(3021), - [anon_sym_goto] = ACTIONS(3021), - [anon_sym_break] = ACTIONS(3021), - [anon_sym_continue] = ACTIONS(3021), - [anon_sym_return] = ACTIONS(3021), - [anon_sym_DOLLARfor] = ACTIONS(3021), - [anon_sym_for] = ACTIONS(3021), - [anon_sym_POUND] = ACTIONS(3021), - [anon_sym_asm] = ACTIONS(3021), - [anon_sym_AT_LBRACK] = ACTIONS(3021), + [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_fn] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3003), + [anon_sym_DASH] = ACTIONS(3003), + [anon_sym_STAR] = ACTIONS(3003), + [anon_sym_SLASH] = 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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(3003), + [anon_sym_DQUOTE] = ACTIONS(3003), + [anon_sym_c_SQUOTE] = ACTIONS(3003), + [anon_sym_c_DQUOTE] = ACTIONS(3003), + [anon_sym_r_SQUOTE] = ACTIONS(3003), + [anon_sym_r_DQUOTE] = 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), }, [484] = { [sym_line_comment] = STATE(484), [sym_block_comment] = STATE(484), - [ts_builtin_sym_end] = ACTIONS(3023), - [sym_identifier] = ACTIONS(3025), - [anon_sym_LF] = ACTIONS(3025), - [anon_sym_CR] = ACTIONS(3025), - [anon_sym_CR_LF] = ACTIONS(3025), + [ts_builtin_sym_end] = ACTIONS(2935), + [sym_identifier] = ACTIONS(2937), + [anon_sym_LF] = ACTIONS(2937), + [anon_sym_CR] = ACTIONS(2937), + [anon_sym_CR_LF] = ACTIONS(2937), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3025), - [anon_sym_as] = ACTIONS(3025), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_COMMA] = ACTIONS(3025), - [anon_sym_const] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(3025), - [anon_sym_EQ] = ACTIONS(3025), - [anon_sym___global] = ACTIONS(3025), - [anon_sym_type] = ACTIONS(3025), - [anon_sym_PIPE] = ACTIONS(3025), - [anon_sym_fn] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_SLASH] = ACTIONS(3025), - [anon_sym_PERCENT] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(3025), - [anon_sym_GT] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_union] = ACTIONS(3025), - [anon_sym_pub] = ACTIONS(3025), - [anon_sym_mut] = ACTIONS(3025), - [anon_sym_enum] = ACTIONS(3025), - [anon_sym_interface] = ACTIONS(3025), - [anon_sym_PLUS_PLUS] = ACTIONS(3025), - [anon_sym_DASH_DASH] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3025), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_go] = ACTIONS(3025), - [anon_sym_spawn] = ACTIONS(3025), - [anon_sym_json_DOTdecode] = ACTIONS(3025), - [anon_sym_LBRACK2] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3025), - [anon_sym_CARET] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3025), - [anon_sym_LT_DASH] = ACTIONS(3025), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_GT_GT_GT] = ACTIONS(3025), - [anon_sym_AMP_CARET] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_or] = ACTIONS(3025), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_QMARK_DOT] = ACTIONS(3025), - [anon_sym_POUND_LBRACK] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3025), - [anon_sym_DOLLARif] = ACTIONS(3025), - [anon_sym_is] = ACTIONS(3025), - [anon_sym_BANGis] = ACTIONS(3025), - [anon_sym_in] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(3025), - [anon_sym_match] = ACTIONS(3025), - [anon_sym_select] = ACTIONS(3025), - [anon_sym_STAR_EQ] = ACTIONS(3025), - [anon_sym_SLASH_EQ] = ACTIONS(3025), - [anon_sym_PERCENT_EQ] = ACTIONS(3025), - [anon_sym_LT_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_GT_EQ] = ACTIONS(3025), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3025), - [anon_sym_AMP_EQ] = ACTIONS(3025), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3025), - [anon_sym_PLUS_EQ] = ACTIONS(3025), - [anon_sym_DASH_EQ] = ACTIONS(3025), - [anon_sym_PIPE_EQ] = ACTIONS(3025), - [anon_sym_CARET_EQ] = ACTIONS(3025), - [anon_sym_COLON_EQ] = ACTIONS(3025), - [anon_sym_lock] = ACTIONS(3025), - [anon_sym_rlock] = ACTIONS(3025), - [anon_sym_unsafe] = ACTIONS(3025), - [anon_sym_sql] = ACTIONS(3025), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3025), - [sym_rune_literal] = ACTIONS(3025), - [anon_sym_SQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_c_SQUOTE] = ACTIONS(3025), - [anon_sym_c_DQUOTE] = ACTIONS(3025), - [anon_sym_r_SQUOTE] = ACTIONS(3025), - [anon_sym_r_DQUOTE] = ACTIONS(3025), - [sym_pseudo_compile_time_identifier] = ACTIONS(3025), - [anon_sym_shared] = ACTIONS(3025), - [anon_sym_map_LBRACK] = ACTIONS(3025), - [anon_sym_chan] = ACTIONS(3025), - [anon_sym_thread] = ACTIONS(3025), - [anon_sym_atomic] = ACTIONS(3025), - [anon_sym_assert] = ACTIONS(3025), - [anon_sym_defer] = ACTIONS(3025), - [anon_sym_goto] = ACTIONS(3025), - [anon_sym_break] = ACTIONS(3025), - [anon_sym_continue] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(3025), - [anon_sym_DOLLARfor] = ACTIONS(3025), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_POUND] = ACTIONS(3025), - [anon_sym_asm] = ACTIONS(3025), - [anon_sym_AT_LBRACK] = ACTIONS(3025), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_as] = ACTIONS(2937), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(2937), + [anon_sym_const] = ACTIONS(2937), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_EQ] = ACTIONS(2937), + [anon_sym___global] = ACTIONS(2937), + [anon_sym_type] = ACTIONS(2937), + [anon_sym_fn] = ACTIONS(2937), + [anon_sym_PLUS] = ACTIONS(2937), + [anon_sym_DASH] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2937), + [anon_sym_SLASH] = ACTIONS(2937), + [anon_sym_PERCENT] = ACTIONS(2937), + [anon_sym_LT] = ACTIONS(2937), + [anon_sym_GT] = ACTIONS(2937), + [anon_sym_EQ_EQ] = ACTIONS(2937), + [anon_sym_BANG_EQ] = ACTIONS(2937), + [anon_sym_LT_EQ] = ACTIONS(2937), + [anon_sym_GT_EQ] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2935), + [anon_sym_struct] = ACTIONS(2937), + [anon_sym_union] = ACTIONS(2937), + [anon_sym_pub] = ACTIONS(2937), + [anon_sym_mut] = ACTIONS(2937), + [anon_sym_enum] = ACTIONS(2937), + [anon_sym_interface] = ACTIONS(2937), + [anon_sym_PLUS_PLUS] = ACTIONS(2937), + [anon_sym_DASH_DASH] = ACTIONS(2937), + [anon_sym_QMARK] = ACTIONS(2937), + [anon_sym_BANG] = ACTIONS(2937), + [anon_sym_go] = ACTIONS(2937), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2937), + [anon_sym_PIPE] = ACTIONS(2937), + [anon_sym_LBRACK2] = ACTIONS(2937), + [anon_sym_TILDE] = ACTIONS(2937), + [anon_sym_CARET] = ACTIONS(2937), + [anon_sym_AMP] = ACTIONS(2937), + [anon_sym_LT_DASH] = ACTIONS(2937), + [anon_sym_LT_LT] = ACTIONS(2937), + [anon_sym_GT_GT] = ACTIONS(2937), + [anon_sym_GT_GT_GT] = ACTIONS(2937), + [anon_sym_AMP_CARET] = ACTIONS(2937), + [anon_sym_AMP_AMP] = ACTIONS(2937), + [anon_sym_PIPE_PIPE] = ACTIONS(2937), + [anon_sym_or] = ACTIONS(2937), + [sym_none] = ACTIONS(2937), + [sym_true] = ACTIONS(2937), + [sym_false] = ACTIONS(2937), + [sym_nil] = ACTIONS(2937), + [anon_sym_QMARK_DOT] = ACTIONS(2937), + [anon_sym_POUND_LBRACK] = ACTIONS(2937), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_DOLLARif] = ACTIONS(2937), + [anon_sym_is] = ACTIONS(2937), + [anon_sym_BANGis] = ACTIONS(2937), + [anon_sym_in] = ACTIONS(2937), + [anon_sym_BANGin] = ACTIONS(2937), + [anon_sym_match] = ACTIONS(2937), + [anon_sym_select] = ACTIONS(2937), + [anon_sym_STAR_EQ] = ACTIONS(2937), + [anon_sym_SLASH_EQ] = ACTIONS(2937), + [anon_sym_PERCENT_EQ] = ACTIONS(2937), + [anon_sym_LT_LT_EQ] = ACTIONS(2937), + [anon_sym_GT_GT_EQ] = ACTIONS(2937), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2937), + [anon_sym_AMP_EQ] = ACTIONS(2937), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2937), + [anon_sym_PLUS_EQ] = ACTIONS(2937), + [anon_sym_DASH_EQ] = ACTIONS(2937), + [anon_sym_PIPE_EQ] = ACTIONS(2937), + [anon_sym_CARET_EQ] = ACTIONS(2937), + [anon_sym_COLON_EQ] = ACTIONS(2937), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(2937), + [anon_sym_sql] = ACTIONS(2937), + [sym_int_literal] = ACTIONS(2937), + [sym_float_literal] = ACTIONS(2937), + [sym_rune_literal] = ACTIONS(2937), + [anon_sym_SQUOTE] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2937), + [anon_sym_c_SQUOTE] = ACTIONS(2937), + [anon_sym_c_DQUOTE] = ACTIONS(2937), + [anon_sym_r_SQUOTE] = ACTIONS(2937), + [anon_sym_r_DQUOTE] = ACTIONS(2937), + [sym_pseudo_compile_time_identifier] = ACTIONS(2937), + [anon_sym_shared] = ACTIONS(2937), + [anon_sym_map_LBRACK] = ACTIONS(2937), + [anon_sym_chan] = ACTIONS(2937), + [anon_sym_thread] = ACTIONS(2937), + [anon_sym_atomic] = ACTIONS(2937), + [anon_sym_assert] = ACTIONS(2937), + [anon_sym_defer] = ACTIONS(2937), + [anon_sym_goto] = ACTIONS(2937), + [anon_sym_break] = ACTIONS(2937), + [anon_sym_continue] = ACTIONS(2937), + [anon_sym_return] = ACTIONS(2937), + [anon_sym_DOLLARfor] = ACTIONS(2937), + [anon_sym_for] = ACTIONS(2937), + [anon_sym_POUND] = ACTIONS(2937), + [anon_sym_asm] = ACTIONS(2937), + [anon_sym_AT_LBRACK] = ACTIONS(2937), }, [485] = { [sym_line_comment] = STATE(485), [sym_block_comment] = STATE(485), - [ts_builtin_sym_end] = ACTIONS(3027), - [sym_identifier] = ACTIONS(3029), - [anon_sym_LF] = ACTIONS(3029), - [anon_sym_CR] = ACTIONS(3029), - [anon_sym_CR_LF] = ACTIONS(3029), + [ts_builtin_sym_end] = ACTIONS(3008), + [sym_identifier] = ACTIONS(3010), + [anon_sym_LF] = ACTIONS(3010), + [anon_sym_CR] = ACTIONS(3010), + [anon_sym_CR_LF] = ACTIONS(3010), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_as] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(3029), - [anon_sym_const] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_EQ] = ACTIONS(3029), - [anon_sym___global] = ACTIONS(3029), - [anon_sym_type] = ACTIONS(3029), - [anon_sym_PIPE] = ACTIONS(3029), - [anon_sym_fn] = ACTIONS(3029), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_SLASH] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(3029), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_LT_EQ] = ACTIONS(3029), - [anon_sym_GT_EQ] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3027), - [anon_sym_struct] = ACTIONS(3029), - [anon_sym_union] = ACTIONS(3029), - [anon_sym_pub] = ACTIONS(3029), - [anon_sym_mut] = ACTIONS(3029), - [anon_sym_enum] = ACTIONS(3029), - [anon_sym_interface] = ACTIONS(3029), - [anon_sym_PLUS_PLUS] = ACTIONS(3029), - [anon_sym_DASH_DASH] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3029), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_go] = ACTIONS(3029), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(3029), - [anon_sym_LBRACK2] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LT_DASH] = ACTIONS(3029), - [anon_sym_LT_LT] = ACTIONS(3029), - [anon_sym_GT_GT] = ACTIONS(3029), - [anon_sym_GT_GT_GT] = ACTIONS(3029), - [anon_sym_AMP_CARET] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_PIPE_PIPE] = ACTIONS(3029), - [anon_sym_or] = ACTIONS(3029), - [sym_none] = ACTIONS(3029), - [sym_true] = ACTIONS(3029), - [sym_false] = ACTIONS(3029), - [sym_nil] = ACTIONS(3029), - [anon_sym_QMARK_DOT] = ACTIONS(3029), - [anon_sym_POUND_LBRACK] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3029), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_BANGin] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_select] = ACTIONS(3029), - [anon_sym_STAR_EQ] = ACTIONS(3029), - [anon_sym_SLASH_EQ] = ACTIONS(3029), - [anon_sym_PERCENT_EQ] = ACTIONS(3029), - [anon_sym_LT_LT_EQ] = ACTIONS(3029), - [anon_sym_GT_GT_EQ] = ACTIONS(3029), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3029), - [anon_sym_AMP_EQ] = ACTIONS(3029), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3029), - [anon_sym_PLUS_EQ] = ACTIONS(3029), - [anon_sym_DASH_EQ] = ACTIONS(3029), - [anon_sym_PIPE_EQ] = ACTIONS(3029), - [anon_sym_CARET_EQ] = ACTIONS(3029), - [anon_sym_COLON_EQ] = ACTIONS(3029), - [anon_sym_lock] = ACTIONS(3029), - [anon_sym_rlock] = ACTIONS(3029), - [anon_sym_unsafe] = ACTIONS(3029), - [anon_sym_sql] = ACTIONS(3029), - [sym_int_literal] = ACTIONS(3029), - [sym_float_literal] = ACTIONS(3029), - [sym_rune_literal] = ACTIONS(3029), - [anon_sym_SQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [anon_sym_c_SQUOTE] = ACTIONS(3029), - [anon_sym_c_DQUOTE] = ACTIONS(3029), - [anon_sym_r_SQUOTE] = ACTIONS(3029), - [anon_sym_r_DQUOTE] = ACTIONS(3029), - [sym_pseudo_compile_time_identifier] = ACTIONS(3029), - [anon_sym_shared] = ACTIONS(3029), - [anon_sym_map_LBRACK] = ACTIONS(3029), - [anon_sym_chan] = ACTIONS(3029), - [anon_sym_thread] = ACTIONS(3029), - [anon_sym_atomic] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_defer] = ACTIONS(3029), - [anon_sym_goto] = ACTIONS(3029), - [anon_sym_break] = ACTIONS(3029), - [anon_sym_continue] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_DOLLARfor] = ACTIONS(3029), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_POUND] = ACTIONS(3029), - [anon_sym_asm] = ACTIONS(3029), - [anon_sym_AT_LBRACK] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3010), + [anon_sym_as] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3010), + [anon_sym_COMMA] = ACTIONS(3010), + [anon_sym_const] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3010), + [anon_sym_EQ] = ACTIONS(3010), + [anon_sym___global] = ACTIONS(3010), + [anon_sym_type] = ACTIONS(3010), + [anon_sym_fn] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_SLASH] = ACTIONS(3010), + [anon_sym_PERCENT] = ACTIONS(3010), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3010), + [anon_sym_EQ_EQ] = ACTIONS(3010), + [anon_sym_BANG_EQ] = ACTIONS(3010), + [anon_sym_LT_EQ] = ACTIONS(3010), + [anon_sym_GT_EQ] = ACTIONS(3010), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_struct] = ACTIONS(3010), + [anon_sym_union] = ACTIONS(3010), + [anon_sym_pub] = ACTIONS(3010), + [anon_sym_mut] = ACTIONS(3010), + [anon_sym_enum] = ACTIONS(3010), + [anon_sym_interface] = ACTIONS(3010), + [anon_sym_PLUS_PLUS] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(3010), + [anon_sym_QMARK] = ACTIONS(3010), + [anon_sym_BANG] = ACTIONS(3010), + [anon_sym_go] = ACTIONS(3010), + [anon_sym_spawn] = ACTIONS(3010), + [anon_sym_json_DOTdecode] = ACTIONS(3010), + [anon_sym_PIPE] = ACTIONS(3010), + [anon_sym_LBRACK2] = ACTIONS(3010), + [anon_sym_TILDE] = ACTIONS(3010), + [anon_sym_CARET] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3010), + [anon_sym_LT_DASH] = ACTIONS(3010), + [anon_sym_LT_LT] = ACTIONS(3010), + [anon_sym_GT_GT] = ACTIONS(3010), + [anon_sym_GT_GT_GT] = ACTIONS(3010), + [anon_sym_AMP_CARET] = ACTIONS(3010), + [anon_sym_AMP_AMP] = ACTIONS(3010), + [anon_sym_PIPE_PIPE] = ACTIONS(3010), + [anon_sym_or] = ACTIONS(3010), + [sym_none] = ACTIONS(3010), + [sym_true] = ACTIONS(3010), + [sym_false] = ACTIONS(3010), + [sym_nil] = ACTIONS(3010), + [anon_sym_QMARK_DOT] = ACTIONS(3010), + [anon_sym_POUND_LBRACK] = ACTIONS(3010), + [anon_sym_if] = ACTIONS(3010), + [anon_sym_DOLLARif] = ACTIONS(3010), + [anon_sym_is] = ACTIONS(3010), + [anon_sym_BANGis] = ACTIONS(3010), + [anon_sym_in] = ACTIONS(3010), + [anon_sym_BANGin] = ACTIONS(3010), + [anon_sym_match] = ACTIONS(3010), + [anon_sym_select] = ACTIONS(3010), + [anon_sym_STAR_EQ] = ACTIONS(3010), + [anon_sym_SLASH_EQ] = ACTIONS(3010), + [anon_sym_PERCENT_EQ] = ACTIONS(3010), + [anon_sym_LT_LT_EQ] = ACTIONS(3010), + [anon_sym_GT_GT_EQ] = ACTIONS(3010), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3010), + [anon_sym_AMP_EQ] = ACTIONS(3010), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3010), + [anon_sym_PLUS_EQ] = ACTIONS(3010), + [anon_sym_DASH_EQ] = ACTIONS(3010), + [anon_sym_PIPE_EQ] = ACTIONS(3010), + [anon_sym_CARET_EQ] = ACTIONS(3010), + [anon_sym_COLON_EQ] = ACTIONS(3010), + [anon_sym_lock] = ACTIONS(3010), + [anon_sym_rlock] = ACTIONS(3010), + [anon_sym_unsafe] = ACTIONS(3010), + [anon_sym_sql] = ACTIONS(3010), + [sym_int_literal] = ACTIONS(3010), + [sym_float_literal] = ACTIONS(3010), + [sym_rune_literal] = ACTIONS(3010), + [anon_sym_SQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE] = ACTIONS(3010), + [anon_sym_c_SQUOTE] = ACTIONS(3010), + [anon_sym_c_DQUOTE] = ACTIONS(3010), + [anon_sym_r_SQUOTE] = ACTIONS(3010), + [anon_sym_r_DQUOTE] = ACTIONS(3010), + [sym_pseudo_compile_time_identifier] = ACTIONS(3010), + [anon_sym_shared] = ACTIONS(3010), + [anon_sym_map_LBRACK] = ACTIONS(3010), + [anon_sym_chan] = ACTIONS(3010), + [anon_sym_thread] = ACTIONS(3010), + [anon_sym_atomic] = ACTIONS(3010), + [anon_sym_assert] = ACTIONS(3010), + [anon_sym_defer] = ACTIONS(3010), + [anon_sym_goto] = ACTIONS(3010), + [anon_sym_break] = ACTIONS(3010), + [anon_sym_continue] = ACTIONS(3010), + [anon_sym_return] = ACTIONS(3010), + [anon_sym_DOLLARfor] = ACTIONS(3010), + [anon_sym_for] = ACTIONS(3010), + [anon_sym_POUND] = ACTIONS(3010), + [anon_sym_asm] = ACTIONS(3010), + [anon_sym_AT_LBRACK] = ACTIONS(3010), }, [486] = { [sym_line_comment] = STATE(486), [sym_block_comment] = STATE(486), - [ts_builtin_sym_end] = ACTIONS(2135), - [sym_identifier] = ACTIONS(2137), - [anon_sym_LF] = ACTIONS(2137), - [anon_sym_CR] = ACTIONS(2137), - [anon_sym_CR_LF] = ACTIONS(2137), + [ts_builtin_sym_end] = ACTIONS(3012), + [sym_identifier] = ACTIONS(3014), + [anon_sym_LF] = ACTIONS(3014), + [anon_sym_CR] = ACTIONS(3014), + [anon_sym_CR_LF] = ACTIONS(3014), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_as] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_COMMA] = ACTIONS(2139), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_EQ] = ACTIONS(2139), - [anon_sym___global] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_PIPE] = ACTIONS(2139), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_SLASH] = ACTIONS(2139), - [anon_sym_PERCENT] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_GT] = ACTIONS(2139), - [anon_sym_EQ_EQ] = ACTIONS(2139), - [anon_sym_BANG_EQ] = ACTIONS(2139), - [anon_sym_LT_EQ] = ACTIONS(2139), - [anon_sym_GT_EQ] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_union] = ACTIONS(2137), - [anon_sym_pub] = ACTIONS(2137), - [anon_sym_mut] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_interface] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_QMARK] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(2137), - [anon_sym_spawn] = ACTIONS(2137), - [anon_sym_json_DOTdecode] = ACTIONS(2137), - [anon_sym_LBRACK2] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_LT_DASH] = ACTIONS(2137), - [anon_sym_LT_LT] = ACTIONS(2139), - [anon_sym_GT_GT] = ACTIONS(2139), - [anon_sym_GT_GT_GT] = ACTIONS(2139), - [anon_sym_AMP_CARET] = ACTIONS(2139), - [anon_sym_AMP_AMP] = ACTIONS(2139), - [anon_sym_PIPE_PIPE] = ACTIONS(2139), - [anon_sym_or] = ACTIONS(2139), - [sym_none] = ACTIONS(2137), - [sym_true] = ACTIONS(2137), - [sym_false] = ACTIONS(2137), - [sym_nil] = ACTIONS(2137), - [anon_sym_QMARK_DOT] = ACTIONS(2139), - [anon_sym_POUND_LBRACK] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_DOLLARif] = ACTIONS(2137), - [anon_sym_is] = ACTIONS(2139), - [anon_sym_BANGis] = ACTIONS(2139), - [anon_sym_in] = ACTIONS(2139), - [anon_sym_BANGin] = ACTIONS(2139), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_select] = ACTIONS(2137), - [anon_sym_STAR_EQ] = ACTIONS(2139), - [anon_sym_SLASH_EQ] = ACTIONS(2139), - [anon_sym_PERCENT_EQ] = ACTIONS(2139), - [anon_sym_LT_LT_EQ] = ACTIONS(2139), - [anon_sym_GT_GT_EQ] = ACTIONS(2139), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2139), - [anon_sym_AMP_EQ] = ACTIONS(2139), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2139), - [anon_sym_PLUS_EQ] = ACTIONS(2139), - [anon_sym_DASH_EQ] = ACTIONS(2139), - [anon_sym_PIPE_EQ] = ACTIONS(2139), - [anon_sym_CARET_EQ] = ACTIONS(2139), - [anon_sym_COLON_EQ] = ACTIONS(2139), - [anon_sym_lock] = ACTIONS(2137), - [anon_sym_rlock] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_sql] = ACTIONS(2137), - [sym_int_literal] = ACTIONS(2137), - [sym_float_literal] = ACTIONS(2137), - [sym_rune_literal] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_DQUOTE] = ACTIONS(2137), - [anon_sym_c_SQUOTE] = ACTIONS(2137), - [anon_sym_c_DQUOTE] = ACTIONS(2137), - [anon_sym_r_SQUOTE] = ACTIONS(2137), - [anon_sym_r_DQUOTE] = ACTIONS(2137), - [sym_pseudo_compile_time_identifier] = ACTIONS(2137), - [anon_sym_shared] = ACTIONS(2137), - [anon_sym_map_LBRACK] = ACTIONS(2137), - [anon_sym_chan] = ACTIONS(2137), - [anon_sym_thread] = ACTIONS(2137), - [anon_sym_atomic] = ACTIONS(2137), - [anon_sym_assert] = ACTIONS(2137), - [anon_sym_defer] = ACTIONS(2137), - [anon_sym_goto] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_DOLLARfor] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_POUND] = ACTIONS(2137), - [anon_sym_asm] = ACTIONS(2137), - [anon_sym_AT_LBRACK] = ACTIONS(2137), + [anon_sym_DOT] = ACTIONS(3014), + [anon_sym_as] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3014), + [anon_sym_COMMA] = ACTIONS(3014), + [anon_sym_const] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(3014), + [anon_sym_EQ] = ACTIONS(3014), + [anon_sym___global] = ACTIONS(3014), + [anon_sym_type] = ACTIONS(3014), + [anon_sym_fn] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_SLASH] = ACTIONS(3014), + [anon_sym_PERCENT] = ACTIONS(3014), + [anon_sym_LT] = ACTIONS(3014), + [anon_sym_GT] = ACTIONS(3014), + [anon_sym_EQ_EQ] = ACTIONS(3014), + [anon_sym_BANG_EQ] = ACTIONS(3014), + [anon_sym_LT_EQ] = ACTIONS(3014), + [anon_sym_GT_EQ] = ACTIONS(3014), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_struct] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3014), + [anon_sym_pub] = ACTIONS(3014), + [anon_sym_mut] = ACTIONS(3014), + [anon_sym_enum] = ACTIONS(3014), + [anon_sym_interface] = ACTIONS(3014), + [anon_sym_PLUS_PLUS] = ACTIONS(3014), + [anon_sym_DASH_DASH] = ACTIONS(3014), + [anon_sym_QMARK] = ACTIONS(3014), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_go] = ACTIONS(3014), + [anon_sym_spawn] = ACTIONS(3014), + [anon_sym_json_DOTdecode] = ACTIONS(3014), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_LBRACK2] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_CARET] = ACTIONS(3014), + [anon_sym_AMP] = ACTIONS(3014), + [anon_sym_LT_DASH] = ACTIONS(3014), + [anon_sym_LT_LT] = ACTIONS(3014), + [anon_sym_GT_GT] = ACTIONS(3014), + [anon_sym_GT_GT_GT] = ACTIONS(3014), + [anon_sym_AMP_CARET] = ACTIONS(3014), + [anon_sym_AMP_AMP] = ACTIONS(3014), + [anon_sym_PIPE_PIPE] = ACTIONS(3014), + [anon_sym_or] = ACTIONS(3014), + [sym_none] = ACTIONS(3014), + [sym_true] = ACTIONS(3014), + [sym_false] = ACTIONS(3014), + [sym_nil] = ACTIONS(3014), + [anon_sym_QMARK_DOT] = ACTIONS(3014), + [anon_sym_POUND_LBRACK] = ACTIONS(3014), + [anon_sym_if] = ACTIONS(3014), + [anon_sym_DOLLARif] = ACTIONS(3014), + [anon_sym_is] = ACTIONS(3014), + [anon_sym_BANGis] = ACTIONS(3014), + [anon_sym_in] = ACTIONS(3014), + [anon_sym_BANGin] = ACTIONS(3014), + [anon_sym_match] = ACTIONS(3014), + [anon_sym_select] = ACTIONS(3014), + [anon_sym_STAR_EQ] = ACTIONS(3014), + [anon_sym_SLASH_EQ] = ACTIONS(3014), + [anon_sym_PERCENT_EQ] = ACTIONS(3014), + [anon_sym_LT_LT_EQ] = ACTIONS(3014), + [anon_sym_GT_GT_EQ] = ACTIONS(3014), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3014), + [anon_sym_AMP_EQ] = ACTIONS(3014), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3014), + [anon_sym_PLUS_EQ] = ACTIONS(3014), + [anon_sym_DASH_EQ] = ACTIONS(3014), + [anon_sym_PIPE_EQ] = ACTIONS(3014), + [anon_sym_CARET_EQ] = ACTIONS(3014), + [anon_sym_COLON_EQ] = ACTIONS(3014), + [anon_sym_lock] = ACTIONS(3014), + [anon_sym_rlock] = ACTIONS(3014), + [anon_sym_unsafe] = ACTIONS(3014), + [anon_sym_sql] = ACTIONS(3014), + [sym_int_literal] = ACTIONS(3014), + [sym_float_literal] = ACTIONS(3014), + [sym_rune_literal] = ACTIONS(3014), + [anon_sym_SQUOTE] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(3014), + [anon_sym_c_SQUOTE] = ACTIONS(3014), + [anon_sym_c_DQUOTE] = ACTIONS(3014), + [anon_sym_r_SQUOTE] = ACTIONS(3014), + [anon_sym_r_DQUOTE] = ACTIONS(3014), + [sym_pseudo_compile_time_identifier] = ACTIONS(3014), + [anon_sym_shared] = ACTIONS(3014), + [anon_sym_map_LBRACK] = ACTIONS(3014), + [anon_sym_chan] = ACTIONS(3014), + [anon_sym_thread] = ACTIONS(3014), + [anon_sym_atomic] = ACTIONS(3014), + [anon_sym_assert] = ACTIONS(3014), + [anon_sym_defer] = ACTIONS(3014), + [anon_sym_goto] = ACTIONS(3014), + [anon_sym_break] = ACTIONS(3014), + [anon_sym_continue] = ACTIONS(3014), + [anon_sym_return] = ACTIONS(3014), + [anon_sym_DOLLARfor] = ACTIONS(3014), + [anon_sym_for] = ACTIONS(3014), + [anon_sym_POUND] = ACTIONS(3014), + [anon_sym_asm] = ACTIONS(3014), + [anon_sym_AT_LBRACK] = ACTIONS(3014), }, [487] = { [sym_line_comment] = STATE(487), [sym_block_comment] = STATE(487), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4372), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(3016), + [sym_identifier] = ACTIONS(3018), + [anon_sym_LF] = ACTIONS(3018), + [anon_sym_CR] = ACTIONS(3018), + [anon_sym_CR_LF] = ACTIONS(3018), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3018), + [anon_sym_as] = ACTIONS(3018), + [anon_sym_LBRACE] = ACTIONS(3018), + [anon_sym_COMMA] = ACTIONS(3018), + [anon_sym_const] = ACTIONS(3018), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_EQ] = ACTIONS(3018), + [anon_sym___global] = ACTIONS(3018), + [anon_sym_type] = ACTIONS(3018), + [anon_sym_fn] = ACTIONS(3018), + [anon_sym_PLUS] = ACTIONS(3018), + [anon_sym_DASH] = ACTIONS(3018), + [anon_sym_STAR] = ACTIONS(3018), + [anon_sym_SLASH] = ACTIONS(3018), + [anon_sym_PERCENT] = ACTIONS(3018), + [anon_sym_LT] = ACTIONS(3018), + [anon_sym_GT] = ACTIONS(3018), + [anon_sym_EQ_EQ] = ACTIONS(3018), + [anon_sym_BANG_EQ] = ACTIONS(3018), + [anon_sym_LT_EQ] = ACTIONS(3018), + [anon_sym_GT_EQ] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3016), + [anon_sym_struct] = ACTIONS(3018), + [anon_sym_union] = ACTIONS(3018), + [anon_sym_pub] = ACTIONS(3018), + [anon_sym_mut] = ACTIONS(3018), + [anon_sym_enum] = ACTIONS(3018), + [anon_sym_interface] = ACTIONS(3018), + [anon_sym_PLUS_PLUS] = ACTIONS(3018), + [anon_sym_DASH_DASH] = ACTIONS(3018), + [anon_sym_QMARK] = ACTIONS(3018), + [anon_sym_BANG] = ACTIONS(3018), + [anon_sym_go] = ACTIONS(3018), + [anon_sym_spawn] = ACTIONS(3018), + [anon_sym_json_DOTdecode] = ACTIONS(3018), + [anon_sym_PIPE] = ACTIONS(3018), + [anon_sym_LBRACK2] = ACTIONS(3018), + [anon_sym_TILDE] = ACTIONS(3018), + [anon_sym_CARET] = ACTIONS(3018), + [anon_sym_AMP] = ACTIONS(3018), + [anon_sym_LT_DASH] = ACTIONS(3018), + [anon_sym_LT_LT] = ACTIONS(3018), + [anon_sym_GT_GT] = ACTIONS(3018), + [anon_sym_GT_GT_GT] = ACTIONS(3018), + [anon_sym_AMP_CARET] = ACTIONS(3018), + [anon_sym_AMP_AMP] = ACTIONS(3018), + [anon_sym_PIPE_PIPE] = ACTIONS(3018), + [anon_sym_or] = ACTIONS(3018), + [sym_none] = ACTIONS(3018), + [sym_true] = ACTIONS(3018), + [sym_false] = ACTIONS(3018), + [sym_nil] = ACTIONS(3018), + [anon_sym_QMARK_DOT] = ACTIONS(3018), + [anon_sym_POUND_LBRACK] = ACTIONS(3018), + [anon_sym_if] = ACTIONS(3018), + [anon_sym_DOLLARif] = ACTIONS(3018), + [anon_sym_is] = ACTIONS(3018), + [anon_sym_BANGis] = ACTIONS(3018), + [anon_sym_in] = ACTIONS(3018), + [anon_sym_BANGin] = ACTIONS(3018), + [anon_sym_match] = ACTIONS(3018), + [anon_sym_select] = ACTIONS(3018), + [anon_sym_STAR_EQ] = ACTIONS(3018), + [anon_sym_SLASH_EQ] = ACTIONS(3018), + [anon_sym_PERCENT_EQ] = ACTIONS(3018), + [anon_sym_LT_LT_EQ] = ACTIONS(3018), + [anon_sym_GT_GT_EQ] = ACTIONS(3018), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3018), + [anon_sym_AMP_EQ] = ACTIONS(3018), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3018), + [anon_sym_PLUS_EQ] = ACTIONS(3018), + [anon_sym_DASH_EQ] = ACTIONS(3018), + [anon_sym_PIPE_EQ] = ACTIONS(3018), + [anon_sym_CARET_EQ] = ACTIONS(3018), + [anon_sym_COLON_EQ] = ACTIONS(3018), + [anon_sym_lock] = ACTIONS(3018), + [anon_sym_rlock] = ACTIONS(3018), + [anon_sym_unsafe] = ACTIONS(3018), + [anon_sym_sql] = ACTIONS(3018), + [sym_int_literal] = ACTIONS(3018), + [sym_float_literal] = ACTIONS(3018), + [sym_rune_literal] = ACTIONS(3018), + [anon_sym_SQUOTE] = ACTIONS(3018), + [anon_sym_DQUOTE] = ACTIONS(3018), + [anon_sym_c_SQUOTE] = ACTIONS(3018), + [anon_sym_c_DQUOTE] = ACTIONS(3018), + [anon_sym_r_SQUOTE] = ACTIONS(3018), + [anon_sym_r_DQUOTE] = ACTIONS(3018), + [sym_pseudo_compile_time_identifier] = ACTIONS(3018), + [anon_sym_shared] = ACTIONS(3018), + [anon_sym_map_LBRACK] = ACTIONS(3018), + [anon_sym_chan] = ACTIONS(3018), + [anon_sym_thread] = ACTIONS(3018), + [anon_sym_atomic] = ACTIONS(3018), + [anon_sym_assert] = ACTIONS(3018), + [anon_sym_defer] = ACTIONS(3018), + [anon_sym_goto] = ACTIONS(3018), + [anon_sym_break] = ACTIONS(3018), + [anon_sym_continue] = ACTIONS(3018), + [anon_sym_return] = ACTIONS(3018), + [anon_sym_DOLLARfor] = ACTIONS(3018), + [anon_sym_for] = ACTIONS(3018), + [anon_sym_POUND] = ACTIONS(3018), + [anon_sym_asm] = ACTIONS(3018), + [anon_sym_AT_LBRACK] = ACTIONS(3018), }, [488] = { [sym_line_comment] = STATE(488), [sym_block_comment] = STATE(488), - [sym__expression] = STATE(1262), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym_string_interpolation_repeat1] = STATE(431), - [sym_identifier] = ACTIONS(1299), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_struct] = ACTIONS(1315), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2491), - [anon_sym_go] = ACTIONS(2493), - [anon_sym_spawn] = ACTIONS(2495), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_AMP] = ACTIONS(2497), - [anon_sym_LT_DASH] = ACTIONS(2499), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(2501), - [anon_sym_lock] = ACTIONS(2503), - [anon_sym_rlock] = ACTIONS(2503), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(2625), + [sym_identifier] = ACTIONS(2627), + [anon_sym_LF] = ACTIONS(2627), + [anon_sym_CR] = ACTIONS(2627), + [anon_sym_CR_LF] = ACTIONS(2627), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2629), + [anon_sym_as] = ACTIONS(2629), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_COMMA] = ACTIONS(2629), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_EQ] = ACTIONS(2629), + [anon_sym___global] = ACTIONS(2627), + [anon_sym_type] = ACTIONS(2627), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), + [anon_sym_pub] = ACTIONS(2627), + [anon_sym_mut] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_interface] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_QMARK] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_go] = ACTIONS(2627), + [anon_sym_spawn] = ACTIONS(2627), + [anon_sym_json_DOTdecode] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2629), + [anon_sym_LT_DASH] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT] = ACTIONS(2629), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_AMP_CARET] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_or] = ACTIONS(2629), + [sym_none] = ACTIONS(2627), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [sym_nil] = ACTIONS(2627), + [anon_sym_QMARK_DOT] = ACTIONS(2629), + [anon_sym_POUND_LBRACK] = ACTIONS(2629), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_DOLLARif] = ACTIONS(2627), + [anon_sym_is] = ACTIONS(2629), + [anon_sym_BANGis] = ACTIONS(2629), + [anon_sym_in] = ACTIONS(2629), + [anon_sym_BANGin] = ACTIONS(2629), + [anon_sym_match] = ACTIONS(2627), + [anon_sym_select] = ACTIONS(2627), + [anon_sym_STAR_EQ] = ACTIONS(2629), + [anon_sym_SLASH_EQ] = ACTIONS(2629), + [anon_sym_PERCENT_EQ] = ACTIONS(2629), + [anon_sym_LT_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_GT_EQ] = ACTIONS(2629), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2629), + [anon_sym_AMP_EQ] = ACTIONS(2629), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2629), + [anon_sym_PLUS_EQ] = ACTIONS(2629), + [anon_sym_DASH_EQ] = ACTIONS(2629), + [anon_sym_PIPE_EQ] = ACTIONS(2629), + [anon_sym_CARET_EQ] = ACTIONS(2629), + [anon_sym_COLON_EQ] = ACTIONS(2629), + [anon_sym_lock] = ACTIONS(2627), + [anon_sym_rlock] = ACTIONS(2627), + [anon_sym_unsafe] = ACTIONS(2627), + [anon_sym_sql] = ACTIONS(2627), + [sym_int_literal] = ACTIONS(2627), + [sym_float_literal] = ACTIONS(2627), + [sym_rune_literal] = ACTIONS(2627), + [anon_sym_SQUOTE] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [anon_sym_c_SQUOTE] = ACTIONS(2627), + [anon_sym_c_DQUOTE] = ACTIONS(2627), + [anon_sym_r_SQUOTE] = ACTIONS(2627), + [anon_sym_r_DQUOTE] = ACTIONS(2627), + [sym_pseudo_compile_time_identifier] = ACTIONS(2627), + [anon_sym_shared] = ACTIONS(2627), + [anon_sym_map_LBRACK] = ACTIONS(2627), + [anon_sym_chan] = ACTIONS(2627), + [anon_sym_thread] = ACTIONS(2627), + [anon_sym_atomic] = ACTIONS(2627), + [anon_sym_assert] = ACTIONS(2627), + [anon_sym_defer] = ACTIONS(2627), + [anon_sym_goto] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_DOLLARfor] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_POUND] = ACTIONS(2627), + [anon_sym_asm] = ACTIONS(2627), + [anon_sym_AT_LBRACK] = ACTIONS(2627), }, [489] = { [sym_line_comment] = STATE(489), [sym_block_comment] = STATE(489), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4432), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(3020), + [sym_identifier] = ACTIONS(3022), + [anon_sym_LF] = ACTIONS(3022), + [anon_sym_CR] = ACTIONS(3022), + [anon_sym_CR_LF] = ACTIONS(3022), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3022), + [anon_sym_as] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3022), + [anon_sym_COMMA] = ACTIONS(3022), + [anon_sym_const] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_EQ] = ACTIONS(3022), + [anon_sym___global] = ACTIONS(3022), + [anon_sym_type] = ACTIONS(3022), + [anon_sym_fn] = ACTIONS(3022), + [anon_sym_PLUS] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(3022), + [anon_sym_SLASH] = ACTIONS(3022), + [anon_sym_PERCENT] = ACTIONS(3022), + [anon_sym_LT] = ACTIONS(3022), + [anon_sym_GT] = ACTIONS(3022), + [anon_sym_EQ_EQ] = ACTIONS(3022), + [anon_sym_BANG_EQ] = ACTIONS(3022), + [anon_sym_LT_EQ] = ACTIONS(3022), + [anon_sym_GT_EQ] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_struct] = ACTIONS(3022), + [anon_sym_union] = ACTIONS(3022), + [anon_sym_pub] = ACTIONS(3022), + [anon_sym_mut] = ACTIONS(3022), + [anon_sym_enum] = ACTIONS(3022), + [anon_sym_interface] = ACTIONS(3022), + [anon_sym_PLUS_PLUS] = ACTIONS(3022), + [anon_sym_DASH_DASH] = ACTIONS(3022), + [anon_sym_QMARK] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_go] = ACTIONS(3022), + [anon_sym_spawn] = ACTIONS(3022), + [anon_sym_json_DOTdecode] = ACTIONS(3022), + [anon_sym_PIPE] = ACTIONS(3022), + [anon_sym_LBRACK2] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3022), + [anon_sym_CARET] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3022), + [anon_sym_LT_DASH] = ACTIONS(3022), + [anon_sym_LT_LT] = ACTIONS(3022), + [anon_sym_GT_GT] = ACTIONS(3022), + [anon_sym_GT_GT_GT] = ACTIONS(3022), + [anon_sym_AMP_CARET] = ACTIONS(3022), + [anon_sym_AMP_AMP] = ACTIONS(3022), + [anon_sym_PIPE_PIPE] = ACTIONS(3022), + [anon_sym_or] = ACTIONS(3022), + [sym_none] = ACTIONS(3022), + [sym_true] = ACTIONS(3022), + [sym_false] = ACTIONS(3022), + [sym_nil] = ACTIONS(3022), + [anon_sym_QMARK_DOT] = ACTIONS(3022), + [anon_sym_POUND_LBRACK] = ACTIONS(3022), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_DOLLARif] = ACTIONS(3022), + [anon_sym_is] = ACTIONS(3022), + [anon_sym_BANGis] = ACTIONS(3022), + [anon_sym_in] = ACTIONS(3022), + [anon_sym_BANGin] = ACTIONS(3022), + [anon_sym_match] = ACTIONS(3022), + [anon_sym_select] = ACTIONS(3022), + [anon_sym_STAR_EQ] = ACTIONS(3022), + [anon_sym_SLASH_EQ] = ACTIONS(3022), + [anon_sym_PERCENT_EQ] = ACTIONS(3022), + [anon_sym_LT_LT_EQ] = ACTIONS(3022), + [anon_sym_GT_GT_EQ] = ACTIONS(3022), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3022), + [anon_sym_AMP_EQ] = ACTIONS(3022), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3022), + [anon_sym_PLUS_EQ] = ACTIONS(3022), + [anon_sym_DASH_EQ] = ACTIONS(3022), + [anon_sym_PIPE_EQ] = ACTIONS(3022), + [anon_sym_CARET_EQ] = ACTIONS(3022), + [anon_sym_COLON_EQ] = ACTIONS(3022), + [anon_sym_lock] = ACTIONS(3022), + [anon_sym_rlock] = ACTIONS(3022), + [anon_sym_unsafe] = ACTIONS(3022), + [anon_sym_sql] = ACTIONS(3022), + [sym_int_literal] = ACTIONS(3022), + [sym_float_literal] = ACTIONS(3022), + [sym_rune_literal] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_c_SQUOTE] = ACTIONS(3022), + [anon_sym_c_DQUOTE] = ACTIONS(3022), + [anon_sym_r_SQUOTE] = ACTIONS(3022), + [anon_sym_r_DQUOTE] = ACTIONS(3022), + [sym_pseudo_compile_time_identifier] = ACTIONS(3022), + [anon_sym_shared] = ACTIONS(3022), + [anon_sym_map_LBRACK] = ACTIONS(3022), + [anon_sym_chan] = ACTIONS(3022), + [anon_sym_thread] = ACTIONS(3022), + [anon_sym_atomic] = ACTIONS(3022), + [anon_sym_assert] = ACTIONS(3022), + [anon_sym_defer] = ACTIONS(3022), + [anon_sym_goto] = ACTIONS(3022), + [anon_sym_break] = ACTIONS(3022), + [anon_sym_continue] = ACTIONS(3022), + [anon_sym_return] = ACTIONS(3022), + [anon_sym_DOLLARfor] = ACTIONS(3022), + [anon_sym_for] = ACTIONS(3022), + [anon_sym_POUND] = ACTIONS(3022), + [anon_sym_asm] = ACTIONS(3022), + [anon_sym_AT_LBRACK] = ACTIONS(3022), }, [490] = { [sym_line_comment] = STATE(490), [sym_block_comment] = STATE(490), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4346), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(3024), + [sym_identifier] = ACTIONS(3026), + [anon_sym_LF] = ACTIONS(3026), + [anon_sym_CR] = ACTIONS(3026), + [anon_sym_CR_LF] = ACTIONS(3026), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3026), + [anon_sym_as] = ACTIONS(3026), + [anon_sym_LBRACE] = ACTIONS(3026), + [anon_sym_COMMA] = ACTIONS(3026), + [anon_sym_const] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3026), + [anon_sym_EQ] = ACTIONS(3026), + [anon_sym___global] = ACTIONS(3026), + [anon_sym_type] = ACTIONS(3026), + [anon_sym_fn] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3026), + [anon_sym_SLASH] = ACTIONS(3026), + [anon_sym_PERCENT] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(3026), + [anon_sym_GT] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3026), + [anon_sym_BANG_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_struct] = ACTIONS(3026), + [anon_sym_union] = ACTIONS(3026), + [anon_sym_pub] = ACTIONS(3026), + [anon_sym_mut] = ACTIONS(3026), + [anon_sym_enum] = ACTIONS(3026), + [anon_sym_interface] = ACTIONS(3026), + [anon_sym_PLUS_PLUS] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(3026), + [anon_sym_QMARK] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_go] = ACTIONS(3026), + [anon_sym_spawn] = ACTIONS(3026), + [anon_sym_json_DOTdecode] = ACTIONS(3026), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_LBRACK2] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3026), + [anon_sym_CARET] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_LT_DASH] = ACTIONS(3026), + [anon_sym_LT_LT] = ACTIONS(3026), + [anon_sym_GT_GT] = ACTIONS(3026), + [anon_sym_GT_GT_GT] = ACTIONS(3026), + [anon_sym_AMP_CARET] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_or] = ACTIONS(3026), + [sym_none] = ACTIONS(3026), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_nil] = ACTIONS(3026), + [anon_sym_QMARK_DOT] = ACTIONS(3026), + [anon_sym_POUND_LBRACK] = ACTIONS(3026), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_DOLLARif] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3026), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_in] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_match] = ACTIONS(3026), + [anon_sym_select] = ACTIONS(3026), + [anon_sym_STAR_EQ] = ACTIONS(3026), + [anon_sym_SLASH_EQ] = ACTIONS(3026), + [anon_sym_PERCENT_EQ] = ACTIONS(3026), + [anon_sym_LT_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_GT_EQ] = ACTIONS(3026), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3026), + [anon_sym_AMP_EQ] = ACTIONS(3026), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3026), + [anon_sym_PLUS_EQ] = ACTIONS(3026), + [anon_sym_DASH_EQ] = ACTIONS(3026), + [anon_sym_PIPE_EQ] = ACTIONS(3026), + [anon_sym_CARET_EQ] = ACTIONS(3026), + [anon_sym_COLON_EQ] = ACTIONS(3026), + [anon_sym_lock] = ACTIONS(3026), + [anon_sym_rlock] = ACTIONS(3026), + [anon_sym_unsafe] = ACTIONS(3026), + [anon_sym_sql] = ACTIONS(3026), + [sym_int_literal] = ACTIONS(3026), + [sym_float_literal] = ACTIONS(3026), + [sym_rune_literal] = ACTIONS(3026), + [anon_sym_SQUOTE] = ACTIONS(3026), + [anon_sym_DQUOTE] = ACTIONS(3026), + [anon_sym_c_SQUOTE] = ACTIONS(3026), + [anon_sym_c_DQUOTE] = ACTIONS(3026), + [anon_sym_r_SQUOTE] = ACTIONS(3026), + [anon_sym_r_DQUOTE] = ACTIONS(3026), + [sym_pseudo_compile_time_identifier] = ACTIONS(3026), + [anon_sym_shared] = ACTIONS(3026), + [anon_sym_map_LBRACK] = ACTIONS(3026), + [anon_sym_chan] = ACTIONS(3026), + [anon_sym_thread] = ACTIONS(3026), + [anon_sym_atomic] = ACTIONS(3026), + [anon_sym_assert] = ACTIONS(3026), + [anon_sym_defer] = ACTIONS(3026), + [anon_sym_goto] = ACTIONS(3026), + [anon_sym_break] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(3026), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_DOLLARfor] = ACTIONS(3026), + [anon_sym_for] = ACTIONS(3026), + [anon_sym_POUND] = ACTIONS(3026), + [anon_sym_asm] = ACTIONS(3026), + [anon_sym_AT_LBRACK] = ACTIONS(3026), }, [491] = { [sym_line_comment] = STATE(491), [sym_block_comment] = STATE(491), - [ts_builtin_sym_end] = ACTIONS(2885), - [sym_identifier] = ACTIONS(2887), - [anon_sym_LF] = ACTIONS(2887), - [anon_sym_CR] = ACTIONS(2887), - [anon_sym_CR_LF] = ACTIONS(2887), + [ts_builtin_sym_end] = ACTIONS(3028), + [sym_identifier] = ACTIONS(3030), + [anon_sym_LF] = ACTIONS(3030), + [anon_sym_CR] = ACTIONS(3030), + [anon_sym_CR_LF] = ACTIONS(3030), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3039), - [anon_sym_as] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_COMMA] = ACTIONS(2887), - [anon_sym_const] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(2887), - [anon_sym_EQ] = ACTIONS(2887), - [anon_sym___global] = ACTIONS(2887), - [anon_sym_type] = ACTIONS(2887), - [anon_sym_PIPE] = ACTIONS(2887), - [anon_sym_fn] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2887), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_EQ_EQ] = ACTIONS(2887), - [anon_sym_BANG_EQ] = ACTIONS(2887), - [anon_sym_LT_EQ] = ACTIONS(2887), - [anon_sym_GT_EQ] = ACTIONS(2887), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2887), - [anon_sym_union] = ACTIONS(2887), - [anon_sym_pub] = ACTIONS(2887), - [anon_sym_mut] = ACTIONS(2887), - [anon_sym_enum] = ACTIONS(2887), - [anon_sym_interface] = ACTIONS(2887), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [anon_sym_QMARK] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_go] = ACTIONS(2887), - [anon_sym_spawn] = ACTIONS(2887), - [anon_sym_json_DOTdecode] = ACTIONS(2887), - [anon_sym_LBRACK2] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_CARET] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2887), - [anon_sym_LT_LT] = ACTIONS(2887), - [anon_sym_GT_GT] = ACTIONS(2887), - [anon_sym_GT_GT_GT] = ACTIONS(2887), - [anon_sym_AMP_CARET] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_PIPE_PIPE] = ACTIONS(2887), - [anon_sym_or] = ACTIONS(2887), - [sym_none] = ACTIONS(2887), - [sym_true] = ACTIONS(2887), - [sym_false] = ACTIONS(2887), - [sym_nil] = ACTIONS(2887), - [anon_sym_QMARK_DOT] = ACTIONS(2887), - [anon_sym_POUND_LBRACK] = ACTIONS(2887), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_DOLLARif] = ACTIONS(2887), - [anon_sym_is] = ACTIONS(2887), - [anon_sym_BANGis] = ACTIONS(2887), - [anon_sym_in] = ACTIONS(2887), - [anon_sym_BANGin] = ACTIONS(2887), - [anon_sym_match] = ACTIONS(2887), - [anon_sym_select] = ACTIONS(2887), - [anon_sym_STAR_EQ] = ACTIONS(2887), - [anon_sym_SLASH_EQ] = ACTIONS(2887), - [anon_sym_PERCENT_EQ] = ACTIONS(2887), - [anon_sym_LT_LT_EQ] = ACTIONS(2887), - [anon_sym_GT_GT_EQ] = ACTIONS(2887), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2887), - [anon_sym_AMP_EQ] = ACTIONS(2887), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2887), - [anon_sym_PLUS_EQ] = ACTIONS(2887), - [anon_sym_DASH_EQ] = ACTIONS(2887), - [anon_sym_PIPE_EQ] = ACTIONS(2887), - [anon_sym_CARET_EQ] = ACTIONS(2887), - [anon_sym_COLON_EQ] = ACTIONS(2887), - [anon_sym_lock] = ACTIONS(2887), - [anon_sym_rlock] = ACTIONS(2887), - [anon_sym_unsafe] = ACTIONS(2887), - [anon_sym_sql] = ACTIONS(2887), - [sym_int_literal] = ACTIONS(2887), - [sym_float_literal] = ACTIONS(2887), - [sym_rune_literal] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [anon_sym_c_SQUOTE] = ACTIONS(2887), - [anon_sym_c_DQUOTE] = ACTIONS(2887), - [anon_sym_r_SQUOTE] = ACTIONS(2887), - [anon_sym_r_DQUOTE] = ACTIONS(2887), - [sym_pseudo_compile_time_identifier] = ACTIONS(2887), - [anon_sym_shared] = ACTIONS(2887), - [anon_sym_map_LBRACK] = ACTIONS(2887), - [anon_sym_chan] = ACTIONS(2887), - [anon_sym_thread] = ACTIONS(2887), - [anon_sym_atomic] = ACTIONS(2887), - [anon_sym_assert] = ACTIONS(2887), - [anon_sym_defer] = ACTIONS(2887), - [anon_sym_goto] = ACTIONS(2887), - [anon_sym_break] = ACTIONS(2887), - [anon_sym_continue] = ACTIONS(2887), - [anon_sym_return] = ACTIONS(2887), - [anon_sym_DOLLARfor] = ACTIONS(2887), - [anon_sym_for] = ACTIONS(2887), - [anon_sym_POUND] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2887), - [anon_sym_AT_LBRACK] = ACTIONS(2887), + [anon_sym_DOT] = ACTIONS(3030), + [anon_sym_as] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_const] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3030), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym___global] = ACTIONS(3030), + [anon_sym_type] = ACTIONS(3030), + [anon_sym_fn] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_SLASH] = ACTIONS(3030), + [anon_sym_PERCENT] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_GT] = ACTIONS(3030), + [anon_sym_EQ_EQ] = ACTIONS(3030), + [anon_sym_BANG_EQ] = ACTIONS(3030), + [anon_sym_LT_EQ] = ACTIONS(3030), + [anon_sym_GT_EQ] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3030), + [anon_sym_union] = ACTIONS(3030), + [anon_sym_pub] = ACTIONS(3030), + [anon_sym_mut] = ACTIONS(3030), + [anon_sym_enum] = ACTIONS(3030), + [anon_sym_interface] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_QMARK] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_go] = ACTIONS(3030), + [anon_sym_spawn] = ACTIONS(3030), + [anon_sym_json_DOTdecode] = ACTIONS(3030), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_LBRACK2] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_CARET] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_LT_DASH] = ACTIONS(3030), + [anon_sym_LT_LT] = ACTIONS(3030), + [anon_sym_GT_GT] = ACTIONS(3030), + [anon_sym_GT_GT_GT] = ACTIONS(3030), + [anon_sym_AMP_CARET] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_PIPE_PIPE] = ACTIONS(3030), + [anon_sym_or] = ACTIONS(3030), + [sym_none] = ACTIONS(3030), + [sym_true] = ACTIONS(3030), + [sym_false] = ACTIONS(3030), + [sym_nil] = ACTIONS(3030), + [anon_sym_QMARK_DOT] = ACTIONS(3030), + [anon_sym_POUND_LBRACK] = ACTIONS(3030), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_DOLLARif] = ACTIONS(3030), + [anon_sym_is] = ACTIONS(3030), + [anon_sym_BANGis] = ACTIONS(3030), + [anon_sym_in] = ACTIONS(3030), + [anon_sym_BANGin] = ACTIONS(3030), + [anon_sym_match] = ACTIONS(3030), + [anon_sym_select] = ACTIONS(3030), + [anon_sym_STAR_EQ] = ACTIONS(3030), + [anon_sym_SLASH_EQ] = ACTIONS(3030), + [anon_sym_PERCENT_EQ] = ACTIONS(3030), + [anon_sym_LT_LT_EQ] = ACTIONS(3030), + [anon_sym_GT_GT_EQ] = ACTIONS(3030), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3030), + [anon_sym_AMP_EQ] = ACTIONS(3030), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3030), + [anon_sym_PLUS_EQ] = ACTIONS(3030), + [anon_sym_DASH_EQ] = ACTIONS(3030), + [anon_sym_PIPE_EQ] = ACTIONS(3030), + [anon_sym_CARET_EQ] = ACTIONS(3030), + [anon_sym_COLON_EQ] = ACTIONS(3030), + [anon_sym_lock] = ACTIONS(3030), + [anon_sym_rlock] = ACTIONS(3030), + [anon_sym_unsafe] = ACTIONS(3030), + [anon_sym_sql] = ACTIONS(3030), + [sym_int_literal] = ACTIONS(3030), + [sym_float_literal] = ACTIONS(3030), + [sym_rune_literal] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [anon_sym_c_SQUOTE] = ACTIONS(3030), + [anon_sym_c_DQUOTE] = ACTIONS(3030), + [anon_sym_r_SQUOTE] = ACTIONS(3030), + [anon_sym_r_DQUOTE] = ACTIONS(3030), + [sym_pseudo_compile_time_identifier] = ACTIONS(3030), + [anon_sym_shared] = ACTIONS(3030), + [anon_sym_map_LBRACK] = ACTIONS(3030), + [anon_sym_chan] = ACTIONS(3030), + [anon_sym_thread] = ACTIONS(3030), + [anon_sym_atomic] = ACTIONS(3030), + [anon_sym_assert] = ACTIONS(3030), + [anon_sym_defer] = ACTIONS(3030), + [anon_sym_goto] = ACTIONS(3030), + [anon_sym_break] = ACTIONS(3030), + [anon_sym_continue] = ACTIONS(3030), + [anon_sym_return] = ACTIONS(3030), + [anon_sym_DOLLARfor] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3030), + [anon_sym_POUND] = ACTIONS(3030), + [anon_sym_asm] = ACTIONS(3030), + [anon_sym_AT_LBRACK] = ACTIONS(3030), }, [492] = { [sym_line_comment] = STATE(492), [sym_block_comment] = STATE(492), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4411), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1399), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1398), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym__array_repeat1] = STATE(479), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(3032), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1404), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -79985,6 +80280,354 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [493] = { [sym_line_comment] = STATE(493), [sym_block_comment] = STATE(493), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym__array_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1356), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(3034), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [494] = { + [sym_line_comment] = STATE(494), + [sym_block_comment] = STATE(494), + [ts_builtin_sym_end] = ACTIONS(3036), + [sym_identifier] = ACTIONS(3038), + [anon_sym_LF] = ACTIONS(3038), + [anon_sym_CR] = ACTIONS(3038), + [anon_sym_CR_LF] = ACTIONS(3038), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3038), + [anon_sym_as] = ACTIONS(3038), + [anon_sym_LBRACE] = ACTIONS(3038), + [anon_sym_COMMA] = ACTIONS(3038), + [anon_sym_const] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_EQ] = ACTIONS(3038), + [anon_sym___global] = ACTIONS(3038), + [anon_sym_type] = ACTIONS(3038), + [anon_sym_fn] = ACTIONS(3038), + [anon_sym_PLUS] = ACTIONS(3038), + [anon_sym_DASH] = ACTIONS(3038), + [anon_sym_STAR] = ACTIONS(3038), + [anon_sym_SLASH] = ACTIONS(3038), + [anon_sym_PERCENT] = ACTIONS(3038), + [anon_sym_LT] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3038), + [anon_sym_EQ_EQ] = ACTIONS(3038), + [anon_sym_BANG_EQ] = ACTIONS(3038), + [anon_sym_LT_EQ] = ACTIONS(3038), + [anon_sym_GT_EQ] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3036), + [anon_sym_struct] = ACTIONS(3038), + [anon_sym_union] = ACTIONS(3038), + [anon_sym_pub] = ACTIONS(3038), + [anon_sym_mut] = ACTIONS(3038), + [anon_sym_enum] = ACTIONS(3038), + [anon_sym_interface] = ACTIONS(3038), + [anon_sym_PLUS_PLUS] = ACTIONS(3038), + [anon_sym_DASH_DASH] = ACTIONS(3038), + [anon_sym_QMARK] = ACTIONS(3038), + [anon_sym_BANG] = ACTIONS(3038), + [anon_sym_go] = ACTIONS(3038), + [anon_sym_spawn] = ACTIONS(3038), + [anon_sym_json_DOTdecode] = ACTIONS(3038), + [anon_sym_PIPE] = ACTIONS(3038), + [anon_sym_LBRACK2] = ACTIONS(3038), + [anon_sym_TILDE] = ACTIONS(3038), + [anon_sym_CARET] = ACTIONS(3038), + [anon_sym_AMP] = ACTIONS(3038), + [anon_sym_LT_DASH] = ACTIONS(3038), + [anon_sym_LT_LT] = ACTIONS(3038), + [anon_sym_GT_GT] = ACTIONS(3038), + [anon_sym_GT_GT_GT] = ACTIONS(3038), + [anon_sym_AMP_CARET] = ACTIONS(3038), + [anon_sym_AMP_AMP] = ACTIONS(3038), + [anon_sym_PIPE_PIPE] = ACTIONS(3038), + [anon_sym_or] = ACTIONS(3038), + [sym_none] = ACTIONS(3038), + [sym_true] = ACTIONS(3038), + [sym_false] = ACTIONS(3038), + [sym_nil] = ACTIONS(3038), + [anon_sym_QMARK_DOT] = ACTIONS(3038), + [anon_sym_POUND_LBRACK] = ACTIONS(3038), + [anon_sym_if] = ACTIONS(3038), + [anon_sym_DOLLARif] = ACTIONS(3038), + [anon_sym_is] = ACTIONS(3038), + [anon_sym_BANGis] = ACTIONS(3038), + [anon_sym_in] = ACTIONS(3038), + [anon_sym_BANGin] = ACTIONS(3038), + [anon_sym_match] = ACTIONS(3038), + [anon_sym_select] = ACTIONS(3038), + [anon_sym_STAR_EQ] = ACTIONS(3038), + [anon_sym_SLASH_EQ] = ACTIONS(3038), + [anon_sym_PERCENT_EQ] = ACTIONS(3038), + [anon_sym_LT_LT_EQ] = ACTIONS(3038), + [anon_sym_GT_GT_EQ] = ACTIONS(3038), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3038), + [anon_sym_AMP_EQ] = ACTIONS(3038), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3038), + [anon_sym_PLUS_EQ] = ACTIONS(3038), + [anon_sym_DASH_EQ] = ACTIONS(3038), + [anon_sym_PIPE_EQ] = ACTIONS(3038), + [anon_sym_CARET_EQ] = ACTIONS(3038), + [anon_sym_COLON_EQ] = ACTIONS(3038), + [anon_sym_lock] = ACTIONS(3038), + [anon_sym_rlock] = ACTIONS(3038), + [anon_sym_unsafe] = ACTIONS(3038), + [anon_sym_sql] = ACTIONS(3038), + [sym_int_literal] = ACTIONS(3038), + [sym_float_literal] = ACTIONS(3038), + [sym_rune_literal] = ACTIONS(3038), + [anon_sym_SQUOTE] = ACTIONS(3038), + [anon_sym_DQUOTE] = ACTIONS(3038), + [anon_sym_c_SQUOTE] = ACTIONS(3038), + [anon_sym_c_DQUOTE] = ACTIONS(3038), + [anon_sym_r_SQUOTE] = ACTIONS(3038), + [anon_sym_r_DQUOTE] = ACTIONS(3038), + [sym_pseudo_compile_time_identifier] = ACTIONS(3038), + [anon_sym_shared] = ACTIONS(3038), + [anon_sym_map_LBRACK] = ACTIONS(3038), + [anon_sym_chan] = ACTIONS(3038), + [anon_sym_thread] = ACTIONS(3038), + [anon_sym_atomic] = ACTIONS(3038), + [anon_sym_assert] = ACTIONS(3038), + [anon_sym_defer] = ACTIONS(3038), + [anon_sym_goto] = ACTIONS(3038), + [anon_sym_break] = ACTIONS(3038), + [anon_sym_continue] = ACTIONS(3038), + [anon_sym_return] = ACTIONS(3038), + [anon_sym_DOLLARfor] = ACTIONS(3038), + [anon_sym_for] = ACTIONS(3038), + [anon_sym_POUND] = ACTIONS(3038), + [anon_sym_asm] = ACTIONS(3038), + [anon_sym_AT_LBRACK] = ACTIONS(3038), + }, + [495] = { + [sym_line_comment] = STATE(495), + [sym_block_comment] = STATE(495), + [ts_builtin_sym_end] = ACTIONS(3040), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LF] = ACTIONS(3042), + [anon_sym_CR] = ACTIONS(3042), + [anon_sym_CR_LF] = ACTIONS(3042), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3042), + [anon_sym_as] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(3042), + [anon_sym_const] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_EQ] = ACTIONS(3042), + [anon_sym___global] = ACTIONS(3042), + [anon_sym_type] = ACTIONS(3042), + [anon_sym_fn] = ACTIONS(3042), + [anon_sym_PLUS] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_SLASH] = ACTIONS(3042), + [anon_sym_PERCENT] = ACTIONS(3042), + [anon_sym_LT] = ACTIONS(3042), + [anon_sym_GT] = ACTIONS(3042), + [anon_sym_EQ_EQ] = ACTIONS(3042), + [anon_sym_BANG_EQ] = ACTIONS(3042), + [anon_sym_LT_EQ] = ACTIONS(3042), + [anon_sym_GT_EQ] = ACTIONS(3042), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_struct] = ACTIONS(3042), + [anon_sym_union] = ACTIONS(3042), + [anon_sym_pub] = ACTIONS(3042), + [anon_sym_mut] = ACTIONS(3042), + [anon_sym_enum] = ACTIONS(3042), + [anon_sym_interface] = ACTIONS(3042), + [anon_sym_PLUS_PLUS] = ACTIONS(3042), + [anon_sym_DASH_DASH] = ACTIONS(3042), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(3042), + [anon_sym_go] = ACTIONS(3042), + [anon_sym_spawn] = ACTIONS(3042), + [anon_sym_json_DOTdecode] = ACTIONS(3042), + [anon_sym_PIPE] = ACTIONS(3042), + [anon_sym_LBRACK2] = ACTIONS(3042), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_CARET] = ACTIONS(3042), + [anon_sym_AMP] = ACTIONS(3042), + [anon_sym_LT_DASH] = ACTIONS(3042), + [anon_sym_LT_LT] = ACTIONS(3042), + [anon_sym_GT_GT] = ACTIONS(3042), + [anon_sym_GT_GT_GT] = ACTIONS(3042), + [anon_sym_AMP_CARET] = ACTIONS(3042), + [anon_sym_AMP_AMP] = ACTIONS(3042), + [anon_sym_PIPE_PIPE] = ACTIONS(3042), + [anon_sym_or] = ACTIONS(3042), + [sym_none] = ACTIONS(3042), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_nil] = ACTIONS(3042), + [anon_sym_QMARK_DOT] = ACTIONS(3042), + [anon_sym_POUND_LBRACK] = ACTIONS(3042), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_DOLLARif] = ACTIONS(3042), + [anon_sym_is] = ACTIONS(3042), + [anon_sym_BANGis] = ACTIONS(3042), + [anon_sym_in] = ACTIONS(3042), + [anon_sym_BANGin] = ACTIONS(3042), + [anon_sym_match] = ACTIONS(3042), + [anon_sym_select] = ACTIONS(3042), + [anon_sym_STAR_EQ] = ACTIONS(3042), + [anon_sym_SLASH_EQ] = ACTIONS(3042), + [anon_sym_PERCENT_EQ] = ACTIONS(3042), + [anon_sym_LT_LT_EQ] = ACTIONS(3042), + [anon_sym_GT_GT_EQ] = ACTIONS(3042), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3042), + [anon_sym_AMP_EQ] = ACTIONS(3042), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3042), + [anon_sym_PLUS_EQ] = ACTIONS(3042), + [anon_sym_DASH_EQ] = ACTIONS(3042), + [anon_sym_PIPE_EQ] = ACTIONS(3042), + [anon_sym_CARET_EQ] = ACTIONS(3042), + [anon_sym_COLON_EQ] = ACTIONS(3042), + [anon_sym_lock] = ACTIONS(3042), + [anon_sym_rlock] = ACTIONS(3042), + [anon_sym_unsafe] = ACTIONS(3042), + [anon_sym_sql] = ACTIONS(3042), + [sym_int_literal] = ACTIONS(3042), + [sym_float_literal] = ACTIONS(3042), + [sym_rune_literal] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3042), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_c_SQUOTE] = ACTIONS(3042), + [anon_sym_c_DQUOTE] = ACTIONS(3042), + [anon_sym_r_SQUOTE] = ACTIONS(3042), + [anon_sym_r_DQUOTE] = ACTIONS(3042), + [sym_pseudo_compile_time_identifier] = ACTIONS(3042), + [anon_sym_shared] = ACTIONS(3042), + [anon_sym_map_LBRACK] = ACTIONS(3042), + [anon_sym_chan] = ACTIONS(3042), + [anon_sym_thread] = ACTIONS(3042), + [anon_sym_atomic] = ACTIONS(3042), + [anon_sym_assert] = ACTIONS(3042), + [anon_sym_defer] = ACTIONS(3042), + [anon_sym_goto] = ACTIONS(3042), + [anon_sym_break] = ACTIONS(3042), + [anon_sym_continue] = ACTIONS(3042), + [anon_sym_return] = ACTIONS(3042), + [anon_sym_DOLLARfor] = ACTIONS(3042), + [anon_sym_for] = ACTIONS(3042), + [anon_sym_POUND] = ACTIONS(3042), + [anon_sym_asm] = ACTIONS(3042), + [anon_sym_AT_LBRACK] = ACTIONS(3042), + }, + [496] = { + [sym_line_comment] = STATE(496), + [sym_block_comment] = STATE(496), [ts_builtin_sym_end] = ACTIONS(3044), [sym_identifier] = ACTIONS(3046), [anon_sym_LF] = ACTIONS(3046), @@ -80001,7 +80644,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(3046), [anon_sym___global] = ACTIONS(3046), [anon_sym_type] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3046), [anon_sym_fn] = ACTIONS(3046), [anon_sym_PLUS] = ACTIONS(3046), [anon_sym_DASH] = ACTIONS(3046), @@ -80028,6 +80670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(3046), [anon_sym_spawn] = ACTIONS(3046), [anon_sym_json_DOTdecode] = ACTIONS(3046), + [anon_sym_PIPE] = ACTIONS(3046), [anon_sym_LBRACK2] = ACTIONS(3046), [anon_sym_TILDE] = ACTIONS(3046), [anon_sym_CARET] = ACTIONS(3046), @@ -80098,705 +80741,473 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(3046), [anon_sym_AT_LBRACK] = ACTIONS(3046), }, - [494] = { - [sym_line_comment] = STATE(494), - [sym_block_comment] = STATE(494), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4453), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [495] = { - [sym_line_comment] = STATE(495), - [sym_block_comment] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(3050), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LF] = ACTIONS(3052), - [anon_sym_CR] = ACTIONS(3052), - [anon_sym_CR_LF] = ACTIONS(3052), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3052), - [anon_sym_as] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_COMMA] = ACTIONS(3052), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_EQ] = ACTIONS(3052), - [anon_sym___global] = ACTIONS(3052), - [anon_sym_type] = ACTIONS(3052), - [anon_sym_PIPE] = ACTIONS(3052), - [anon_sym_fn] = ACTIONS(3052), - [anon_sym_PLUS] = ACTIONS(3052), - [anon_sym_DASH] = ACTIONS(3052), - [anon_sym_STAR] = ACTIONS(3052), - [anon_sym_SLASH] = ACTIONS(3052), - [anon_sym_PERCENT] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3052), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_LT_EQ] = ACTIONS(3052), - [anon_sym_GT_EQ] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3050), - [anon_sym_struct] = ACTIONS(3052), - [anon_sym_union] = ACTIONS(3052), - [anon_sym_pub] = ACTIONS(3052), - [anon_sym_mut] = ACTIONS(3052), - [anon_sym_enum] = ACTIONS(3052), - [anon_sym_interface] = ACTIONS(3052), - [anon_sym_PLUS_PLUS] = ACTIONS(3052), - [anon_sym_DASH_DASH] = ACTIONS(3052), - [anon_sym_QMARK] = ACTIONS(3052), - [anon_sym_BANG] = ACTIONS(3052), - [anon_sym_go] = ACTIONS(3052), - [anon_sym_spawn] = ACTIONS(3052), - [anon_sym_json_DOTdecode] = ACTIONS(3052), - [anon_sym_LBRACK2] = ACTIONS(3052), - [anon_sym_TILDE] = ACTIONS(3052), - [anon_sym_CARET] = ACTIONS(3052), - [anon_sym_AMP] = ACTIONS(3052), - [anon_sym_LT_DASH] = ACTIONS(3052), - [anon_sym_LT_LT] = ACTIONS(3052), - [anon_sym_GT_GT] = ACTIONS(3052), - [anon_sym_GT_GT_GT] = ACTIONS(3052), - [anon_sym_AMP_CARET] = ACTIONS(3052), - [anon_sym_AMP_AMP] = ACTIONS(3052), - [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_or] = ACTIONS(3052), - [sym_none] = ACTIONS(3052), - [sym_true] = ACTIONS(3052), - [sym_false] = ACTIONS(3052), - [sym_nil] = ACTIONS(3052), - [anon_sym_QMARK_DOT] = ACTIONS(3052), - [anon_sym_POUND_LBRACK] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_DOLLARif] = ACTIONS(3052), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3052), - [anon_sym_in] = ACTIONS(3052), - [anon_sym_BANGin] = ACTIONS(3052), - [anon_sym_match] = ACTIONS(3052), - [anon_sym_select] = ACTIONS(3052), - [anon_sym_STAR_EQ] = ACTIONS(3052), - [anon_sym_SLASH_EQ] = ACTIONS(3052), - [anon_sym_PERCENT_EQ] = ACTIONS(3052), - [anon_sym_LT_LT_EQ] = ACTIONS(3052), - [anon_sym_GT_GT_EQ] = ACTIONS(3052), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3052), - [anon_sym_AMP_EQ] = ACTIONS(3052), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3052), - [anon_sym_PLUS_EQ] = ACTIONS(3052), - [anon_sym_DASH_EQ] = ACTIONS(3052), - [anon_sym_PIPE_EQ] = ACTIONS(3052), - [anon_sym_CARET_EQ] = ACTIONS(3052), - [anon_sym_COLON_EQ] = ACTIONS(3052), - [anon_sym_lock] = ACTIONS(3052), - [anon_sym_rlock] = ACTIONS(3052), - [anon_sym_unsafe] = ACTIONS(3052), - [anon_sym_sql] = ACTIONS(3052), - [sym_int_literal] = ACTIONS(3052), - [sym_float_literal] = ACTIONS(3052), - [sym_rune_literal] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3052), - [anon_sym_DQUOTE] = ACTIONS(3052), - [anon_sym_c_SQUOTE] = ACTIONS(3052), - [anon_sym_c_DQUOTE] = ACTIONS(3052), - [anon_sym_r_SQUOTE] = ACTIONS(3052), - [anon_sym_r_DQUOTE] = ACTIONS(3052), - [sym_pseudo_compile_time_identifier] = ACTIONS(3052), - [anon_sym_shared] = ACTIONS(3052), - [anon_sym_map_LBRACK] = ACTIONS(3052), - [anon_sym_chan] = ACTIONS(3052), - [anon_sym_thread] = ACTIONS(3052), - [anon_sym_atomic] = ACTIONS(3052), - [anon_sym_assert] = ACTIONS(3052), - [anon_sym_defer] = ACTIONS(3052), - [anon_sym_goto] = ACTIONS(3052), - [anon_sym_break] = ACTIONS(3052), - [anon_sym_continue] = ACTIONS(3052), - [anon_sym_return] = ACTIONS(3052), - [anon_sym_DOLLARfor] = ACTIONS(3052), - [anon_sym_for] = ACTIONS(3052), - [anon_sym_POUND] = ACTIONS(3052), - [anon_sym_asm] = ACTIONS(3052), - [anon_sym_AT_LBRACK] = ACTIONS(3052), - }, - [496] = { - [sym_line_comment] = STATE(496), - [sym_block_comment] = STATE(496), - [ts_builtin_sym_end] = ACTIONS(3054), - [sym_identifier] = ACTIONS(3056), - [anon_sym_LF] = ACTIONS(3056), - [anon_sym_CR] = ACTIONS(3056), - [anon_sym_CR_LF] = ACTIONS(3056), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3056), - [anon_sym_as] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_const] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_EQ] = ACTIONS(3056), - [anon_sym___global] = ACTIONS(3056), - [anon_sym_type] = ACTIONS(3056), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_fn] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3056), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_SLASH] = ACTIONS(3056), - [anon_sym_PERCENT] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_EQ_EQ] = ACTIONS(3056), - [anon_sym_BANG_EQ] = ACTIONS(3056), - [anon_sym_LT_EQ] = ACTIONS(3056), - [anon_sym_GT_EQ] = ACTIONS(3056), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_struct] = ACTIONS(3056), - [anon_sym_union] = ACTIONS(3056), - [anon_sym_pub] = ACTIONS(3056), - [anon_sym_mut] = ACTIONS(3056), - [anon_sym_enum] = ACTIONS(3056), - [anon_sym_interface] = ACTIONS(3056), - [anon_sym_PLUS_PLUS] = ACTIONS(3056), - [anon_sym_DASH_DASH] = ACTIONS(3056), - [anon_sym_QMARK] = ACTIONS(3056), - [anon_sym_BANG] = ACTIONS(3056), - [anon_sym_go] = ACTIONS(3056), - [anon_sym_spawn] = ACTIONS(3056), - [anon_sym_json_DOTdecode] = ACTIONS(3056), - [anon_sym_LBRACK2] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3056), - [anon_sym_CARET] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3056), - [anon_sym_LT_DASH] = ACTIONS(3056), - [anon_sym_LT_LT] = ACTIONS(3056), - [anon_sym_GT_GT] = ACTIONS(3056), - [anon_sym_GT_GT_GT] = ACTIONS(3056), - [anon_sym_AMP_CARET] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_PIPE_PIPE] = ACTIONS(3056), - [anon_sym_or] = ACTIONS(3056), - [sym_none] = ACTIONS(3056), - [sym_true] = ACTIONS(3056), - [sym_false] = ACTIONS(3056), - [sym_nil] = ACTIONS(3056), - [anon_sym_QMARK_DOT] = ACTIONS(3056), - [anon_sym_POUND_LBRACK] = ACTIONS(3056), - [anon_sym_if] = ACTIONS(3056), - [anon_sym_DOLLARif] = ACTIONS(3056), - [anon_sym_is] = ACTIONS(3056), - [anon_sym_BANGis] = ACTIONS(3056), - [anon_sym_in] = ACTIONS(3056), - [anon_sym_BANGin] = ACTIONS(3056), - [anon_sym_match] = ACTIONS(3056), - [anon_sym_select] = ACTIONS(3056), - [anon_sym_STAR_EQ] = ACTIONS(3056), - [anon_sym_SLASH_EQ] = ACTIONS(3056), - [anon_sym_PERCENT_EQ] = ACTIONS(3056), - [anon_sym_LT_LT_EQ] = ACTIONS(3056), - [anon_sym_GT_GT_EQ] = ACTIONS(3056), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3056), - [anon_sym_AMP_EQ] = ACTIONS(3056), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3056), - [anon_sym_PLUS_EQ] = ACTIONS(3056), - [anon_sym_DASH_EQ] = ACTIONS(3056), - [anon_sym_PIPE_EQ] = ACTIONS(3056), - [anon_sym_CARET_EQ] = ACTIONS(3056), - [anon_sym_COLON_EQ] = ACTIONS(3056), - [anon_sym_lock] = ACTIONS(3056), - [anon_sym_rlock] = ACTIONS(3056), - [anon_sym_unsafe] = ACTIONS(3056), - [anon_sym_sql] = ACTIONS(3056), - [sym_int_literal] = ACTIONS(3056), - [sym_float_literal] = ACTIONS(3056), - [sym_rune_literal] = ACTIONS(3056), - [anon_sym_SQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3056), - [anon_sym_c_SQUOTE] = ACTIONS(3056), - [anon_sym_c_DQUOTE] = ACTIONS(3056), - [anon_sym_r_SQUOTE] = ACTIONS(3056), - [anon_sym_r_DQUOTE] = ACTIONS(3056), - [sym_pseudo_compile_time_identifier] = ACTIONS(3056), - [anon_sym_shared] = ACTIONS(3056), - [anon_sym_map_LBRACK] = ACTIONS(3056), - [anon_sym_chan] = ACTIONS(3056), - [anon_sym_thread] = ACTIONS(3056), - [anon_sym_atomic] = ACTIONS(3056), - [anon_sym_assert] = ACTIONS(3056), - [anon_sym_defer] = ACTIONS(3056), - [anon_sym_goto] = ACTIONS(3056), - [anon_sym_break] = ACTIONS(3056), - [anon_sym_continue] = ACTIONS(3056), - [anon_sym_return] = ACTIONS(3056), - [anon_sym_DOLLARfor] = ACTIONS(3056), - [anon_sym_for] = ACTIONS(3056), - [anon_sym_POUND] = ACTIONS(3056), - [anon_sym_asm] = ACTIONS(3056), - [anon_sym_AT_LBRACK] = ACTIONS(3056), - }, [497] = { [sym_line_comment] = STATE(497), [sym_block_comment] = STATE(497), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4348), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(3048), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LF] = ACTIONS(3050), + [anon_sym_CR] = ACTIONS(3050), + [anon_sym_CR_LF] = ACTIONS(3050), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3050), + [anon_sym_as] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_const] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym___global] = ACTIONS(3050), + [anon_sym_type] = ACTIONS(3050), + [anon_sym_fn] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_SLASH] = ACTIONS(3050), + [anon_sym_PERCENT] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_LT_EQ] = ACTIONS(3050), + [anon_sym_GT_EQ] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3050), + [anon_sym_union] = ACTIONS(3050), + [anon_sym_pub] = ACTIONS(3050), + [anon_sym_mut] = ACTIONS(3050), + [anon_sym_enum] = ACTIONS(3050), + [anon_sym_interface] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_go] = ACTIONS(3050), + [anon_sym_spawn] = ACTIONS(3050), + [anon_sym_json_DOTdecode] = ACTIONS(3050), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_LBRACK2] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_CARET] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_LT_DASH] = ACTIONS(3050), + [anon_sym_LT_LT] = ACTIONS(3050), + [anon_sym_GT_GT] = ACTIONS(3050), + [anon_sym_GT_GT_GT] = ACTIONS(3050), + [anon_sym_AMP_CARET] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_PIPE_PIPE] = ACTIONS(3050), + [anon_sym_or] = ACTIONS(3050), + [sym_none] = ACTIONS(3050), + [sym_true] = ACTIONS(3050), + [sym_false] = ACTIONS(3050), + [sym_nil] = ACTIONS(3050), + [anon_sym_QMARK_DOT] = ACTIONS(3050), + [anon_sym_POUND_LBRACK] = ACTIONS(3050), + [anon_sym_if] = ACTIONS(3050), + [anon_sym_DOLLARif] = ACTIONS(3050), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3050), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_BANGin] = ACTIONS(3050), + [anon_sym_match] = ACTIONS(3050), + [anon_sym_select] = ACTIONS(3050), + [anon_sym_STAR_EQ] = ACTIONS(3050), + [anon_sym_SLASH_EQ] = ACTIONS(3050), + [anon_sym_PERCENT_EQ] = ACTIONS(3050), + [anon_sym_LT_LT_EQ] = ACTIONS(3050), + [anon_sym_GT_GT_EQ] = ACTIONS(3050), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3050), + [anon_sym_AMP_EQ] = ACTIONS(3050), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3050), + [anon_sym_PLUS_EQ] = ACTIONS(3050), + [anon_sym_DASH_EQ] = ACTIONS(3050), + [anon_sym_PIPE_EQ] = ACTIONS(3050), + [anon_sym_CARET_EQ] = ACTIONS(3050), + [anon_sym_COLON_EQ] = ACTIONS(3050), + [anon_sym_lock] = ACTIONS(3050), + [anon_sym_rlock] = ACTIONS(3050), + [anon_sym_unsafe] = ACTIONS(3050), + [anon_sym_sql] = ACTIONS(3050), + [sym_int_literal] = ACTIONS(3050), + [sym_float_literal] = ACTIONS(3050), + [sym_rune_literal] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [anon_sym_c_SQUOTE] = ACTIONS(3050), + [anon_sym_c_DQUOTE] = ACTIONS(3050), + [anon_sym_r_SQUOTE] = ACTIONS(3050), + [anon_sym_r_DQUOTE] = ACTIONS(3050), + [sym_pseudo_compile_time_identifier] = ACTIONS(3050), + [anon_sym_shared] = ACTIONS(3050), + [anon_sym_map_LBRACK] = ACTIONS(3050), + [anon_sym_chan] = ACTIONS(3050), + [anon_sym_thread] = ACTIONS(3050), + [anon_sym_atomic] = ACTIONS(3050), + [anon_sym_assert] = ACTIONS(3050), + [anon_sym_defer] = ACTIONS(3050), + [anon_sym_goto] = ACTIONS(3050), + [anon_sym_break] = ACTIONS(3050), + [anon_sym_continue] = ACTIONS(3050), + [anon_sym_return] = ACTIONS(3050), + [anon_sym_DOLLARfor] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3050), + [anon_sym_POUND] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3050), + [anon_sym_AT_LBRACK] = ACTIONS(3050), }, [498] = { [sym_line_comment] = STATE(498), [sym_block_comment] = STATE(498), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4453), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(3052), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LF] = ACTIONS(3054), + [anon_sym_CR] = ACTIONS(3054), + [anon_sym_CR_LF] = ACTIONS(3054), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_as] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_COMMA] = ACTIONS(3054), + [anon_sym_const] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_EQ] = ACTIONS(3054), + [anon_sym___global] = ACTIONS(3054), + [anon_sym_type] = ACTIONS(3054), + [anon_sym_fn] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(3054), + [anon_sym_SLASH] = ACTIONS(3054), + [anon_sym_PERCENT] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3054), + [anon_sym_EQ_EQ] = ACTIONS(3054), + [anon_sym_BANG_EQ] = ACTIONS(3054), + [anon_sym_LT_EQ] = ACTIONS(3054), + [anon_sym_GT_EQ] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_struct] = ACTIONS(3054), + [anon_sym_union] = ACTIONS(3054), + [anon_sym_pub] = ACTIONS(3054), + [anon_sym_mut] = ACTIONS(3054), + [anon_sym_enum] = ACTIONS(3054), + [anon_sym_interface] = ACTIONS(3054), + [anon_sym_PLUS_PLUS] = ACTIONS(3054), + [anon_sym_DASH_DASH] = ACTIONS(3054), + [anon_sym_QMARK] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(3054), + [anon_sym_go] = ACTIONS(3054), + [anon_sym_spawn] = ACTIONS(3054), + [anon_sym_json_DOTdecode] = ACTIONS(3054), + [anon_sym_PIPE] = ACTIONS(3054), + [anon_sym_LBRACK2] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3054), + [anon_sym_CARET] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT_DASH] = ACTIONS(3054), + [anon_sym_LT_LT] = ACTIONS(3054), + [anon_sym_GT_GT] = ACTIONS(3054), + [anon_sym_GT_GT_GT] = ACTIONS(3054), + [anon_sym_AMP_CARET] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_PIPE_PIPE] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3054), + [sym_none] = ACTIONS(3054), + [sym_true] = ACTIONS(3054), + [sym_false] = ACTIONS(3054), + [sym_nil] = ACTIONS(3054), + [anon_sym_QMARK_DOT] = ACTIONS(3054), + [anon_sym_POUND_LBRACK] = ACTIONS(3054), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_DOLLARif] = ACTIONS(3054), + [anon_sym_is] = ACTIONS(3054), + [anon_sym_BANGis] = ACTIONS(3054), + [anon_sym_in] = ACTIONS(3054), + [anon_sym_BANGin] = ACTIONS(3054), + [anon_sym_match] = ACTIONS(3054), + [anon_sym_select] = ACTIONS(3054), + [anon_sym_STAR_EQ] = ACTIONS(3054), + [anon_sym_SLASH_EQ] = ACTIONS(3054), + [anon_sym_PERCENT_EQ] = ACTIONS(3054), + [anon_sym_LT_LT_EQ] = ACTIONS(3054), + [anon_sym_GT_GT_EQ] = ACTIONS(3054), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3054), + [anon_sym_AMP_EQ] = ACTIONS(3054), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3054), + [anon_sym_PLUS_EQ] = ACTIONS(3054), + [anon_sym_DASH_EQ] = ACTIONS(3054), + [anon_sym_PIPE_EQ] = ACTIONS(3054), + [anon_sym_CARET_EQ] = ACTIONS(3054), + [anon_sym_COLON_EQ] = ACTIONS(3054), + [anon_sym_lock] = ACTIONS(3054), + [anon_sym_rlock] = ACTIONS(3054), + [anon_sym_unsafe] = ACTIONS(3054), + [anon_sym_sql] = ACTIONS(3054), + [sym_int_literal] = ACTIONS(3054), + [sym_float_literal] = ACTIONS(3054), + [sym_rune_literal] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_c_SQUOTE] = ACTIONS(3054), + [anon_sym_c_DQUOTE] = ACTIONS(3054), + [anon_sym_r_SQUOTE] = ACTIONS(3054), + [anon_sym_r_DQUOTE] = ACTIONS(3054), + [sym_pseudo_compile_time_identifier] = ACTIONS(3054), + [anon_sym_shared] = ACTIONS(3054), + [anon_sym_map_LBRACK] = ACTIONS(3054), + [anon_sym_chan] = ACTIONS(3054), + [anon_sym_thread] = ACTIONS(3054), + [anon_sym_atomic] = ACTIONS(3054), + [anon_sym_assert] = ACTIONS(3054), + [anon_sym_defer] = ACTIONS(3054), + [anon_sym_goto] = ACTIONS(3054), + [anon_sym_break] = ACTIONS(3054), + [anon_sym_continue] = ACTIONS(3054), + [anon_sym_return] = ACTIONS(3054), + [anon_sym_DOLLARfor] = ACTIONS(3054), + [anon_sym_for] = ACTIONS(3054), + [anon_sym_POUND] = ACTIONS(3054), + [anon_sym_asm] = ACTIONS(3054), + [anon_sym_AT_LBRACK] = ACTIONS(3054), }, [499] = { [sym_line_comment] = STATE(499), [sym_block_comment] = STATE(499), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1398), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1396), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [aux_sym__array_repeat1] = STATE(469), - [sym_identifier] = ACTIONS(1299), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_RBRACK] = ACTIONS(3062), - [anon_sym_struct] = ACTIONS(1315), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1347), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(3056), + [sym_identifier] = ACTIONS(3058), + [anon_sym_LF] = ACTIONS(3058), + [anon_sym_CR] = ACTIONS(3058), + [anon_sym_CR_LF] = ACTIONS(3058), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_as] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_const] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym___global] = ACTIONS(3058), + [anon_sym_type] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_LT_EQ] = ACTIONS(3058), + [anon_sym_GT_EQ] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_struct] = ACTIONS(3058), + [anon_sym_union] = ACTIONS(3058), + [anon_sym_pub] = ACTIONS(3058), + [anon_sym_mut] = ACTIONS(3058), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_interface] = ACTIONS(3058), + [anon_sym_PLUS_PLUS] = ACTIONS(3058), + [anon_sym_DASH_DASH] = ACTIONS(3058), + [anon_sym_QMARK] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_go] = ACTIONS(3058), + [anon_sym_spawn] = ACTIONS(3058), + [anon_sym_json_DOTdecode] = ACTIONS(3058), + [anon_sym_PIPE] = ACTIONS(3058), + [anon_sym_LBRACK2] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [anon_sym_CARET] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT_DASH] = ACTIONS(3058), + [anon_sym_LT_LT] = ACTIONS(3058), + [anon_sym_GT_GT] = ACTIONS(3058), + [anon_sym_GT_GT_GT] = ACTIONS(3058), + [anon_sym_AMP_CARET] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_PIPE_PIPE] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3058), + [sym_none] = ACTIONS(3058), + [sym_true] = ACTIONS(3058), + [sym_false] = ACTIONS(3058), + [sym_nil] = ACTIONS(3058), + [anon_sym_QMARK_DOT] = ACTIONS(3058), + [anon_sym_POUND_LBRACK] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_DOLLARif] = ACTIONS(3058), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3058), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_BANGin] = ACTIONS(3058), + [anon_sym_match] = ACTIONS(3058), + [anon_sym_select] = ACTIONS(3058), + [anon_sym_STAR_EQ] = ACTIONS(3058), + [anon_sym_SLASH_EQ] = ACTIONS(3058), + [anon_sym_PERCENT_EQ] = ACTIONS(3058), + [anon_sym_LT_LT_EQ] = ACTIONS(3058), + [anon_sym_GT_GT_EQ] = ACTIONS(3058), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3058), + [anon_sym_AMP_EQ] = ACTIONS(3058), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3058), + [anon_sym_PLUS_EQ] = ACTIONS(3058), + [anon_sym_DASH_EQ] = ACTIONS(3058), + [anon_sym_PIPE_EQ] = ACTIONS(3058), + [anon_sym_CARET_EQ] = ACTIONS(3058), + [anon_sym_COLON_EQ] = ACTIONS(3058), + [anon_sym_lock] = ACTIONS(3058), + [anon_sym_rlock] = ACTIONS(3058), + [anon_sym_unsafe] = ACTIONS(3058), + [anon_sym_sql] = ACTIONS(3058), + [sym_int_literal] = ACTIONS(3058), + [sym_float_literal] = ACTIONS(3058), + [sym_rune_literal] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_c_SQUOTE] = ACTIONS(3058), + [anon_sym_c_DQUOTE] = ACTIONS(3058), + [anon_sym_r_SQUOTE] = ACTIONS(3058), + [anon_sym_r_DQUOTE] = ACTIONS(3058), + [sym_pseudo_compile_time_identifier] = ACTIONS(3058), + [anon_sym_shared] = ACTIONS(3058), + [anon_sym_map_LBRACK] = ACTIONS(3058), + [anon_sym_chan] = ACTIONS(3058), + [anon_sym_thread] = ACTIONS(3058), + [anon_sym_atomic] = ACTIONS(3058), + [anon_sym_assert] = ACTIONS(3058), + [anon_sym_defer] = ACTIONS(3058), + [anon_sym_goto] = ACTIONS(3058), + [anon_sym_break] = ACTIONS(3058), + [anon_sym_continue] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_DOLLARfor] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3058), + [anon_sym_POUND] = ACTIONS(3058), + [anon_sym_asm] = ACTIONS(3058), + [anon_sym_AT_LBRACK] = ACTIONS(3058), }, [500] = { [sym_line_comment] = STATE(500), [sym_block_comment] = STATE(500), + [ts_builtin_sym_end] = ACTIONS(3060), + [sym_identifier] = ACTIONS(3062), + [anon_sym_LF] = ACTIONS(3062), + [anon_sym_CR] = ACTIONS(3062), + [anon_sym_CR_LF] = ACTIONS(3062), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_as] = ACTIONS(3062), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3062), + [anon_sym_const] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_EQ] = ACTIONS(3062), + [anon_sym___global] = ACTIONS(3062), + [anon_sym_type] = ACTIONS(3062), + [anon_sym_fn] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_SLASH] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3062), + [anon_sym_EQ_EQ] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_LT_EQ] = ACTIONS(3062), + [anon_sym_GT_EQ] = ACTIONS(3062), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3062), + [anon_sym_pub] = ACTIONS(3062), + [anon_sym_mut] = ACTIONS(3062), + [anon_sym_enum] = ACTIONS(3062), + [anon_sym_interface] = ACTIONS(3062), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_go] = ACTIONS(3062), + [anon_sym_spawn] = ACTIONS(3062), + [anon_sym_json_DOTdecode] = ACTIONS(3062), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_LBRACK2] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_LT_LT] = ACTIONS(3062), + [anon_sym_GT_GT] = ACTIONS(3062), + [anon_sym_GT_GT_GT] = ACTIONS(3062), + [anon_sym_AMP_CARET] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_or] = ACTIONS(3062), + [sym_none] = ACTIONS(3062), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_nil] = ACTIONS(3062), + [anon_sym_QMARK_DOT] = ACTIONS(3062), + [anon_sym_POUND_LBRACK] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_DOLLARif] = ACTIONS(3062), + [anon_sym_is] = ACTIONS(3062), + [anon_sym_BANGis] = ACTIONS(3062), + [anon_sym_in] = ACTIONS(3062), + [anon_sym_BANGin] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_select] = ACTIONS(3062), + [anon_sym_STAR_EQ] = ACTIONS(3062), + [anon_sym_SLASH_EQ] = ACTIONS(3062), + [anon_sym_PERCENT_EQ] = ACTIONS(3062), + [anon_sym_LT_LT_EQ] = ACTIONS(3062), + [anon_sym_GT_GT_EQ] = ACTIONS(3062), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3062), + [anon_sym_AMP_EQ] = ACTIONS(3062), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3062), + [anon_sym_PLUS_EQ] = ACTIONS(3062), + [anon_sym_DASH_EQ] = ACTIONS(3062), + [anon_sym_PIPE_EQ] = ACTIONS(3062), + [anon_sym_CARET_EQ] = ACTIONS(3062), + [anon_sym_COLON_EQ] = ACTIONS(3062), + [anon_sym_lock] = ACTIONS(3062), + [anon_sym_rlock] = ACTIONS(3062), + [anon_sym_unsafe] = ACTIONS(3062), + [anon_sym_sql] = ACTIONS(3062), + [sym_int_literal] = ACTIONS(3062), + [sym_float_literal] = ACTIONS(3062), + [sym_rune_literal] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_c_SQUOTE] = ACTIONS(3062), + [anon_sym_c_DQUOTE] = ACTIONS(3062), + [anon_sym_r_SQUOTE] = ACTIONS(3062), + [anon_sym_r_DQUOTE] = ACTIONS(3062), + [sym_pseudo_compile_time_identifier] = ACTIONS(3062), + [anon_sym_shared] = ACTIONS(3062), + [anon_sym_map_LBRACK] = ACTIONS(3062), + [anon_sym_chan] = ACTIONS(3062), + [anon_sym_thread] = ACTIONS(3062), + [anon_sym_atomic] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_defer] = ACTIONS(3062), + [anon_sym_goto] = ACTIONS(3062), + [anon_sym_break] = ACTIONS(3062), + [anon_sym_continue] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_DOLLARfor] = ACTIONS(3062), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_POUND] = ACTIONS(3062), + [anon_sym_asm] = ACTIONS(3062), + [anon_sym_AT_LBRACK] = ACTIONS(3062), + }, + [501] = { + [sym_line_comment] = STATE(501), + [sym_block_comment] = STATE(501), [ts_builtin_sym_end] = ACTIONS(3064), [sym_identifier] = ACTIONS(3066), [anon_sym_LF] = ACTIONS(3066), @@ -80813,7 +81224,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(3066), [anon_sym___global] = ACTIONS(3066), [anon_sym_type] = ACTIONS(3066), - [anon_sym_PIPE] = ACTIONS(3066), [anon_sym_fn] = ACTIONS(3066), [anon_sym_PLUS] = ACTIONS(3066), [anon_sym_DASH] = ACTIONS(3066), @@ -80840,6 +81250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(3066), [anon_sym_spawn] = ACTIONS(3066), [anon_sym_json_DOTdecode] = ACTIONS(3066), + [anon_sym_PIPE] = ACTIONS(3066), [anon_sym_LBRACK2] = ACTIONS(3066), [anon_sym_TILDE] = ACTIONS(3066), [anon_sym_CARET] = ACTIONS(3066), @@ -80910,348 +81321,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(3066), [anon_sym_AT_LBRACK] = ACTIONS(3066), }, - [501] = { - [sym_line_comment] = STATE(501), - [sym_block_comment] = STATE(501), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4432), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, [502] = { [sym_line_comment] = STATE(502), [sym_block_comment] = STATE(502), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4453), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), + [ts_builtin_sym_end] = ACTIONS(3068), + [sym_identifier] = ACTIONS(3070), + [anon_sym_LF] = ACTIONS(3070), + [anon_sym_CR] = ACTIONS(3070), + [anon_sym_CR_LF] = ACTIONS(3070), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3070), + [anon_sym_as] = ACTIONS(3070), [anon_sym_LBRACE] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [anon_sym_COMMA] = ACTIONS(3070), + [anon_sym_const] = ACTIONS(3070), + [anon_sym_LPAREN] = ACTIONS(3070), + [anon_sym_EQ] = ACTIONS(3070), + [anon_sym___global] = ACTIONS(3070), + [anon_sym_type] = ACTIONS(3070), + [anon_sym_fn] = ACTIONS(3070), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(3070), + [anon_sym_SLASH] = ACTIONS(3070), + [anon_sym_PERCENT] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(3070), + [anon_sym_GT] = ACTIONS(3070), + [anon_sym_EQ_EQ] = ACTIONS(3070), + [anon_sym_BANG_EQ] = ACTIONS(3070), + [anon_sym_LT_EQ] = ACTIONS(3070), + [anon_sym_GT_EQ] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_struct] = ACTIONS(3070), + [anon_sym_union] = ACTIONS(3070), + [anon_sym_pub] = ACTIONS(3070), + [anon_sym_mut] = ACTIONS(3070), + [anon_sym_enum] = ACTIONS(3070), + [anon_sym_interface] = ACTIONS(3070), + [anon_sym_PLUS_PLUS] = ACTIONS(3070), + [anon_sym_DASH_DASH] = ACTIONS(3070), + [anon_sym_QMARK] = ACTIONS(3070), + [anon_sym_BANG] = ACTIONS(3070), + [anon_sym_go] = ACTIONS(3070), + [anon_sym_spawn] = ACTIONS(3070), + [anon_sym_json_DOTdecode] = ACTIONS(3070), + [anon_sym_PIPE] = ACTIONS(3070), + [anon_sym_LBRACK2] = ACTIONS(3070), + [anon_sym_TILDE] = ACTIONS(3070), + [anon_sym_CARET] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT_DASH] = ACTIONS(3070), + [anon_sym_LT_LT] = ACTIONS(3070), + [anon_sym_GT_GT] = ACTIONS(3070), + [anon_sym_GT_GT_GT] = ACTIONS(3070), + [anon_sym_AMP_CARET] = ACTIONS(3070), + [anon_sym_AMP_AMP] = ACTIONS(3070), + [anon_sym_PIPE_PIPE] = ACTIONS(3070), + [anon_sym_or] = ACTIONS(3070), + [sym_none] = ACTIONS(3070), + [sym_true] = ACTIONS(3070), + [sym_false] = ACTIONS(3070), + [sym_nil] = ACTIONS(3070), + [anon_sym_QMARK_DOT] = ACTIONS(3070), + [anon_sym_POUND_LBRACK] = ACTIONS(3070), + [anon_sym_if] = ACTIONS(3070), + [anon_sym_DOLLARif] = ACTIONS(3070), + [anon_sym_is] = ACTIONS(3070), + [anon_sym_BANGis] = ACTIONS(3070), + [anon_sym_in] = ACTIONS(3070), + [anon_sym_BANGin] = ACTIONS(3070), + [anon_sym_match] = ACTIONS(3070), + [anon_sym_select] = ACTIONS(3070), + [anon_sym_STAR_EQ] = ACTIONS(3070), + [anon_sym_SLASH_EQ] = ACTIONS(3070), + [anon_sym_PERCENT_EQ] = ACTIONS(3070), + [anon_sym_LT_LT_EQ] = ACTIONS(3070), + [anon_sym_GT_GT_EQ] = ACTIONS(3070), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3070), + [anon_sym_AMP_EQ] = ACTIONS(3070), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3070), + [anon_sym_PLUS_EQ] = ACTIONS(3070), + [anon_sym_DASH_EQ] = ACTIONS(3070), + [anon_sym_PIPE_EQ] = ACTIONS(3070), + [anon_sym_CARET_EQ] = ACTIONS(3070), + [anon_sym_COLON_EQ] = ACTIONS(3070), + [anon_sym_lock] = ACTIONS(3070), + [anon_sym_rlock] = ACTIONS(3070), + [anon_sym_unsafe] = ACTIONS(3070), + [anon_sym_sql] = ACTIONS(3070), + [sym_int_literal] = ACTIONS(3070), + [sym_float_literal] = ACTIONS(3070), + [sym_rune_literal] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_c_SQUOTE] = ACTIONS(3070), + [anon_sym_c_DQUOTE] = ACTIONS(3070), + [anon_sym_r_SQUOTE] = ACTIONS(3070), + [anon_sym_r_DQUOTE] = ACTIONS(3070), + [sym_pseudo_compile_time_identifier] = ACTIONS(3070), + [anon_sym_shared] = ACTIONS(3070), + [anon_sym_map_LBRACK] = ACTIONS(3070), + [anon_sym_chan] = ACTIONS(3070), + [anon_sym_thread] = ACTIONS(3070), + [anon_sym_atomic] = ACTIONS(3070), + [anon_sym_assert] = ACTIONS(3070), + [anon_sym_defer] = ACTIONS(3070), + [anon_sym_goto] = ACTIONS(3070), + [anon_sym_break] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(3070), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_DOLLARfor] = ACTIONS(3070), + [anon_sym_for] = ACTIONS(3070), + [anon_sym_POUND] = ACTIONS(3070), + [anon_sym_asm] = ACTIONS(3070), + [anon_sym_AT_LBRACK] = ACTIONS(3070), }, [503] = { [sym_line_comment] = STATE(503), [sym_block_comment] = STATE(503), - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3887), - [sym_expression_list] = STATE(4469), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1399), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1398), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [aux_sym__array_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(3072), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1404), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -81261,112 +81556,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [504] = { [sym_line_comment] = STATE(504), [sym_block_comment] = STATE(504), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2905), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2908), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2938), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2945), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), [anon_sym_RBRACK] = ACTIONS(3074), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), [sym_int_literal] = ACTIONS(3076), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -81376,112 +81671,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [505] = { [sym_line_comment] = STATE(505), [sym_block_comment] = STATE(505), - [sym__expression] = STATE(2704), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2973), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2972), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), [anon_sym_RBRACK] = ACTIONS(3078), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(3080), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -81491,112 +81786,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [506] = { [sym_line_comment] = STATE(506), [sym_block_comment] = STATE(506), - [sym__expression] = STATE(1776), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(850), - [sym_mutable_expression] = STATE(3265), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(961), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(661), + [sym_mutable_expression] = STATE(1477), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(789), - [anon_sym_go] = ACTIONS(791), - [anon_sym_spawn] = ACTIONS(793), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(797), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(799), - [anon_sym_LT_DASH] = ACTIONS(801), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(811), - [anon_sym_lock] = ACTIONS(813), - [anon_sym_rlock] = ACTIONS(813), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_LT_DASH] = ACTIONS(2137), + [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(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -81606,112 +81901,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [507] = { [sym_line_comment] = STATE(507), [sym_block_comment] = STATE(507), - [sym__expression] = STATE(2639), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(773), - [sym_mutable_expression] = STATE(4460), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2831), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_RBRACK] = ACTIONS(3082), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -81721,112 +82016,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [508] = { [sym_line_comment] = STATE(508), [sym_block_comment] = STATE(508), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2948), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2951), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2965), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2994), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(3100), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_RBRACK] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(3102), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(3086), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -81836,112 +82131,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [509] = { [sym_line_comment] = STATE(509), [sym_block_comment] = STATE(509), - [sym__expression] = STATE(2801), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2988), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2982), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(3104), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_RBRACK] = ACTIONS(3088), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(3090), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -81951,112 +82246,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [510] = { [sym_line_comment] = STATE(510), [sym_block_comment] = STATE(510), - [sym__expression] = STATE(2450), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(3928), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1083), + [sym__expression] = STATE(1945), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(751), + [sym_mutable_expression] = STATE(3326), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3092), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1111), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3106), - [anon_sym_lock] = ACTIONS(3108), - [anon_sym_rlock] = ACTIONS(3108), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_go] = ACTIONS(3102), + [anon_sym_spawn] = ACTIONS(3104), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3096), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3108), + [anon_sym_LT_DASH] = ACTIONS(3110), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(3112), + [anon_sym_lock] = ACTIONS(3114), + [anon_sym_rlock] = ACTIONS(3114), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -82066,112 +82361,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [511] = { [sym_line_comment] = STATE(511), [sym_block_comment] = STATE(511), - [sym__expression] = STATE(2305), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(624), - [sym_mutable_expression] = STATE(3562), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(1816), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(868), + [sym_mutable_expression] = STATE(3325), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2523), - [anon_sym_LT_DASH] = ACTIONS(2525), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_go] = ACTIONS(807), + [anon_sym_spawn] = ACTIONS(809), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_LT_DASH] = ACTIONS(817), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(827), + [anon_sym_lock] = ACTIONS(829), + [anon_sym_rlock] = ACTIONS(829), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -82181,112 +82476,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [512] = { [sym_line_comment] = STATE(512), [sym_block_comment] = STATE(512), - [sym__expression] = STATE(2787), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2939), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2930), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3110), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_RBRACK] = ACTIONS(3116), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(3118), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -82296,112 +82591,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [513] = { [sym_line_comment] = STATE(513), [sym_block_comment] = STATE(513), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2956), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2935), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2689), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(3112), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_RBRACK] = ACTIONS(3120), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(3114), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -82411,112 +82706,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [514] = { [sym_line_comment] = STATE(514), [sym_block_comment] = STATE(514), - [sym__expression] = STATE(962), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(653), - [sym_mutable_expression] = STATE(1442), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2967), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2926), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_RBRACK] = ACTIONS(3122), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_CARET] = ACTIONS(2555), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym_LT_DASH] = ACTIONS(2567), - [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(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(3124), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -82526,112 +82821,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [515] = { [sym_line_comment] = STATE(515), [sym_block_comment] = STATE(515), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2917), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2924), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2718), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(896), + [sym_mutable_expression] = STATE(4539), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(3116), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(3118), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -82641,112 +82936,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [516] = { [sym_line_comment] = STATE(516), [sym_block_comment] = STATE(516), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2890), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2901), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2856), + [sym__expression_without_blocks] = STATE(2869), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_expression_without_blocks_list] = STATE(4666), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(3120), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(3122), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -82756,112 +83051,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [517] = { [sym_line_comment] = STATE(517), [sym_block_comment] = STATE(517), - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2856), + [sym__expression_without_blocks] = STATE(2869), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_expression_without_blocks_list] = STATE(4668), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3124), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -82871,112 +83166,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [518] = { [sym_line_comment] = STATE(518), [sym_block_comment] = STATE(518), - [sym__expression] = STATE(2546), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(870), - [sym_mutable_expression] = STATE(3268), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2609), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4084), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym__definite_range] = STATE(4704), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(3146), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2405), - [anon_sym_go] = ACTIONS(2407), - [anon_sym_spawn] = ACTIONS(2409), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2401), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(2417), - [anon_sym_lock] = ACTIONS(2419), - [anon_sym_rlock] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_go] = ACTIONS(3150), + [anon_sym_spawn] = ACTIONS(3152), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_CARET] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3156), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3158), + [anon_sym_lock] = ACTIONS(3160), + [anon_sym_rlock] = ACTIONS(3160), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -82986,112 +83281,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [519] = { [sym_line_comment] = STATE(519), [sym_block_comment] = STATE(519), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2906), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2899), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2761), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(896), + [sym_mutable_expression] = STATE(4465), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(3126), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(3128), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -83101,112 +83396,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [520] = { [sym_line_comment] = STATE(520), [sym_block_comment] = STATE(520), - [sym__expression] = STATE(2571), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(4005), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym__definite_range] = STATE(4488), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2984), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2981), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(3132), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_RBRACK] = ACTIONS(3162), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_go] = ACTIONS(3136), - [anon_sym_spawn] = ACTIONS(3138), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_CARET] = ACTIONS(3130), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3142), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3144), - [anon_sym_lock] = ACTIONS(3146), - [anon_sym_rlock] = ACTIONS(3146), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(3164), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -83216,112 +83511,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [521] = { [sym_line_comment] = STATE(521), [sym_block_comment] = STATE(521), - [sym__expression] = STATE(1778), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(790), - [sym_mutable_expression] = STATE(3267), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3148), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2925), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2983), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_RBRACK] = ACTIONS(3166), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_go] = ACTIONS(3156), - [anon_sym_spawn] = ACTIONS(3158), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_CARET] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_LT_DASH] = ACTIONS(3164), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(3166), - [anon_sym_lock] = ACTIONS(3168), - [anon_sym_rlock] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(3168), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -83331,112 +83626,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [522] = { [sym_line_comment] = STATE(522), [sym_block_comment] = STATE(522), - [sym__expression] = STATE(2768), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(773), - [sym_mutable_expression] = STATE(4388), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(1817), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(768), + [sym_mutable_expression] = STATE(3322), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3092), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_go] = ACTIONS(3102), + [anon_sym_spawn] = ACTIONS(3104), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3096), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3108), + [anon_sym_LT_DASH] = ACTIONS(3110), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(3112), + [anon_sym_lock] = ACTIONS(3114), + [anon_sym_rlock] = ACTIONS(3114), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -83446,112 +83741,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [523] = { [sym_line_comment] = STATE(523), [sym_block_comment] = STATE(523), - [sym__expression] = STATE(2610), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(695), - [sym_mutable_expression] = STATE(3268), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2570), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(687), + [sym_mutable_expression] = STATE(3326), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_go] = ACTIONS(2909), + [anon_sym_spawn] = ACTIONS(2911), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_LT_DASH] = ACTIONS(2917), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(2919), + [anon_sym_lock] = ACTIONS(2921), + [anon_sym_rlock] = ACTIONS(2921), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -83561,112 +83856,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [524] = { [sym_line_comment] = STATE(524), [sym_block_comment] = STATE(524), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2919), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2927), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2798), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(896), + [sym_mutable_expression] = STATE(4544), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(3170), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(3172), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -83676,112 +83971,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [525] = { [sym_line_comment] = STATE(525), [sym_block_comment] = STATE(525), - [sym__expression] = STATE(2779), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(773), - [sym_mutable_expression] = STATE(4373), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2627), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(924), + [sym_mutable_expression] = STATE(3326), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -83791,112 +84086,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [526] = { [sym_line_comment] = STATE(526), [sym_block_comment] = STATE(526), - [sym__expression] = STATE(2824), - [sym__expression_without_blocks] = STATE(2827), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_expression_without_blocks_list] = STATE(4398), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2992), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2991), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_RBRACK] = ACTIONS(3170), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(3172), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -83906,112 +84201,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [527] = { [sym_line_comment] = STATE(527), [sym_block_comment] = STATE(527), - [sym__expression] = STATE(2824), - [sym__expression_without_blocks] = STATE(2827), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_expression_without_blocks_list] = STATE(4399), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2771), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(896), + [sym_mutable_expression] = STATE(4398), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -84021,112 +84316,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [528] = { [sym_line_comment] = STATE(528), [sym_block_comment] = STATE(528), - [sym__expression] = STATE(2546), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(582), - [sym_mutable_expression] = STATE(3268), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2823), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(3174), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2405), - [anon_sym_go] = ACTIONS(2407), - [anon_sym_spawn] = ACTIONS(2409), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2401), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(2417), - [anon_sym_lock] = ACTIONS(2419), - [anon_sym_rlock] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -84136,112 +84431,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [529] = { [sym_line_comment] = STATE(529), [sym_block_comment] = STATE(529), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2942), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2940), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2570), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(853), + [sym_mutable_expression] = STATE(3326), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(3174), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(3176), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_go] = ACTIONS(2909), + [anon_sym_spawn] = ACTIONS(2911), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_LT_DASH] = ACTIONS(2917), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(2919), + [anon_sym_lock] = ACTIONS(2921), + [anon_sym_rlock] = ACTIONS(2921), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -84251,112 +84546,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [530] = { [sym_line_comment] = STATE(530), [sym_block_comment] = STATE(530), - [sym__expression] = STATE(2766), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(773), - [sym_mutable_expression] = STATE(4315), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2660), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(896), + [sym_mutable_expression] = STATE(4582), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -84366,112 +84661,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [531] = { [sym_line_comment] = STATE(531), [sym_block_comment] = STATE(531), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2896), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2945), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2825), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(896), + [sym_mutable_expression] = STATE(4407), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(3178), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(3180), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -84481,73 +84776,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [532] = { [sym_line_comment] = STATE(532), [sym_block_comment] = STATE(532), - [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), + [sym__expression] = STATE(213), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), [sym_if_expression] = STATE(476), [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), [sym_match_expression] = STATE(476), [sym_select_expression] = STATE(476), [sym_lock_expression] = STATE(476), [sym_unsafe_expression] = STATE(476), [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_mutability_modifiers] = STATE(896), - [sym_mutable_expression] = STATE(1103), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3182), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_mutability_modifiers] = STATE(857), + [sym_mutable_expression] = STATE(1109), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3176), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_LBRACE] = ACTIONS(3178), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_fn] = ACTIONS(485), [anon_sym_PLUS] = ACTIONS(31), @@ -84596,112 +84891,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [533] = { [sym_line_comment] = STATE(533), [sym_block_comment] = STATE(533), - [sym__expression] = STATE(2765), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(773), - [sym_mutable_expression] = STATE(4351), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2804), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(896), + [sym_mutable_expression] = STATE(4417), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -84711,112 +85006,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [534] = { [sym_line_comment] = STATE(534), [sym_block_comment] = STATE(534), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2946), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2900), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2951), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2950), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(3186), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_RBRACK] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(3188), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(3182), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -84826,112 +85121,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [535] = { [sym_line_comment] = STATE(535), [sym_block_comment] = STATE(535), - [sym__expression] = STATE(2805), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(773), - [sym_mutable_expression] = STATE(4326), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2961), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2962), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_RBRACK] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(3186), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -84941,112 +85236,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [536] = { [sym_line_comment] = STATE(536), [sym_block_comment] = STATE(536), - [sym__expression] = STATE(1622), - [sym__expression_without_blocks] = STATE(1814), - [sym__expression_with_blocks] = STATE(1814), - [sym_inc_expression] = STATE(1819), - [sym_dec_expression] = STATE(1819), - [sym_or_block_expression] = STATE(1819), - [sym_option_propagation_expression] = STATE(1819), - [sym_result_propagation_expression] = STATE(1819), - [sym_anon_struct_value_expression] = STATE(1823), - [sym_go_expression] = STATE(1819), - [sym_spawn_expression] = STATE(1819), - [sym_parenthesized_expression] = STATE(1819), - [sym_call_expression] = STATE(1819), - [sym_type_initializer] = STATE(1823), - [sym_function_literal] = STATE(1819), - [sym_reference_expression] = STATE(1833), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1819), - [sym_receive_expression] = STATE(1819), - [sym_binary_expression] = STATE(1819), - [sym_as_type_cast_expression] = STATE(1819), - [sym__max_group] = STATE(1819), - [sym_literal] = STATE(1812), - [sym_map_init_expression] = STATE(1823), - [sym_array_creation] = STATE(1819), - [sym_fixed_array_creation] = STATE(1819), - [sym_selector_expression] = STATE(1819), - [sym_index_expression] = STATE(1819), - [sym_slice_expression] = STATE(1819), - [sym_if_expression] = STATE(1823), - [sym_compile_time_if_expression] = STATE(1823), - [sym_is_expression] = STATE(1819), - [sym_in_expression] = STATE(1819), - [sym_enum_fetch] = STATE(1819), - [sym_match_expression] = STATE(1823), - [sym_select_expression] = STATE(1823), - [sym_lock_expression] = STATE(1823), - [sym_unsafe_expression] = STATE(1823), - [sym_sql_expression] = STATE(1823), - [sym_interpreted_string_literal] = STATE(1811), - [sym_c_string_literal] = STATE(1811), - [sym_raw_string_literal] = STATE(1811), - [sym_mutability_modifiers] = STATE(833), - [sym_mutable_expression] = STATE(3254), - [sym_plain_type] = STATE(4219), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3190), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2993), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(3002), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_fn] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3202), - [anon_sym_struct] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_RBRACK] = ACTIONS(3188), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_go] = ACTIONS(3208), - [anon_sym_spawn] = ACTIONS(3210), - [anon_sym_json_DOTdecode] = ACTIONS(3212), - [anon_sym_LBRACK2] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_CARET] = ACTIONS(3200), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT_DASH] = ACTIONS(3218), - [sym_none] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_nil] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_DOLLARif] = ACTIONS(3224), - [anon_sym_match] = ACTIONS(3226), - [anon_sym_select] = ACTIONS(3228), - [anon_sym_lock] = ACTIONS(3230), - [anon_sym_rlock] = ACTIONS(3230), - [anon_sym_unsafe] = ACTIONS(3232), - [anon_sym_sql] = ACTIONS(3234), - [sym_int_literal] = ACTIONS(3220), - [sym_float_literal] = ACTIONS(3236), - [sym_rune_literal] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(3240), - [anon_sym_c_SQUOTE] = ACTIONS(3242), - [anon_sym_c_DQUOTE] = ACTIONS(3244), - [anon_sym_r_SQUOTE] = ACTIONS(3246), - [anon_sym_r_DQUOTE] = ACTIONS(3248), - [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(3190), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -85056,112 +85351,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [537] = { [sym_line_comment] = STATE(537), [sym_block_comment] = STATE(537), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2958), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2959), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2770), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(896), + [sym_mutable_expression] = STATE(4431), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(3252), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(3254), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -85171,112 +85466,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [538] = { [sym_line_comment] = STATE(538), [sym_block_comment] = STATE(538), - [sym__expression] = STATE(2783), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(773), - [sym_mutable_expression] = STATE(4347), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2763), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(896), + [sym_mutable_expression] = STATE(4443), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -85286,112 +85581,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [539] = { [sym_line_comment] = STATE(539), [sym_block_comment] = STATE(539), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2936), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2937), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(3000), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(3001), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(3256), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_RBRACK] = ACTIONS(3192), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(3258), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(3194), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -85401,112 +85696,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [540] = { [sym_line_comment] = STATE(540), [sym_block_comment] = STATE(540), - [sym__expression] = STATE(2756), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(773), - [sym_mutable_expression] = STATE(4368), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2469), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(3980), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1079), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3196), + [anon_sym_lock] = ACTIONS(3198), + [anon_sym_rlock] = ACTIONS(3198), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -85516,112 +85811,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [541] = { [sym_line_comment] = STATE(541), [sym_block_comment] = STATE(541), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2893), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2885), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2812), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(896), + [sym_mutable_expression] = STATE(4523), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(3260), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(3262), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -85631,112 +85926,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [542] = { [sym_line_comment] = STATE(542), [sym_block_comment] = STATE(542), - [sym__expression] = STATE(2658), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(773), - [sym_mutable_expression] = STATE(4389), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2361), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(865), + [sym_mutable_expression] = STATE(3641), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_struct] = ACTIONS(1717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_go] = ACTIONS(1721), + [anon_sym_spawn] = ACTIONS(1723), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_DASH] = ACTIONS(2173), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(1741), + [anon_sym_lock] = ACTIONS(1743), + [anon_sym_rlock] = ACTIONS(1743), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -85746,112 +86041,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [543] = { [sym_line_comment] = STATE(543), [sym_block_comment] = STATE(543), - [sym__expression] = STATE(2672), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(773), - [sym_mutable_expression] = STATE(4410), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2740), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(896), + [sym_mutable_expression] = STATE(4460), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -85861,112 +86156,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [544] = { [sym_line_comment] = STATE(544), [sym_block_comment] = STATE(544), - [sym__expression] = STATE(1903), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(879), - [sym_mutable_expression] = STATE(3268), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3148), + [sym__expression] = STATE(2700), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(896), + [sym_mutable_expression] = STATE(4502), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_go] = ACTIONS(3156), - [anon_sym_spawn] = ACTIONS(3158), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_CARET] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_LT_DASH] = ACTIONS(3164), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(3166), - [anon_sym_lock] = ACTIONS(3168), - [anon_sym_rlock] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -85976,112 +86271,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [545] = { [sym_line_comment] = STATE(545), [sym_block_comment] = STATE(545), - [sym__expression] = STATE(2746), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(773), - [sym_mutable_expression] = STATE(4431), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2952), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2953), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_RBRACK] = ACTIONS(3200), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(3202), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -86091,112 +86386,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [546] = { [sym_line_comment] = STATE(546), [sym_block_comment] = STATE(546), - [sym__expression] = STATE(2760), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(773), - [sym_mutable_expression] = STATE(4452), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2715), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(896), + [sym_mutable_expression] = STATE(4481), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -86206,112 +86501,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [547] = { [sym_line_comment] = STATE(547), [sym_block_comment] = STATE(547), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2939), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2894), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2764), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(3264), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(3266), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -86321,112 +86616,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [548] = { [sym_line_comment] = STATE(548), [sym_block_comment] = STATE(548), - [sym__expression] = STATE(2778), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(773), - [sym_mutable_expression] = STATE(4468), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2949), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2942), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_RBRACK] = ACTIONS(3206), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(3208), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -86436,112 +86731,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [549] = { [sym_line_comment] = STATE(549), [sym_block_comment] = STATE(549), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2929), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2933), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2995), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2996), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(3268), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_RBRACK] = ACTIONS(3210), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(3270), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(3212), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -86551,112 +86846,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [550] = { [sym_line_comment] = STATE(550), [sym_block_comment] = STATE(550), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2904), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2949), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(1663), + [sym__expression_without_blocks] = STATE(1923), + [sym__expression_with_blocks] = STATE(1923), + [sym_inc_expression] = STATE(1922), + [sym_dec_expression] = STATE(1922), + [sym_or_block_expression] = STATE(1922), + [sym_option_propagation_expression] = STATE(1922), + [sym_result_propagation_expression] = STATE(1922), + [sym_anon_struct_value_expression] = STATE(1921), + [sym_go_expression] = STATE(1922), + [sym_spawn_expression] = STATE(1922), + [sym_parenthesized_expression] = STATE(1922), + [sym_call_expression] = STATE(1922), + [sym_type_initializer] = STATE(1921), + [sym_function_literal] = STATE(1922), + [sym_reference_expression] = STATE(1929), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1922), + [sym_receive_expression] = STATE(1922), + [sym_binary_expression] = STATE(1922), + [sym_as_type_cast_expression] = STATE(1922), + [sym__max_group] = STATE(1922), + [sym_literal] = STATE(1924), + [sym_map_init_expression] = STATE(1921), + [sym_array_creation] = STATE(1922), + [sym_fixed_array_creation] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym_index_expression] = STATE(1922), + [sym_slice_expression] = STATE(1922), + [sym_if_expression] = STATE(1921), + [sym_compile_time_if_expression] = STATE(1921), + [sym_is_expression] = STATE(1922), + [sym_in_expression] = STATE(1922), + [sym_enum_fetch] = STATE(1922), + [sym_match_expression] = STATE(1921), + [sym_select_expression] = STATE(1921), + [sym_lock_expression] = STATE(1921), + [sym_unsafe_expression] = STATE(1921), + [sym_sql_expression] = STATE(1921), + [sym_interpreted_string_literal] = STATE(1925), + [sym_c_string_literal] = STATE(1925), + [sym_raw_string_literal] = STATE(1925), + [sym_mutability_modifiers] = STATE(918), + [sym_mutable_expression] = STATE(3312), + [sym_plain_type] = STATE(4080), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3214), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(3272), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_struct] = ACTIONS(3228), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(3274), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3232), + [anon_sym_spawn] = ACTIONS(3234), + [anon_sym_json_DOTdecode] = ACTIONS(3236), + [anon_sym_LBRACK2] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_CARET] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym_LT_DASH] = ACTIONS(3242), + [sym_none] = ACTIONS(3244), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [sym_nil] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3248), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3252), + [anon_sym_lock] = ACTIONS(3254), + [anon_sym_rlock] = ACTIONS(3254), + [anon_sym_unsafe] = ACTIONS(3256), + [anon_sym_sql] = ACTIONS(3258), + [sym_int_literal] = ACTIONS(3244), + [sym_float_literal] = ACTIONS(3260), + [sym_rune_literal] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3264), + [anon_sym_c_SQUOTE] = ACTIONS(3266), + [anon_sym_c_DQUOTE] = ACTIONS(3268), + [anon_sym_r_SQUOTE] = ACTIONS(3270), + [anon_sym_r_DQUOTE] = ACTIONS(3272), + [sym_pseudo_compile_time_identifier] = ACTIONS(3274), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -86666,72 +86961,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [551] = { [sym_line_comment] = STATE(551), [sym_block_comment] = STATE(551), - [sym__expression] = STATE(225), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2944), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2929), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_RBRACK] = ACTIONS(3276), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(3278), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [552] = { + [sym_line_comment] = STATE(552), + [sym_block_comment] = STATE(552), + [sym__expression] = STATE(220), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), [sym_if_expression] = STATE(476), [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), [sym_match_expression] = STATE(476), [sym_select_expression] = STATE(476), [sym_lock_expression] = STATE(476), [sym_unsafe_expression] = STATE(476), [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3182), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_mutability_modifiers] = STATE(863), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3176), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_LBRACE] = ACTIONS(3178), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_fn] = ACTIONS(485), [anon_sym_PLUS] = ACTIONS(31), @@ -86777,228 +87187,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [552] = { - [sym_line_comment] = STATE(552), - [sym_block_comment] = STATE(552), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(3997), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_struct] = ACTIONS(3290), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_go] = ACTIONS(3294), - [anon_sym_spawn] = ACTIONS(3296), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_CARET] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3302), - [anon_sym_LT_DASH] = ACTIONS(3304), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3314), - [anon_sym_lock] = ACTIONS(3316), - [anon_sym_rlock] = ACTIONS(3316), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, [553] = { [sym_line_comment] = STATE(553), [sym_block_comment] = STATE(553), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(3553), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2583), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -87008,111 +87304,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [554] = { [sym_line_comment] = STATE(554), [sym_block_comment] = STATE(554), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(3555), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(1262), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2671), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_CARET] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_LT_DASH] = ACTIONS(2675), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -87122,225 +87418,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [555] = { [sym_line_comment] = STATE(555), [sym_block_comment] = STATE(555), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [556] = { - [sym_line_comment] = STATE(556), - [sym_block_comment] = STATE(556), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(3553), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(1120), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1196), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_struct] = ACTIONS(1233), + [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(2405), - [anon_sym_go] = ACTIONS(2407), - [anon_sym_spawn] = ACTIONS(2409), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2401), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(2417), - [anon_sym_lock] = ACTIONS(2419), - [anon_sym_rlock] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [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), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [556] = { + [sym_line_comment] = STATE(556), + [sym_block_comment] = STATE(556), + [sym__expression] = STATE(2469), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(3982), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(3146), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_go] = ACTIONS(3150), + [anon_sym_spawn] = ACTIONS(3152), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_CARET] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3156), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3158), + [anon_sym_lock] = ACTIONS(3160), + [anon_sym_rlock] = ACTIONS(3160), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -87350,111 +87646,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [557] = { [sym_line_comment] = STATE(557), [sym_block_comment] = STATE(557), - [sym__expression] = STATE(1772), - [sym__expression_without_blocks] = STATE(1975), - [sym__expression_with_blocks] = STATE(1975), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(1976), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(1976), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(1976), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(1976), - [sym_compile_time_if_expression] = STATE(1976), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(1976), - [sym_select_expression] = STATE(1976), - [sym_lock_expression] = STATE(1976), - [sym_unsafe_expression] = STATE(1976), - [sym_sql_expression] = STATE(1976), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(616), - [sym_plain_type] = STATE(4143), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3338), + [sym__expression] = STATE(2469), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(3980), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(3340), - [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(3342), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(3146), + [anon_sym_struct] = ACTIONS(1095), [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(3344), - [anon_sym_DOLLARif] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3348), - [anon_sym_select] = ACTIONS(3350), - [anon_sym_lock] = ACTIONS(3352), - [anon_sym_rlock] = ACTIONS(3352), - [anon_sym_unsafe] = ACTIONS(3354), - [anon_sym_sql] = ACTIONS(3356), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_DQUOTE] = ACTIONS(755), - [anon_sym_c_SQUOTE] = ACTIONS(757), - [anon_sym_c_DQUOTE] = ACTIONS(759), - [anon_sym_r_SQUOTE] = ACTIONS(761), - [anon_sym_r_DQUOTE] = ACTIONS(763), - [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_go] = ACTIONS(3150), + [anon_sym_spawn] = ACTIONS(3152), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_CARET] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3156), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3158), + [anon_sym_lock] = ACTIONS(3160), + [anon_sym_rlock] = ACTIONS(3160), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -87464,111 +87760,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [558] = { [sym_line_comment] = STATE(558), [sym_block_comment] = STATE(558), - [sym__expression] = STATE(1773), - [sym__expression_without_blocks] = STATE(1975), - [sym__expression_with_blocks] = STATE(1975), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(1976), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(1976), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(1976), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(1976), - [sym_compile_time_if_expression] = STATE(1976), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(1976), - [sym_select_expression] = STATE(1976), - [sym_lock_expression] = STATE(1976), - [sym_unsafe_expression] = STATE(1976), - [sym_sql_expression] = STATE(1976), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(616), - [sym_plain_type] = STATE(4143), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3338), + [sym__expression] = STATE(2469), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(3975), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(3340), - [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(3342), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(3146), + [anon_sym_struct] = ACTIONS(1095), [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(3344), - [anon_sym_DOLLARif] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3348), - [anon_sym_select] = ACTIONS(3350), - [anon_sym_lock] = ACTIONS(3352), - [anon_sym_rlock] = ACTIONS(3352), - [anon_sym_unsafe] = ACTIONS(3354), - [anon_sym_sql] = ACTIONS(3356), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_DQUOTE] = ACTIONS(755), - [anon_sym_c_SQUOTE] = ACTIONS(757), - [anon_sym_c_DQUOTE] = ACTIONS(759), - [anon_sym_r_SQUOTE] = ACTIONS(761), - [anon_sym_r_DQUOTE] = ACTIONS(763), - [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_go] = ACTIONS(3150), + [anon_sym_spawn] = ACTIONS(3152), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_CARET] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3156), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3158), + [anon_sym_lock] = ACTIONS(3160), + [anon_sym_rlock] = ACTIONS(3160), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -87578,111 +87874,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [559] = { [sym_line_comment] = STATE(559), [sym_block_comment] = STATE(559), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(3552), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(1115), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1196), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_struct] = ACTIONS(1233), + [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(2405), - [anon_sym_go] = ACTIONS(2407), - [anon_sym_spawn] = ACTIONS(2409), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2401), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(2417), - [anon_sym_lock] = ACTIONS(2419), - [anon_sym_rlock] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [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), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -87692,111 +87988,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [560] = { [sym_line_comment] = STATE(560), [sym_block_comment] = STATE(560), - [sym__expression] = STATE(1774), - [sym__expression_without_blocks] = STATE(1975), - [sym__expression_with_blocks] = STATE(1975), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(1976), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(1976), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(1976), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(1976), - [sym_compile_time_if_expression] = STATE(1976), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(1976), - [sym_select_expression] = STATE(1976), - [sym_lock_expression] = STATE(1976), - [sym_unsafe_expression] = STATE(1976), - [sym_sql_expression] = STATE(1976), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(616), - [sym_plain_type] = STATE(4143), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3338), + [sym__expression] = STATE(2301), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(3340), - [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(3342), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [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(3344), - [anon_sym_DOLLARif] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3348), - [anon_sym_select] = ACTIONS(3350), - [anon_sym_lock] = ACTIONS(3352), - [anon_sym_rlock] = ACTIONS(3352), - [anon_sym_unsafe] = ACTIONS(3354), - [anon_sym_sql] = ACTIONS(3356), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_DQUOTE] = ACTIONS(755), - [anon_sym_c_SQUOTE] = ACTIONS(757), - [anon_sym_c_DQUOTE] = ACTIONS(759), - [anon_sym_r_SQUOTE] = ACTIONS(761), - [anon_sym_r_DQUOTE] = ACTIONS(763), - [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -87806,111 +88102,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [561] = { [sym_line_comment] = STATE(561), [sym_block_comment] = STATE(561), - [sym__expression] = STATE(2310), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(1262), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4379), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(3364), - [anon_sym_spawn] = ACTIONS(3366), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_CARET] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_LT_DASH] = ACTIONS(3370), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3372), - [anon_sym_lock] = ACTIONS(3374), - [anon_sym_rlock] = ACTIONS(3374), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2671), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_CARET] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_LT_DASH] = ACTIONS(2675), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -87920,111 +88216,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [562] = { [sym_line_comment] = STATE(562), [sym_block_comment] = STATE(562), - [sym__expression] = STATE(2309), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(2469), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(3982), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1079), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(3364), - [anon_sym_spawn] = ACTIONS(3366), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_CARET] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_LT_DASH] = ACTIONS(3370), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3372), - [anon_sym_lock] = ACTIONS(3374), - [anon_sym_rlock] = ACTIONS(3374), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3196), + [anon_sym_lock] = ACTIONS(3198), + [anon_sym_rlock] = ACTIONS(3198), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -88034,111 +88330,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [563] = { [sym_line_comment] = STATE(563), [sym_block_comment] = STATE(563), - [sym__expression] = STATE(2308), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(1114), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1196), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1659), + [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(3362), - [anon_sym_go] = ACTIONS(3364), - [anon_sym_spawn] = ACTIONS(3366), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_CARET] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_LT_DASH] = ACTIONS(3370), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3372), - [anon_sym_lock] = ACTIONS(3374), - [anon_sym_rlock] = ACTIONS(3374), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [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), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -88148,111 +88444,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [564] = { [sym_line_comment] = STATE(564), [sym_block_comment] = STATE(564), - [sym__expression] = STATE(2306), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(2469), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(3975), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1079), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(3364), - [anon_sym_spawn] = ACTIONS(3366), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_CARET] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_LT_DASH] = ACTIONS(3370), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3372), - [anon_sym_lock] = ACTIONS(3374), - [anon_sym_rlock] = ACTIONS(3374), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3196), + [anon_sym_lock] = ACTIONS(3198), + [anon_sym_rlock] = ACTIONS(3198), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -88262,111 +88558,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [565] = { [sym_line_comment] = STATE(565), [sym_block_comment] = STATE(565), - [sym__expression] = STATE(2282), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(1262), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4372), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(3364), - [anon_sym_spawn] = ACTIONS(3366), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_CARET] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_LT_DASH] = ACTIONS(3370), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3372), - [anon_sym_lock] = ACTIONS(3374), - [anon_sym_rlock] = ACTIONS(3374), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2671), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_CARET] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_LT_DASH] = ACTIONS(2675), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -88376,111 +88672,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [566] = { [sym_line_comment] = STATE(566), [sym_block_comment] = STATE(566), - [sym__expression] = STATE(1905), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3148), + [sym__expression] = STATE(2854), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_go] = ACTIONS(3156), - [anon_sym_spawn] = ACTIONS(3158), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_CARET] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_LT_DASH] = ACTIONS(3164), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(3166), - [anon_sym_lock] = ACTIONS(3168), - [anon_sym_rlock] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -88490,111 +88786,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [567] = { [sym_line_comment] = STATE(567), [sym_block_comment] = STATE(567), - [sym__expression] = STATE(1751), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3148), + [sym__expression] = STATE(2467), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_go] = ACTIONS(3156), - [anon_sym_spawn] = ACTIONS(3158), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_CARET] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_LT_DASH] = ACTIONS(3164), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(3166), - [anon_sym_lock] = ACTIONS(3168), - [anon_sym_rlock] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -88604,111 +88900,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [568] = { [sym_line_comment] = STATE(568), [sym_block_comment] = STATE(568), - [sym__expression] = STATE(2285), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(2468), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2523), - [anon_sym_LT_DASH] = ACTIONS(2525), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -88718,67 +89014,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [569] = { [sym_line_comment] = STATE(569), [sym_block_comment] = STATE(569), - [sym__expression] = STATE(1116), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1228), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), + [sym__expression] = STATE(1113), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1196), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -88832,111 +89128,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [570] = { [sym_line_comment] = STATE(570), [sym_block_comment] = STATE(570), - [sym__expression] = STATE(2288), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(2745), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3620), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(3364), - [anon_sym_spawn] = ACTIONS(3366), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_CARET] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_LT_DASH] = ACTIONS(3370), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3372), - [anon_sym_lock] = ACTIONS(3374), - [anon_sym_rlock] = ACTIONS(3374), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -88946,111 +89242,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [571] = { [sym_line_comment] = STATE(571), [sym_block_comment] = STATE(571), - [sym__expression] = STATE(2491), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2196), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_go] = ACTIONS(3298), + [anon_sym_spawn] = ACTIONS(3300), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3290), + [anon_sym_CARET] = ACTIONS(3290), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3308), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3320), + [anon_sym_rlock] = ACTIONS(3320), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -89060,111 +89356,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [572] = { [sym_line_comment] = STATE(572), [sym_block_comment] = STATE(572), - [sym__expression] = STATE(2186), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(3997), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(2465), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3376), - [anon_sym_DASH] = ACTIONS(3376), - [anon_sym_STAR] = ACTIONS(3378), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_go] = ACTIONS(3382), - [anon_sym_spawn] = ACTIONS(3384), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3376), - [anon_sym_CARET] = ACTIONS(3376), - [anon_sym_AMP] = ACTIONS(3386), - [anon_sym_LT_DASH] = ACTIONS(3388), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3390), - [anon_sym_lock] = ACTIONS(3392), - [anon_sym_rlock] = ACTIONS(3392), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -89174,111 +89470,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [573] = { [sym_line_comment] = STATE(573), [sym_block_comment] = STATE(573), - [sym__expression] = STATE(958), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2738), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_CARET] = ACTIONS(2555), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym_LT_DASH] = ACTIONS(2567), - [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(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -89288,111 +89584,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [574] = { [sym_line_comment] = STATE(574), [sym_block_comment] = STATE(574), - [sym__expression] = STATE(2122), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(3997), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(2164), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4265), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3376), - [anon_sym_DASH] = ACTIONS(3376), - [anon_sym_STAR] = ACTIONS(3378), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_go] = ACTIONS(3382), - [anon_sym_spawn] = ACTIONS(3384), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3376), - [anon_sym_CARET] = ACTIONS(3376), - [anon_sym_AMP] = ACTIONS(3386), - [anon_sym_LT_DASH] = ACTIONS(3388), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3390), - [anon_sym_lock] = ACTIONS(3392), - [anon_sym_rlock] = ACTIONS(3392), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_go] = ACTIONS(3348), + [anon_sym_spawn] = ACTIONS(3350), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_LT_DASH] = ACTIONS(3354), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3358), + [anon_sym_rlock] = ACTIONS(3358), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -89402,67 +89698,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [575] = { [sym_line_comment] = STATE(575), [sym_block_comment] = STATE(575), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1228), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), + [sym__expression] = STATE(1122), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1196), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -89516,111 +89812,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [576] = { [sym_line_comment] = STATE(576), [sym_block_comment] = STATE(576), - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(2164), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4262), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2523), - [anon_sym_LT_DASH] = ACTIONS(2525), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_go] = ACTIONS(3348), + [anon_sym_spawn] = ACTIONS(3350), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_LT_DASH] = ACTIONS(3354), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3358), + [anon_sym_rlock] = ACTIONS(3358), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -89630,111 +89926,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [577] = { [sym_line_comment] = STATE(577), [sym_block_comment] = STATE(577), - [sym__expression] = STATE(1109), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1228), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(2164), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [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_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3294), [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), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_c_SQUOTE] = ACTIONS(691), - [anon_sym_c_DQUOTE] = ACTIONS(693), - [anon_sym_r_SQUOTE] = ACTIONS(695), - [anon_sym_r_DQUOTE] = ACTIONS(697), - [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_go] = ACTIONS(3348), + [anon_sym_spawn] = ACTIONS(3350), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_LT_DASH] = ACTIONS(3354), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3358), + [anon_sym_rlock] = ACTIONS(3358), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -89744,111 +90040,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [578] = { [sym_line_comment] = STATE(578), [sym_block_comment] = STATE(578), - [sym__expression] = STATE(221), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), - [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), - [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), - [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), - [sym_if_expression] = STATE(476), - [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), - [sym_match_expression] = STATE(476), - [sym_select_expression] = STATE(476), - [sym_lock_expression] = STATE(476), - [sym_unsafe_expression] = STATE(476), - [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4187), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3182), + [sym__expression] = STATE(2810), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3620), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3184), - [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_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(1438), [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), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_c_SQUOTE] = ACTIONS(85), - [anon_sym_c_DQUOTE] = ACTIONS(87), - [anon_sym_r_SQUOTE] = ACTIONS(89), - [anon_sym_r_DQUOTE] = ACTIONS(91), - [sym_pseudo_compile_time_identifier] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -89858,111 +90154,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [579] = { [sym_line_comment] = STATE(579), [sym_block_comment] = STATE(579), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2918), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2921), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(1668), + [sym__expression_without_blocks] = STATE(1923), + [sym__expression_with_blocks] = STATE(1923), + [sym_inc_expression] = STATE(1922), + [sym_dec_expression] = STATE(1922), + [sym_or_block_expression] = STATE(1922), + [sym_option_propagation_expression] = STATE(1922), + [sym_result_propagation_expression] = STATE(1922), + [sym_anon_struct_value_expression] = STATE(1921), + [sym_go_expression] = STATE(1922), + [sym_spawn_expression] = STATE(1922), + [sym_parenthesized_expression] = STATE(1922), + [sym_call_expression] = STATE(1922), + [sym_type_initializer] = STATE(1921), + [sym_function_literal] = STATE(1922), + [sym_reference_expression] = STATE(1929), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1922), + [sym_receive_expression] = STATE(1922), + [sym_binary_expression] = STATE(1922), + [sym_as_type_cast_expression] = STATE(1922), + [sym__max_group] = STATE(1922), + [sym_literal] = STATE(1924), + [sym_map_init_expression] = STATE(1921), + [sym_array_creation] = STATE(1922), + [sym_fixed_array_creation] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym_index_expression] = STATE(1922), + [sym_slice_expression] = STATE(1922), + [sym_if_expression] = STATE(1921), + [sym_compile_time_if_expression] = STATE(1921), + [sym_is_expression] = STATE(1922), + [sym_in_expression] = STATE(1922), + [sym_enum_fetch] = STATE(1922), + [sym_match_expression] = STATE(1921), + [sym_select_expression] = STATE(1921), + [sym_lock_expression] = STATE(1921), + [sym_unsafe_expression] = STATE(1921), + [sym_sql_expression] = STATE(1921), + [sym_interpreted_string_literal] = STATE(1925), + [sym_c_string_literal] = STATE(1925), + [sym_raw_string_literal] = STATE(1925), + [sym_mutability_modifiers] = STATE(943), + [sym_plain_type] = STATE(4080), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3214), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_struct] = ACTIONS(3228), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3232), + [anon_sym_spawn] = ACTIONS(3234), + [anon_sym_json_DOTdecode] = ACTIONS(3236), + [anon_sym_LBRACK2] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_CARET] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym_LT_DASH] = ACTIONS(3242), + [sym_none] = ACTIONS(3244), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [sym_nil] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3248), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3252), + [anon_sym_lock] = ACTIONS(3254), + [anon_sym_rlock] = ACTIONS(3254), + [anon_sym_unsafe] = ACTIONS(3256), + [anon_sym_sql] = ACTIONS(3258), + [sym_int_literal] = ACTIONS(3244), + [sym_float_literal] = ACTIONS(3260), + [sym_rune_literal] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3264), + [anon_sym_c_SQUOTE] = ACTIONS(3266), + [anon_sym_c_DQUOTE] = ACTIONS(3268), + [anon_sym_r_SQUOTE] = ACTIONS(3270), + [anon_sym_r_DQUOTE] = ACTIONS(3272), + [sym_pseudo_compile_time_identifier] = ACTIONS(3274), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -89972,111 +90268,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [580] = { [sym_line_comment] = STATE(580), [sym_block_comment] = STATE(580), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(3555), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2161), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2405), - [anon_sym_go] = ACTIONS(2407), - [anon_sym_spawn] = ACTIONS(2409), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2401), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(2417), - [anon_sym_lock] = ACTIONS(2419), - [anon_sym_rlock] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_go] = ACTIONS(3298), + [anon_sym_spawn] = ACTIONS(3300), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3290), + [anon_sym_CARET] = ACTIONS(3290), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3308), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3320), + [anon_sym_rlock] = ACTIONS(3320), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -90086,111 +90382,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [581] = { [sym_line_comment] = STATE(581), [sym_block_comment] = STATE(581), - [sym__expression] = STATE(2173), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(3997), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(2198), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3376), - [anon_sym_DASH] = ACTIONS(3376), - [anon_sym_STAR] = ACTIONS(3378), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_go] = ACTIONS(3382), - [anon_sym_spawn] = ACTIONS(3384), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3376), - [anon_sym_CARET] = ACTIONS(3376), - [anon_sym_AMP] = ACTIONS(3386), - [anon_sym_LT_DASH] = ACTIONS(3388), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3390), - [anon_sym_lock] = ACTIONS(3392), - [anon_sym_rlock] = ACTIONS(3392), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_go] = ACTIONS(3298), + [anon_sym_spawn] = ACTIONS(3300), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3290), + [anon_sym_CARET] = ACTIONS(3290), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3308), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3320), + [anon_sym_rlock] = ACTIONS(3320), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -90200,111 +90496,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [582] = { [sym_line_comment] = STATE(582), [sym_block_comment] = STATE(582), - [sym__expression] = STATE(2602), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2405), - [anon_sym_go] = ACTIONS(2407), - [anon_sym_spawn] = ACTIONS(2409), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2401), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(2417), - [anon_sym_lock] = ACTIONS(2419), - [anon_sym_rlock] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2671), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_CARET] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_LT_DASH] = ACTIONS(2675), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -90314,111 +90610,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [583] = { [sym_line_comment] = STATE(583), [sym_block_comment] = STATE(583), - [sym__expression] = STATE(2271), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(3997), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(2299), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_go] = ACTIONS(3294), - [anon_sym_spawn] = ACTIONS(3296), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_CARET] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3302), - [anon_sym_LT_DASH] = ACTIONS(3304), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3314), - [anon_sym_lock] = ACTIONS(3316), - [anon_sym_rlock] = ACTIONS(3316), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_go] = ACTIONS(3348), + [anon_sym_spawn] = ACTIONS(3350), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_LT_DASH] = ACTIONS(3354), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3358), + [anon_sym_rlock] = ACTIONS(3358), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -90428,111 +90724,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [584] = { [sym_line_comment] = STATE(584), [sym_block_comment] = STATE(584), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(3552), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(1704), + [sym__expression_without_blocks] = STATE(1923), + [sym__expression_with_blocks] = STATE(1923), + [sym_inc_expression] = STATE(1922), + [sym_dec_expression] = STATE(1922), + [sym_or_block_expression] = STATE(1922), + [sym_option_propagation_expression] = STATE(1922), + [sym_result_propagation_expression] = STATE(1922), + [sym_anon_struct_value_expression] = STATE(1921), + [sym_go_expression] = STATE(1922), + [sym_spawn_expression] = STATE(1922), + [sym_parenthesized_expression] = STATE(1922), + [sym_call_expression] = STATE(1922), + [sym_type_initializer] = STATE(1921), + [sym_function_literal] = STATE(1922), + [sym_reference_expression] = STATE(1929), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1922), + [sym_receive_expression] = STATE(1922), + [sym_binary_expression] = STATE(1922), + [sym_as_type_cast_expression] = STATE(1922), + [sym__max_group] = STATE(1922), + [sym_literal] = STATE(1924), + [sym_map_init_expression] = STATE(1921), + [sym_array_creation] = STATE(1922), + [sym_fixed_array_creation] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym_index_expression] = STATE(1922), + [sym_slice_expression] = STATE(1922), + [sym_if_expression] = STATE(1921), + [sym_compile_time_if_expression] = STATE(1921), + [sym_is_expression] = STATE(1922), + [sym_in_expression] = STATE(1922), + [sym_enum_fetch] = STATE(1922), + [sym_match_expression] = STATE(1921), + [sym_select_expression] = STATE(1921), + [sym_lock_expression] = STATE(1921), + [sym_unsafe_expression] = STATE(1921), + [sym_sql_expression] = STATE(1921), + [sym_interpreted_string_literal] = STATE(1925), + [sym_c_string_literal] = STATE(1925), + [sym_raw_string_literal] = STATE(1925), + [sym_mutability_modifiers] = STATE(943), + [sym_plain_type] = STATE(4080), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3214), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_struct] = ACTIONS(3228), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3232), + [anon_sym_spawn] = ACTIONS(3234), + [anon_sym_json_DOTdecode] = ACTIONS(3236), + [anon_sym_LBRACK2] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_CARET] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym_LT_DASH] = ACTIONS(3242), + [sym_none] = ACTIONS(3244), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [sym_nil] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3248), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3252), + [anon_sym_lock] = ACTIONS(3254), + [anon_sym_rlock] = ACTIONS(3254), + [anon_sym_unsafe] = ACTIONS(3256), + [anon_sym_sql] = ACTIONS(3258), + [sym_int_literal] = ACTIONS(3244), + [sym_float_literal] = ACTIONS(3260), + [sym_rune_literal] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3264), + [anon_sym_c_SQUOTE] = ACTIONS(3266), + [anon_sym_c_DQUOTE] = ACTIONS(3268), + [anon_sym_r_SQUOTE] = ACTIONS(3270), + [anon_sym_r_DQUOTE] = ACTIONS(3272), + [sym_pseudo_compile_time_identifier] = ACTIONS(3274), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -90542,111 +90838,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [585] = { [sym_line_comment] = STATE(585), [sym_block_comment] = STATE(585), - [sym__expression] = STATE(1668), - [sym__expression_without_blocks] = STATE(1814), - [sym__expression_with_blocks] = STATE(1814), - [sym_inc_expression] = STATE(1819), - [sym_dec_expression] = STATE(1819), - [sym_or_block_expression] = STATE(1819), - [sym_option_propagation_expression] = STATE(1819), - [sym_result_propagation_expression] = STATE(1819), - [sym_anon_struct_value_expression] = STATE(1823), - [sym_go_expression] = STATE(1819), - [sym_spawn_expression] = STATE(1819), - [sym_parenthesized_expression] = STATE(1819), - [sym_call_expression] = STATE(1819), - [sym_type_initializer] = STATE(1823), - [sym_function_literal] = STATE(1819), - [sym_reference_expression] = STATE(1833), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1819), - [sym_receive_expression] = STATE(1819), - [sym_binary_expression] = STATE(1819), - [sym_as_type_cast_expression] = STATE(1819), - [sym__max_group] = STATE(1819), - [sym_literal] = STATE(1812), - [sym_map_init_expression] = STATE(1823), - [sym_array_creation] = STATE(1819), - [sym_fixed_array_creation] = STATE(1819), - [sym_selector_expression] = STATE(1819), - [sym_index_expression] = STATE(1819), - [sym_slice_expression] = STATE(1819), - [sym_if_expression] = STATE(1823), - [sym_compile_time_if_expression] = STATE(1823), - [sym_is_expression] = STATE(1819), - [sym_in_expression] = STATE(1819), - [sym_enum_fetch] = STATE(1819), - [sym_match_expression] = STATE(1823), - [sym_select_expression] = STATE(1823), - [sym_lock_expression] = STATE(1823), - [sym_unsafe_expression] = STATE(1823), - [sym_sql_expression] = STATE(1823), - [sym_interpreted_string_literal] = STATE(1811), - [sym_c_string_literal] = STATE(1811), - [sym_raw_string_literal] = STATE(1811), - [sym_mutability_modifiers] = STATE(614), - [sym_plain_type] = STATE(4219), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3190), + [sym__expression] = STATE(1290), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_fn] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3202), - [anon_sym_struct] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_go] = ACTIONS(3208), - [anon_sym_spawn] = ACTIONS(3210), - [anon_sym_json_DOTdecode] = ACTIONS(3212), - [anon_sym_LBRACK2] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_CARET] = ACTIONS(3200), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT_DASH] = ACTIONS(3218), - [sym_none] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_nil] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_DOLLARif] = ACTIONS(3224), - [anon_sym_match] = ACTIONS(3226), - [anon_sym_select] = ACTIONS(3228), - [anon_sym_lock] = ACTIONS(3230), - [anon_sym_rlock] = ACTIONS(3230), - [anon_sym_unsafe] = ACTIONS(3232), - [anon_sym_sql] = ACTIONS(3234), - [sym_int_literal] = ACTIONS(3220), - [sym_float_literal] = ACTIONS(3236), - [sym_rune_literal] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(3240), - [anon_sym_c_SQUOTE] = ACTIONS(3242), - [anon_sym_c_DQUOTE] = ACTIONS(3244), - [anon_sym_r_SQUOTE] = ACTIONS(3246), - [anon_sym_r_DQUOTE] = ACTIONS(3248), - [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2671), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_CARET] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_LT_DASH] = ACTIONS(2675), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -90656,111 +90952,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [586] = { [sym_line_comment] = STATE(586), [sym_block_comment] = STATE(586), - [sym__expression] = STATE(1770), - [sym__expression_without_blocks] = STATE(1975), - [sym__expression_with_blocks] = STATE(1975), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(1976), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(1976), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(1976), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(1976), - [sym_compile_time_if_expression] = STATE(1976), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(1976), - [sym_select_expression] = STATE(1976), - [sym_lock_expression] = STATE(1976), - [sym_unsafe_expression] = STATE(1976), - [sym_sql_expression] = STATE(1976), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(616), - [sym_plain_type] = STATE(4110), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3338), + [sym__expression] = STATE(2744), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(3340), - [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(3342), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [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(3344), - [anon_sym_DOLLARif] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3348), - [anon_sym_select] = ACTIONS(3350), - [anon_sym_lock] = ACTIONS(3352), - [anon_sym_rlock] = ACTIONS(3352), - [anon_sym_unsafe] = ACTIONS(3354), - [anon_sym_sql] = ACTIONS(3356), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_DQUOTE] = ACTIONS(755), - [anon_sym_c_SQUOTE] = ACTIONS(757), - [anon_sym_c_DQUOTE] = ACTIONS(759), - [anon_sym_r_SQUOTE] = ACTIONS(761), - [anon_sym_r_DQUOTE] = ACTIONS(763), - [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -90770,111 +91066,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [587] = { [sym_line_comment] = STATE(587), [sym_block_comment] = STATE(587), - [sym__expression] = STATE(1770), - [sym__expression_without_blocks] = STATE(1975), - [sym__expression_with_blocks] = STATE(1975), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(1976), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(1976), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(1976), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(1976), - [sym_compile_time_if_expression] = STATE(1976), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(1976), - [sym_select_expression] = STATE(1976), - [sym_lock_expression] = STATE(1976), - [sym_unsafe_expression] = STATE(1976), - [sym_sql_expression] = STATE(1976), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(616), - [sym_plain_type] = STATE(4120), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3338), + [sym__expression] = STATE(2481), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4084), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(3340), - [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(3342), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1095), [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(3344), - [anon_sym_DOLLARif] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3348), - [anon_sym_select] = ACTIONS(3350), - [anon_sym_lock] = ACTIONS(3352), - [anon_sym_rlock] = ACTIONS(3352), - [anon_sym_unsafe] = ACTIONS(3354), - [anon_sym_sql] = ACTIONS(3356), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_DQUOTE] = ACTIONS(755), - [anon_sym_c_SQUOTE] = ACTIONS(757), - [anon_sym_c_DQUOTE] = ACTIONS(759), - [anon_sym_r_SQUOTE] = ACTIONS(761), - [anon_sym_r_DQUOTE] = ACTIONS(763), - [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3196), + [anon_sym_lock] = ACTIONS(3198), + [anon_sym_rlock] = ACTIONS(3198), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -90884,111 +91180,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [588] = { [sym_line_comment] = STATE(588), [sym_block_comment] = STATE(588), - [sym__expression] = STATE(1669), - [sym__expression_without_blocks] = STATE(1814), - [sym__expression_with_blocks] = STATE(1814), - [sym_inc_expression] = STATE(1819), - [sym_dec_expression] = STATE(1819), - [sym_or_block_expression] = STATE(1819), - [sym_option_propagation_expression] = STATE(1819), - [sym_result_propagation_expression] = STATE(1819), - [sym_anon_struct_value_expression] = STATE(1823), - [sym_go_expression] = STATE(1819), - [sym_spawn_expression] = STATE(1819), - [sym_parenthesized_expression] = STATE(1819), - [sym_call_expression] = STATE(1819), - [sym_type_initializer] = STATE(1823), - [sym_function_literal] = STATE(1819), - [sym_reference_expression] = STATE(1833), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1819), - [sym_receive_expression] = STATE(1819), - [sym_binary_expression] = STATE(1819), - [sym_as_type_cast_expression] = STATE(1819), - [sym__max_group] = STATE(1819), - [sym_literal] = STATE(1812), - [sym_map_init_expression] = STATE(1823), - [sym_array_creation] = STATE(1819), - [sym_fixed_array_creation] = STATE(1819), - [sym_selector_expression] = STATE(1819), - [sym_index_expression] = STATE(1819), - [sym_slice_expression] = STATE(1819), - [sym_if_expression] = STATE(1823), - [sym_compile_time_if_expression] = STATE(1823), - [sym_is_expression] = STATE(1819), - [sym_in_expression] = STATE(1819), - [sym_enum_fetch] = STATE(1819), - [sym_match_expression] = STATE(1823), - [sym_select_expression] = STATE(1823), - [sym_lock_expression] = STATE(1823), - [sym_unsafe_expression] = STATE(1823), - [sym_sql_expression] = STATE(1823), - [sym_interpreted_string_literal] = STATE(1811), - [sym_c_string_literal] = STATE(1811), - [sym_raw_string_literal] = STATE(1811), - [sym_mutability_modifiers] = STATE(614), - [sym_plain_type] = STATE(4219), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3190), + [sym__expression] = STATE(1675), + [sym__expression_without_blocks] = STATE(1923), + [sym__expression_with_blocks] = STATE(1923), + [sym_inc_expression] = STATE(1922), + [sym_dec_expression] = STATE(1922), + [sym_or_block_expression] = STATE(1922), + [sym_option_propagation_expression] = STATE(1922), + [sym_result_propagation_expression] = STATE(1922), + [sym_anon_struct_value_expression] = STATE(1921), + [sym_go_expression] = STATE(1922), + [sym_spawn_expression] = STATE(1922), + [sym_parenthesized_expression] = STATE(1922), + [sym_call_expression] = STATE(1922), + [sym_type_initializer] = STATE(1921), + [sym_function_literal] = STATE(1922), + [sym_reference_expression] = STATE(1929), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1922), + [sym_receive_expression] = STATE(1922), + [sym_binary_expression] = STATE(1922), + [sym_as_type_cast_expression] = STATE(1922), + [sym__max_group] = STATE(1922), + [sym_literal] = STATE(1924), + [sym_map_init_expression] = STATE(1921), + [sym_array_creation] = STATE(1922), + [sym_fixed_array_creation] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym_index_expression] = STATE(1922), + [sym_slice_expression] = STATE(1922), + [sym_if_expression] = STATE(1921), + [sym_compile_time_if_expression] = STATE(1921), + [sym_is_expression] = STATE(1922), + [sym_in_expression] = STATE(1922), + [sym_enum_fetch] = STATE(1922), + [sym_match_expression] = STATE(1921), + [sym_select_expression] = STATE(1921), + [sym_lock_expression] = STATE(1921), + [sym_unsafe_expression] = STATE(1921), + [sym_sql_expression] = STATE(1921), + [sym_interpreted_string_literal] = STATE(1925), + [sym_c_string_literal] = STATE(1925), + [sym_raw_string_literal] = STATE(1925), + [sym_mutability_modifiers] = STATE(943), + [sym_plain_type] = STATE(4253), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3214), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_fn] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3202), - [anon_sym_struct] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_struct] = ACTIONS(3228), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_go] = ACTIONS(3208), - [anon_sym_spawn] = ACTIONS(3210), - [anon_sym_json_DOTdecode] = ACTIONS(3212), - [anon_sym_LBRACK2] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_CARET] = ACTIONS(3200), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT_DASH] = ACTIONS(3218), - [sym_none] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_nil] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_DOLLARif] = ACTIONS(3224), - [anon_sym_match] = ACTIONS(3226), - [anon_sym_select] = ACTIONS(3228), - [anon_sym_lock] = ACTIONS(3230), - [anon_sym_rlock] = ACTIONS(3230), - [anon_sym_unsafe] = ACTIONS(3232), - [anon_sym_sql] = ACTIONS(3234), - [sym_int_literal] = ACTIONS(3220), - [sym_float_literal] = ACTIONS(3236), - [sym_rune_literal] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(3240), - [anon_sym_c_SQUOTE] = ACTIONS(3242), - [anon_sym_c_DQUOTE] = ACTIONS(3244), - [anon_sym_r_SQUOTE] = ACTIONS(3246), - [anon_sym_r_DQUOTE] = ACTIONS(3248), - [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3232), + [anon_sym_spawn] = ACTIONS(3234), + [anon_sym_json_DOTdecode] = ACTIONS(3236), + [anon_sym_LBRACK2] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_CARET] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym_LT_DASH] = ACTIONS(3242), + [sym_none] = ACTIONS(3244), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [sym_nil] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3248), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3252), + [anon_sym_lock] = ACTIONS(3254), + [anon_sym_rlock] = ACTIONS(3254), + [anon_sym_unsafe] = ACTIONS(3256), + [anon_sym_sql] = ACTIONS(3258), + [sym_int_literal] = ACTIONS(3244), + [sym_float_literal] = ACTIONS(3260), + [sym_rune_literal] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3264), + [anon_sym_c_SQUOTE] = ACTIONS(3266), + [anon_sym_c_DQUOTE] = ACTIONS(3268), + [anon_sym_r_SQUOTE] = ACTIONS(3270), + [anon_sym_r_DQUOTE] = ACTIONS(3272), + [sym_pseudo_compile_time_identifier] = ACTIONS(3274), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -90998,111 +91294,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [589] = { [sym_line_comment] = STATE(589), [sym_block_comment] = STATE(589), - [sym__expression] = STATE(1631), - [sym__expression_without_blocks] = STATE(1814), - [sym__expression_with_blocks] = STATE(1814), - [sym_inc_expression] = STATE(1819), - [sym_dec_expression] = STATE(1819), - [sym_or_block_expression] = STATE(1819), - [sym_option_propagation_expression] = STATE(1819), - [sym_result_propagation_expression] = STATE(1819), - [sym_anon_struct_value_expression] = STATE(1823), - [sym_go_expression] = STATE(1819), - [sym_spawn_expression] = STATE(1819), - [sym_parenthesized_expression] = STATE(1819), - [sym_call_expression] = STATE(1819), - [sym_type_initializer] = STATE(1823), - [sym_function_literal] = STATE(1819), - [sym_reference_expression] = STATE(1833), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1819), - [sym_receive_expression] = STATE(1819), - [sym_binary_expression] = STATE(1819), - [sym_as_type_cast_expression] = STATE(1819), - [sym__max_group] = STATE(1819), - [sym_literal] = STATE(1812), - [sym_map_init_expression] = STATE(1823), - [sym_array_creation] = STATE(1819), - [sym_fixed_array_creation] = STATE(1819), - [sym_selector_expression] = STATE(1819), - [sym_index_expression] = STATE(1819), - [sym_slice_expression] = STATE(1819), - [sym_if_expression] = STATE(1823), - [sym_compile_time_if_expression] = STATE(1823), - [sym_is_expression] = STATE(1819), - [sym_in_expression] = STATE(1819), - [sym_enum_fetch] = STATE(1819), - [sym_match_expression] = STATE(1823), - [sym_select_expression] = STATE(1823), - [sym_lock_expression] = STATE(1823), - [sym_unsafe_expression] = STATE(1823), - [sym_sql_expression] = STATE(1823), - [sym_interpreted_string_literal] = STATE(1811), - [sym_c_string_literal] = STATE(1811), - [sym_raw_string_literal] = STATE(1811), - [sym_mutability_modifiers] = STATE(614), - [sym_plain_type] = STATE(4219), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3190), + [sym__expression] = STATE(2477), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4084), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_fn] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3202), - [anon_sym_struct] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_go] = ACTIONS(3208), - [anon_sym_spawn] = ACTIONS(3210), - [anon_sym_json_DOTdecode] = ACTIONS(3212), - [anon_sym_LBRACK2] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_CARET] = ACTIONS(3200), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT_DASH] = ACTIONS(3218), - [sym_none] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_nil] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_DOLLARif] = ACTIONS(3224), - [anon_sym_match] = ACTIONS(3226), - [anon_sym_select] = ACTIONS(3228), - [anon_sym_lock] = ACTIONS(3230), - [anon_sym_rlock] = ACTIONS(3230), - [anon_sym_unsafe] = ACTIONS(3232), - [anon_sym_sql] = ACTIONS(3234), - [sym_int_literal] = ACTIONS(3220), - [sym_float_literal] = ACTIONS(3236), - [sym_rune_literal] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(3240), - [anon_sym_c_SQUOTE] = ACTIONS(3242), - [anon_sym_c_DQUOTE] = ACTIONS(3244), - [anon_sym_r_SQUOTE] = ACTIONS(3246), - [anon_sym_r_DQUOTE] = ACTIONS(3248), - [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3196), + [anon_sym_lock] = ACTIONS(3198), + [anon_sym_rlock] = ACTIONS(3198), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -91112,111 +91408,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [590] = { [sym_line_comment] = STATE(590), [sym_block_comment] = STATE(590), - [sym__expression] = STATE(1110), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1228), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [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_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [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), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_c_SQUOTE] = ACTIONS(691), - [anon_sym_c_DQUOTE] = ACTIONS(693), - [anon_sym_r_SQUOTE] = ACTIONS(695), - [anon_sym_r_DQUOTE] = ACTIONS(697), - [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -91226,111 +91522,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [591] = { [sym_line_comment] = STATE(591), [sym_block_comment] = STATE(591), - [sym__expression] = STATE(1111), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1228), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(2736), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [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_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [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), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_c_SQUOTE] = ACTIONS(691), - [anon_sym_c_DQUOTE] = ACTIONS(693), - [anon_sym_r_SQUOTE] = ACTIONS(695), - [anon_sym_r_DQUOTE] = ACTIONS(697), - [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -91340,111 +91636,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [592] = { [sym_line_comment] = STATE(592), [sym_block_comment] = STATE(592), - [sym__expression] = STATE(2811), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2476), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4084), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3196), + [anon_sym_lock] = ACTIONS(3198), + [anon_sym_rlock] = ACTIONS(3198), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -91454,67 +91750,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [593] = { [sym_line_comment] = STATE(593), [sym_block_comment] = STATE(593), - [sym__expression] = STATE(1107), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1228), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), + [sym__expression] = STATE(1112), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1196), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -91568,111 +91864,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [594] = { [sym_line_comment] = STATE(594), [sym_block_comment] = STATE(594), - [sym__expression] = STATE(1112), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1228), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(1675), + [sym__expression_without_blocks] = STATE(1923), + [sym__expression_with_blocks] = STATE(1923), + [sym_inc_expression] = STATE(1922), + [sym_dec_expression] = STATE(1922), + [sym_or_block_expression] = STATE(1922), + [sym_option_propagation_expression] = STATE(1922), + [sym_result_propagation_expression] = STATE(1922), + [sym_anon_struct_value_expression] = STATE(1921), + [sym_go_expression] = STATE(1922), + [sym_spawn_expression] = STATE(1922), + [sym_parenthesized_expression] = STATE(1922), + [sym_call_expression] = STATE(1922), + [sym_type_initializer] = STATE(1921), + [sym_function_literal] = STATE(1922), + [sym_reference_expression] = STATE(1929), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1922), + [sym_receive_expression] = STATE(1922), + [sym_binary_expression] = STATE(1922), + [sym_as_type_cast_expression] = STATE(1922), + [sym__max_group] = STATE(1922), + [sym_literal] = STATE(1924), + [sym_map_init_expression] = STATE(1921), + [sym_array_creation] = STATE(1922), + [sym_fixed_array_creation] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym_index_expression] = STATE(1922), + [sym_slice_expression] = STATE(1922), + [sym_if_expression] = STATE(1921), + [sym_compile_time_if_expression] = STATE(1921), + [sym_is_expression] = STATE(1922), + [sym_in_expression] = STATE(1922), + [sym_enum_fetch] = STATE(1922), + [sym_match_expression] = STATE(1921), + [sym_select_expression] = STATE(1921), + [sym_lock_expression] = STATE(1921), + [sym_unsafe_expression] = STATE(1921), + [sym_sql_expression] = STATE(1921), + [sym_interpreted_string_literal] = STATE(1925), + [sym_c_string_literal] = STATE(1925), + [sym_raw_string_literal] = STATE(1925), + [sym_mutability_modifiers] = STATE(943), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3214), [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_DOT] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_struct] = ACTIONS(3228), [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), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_c_SQUOTE] = ACTIONS(691), - [anon_sym_c_DQUOTE] = ACTIONS(693), - [anon_sym_r_SQUOTE] = ACTIONS(695), - [anon_sym_r_DQUOTE] = ACTIONS(697), - [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3232), + [anon_sym_spawn] = ACTIONS(3234), + [anon_sym_json_DOTdecode] = ACTIONS(3236), + [anon_sym_LBRACK2] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_CARET] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym_LT_DASH] = ACTIONS(3242), + [sym_none] = ACTIONS(3244), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [sym_nil] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3248), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3252), + [anon_sym_lock] = ACTIONS(3254), + [anon_sym_rlock] = ACTIONS(3254), + [anon_sym_unsafe] = ACTIONS(3256), + [anon_sym_sql] = ACTIONS(3258), + [sym_int_literal] = ACTIONS(3244), + [sym_float_literal] = ACTIONS(3260), + [sym_rune_literal] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3264), + [anon_sym_c_SQUOTE] = ACTIONS(3266), + [anon_sym_c_DQUOTE] = ACTIONS(3268), + [anon_sym_r_SQUOTE] = ACTIONS(3270), + [anon_sym_r_DQUOTE] = ACTIONS(3272), + [sym_pseudo_compile_time_identifier] = ACTIONS(3274), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -91682,111 +91978,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [595] = { [sym_line_comment] = STATE(595), [sym_block_comment] = STATE(595), - [sym__expression] = STATE(976), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(1675), + [sym__expression_without_blocks] = STATE(1923), + [sym__expression_with_blocks] = STATE(1923), + [sym_inc_expression] = STATE(1922), + [sym_dec_expression] = STATE(1922), + [sym_or_block_expression] = STATE(1922), + [sym_option_propagation_expression] = STATE(1922), + [sym_result_propagation_expression] = STATE(1922), + [sym_anon_struct_value_expression] = STATE(1921), + [sym_go_expression] = STATE(1922), + [sym_spawn_expression] = STATE(1922), + [sym_parenthesized_expression] = STATE(1922), + [sym_call_expression] = STATE(1922), + [sym_type_initializer] = STATE(1921), + [sym_function_literal] = STATE(1922), + [sym_reference_expression] = STATE(1929), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1922), + [sym_receive_expression] = STATE(1922), + [sym_binary_expression] = STATE(1922), + [sym_as_type_cast_expression] = STATE(1922), + [sym__max_group] = STATE(1922), + [sym_literal] = STATE(1924), + [sym_map_init_expression] = STATE(1921), + [sym_array_creation] = STATE(1922), + [sym_fixed_array_creation] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym_index_expression] = STATE(1922), + [sym_slice_expression] = STATE(1922), + [sym_if_expression] = STATE(1921), + [sym_compile_time_if_expression] = STATE(1921), + [sym_is_expression] = STATE(1922), + [sym_in_expression] = STATE(1922), + [sym_enum_fetch] = STATE(1922), + [sym_match_expression] = STATE(1921), + [sym_select_expression] = STATE(1921), + [sym_lock_expression] = STATE(1921), + [sym_unsafe_expression] = STATE(1921), + [sym_sql_expression] = STATE(1921), + [sym_interpreted_string_literal] = STATE(1925), + [sym_c_string_literal] = STATE(1925), + [sym_raw_string_literal] = STATE(1925), + [sym_mutability_modifiers] = STATE(943), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3214), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3394), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_struct] = ACTIONS(3228), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_go] = ACTIONS(3400), - [anon_sym_spawn] = ACTIONS(3402), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_CARET] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_LT_DASH] = ACTIONS(3406), - [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(3408), - [anon_sym_lock] = ACTIONS(3410), - [anon_sym_rlock] = ACTIONS(3410), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3232), + [anon_sym_spawn] = ACTIONS(3234), + [anon_sym_json_DOTdecode] = ACTIONS(3236), + [anon_sym_LBRACK2] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_CARET] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym_LT_DASH] = ACTIONS(3242), + [sym_none] = ACTIONS(3244), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [sym_nil] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3248), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3252), + [anon_sym_lock] = ACTIONS(3254), + [anon_sym_rlock] = ACTIONS(3254), + [anon_sym_unsafe] = ACTIONS(3256), + [anon_sym_sql] = ACTIONS(3258), + [sym_int_literal] = ACTIONS(3244), + [sym_float_literal] = ACTIONS(3260), + [sym_rune_literal] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3264), + [anon_sym_c_SQUOTE] = ACTIONS(3266), + [anon_sym_c_DQUOTE] = ACTIONS(3268), + [anon_sym_r_SQUOTE] = ACTIONS(3270), + [anon_sym_r_DQUOTE] = ACTIONS(3272), + [sym_pseudo_compile_time_identifier] = ACTIONS(3274), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -91796,111 +92092,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [596] = { [sym_line_comment] = STATE(596), [sym_block_comment] = STATE(596), - [sym__expression] = STATE(971), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2469), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4084), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3394), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_go] = ACTIONS(3400), - [anon_sym_spawn] = ACTIONS(3402), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_CARET] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_LT_DASH] = ACTIONS(3406), - [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(3408), - [anon_sym_lock] = ACTIONS(3410), - [anon_sym_rlock] = ACTIONS(3410), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3196), + [anon_sym_lock] = ACTIONS(3198), + [anon_sym_rlock] = ACTIONS(3198), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -91910,111 +92206,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [597] = { [sym_line_comment] = STATE(597), [sym_block_comment] = STATE(597), - [sym__expression] = STATE(224), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), - [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), - [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), - [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), - [sym_if_expression] = STATE(476), - [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), - [sym_match_expression] = STATE(476), - [sym_select_expression] = STATE(476), - [sym_lock_expression] = STATE(476), - [sym_unsafe_expression] = STATE(476), - [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3182), + [sym__expression] = STATE(1262), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3184), - [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_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(1372), [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), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_c_SQUOTE] = ACTIONS(85), - [anon_sym_c_DQUOTE] = ACTIONS(87), - [anon_sym_r_SQUOTE] = ACTIONS(89), - [anon_sym_r_DQUOTE] = ACTIONS(91), - [sym_pseudo_compile_time_identifier] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2671), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_CARET] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_LT_DASH] = ACTIONS(2675), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -92024,111 +92320,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [598] = { [sym_line_comment] = STATE(598), [sym_block_comment] = STATE(598), - [sym__expression] = STATE(2761), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3561), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2457), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4084), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2787), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3196), + [anon_sym_lock] = ACTIONS(3198), + [anon_sym_rlock] = ACTIONS(3198), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -92138,111 +92434,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [599] = { [sym_line_comment] = STATE(599), [sym_block_comment] = STATE(599), - [sym__expression] = STATE(2285), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4206), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(1707), + [sym__expression_without_blocks] = STATE(1923), + [sym__expression_with_blocks] = STATE(1923), + [sym_inc_expression] = STATE(1922), + [sym_dec_expression] = STATE(1922), + [sym_or_block_expression] = STATE(1922), + [sym_option_propagation_expression] = STATE(1922), + [sym_result_propagation_expression] = STATE(1922), + [sym_anon_struct_value_expression] = STATE(1921), + [sym_go_expression] = STATE(1922), + [sym_spawn_expression] = STATE(1922), + [sym_parenthesized_expression] = STATE(1922), + [sym_call_expression] = STATE(1922), + [sym_type_initializer] = STATE(1921), + [sym_function_literal] = STATE(1922), + [sym_reference_expression] = STATE(1929), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1922), + [sym_receive_expression] = STATE(1922), + [sym_binary_expression] = STATE(1922), + [sym_as_type_cast_expression] = STATE(1922), + [sym__max_group] = STATE(1922), + [sym_literal] = STATE(1924), + [sym_map_init_expression] = STATE(1921), + [sym_array_creation] = STATE(1922), + [sym_fixed_array_creation] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym_index_expression] = STATE(1922), + [sym_slice_expression] = STATE(1922), + [sym_if_expression] = STATE(1921), + [sym_compile_time_if_expression] = STATE(1921), + [sym_is_expression] = STATE(1922), + [sym_in_expression] = STATE(1922), + [sym_enum_fetch] = STATE(1922), + [sym_match_expression] = STATE(1921), + [sym_select_expression] = STATE(1921), + [sym_lock_expression] = STATE(1921), + [sym_unsafe_expression] = STATE(1921), + [sym_sql_expression] = STATE(1921), + [sym_interpreted_string_literal] = STATE(1925), + [sym_c_string_literal] = STATE(1925), + [sym_raw_string_literal] = STATE(1925), + [sym_mutability_modifiers] = STATE(943), + [sym_plain_type] = STATE(4080), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3214), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_struct] = ACTIONS(3228), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2523), - [anon_sym_LT_DASH] = ACTIONS(2525), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3232), + [anon_sym_spawn] = ACTIONS(3234), + [anon_sym_json_DOTdecode] = ACTIONS(3236), + [anon_sym_LBRACK2] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_CARET] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym_LT_DASH] = ACTIONS(3242), + [sym_none] = ACTIONS(3244), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [sym_nil] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3248), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3252), + [anon_sym_lock] = ACTIONS(3254), + [anon_sym_rlock] = ACTIONS(3254), + [anon_sym_unsafe] = ACTIONS(3256), + [anon_sym_sql] = ACTIONS(3258), + [sym_int_literal] = ACTIONS(3244), + [sym_float_literal] = ACTIONS(3260), + [sym_rune_literal] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3264), + [anon_sym_c_SQUOTE] = ACTIONS(3266), + [anon_sym_c_DQUOTE] = ACTIONS(3268), + [anon_sym_r_SQUOTE] = ACTIONS(3270), + [anon_sym_r_DQUOTE] = ACTIONS(3272), + [sym_pseudo_compile_time_identifier] = ACTIONS(3274), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -92252,111 +92548,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [600] = { [sym_line_comment] = STATE(600), [sym_block_comment] = STATE(600), - [sym__expression] = STATE(2689), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(1258), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2671), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_CARET] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_LT_DASH] = ACTIONS(2675), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -92366,111 +92662,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [601] = { [sym_line_comment] = STATE(601), [sym_block_comment] = STATE(601), - [sym__expression] = STATE(1770), - [sym__expression_without_blocks] = STATE(1975), - [sym__expression_with_blocks] = STATE(1975), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(1976), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(1976), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(1976), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(1976), - [sym_compile_time_if_expression] = STATE(1976), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(1976), - [sym_select_expression] = STATE(1976), - [sym_lock_expression] = STATE(1976), - [sym_unsafe_expression] = STATE(1976), - [sym_sql_expression] = STATE(1976), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(616), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3338), + [sym__expression] = STATE(2349), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(3340), - [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(3342), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_struct] = ACTIONS(1717), [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(3344), - [anon_sym_DOLLARif] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3348), - [anon_sym_select] = ACTIONS(3350), - [anon_sym_lock] = ACTIONS(3352), - [anon_sym_rlock] = ACTIONS(3352), - [anon_sym_unsafe] = ACTIONS(3354), - [anon_sym_sql] = ACTIONS(3356), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_DQUOTE] = ACTIONS(755), - [anon_sym_c_SQUOTE] = ACTIONS(757), - [anon_sym_c_DQUOTE] = ACTIONS(759), - [anon_sym_r_SQUOTE] = ACTIONS(761), - [anon_sym_r_DQUOTE] = ACTIONS(763), - [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_go] = ACTIONS(1721), + [anon_sym_spawn] = ACTIONS(1723), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_DASH] = ACTIONS(2173), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(1741), + [anon_sym_lock] = ACTIONS(1743), + [anon_sym_rlock] = ACTIONS(1743), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -92480,111 +92776,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [602] = { [sym_line_comment] = STATE(602), [sym_block_comment] = STATE(602), - [sym__expression] = STATE(1751), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4235), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3148), + [sym__expression] = STATE(1660), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(848), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3366), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3368), + [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(3154), - [anon_sym_go] = ACTIONS(3156), - [anon_sym_spawn] = ACTIONS(3158), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_CARET] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_LT_DASH] = ACTIONS(3164), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(3166), - [anon_sym_lock] = ACTIONS(3168), - [anon_sym_rlock] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [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), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -92594,111 +92890,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [603] = { [sym_line_comment] = STATE(603), [sym_block_comment] = STATE(603), - [sym__expression] = STATE(2628), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2728), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -92708,111 +93004,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [604] = { [sym_line_comment] = STATE(604), [sym_block_comment] = STATE(604), - [sym__expression] = STATE(2169), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(3997), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(2758), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3376), - [anon_sym_DASH] = ACTIONS(3376), - [anon_sym_STAR] = ACTIONS(3378), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_go] = ACTIONS(3382), - [anon_sym_spawn] = ACTIONS(3384), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3376), - [anon_sym_CARET] = ACTIONS(3376), - [anon_sym_AMP] = ACTIONS(3386), - [anon_sym_LT_DASH] = ACTIONS(3388), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3390), - [anon_sym_lock] = ACTIONS(3392), - [anon_sym_rlock] = ACTIONS(3392), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -92822,111 +93118,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [605] = { [sym_line_comment] = STATE(605), [sym_block_comment] = STATE(605), - [sym__expression] = STATE(970), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2368), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3394), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(1717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_go] = ACTIONS(3400), - [anon_sym_spawn] = ACTIONS(3402), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_CARET] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_LT_DASH] = ACTIONS(3406), - [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(3408), - [anon_sym_lock] = ACTIONS(3410), - [anon_sym_rlock] = ACTIONS(3410), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -92936,111 +93232,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [606] = { [sym_line_comment] = STATE(606), [sym_block_comment] = STATE(606), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1814), - [sym__expression_with_blocks] = STATE(1814), - [sym_inc_expression] = STATE(1819), - [sym_dec_expression] = STATE(1819), - [sym_or_block_expression] = STATE(1819), - [sym_option_propagation_expression] = STATE(1819), - [sym_result_propagation_expression] = STATE(1819), - [sym_anon_struct_value_expression] = STATE(1823), - [sym_go_expression] = STATE(1819), - [sym_spawn_expression] = STATE(1819), - [sym_parenthesized_expression] = STATE(1819), - [sym_call_expression] = STATE(1819), - [sym_type_initializer] = STATE(1823), - [sym_function_literal] = STATE(1819), - [sym_reference_expression] = STATE(1833), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1819), - [sym_receive_expression] = STATE(1819), - [sym_binary_expression] = STATE(1819), - [sym_as_type_cast_expression] = STATE(1819), - [sym__max_group] = STATE(1819), - [sym_literal] = STATE(1812), - [sym_map_init_expression] = STATE(1823), - [sym_array_creation] = STATE(1819), - [sym_fixed_array_creation] = STATE(1819), - [sym_selector_expression] = STATE(1819), - [sym_index_expression] = STATE(1819), - [sym_slice_expression] = STATE(1819), - [sym_if_expression] = STATE(1823), - [sym_compile_time_if_expression] = STATE(1823), - [sym_is_expression] = STATE(1819), - [sym_in_expression] = STATE(1819), - [sym_enum_fetch] = STATE(1819), - [sym_match_expression] = STATE(1823), - [sym_select_expression] = STATE(1823), - [sym_lock_expression] = STATE(1823), - [sym_unsafe_expression] = STATE(1823), - [sym_sql_expression] = STATE(1823), - [sym_interpreted_string_literal] = STATE(1811), - [sym_c_string_literal] = STATE(1811), - [sym_raw_string_literal] = STATE(1811), - [sym_mutability_modifiers] = STATE(614), - [sym_plain_type] = STATE(4219), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3190), + [sym__expression] = STATE(1706), + [sym__expression_without_blocks] = STATE(1923), + [sym__expression_with_blocks] = STATE(1923), + [sym_inc_expression] = STATE(1922), + [sym_dec_expression] = STATE(1922), + [sym_or_block_expression] = STATE(1922), + [sym_option_propagation_expression] = STATE(1922), + [sym_result_propagation_expression] = STATE(1922), + [sym_anon_struct_value_expression] = STATE(1921), + [sym_go_expression] = STATE(1922), + [sym_spawn_expression] = STATE(1922), + [sym_parenthesized_expression] = STATE(1922), + [sym_call_expression] = STATE(1922), + [sym_type_initializer] = STATE(1921), + [sym_function_literal] = STATE(1922), + [sym_reference_expression] = STATE(1929), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1922), + [sym_receive_expression] = STATE(1922), + [sym_binary_expression] = STATE(1922), + [sym_as_type_cast_expression] = STATE(1922), + [sym__max_group] = STATE(1922), + [sym_literal] = STATE(1924), + [sym_map_init_expression] = STATE(1921), + [sym_array_creation] = STATE(1922), + [sym_fixed_array_creation] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym_index_expression] = STATE(1922), + [sym_slice_expression] = STATE(1922), + [sym_if_expression] = STATE(1921), + [sym_compile_time_if_expression] = STATE(1921), + [sym_is_expression] = STATE(1922), + [sym_in_expression] = STATE(1922), + [sym_enum_fetch] = STATE(1922), + [sym_match_expression] = STATE(1921), + [sym_select_expression] = STATE(1921), + [sym_lock_expression] = STATE(1921), + [sym_unsafe_expression] = STATE(1921), + [sym_sql_expression] = STATE(1921), + [sym_interpreted_string_literal] = STATE(1925), + [sym_c_string_literal] = STATE(1925), + [sym_raw_string_literal] = STATE(1925), + [sym_mutability_modifiers] = STATE(943), + [sym_plain_type] = STATE(4080), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3214), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_fn] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3202), - [anon_sym_struct] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_struct] = ACTIONS(3228), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_go] = ACTIONS(3208), - [anon_sym_spawn] = ACTIONS(3210), - [anon_sym_json_DOTdecode] = ACTIONS(3212), - [anon_sym_LBRACK2] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_CARET] = ACTIONS(3200), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT_DASH] = ACTIONS(3218), - [sym_none] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_nil] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_DOLLARif] = ACTIONS(3224), - [anon_sym_match] = ACTIONS(3226), - [anon_sym_select] = ACTIONS(3228), - [anon_sym_lock] = ACTIONS(3230), - [anon_sym_rlock] = ACTIONS(3230), - [anon_sym_unsafe] = ACTIONS(3232), - [anon_sym_sql] = ACTIONS(3234), - [sym_int_literal] = ACTIONS(3220), - [sym_float_literal] = ACTIONS(3236), - [sym_rune_literal] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(3240), - [anon_sym_c_SQUOTE] = ACTIONS(3242), - [anon_sym_c_DQUOTE] = ACTIONS(3244), - [anon_sym_r_SQUOTE] = ACTIONS(3246), - [anon_sym_r_DQUOTE] = ACTIONS(3248), - [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3232), + [anon_sym_spawn] = ACTIONS(3234), + [anon_sym_json_DOTdecode] = ACTIONS(3236), + [anon_sym_LBRACK2] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_CARET] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym_LT_DASH] = ACTIONS(3242), + [sym_none] = ACTIONS(3244), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [sym_nil] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3248), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3252), + [anon_sym_lock] = ACTIONS(3254), + [anon_sym_rlock] = ACTIONS(3254), + [anon_sym_unsafe] = ACTIONS(3256), + [anon_sym_sql] = ACTIONS(3258), + [sym_int_literal] = ACTIONS(3244), + [sym_float_literal] = ACTIONS(3260), + [sym_rune_literal] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3264), + [anon_sym_c_SQUOTE] = ACTIONS(3266), + [anon_sym_c_DQUOTE] = ACTIONS(3268), + [anon_sym_r_SQUOTE] = ACTIONS(3270), + [anon_sym_r_DQUOTE] = ACTIONS(3272), + [sym_pseudo_compile_time_identifier] = ACTIONS(3274), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -93050,111 +93346,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [607] = { [sym_line_comment] = STATE(607), [sym_block_comment] = STATE(607), - [sym__expression] = STATE(973), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2301), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3394), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_go] = ACTIONS(3400), - [anon_sym_spawn] = ACTIONS(3402), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_CARET] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_LT_DASH] = ACTIONS(3406), - [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(3408), - [anon_sym_lock] = ACTIONS(3410), - [anon_sym_rlock] = ACTIONS(3410), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -93164,111 +93460,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [608] = { [sym_line_comment] = STATE(608), [sym_block_comment] = STATE(608), - [sym__expression] = STATE(2285), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4198), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(2369), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(1717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2523), - [anon_sym_LT_DASH] = ACTIONS(2525), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -93278,111 +93574,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [609] = { [sym_line_comment] = STATE(609), [sym_block_comment] = STATE(609), - [sym__expression] = STATE(965), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2163), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3394), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_go] = ACTIONS(3400), - [anon_sym_spawn] = ACTIONS(3402), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_CARET] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_LT_DASH] = ACTIONS(3406), - [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(3408), - [anon_sym_lock] = ACTIONS(3410), - [anon_sym_rlock] = ACTIONS(3410), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_go] = ACTIONS(3348), + [anon_sym_spawn] = ACTIONS(3350), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_LT_DASH] = ACTIONS(3354), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3358), + [anon_sym_rlock] = ACTIONS(3358), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -93392,111 +93688,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [610] = { [sym_line_comment] = STATE(610), [sym_block_comment] = STATE(610), - [sym__expression] = STATE(974), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3637), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3394), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_go] = ACTIONS(3400), - [anon_sym_spawn] = ACTIONS(3402), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_CARET] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_LT_DASH] = ACTIONS(3406), - [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(3408), - [anon_sym_lock] = ACTIONS(3410), - [anon_sym_rlock] = ACTIONS(3410), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -93506,111 +93802,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [611] = { [sym_line_comment] = STATE(611), [sym_block_comment] = STATE(611), - [sym__expression] = STATE(2256), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(3997), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2970), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2969), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3376), - [anon_sym_DASH] = ACTIONS(3376), - [anon_sym_STAR] = ACTIONS(3378), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_go] = ACTIONS(3382), - [anon_sym_spawn] = ACTIONS(3384), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3376), - [anon_sym_CARET] = ACTIONS(3376), - [anon_sym_AMP] = ACTIONS(3386), - [anon_sym_LT_DASH] = ACTIONS(3388), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3390), - [anon_sym_lock] = ACTIONS(3392), - [anon_sym_rlock] = ACTIONS(3392), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -93620,111 +93916,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [612] = { [sym_line_comment] = STATE(612), [sym_block_comment] = STATE(612), - [sym__expression] = STATE(221), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), - [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), - [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), - [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), - [sym_if_expression] = STATE(476), - [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), - [sym_match_expression] = STATE(476), - [sym_select_expression] = STATE(476), - [sym_lock_expression] = STATE(476), - [sym_unsafe_expression] = STATE(476), - [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4002), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3182), + [sym__expression] = STATE(1705), + [sym__expression_without_blocks] = STATE(1923), + [sym__expression_with_blocks] = STATE(1923), + [sym_inc_expression] = STATE(1922), + [sym_dec_expression] = STATE(1922), + [sym_or_block_expression] = STATE(1922), + [sym_option_propagation_expression] = STATE(1922), + [sym_result_propagation_expression] = STATE(1922), + [sym_anon_struct_value_expression] = STATE(1921), + [sym_go_expression] = STATE(1922), + [sym_spawn_expression] = STATE(1922), + [sym_parenthesized_expression] = STATE(1922), + [sym_call_expression] = STATE(1922), + [sym_type_initializer] = STATE(1921), + [sym_function_literal] = STATE(1922), + [sym_reference_expression] = STATE(1929), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1922), + [sym_receive_expression] = STATE(1922), + [sym_binary_expression] = STATE(1922), + [sym_as_type_cast_expression] = STATE(1922), + [sym__max_group] = STATE(1922), + [sym_literal] = STATE(1924), + [sym_map_init_expression] = STATE(1921), + [sym_array_creation] = STATE(1922), + [sym_fixed_array_creation] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym_index_expression] = STATE(1922), + [sym_slice_expression] = STATE(1922), + [sym_if_expression] = STATE(1921), + [sym_compile_time_if_expression] = STATE(1921), + [sym_is_expression] = STATE(1922), + [sym_in_expression] = STATE(1922), + [sym_enum_fetch] = STATE(1922), + [sym_match_expression] = STATE(1921), + [sym_select_expression] = STATE(1921), + [sym_lock_expression] = STATE(1921), + [sym_unsafe_expression] = STATE(1921), + [sym_sql_expression] = STATE(1921), + [sym_interpreted_string_literal] = STATE(1925), + [sym_c_string_literal] = STATE(1925), + [sym_raw_string_literal] = STATE(1925), + [sym_mutability_modifiers] = STATE(943), + [sym_plain_type] = STATE(4080), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3214), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3184), - [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_DOT] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_struct] = ACTIONS(3228), [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), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_c_SQUOTE] = ACTIONS(85), - [anon_sym_c_DQUOTE] = ACTIONS(87), - [anon_sym_r_SQUOTE] = ACTIONS(89), - [anon_sym_r_DQUOTE] = ACTIONS(91), - [sym_pseudo_compile_time_identifier] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3232), + [anon_sym_spawn] = ACTIONS(3234), + [anon_sym_json_DOTdecode] = ACTIONS(3236), + [anon_sym_LBRACK2] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_CARET] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym_LT_DASH] = ACTIONS(3242), + [sym_none] = ACTIONS(3244), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [sym_nil] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3248), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3252), + [anon_sym_lock] = ACTIONS(3254), + [anon_sym_rlock] = ACTIONS(3254), + [anon_sym_unsafe] = ACTIONS(3256), + [anon_sym_sql] = ACTIONS(3258), + [sym_int_literal] = ACTIONS(3244), + [sym_float_literal] = ACTIONS(3260), + [sym_rune_literal] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3264), + [anon_sym_c_SQUOTE] = ACTIONS(3266), + [anon_sym_c_DQUOTE] = ACTIONS(3268), + [anon_sym_r_SQUOTE] = ACTIONS(3270), + [anon_sym_r_DQUOTE] = ACTIONS(3272), + [sym_pseudo_compile_time_identifier] = ACTIONS(3274), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -93734,111 +94030,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [613] = { [sym_line_comment] = STATE(613), [sym_block_comment] = STATE(613), - [sym__expression] = STATE(2232), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(3997), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(2302), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3376), - [anon_sym_DASH] = ACTIONS(3376), - [anon_sym_STAR] = ACTIONS(3378), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_go] = ACTIONS(3382), - [anon_sym_spawn] = ACTIONS(3384), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3376), - [anon_sym_CARET] = ACTIONS(3376), - [anon_sym_AMP] = ACTIONS(3386), - [anon_sym_LT_DASH] = ACTIONS(3388), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3390), - [anon_sym_lock] = ACTIONS(3392), - [anon_sym_rlock] = ACTIONS(3392), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_go] = ACTIONS(3348), + [anon_sym_spawn] = ACTIONS(3350), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_LT_DASH] = ACTIONS(3354), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3358), + [anon_sym_rlock] = ACTIONS(3358), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -93848,111 +94144,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [614] = { [sym_line_comment] = STATE(614), [sym_block_comment] = STATE(614), - [sym__expression] = STATE(2828), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2300), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_go] = ACTIONS(3348), + [anon_sym_spawn] = ACTIONS(3350), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_LT_DASH] = ACTIONS(3354), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3358), + [anon_sym_rlock] = ACTIONS(3358), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -93962,111 +94258,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [615] = { [sym_line_comment] = STATE(615), [sym_block_comment] = STATE(615), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2487), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4084), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3196), + [anon_sym_lock] = ACTIONS(3198), + [anon_sym_rlock] = ACTIONS(3198), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -94076,111 +94372,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [616] = { [sym_line_comment] = STATE(616), [sym_block_comment] = STATE(616), - [sym__expression] = STATE(2807), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2628), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -94190,111 +94486,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [617] = { [sym_line_comment] = STATE(617), [sym_block_comment] = STATE(617), - [sym__expression] = STATE(1770), - [sym__expression_without_blocks] = STATE(1975), - [sym__expression_with_blocks] = STATE(1975), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(1976), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(1976), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(1976), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(1976), - [sym_compile_time_if_expression] = STATE(1976), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(1976), - [sym_select_expression] = STATE(1976), - [sym_lock_expression] = STATE(1976), - [sym_unsafe_expression] = STATE(1976), - [sym_sql_expression] = STATE(1976), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(616), - [sym_plain_type] = STATE(4143), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3338), + [sym__expression] = STATE(2372), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(3340), - [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(3342), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(1717), [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(3344), - [anon_sym_DOLLARif] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3348), - [anon_sym_select] = ACTIONS(3350), - [anon_sym_lock] = ACTIONS(3352), - [anon_sym_rlock] = ACTIONS(3352), - [anon_sym_unsafe] = ACTIONS(3354), - [anon_sym_sql] = ACTIONS(3356), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_DQUOTE] = ACTIONS(755), - [anon_sym_c_SQUOTE] = ACTIONS(757), - [anon_sym_c_DQUOTE] = ACTIONS(759), - [anon_sym_r_SQUOTE] = ACTIONS(761), - [anon_sym_r_DQUOTE] = ACTIONS(763), - [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -94304,111 +94600,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [618] = { [sym_line_comment] = STATE(618), [sym_block_comment] = STATE(618), - [sym__expression] = STATE(2621), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3561), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2303), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2787), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -94418,111 +94714,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [619] = { [sym_line_comment] = STATE(619), [sym_block_comment] = STATE(619), - [sym__expression] = STATE(223), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), - [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), - [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), - [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), - [sym_if_expression] = STATE(476), - [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), - [sym_match_expression] = STATE(476), - [sym_select_expression] = STATE(476), - [sym_lock_expression] = STATE(476), - [sym_unsafe_expression] = STATE(476), - [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3182), + [sym__expression] = STATE(2483), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4084), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3184), - [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_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1095), [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), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_c_SQUOTE] = ACTIONS(85), - [anon_sym_c_DQUOTE] = ACTIONS(87), - [anon_sym_r_SQUOTE] = ACTIONS(89), - [anon_sym_r_DQUOTE] = ACTIONS(91), - [sym_pseudo_compile_time_identifier] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3196), + [anon_sym_lock] = ACTIONS(3198), + [anon_sym_rlock] = ACTIONS(3198), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -94532,111 +94828,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [620] = { [sym_line_comment] = STATE(620), [sym_block_comment] = STATE(620), - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3645), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2113), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -94646,111 +94942,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [621] = { [sym_line_comment] = STATE(621), [sym_block_comment] = STATE(621), - [sym__expression] = STATE(972), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2164), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3394), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_go] = ACTIONS(3400), - [anon_sym_spawn] = ACTIONS(3402), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_CARET] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_LT_DASH] = ACTIONS(3406), - [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(3408), - [anon_sym_lock] = ACTIONS(3410), - [anon_sym_rlock] = ACTIONS(3410), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_go] = ACTIONS(3348), + [anon_sym_spawn] = ACTIONS(3350), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_LT_DASH] = ACTIONS(3354), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3358), + [anon_sym_rlock] = ACTIONS(3358), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -94760,111 +95056,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [622] = { [sym_line_comment] = STATE(622), [sym_block_comment] = STATE(622), - [sym__expression] = STATE(2439), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -94874,111 +95170,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [623] = { [sym_line_comment] = STATE(623), [sym_block_comment] = STATE(623), - [sym__expression] = STATE(2416), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3645), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2523), - [anon_sym_LT_DASH] = ACTIONS(2525), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -94988,111 +95284,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [624] = { [sym_line_comment] = STATE(624), [sym_block_comment] = STATE(624), - [sym__expression] = STATE(2301), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(1701), + [sym__expression_without_blocks] = STATE(1923), + [sym__expression_with_blocks] = STATE(1923), + [sym_inc_expression] = STATE(1922), + [sym_dec_expression] = STATE(1922), + [sym_or_block_expression] = STATE(1922), + [sym_option_propagation_expression] = STATE(1922), + [sym_result_propagation_expression] = STATE(1922), + [sym_anon_struct_value_expression] = STATE(1921), + [sym_go_expression] = STATE(1922), + [sym_spawn_expression] = STATE(1922), + [sym_parenthesized_expression] = STATE(1922), + [sym_call_expression] = STATE(1922), + [sym_type_initializer] = STATE(1921), + [sym_function_literal] = STATE(1922), + [sym_reference_expression] = STATE(1929), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1922), + [sym_receive_expression] = STATE(1922), + [sym_binary_expression] = STATE(1922), + [sym_as_type_cast_expression] = STATE(1922), + [sym__max_group] = STATE(1922), + [sym_literal] = STATE(1924), + [sym_map_init_expression] = STATE(1921), + [sym_array_creation] = STATE(1922), + [sym_fixed_array_creation] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym_index_expression] = STATE(1922), + [sym_slice_expression] = STATE(1922), + [sym_if_expression] = STATE(1921), + [sym_compile_time_if_expression] = STATE(1921), + [sym_is_expression] = STATE(1922), + [sym_in_expression] = STATE(1922), + [sym_enum_fetch] = STATE(1922), + [sym_match_expression] = STATE(1921), + [sym_select_expression] = STATE(1921), + [sym_lock_expression] = STATE(1921), + [sym_unsafe_expression] = STATE(1921), + [sym_sql_expression] = STATE(1921), + [sym_interpreted_string_literal] = STATE(1925), + [sym_c_string_literal] = STATE(1925), + [sym_raw_string_literal] = STATE(1925), + [sym_mutability_modifiers] = STATE(943), + [sym_plain_type] = STATE(4080), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3214), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_struct] = ACTIONS(3228), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2523), - [anon_sym_LT_DASH] = ACTIONS(2525), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3232), + [anon_sym_spawn] = ACTIONS(3234), + [anon_sym_json_DOTdecode] = ACTIONS(3236), + [anon_sym_LBRACK2] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_CARET] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym_LT_DASH] = ACTIONS(3242), + [sym_none] = ACTIONS(3244), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [sym_nil] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3248), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3252), + [anon_sym_lock] = ACTIONS(3254), + [anon_sym_rlock] = ACTIONS(3254), + [anon_sym_unsafe] = ACTIONS(3256), + [anon_sym_sql] = ACTIONS(3258), + [sym_int_literal] = ACTIONS(3244), + [sym_float_literal] = ACTIONS(3260), + [sym_rune_literal] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3264), + [anon_sym_c_SQUOTE] = ACTIONS(3266), + [anon_sym_c_DQUOTE] = ACTIONS(3268), + [anon_sym_r_SQUOTE] = ACTIONS(3270), + [anon_sym_r_DQUOTE] = ACTIONS(3272), + [sym_pseudo_compile_time_identifier] = ACTIONS(3274), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -95102,111 +95398,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [625] = { [sym_line_comment] = STATE(625), [sym_block_comment] = STATE(625), - [sym__expression] = STATE(1761), - [sym__expression_without_blocks] = STATE(1975), - [sym__expression_with_blocks] = STATE(1975), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(1976), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(1976), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(1976), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(1976), - [sym_compile_time_if_expression] = STATE(1976), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(1976), - [sym_select_expression] = STATE(1976), - [sym_lock_expression] = STATE(1976), - [sym_unsafe_expression] = STATE(1976), - [sym_sql_expression] = STATE(1976), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(616), - [sym_plain_type] = STATE(4143), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3338), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3609), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(3340), - [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(3342), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [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(3344), - [anon_sym_DOLLARif] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3348), - [anon_sym_select] = ACTIONS(3350), - [anon_sym_lock] = ACTIONS(3352), - [anon_sym_rlock] = ACTIONS(3352), - [anon_sym_unsafe] = ACTIONS(3354), - [anon_sym_sql] = ACTIONS(3356), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_DQUOTE] = ACTIONS(755), - [anon_sym_c_SQUOTE] = ACTIONS(757), - [anon_sym_c_DQUOTE] = ACTIONS(759), - [anon_sym_r_SQUOTE] = ACTIONS(761), - [anon_sym_r_DQUOTE] = ACTIONS(763), - [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -95216,111 +95512,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [626] = { [sym_line_comment] = STATE(626), [sym_block_comment] = STATE(626), - [sym__expression] = STATE(1287), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(1262), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2491), - [anon_sym_go] = ACTIONS(2493), - [anon_sym_spawn] = ACTIONS(2495), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_AMP] = ACTIONS(2497), - [anon_sym_LT_DASH] = ACTIONS(2499), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(2501), - [anon_sym_lock] = ACTIONS(2503), - [anon_sym_rlock] = ACTIONS(2503), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -95330,111 +95626,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [627] = { [sym_line_comment] = STATE(627), [sym_block_comment] = STATE(627), - [sym__expression] = STATE(1292), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(1262), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4379), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2491), - [anon_sym_go] = ACTIONS(2493), - [anon_sym_spawn] = ACTIONS(2495), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_AMP] = ACTIONS(2497), - [anon_sym_LT_DASH] = ACTIONS(2499), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(2501), - [anon_sym_lock] = ACTIONS(2503), - [anon_sym_rlock] = ACTIONS(2503), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -95444,111 +95740,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [628] = { [sym_line_comment] = STATE(628), [sym_block_comment] = STATE(628), - [sym__expression] = STATE(1284), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(1679), + [sym__expression_without_blocks] = STATE(1923), + [sym__expression_with_blocks] = STATE(1923), + [sym_inc_expression] = STATE(1922), + [sym_dec_expression] = STATE(1922), + [sym_or_block_expression] = STATE(1922), + [sym_option_propagation_expression] = STATE(1922), + [sym_result_propagation_expression] = STATE(1922), + [sym_anon_struct_value_expression] = STATE(1921), + [sym_go_expression] = STATE(1922), + [sym_spawn_expression] = STATE(1922), + [sym_parenthesized_expression] = STATE(1922), + [sym_call_expression] = STATE(1922), + [sym_type_initializer] = STATE(1921), + [sym_function_literal] = STATE(1922), + [sym_reference_expression] = STATE(1929), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1922), + [sym_receive_expression] = STATE(1922), + [sym_binary_expression] = STATE(1922), + [sym_as_type_cast_expression] = STATE(1922), + [sym__max_group] = STATE(1922), + [sym_literal] = STATE(1924), + [sym_map_init_expression] = STATE(1921), + [sym_array_creation] = STATE(1922), + [sym_fixed_array_creation] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym_index_expression] = STATE(1922), + [sym_slice_expression] = STATE(1922), + [sym_if_expression] = STATE(1921), + [sym_compile_time_if_expression] = STATE(1921), + [sym_is_expression] = STATE(1922), + [sym_in_expression] = STATE(1922), + [sym_enum_fetch] = STATE(1922), + [sym_match_expression] = STATE(1921), + [sym_select_expression] = STATE(1921), + [sym_lock_expression] = STATE(1921), + [sym_unsafe_expression] = STATE(1921), + [sym_sql_expression] = STATE(1921), + [sym_interpreted_string_literal] = STATE(1925), + [sym_c_string_literal] = STATE(1925), + [sym_raw_string_literal] = STATE(1925), + [sym_mutability_modifiers] = STATE(943), + [sym_plain_type] = STATE(4080), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3214), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_struct] = ACTIONS(3228), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2491), - [anon_sym_go] = ACTIONS(2493), - [anon_sym_spawn] = ACTIONS(2495), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_AMP] = ACTIONS(2497), - [anon_sym_LT_DASH] = ACTIONS(2499), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(2501), - [anon_sym_lock] = ACTIONS(2503), - [anon_sym_rlock] = ACTIONS(2503), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3232), + [anon_sym_spawn] = ACTIONS(3234), + [anon_sym_json_DOTdecode] = ACTIONS(3236), + [anon_sym_LBRACK2] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_CARET] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym_LT_DASH] = ACTIONS(3242), + [sym_none] = ACTIONS(3244), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [sym_nil] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3248), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3252), + [anon_sym_lock] = ACTIONS(3254), + [anon_sym_rlock] = ACTIONS(3254), + [anon_sym_unsafe] = ACTIONS(3256), + [anon_sym_sql] = ACTIONS(3258), + [sym_int_literal] = ACTIONS(3244), + [sym_float_literal] = ACTIONS(3260), + [sym_rune_literal] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3264), + [anon_sym_c_SQUOTE] = ACTIONS(3266), + [anon_sym_c_DQUOTE] = ACTIONS(3268), + [anon_sym_r_SQUOTE] = ACTIONS(3270), + [anon_sym_r_DQUOTE] = ACTIONS(3272), + [sym_pseudo_compile_time_identifier] = ACTIONS(3274), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -95558,111 +95854,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [629] = { [sym_line_comment] = STATE(629), [sym_block_comment] = STATE(629), - [sym__expression] = STATE(1283), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2974), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2975), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2491), - [anon_sym_go] = ACTIONS(2493), - [anon_sym_spawn] = ACTIONS(2495), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_AMP] = ACTIONS(2497), - [anon_sym_LT_DASH] = ACTIONS(2499), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(2501), - [anon_sym_lock] = ACTIONS(2503), - [anon_sym_rlock] = ACTIONS(2503), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -95672,111 +95968,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [630] = { [sym_line_comment] = STATE(630), [sym_block_comment] = STATE(630), - [sym__expression] = STATE(1255), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(1803), + [sym__expression_without_blocks] = STATE(2115), + [sym__expression_with_blocks] = STATE(2115), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [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_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(828), + [sym_plain_type] = STATE(4355), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3394), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3396), + [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(3398), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2491), - [anon_sym_go] = ACTIONS(2493), - [anon_sym_spawn] = ACTIONS(2495), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_AMP] = ACTIONS(2497), - [anon_sym_LT_DASH] = ACTIONS(2499), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(2501), - [anon_sym_lock] = ACTIONS(2503), - [anon_sym_rlock] = ACTIONS(2503), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [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(3400), + [anon_sym_DOLLARif] = ACTIONS(3402), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_select] = ACTIONS(3406), + [anon_sym_lock] = ACTIONS(3408), + [anon_sym_rlock] = ACTIONS(3408), + [anon_sym_unsafe] = ACTIONS(3410), + [anon_sym_sql] = ACTIONS(3412), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -95786,111 +96082,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [631] = { [sym_line_comment] = STATE(631), [sym_block_comment] = STATE(631), - [sym__expression] = STATE(1278), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(1678), + [sym__expression_without_blocks] = STATE(1923), + [sym__expression_with_blocks] = STATE(1923), + [sym_inc_expression] = STATE(1922), + [sym_dec_expression] = STATE(1922), + [sym_or_block_expression] = STATE(1922), + [sym_option_propagation_expression] = STATE(1922), + [sym_result_propagation_expression] = STATE(1922), + [sym_anon_struct_value_expression] = STATE(1921), + [sym_go_expression] = STATE(1922), + [sym_spawn_expression] = STATE(1922), + [sym_parenthesized_expression] = STATE(1922), + [sym_call_expression] = STATE(1922), + [sym_type_initializer] = STATE(1921), + [sym_function_literal] = STATE(1922), + [sym_reference_expression] = STATE(1929), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1922), + [sym_receive_expression] = STATE(1922), + [sym_binary_expression] = STATE(1922), + [sym_as_type_cast_expression] = STATE(1922), + [sym__max_group] = STATE(1922), + [sym_literal] = STATE(1924), + [sym_map_init_expression] = STATE(1921), + [sym_array_creation] = STATE(1922), + [sym_fixed_array_creation] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym_index_expression] = STATE(1922), + [sym_slice_expression] = STATE(1922), + [sym_if_expression] = STATE(1921), + [sym_compile_time_if_expression] = STATE(1921), + [sym_is_expression] = STATE(1922), + [sym_in_expression] = STATE(1922), + [sym_enum_fetch] = STATE(1922), + [sym_match_expression] = STATE(1921), + [sym_select_expression] = STATE(1921), + [sym_lock_expression] = STATE(1921), + [sym_unsafe_expression] = STATE(1921), + [sym_sql_expression] = STATE(1921), + [sym_interpreted_string_literal] = STATE(1925), + [sym_c_string_literal] = STATE(1925), + [sym_raw_string_literal] = STATE(1925), + [sym_mutability_modifiers] = STATE(943), + [sym_plain_type] = STATE(4080), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3214), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_struct] = ACTIONS(3228), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2491), - [anon_sym_go] = ACTIONS(2493), - [anon_sym_spawn] = ACTIONS(2495), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_AMP] = ACTIONS(2497), - [anon_sym_LT_DASH] = ACTIONS(2499), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(2501), - [anon_sym_lock] = ACTIONS(2503), - [anon_sym_rlock] = ACTIONS(2503), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3232), + [anon_sym_spawn] = ACTIONS(3234), + [anon_sym_json_DOTdecode] = ACTIONS(3236), + [anon_sym_LBRACK2] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_CARET] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym_LT_DASH] = ACTIONS(3242), + [sym_none] = ACTIONS(3244), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [sym_nil] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3248), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3252), + [anon_sym_lock] = ACTIONS(3254), + [anon_sym_rlock] = ACTIONS(3254), + [anon_sym_unsafe] = ACTIONS(3256), + [anon_sym_sql] = ACTIONS(3258), + [sym_int_literal] = ACTIONS(3244), + [sym_float_literal] = ACTIONS(3260), + [sym_rune_literal] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3264), + [anon_sym_c_SQUOTE] = ACTIONS(3266), + [anon_sym_c_DQUOTE] = ACTIONS(3268), + [anon_sym_r_SQUOTE] = ACTIONS(3270), + [anon_sym_r_DQUOTE] = ACTIONS(3272), + [sym_pseudo_compile_time_identifier] = ACTIONS(3274), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -95900,111 +96196,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [632] = { [sym_line_comment] = STATE(632), [sym_block_comment] = STATE(632), - [sym__expression] = STATE(1763), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(1677), + [sym__expression_without_blocks] = STATE(1923), + [sym__expression_with_blocks] = STATE(1923), + [sym_inc_expression] = STATE(1922), + [sym_dec_expression] = STATE(1922), + [sym_or_block_expression] = STATE(1922), + [sym_option_propagation_expression] = STATE(1922), + [sym_result_propagation_expression] = STATE(1922), + [sym_anon_struct_value_expression] = STATE(1921), + [sym_go_expression] = STATE(1922), + [sym_spawn_expression] = STATE(1922), + [sym_parenthesized_expression] = STATE(1922), + [sym_call_expression] = STATE(1922), + [sym_type_initializer] = STATE(1921), + [sym_function_literal] = STATE(1922), + [sym_reference_expression] = STATE(1929), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1922), + [sym_receive_expression] = STATE(1922), + [sym_binary_expression] = STATE(1922), + [sym_as_type_cast_expression] = STATE(1922), + [sym__max_group] = STATE(1922), + [sym_literal] = STATE(1924), + [sym_map_init_expression] = STATE(1921), + [sym_array_creation] = STATE(1922), + [sym_fixed_array_creation] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym_index_expression] = STATE(1922), + [sym_slice_expression] = STATE(1922), + [sym_if_expression] = STATE(1921), + [sym_compile_time_if_expression] = STATE(1921), + [sym_is_expression] = STATE(1922), + [sym_in_expression] = STATE(1922), + [sym_enum_fetch] = STATE(1922), + [sym_match_expression] = STATE(1921), + [sym_select_expression] = STATE(1921), + [sym_lock_expression] = STATE(1921), + [sym_unsafe_expression] = STATE(1921), + [sym_sql_expression] = STATE(1921), + [sym_interpreted_string_literal] = STATE(1925), + [sym_c_string_literal] = STATE(1925), + [sym_raw_string_literal] = STATE(1925), + [sym_mutability_modifiers] = STATE(943), + [sym_plain_type] = STATE(4080), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3214), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_struct] = ACTIONS(3228), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(789), - [anon_sym_go] = ACTIONS(791), - [anon_sym_spawn] = ACTIONS(793), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(797), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(799), - [anon_sym_LT_DASH] = ACTIONS(801), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(811), - [anon_sym_lock] = ACTIONS(813), - [anon_sym_rlock] = ACTIONS(813), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3232), + [anon_sym_spawn] = ACTIONS(3234), + [anon_sym_json_DOTdecode] = ACTIONS(3236), + [anon_sym_LBRACK2] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_CARET] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym_LT_DASH] = ACTIONS(3242), + [sym_none] = ACTIONS(3244), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [sym_nil] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3248), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3252), + [anon_sym_lock] = ACTIONS(3254), + [anon_sym_rlock] = ACTIONS(3254), + [anon_sym_unsafe] = ACTIONS(3256), + [anon_sym_sql] = ACTIONS(3258), + [sym_int_literal] = ACTIONS(3244), + [sym_float_literal] = ACTIONS(3260), + [sym_rune_literal] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3264), + [anon_sym_c_SQUOTE] = ACTIONS(3266), + [anon_sym_c_DQUOTE] = ACTIONS(3268), + [anon_sym_r_SQUOTE] = ACTIONS(3270), + [anon_sym_r_DQUOTE] = ACTIONS(3272), + [sym_pseudo_compile_time_identifier] = ACTIONS(3274), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -96014,111 +96310,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [633] = { [sym_line_comment] = STATE(633), [sym_block_comment] = STATE(633), - [sym__expression] = STATE(2810), - [sym__expression_without_blocks] = STATE(2121), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), + [sym__expression] = STATE(2862), + [sym__expression_without_blocks] = STATE(2162), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(789), - [anon_sym_go] = ACTIONS(791), - [anon_sym_spawn] = ACTIONS(793), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(797), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(799), - [anon_sym_LT_DASH] = ACTIONS(801), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_go] = ACTIONS(807), + [anon_sym_spawn] = ACTIONS(809), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_LT_DASH] = ACTIONS(817), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -96128,111 +96424,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [634] = { [sym_line_comment] = STATE(634), [sym_block_comment] = STATE(634), - [sym__expression] = STATE(2123), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(3997), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(1803), + [sym__expression_without_blocks] = STATE(2115), + [sym__expression_with_blocks] = STATE(2115), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [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_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(828), + [sym_plain_type] = STATE(4363), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3394), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3396), + [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(3398), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_go] = ACTIONS(3294), - [anon_sym_spawn] = ACTIONS(3296), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_CARET] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3302), - [anon_sym_LT_DASH] = ACTIONS(3304), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3314), - [anon_sym_lock] = ACTIONS(3316), - [anon_sym_rlock] = ACTIONS(3316), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [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(3400), + [anon_sym_DOLLARif] = ACTIONS(3402), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_select] = ACTIONS(3406), + [anon_sym_lock] = ACTIONS(3408), + [anon_sym_rlock] = ACTIONS(3408), + [anon_sym_unsafe] = ACTIONS(3410), + [anon_sym_sql] = ACTIONS(3412), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -96242,111 +96538,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [635] = { [sym_line_comment] = STATE(635), [sym_block_comment] = STATE(635), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3555), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2391), + [sym__expression] = STATE(1262), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4372), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -96356,111 +96652,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [636] = { [sym_line_comment] = STATE(636), [sym_block_comment] = STATE(636), - [sym__expression] = STATE(1764), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(2722), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(789), - [anon_sym_go] = ACTIONS(791), - [anon_sym_spawn] = ACTIONS(793), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(797), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(799), - [anon_sym_LT_DASH] = ACTIONS(801), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(811), - [anon_sym_lock] = ACTIONS(813), - [anon_sym_rlock] = ACTIONS(813), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -96470,111 +96766,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [637] = { [sym_line_comment] = STATE(637), [sym_block_comment] = STATE(637), - [sym__expression] = STATE(1765), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(1803), + [sym__expression_without_blocks] = STATE(2115), + [sym__expression_with_blocks] = STATE(2115), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [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_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(828), + [sym_plain_type] = STATE(4336), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3394), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3396), + [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(3398), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(789), - [anon_sym_go] = ACTIONS(791), - [anon_sym_spawn] = ACTIONS(793), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(797), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(799), - [anon_sym_LT_DASH] = ACTIONS(801), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(811), - [anon_sym_lock] = ACTIONS(813), - [anon_sym_rlock] = ACTIONS(813), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [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(3400), + [anon_sym_DOLLARif] = ACTIONS(3402), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_select] = ACTIONS(3406), + [anon_sym_lock] = ACTIONS(3408), + [anon_sym_rlock] = ACTIONS(3408), + [anon_sym_unsafe] = ACTIONS(3410), + [anon_sym_sql] = ACTIONS(3412), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -96584,111 +96880,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [638] = { [sym_line_comment] = STATE(638), [sym_block_comment] = STATE(638), - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(1288), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -96698,111 +96994,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [639] = { [sym_line_comment] = STATE(639), [sym_block_comment] = STATE(639), - [sym__expression] = STATE(2529), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(4005), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2464), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(3132), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_go] = ACTIONS(3136), - [anon_sym_spawn] = ACTIONS(3138), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_CARET] = ACTIONS(3130), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3142), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3144), - [anon_sym_lock] = ACTIONS(3146), - [anon_sym_rlock] = ACTIONS(3146), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -96812,111 +97108,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [640] = { [sym_line_comment] = STATE(640), [sym_block_comment] = STATE(640), - [sym__expression] = STATE(2579), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(1675), + [sym__expression_without_blocks] = STATE(1923), + [sym__expression_with_blocks] = STATE(1923), + [sym_inc_expression] = STATE(1922), + [sym_dec_expression] = STATE(1922), + [sym_or_block_expression] = STATE(1922), + [sym_option_propagation_expression] = STATE(1922), + [sym_result_propagation_expression] = STATE(1922), + [sym_anon_struct_value_expression] = STATE(1921), + [sym_go_expression] = STATE(1922), + [sym_spawn_expression] = STATE(1922), + [sym_parenthesized_expression] = STATE(1922), + [sym_call_expression] = STATE(1922), + [sym_type_initializer] = STATE(1921), + [sym_function_literal] = STATE(1922), + [sym_reference_expression] = STATE(1929), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1922), + [sym_receive_expression] = STATE(1922), + [sym_binary_expression] = STATE(1922), + [sym_as_type_cast_expression] = STATE(1922), + [sym__max_group] = STATE(1922), + [sym_literal] = STATE(1924), + [sym_map_init_expression] = STATE(1921), + [sym_array_creation] = STATE(1922), + [sym_fixed_array_creation] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym_index_expression] = STATE(1922), + [sym_slice_expression] = STATE(1922), + [sym_if_expression] = STATE(1921), + [sym_compile_time_if_expression] = STATE(1921), + [sym_is_expression] = STATE(1922), + [sym_in_expression] = STATE(1922), + [sym_enum_fetch] = STATE(1922), + [sym_match_expression] = STATE(1921), + [sym_select_expression] = STATE(1921), + [sym_lock_expression] = STATE(1921), + [sym_unsafe_expression] = STATE(1921), + [sym_sql_expression] = STATE(1921), + [sym_interpreted_string_literal] = STATE(1925), + [sym_c_string_literal] = STATE(1925), + [sym_raw_string_literal] = STATE(1925), + [sym_mutability_modifiers] = STATE(943), + [sym_plain_type] = STATE(4080), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3214), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_struct] = ACTIONS(3228), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3232), + [anon_sym_spawn] = ACTIONS(3234), + [anon_sym_json_DOTdecode] = ACTIONS(3236), + [anon_sym_LBRACK2] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_CARET] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym_LT_DASH] = ACTIONS(3242), + [sym_none] = ACTIONS(3244), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [sym_nil] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3248), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3252), + [anon_sym_lock] = ACTIONS(3254), + [anon_sym_rlock] = ACTIONS(3254), + [anon_sym_unsafe] = ACTIONS(3256), + [anon_sym_sql] = ACTIONS(3258), + [sym_int_literal] = ACTIONS(3244), + [sym_float_literal] = ACTIONS(3260), + [sym_rune_literal] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3264), + [anon_sym_c_SQUOTE] = ACTIONS(3266), + [anon_sym_c_DQUOTE] = ACTIONS(3268), + [anon_sym_r_SQUOTE] = ACTIONS(3270), + [anon_sym_r_DQUOTE] = ACTIONS(3272), + [sym_pseudo_compile_time_identifier] = ACTIONS(3274), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -96926,111 +97222,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [641] = { [sym_line_comment] = STATE(641), [sym_block_comment] = STATE(641), - [sym__expression] = STATE(1777), - [sym__expression_without_blocks] = STATE(1975), - [sym__expression_with_blocks] = STATE(1975), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(1976), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(1976), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(1976), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(1976), - [sym_compile_time_if_expression] = STATE(1976), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(1976), - [sym_select_expression] = STATE(1976), - [sym_lock_expression] = STATE(1976), - [sym_unsafe_expression] = STATE(1976), - [sym_sql_expression] = STATE(1976), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(616), - [sym_plain_type] = STATE(4143), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3338), + [sym__expression] = STATE(2807), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(3340), - [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(3342), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [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(3344), - [anon_sym_DOLLARif] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3348), - [anon_sym_select] = ACTIONS(3350), - [anon_sym_lock] = ACTIONS(3352), - [anon_sym_rlock] = ACTIONS(3352), - [anon_sym_unsafe] = ACTIONS(3354), - [anon_sym_sql] = ACTIONS(3356), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_DQUOTE] = ACTIONS(755), - [anon_sym_c_SQUOTE] = ACTIONS(757), - [anon_sym_c_DQUOTE] = ACTIONS(759), - [anon_sym_r_SQUOTE] = ACTIONS(761), - [anon_sym_r_DQUOTE] = ACTIONS(763), - [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -97040,111 +97336,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [642] = { [sym_line_comment] = STATE(642), [sym_block_comment] = STATE(642), - [sym__expression] = STATE(2791), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2808), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -97154,111 +97450,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [643] = { [sym_line_comment] = STATE(643), [sym_block_comment] = STATE(643), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3553), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2509), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_go] = ACTIONS(2909), + [anon_sym_spawn] = ACTIONS(2911), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_LT_DASH] = ACTIONS(2917), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(2919), + [anon_sym_lock] = ACTIONS(2921), + [anon_sym_rlock] = ACTIONS(2921), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -97268,111 +97564,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [644] = { [sym_line_comment] = STATE(644), [sym_block_comment] = STATE(644), - [sym__expression] = STATE(2443), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(4005), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2301), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(3132), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_go] = ACTIONS(3136), - [anon_sym_spawn] = ACTIONS(3138), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_CARET] = ACTIONS(3130), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3142), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3144), - [anon_sym_lock] = ACTIONS(3146), - [anon_sym_rlock] = ACTIONS(3146), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_go] = ACTIONS(2909), + [anon_sym_spawn] = ACTIONS(2911), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_LT_DASH] = ACTIONS(2917), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(2919), + [anon_sym_lock] = ACTIONS(2921), + [anon_sym_rlock] = ACTIONS(2921), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -97382,111 +97678,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [645] = { [sym_line_comment] = STATE(645), [sym_block_comment] = STATE(645), - [sym__expression] = STATE(2528), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(4005), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3637), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(3132), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_go] = ACTIONS(3136), - [anon_sym_spawn] = ACTIONS(3138), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_CARET] = ACTIONS(3130), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3142), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3144), - [anon_sym_lock] = ACTIONS(3146), - [anon_sym_rlock] = ACTIONS(3146), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -97496,111 +97792,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [646] = { [sym_line_comment] = STATE(646), [sym_block_comment] = STATE(646), - [sym__expression] = STATE(2522), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(4005), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(966), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(3132), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_go] = ACTIONS(3136), - [anon_sym_spawn] = ACTIONS(3138), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_CARET] = ACTIONS(3130), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3142), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3144), - [anon_sym_lock] = ACTIONS(3146), - [anon_sym_rlock] = ACTIONS(3146), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_LT_DASH] = ACTIONS(2137), + [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(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -97610,111 +97906,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [647] = { [sym_line_comment] = STATE(647), [sym_block_comment] = STATE(647), - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(4005), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2508), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(3132), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_go] = ACTIONS(3136), - [anon_sym_spawn] = ACTIONS(3138), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_CARET] = ACTIONS(3130), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3142), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3144), - [anon_sym_lock] = ACTIONS(3146), - [anon_sym_rlock] = ACTIONS(3146), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_go] = ACTIONS(2909), + [anon_sym_spawn] = ACTIONS(2911), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_LT_DASH] = ACTIONS(2917), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(2919), + [anon_sym_lock] = ACTIONS(2921), + [anon_sym_rlock] = ACTIONS(2921), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -97724,111 +98020,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [648] = { [sym_line_comment] = STATE(648), [sym_block_comment] = STATE(648), - [sym__expression] = STATE(2260), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(3997), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(1289), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_go] = ACTIONS(3294), - [anon_sym_spawn] = ACTIONS(3296), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_CARET] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3302), - [anon_sym_LT_DASH] = ACTIONS(3304), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3314), - [anon_sym_lock] = ACTIONS(3316), - [anon_sym_rlock] = ACTIONS(3316), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -97838,111 +98134,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [649] = { [sym_line_comment] = STATE(649), [sym_block_comment] = STATE(649), - [sym__expression] = STATE(2821), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2504), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_go] = ACTIONS(2909), + [anon_sym_spawn] = ACTIONS(2911), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_LT_DASH] = ACTIONS(2917), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(2919), + [anon_sym_lock] = ACTIONS(2921), + [anon_sym_rlock] = ACTIONS(2921), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -97952,111 +98248,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [650] = { [sym_line_comment] = STATE(650), [sym_block_comment] = STATE(650), - [sym__expression] = STATE(1910), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3148), + [sym__expression] = STATE(2599), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_go] = ACTIONS(3156), - [anon_sym_spawn] = ACTIONS(3158), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_CARET] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_LT_DASH] = ACTIONS(3164), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(3166), - [anon_sym_lock] = ACTIONS(3168), - [anon_sym_rlock] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_go] = ACTIONS(2909), + [anon_sym_spawn] = ACTIONS(2911), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_LT_DASH] = ACTIONS(2917), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(2919), + [anon_sym_lock] = ACTIONS(2921), + [anon_sym_rlock] = ACTIONS(2921), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -98066,111 +98362,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [651] = { [sym_line_comment] = STATE(651), [sym_block_comment] = STATE(651), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(1262), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4369), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2523), - [anon_sym_LT_DASH] = ACTIONS(2525), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -98180,111 +98476,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [652] = { [sym_line_comment] = STATE(652), [sym_block_comment] = STATE(652), - [sym__expression] = STATE(2516), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(4005), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2537), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(3132), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_go] = ACTIONS(3136), - [anon_sym_spawn] = ACTIONS(3138), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_CARET] = ACTIONS(3130), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3142), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3144), - [anon_sym_lock] = ACTIONS(3146), - [anon_sym_rlock] = ACTIONS(3146), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_go] = ACTIONS(2909), + [anon_sym_spawn] = ACTIONS(2911), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_LT_DASH] = ACTIONS(2917), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(2919), + [anon_sym_lock] = ACTIONS(2921), + [anon_sym_rlock] = ACTIONS(2921), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -98294,111 +98590,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [653] = { [sym_line_comment] = STATE(653), [sym_block_comment] = STATE(653), - [sym__expression] = STATE(959), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(1258), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_CARET] = ACTIONS(2555), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym_LT_DASH] = ACTIONS(2567), - [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(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -98408,111 +98704,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [654] = { [sym_line_comment] = STATE(654), [sym_block_comment] = STATE(654), - [sym__expression] = STATE(218), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), - [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), - [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), - [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), - [sym_if_expression] = STATE(476), - [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), - [sym_match_expression] = STATE(476), - [sym_select_expression] = STATE(476), - [sym_lock_expression] = STATE(476), - [sym_unsafe_expression] = STATE(476), - [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3182), + [sym__expression] = STATE(2485), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3184), - [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_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(1717), [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), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_c_SQUOTE] = ACTIONS(85), - [anon_sym_c_DQUOTE] = ACTIONS(87), - [anon_sym_r_SQUOTE] = ACTIONS(89), - [anon_sym_r_DQUOTE] = ACTIONS(91), - [sym_pseudo_compile_time_identifier] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -98522,111 +98818,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [655] = { [sym_line_comment] = STATE(655), [sym_block_comment] = STATE(655), - [sym__expression] = STATE(2261), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(3997), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2959), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2957), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_go] = ACTIONS(3294), - [anon_sym_spawn] = ACTIONS(3296), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_CARET] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3302), - [anon_sym_LT_DASH] = ACTIONS(3304), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3314), - [anon_sym_lock] = ACTIONS(3316), - [anon_sym_rlock] = ACTIONS(3316), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -98636,111 +98932,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [656] = { [sym_line_comment] = STATE(656), [sym_block_comment] = STATE(656), - [sym__expression] = STATE(1767), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(2479), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4084), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(789), - [anon_sym_go] = ACTIONS(791), - [anon_sym_spawn] = ACTIONS(793), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(797), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(799), - [anon_sym_LT_DASH] = ACTIONS(801), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(811), - [anon_sym_lock] = ACTIONS(813), - [anon_sym_rlock] = ACTIONS(813), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3196), + [anon_sym_lock] = ACTIONS(3198), + [anon_sym_rlock] = ACTIONS(3198), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -98750,111 +99046,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [657] = { [sym_line_comment] = STATE(657), [sym_block_comment] = STATE(657), - [sym__expression] = STATE(1768), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(2469), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4084), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(3146), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(789), - [anon_sym_go] = ACTIONS(791), - [anon_sym_spawn] = ACTIONS(793), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(797), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(799), - [anon_sym_LT_DASH] = ACTIONS(801), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(811), - [anon_sym_lock] = ACTIONS(813), - [anon_sym_rlock] = ACTIONS(813), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_go] = ACTIONS(3150), + [anon_sym_spawn] = ACTIONS(3152), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_CARET] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3156), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3158), + [anon_sym_lock] = ACTIONS(3160), + [anon_sym_rlock] = ACTIONS(3160), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -98864,111 +99160,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [658] = { [sym_line_comment] = STATE(658), [sym_block_comment] = STATE(658), - [sym__expression] = STATE(2637), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2466), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(1717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -98978,111 +99274,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [659] = { [sym_line_comment] = STATE(659), [sym_block_comment] = STATE(659), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3552), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2391), + [sym__expression] = STATE(2373), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(1717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -99092,111 +99388,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [660] = { [sym_line_comment] = STATE(660), [sym_block_comment] = STATE(660), - [sym__expression] = STATE(1769), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(2463), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(789), - [anon_sym_go] = ACTIONS(791), - [anon_sym_spawn] = ACTIONS(793), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(797), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(799), - [anon_sym_LT_DASH] = ACTIONS(801), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(811), - [anon_sym_lock] = ACTIONS(813), - [anon_sym_rlock] = ACTIONS(813), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -99206,111 +99502,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [661] = { [sym_line_comment] = STATE(661), [sym_block_comment] = STATE(661), - [sym__expression] = STATE(2268), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(967), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_LT_DASH] = ACTIONS(2137), + [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(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -99320,111 +99616,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [662] = { [sym_line_comment] = STATE(662), [sym_block_comment] = STATE(662), - [sym__expression] = STATE(1759), - [sym__expression_without_blocks] = STATE(1975), - [sym__expression_with_blocks] = STATE(1975), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(1976), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(1976), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(1976), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(1976), - [sym_compile_time_if_expression] = STATE(1976), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(1976), - [sym_select_expression] = STATE(1976), - [sym_lock_expression] = STATE(1976), - [sym_unsafe_expression] = STATE(1976), - [sym_sql_expression] = STATE(1976), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(616), - [sym_plain_type] = STATE(4143), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3338), + [sym__expression] = STATE(2346), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(3340), - [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(3342), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_struct] = ACTIONS(1717), [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(3344), - [anon_sym_DOLLARif] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3348), - [anon_sym_select] = ACTIONS(3350), - [anon_sym_lock] = ACTIONS(3352), - [anon_sym_rlock] = ACTIONS(3352), - [anon_sym_unsafe] = ACTIONS(3354), - [anon_sym_sql] = ACTIONS(3356), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_DQUOTE] = ACTIONS(755), - [anon_sym_c_SQUOTE] = ACTIONS(757), - [anon_sym_c_DQUOTE] = ACTIONS(759), - [anon_sym_r_SQUOTE] = ACTIONS(761), - [anon_sym_r_DQUOTE] = ACTIONS(763), - [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_go] = ACTIONS(1721), + [anon_sym_spawn] = ACTIONS(1723), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_DASH] = ACTIONS(2173), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(1741), + [anon_sym_lock] = ACTIONS(1743), + [anon_sym_rlock] = ACTIONS(1743), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -99434,111 +99730,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [663] = { [sym_line_comment] = STATE(663), [sym_block_comment] = STATE(663), - [sym__expression] = STATE(2124), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(3997), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(2345), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_struct] = ACTIONS(1717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_go] = ACTIONS(3294), - [anon_sym_spawn] = ACTIONS(3296), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_CARET] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3302), - [anon_sym_LT_DASH] = ACTIONS(3304), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3314), - [anon_sym_lock] = ACTIONS(3316), - [anon_sym_rlock] = ACTIONS(3316), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_go] = ACTIONS(1721), + [anon_sym_spawn] = ACTIONS(1723), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_DASH] = ACTIONS(2173), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(1741), + [anon_sym_lock] = ACTIONS(1743), + [anon_sym_rlock] = ACTIONS(1743), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -99548,111 +99844,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [664] = { [sym_line_comment] = STATE(664), [sym_block_comment] = STATE(664), - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2616), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4084), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(3146), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_go] = ACTIONS(3150), + [anon_sym_spawn] = ACTIONS(3152), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_CARET] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3156), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3158), + [anon_sym_lock] = ACTIONS(3160), + [anon_sym_rlock] = ACTIONS(3160), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -99662,111 +99958,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [665] = { [sym_line_comment] = STATE(665), [sym_block_comment] = STATE(665), - [sym__expression] = STATE(2635), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -99776,111 +100072,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [666] = { [sym_line_comment] = STATE(666), [sym_block_comment] = STATE(666), - [sym__expression] = STATE(227), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), - [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), - [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), - [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), - [sym_if_expression] = STATE(476), - [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), - [sym_match_expression] = STATE(476), - [sym_select_expression] = STATE(476), - [sym_lock_expression] = STATE(476), - [sym_unsafe_expression] = STATE(476), - [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3182), + [sym__expression] = STATE(1124), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1196), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3184), - [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_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(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), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_c_SQUOTE] = ACTIONS(85), - [anon_sym_c_DQUOTE] = ACTIONS(87), - [anon_sym_r_SQUOTE] = ACTIONS(89), - [anon_sym_r_DQUOTE] = ACTIONS(91), - [sym_pseudo_compile_time_identifier] = ACTIONS(93), + [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), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -99890,111 +100186,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [667] = { [sym_line_comment] = STATE(667), [sym_block_comment] = STATE(667), - [sym__expression] = STATE(1758), - [sym__expression_without_blocks] = STATE(1975), - [sym__expression_with_blocks] = STATE(1975), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(1976), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(1976), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(1976), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(1976), - [sym_compile_time_if_expression] = STATE(1976), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(1976), - [sym_select_expression] = STATE(1976), - [sym_lock_expression] = STATE(1976), - [sym_unsafe_expression] = STATE(1976), - [sym_sql_expression] = STATE(1976), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(616), - [sym_plain_type] = STATE(4143), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3338), + [sym__expression] = STATE(2323), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(3340), - [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(3342), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(1717), [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(3344), - [anon_sym_DOLLARif] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3348), - [anon_sym_select] = ACTIONS(3350), - [anon_sym_lock] = ACTIONS(3352), - [anon_sym_rlock] = ACTIONS(3352), - [anon_sym_unsafe] = ACTIONS(3354), - [anon_sym_sql] = ACTIONS(3356), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_DQUOTE] = ACTIONS(755), - [anon_sym_c_SQUOTE] = ACTIONS(757), - [anon_sym_c_DQUOTE] = ACTIONS(759), - [anon_sym_r_SQUOTE] = ACTIONS(761), - [anon_sym_r_DQUOTE] = ACTIONS(763), - [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -100004,111 +100300,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [668] = { [sym_line_comment] = STATE(668), [sym_block_comment] = STATE(668), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2955), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2849), + [sym__expression_without_blocks] = STATE(2989), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -100118,111 +100414,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [669] = { [sym_line_comment] = STATE(669), [sym_block_comment] = STATE(669), - [sym__expression] = STATE(1757), - [sym__expression_without_blocks] = STATE(1975), - [sym__expression_with_blocks] = STATE(1975), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(1976), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(1976), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(1976), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(1976), - [sym_compile_time_if_expression] = STATE(1976), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(1976), - [sym_select_expression] = STATE(1976), - [sym_lock_expression] = STATE(1976), - [sym_unsafe_expression] = STATE(1976), - [sym_sql_expression] = STATE(1976), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(616), - [sym_plain_type] = STATE(4143), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3338), + [sym__expression] = STATE(2470), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(3340), - [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(3342), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(1717), [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(3344), - [anon_sym_DOLLARif] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3348), - [anon_sym_select] = ACTIONS(3350), - [anon_sym_lock] = ACTIONS(3352), - [anon_sym_rlock] = ACTIONS(3352), - [anon_sym_unsafe] = ACTIONS(3354), - [anon_sym_sql] = ACTIONS(3356), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_DQUOTE] = ACTIONS(755), - [anon_sym_c_SQUOTE] = ACTIONS(757), - [anon_sym_c_DQUOTE] = ACTIONS(759), - [anon_sym_r_SQUOTE] = ACTIONS(761), - [anon_sym_r_DQUOTE] = ACTIONS(763), - [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -100232,111 +100528,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [670] = { [sym_line_comment] = STATE(670), [sym_block_comment] = STATE(670), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(957), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2405), - [anon_sym_go] = ACTIONS(2407), - [anon_sym_spawn] = ACTIONS(2409), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2401), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(2417), - [anon_sym_lock] = ACTIONS(2419), - [anon_sym_rlock] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_LT_DASH] = ACTIONS(2137), + [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(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -100346,111 +100642,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [671] = { [sym_line_comment] = STATE(671), [sym_block_comment] = STATE(671), - [sym__expression] = STATE(1257), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(1650), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(848), + [sym_plain_type] = STATE(4129), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3366), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3368), + [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(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [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), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -100460,111 +100756,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [672] = { [sym_line_comment] = STATE(672), [sym_block_comment] = STATE(672), - [sym__expression] = STATE(1256), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4081), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(2383), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(1717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -100574,111 +100870,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [673] = { [sym_line_comment] = STATE(673), [sym_block_comment] = STATE(673), - [sym__expression] = STATE(1285), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(1818), + [sym__expression_without_blocks] = STATE(2115), + [sym__expression_with_blocks] = STATE(2115), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [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_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(828), + [sym_plain_type] = STATE(4291), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3394), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3396), + [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(3398), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [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(3400), + [anon_sym_DOLLARif] = ACTIONS(3402), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_select] = ACTIONS(3406), + [anon_sym_lock] = ACTIONS(3408), + [anon_sym_rlock] = ACTIONS(3408), + [anon_sym_unsafe] = ACTIONS(3410), + [anon_sym_sql] = ACTIONS(3412), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -100688,111 +100984,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [674] = { [sym_line_comment] = STATE(674), [sym_block_comment] = STATE(674), - [sym__expression] = STATE(2699), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(960), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4229), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_LT_DASH] = ACTIONS(2137), + [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(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -100802,111 +101098,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [675] = { [sym_line_comment] = STATE(675), [sym_block_comment] = STATE(675), - [sym__expression] = STATE(2720), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(958), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_LT_DASH] = ACTIONS(2137), + [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(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -100916,111 +101212,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [676] = { [sym_line_comment] = STATE(676), [sym_block_comment] = STATE(676), - [sym__expression] = STATE(1286), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3637), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_go] = ACTIONS(2909), + [anon_sym_spawn] = ACTIONS(2911), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_LT_DASH] = ACTIONS(2917), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(2919), + [anon_sym_lock] = ACTIONS(2921), + [anon_sym_rlock] = ACTIONS(2921), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -101030,111 +101326,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [677] = { [sym_line_comment] = STATE(677), [sym_block_comment] = STATE(677), - [sym__expression] = STATE(1256), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4082), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(1650), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(848), + [sym_plain_type] = STATE(4127), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3366), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3368), + [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(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [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), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -101144,111 +101440,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [678] = { [sym_line_comment] = STATE(678), [sym_block_comment] = STATE(678), - [sym__expression] = STATE(1256), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4088), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(1807), + [sym__expression_without_blocks] = STATE(2115), + [sym__expression_with_blocks] = STATE(2115), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [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_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(828), + [sym_plain_type] = STATE(4291), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3394), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3396), + [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(3398), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [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(3400), + [anon_sym_DOLLARif] = ACTIONS(3402), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_select] = ACTIONS(3406), + [anon_sym_lock] = ACTIONS(3408), + [anon_sym_rlock] = ACTIONS(3408), + [anon_sym_unsafe] = ACTIONS(3410), + [anon_sym_sql] = ACTIONS(3412), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -101258,111 +101554,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [679] = { [sym_line_comment] = STATE(679), [sym_block_comment] = STATE(679), - [sym__expression] = STATE(1114), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1228), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4014), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(959), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [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_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(513), [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), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_c_SQUOTE] = ACTIONS(691), - [anon_sym_c_DQUOTE] = ACTIONS(693), - [anon_sym_r_SQUOTE] = ACTIONS(695), - [anon_sym_r_DQUOTE] = ACTIONS(697), - [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_LT_DASH] = ACTIONS(2137), + [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(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -101372,111 +101668,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [680] = { [sym_line_comment] = STATE(680), [sym_block_comment] = STATE(680), - [sym__expression] = STATE(2556), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(1793), + [sym__expression_without_blocks] = STATE(2115), + [sym__expression_with_blocks] = STATE(2115), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [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_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(828), + [sym_plain_type] = STATE(4291), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3394), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3396), + [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(3398), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2405), - [anon_sym_go] = ACTIONS(2407), - [anon_sym_spawn] = ACTIONS(2409), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2401), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(2417), - [anon_sym_lock] = ACTIONS(2419), - [anon_sym_rlock] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [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(3400), + [anon_sym_DOLLARif] = ACTIONS(3402), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_select] = ACTIONS(3406), + [anon_sym_lock] = ACTIONS(3408), + [anon_sym_rlock] = ACTIONS(3408), + [anon_sym_unsafe] = ACTIONS(3410), + [anon_sym_sql] = ACTIONS(3412), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -101486,111 +101782,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [681] = { [sym_line_comment] = STATE(681), [sym_block_comment] = STATE(681), - [sym__expression] = STATE(1256), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3609), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_go] = ACTIONS(2909), + [anon_sym_spawn] = ACTIONS(2911), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_LT_DASH] = ACTIONS(2917), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(2919), + [anon_sym_lock] = ACTIONS(2921), + [anon_sym_rlock] = ACTIONS(2921), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -101600,111 +101896,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [682] = { [sym_line_comment] = STATE(682), [sym_block_comment] = STATE(682), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3645), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2405), - [anon_sym_go] = ACTIONS(2407), - [anon_sym_spawn] = ACTIONS(2409), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2401), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(2417), - [anon_sym_lock] = ACTIONS(2419), - [anon_sym_rlock] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_go] = ACTIONS(2909), + [anon_sym_spawn] = ACTIONS(2911), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_LT_DASH] = ACTIONS(2917), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(2919), + [anon_sym_lock] = ACTIONS(2921), + [anon_sym_rlock] = ACTIONS(2921), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -101714,111 +102010,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [683] = { [sym_line_comment] = STATE(683), [sym_block_comment] = STATE(683), - [sym__expression] = STATE(2282), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(1803), + [sym__expression_without_blocks] = STATE(2115), + [sym__expression_with_blocks] = STATE(2115), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [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_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(828), + [sym_plain_type] = STATE(4291), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3394), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3396), + [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(3398), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2523), - [anon_sym_LT_DASH] = ACTIONS(2525), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [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(3400), + [anon_sym_DOLLARif] = ACTIONS(3402), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_select] = ACTIONS(3406), + [anon_sym_lock] = ACTIONS(3408), + [anon_sym_rlock] = ACTIONS(3408), + [anon_sym_unsafe] = ACTIONS(3410), + [anon_sym_sql] = ACTIONS(3412), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -101828,111 +102124,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [684] = { [sym_line_comment] = STATE(684), [sym_block_comment] = STATE(684), - [sym__expression] = STATE(1114), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1228), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4011), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(2573), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4084), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [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_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(3146), + [anon_sym_struct] = ACTIONS(1095), [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), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_c_SQUOTE] = ACTIONS(691), - [anon_sym_c_DQUOTE] = ACTIONS(693), - [anon_sym_r_SQUOTE] = ACTIONS(695), - [anon_sym_r_DQUOTE] = ACTIONS(697), - [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_go] = ACTIONS(3150), + [anon_sym_spawn] = ACTIONS(3152), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_CARET] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3156), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3158), + [anon_sym_lock] = ACTIONS(3160), + [anon_sym_rlock] = ACTIONS(3160), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -101942,111 +102238,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [685] = { [sym_line_comment] = STATE(685), [sym_block_comment] = STATE(685), - [sym__expression] = STATE(1114), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1228), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4071), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(1947), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3092), [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_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(801), [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), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_c_SQUOTE] = ACTIONS(691), - [anon_sym_c_DQUOTE] = ACTIONS(693), - [anon_sym_r_SQUOTE] = ACTIONS(695), - [anon_sym_r_DQUOTE] = ACTIONS(697), - [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_go] = ACTIONS(3102), + [anon_sym_spawn] = ACTIONS(3104), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3096), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3108), + [anon_sym_LT_DASH] = ACTIONS(3110), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(3112), + [anon_sym_lock] = ACTIONS(3114), + [anon_sym_rlock] = ACTIONS(3114), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -102056,111 +102352,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [686] = { [sym_line_comment] = STATE(686), [sym_block_comment] = STATE(686), - [sym__expression] = STATE(2336), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(2344), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_struct] = ACTIONS(1717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2523), - [anon_sym_LT_DASH] = ACTIONS(2525), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_go] = ACTIONS(1721), + [anon_sym_spawn] = ACTIONS(1723), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_DASH] = ACTIONS(2173), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(1741), + [anon_sym_lock] = ACTIONS(1743), + [anon_sym_rlock] = ACTIONS(1743), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -102170,111 +102466,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [687] = { [sym_line_comment] = STATE(687), [sym_block_comment] = STATE(687), - [sym__expression] = STATE(2450), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(4005), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2623), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(3418), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3106), - [anon_sym_lock] = ACTIONS(3108), - [anon_sym_rlock] = ACTIONS(3108), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_go] = ACTIONS(2909), + [anon_sym_spawn] = ACTIONS(2911), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_LT_DASH] = ACTIONS(2917), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(2919), + [anon_sym_lock] = ACTIONS(2921), + [anon_sym_rlock] = ACTIONS(2921), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -102284,111 +102580,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [688] = { [sym_line_comment] = STATE(688), [sym_block_comment] = STATE(688), - [sym__expression] = STATE(1668), - [sym__expression_without_blocks] = STATE(1814), - [sym__expression_with_blocks] = STATE(1814), - [sym_inc_expression] = STATE(1819), - [sym_dec_expression] = STATE(1819), - [sym_or_block_expression] = STATE(1819), - [sym_option_propagation_expression] = STATE(1819), - [sym_result_propagation_expression] = STATE(1819), - [sym_anon_struct_value_expression] = STATE(1823), - [sym_go_expression] = STATE(1819), - [sym_spawn_expression] = STATE(1819), - [sym_parenthesized_expression] = STATE(1819), - [sym_call_expression] = STATE(1819), - [sym_type_initializer] = STATE(1823), - [sym_function_literal] = STATE(1819), - [sym_reference_expression] = STATE(1833), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1819), - [sym_receive_expression] = STATE(1819), - [sym_binary_expression] = STATE(1819), - [sym_as_type_cast_expression] = STATE(1819), - [sym__max_group] = STATE(1819), - [sym_literal] = STATE(1812), - [sym_map_init_expression] = STATE(1823), - [sym_array_creation] = STATE(1819), - [sym_fixed_array_creation] = STATE(1819), - [sym_selector_expression] = STATE(1819), - [sym_index_expression] = STATE(1819), - [sym_slice_expression] = STATE(1819), - [sym_if_expression] = STATE(1823), - [sym_compile_time_if_expression] = STATE(1823), - [sym_is_expression] = STATE(1819), - [sym_in_expression] = STATE(1819), - [sym_enum_fetch] = STATE(1819), - [sym_match_expression] = STATE(1823), - [sym_select_expression] = STATE(1823), - [sym_lock_expression] = STATE(1823), - [sym_unsafe_expression] = STATE(1823), - [sym_sql_expression] = STATE(1823), - [sym_interpreted_string_literal] = STATE(1811), - [sym_c_string_literal] = STATE(1811), - [sym_raw_string_literal] = STATE(1811), - [sym_mutability_modifiers] = STATE(614), - [sym_plain_type] = STATE(4246), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3190), + [sym__expression] = STATE(2481), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4084), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_fn] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3202), - [anon_sym_struct] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(3146), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_go] = ACTIONS(3208), - [anon_sym_spawn] = ACTIONS(3210), - [anon_sym_json_DOTdecode] = ACTIONS(3212), - [anon_sym_LBRACK2] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_CARET] = ACTIONS(3200), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT_DASH] = ACTIONS(3218), - [sym_none] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_nil] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_DOLLARif] = ACTIONS(3224), - [anon_sym_match] = ACTIONS(3226), - [anon_sym_select] = ACTIONS(3228), - [anon_sym_lock] = ACTIONS(3230), - [anon_sym_rlock] = ACTIONS(3230), - [anon_sym_unsafe] = ACTIONS(3232), - [anon_sym_sql] = ACTIONS(3234), - [sym_int_literal] = ACTIONS(3220), - [sym_float_literal] = ACTIONS(3236), - [sym_rune_literal] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(3240), - [anon_sym_c_SQUOTE] = ACTIONS(3242), - [anon_sym_c_DQUOTE] = ACTIONS(3244), - [anon_sym_r_SQUOTE] = ACTIONS(3246), - [anon_sym_r_DQUOTE] = ACTIONS(3248), - [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_go] = ACTIONS(3150), + [anon_sym_spawn] = ACTIONS(3152), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_CARET] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3156), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3158), + [anon_sym_lock] = ACTIONS(3160), + [anon_sym_rlock] = ACTIONS(3160), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -102398,111 +102694,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [689] = { [sym_line_comment] = STATE(689), [sym_block_comment] = STATE(689), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2469), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(3975), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2405), - [anon_sym_go] = ACTIONS(2407), - [anon_sym_spawn] = ACTIONS(2409), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2401), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(2417), - [anon_sym_lock] = ACTIONS(2419), - [anon_sym_rlock] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3196), + [anon_sym_lock] = ACTIONS(3198), + [anon_sym_rlock] = ACTIONS(3198), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -102512,111 +102808,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [690] = { [sym_line_comment] = STATE(690), [sym_block_comment] = STATE(690), - [sym__expression] = STATE(2344), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(1650), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(848), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3366), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3368), + [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(2517), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2523), - [anon_sym_LT_DASH] = ACTIONS(2525), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [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), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -102626,111 +102922,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [691] = { [sym_line_comment] = STATE(691), [sym_block_comment] = STATE(691), - [sym__expression] = STATE(1668), - [sym__expression_without_blocks] = STATE(1814), - [sym__expression_with_blocks] = STATE(1814), - [sym_inc_expression] = STATE(1819), - [sym_dec_expression] = STATE(1819), - [sym_or_block_expression] = STATE(1819), - [sym_option_propagation_expression] = STATE(1819), - [sym_result_propagation_expression] = STATE(1819), - [sym_anon_struct_value_expression] = STATE(1823), - [sym_go_expression] = STATE(1819), - [sym_spawn_expression] = STATE(1819), - [sym_parenthesized_expression] = STATE(1819), - [sym_call_expression] = STATE(1819), - [sym_type_initializer] = STATE(1823), - [sym_function_literal] = STATE(1819), - [sym_reference_expression] = STATE(1833), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1819), - [sym_receive_expression] = STATE(1819), - [sym_binary_expression] = STATE(1819), - [sym_as_type_cast_expression] = STATE(1819), - [sym__max_group] = STATE(1819), - [sym_literal] = STATE(1812), - [sym_map_init_expression] = STATE(1823), - [sym_array_creation] = STATE(1819), - [sym_fixed_array_creation] = STATE(1819), - [sym_selector_expression] = STATE(1819), - [sym_index_expression] = STATE(1819), - [sym_slice_expression] = STATE(1819), - [sym_if_expression] = STATE(1823), - [sym_compile_time_if_expression] = STATE(1823), - [sym_is_expression] = STATE(1819), - [sym_in_expression] = STATE(1819), - [sym_enum_fetch] = STATE(1819), - [sym_match_expression] = STATE(1823), - [sym_select_expression] = STATE(1823), - [sym_lock_expression] = STATE(1823), - [sym_unsafe_expression] = STATE(1823), - [sym_sql_expression] = STATE(1823), - [sym_interpreted_string_literal] = STATE(1811), - [sym_c_string_literal] = STATE(1811), - [sym_raw_string_literal] = STATE(1811), - [sym_mutability_modifiers] = STATE(614), - [sym_plain_type] = STATE(4255), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3190), + [sym__expression] = STATE(960), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_fn] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3202), - [anon_sym_struct] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_go] = ACTIONS(3208), - [anon_sym_spawn] = ACTIONS(3210), - [anon_sym_json_DOTdecode] = ACTIONS(3212), - [anon_sym_LBRACK2] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_CARET] = ACTIONS(3200), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT_DASH] = ACTIONS(3218), - [sym_none] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_nil] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_DOLLARif] = ACTIONS(3224), - [anon_sym_match] = ACTIONS(3226), - [anon_sym_select] = ACTIONS(3228), - [anon_sym_lock] = ACTIONS(3230), - [anon_sym_rlock] = ACTIONS(3230), - [anon_sym_unsafe] = ACTIONS(3232), - [anon_sym_sql] = ACTIONS(3234), - [sym_int_literal] = ACTIONS(3220), - [sym_float_literal] = ACTIONS(3236), - [sym_rune_literal] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(3240), - [anon_sym_c_SQUOTE] = ACTIONS(3242), - [anon_sym_c_DQUOTE] = ACTIONS(3244), - [anon_sym_r_SQUOTE] = ACTIONS(3246), - [anon_sym_r_DQUOTE] = ACTIONS(3248), - [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_go] = ACTIONS(3420), + [anon_sym_spawn] = ACTIONS(3422), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3424), + [anon_sym_LT_DASH] = ACTIONS(3426), + [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(3428), + [anon_sym_lock] = ACTIONS(3430), + [anon_sym_rlock] = ACTIONS(3430), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -102740,111 +103036,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [692] = { [sym_line_comment] = STATE(692), [sym_block_comment] = STATE(692), - [sym__expression] = STATE(2347), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(960), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2523), - [anon_sym_LT_DASH] = ACTIONS(2525), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_go] = ACTIONS(3420), + [anon_sym_spawn] = ACTIONS(3422), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3424), + [anon_sym_LT_DASH] = ACTIONS(3426), + [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(3428), + [anon_sym_lock] = ACTIONS(3430), + [anon_sym_rlock] = ACTIONS(3430), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -102854,111 +103150,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [693] = { [sym_line_comment] = STATE(693), [sym_block_comment] = STATE(693), - [sym__expression] = STATE(2434), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(4005), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(960), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4236), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(3418), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3106), - [anon_sym_lock] = ACTIONS(3108), - [anon_sym_rlock] = ACTIONS(3108), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_go] = ACTIONS(3420), + [anon_sym_spawn] = ACTIONS(3422), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3424), + [anon_sym_LT_DASH] = ACTIONS(3426), + [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(3428), + [anon_sym_lock] = ACTIONS(3430), + [anon_sym_rlock] = ACTIONS(3430), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -102968,111 +103264,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [694] = { [sym_line_comment] = STATE(694), [sym_block_comment] = STATE(694), - [sym__expression] = STATE(2354), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(2873), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2523), - [anon_sym_LT_DASH] = ACTIONS(2525), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -103082,111 +103378,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [695] = { [sym_line_comment] = STATE(695), [sym_block_comment] = STATE(695), - [sym__expression] = STATE(2609), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(980), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_go] = ACTIONS(3420), + [anon_sym_spawn] = ACTIONS(3422), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3424), + [anon_sym_LT_DASH] = ACTIONS(3426), + [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(3428), + [anon_sym_lock] = ACTIONS(3430), + [anon_sym_rlock] = ACTIONS(3430), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -103196,89 +103492,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [696] = { [sym_line_comment] = STATE(696), [sym_block_comment] = STATE(696), - [sym__expression] = STATE(961), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), + [sym__expression] = STATE(968), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), [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(2551), - [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_CARET] = ACTIONS(2555), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym_LT_DASH] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_go] = ACTIONS(3420), + [anon_sym_spawn] = ACTIONS(3422), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3424), + [anon_sym_LT_DASH] = ACTIONS(3426), [sym_none] = ACTIONS(531), [sym_true] = ACTIONS(531), [sym_false] = ACTIONS(531), @@ -103286,20 +103582,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(533), [anon_sym_DOLLARif] = ACTIONS(535), [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), + [anon_sym_select] = ACTIONS(3428), + [anon_sym_lock] = ACTIONS(3430), + [anon_sym_rlock] = ACTIONS(3430), [anon_sym_unsafe] = ACTIONS(543), [anon_sym_sql] = ACTIONS(545), [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_float_literal] = ACTIONS(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -103310,89 +103606,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [697] = { [sym_line_comment] = STATE(697), [sym_block_comment] = STATE(697), - [sym__expression] = STATE(961), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4039), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), + [sym__expression] = STATE(960), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4229), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), [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(2551), - [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_CARET] = ACTIONS(2555), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym_LT_DASH] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_go] = ACTIONS(3420), + [anon_sym_spawn] = ACTIONS(3422), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3424), + [anon_sym_LT_DASH] = ACTIONS(3426), [sym_none] = ACTIONS(531), [sym_true] = ACTIONS(531), [sym_false] = ACTIONS(531), @@ -103400,20 +103696,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(533), [anon_sym_DOLLARif] = ACTIONS(535), [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), + [anon_sym_select] = ACTIONS(3428), + [anon_sym_lock] = ACTIONS(3430), + [anon_sym_rlock] = ACTIONS(3430), [anon_sym_unsafe] = ACTIONS(543), [anon_sym_sql] = ACTIONS(545), [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_float_literal] = ACTIONS(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -103424,111 +103720,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [698] = { [sym_line_comment] = STATE(698), [sym_block_comment] = STATE(698), - [sym__expression] = STATE(2818), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(960), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4236), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_LT_DASH] = ACTIONS(2137), + [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(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -103538,111 +103834,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [699] = { [sym_line_comment] = STATE(699), [sym_block_comment] = STATE(699), - [sym__expression] = STATE(2423), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(4005), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(979), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(3418), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3106), - [anon_sym_lock] = ACTIONS(3108), - [anon_sym_rlock] = ACTIONS(3108), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_go] = ACTIONS(3420), + [anon_sym_spawn] = ACTIONS(3422), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3424), + [anon_sym_LT_DASH] = ACTIONS(3426), + [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(3428), + [anon_sym_lock] = ACTIONS(3430), + [anon_sym_rlock] = ACTIONS(3430), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -103652,111 +103948,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [700] = { [sym_line_comment] = STATE(700), [sym_block_comment] = STATE(700), - [sym__expression] = STATE(220), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), - [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), - [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), - [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), - [sym_if_expression] = STATE(476), - [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), - [sym_match_expression] = STATE(476), - [sym_select_expression] = STATE(476), - [sym_lock_expression] = STATE(476), - [sym_unsafe_expression] = STATE(476), - [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3182), + [sym__expression] = STATE(978), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3184), - [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_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_struct] = ACTIONS(513), [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), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_c_SQUOTE] = ACTIONS(85), - [anon_sym_c_DQUOTE] = ACTIONS(87), - [anon_sym_r_SQUOTE] = ACTIONS(89), - [anon_sym_r_DQUOTE] = ACTIONS(91), - [sym_pseudo_compile_time_identifier] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_go] = ACTIONS(3420), + [anon_sym_spawn] = ACTIONS(3422), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3424), + [anon_sym_LT_DASH] = ACTIONS(3426), + [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(3428), + [anon_sym_lock] = ACTIONS(3430), + [anon_sym_rlock] = ACTIONS(3430), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -103766,89 +104062,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [701] = { [sym_line_comment] = STATE(701), [sym_block_comment] = STATE(701), - [sym__expression] = STATE(961), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), + [sym__expression] = STATE(976), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), [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(2551), - [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_CARET] = ACTIONS(2555), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym_LT_DASH] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_go] = ACTIONS(3420), + [anon_sym_spawn] = ACTIONS(3422), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3424), + [anon_sym_LT_DASH] = ACTIONS(3426), [sym_none] = ACTIONS(531), [sym_true] = ACTIONS(531), [sym_false] = ACTIONS(531), @@ -103856,20 +104152,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(533), [anon_sym_DOLLARif] = ACTIONS(535), [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), + [anon_sym_select] = ACTIONS(3428), + [anon_sym_lock] = ACTIONS(3430), + [anon_sym_rlock] = ACTIONS(3430), [anon_sym_unsafe] = ACTIONS(543), [anon_sym_sql] = ACTIONS(545), [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_float_literal] = ACTIONS(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -103880,111 +104176,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [702] = { [sym_line_comment] = STATE(702), [sym_block_comment] = STATE(702), - [sym__expression] = STATE(1668), - [sym__expression_without_blocks] = STATE(1814), - [sym__expression_with_blocks] = STATE(1814), - [sym_inc_expression] = STATE(1819), - [sym_dec_expression] = STATE(1819), - [sym_or_block_expression] = STATE(1819), - [sym_option_propagation_expression] = STATE(1819), - [sym_result_propagation_expression] = STATE(1819), - [sym_anon_struct_value_expression] = STATE(1823), - [sym_go_expression] = STATE(1819), - [sym_spawn_expression] = STATE(1819), - [sym_parenthesized_expression] = STATE(1819), - [sym_call_expression] = STATE(1819), - [sym_type_initializer] = STATE(1823), - [sym_function_literal] = STATE(1819), - [sym_reference_expression] = STATE(1833), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1819), - [sym_receive_expression] = STATE(1819), - [sym_binary_expression] = STATE(1819), - [sym_as_type_cast_expression] = STATE(1819), - [sym__max_group] = STATE(1819), - [sym_literal] = STATE(1812), - [sym_map_init_expression] = STATE(1823), - [sym_array_creation] = STATE(1819), - [sym_fixed_array_creation] = STATE(1819), - [sym_selector_expression] = STATE(1819), - [sym_index_expression] = STATE(1819), - [sym_slice_expression] = STATE(1819), - [sym_if_expression] = STATE(1823), - [sym_compile_time_if_expression] = STATE(1823), - [sym_is_expression] = STATE(1819), - [sym_in_expression] = STATE(1819), - [sym_enum_fetch] = STATE(1819), - [sym_match_expression] = STATE(1823), - [sym_select_expression] = STATE(1823), - [sym_lock_expression] = STATE(1823), - [sym_unsafe_expression] = STATE(1823), - [sym_sql_expression] = STATE(1823), - [sym_interpreted_string_literal] = STATE(1811), - [sym_c_string_literal] = STATE(1811), - [sym_raw_string_literal] = STATE(1811), - [sym_mutability_modifiers] = STATE(614), - [sym_plain_type] = STATE(4268), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3190), + [sym__expression] = STATE(957), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_fn] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3202), - [anon_sym_struct] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_go] = ACTIONS(3208), - [anon_sym_spawn] = ACTIONS(3210), - [anon_sym_json_DOTdecode] = ACTIONS(3212), - [anon_sym_LBRACK2] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_CARET] = ACTIONS(3200), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT_DASH] = ACTIONS(3218), - [sym_none] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_nil] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_DOLLARif] = ACTIONS(3224), - [anon_sym_match] = ACTIONS(3226), - [anon_sym_select] = ACTIONS(3228), - [anon_sym_lock] = ACTIONS(3230), - [anon_sym_rlock] = ACTIONS(3230), - [anon_sym_unsafe] = ACTIONS(3232), - [anon_sym_sql] = ACTIONS(3234), - [sym_int_literal] = ACTIONS(3220), - [sym_float_literal] = ACTIONS(3236), - [sym_rune_literal] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(3240), - [anon_sym_c_SQUOTE] = ACTIONS(3242), - [anon_sym_c_DQUOTE] = ACTIONS(3244), - [anon_sym_r_SQUOTE] = ACTIONS(3246), - [anon_sym_r_DQUOTE] = ACTIONS(3248), - [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_go] = ACTIONS(3420), + [anon_sym_spawn] = ACTIONS(3422), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3424), + [anon_sym_LT_DASH] = ACTIONS(3426), + [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(3428), + [anon_sym_lock] = ACTIONS(3430), + [anon_sym_rlock] = ACTIONS(3430), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -103994,111 +104290,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [703] = { [sym_line_comment] = STATE(703), [sym_block_comment] = STATE(703), - [sym__expression] = STATE(1755), - [sym__expression_without_blocks] = STATE(1975), - [sym__expression_with_blocks] = STATE(1975), - [sym_inc_expression] = STATE(2028), - [sym_dec_expression] = STATE(2028), - [sym_or_block_expression] = STATE(2028), - [sym_option_propagation_expression] = STATE(2028), - [sym_result_propagation_expression] = STATE(2028), - [sym_anon_struct_value_expression] = STATE(1976), - [sym_go_expression] = STATE(2028), - [sym_spawn_expression] = STATE(2028), - [sym_parenthesized_expression] = STATE(2028), - [sym_call_expression] = STATE(2028), - [sym_type_initializer] = STATE(1976), - [sym_function_literal] = STATE(2028), - [sym_reference_expression] = STATE(1960), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2028), - [sym_receive_expression] = STATE(2028), - [sym_binary_expression] = STATE(2028), - [sym_as_type_cast_expression] = STATE(2028), - [sym__max_group] = STATE(2028), - [sym_literal] = STATE(2023), - [sym_map_init_expression] = STATE(1976), - [sym_array_creation] = STATE(2028), - [sym_fixed_array_creation] = STATE(2028), - [sym_selector_expression] = STATE(2028), - [sym_index_expression] = STATE(2028), - [sym_slice_expression] = STATE(2028), - [sym_if_expression] = STATE(1976), - [sym_compile_time_if_expression] = STATE(1976), - [sym_is_expression] = STATE(2028), - [sym_in_expression] = STATE(2028), - [sym_enum_fetch] = STATE(2028), - [sym_match_expression] = STATE(1976), - [sym_select_expression] = STATE(1976), - [sym_lock_expression] = STATE(1976), - [sym_unsafe_expression] = STATE(1976), - [sym_sql_expression] = STATE(1976), - [sym_interpreted_string_literal] = STATE(2022), - [sym_c_string_literal] = STATE(2022), - [sym_raw_string_literal] = STATE(2022), - [sym_mutability_modifiers] = STATE(616), - [sym_plain_type] = STATE(4143), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3338), + [sym__expression] = STATE(975), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(3340), - [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(3342), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_struct] = ACTIONS(513), [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(3344), - [anon_sym_DOLLARif] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3348), - [anon_sym_select] = ACTIONS(3350), - [anon_sym_lock] = ACTIONS(3352), - [anon_sym_rlock] = ACTIONS(3352), - [anon_sym_unsafe] = ACTIONS(3354), - [anon_sym_sql] = ACTIONS(3356), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_DQUOTE] = ACTIONS(755), - [anon_sym_c_SQUOTE] = ACTIONS(757), - [anon_sym_c_DQUOTE] = ACTIONS(759), - [anon_sym_r_SQUOTE] = ACTIONS(761), - [anon_sym_r_DQUOTE] = ACTIONS(763), - [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_go] = ACTIONS(3420), + [anon_sym_spawn] = ACTIONS(3422), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3424), + [anon_sym_LT_DASH] = ACTIONS(3426), + [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(3428), + [anon_sym_lock] = ACTIONS(3430), + [anon_sym_rlock] = ACTIONS(3430), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -104108,111 +104404,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [704] = { [sym_line_comment] = STATE(704), [sym_block_comment] = STATE(704), - [sym__expression] = STATE(2581), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2730), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3620), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -104222,111 +104518,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [705] = { [sym_line_comment] = STATE(705), [sym_block_comment] = STATE(705), - [sym__expression] = STATE(2444), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(4005), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2324), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(3418), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(1717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3106), - [anon_sym_lock] = ACTIONS(3108), - [anon_sym_rlock] = ACTIONS(3108), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -104336,111 +104632,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [706] = { [sym_line_comment] = STATE(706), [sym_block_comment] = STATE(706), - [sym__expression] = STATE(2789), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2323), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_struct] = ACTIONS(1717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_go] = ACTIONS(1721), + [anon_sym_spawn] = ACTIONS(1723), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_DASH] = ACTIONS(2173), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(1741), + [anon_sym_lock] = ACTIONS(1743), + [anon_sym_rlock] = ACTIONS(1743), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -104450,111 +104746,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [707] = { [sym_line_comment] = STATE(707), [sym_block_comment] = STATE(707), - [sym__expression] = STATE(2451), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(1117), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1196), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [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(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [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), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -104564,111 +104860,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [708] = { [sym_line_comment] = STATE(708), [sym_block_comment] = STATE(708), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2909), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2907), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(848), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3366), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3368), + [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(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [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), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -104678,111 +104974,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [709] = { [sym_line_comment] = STATE(709), [sym_block_comment] = STATE(709), - [sym__expression] = STATE(2777), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(1129), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1196), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [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(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [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), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -104792,111 +105088,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [710] = { [sym_line_comment] = STATE(710), [sym_block_comment] = STATE(710), - [sym__expression] = STATE(1256), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(2213), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2491), - [anon_sym_go] = ACTIONS(2493), - [anon_sym_spawn] = ACTIONS(2495), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_AMP] = ACTIONS(2497), - [anon_sym_LT_DASH] = ACTIONS(2499), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(2501), - [anon_sym_lock] = ACTIONS(2503), - [anon_sym_rlock] = ACTIONS(2503), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_go] = ACTIONS(3298), + [anon_sym_spawn] = ACTIONS(3300), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3290), + [anon_sym_CARET] = ACTIONS(3290), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3308), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3320), + [anon_sym_rlock] = ACTIONS(3320), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -104906,111 +105202,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [711] = { [sym_line_comment] = STATE(711), [sym_block_comment] = STATE(711), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3552), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2480), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4084), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3196), + [anon_sym_lock] = ACTIONS(3198), + [anon_sym_rlock] = ACTIONS(3198), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -105020,111 +105316,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [712] = { [sym_line_comment] = STATE(712), [sym_block_comment] = STATE(712), - [sym__expression] = STATE(1256), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4088), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(2324), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4254), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_struct] = ACTIONS(1315), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2491), - [anon_sym_go] = ACTIONS(2493), - [anon_sym_spawn] = ACTIONS(2495), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_AMP] = ACTIONS(2497), - [anon_sym_LT_DASH] = ACTIONS(2499), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(2501), - [anon_sym_lock] = ACTIONS(2503), - [anon_sym_rlock] = ACTIONS(2503), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(1717), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -105134,89 +105430,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [713] = { [sym_line_comment] = STATE(713), [sym_block_comment] = STATE(713), - [sym__expression] = STATE(960), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), + [sym__expression] = STATE(956), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), [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(2551), - [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_CARET] = ACTIONS(2555), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym_LT_DASH] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_go] = ACTIONS(3420), + [anon_sym_spawn] = ACTIONS(3422), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3424), + [anon_sym_LT_DASH] = ACTIONS(3426), [sym_none] = ACTIONS(531), [sym_true] = ACTIONS(531), [sym_false] = ACTIONS(531), @@ -105224,20 +105520,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(533), [anon_sym_DOLLARif] = ACTIONS(535), [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), + [anon_sym_select] = ACTIONS(3428), + [anon_sym_lock] = ACTIONS(3430), + [anon_sym_rlock] = ACTIONS(3430), [anon_sym_unsafe] = ACTIONS(543), [anon_sym_sql] = ACTIONS(545), [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_float_literal] = ACTIONS(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), @@ -105248,111 +105544,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [714] = { [sym_line_comment] = STATE(714), [sym_block_comment] = STATE(714), - [sym__expression] = STATE(954), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2303), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_CARET] = ACTIONS(2555), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym_LT_DASH] = ACTIONS(2567), - [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(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_go] = ACTIONS(2909), + [anon_sym_spawn] = ACTIONS(2911), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_LT_DASH] = ACTIONS(2917), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(2919), + [anon_sym_lock] = ACTIONS(2921), + [anon_sym_rlock] = ACTIONS(2921), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -105362,111 +105658,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [715] = { [sym_line_comment] = STATE(715), [sym_block_comment] = STATE(715), - [sym__expression] = STATE(2647), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3561), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(1116), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1196), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4287), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(1233), + [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(2787), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [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), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -105476,111 +105772,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [716] = { [sym_line_comment] = STATE(716), [sym_block_comment] = STATE(716), - [sym__expression] = STATE(2688), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2519), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_go] = ACTIONS(2909), + [anon_sym_spawn] = ACTIONS(2911), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_LT_DASH] = ACTIONS(2917), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(2919), + [anon_sym_lock] = ACTIONS(2921), + [anon_sym_rlock] = ACTIONS(2921), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -105590,111 +105886,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [717] = { [sym_line_comment] = STATE(717), [sym_block_comment] = STATE(717), - [sym__expression] = STATE(2123), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(4272), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(2517), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_go] = ACTIONS(3294), - [anon_sym_spawn] = ACTIONS(3296), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_CARET] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3302), - [anon_sym_LT_DASH] = ACTIONS(3304), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3314), - [anon_sym_lock] = ACTIONS(3316), - [anon_sym_rlock] = ACTIONS(3316), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_go] = ACTIONS(2909), + [anon_sym_spawn] = ACTIONS(2911), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_LT_DASH] = ACTIONS(2917), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(2919), + [anon_sym_lock] = ACTIONS(2921), + [anon_sym_rlock] = ACTIONS(2921), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -105704,111 +106000,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [718] = { [sym_line_comment] = STATE(718), [sym_block_comment] = STATE(718), - [sym__expression] = STATE(2123), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(4267), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(1116), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1196), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4292), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_struct] = ACTIONS(3290), + [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(3292), - [anon_sym_go] = ACTIONS(3294), - [anon_sym_spawn] = ACTIONS(3296), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_CARET] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3302), - [anon_sym_LT_DASH] = ACTIONS(3304), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3314), - [anon_sym_lock] = ACTIONS(3316), - [anon_sym_rlock] = ACTIONS(3316), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [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), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -105818,111 +106114,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [719] = { [sym_line_comment] = STATE(719), [sym_block_comment] = STATE(719), - [sym__expression] = STATE(2123), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(4264), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(1116), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1196), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4332), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_struct] = ACTIONS(3290), + [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(3292), - [anon_sym_go] = ACTIONS(3294), - [anon_sym_spawn] = ACTIONS(3296), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_CARET] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3302), - [anon_sym_LT_DASH] = ACTIONS(3304), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3314), - [anon_sym_lock] = ACTIONS(3316), - [anon_sym_rlock] = ACTIONS(3316), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [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), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -105932,111 +106228,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [720] = { [sym_line_comment] = STATE(720), [sym_block_comment] = STATE(720), - [sym__expression] = STATE(1256), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4082), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2491), - [anon_sym_go] = ACTIONS(2493), - [anon_sym_spawn] = ACTIONS(2495), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_AMP] = ACTIONS(2497), - [anon_sym_LT_DASH] = ACTIONS(2499), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(2501), - [anon_sym_lock] = ACTIONS(2503), - [anon_sym_rlock] = ACTIONS(2503), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_go] = ACTIONS(2909), + [anon_sym_spawn] = ACTIONS(2911), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_LT_DASH] = ACTIONS(2917), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(2919), + [anon_sym_lock] = ACTIONS(2921), + [anon_sym_rlock] = ACTIONS(2921), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -106046,111 +106342,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [721] = { [sym_line_comment] = STATE(721), [sym_block_comment] = STATE(721), - [sym__expression] = STATE(2676), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2324), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4207), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(1717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -106160,111 +106456,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [722] = { [sym_line_comment] = STATE(722), [sym_block_comment] = STATE(722), - [sym__expression] = STATE(1779), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3148), + [sym__expression] = STATE(218), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_mutability_modifiers] = STATE(863), + [sym_plain_type] = STATE(4184), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3176), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3178), + [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(3154), - [anon_sym_go] = ACTIONS(3156), - [anon_sym_spawn] = ACTIONS(3158), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_CARET] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_LT_DASH] = ACTIONS(3164), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(3166), - [anon_sym_lock] = ACTIONS(3168), - [anon_sym_rlock] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [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), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_c_SQUOTE] = ACTIONS(85), + [anon_sym_c_DQUOTE] = ACTIONS(87), + [anon_sym_r_SQUOTE] = ACTIONS(89), + [anon_sym_r_DQUOTE] = ACTIONS(91), + [sym_pseudo_compile_time_identifier] = ACTIONS(93), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -106274,111 +106570,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [723] = { [sym_line_comment] = STATE(723), [sym_block_comment] = STATE(723), - [sym__expression] = STATE(2450), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(3923), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1083), + [sym__expression] = STATE(2805), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1111), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3106), - [anon_sym_lock] = ACTIONS(3108), - [anon_sym_rlock] = ACTIONS(3108), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -106388,111 +106684,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [724] = { [sym_line_comment] = STATE(724), [sym_block_comment] = STATE(724), - [sym__expression] = STATE(961), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4059), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_CARET] = ACTIONS(2555), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym_LT_DASH] = ACTIONS(2567), - [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(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -106502,111 +106798,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [725] = { [sym_line_comment] = STATE(725), [sym_block_comment] = STATE(725), - [sym__expression] = STATE(957), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2840), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_CARET] = ACTIONS(2555), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym_LT_DASH] = ACTIONS(2567), - [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(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -106616,111 +106912,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [726] = { [sym_line_comment] = STATE(726), [sym_block_comment] = STATE(726), - [sym__expression] = STATE(2601), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -106730,111 +107026,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [727] = { [sym_line_comment] = STATE(727), [sym_block_comment] = STATE(727), - [sym__expression] = STATE(1267), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(2301), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2491), - [anon_sym_go] = ACTIONS(2493), - [anon_sym_spawn] = ACTIONS(2495), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_AMP] = ACTIONS(2497), - [anon_sym_LT_DASH] = ACTIONS(2499), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(2501), - [anon_sym_lock] = ACTIONS(2503), - [anon_sym_rlock] = ACTIONS(2503), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -106844,72 +107140,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [728] = { [sym_line_comment] = STATE(728), [sym_block_comment] = STATE(728), - [sym__expression] = STATE(1616), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(698), - [sym_plain_type] = STATE(4239), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3424), + [sym__expression] = STATE(2838), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [729] = { + [sym_line_comment] = STATE(729), + [sym_block_comment] = STATE(729), + [sym__expression] = STATE(1658), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(848), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3366), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LBRACE] = ACTIONS(3368), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -106955,228 +107365,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [729] = { - [sym_line_comment] = STATE(729), - [sym_block_comment] = STATE(729), - [sym__expression] = STATE(2636), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, [730] = { [sym_line_comment] = STATE(730), [sym_block_comment] = STATE(730), - [sym__expression] = STATE(2695), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3561), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2856), + [sym__expression_without_blocks] = STATE(2875), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2787), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -107186,111 +107482,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [731] = { [sym_line_comment] = STATE(731), [sym_block_comment] = STATE(731), - [sym__expression] = STATE(2450), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(3930), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1083), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2940), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2943), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1111), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3106), - [anon_sym_lock] = ACTIONS(3108), - [anon_sym_rlock] = ACTIONS(3108), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -107300,111 +107596,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [732] = { [sym_line_comment] = STATE(732), [sym_block_comment] = STATE(732), - [sym__expression] = STATE(1269), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(974), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2491), - [anon_sym_go] = ACTIONS(2493), - [anon_sym_spawn] = ACTIONS(2495), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_AMP] = ACTIONS(2497), - [anon_sym_LT_DASH] = ACTIONS(2499), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(2501), - [anon_sym_lock] = ACTIONS(2503), - [anon_sym_rlock] = ACTIONS(2503), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_go] = ACTIONS(3420), + [anon_sym_spawn] = ACTIONS(3422), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3424), + [anon_sym_LT_DASH] = ACTIONS(3426), + [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(3428), + [anon_sym_lock] = ACTIONS(3430), + [anon_sym_rlock] = ACTIONS(3430), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -107414,111 +107710,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [733] = { [sym_line_comment] = STATE(733), [sym_block_comment] = STATE(733), - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2845), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -107528,111 +107824,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [734] = { [sym_line_comment] = STATE(734), [sym_block_comment] = STATE(734), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2925), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2913), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2347), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(1717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -107642,111 +107938,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [735] = { [sym_line_comment] = STATE(735), [sym_block_comment] = STATE(735), - [sym__expression] = STATE(2450), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(3923), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2469), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(3980), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(3132), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_go] = ACTIONS(3136), - [anon_sym_spawn] = ACTIONS(3138), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_CARET] = ACTIONS(3130), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3142), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3144), - [anon_sym_lock] = ACTIONS(3146), - [anon_sym_rlock] = ACTIONS(3146), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3196), + [anon_sym_lock] = ACTIONS(3198), + [anon_sym_rlock] = ACTIONS(3198), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -107756,111 +108052,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [736] = { [sym_line_comment] = STATE(736), [sym_block_comment] = STATE(736), - [sym__expression] = STATE(2450), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(3928), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2469), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(3982), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(3132), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_go] = ACTIONS(3136), - [anon_sym_spawn] = ACTIONS(3138), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_CARET] = ACTIONS(3130), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3142), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3144), - [anon_sym_lock] = ACTIONS(3146), - [anon_sym_rlock] = ACTIONS(3146), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3196), + [anon_sym_lock] = ACTIONS(3198), + [anon_sym_rlock] = ACTIONS(3198), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -107870,111 +108166,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [737] = { [sym_line_comment] = STATE(737), [sym_block_comment] = STATE(737), - [sym__expression] = STATE(1256), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4081), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(1650), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(848), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3366), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3368), + [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(2491), - [anon_sym_go] = ACTIONS(2493), - [anon_sym_spawn] = ACTIONS(2495), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_AMP] = ACTIONS(2497), - [anon_sym_LT_DASH] = ACTIONS(2499), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(2501), - [anon_sym_lock] = ACTIONS(2503), - [anon_sym_rlock] = ACTIONS(2503), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [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), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -107984,111 +108280,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [738] = { [sym_line_comment] = STATE(738), [sym_block_comment] = STATE(738), - [sym__expression] = STATE(2450), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(3930), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(1657), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(848), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3366), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(3132), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3368), + [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(3134), - [anon_sym_go] = ACTIONS(3136), - [anon_sym_spawn] = ACTIONS(3138), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_CARET] = ACTIONS(3130), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3142), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3144), - [anon_sym_lock] = ACTIONS(3146), - [anon_sym_rlock] = ACTIONS(3146), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [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), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -108098,111 +108394,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [739] = { [sym_line_comment] = STATE(739), [sym_block_comment] = STATE(739), - [sym__expression] = STATE(2268), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2336), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(1717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -108212,111 +108508,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [740] = { [sym_line_comment] = STATE(740), [sym_block_comment] = STATE(740), - [sym__expression] = STATE(2696), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2324), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4199), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(1717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -108326,111 +108622,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [741] = { [sym_line_comment] = STATE(741), [sym_block_comment] = STATE(741), - [sym__expression] = STATE(1751), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4247), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3148), + [sym__expression] = STATE(2327), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(1717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_go] = ACTIONS(3156), - [anon_sym_spawn] = ACTIONS(3158), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_CARET] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_LT_DASH] = ACTIONS(3164), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(3166), - [anon_sym_lock] = ACTIONS(3168), - [anon_sym_rlock] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -108440,111 +108736,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [742] = { [sym_line_comment] = STATE(742), [sym_block_comment] = STATE(742), - [sym__expression] = STATE(1794), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3148), + [sym__expression] = STATE(1278), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_go] = ACTIONS(3156), - [anon_sym_spawn] = ACTIONS(3158), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_CARET] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_LT_DASH] = ACTIONS(3164), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(3166), - [anon_sym_lock] = ACTIONS(3168), - [anon_sym_rlock] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2671), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_CARET] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_LT_DASH] = ACTIONS(2675), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -108554,67 +108850,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [743] = { [sym_line_comment] = STATE(743), [sym_block_comment] = STATE(743), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1228), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1196), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -108668,111 +108964,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [744] = { [sym_line_comment] = STATE(744), [sym_block_comment] = STATE(744), - [sym__expression] = STATE(955), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3637), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_CARET] = ACTIONS(2555), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym_LT_DASH] = ACTIONS(2567), - [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(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -108782,111 +109078,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [745] = { [sym_line_comment] = STATE(745), [sym_block_comment] = STATE(745), - [sym__expression] = STATE(2624), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(1111), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1196), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [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(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [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), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -108896,111 +109192,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [746] = { [sym_line_comment] = STATE(746), [sym_block_comment] = STATE(746), - [sym__expression] = STATE(2411), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(1119), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1196), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(1659), + [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(2517), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2523), - [anon_sym_LT_DASH] = ACTIONS(2525), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [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), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -109010,111 +109306,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [747] = { [sym_line_comment] = STATE(747), [sym_block_comment] = STATE(747), - [sym__expression] = STATE(1257), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3609), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2491), - [anon_sym_go] = ACTIONS(2493), - [anon_sym_spawn] = ACTIONS(2495), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_AMP] = ACTIONS(2497), - [anon_sym_LT_DASH] = ACTIONS(2499), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(2501), - [anon_sym_lock] = ACTIONS(2503), - [anon_sym_rlock] = ACTIONS(2503), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -109124,111 +109420,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [748] = { [sym_line_comment] = STATE(748), [sym_block_comment] = STATE(748), - [sym__expression] = STATE(2606), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3645), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -109238,111 +109534,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [749] = { [sym_line_comment] = STATE(749), [sym_block_comment] = STATE(749), - [sym__expression] = STATE(2776), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3561), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(1116), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1196), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(1233), + [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(2787), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [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), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -109352,111 +109648,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [750] = { [sym_line_comment] = STATE(750), [sym_block_comment] = STATE(750), - [sym__expression] = STATE(2743), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2164), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_go] = ACTIONS(3298), + [anon_sym_spawn] = ACTIONS(3300), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3290), + [anon_sym_CARET] = ACTIONS(3290), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3308), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3320), + [anon_sym_rlock] = ACTIONS(3320), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -109466,111 +109762,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [751] = { [sym_line_comment] = STATE(751), [sym_block_comment] = STATE(751), - [sym__expression] = STATE(2825), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(1946), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3092), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_go] = ACTIONS(3102), + [anon_sym_spawn] = ACTIONS(3104), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3096), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3108), + [anon_sym_LT_DASH] = ACTIONS(3110), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(3112), + [anon_sym_lock] = ACTIONS(3114), + [anon_sym_rlock] = ACTIONS(3114), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -109580,111 +109876,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [752] = { [sym_line_comment] = STATE(752), [sym_block_comment] = STATE(752), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2944), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2943), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(969), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_go] = ACTIONS(3420), + [anon_sym_spawn] = ACTIONS(3422), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3424), + [anon_sym_LT_DASH] = ACTIONS(3426), + [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(3428), + [anon_sym_lock] = ACTIONS(3430), + [anon_sym_rlock] = ACTIONS(3430), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -109694,111 +109990,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [753] = { [sym_line_comment] = STATE(753), [sym_block_comment] = STATE(753), - [sym__expression] = STATE(2123), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(4264), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3376), - [anon_sym_DASH] = ACTIONS(3376), - [anon_sym_STAR] = ACTIONS(3378), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_go] = ACTIONS(3382), - [anon_sym_spawn] = ACTIONS(3384), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3376), - [anon_sym_CARET] = ACTIONS(3376), - [anon_sym_AMP] = ACTIONS(3386), - [anon_sym_LT_DASH] = ACTIONS(3388), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3390), - [anon_sym_lock] = ACTIONS(3392), - [anon_sym_rlock] = ACTIONS(3392), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -109808,111 +110104,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [754] = { [sym_line_comment] = STATE(754), [sym_block_comment] = STATE(754), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2189), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_go] = ACTIONS(3298), + [anon_sym_spawn] = ACTIONS(3300), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3290), + [anon_sym_CARET] = ACTIONS(3290), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3308), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3320), + [anon_sym_rlock] = ACTIONS(3320), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -109922,111 +110218,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [755] = { [sym_line_comment] = STATE(755), [sym_block_comment] = STATE(755), - [sym__expression] = STATE(1652), - [sym__expression_without_blocks] = STATE(1814), - [sym__expression_with_blocks] = STATE(1814), - [sym_inc_expression] = STATE(1819), - [sym_dec_expression] = STATE(1819), - [sym_or_block_expression] = STATE(1819), - [sym_option_propagation_expression] = STATE(1819), - [sym_result_propagation_expression] = STATE(1819), - [sym_anon_struct_value_expression] = STATE(1823), - [sym_go_expression] = STATE(1819), - [sym_spawn_expression] = STATE(1819), - [sym_parenthesized_expression] = STATE(1819), - [sym_call_expression] = STATE(1819), - [sym_type_initializer] = STATE(1823), - [sym_function_literal] = STATE(1819), - [sym_reference_expression] = STATE(1833), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1819), - [sym_receive_expression] = STATE(1819), - [sym_binary_expression] = STATE(1819), - [sym_as_type_cast_expression] = STATE(1819), - [sym__max_group] = STATE(1819), - [sym_literal] = STATE(1812), - [sym_map_init_expression] = STATE(1823), - [sym_array_creation] = STATE(1819), - [sym_fixed_array_creation] = STATE(1819), - [sym_selector_expression] = STATE(1819), - [sym_index_expression] = STATE(1819), - [sym_slice_expression] = STATE(1819), - [sym_if_expression] = STATE(1823), - [sym_compile_time_if_expression] = STATE(1823), - [sym_is_expression] = STATE(1819), - [sym_in_expression] = STATE(1819), - [sym_enum_fetch] = STATE(1819), - [sym_match_expression] = STATE(1823), - [sym_select_expression] = STATE(1823), - [sym_lock_expression] = STATE(1823), - [sym_unsafe_expression] = STATE(1823), - [sym_sql_expression] = STATE(1823), - [sym_interpreted_string_literal] = STATE(1811), - [sym_c_string_literal] = STATE(1811), - [sym_raw_string_literal] = STATE(1811), - [sym_mutability_modifiers] = STATE(614), - [sym_plain_type] = STATE(4219), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3190), + [sym__expression] = STATE(2188), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_fn] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3202), - [anon_sym_struct] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_go] = ACTIONS(3208), - [anon_sym_spawn] = ACTIONS(3210), - [anon_sym_json_DOTdecode] = ACTIONS(3212), - [anon_sym_LBRACK2] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_CARET] = ACTIONS(3200), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT_DASH] = ACTIONS(3218), - [sym_none] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_nil] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_DOLLARif] = ACTIONS(3224), - [anon_sym_match] = ACTIONS(3226), - [anon_sym_select] = ACTIONS(3228), - [anon_sym_lock] = ACTIONS(3230), - [anon_sym_rlock] = ACTIONS(3230), - [anon_sym_unsafe] = ACTIONS(3232), - [anon_sym_sql] = ACTIONS(3234), - [sym_int_literal] = ACTIONS(3220), - [sym_float_literal] = ACTIONS(3236), - [sym_rune_literal] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(3240), - [anon_sym_c_SQUOTE] = ACTIONS(3242), - [anon_sym_c_DQUOTE] = ACTIONS(3244), - [anon_sym_r_SQUOTE] = ACTIONS(3246), - [anon_sym_r_DQUOTE] = ACTIONS(3248), - [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_go] = ACTIONS(3298), + [anon_sym_spawn] = ACTIONS(3300), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3290), + [anon_sym_CARET] = ACTIONS(3290), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3308), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3320), + [anon_sym_rlock] = ACTIONS(3320), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -110036,111 +110332,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [756] = { [sym_line_comment] = STATE(756), [sym_block_comment] = STATE(756), - [sym__expression] = STATE(2123), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(4267), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(2163), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3376), - [anon_sym_DASH] = ACTIONS(3376), - [anon_sym_STAR] = ACTIONS(3378), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_go] = ACTIONS(3382), - [anon_sym_spawn] = ACTIONS(3384), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3376), - [anon_sym_CARET] = ACTIONS(3376), - [anon_sym_AMP] = ACTIONS(3386), - [anon_sym_LT_DASH] = ACTIONS(3388), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3390), - [anon_sym_lock] = ACTIONS(3392), - [anon_sym_rlock] = ACTIONS(3392), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_go] = ACTIONS(3298), + [anon_sym_spawn] = ACTIONS(3300), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3290), + [anon_sym_CARET] = ACTIONS(3290), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3308), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3320), + [anon_sym_rlock] = ACTIONS(3320), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -110150,111 +110446,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [757] = { [sym_line_comment] = STATE(757), [sym_block_comment] = STATE(757), - [sym__expression] = STATE(1660), - [sym__expression_without_blocks] = STATE(1814), - [sym__expression_with_blocks] = STATE(1814), - [sym_inc_expression] = STATE(1819), - [sym_dec_expression] = STATE(1819), - [sym_or_block_expression] = STATE(1819), - [sym_option_propagation_expression] = STATE(1819), - [sym_result_propagation_expression] = STATE(1819), - [sym_anon_struct_value_expression] = STATE(1823), - [sym_go_expression] = STATE(1819), - [sym_spawn_expression] = STATE(1819), - [sym_parenthesized_expression] = STATE(1819), - [sym_call_expression] = STATE(1819), - [sym_type_initializer] = STATE(1823), - [sym_function_literal] = STATE(1819), - [sym_reference_expression] = STATE(1833), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1819), - [sym_receive_expression] = STATE(1819), - [sym_binary_expression] = STATE(1819), - [sym_as_type_cast_expression] = STATE(1819), - [sym__max_group] = STATE(1819), - [sym_literal] = STATE(1812), - [sym_map_init_expression] = STATE(1823), - [sym_array_creation] = STATE(1819), - [sym_fixed_array_creation] = STATE(1819), - [sym_selector_expression] = STATE(1819), - [sym_index_expression] = STATE(1819), - [sym_slice_expression] = STATE(1819), - [sym_if_expression] = STATE(1823), - [sym_compile_time_if_expression] = STATE(1823), - [sym_is_expression] = STATE(1819), - [sym_in_expression] = STATE(1819), - [sym_enum_fetch] = STATE(1819), - [sym_match_expression] = STATE(1823), - [sym_select_expression] = STATE(1823), - [sym_lock_expression] = STATE(1823), - [sym_unsafe_expression] = STATE(1823), - [sym_sql_expression] = STATE(1823), - [sym_interpreted_string_literal] = STATE(1811), - [sym_c_string_literal] = STATE(1811), - [sym_raw_string_literal] = STATE(1811), - [sym_mutability_modifiers] = STATE(614), - [sym_plain_type] = STATE(4219), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3190), + [sym__expression] = STATE(1279), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_fn] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3202), - [anon_sym_struct] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_go] = ACTIONS(3208), - [anon_sym_spawn] = ACTIONS(3210), - [anon_sym_json_DOTdecode] = ACTIONS(3212), - [anon_sym_LBRACK2] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_CARET] = ACTIONS(3200), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT_DASH] = ACTIONS(3218), - [sym_none] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_nil] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_DOLLARif] = ACTIONS(3224), - [anon_sym_match] = ACTIONS(3226), - [anon_sym_select] = ACTIONS(3228), - [anon_sym_lock] = ACTIONS(3230), - [anon_sym_rlock] = ACTIONS(3230), - [anon_sym_unsafe] = ACTIONS(3232), - [anon_sym_sql] = ACTIONS(3234), - [sym_int_literal] = ACTIONS(3220), - [sym_float_literal] = ACTIONS(3236), - [sym_rune_literal] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(3240), - [anon_sym_c_SQUOTE] = ACTIONS(3242), - [anon_sym_c_DQUOTE] = ACTIONS(3244), - [anon_sym_r_SQUOTE] = ACTIONS(3246), - [anon_sym_r_DQUOTE] = ACTIONS(3248), - [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2671), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_CARET] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_LT_DASH] = ACTIONS(2675), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -110264,111 +110560,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [758] = { [sym_line_comment] = STATE(758), [sym_block_comment] = STATE(758), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(1280), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2671), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_CARET] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_LT_DASH] = ACTIONS(2675), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -110378,111 +110674,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [759] = { [sym_line_comment] = STATE(759), [sym_block_comment] = STATE(759), - [sym__expression] = STATE(2638), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3561), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2164), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4238), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2787), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_go] = ACTIONS(3298), + [anon_sym_spawn] = ACTIONS(3300), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3290), + [anon_sym_CARET] = ACTIONS(3290), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3308), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3320), + [anon_sym_rlock] = ACTIONS(3320), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -110492,111 +110788,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [760] = { [sym_line_comment] = STATE(760), [sym_block_comment] = STATE(760), - [sym__expression] = STATE(2137), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(3997), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(2164), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4262), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3376), - [anon_sym_DASH] = ACTIONS(3376), - [anon_sym_STAR] = ACTIONS(3378), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_go] = ACTIONS(3382), - [anon_sym_spawn] = ACTIONS(3384), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3376), - [anon_sym_CARET] = ACTIONS(3376), - [anon_sym_AMP] = ACTIONS(3386), - [anon_sym_LT_DASH] = ACTIONS(3388), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3390), - [anon_sym_lock] = ACTIONS(3392), - [anon_sym_rlock] = ACTIONS(3392), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_go] = ACTIONS(3298), + [anon_sym_spawn] = ACTIONS(3300), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3290), + [anon_sym_CARET] = ACTIONS(3290), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3308), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3320), + [anon_sym_rlock] = ACTIONS(3320), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -110606,111 +110902,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [761] = { [sym_line_comment] = STATE(761), [sym_block_comment] = STATE(761), - [sym__expression] = STATE(1650), - [sym__expression_without_blocks] = STATE(1814), - [sym__expression_with_blocks] = STATE(1814), - [sym_inc_expression] = STATE(1819), - [sym_dec_expression] = STATE(1819), - [sym_or_block_expression] = STATE(1819), - [sym_option_propagation_expression] = STATE(1819), - [sym_result_propagation_expression] = STATE(1819), - [sym_anon_struct_value_expression] = STATE(1823), - [sym_go_expression] = STATE(1819), - [sym_spawn_expression] = STATE(1819), - [sym_parenthesized_expression] = STATE(1819), - [sym_call_expression] = STATE(1819), - [sym_type_initializer] = STATE(1823), - [sym_function_literal] = STATE(1819), - [sym_reference_expression] = STATE(1833), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1819), - [sym_receive_expression] = STATE(1819), - [sym_binary_expression] = STATE(1819), - [sym_as_type_cast_expression] = STATE(1819), - [sym__max_group] = STATE(1819), - [sym_literal] = STATE(1812), - [sym_map_init_expression] = STATE(1823), - [sym_array_creation] = STATE(1819), - [sym_fixed_array_creation] = STATE(1819), - [sym_selector_expression] = STATE(1819), - [sym_index_expression] = STATE(1819), - [sym_slice_expression] = STATE(1819), - [sym_if_expression] = STATE(1823), - [sym_compile_time_if_expression] = STATE(1823), - [sym_is_expression] = STATE(1819), - [sym_in_expression] = STATE(1819), - [sym_enum_fetch] = STATE(1819), - [sym_match_expression] = STATE(1823), - [sym_select_expression] = STATE(1823), - [sym_lock_expression] = STATE(1823), - [sym_unsafe_expression] = STATE(1823), - [sym_sql_expression] = STATE(1823), - [sym_interpreted_string_literal] = STATE(1811), - [sym_c_string_literal] = STATE(1811), - [sym_raw_string_literal] = STATE(1811), - [sym_mutability_modifiers] = STATE(614), - [sym_plain_type] = STATE(4219), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3190), + [sym__expression] = STATE(2182), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_fn] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3202), - [anon_sym_struct] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_go] = ACTIONS(3208), - [anon_sym_spawn] = ACTIONS(3210), - [anon_sym_json_DOTdecode] = ACTIONS(3212), - [anon_sym_LBRACK2] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_CARET] = ACTIONS(3200), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT_DASH] = ACTIONS(3218), - [sym_none] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_nil] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_DOLLARif] = ACTIONS(3224), - [anon_sym_match] = ACTIONS(3226), - [anon_sym_select] = ACTIONS(3228), - [anon_sym_lock] = ACTIONS(3230), - [anon_sym_rlock] = ACTIONS(3230), - [anon_sym_unsafe] = ACTIONS(3232), - [anon_sym_sql] = ACTIONS(3234), - [sym_int_literal] = ACTIONS(3220), - [sym_float_literal] = ACTIONS(3236), - [sym_rune_literal] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(3240), - [anon_sym_c_SQUOTE] = ACTIONS(3242), - [anon_sym_c_DQUOTE] = ACTIONS(3244), - [anon_sym_r_SQUOTE] = ACTIONS(3246), - [anon_sym_r_DQUOTE] = ACTIONS(3248), - [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_go] = ACTIONS(3298), + [anon_sym_spawn] = ACTIONS(3300), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3290), + [anon_sym_CARET] = ACTIONS(3290), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3308), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3320), + [anon_sym_rlock] = ACTIONS(3320), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -110720,111 +111016,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [762] = { [sym_line_comment] = STATE(762), [sym_block_comment] = STATE(762), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2887), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2889), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(1283), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2671), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_CARET] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_LT_DASH] = ACTIONS(2675), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -110834,111 +111130,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [763] = { [sym_line_comment] = STATE(763), [sym_block_comment] = STATE(763), - [sym__expression] = STATE(2278), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(3997), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(2594), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3376), - [anon_sym_DASH] = ACTIONS(3376), - [anon_sym_STAR] = ACTIONS(3378), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_go] = ACTIONS(3382), - [anon_sym_spawn] = ACTIONS(3384), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3376), - [anon_sym_CARET] = ACTIONS(3376), - [anon_sym_AMP] = ACTIONS(3386), - [anon_sym_LT_DASH] = ACTIONS(3388), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3390), - [anon_sym_lock] = ACTIONS(3392), - [anon_sym_rlock] = ACTIONS(3392), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -110948,111 +111244,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [764] = { [sym_line_comment] = STATE(764), [sym_block_comment] = STATE(764), - [sym__expression] = STATE(2832), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2316), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_go] = ACTIONS(3298), + [anon_sym_spawn] = ACTIONS(3300), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3290), + [anon_sym_CARET] = ACTIONS(3290), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3308), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3320), + [anon_sym_rlock] = ACTIONS(3320), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -111062,111 +111358,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [765] = { [sym_line_comment] = STATE(765), [sym_block_comment] = STATE(765), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3555), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2164), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4265), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_go] = ACTIONS(3298), + [anon_sym_spawn] = ACTIONS(3300), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3290), + [anon_sym_CARET] = ACTIONS(3290), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3308), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3320), + [anon_sym_rlock] = ACTIONS(3320), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -111176,111 +111472,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [766] = { [sym_line_comment] = STATE(766), [sym_block_comment] = STATE(766), - [sym__expression] = STATE(1649), - [sym__expression_without_blocks] = STATE(1814), - [sym__expression_with_blocks] = STATE(1814), - [sym_inc_expression] = STATE(1819), - [sym_dec_expression] = STATE(1819), - [sym_or_block_expression] = STATE(1819), - [sym_option_propagation_expression] = STATE(1819), - [sym_result_propagation_expression] = STATE(1819), - [sym_anon_struct_value_expression] = STATE(1823), - [sym_go_expression] = STATE(1819), - [sym_spawn_expression] = STATE(1819), - [sym_parenthesized_expression] = STATE(1819), - [sym_call_expression] = STATE(1819), - [sym_type_initializer] = STATE(1823), - [sym_function_literal] = STATE(1819), - [sym_reference_expression] = STATE(1833), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1819), - [sym_receive_expression] = STATE(1819), - [sym_binary_expression] = STATE(1819), - [sym_as_type_cast_expression] = STATE(1819), - [sym__max_group] = STATE(1819), - [sym_literal] = STATE(1812), - [sym_map_init_expression] = STATE(1823), - [sym_array_creation] = STATE(1819), - [sym_fixed_array_creation] = STATE(1819), - [sym_selector_expression] = STATE(1819), - [sym_index_expression] = STATE(1819), - [sym_slice_expression] = STATE(1819), - [sym_if_expression] = STATE(1823), - [sym_compile_time_if_expression] = STATE(1823), - [sym_is_expression] = STATE(1819), - [sym_in_expression] = STATE(1819), - [sym_enum_fetch] = STATE(1819), - [sym_match_expression] = STATE(1823), - [sym_select_expression] = STATE(1823), - [sym_lock_expression] = STATE(1823), - [sym_unsafe_expression] = STATE(1823), - [sym_sql_expression] = STATE(1823), - [sym_interpreted_string_literal] = STATE(1811), - [sym_c_string_literal] = STATE(1811), - [sym_raw_string_literal] = STATE(1811), - [sym_mutability_modifiers] = STATE(614), - [sym_plain_type] = STATE(4219), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3190), + [sym__expression] = STATE(2702), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3620), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_fn] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3202), - [anon_sym_struct] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_go] = ACTIONS(3208), - [anon_sym_spawn] = ACTIONS(3210), - [anon_sym_json_DOTdecode] = ACTIONS(3212), - [anon_sym_LBRACK2] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_CARET] = ACTIONS(3200), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT_DASH] = ACTIONS(3218), - [sym_none] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_nil] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_DOLLARif] = ACTIONS(3224), - [anon_sym_match] = ACTIONS(3226), - [anon_sym_select] = ACTIONS(3228), - [anon_sym_lock] = ACTIONS(3230), - [anon_sym_rlock] = ACTIONS(3230), - [anon_sym_unsafe] = ACTIONS(3232), - [anon_sym_sql] = ACTIONS(3234), - [sym_int_literal] = ACTIONS(3220), - [sym_float_literal] = ACTIONS(3236), - [sym_rune_literal] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(3240), - [anon_sym_c_SQUOTE] = ACTIONS(3242), - [anon_sym_c_DQUOTE] = ACTIONS(3244), - [anon_sym_r_SQUOTE] = ACTIONS(3246), - [anon_sym_r_DQUOTE] = ACTIONS(3248), - [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -111290,111 +111586,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [767] = { [sym_line_comment] = STATE(767), [sym_block_comment] = STATE(767), - [sym__expression] = STATE(2593), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2301), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -111404,111 +111700,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [768] = { [sym_line_comment] = STATE(768), [sym_block_comment] = STATE(768), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1814), - [sym__expression_with_blocks] = STATE(1814), - [sym_inc_expression] = STATE(1819), - [sym_dec_expression] = STATE(1819), - [sym_or_block_expression] = STATE(1819), - [sym_option_propagation_expression] = STATE(1819), - [sym_result_propagation_expression] = STATE(1819), - [sym_anon_struct_value_expression] = STATE(1823), - [sym_go_expression] = STATE(1819), - [sym_spawn_expression] = STATE(1819), - [sym_parenthesized_expression] = STATE(1819), - [sym_call_expression] = STATE(1819), - [sym_type_initializer] = STATE(1823), - [sym_function_literal] = STATE(1819), - [sym_reference_expression] = STATE(1833), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1819), - [sym_receive_expression] = STATE(1819), - [sym_binary_expression] = STATE(1819), - [sym_as_type_cast_expression] = STATE(1819), - [sym__max_group] = STATE(1819), - [sym_literal] = STATE(1812), - [sym_map_init_expression] = STATE(1823), - [sym_array_creation] = STATE(1819), - [sym_fixed_array_creation] = STATE(1819), - [sym_selector_expression] = STATE(1819), - [sym_index_expression] = STATE(1819), - [sym_slice_expression] = STATE(1819), - [sym_if_expression] = STATE(1823), - [sym_compile_time_if_expression] = STATE(1823), - [sym_is_expression] = STATE(1819), - [sym_in_expression] = STATE(1819), - [sym_enum_fetch] = STATE(1819), - [sym_match_expression] = STATE(1823), - [sym_select_expression] = STATE(1823), - [sym_lock_expression] = STATE(1823), - [sym_unsafe_expression] = STATE(1823), - [sym_sql_expression] = STATE(1823), - [sym_interpreted_string_literal] = STATE(1811), - [sym_c_string_literal] = STATE(1811), - [sym_raw_string_literal] = STATE(1811), - [sym_mutability_modifiers] = STATE(614), - [sym_plain_type] = STATE(4219), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3190), + [sym__expression] = STATE(1826), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3092), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_fn] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3202), - [anon_sym_struct] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_go] = ACTIONS(3208), - [anon_sym_spawn] = ACTIONS(3210), - [anon_sym_json_DOTdecode] = ACTIONS(3212), - [anon_sym_LBRACK2] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_CARET] = ACTIONS(3200), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT_DASH] = ACTIONS(3218), - [sym_none] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_nil] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_DOLLARif] = ACTIONS(3224), - [anon_sym_match] = ACTIONS(3226), - [anon_sym_select] = ACTIONS(3228), - [anon_sym_lock] = ACTIONS(3230), - [anon_sym_rlock] = ACTIONS(3230), - [anon_sym_unsafe] = ACTIONS(3232), - [anon_sym_sql] = ACTIONS(3234), - [sym_int_literal] = ACTIONS(3220), - [sym_float_literal] = ACTIONS(3236), - [sym_rune_literal] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(3240), - [anon_sym_c_SQUOTE] = ACTIONS(3242), - [anon_sym_c_DQUOTE] = ACTIONS(3244), - [anon_sym_r_SQUOTE] = ACTIONS(3246), - [anon_sym_r_DQUOTE] = ACTIONS(3248), - [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_go] = ACTIONS(3102), + [anon_sym_spawn] = ACTIONS(3104), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3096), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3108), + [anon_sym_LT_DASH] = ACTIONS(3110), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(3112), + [anon_sym_lock] = ACTIONS(3114), + [anon_sym_rlock] = ACTIONS(3114), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -111518,111 +111814,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [769] = { [sym_line_comment] = STATE(769), [sym_block_comment] = STATE(769), - [sym__expression] = STATE(1643), - [sym__expression_without_blocks] = STATE(1814), - [sym__expression_with_blocks] = STATE(1814), - [sym_inc_expression] = STATE(1819), - [sym_dec_expression] = STATE(1819), - [sym_or_block_expression] = STATE(1819), - [sym_option_propagation_expression] = STATE(1819), - [sym_result_propagation_expression] = STATE(1819), - [sym_anon_struct_value_expression] = STATE(1823), - [sym_go_expression] = STATE(1819), - [sym_spawn_expression] = STATE(1819), - [sym_parenthesized_expression] = STATE(1819), - [sym_call_expression] = STATE(1819), - [sym_type_initializer] = STATE(1823), - [sym_function_literal] = STATE(1819), - [sym_reference_expression] = STATE(1833), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1819), - [sym_receive_expression] = STATE(1819), - [sym_binary_expression] = STATE(1819), - [sym_as_type_cast_expression] = STATE(1819), - [sym__max_group] = STATE(1819), - [sym_literal] = STATE(1812), - [sym_map_init_expression] = STATE(1823), - [sym_array_creation] = STATE(1819), - [sym_fixed_array_creation] = STATE(1819), - [sym_selector_expression] = STATE(1819), - [sym_index_expression] = STATE(1819), - [sym_slice_expression] = STATE(1819), - [sym_if_expression] = STATE(1823), - [sym_compile_time_if_expression] = STATE(1823), - [sym_is_expression] = STATE(1819), - [sym_in_expression] = STATE(1819), - [sym_enum_fetch] = STATE(1819), - [sym_match_expression] = STATE(1823), - [sym_select_expression] = STATE(1823), - [sym_lock_expression] = STATE(1823), - [sym_unsafe_expression] = STATE(1823), - [sym_sql_expression] = STATE(1823), - [sym_interpreted_string_literal] = STATE(1811), - [sym_c_string_literal] = STATE(1811), - [sym_raw_string_literal] = STATE(1811), - [sym_mutability_modifiers] = STATE(614), - [sym_plain_type] = STATE(4219), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3190), + [sym__expression] = STATE(2586), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_fn] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3202), - [anon_sym_struct] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_go] = ACTIONS(3208), - [anon_sym_spawn] = ACTIONS(3210), - [anon_sym_json_DOTdecode] = ACTIONS(3212), - [anon_sym_LBRACK2] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_CARET] = ACTIONS(3200), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT_DASH] = ACTIONS(3218), - [sym_none] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_nil] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_DOLLARif] = ACTIONS(3224), - [anon_sym_match] = ACTIONS(3226), - [anon_sym_select] = ACTIONS(3228), - [anon_sym_lock] = ACTIONS(3230), - [anon_sym_rlock] = ACTIONS(3230), - [anon_sym_unsafe] = ACTIONS(3232), - [anon_sym_sql] = ACTIONS(3234), - [sym_int_literal] = ACTIONS(3220), - [sym_float_literal] = ACTIONS(3236), - [sym_rune_literal] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(3240), - [anon_sym_c_SQUOTE] = ACTIONS(3242), - [anon_sym_c_DQUOTE] = ACTIONS(3244), - [anon_sym_r_SQUOTE] = ACTIONS(3246), - [anon_sym_r_DQUOTE] = ACTIONS(3248), - [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -111632,111 +111928,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [770] = { [sym_line_comment] = STATE(770), [sym_block_comment] = STATE(770), - [sym__expression] = STATE(2285), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4196), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(1260), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2523), - [anon_sym_LT_DASH] = ACTIONS(2525), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2671), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_CARET] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_LT_DASH] = ACTIONS(2675), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -111746,111 +112042,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [771] = { [sym_line_comment] = STATE(771), [sym_block_comment] = STATE(771), - [sym__expression] = STATE(2745), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3561), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2591), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4084), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(3146), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2787), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_go] = ACTIONS(3150), + [anon_sym_spawn] = ACTIONS(3152), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_CARET] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3156), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3158), + [anon_sym_lock] = ACTIONS(3160), + [anon_sym_rlock] = ACTIONS(3160), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -111860,111 +112156,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [772] = { [sym_line_comment] = STATE(772), [sym_block_comment] = STATE(772), - [sym__expression] = STATE(956), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2657), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_CARET] = ACTIONS(2555), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym_LT_DASH] = ACTIONS(2567), - [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(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -111974,111 +112270,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [773] = { [sym_line_comment] = STATE(773), [sym_block_comment] = STATE(773), - [sym__expression] = STATE(2770), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2743), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -112088,111 +112384,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [774] = { [sym_line_comment] = STATE(774), [sym_block_comment] = STATE(774), - [sym__expression] = STATE(969), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2848), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3432), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3394), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_go] = ACTIONS(3400), - [anon_sym_spawn] = ACTIONS(3402), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_CARET] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_LT_DASH] = ACTIONS(3406), - [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(3408), - [anon_sym_lock] = ACTIONS(3410), - [anon_sym_rlock] = ACTIONS(3410), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -112202,111 +112498,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [775] = { [sym_line_comment] = STATE(775), [sym_block_comment] = STATE(775), - [sym__expression] = STATE(2450), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(4005), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2585), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4084), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(3132), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(3146), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_go] = ACTIONS(3136), - [anon_sym_spawn] = ACTIONS(3138), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_CARET] = ACTIONS(3130), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3142), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3144), - [anon_sym_lock] = ACTIONS(3146), - [anon_sym_rlock] = ACTIONS(3146), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_go] = ACTIONS(3150), + [anon_sym_spawn] = ACTIONS(3152), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_CARET] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3156), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3158), + [anon_sym_lock] = ACTIONS(3160), + [anon_sym_rlock] = ACTIONS(3160), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -112316,111 +112612,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [776] = { [sym_line_comment] = STATE(776), [sym_block_comment] = STATE(776), - [sym__expression] = STATE(222), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), - [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), - [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), - [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), - [sym_if_expression] = STATE(476), - [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), - [sym_match_expression] = STATE(476), - [sym_select_expression] = STATE(476), - [sym_lock_expression] = STATE(476), - [sym_unsafe_expression] = STATE(476), - [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3182), + [sym__expression] = STATE(1285), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3184), - [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_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(1372), [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), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_c_SQUOTE] = ACTIONS(85), - [anon_sym_c_DQUOTE] = ACTIONS(87), - [anon_sym_r_SQUOTE] = ACTIONS(89), - [anon_sym_r_DQUOTE] = ACTIONS(91), - [sym_pseudo_compile_time_identifier] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2671), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_CARET] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_LT_DASH] = ACTIONS(2675), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(2677), + [anon_sym_lock] = ACTIONS(2679), + [anon_sym_rlock] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -112430,111 +112726,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [777] = { [sym_line_comment] = STATE(777), [sym_block_comment] = STATE(777), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(1656), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(848), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3366), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3368), + [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(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [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), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -112544,111 +112840,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [778] = { [sym_line_comment] = STATE(778), [sym_block_comment] = STATE(778), - [sym__expression] = STATE(2782), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2371), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_struct] = ACTIONS(1717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_go] = ACTIONS(1721), + [anon_sym_spawn] = ACTIONS(1723), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_DASH] = ACTIONS(2173), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(1741), + [anon_sym_lock] = ACTIONS(1743), + [anon_sym_rlock] = ACTIONS(1743), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -112658,111 +112954,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [779] = { [sym_line_comment] = STATE(779), [sym_block_comment] = STATE(779), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3552), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2720), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3620), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2787), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -112772,111 +113068,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [780] = { [sym_line_comment] = STATE(780), [sym_block_comment] = STATE(780), - [sym__expression] = STATE(2591), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(1140), + [sym__expression_without_blocks] = STATE(1172), + [sym__expression_with_blocks] = STATE(1172), + [sym_inc_expression] = STATE(1173), + [sym_dec_expression] = STATE(1173), + [sym_or_block_expression] = STATE(1173), + [sym_option_propagation_expression] = STATE(1173), + [sym_result_propagation_expression] = STATE(1173), + [sym_anon_struct_value_expression] = STATE(1228), + [sym_go_expression] = STATE(1173), + [sym_spawn_expression] = STATE(1173), + [sym_parenthesized_expression] = STATE(1173), + [sym_call_expression] = STATE(1173), + [sym_type_initializer] = STATE(1228), + [sym_function_literal] = STATE(1173), + [sym_reference_expression] = STATE(1196), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1173), + [sym_receive_expression] = STATE(1173), + [sym_binary_expression] = STATE(1173), + [sym_as_type_cast_expression] = STATE(1173), + [sym__max_group] = STATE(1173), + [sym_literal] = STATE(1155), + [sym_map_init_expression] = STATE(1228), + [sym_array_creation] = STATE(1173), + [sym_fixed_array_creation] = STATE(1173), + [sym_selector_expression] = STATE(1173), + [sym_index_expression] = STATE(1173), + [sym_slice_expression] = STATE(1173), + [sym_if_expression] = STATE(1228), + [sym_compile_time_if_expression] = STATE(1228), + [sym_is_expression] = STATE(1173), + [sym_in_expression] = STATE(1173), + [sym_enum_fetch] = STATE(1173), + [sym_match_expression] = STATE(1228), + [sym_select_expression] = STATE(1228), + [sym_lock_expression] = STATE(1228), + [sym_unsafe_expression] = STATE(1228), + [sym_sql_expression] = STATE(1228), + [sym_interpreted_string_literal] = STATE(1156), + [sym_c_string_literal] = STATE(1156), + [sym_raw_string_literal] = STATE(1156), + [sym_mutability_modifiers] = STATE(880), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [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(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [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), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -112886,111 +113182,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [781] = { [sym_line_comment] = STATE(781), [sym_block_comment] = STATE(781), - [sym__expression] = STATE(2772), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2651), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -113000,111 +113296,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [782] = { [sym_line_comment] = STATE(782), [sym_block_comment] = STATE(782), - [sym__expression] = STATE(2794), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(972), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_go] = ACTIONS(3420), + [anon_sym_spawn] = ACTIONS(3422), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3424), + [anon_sym_LT_DASH] = ACTIONS(3426), + [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(3428), + [anon_sym_lock] = ACTIONS(3430), + [anon_sym_rlock] = ACTIONS(3430), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -113114,111 +113410,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [783] = { [sym_line_comment] = STATE(783), [sym_block_comment] = STATE(783), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3552), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2303), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -113228,111 +113524,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [784] = { [sym_line_comment] = STATE(784), [sym_block_comment] = STATE(784), - [sym__expression] = STATE(2793), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2779), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -113342,111 +113638,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [785] = { [sym_line_comment] = STATE(785), [sym_block_comment] = STATE(785), - [sym__expression] = STATE(977), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2580), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3394), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_go] = ACTIONS(3400), - [anon_sym_spawn] = ACTIONS(3402), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_CARET] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_LT_DASH] = ACTIONS(3406), - [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(3408), - [anon_sym_lock] = ACTIONS(3410), - [anon_sym_rlock] = ACTIONS(3410), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -113456,111 +113752,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [786] = { [sym_line_comment] = STATE(786), [sym_block_comment] = STATE(786), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3555), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3637), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2787), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -113570,111 +113866,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [787] = { [sym_line_comment] = STATE(787), [sym_block_comment] = STATE(787), - [sym__expression] = STATE(2263), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2829), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3620), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -113684,111 +113980,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [788] = { [sym_line_comment] = STATE(788), [sym_block_comment] = STATE(788), - [sym__expression] = STATE(2616), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2462), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -113798,111 +114094,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [789] = { [sym_line_comment] = STATE(789), [sym_block_comment] = STATE(789), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2460), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -113912,111 +114208,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [790] = { [sym_line_comment] = STATE(790), [sym_block_comment] = STATE(790), - [sym__expression] = STATE(1784), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3148), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3609), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_go] = ACTIONS(3156), - [anon_sym_spawn] = ACTIONS(3158), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_CARET] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_LT_DASH] = ACTIONS(3164), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(3166), - [anon_sym_lock] = ACTIONS(3168), - [anon_sym_rlock] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -114026,111 +114322,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [791] = { [sym_line_comment] = STATE(791), [sym_block_comment] = STATE(791), - [sym__expression] = STATE(2280), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(2579), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2523), - [anon_sym_LT_DASH] = ACTIONS(2525), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -114140,111 +114436,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [792] = { [sym_line_comment] = STATE(792), [sym_block_comment] = STATE(792), - [sym__expression] = STATE(2790), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3561), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3645), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2787), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -114254,111 +114550,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [793] = { [sym_line_comment] = STATE(793), [sym_block_comment] = STATE(793), - [sym__expression] = STATE(2711), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -114368,111 +114664,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [794] = { [sym_line_comment] = STATE(794), [sym_block_comment] = STATE(794), - [sym__expression] = STATE(2474), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(4005), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2191), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(3132), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_go] = ACTIONS(3136), - [anon_sym_spawn] = ACTIONS(3138), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_CARET] = ACTIONS(3130), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3142), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3144), - [anon_sym_lock] = ACTIONS(3146), - [anon_sym_rlock] = ACTIONS(3146), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_go] = ACTIONS(3298), + [anon_sym_spawn] = ACTIONS(3300), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3290), + [anon_sym_CARET] = ACTIONS(3290), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3308), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3320), + [anon_sym_rlock] = ACTIONS(3320), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -114482,111 +114778,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [795] = { [sym_line_comment] = STATE(795), [sym_block_comment] = STATE(795), - [sym__expression] = STATE(2459), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(4005), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2640), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(3132), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_go] = ACTIONS(3136), - [anon_sym_spawn] = ACTIONS(3138), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_CARET] = ACTIONS(3130), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3142), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3144), - [anon_sym_lock] = ACTIONS(3146), - [anon_sym_rlock] = ACTIONS(3146), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -114596,111 +114892,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [796] = { [sym_line_comment] = STATE(796), [sym_block_comment] = STATE(796), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2953), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2954), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(1651), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(848), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3366), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3368), + [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(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [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), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -114710,111 +115006,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [797] = { [sym_line_comment] = STATE(797), [sym_block_comment] = STATE(797), - [sym__expression] = STATE(2440), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2872), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -114824,111 +115120,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [798] = { [sym_line_comment] = STATE(798), [sym_block_comment] = STATE(798), - [sym__expression] = STATE(2444), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(4005), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2582), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4084), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(3132), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(3146), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_go] = ACTIONS(3136), - [anon_sym_spawn] = ACTIONS(3138), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_CARET] = ACTIONS(3130), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_LT_DASH] = ACTIONS(3142), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3144), - [anon_sym_lock] = ACTIONS(3146), - [anon_sym_rlock] = ACTIONS(3146), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_go] = ACTIONS(3150), + [anon_sym_spawn] = ACTIONS(3152), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_CARET] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3156), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3158), + [anon_sym_lock] = ACTIONS(3160), + [anon_sym_rlock] = ACTIONS(3160), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -114938,186 +115234,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [799] = { [sym_line_comment] = STATE(799), [sym_block_comment] = STATE(799), - [sym__expression] = STATE(2449), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [800] = { - [sym_line_comment] = STATE(800), - [sym_block_comment] = STATE(800), - [sym__expression] = STATE(228), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), + [sym__expression] = STATE(218), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), [sym_if_expression] = STATE(476), [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), [sym_match_expression] = STATE(476), [sym_select_expression] = STATE(476), [sym_lock_expression] = STATE(476), [sym_unsafe_expression] = STATE(476), [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3182), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_mutability_modifiers] = STATE(863), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3176), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_LBRACE] = ACTIONS(3178), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_fn] = ACTIONS(485), [anon_sym_PLUS] = ACTIONS(31), @@ -115163,114 +115345,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, + [800] = { + [sym_line_comment] = STATE(800), + [sym_block_comment] = STATE(800), + [sym__expression] = STATE(2855), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, [801] = { [sym_line_comment] = STATE(801), [sym_block_comment] = STATE(801), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2915), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2886), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2491), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(1717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -115280,111 +115576,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [802] = { [sym_line_comment] = STATE(802), [sym_block_comment] = STATE(802), - [sym__expression] = STATE(1289), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(2312), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_go] = ACTIONS(3348), + [anon_sym_spawn] = ACTIONS(3350), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_LT_DASH] = ACTIONS(3354), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3358), + [anon_sym_rlock] = ACTIONS(3358), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -115394,111 +115690,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [803] = { [sym_line_comment] = STATE(803), [sym_block_comment] = STATE(803), - [sym__expression] = STATE(2450), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(3923), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2161), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(3418), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3106), - [anon_sym_lock] = ACTIONS(3108), - [anon_sym_rlock] = ACTIONS(3108), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_go] = ACTIONS(3348), + [anon_sym_spawn] = ACTIONS(3350), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_LT_DASH] = ACTIONS(3354), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3358), + [anon_sym_rlock] = ACTIONS(3358), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -115508,111 +115804,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [804] = { [sym_line_comment] = STATE(804), [sym_block_comment] = STATE(804), - [sym__expression] = STATE(1808), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3148), + [sym__expression] = STATE(2313), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_go] = ACTIONS(3156), - [anon_sym_spawn] = ACTIONS(3158), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_CARET] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_LT_DASH] = ACTIONS(3164), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(3166), - [anon_sym_lock] = ACTIONS(3168), - [anon_sym_rlock] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_go] = ACTIONS(3348), + [anon_sym_spawn] = ACTIONS(3350), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_LT_DASH] = ACTIONS(3354), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3358), + [anon_sym_rlock] = ACTIONS(3358), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -115622,111 +115918,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [805] = { [sym_line_comment] = STATE(805), [sym_block_comment] = STATE(805), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1228), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2966), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2932), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [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_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [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), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_c_SQUOTE] = ACTIONS(691), - [anon_sym_c_DQUOTE] = ACTIONS(693), - [anon_sym_r_SQUOTE] = ACTIONS(695), - [anon_sym_r_DQUOTE] = ACTIONS(697), - [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -115736,111 +116032,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [806] = { [sym_line_comment] = STATE(806), [sym_block_comment] = STATE(806), - [sym__expression] = STATE(1807), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3148), + [sym__expression] = STATE(2783), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_go] = ACTIONS(3156), - [anon_sym_spawn] = ACTIONS(3158), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_CARET] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_LT_DASH] = ACTIONS(3164), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(3166), - [anon_sym_lock] = ACTIONS(3168), - [anon_sym_rlock] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -115850,111 +116146,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [807] = { [sym_line_comment] = STATE(807), [sym_block_comment] = STATE(807), - [sym__expression] = STATE(1806), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3148), + [sym__expression] = STATE(218), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_mutability_modifiers] = STATE(863), + [sym_plain_type] = STATE(4179), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3176), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3178), + [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(3154), - [anon_sym_go] = ACTIONS(3156), - [anon_sym_spawn] = ACTIONS(3158), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_CARET] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_LT_DASH] = ACTIONS(3164), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(3166), - [anon_sym_lock] = ACTIONS(3168), - [anon_sym_rlock] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [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), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_c_SQUOTE] = ACTIONS(85), + [anon_sym_c_DQUOTE] = ACTIONS(87), + [anon_sym_r_SQUOTE] = ACTIONS(89), + [anon_sym_r_DQUOTE] = ACTIONS(91), + [sym_pseudo_compile_time_identifier] = ACTIONS(93), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -115964,111 +116260,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [808] = { [sym_line_comment] = STATE(808), [sym_block_comment] = STATE(808), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2902), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(1655), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(848), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3366), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3368), + [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(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [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), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -116078,111 +116374,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [809] = { [sym_line_comment] = STATE(809), [sym_block_comment] = STATE(809), - [sym__expression] = STATE(2450), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(3928), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2849), + [sym__expression_without_blocks] = STATE(2976), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(3418), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3106), - [anon_sym_lock] = ACTIONS(3108), - [anon_sym_rlock] = ACTIONS(3108), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -116192,111 +116488,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [810] = { [sym_line_comment] = STATE(810), [sym_block_comment] = STATE(810), - [sym__expression] = STATE(1799), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3148), + [sym__expression] = STATE(2802), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3620), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_go] = ACTIONS(3156), - [anon_sym_spawn] = ACTIONS(3158), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_CARET] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_LT_DASH] = ACTIONS(3164), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(3166), - [anon_sym_lock] = ACTIONS(3168), - [anon_sym_rlock] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -116306,111 +116602,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [811] = { [sym_line_comment] = STATE(811), [sym_block_comment] = STATE(811), - [sym__expression] = STATE(1768), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3148), + [sym__expression] = STATE(1654), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(848), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3366), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3368), + [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(3154), - [anon_sym_go] = ACTIONS(3156), - [anon_sym_spawn] = ACTIONS(3158), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_CARET] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_LT_DASH] = ACTIONS(3164), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(3166), - [anon_sym_lock] = ACTIONS(3168), - [anon_sym_rlock] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [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), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -116420,111 +116716,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [812] = { [sym_line_comment] = STATE(812), [sym_block_comment] = STATE(812), - [sym__expression] = STATE(1255), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(1792), + [sym__expression_without_blocks] = STATE(2115), + [sym__expression_with_blocks] = STATE(2115), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [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_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(828), + [sym_plain_type] = STATE(4291), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3394), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3396), + [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(3398), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [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(3400), + [anon_sym_DOLLARif] = ACTIONS(3402), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_select] = ACTIONS(3406), + [anon_sym_lock] = ACTIONS(3408), + [anon_sym_rlock] = ACTIONS(3408), + [anon_sym_unsafe] = ACTIONS(3410), + [anon_sym_sql] = ACTIONS(3412), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -116534,111 +116830,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [813] = { [sym_line_comment] = STATE(813), [sym_block_comment] = STATE(813), - [sym__expression] = STATE(1265), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(218), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_mutability_modifiers] = STATE(863), + [sym_plain_type] = STATE(4193), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3176), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3178), + [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(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [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), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_c_SQUOTE] = ACTIONS(85), + [anon_sym_c_DQUOTE] = ACTIONS(87), + [anon_sym_r_SQUOTE] = ACTIONS(89), + [anon_sym_r_DQUOTE] = ACTIONS(91), + [sym_pseudo_compile_time_identifier] = ACTIONS(93), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -116648,111 +116944,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [814] = { [sym_line_comment] = STATE(814), [sym_block_comment] = STATE(814), - [sym__expression] = STATE(1797), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3148), + [sym__expression] = STATE(1819), + [sym__expression_without_blocks] = STATE(2115), + [sym__expression_with_blocks] = STATE(2115), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [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_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(828), + [sym_plain_type] = STATE(4291), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3394), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3396), + [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(3398), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_go] = ACTIONS(3156), - [anon_sym_spawn] = ACTIONS(3158), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_CARET] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_LT_DASH] = ACTIONS(3164), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(3166), - [anon_sym_lock] = ACTIONS(3168), - [anon_sym_rlock] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [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(3400), + [anon_sym_DOLLARif] = ACTIONS(3402), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_select] = ACTIONS(3406), + [anon_sym_lock] = ACTIONS(3408), + [anon_sym_rlock] = ACTIONS(3408), + [anon_sym_unsafe] = ACTIONS(3410), + [anon_sym_sql] = ACTIONS(3412), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -116762,111 +117058,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [815] = { [sym_line_comment] = STATE(815), [sym_block_comment] = STATE(815), - [sym__expression] = STATE(2582), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -116876,111 +117172,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [816] = { [sym_line_comment] = STATE(816), [sym_block_comment] = STATE(816), - [sym__expression] = STATE(1268), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(2630), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -116990,111 +117286,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [817] = { [sym_line_comment] = STATE(817), [sym_block_comment] = STATE(817), - [sym__expression] = STATE(2494), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2489), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4084), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(3146), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_go] = ACTIONS(3150), + [anon_sym_spawn] = ACTIONS(3152), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_CARET] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3156), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3158), + [anon_sym_lock] = ACTIONS(3160), + [anon_sym_rlock] = ACTIONS(3160), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -117104,111 +117400,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [818] = { [sym_line_comment] = STATE(818), [sym_block_comment] = STATE(818), - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(1812), + [sym__expression_without_blocks] = STATE(2115), + [sym__expression_with_blocks] = STATE(2115), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [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_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(828), + [sym_plain_type] = STATE(4291), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3394), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3396), + [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(3398), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [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(3400), + [anon_sym_DOLLARif] = ACTIONS(3402), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_select] = ACTIONS(3406), + [anon_sym_lock] = ACTIONS(3408), + [anon_sym_rlock] = ACTIONS(3408), + [anon_sym_unsafe] = ACTIONS(3410), + [anon_sym_sql] = ACTIONS(3412), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -117218,111 +117514,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [819] = { [sym_line_comment] = STATE(819), [sym_block_comment] = STATE(819), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3645), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -117332,111 +117628,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [820] = { [sym_line_comment] = STATE(820), [sym_block_comment] = STATE(820), - [sym__expression] = STATE(1275), - [sym__expression_without_blocks] = STATE(1313), - [sym__expression_with_blocks] = STATE(1313), - [sym_inc_expression] = STATE(1314), - [sym_dec_expression] = STATE(1314), - [sym_or_block_expression] = STATE(1314), - [sym_option_propagation_expression] = STATE(1314), - [sym_result_propagation_expression] = STATE(1314), - [sym_anon_struct_value_expression] = STATE(1315), - [sym_go_expression] = STATE(1314), - [sym_spawn_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_type_initializer] = STATE(1315), - [sym_function_literal] = STATE(1314), - [sym_reference_expression] = STATE(1340), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1314), - [sym_receive_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_as_type_cast_expression] = STATE(1314), - [sym__max_group] = STATE(1314), - [sym_literal] = STATE(1309), - [sym_map_init_expression] = STATE(1315), - [sym_array_creation] = STATE(1314), - [sym_fixed_array_creation] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym_index_expression] = STATE(1314), - [sym_slice_expression] = STATE(1314), - [sym_if_expression] = STATE(1315), - [sym_compile_time_if_expression] = STATE(1315), - [sym_is_expression] = STATE(1314), - [sym_in_expression] = STATE(1314), - [sym_enum_fetch] = STATE(1314), - [sym_match_expression] = STATE(1315), - [sym_select_expression] = STATE(1315), - [sym_lock_expression] = STATE(1315), - [sym_unsafe_expression] = STATE(1315), - [sym_sql_expression] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1290), - [sym_c_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_mutability_modifiers] = STATE(893), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1299), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3609), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_go] = ACTIONS(1319), - [anon_sym_spawn] = ACTIONS(1321), - [anon_sym_json_DOTdecode] = ACTIONS(1323), - [anon_sym_LBRACK2] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LT_DASH] = ACTIONS(1329), - [sym_none] = ACTIONS(1331), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [sym_nil] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_DOLLARif] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_select] = ACTIONS(1339), - [anon_sym_lock] = ACTIONS(1341), - [anon_sym_rlock] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_sql] = ACTIONS(1345), - [sym_int_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1349), - [sym_rune_literal] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_c_SQUOTE] = ACTIONS(1355), - [anon_sym_c_DQUOTE] = ACTIONS(1357), - [anon_sym_r_SQUOTE] = ACTIONS(1359), - [anon_sym_r_DQUOTE] = ACTIONS(1361), - [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -117446,111 +117742,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [821] = { [sym_line_comment] = STATE(821), [sym_block_comment] = STATE(821), - [sym__expression] = STATE(2537), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2510), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -117560,111 +117856,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [822] = { [sym_line_comment] = STATE(822), [sym_block_comment] = STATE(822), - [sym__expression] = STATE(2592), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(1791), + [sym__expression_without_blocks] = STATE(2115), + [sym__expression_with_blocks] = STATE(2115), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [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_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(828), + [sym_plain_type] = STATE(4291), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3394), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3396), + [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(3398), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [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(3400), + [anon_sym_DOLLARif] = ACTIONS(3402), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_select] = ACTIONS(3406), + [anon_sym_lock] = ACTIONS(3408), + [anon_sym_rlock] = ACTIONS(3408), + [anon_sym_unsafe] = ACTIONS(3410), + [anon_sym_sql] = ACTIONS(3412), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -117674,111 +117970,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [823] = { [sym_line_comment] = STATE(823), [sym_block_comment] = STATE(823), - [sym__expression] = STATE(1618), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(698), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3424), + [sym__expression] = STATE(2327), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3426), - [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_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_struct] = ACTIONS(1717), [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), - [anon_sym_SQUOTE] = ACTIONS(357), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_c_SQUOTE] = ACTIONS(361), - [anon_sym_c_DQUOTE] = ACTIONS(363), - [anon_sym_r_SQUOTE] = ACTIONS(365), - [anon_sym_r_DQUOTE] = ACTIONS(367), - [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_go] = ACTIONS(1721), + [anon_sym_spawn] = ACTIONS(1723), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_DASH] = ACTIONS(2173), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(1741), + [anon_sym_lock] = ACTIONS(1743), + [anon_sym_rlock] = ACTIONS(1743), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -117788,111 +118084,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [824] = { [sym_line_comment] = STATE(824), [sym_block_comment] = STATE(824), - [sym__expression] = STATE(2775), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(1798), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_go] = ACTIONS(807), + [anon_sym_spawn] = ACTIONS(809), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_LT_DASH] = ACTIONS(817), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(827), + [anon_sym_lock] = ACTIONS(829), + [anon_sym_rlock] = ACTIONS(829), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -117902,111 +118198,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [825] = { [sym_line_comment] = STATE(825), [sym_block_comment] = STATE(825), - [sym__expression] = STATE(2273), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(3997), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(1797), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_go] = ACTIONS(3294), - [anon_sym_spawn] = ACTIONS(3296), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_CARET] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3302), - [anon_sym_LT_DASH] = ACTIONS(3304), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3314), - [anon_sym_lock] = ACTIONS(3316), - [anon_sym_rlock] = ACTIONS(3316), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_go] = ACTIONS(807), + [anon_sym_spawn] = ACTIONS(809), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_LT_DASH] = ACTIONS(817), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(827), + [anon_sym_lock] = ACTIONS(829), + [anon_sym_rlock] = ACTIONS(829), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -118016,111 +118312,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [826] = { [sym_line_comment] = STATE(826), [sym_block_comment] = STATE(826), - [sym__expression] = STATE(2122), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(3997), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(1796), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_go] = ACTIONS(3294), - [anon_sym_spawn] = ACTIONS(3296), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_CARET] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3302), - [anon_sym_LT_DASH] = ACTIONS(3304), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3314), - [anon_sym_lock] = ACTIONS(3316), - [anon_sym_rlock] = ACTIONS(3316), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_go] = ACTIONS(807), + [anon_sym_spawn] = ACTIONS(809), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_LT_DASH] = ACTIONS(817), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(827), + [anon_sym_lock] = ACTIONS(829), + [anon_sym_rlock] = ACTIONS(829), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -118130,111 +118426,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [827] = { [sym_line_comment] = STATE(827), [sym_block_comment] = STATE(827), - [sym__expression] = STATE(2457), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(1810), + [sym__expression_without_blocks] = STATE(2115), + [sym__expression_with_blocks] = STATE(2115), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [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_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(828), + [sym_plain_type] = STATE(4291), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3394), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3396), + [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(3398), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [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(3400), + [anon_sym_DOLLARif] = ACTIONS(3402), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_select] = ACTIONS(3406), + [anon_sym_lock] = ACTIONS(3408), + [anon_sym_rlock] = ACTIONS(3408), + [anon_sym_unsafe] = ACTIONS(3410), + [anon_sym_sql] = ACTIONS(3412), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -118244,111 +118540,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [828] = { [sym_line_comment] = STATE(828), [sym_block_comment] = STATE(828), - [sym__expression] = STATE(2269), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(3997), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(2848), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_go] = ACTIONS(3294), - [anon_sym_spawn] = ACTIONS(3296), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_CARET] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3302), - [anon_sym_LT_DASH] = ACTIONS(3304), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3314), - [anon_sym_lock] = ACTIONS(3316), - [anon_sym_rlock] = ACTIONS(3316), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -118358,111 +118654,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [829] = { [sym_line_comment] = STATE(829), [sym_block_comment] = STATE(829), - [sym__expression] = STATE(2274), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(3997), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(2324), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4199), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_struct] = ACTIONS(1717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_go] = ACTIONS(3294), - [anon_sym_spawn] = ACTIONS(3296), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_CARET] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3302), - [anon_sym_LT_DASH] = ACTIONS(3304), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3314), - [anon_sym_lock] = ACTIONS(3316), - [anon_sym_rlock] = ACTIONS(3316), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_go] = ACTIONS(1721), + [anon_sym_spawn] = ACTIONS(1723), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_DASH] = ACTIONS(2173), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(1741), + [anon_sym_lock] = ACTIONS(1743), + [anon_sym_rlock] = ACTIONS(1743), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -118472,111 +118768,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [830] = { [sym_line_comment] = STATE(830), [sym_block_comment] = STATE(830), - [sym__expression] = STATE(2264), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(3997), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(1795), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_go] = ACTIONS(3294), - [anon_sym_spawn] = ACTIONS(3296), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_CARET] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3302), - [anon_sym_LT_DASH] = ACTIONS(3304), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3314), - [anon_sym_lock] = ACTIONS(3316), - [anon_sym_rlock] = ACTIONS(3316), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_go] = ACTIONS(807), + [anon_sym_spawn] = ACTIONS(809), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_LT_DASH] = ACTIONS(817), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(827), + [anon_sym_lock] = ACTIONS(829), + [anon_sym_rlock] = ACTIONS(829), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -118586,111 +118882,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [831] = { [sym_line_comment] = STATE(831), [sym_block_comment] = STATE(831), - [sym__expression] = STATE(2714), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3561), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(1794), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2787), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_go] = ACTIONS(807), + [anon_sym_spawn] = ACTIONS(809), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_LT_DASH] = ACTIONS(817), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(827), + [anon_sym_lock] = ACTIONS(829), + [anon_sym_rlock] = ACTIONS(829), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -118700,111 +118996,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [832] = { [sym_line_comment] = STATE(832), [sym_block_comment] = STATE(832), - [sym__expression] = STATE(2265), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(3997), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(1805), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_go] = ACTIONS(3294), - [anon_sym_spawn] = ACTIONS(3296), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_CARET] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3302), - [anon_sym_LT_DASH] = ACTIONS(3304), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3314), - [anon_sym_lock] = ACTIONS(3316), - [anon_sym_rlock] = ACTIONS(3316), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_go] = ACTIONS(807), + [anon_sym_spawn] = ACTIONS(809), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_LT_DASH] = ACTIONS(817), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(827), + [anon_sym_lock] = ACTIONS(829), + [anon_sym_rlock] = ACTIONS(829), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -118814,111 +119110,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [833] = { [sym_line_comment] = STATE(833), [sym_block_comment] = STATE(833), - [sym__expression] = STATE(1636), - [sym__expression_without_blocks] = STATE(1814), - [sym__expression_with_blocks] = STATE(1814), - [sym_inc_expression] = STATE(1819), - [sym_dec_expression] = STATE(1819), - [sym_or_block_expression] = STATE(1819), - [sym_option_propagation_expression] = STATE(1819), - [sym_result_propagation_expression] = STATE(1819), - [sym_anon_struct_value_expression] = STATE(1823), - [sym_go_expression] = STATE(1819), - [sym_spawn_expression] = STATE(1819), - [sym_parenthesized_expression] = STATE(1819), - [sym_call_expression] = STATE(1819), - [sym_type_initializer] = STATE(1823), - [sym_function_literal] = STATE(1819), - [sym_reference_expression] = STATE(1833), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1819), - [sym_receive_expression] = STATE(1819), - [sym_binary_expression] = STATE(1819), - [sym_as_type_cast_expression] = STATE(1819), - [sym__max_group] = STATE(1819), - [sym_literal] = STATE(1812), - [sym_map_init_expression] = STATE(1823), - [sym_array_creation] = STATE(1819), - [sym_fixed_array_creation] = STATE(1819), - [sym_selector_expression] = STATE(1819), - [sym_index_expression] = STATE(1819), - [sym_slice_expression] = STATE(1819), - [sym_if_expression] = STATE(1823), - [sym_compile_time_if_expression] = STATE(1823), - [sym_is_expression] = STATE(1819), - [sym_in_expression] = STATE(1819), - [sym_enum_fetch] = STATE(1819), - [sym_match_expression] = STATE(1823), - [sym_select_expression] = STATE(1823), - [sym_lock_expression] = STATE(1823), - [sym_unsafe_expression] = STATE(1823), - [sym_sql_expression] = STATE(1823), - [sym_interpreted_string_literal] = STATE(1811), - [sym_c_string_literal] = STATE(1811), - [sym_raw_string_literal] = STATE(1811), - [sym_mutability_modifiers] = STATE(614), - [sym_plain_type] = STATE(4219), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3190), + [sym__expression] = STATE(2444), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_fn] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3202), - [anon_sym_struct] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_struct] = ACTIONS(1717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_go] = ACTIONS(3208), - [anon_sym_spawn] = ACTIONS(3210), - [anon_sym_json_DOTdecode] = ACTIONS(3212), - [anon_sym_LBRACK2] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_CARET] = ACTIONS(3200), - [anon_sym_AMP] = ACTIONS(3216), - [anon_sym_LT_DASH] = ACTIONS(3218), - [sym_none] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_nil] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_DOLLARif] = ACTIONS(3224), - [anon_sym_match] = ACTIONS(3226), - [anon_sym_select] = ACTIONS(3228), - [anon_sym_lock] = ACTIONS(3230), - [anon_sym_rlock] = ACTIONS(3230), - [anon_sym_unsafe] = ACTIONS(3232), - [anon_sym_sql] = ACTIONS(3234), - [sym_int_literal] = ACTIONS(3220), - [sym_float_literal] = ACTIONS(3236), - [sym_rune_literal] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(3240), - [anon_sym_c_SQUOTE] = ACTIONS(3242), - [anon_sym_c_DQUOTE] = ACTIONS(3244), - [anon_sym_r_SQUOTE] = ACTIONS(3246), - [anon_sym_r_DQUOTE] = ACTIONS(3248), - [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_go] = ACTIONS(1721), + [anon_sym_spawn] = ACTIONS(1723), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_DASH] = ACTIONS(2173), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(1741), + [anon_sym_lock] = ACTIONS(1743), + [anon_sym_rlock] = ACTIONS(1743), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -118928,111 +119224,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [834] = { [sym_line_comment] = STATE(834), [sym_block_comment] = STATE(834), - [sym__expression] = STATE(2123), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(4272), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(2532), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3376), - [anon_sym_DASH] = ACTIONS(3376), - [anon_sym_STAR] = ACTIONS(3378), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_go] = ACTIONS(3382), - [anon_sym_spawn] = ACTIONS(3384), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3376), - [anon_sym_CARET] = ACTIONS(3376), - [anon_sym_AMP] = ACTIONS(3386), - [anon_sym_LT_DASH] = ACTIONS(3388), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3390), - [anon_sym_lock] = ACTIONS(3392), - [anon_sym_rlock] = ACTIONS(3392), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -119042,111 +119338,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [835] = { [sym_line_comment] = STATE(835), [sym_block_comment] = STATE(835), - [sym__expression] = STATE(2796), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(1272), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -119156,111 +119452,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [836] = { [sym_line_comment] = STATE(836), [sym_block_comment] = STATE(836), - [sym__expression] = STATE(2456), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(1260), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -119270,111 +119566,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [837] = { [sym_line_comment] = STATE(837), [sym_block_comment] = STATE(837), - [sym__expression] = STATE(2488), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2445), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_struct] = ACTIONS(1717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_go] = ACTIONS(1721), + [anon_sym_spawn] = ACTIONS(1723), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_DASH] = ACTIONS(2173), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(1741), + [anon_sym_lock] = ACTIONS(1743), + [anon_sym_rlock] = ACTIONS(1743), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -119384,111 +119680,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [838] = { [sym_line_comment] = STATE(838), [sym_block_comment] = STATE(838), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2920), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2898), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2324), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4207), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_struct] = ACTIONS(1717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_go] = ACTIONS(1721), + [anon_sym_spawn] = ACTIONS(1723), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_DASH] = ACTIONS(2173), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(1741), + [anon_sym_lock] = ACTIONS(1743), + [anon_sym_rlock] = ACTIONS(1743), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -119498,111 +119794,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [839] = { [sym_line_comment] = STATE(839), [sym_block_comment] = STATE(839), - [sym__expression] = STATE(2268), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(3637), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -119612,111 +119908,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [840] = { [sym_line_comment] = STATE(840), [sym_block_comment] = STATE(840), - [sym__expression] = STATE(2460), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2324), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4254), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_struct] = ACTIONS(1717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_lock] = ACTIONS(1833), - [anon_sym_rlock] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_go] = ACTIONS(1721), + [anon_sym_spawn] = ACTIONS(1723), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_DASH] = ACTIONS(2173), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(1741), + [anon_sym_lock] = ACTIONS(1743), + [anon_sym_rlock] = ACTIONS(1743), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -119726,111 +120022,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [841] = { [sym_line_comment] = STATE(841), [sym_block_comment] = STATE(841), - [sym__expression] = STATE(1779), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(2324), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_struct] = ACTIONS(1717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(789), - [anon_sym_go] = ACTIONS(791), - [anon_sym_spawn] = ACTIONS(793), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(797), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(799), - [anon_sym_LT_DASH] = ACTIONS(801), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(811), - [anon_sym_lock] = ACTIONS(813), - [anon_sym_rlock] = ACTIONS(813), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_go] = ACTIONS(1721), + [anon_sym_spawn] = ACTIONS(1723), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_DASH] = ACTIONS(2173), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(1741), + [anon_sym_lock] = ACTIONS(1743), + [anon_sym_rlock] = ACTIONS(1743), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -119840,111 +120136,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [842] = { [sym_line_comment] = STATE(842), [sym_block_comment] = STATE(842), - [sym__expression] = STATE(2450), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(3930), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2936), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2937), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(3418), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3106), - [anon_sym_lock] = ACTIONS(3108), - [anon_sym_rlock] = ACTIONS(3108), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -119954,111 +120250,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [843] = { [sym_line_comment] = STATE(843), [sym_block_comment] = STATE(843), - [sym__expression] = STATE(1809), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3148), + [sym__expression] = STATE(1271), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_go] = ACTIONS(3156), - [anon_sym_spawn] = ACTIONS(3158), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_CARET] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_LT_DASH] = ACTIONS(3164), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(3166), - [anon_sym_lock] = ACTIONS(3168), - [anon_sym_rlock] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -120068,111 +120364,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [844] = { [sym_line_comment] = STATE(844), [sym_block_comment] = STATE(844), - [sym__expression] = STATE(2807), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3428), + [sym__expression] = STATE(2816), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -120182,111 +120478,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [845] = { [sym_line_comment] = STATE(845), [sym_block_comment] = STATE(845), - [sym__expression] = STATE(2124), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(3997), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(1270), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3376), - [anon_sym_DASH] = ACTIONS(3376), - [anon_sym_STAR] = ACTIONS(3378), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_go] = ACTIONS(3382), - [anon_sym_spawn] = ACTIONS(3384), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3376), - [anon_sym_CARET] = ACTIONS(3376), - [anon_sym_AMP] = ACTIONS(3386), - [anon_sym_LT_DASH] = ACTIONS(3388), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3390), - [anon_sym_lock] = ACTIONS(3392), - [anon_sym_rlock] = ACTIONS(3392), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -120296,111 +120592,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [846] = { [sym_line_comment] = STATE(846), [sym_block_comment] = STATE(846), - [sym__expression] = STATE(1751), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4257), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3148), + [sym__expression] = STATE(2833), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3620), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_go] = ACTIONS(3156), - [anon_sym_spawn] = ACTIONS(3158), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_CARET] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_LT_DASH] = ACTIONS(3164), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(3166), - [anon_sym_lock] = ACTIONS(3168), - [anon_sym_rlock] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -120410,111 +120706,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [847] = { [sym_line_comment] = STATE(847), [sym_block_comment] = STATE(847), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3552), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2303), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -120524,111 +120820,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [848] = { [sym_line_comment] = STATE(848), [sym_block_comment] = STATE(848), - [sym__expression] = STATE(978), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2864), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3394), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_go] = ACTIONS(3400), - [anon_sym_spawn] = ACTIONS(3402), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_CARET] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_LT_DASH] = ACTIONS(3406), - [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(3408), - [anon_sym_lock] = ACTIONS(3410), - [anon_sym_rlock] = ACTIONS(3410), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -120638,111 +120934,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [849] = { [sym_line_comment] = STATE(849), [sym_block_comment] = STATE(849), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2922), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2923), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(1267), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -120752,111 +121048,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [850] = { [sym_line_comment] = STATE(850), [sym_block_comment] = STATE(850), - [sym__expression] = STATE(1881), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(789), - [anon_sym_go] = ACTIONS(791), - [anon_sym_spawn] = ACTIONS(793), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(797), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(799), - [anon_sym_LT_DASH] = ACTIONS(801), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(811), - [anon_sym_lock] = ACTIONS(813), - [anon_sym_rlock] = ACTIONS(813), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -120866,111 +121162,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [851] = { [sym_line_comment] = STATE(851), [sym_block_comment] = STATE(851), - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3561), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(848), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3366), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3368), + [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(2787), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [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), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -120980,111 +121276,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [852] = { [sym_line_comment] = STATE(852), [sym_block_comment] = STATE(852), - [sym__expression] = STATE(2762), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(1269), + [sym__expression_without_blocks] = STATE(1311), + [sym__expression_with_blocks] = STATE(1311), + [sym_inc_expression] = STATE(1312), + [sym_dec_expression] = STATE(1312), + [sym_or_block_expression] = STATE(1312), + [sym_option_propagation_expression] = STATE(1312), + [sym_result_propagation_expression] = STATE(1312), + [sym_anon_struct_value_expression] = STATE(1313), + [sym_go_expression] = STATE(1312), + [sym_spawn_expression] = STATE(1312), + [sym_parenthesized_expression] = STATE(1312), + [sym_call_expression] = STATE(1312), + [sym_type_initializer] = STATE(1313), + [sym_function_literal] = STATE(1312), + [sym_reference_expression] = STATE(1391), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1312), + [sym_receive_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_as_type_cast_expression] = STATE(1312), + [sym__max_group] = STATE(1312), + [sym_literal] = STATE(1307), + [sym_map_init_expression] = STATE(1313), + [sym_array_creation] = STATE(1312), + [sym_fixed_array_creation] = STATE(1312), + [sym_selector_expression] = STATE(1312), + [sym_index_expression] = STATE(1312), + [sym_slice_expression] = STATE(1312), + [sym_if_expression] = STATE(1313), + [sym_compile_time_if_expression] = STATE(1313), + [sym_is_expression] = STATE(1312), + [sym_in_expression] = STATE(1312), + [sym_enum_fetch] = STATE(1312), + [sym_match_expression] = STATE(1313), + [sym_select_expression] = STATE(1313), + [sym_lock_expression] = STATE(1313), + [sym_unsafe_expression] = STATE(1313), + [sym_sql_expression] = STATE(1313), + [sym_interpreted_string_literal] = STATE(1284), + [sym_c_string_literal] = STATE(1284), + [sym_raw_string_literal] = STATE(1284), + [sym_mutability_modifiers] = STATE(753), + [sym_plain_type] = STATE(4283), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1356), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1372), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_go] = ACTIONS(1376), + [anon_sym_spawn] = ACTIONS(1378), + [anon_sym_json_DOTdecode] = ACTIONS(1380), + [anon_sym_LBRACK2] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LT_DASH] = ACTIONS(1386), + [sym_none] = ACTIONS(1388), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [sym_nil] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_select] = ACTIONS(1396), + [anon_sym_lock] = ACTIONS(1398), + [anon_sym_rlock] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_sql] = ACTIONS(1402), + [sym_int_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1406), + [sym_rune_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_c_SQUOTE] = ACTIONS(1412), + [anon_sym_c_DQUOTE] = ACTIONS(1414), + [anon_sym_r_SQUOTE] = ACTIONS(1416), + [anon_sym_r_DQUOTE] = ACTIONS(1418), + [sym_pseudo_compile_time_identifier] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -121094,111 +121390,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [853] = { [sym_line_comment] = STATE(853), [sym_block_comment] = STATE(853), - [sym__expression] = STATE(221), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), - [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), - [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), - [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), - [sym_if_expression] = STATE(476), - [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), - [sym_match_expression] = STATE(476), - [sym_select_expression] = STATE(476), - [sym_lock_expression] = STATE(476), - [sym_unsafe_expression] = STATE(476), - [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3182), + [sym__expression] = STATE(2638), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3184), - [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_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(1438), [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), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_c_SQUOTE] = ACTIONS(85), - [anon_sym_c_DQUOTE] = ACTIONS(87), - [anon_sym_r_SQUOTE] = ACTIONS(89), - [anon_sym_r_DQUOTE] = ACTIONS(91), - [sym_pseudo_compile_time_identifier] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_go] = ACTIONS(2909), + [anon_sym_spawn] = ACTIONS(2911), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_LT_DASH] = ACTIONS(2917), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(2919), + [anon_sym_lock] = ACTIONS(2921), + [anon_sym_rlock] = ACTIONS(2921), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -121208,111 +121504,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [854] = { [sym_line_comment] = STATE(854), [sym_block_comment] = STATE(854), - [sym__expression] = STATE(2499), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1721), + [sym__expression_with_blocks] = STATE(1721), + [sym_inc_expression] = STATE(1720), + [sym_dec_expression] = STATE(1720), + [sym_or_block_expression] = STATE(1720), + [sym_option_propagation_expression] = STATE(1720), + [sym_result_propagation_expression] = STATE(1720), + [sym_anon_struct_value_expression] = STATE(1736), + [sym_go_expression] = STATE(1720), + [sym_spawn_expression] = STATE(1720), + [sym_parenthesized_expression] = STATE(1720), + [sym_call_expression] = STATE(1720), + [sym_type_initializer] = STATE(1736), + [sym_function_literal] = STATE(1720), + [sym_reference_expression] = STATE(1743), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1720), + [sym_receive_expression] = STATE(1720), + [sym_binary_expression] = STATE(1720), + [sym_as_type_cast_expression] = STATE(1720), + [sym__max_group] = STATE(1720), + [sym_literal] = STATE(1735), + [sym_map_init_expression] = STATE(1736), + [sym_array_creation] = STATE(1720), + [sym_fixed_array_creation] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym_index_expression] = STATE(1720), + [sym_slice_expression] = STATE(1720), + [sym_if_expression] = STATE(1736), + [sym_compile_time_if_expression] = STATE(1736), + [sym_is_expression] = STATE(1720), + [sym_in_expression] = STATE(1720), + [sym_enum_fetch] = STATE(1720), + [sym_match_expression] = STATE(1736), + [sym_select_expression] = STATE(1736), + [sym_lock_expression] = STATE(1736), + [sym_unsafe_expression] = STATE(1736), + [sym_sql_expression] = STATE(1736), + [sym_interpreted_string_literal] = STATE(1777), + [sym_c_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_mutability_modifiers] = STATE(848), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3366), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2405), - [anon_sym_go] = ACTIONS(2407), - [anon_sym_spawn] = ACTIONS(2409), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2401), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(2417), - [anon_sym_lock] = ACTIONS(2419), - [anon_sym_rlock] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3368), + [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), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -121322,111 +121618,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [855] = { [sym_line_comment] = STATE(855), [sym_block_comment] = STATE(855), - [sym__expression] = STATE(2824), - [sym__expression_without_blocks] = STATE(2866), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2860), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_DASH] = ACTIONS(1827), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -121436,111 +121732,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [856] = { [sym_line_comment] = STATE(856), [sym_block_comment] = STATE(856), - [sym__expression] = STATE(2268), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2574), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4084), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(3146), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2405), - [anon_sym_go] = ACTIONS(2407), - [anon_sym_spawn] = ACTIONS(2409), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2401), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(2417), - [anon_sym_lock] = ACTIONS(2419), - [anon_sym_rlock] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_go] = ACTIONS(3150), + [anon_sym_spawn] = ACTIONS(3152), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_CARET] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3156), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3158), + [anon_sym_lock] = ACTIONS(3160), + [anon_sym_rlock] = ACTIONS(3160), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -121550,111 +121846,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [857] = { [sym_line_comment] = STATE(857), [sym_block_comment] = STATE(857), - [sym__expression] = STATE(2510), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(221), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_mutability_modifiers] = STATE(863), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3176), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3178), + [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(2405), - [anon_sym_go] = ACTIONS(2407), - [anon_sym_spawn] = ACTIONS(2409), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2401), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(2417), - [anon_sym_lock] = ACTIONS(2419), - [anon_sym_rlock] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [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), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_c_SQUOTE] = ACTIONS(85), + [anon_sym_c_DQUOTE] = ACTIONS(87), + [anon_sym_r_SQUOTE] = ACTIONS(89), + [anon_sym_r_DQUOTE] = ACTIONS(91), + [sym_pseudo_compile_time_identifier] = ACTIONS(93), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -121664,111 +121960,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [858] = { [sym_line_comment] = STATE(858), [sym_block_comment] = STATE(858), - [sym__expression] = STATE(2532), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2309), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2405), - [anon_sym_go] = ACTIONS(2407), - [anon_sym_spawn] = ACTIONS(2409), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2401), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(2417), - [anon_sym_lock] = ACTIONS(2419), - [anon_sym_rlock] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_go] = ACTIONS(3348), + [anon_sym_spawn] = ACTIONS(3350), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_LT_DASH] = ACTIONS(3354), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3358), + [anon_sym_rlock] = ACTIONS(3358), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -121778,111 +122074,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [859] = { [sym_line_comment] = STATE(859), [sym_block_comment] = STATE(859), - [sym__expression] = STATE(2598), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2314), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_go] = ACTIONS(3348), + [anon_sym_spawn] = ACTIONS(3350), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_LT_DASH] = ACTIONS(3354), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3358), + [anon_sym_rlock] = ACTIONS(3358), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -121892,111 +122188,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [860] = { [sym_line_comment] = STATE(860), [sym_block_comment] = STATE(860), - [sym__expression] = STATE(2426), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(4005), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2960), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2964), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(3418), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3106), - [anon_sym_lock] = ACTIONS(3108), - [anon_sym_rlock] = ACTIONS(3108), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -122006,111 +122302,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [861] = { [sym_line_comment] = STATE(861), [sym_block_comment] = STATE(861), - [sym__expression] = STATE(2443), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(4005), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(3418), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3106), - [anon_sym_lock] = ACTIONS(3108), - [anon_sym_rlock] = ACTIONS(3108), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -122120,111 +122416,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [862] = { [sym_line_comment] = STATE(862), [sym_block_comment] = STATE(862), - [sym__expression] = STATE(1124), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1228), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(2760), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [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_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [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), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_c_SQUOTE] = ACTIONS(691), - [anon_sym_c_DQUOTE] = ACTIONS(693), - [anon_sym_r_SQUOTE] = ACTIONS(695), - [anon_sym_r_DQUOTE] = ACTIONS(697), - [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -122234,111 +122530,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [863] = { [sym_line_comment] = STATE(863), [sym_block_comment] = STATE(863), - [sym__expression] = STATE(2515), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2865), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2405), - [anon_sym_go] = ACTIONS(2407), - [anon_sym_spawn] = ACTIONS(2409), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2401), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(2417), - [anon_sym_lock] = ACTIONS(2419), - [anon_sym_rlock] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -122348,111 +122644,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [864] = { [sym_line_comment] = STATE(864), [sym_block_comment] = STATE(864), - [sym__expression] = STATE(1108), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1228), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(1806), + [sym__expression_without_blocks] = STATE(2115), + [sym__expression_with_blocks] = STATE(2115), + [sym_inc_expression] = STATE(2033), + [sym_dec_expression] = STATE(2033), + [sym_or_block_expression] = STATE(2033), + [sym_option_propagation_expression] = STATE(2033), + [sym_result_propagation_expression] = STATE(2033), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(2033), + [sym_spawn_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(2033), + [sym_reference_expression] = STATE(2131), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2033), + [sym_receive_expression] = STATE(2033), + [sym_binary_expression] = STATE(2033), + [sym_as_type_cast_expression] = STATE(2033), + [sym__max_group] = STATE(2033), + [sym_literal] = STATE(2028), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(2033), + [sym_fixed_array_creation] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym_index_expression] = STATE(2033), + [sym_slice_expression] = STATE(2033), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(2033), + [sym_in_expression] = STATE(2033), + [sym_enum_fetch] = STATE(2033), + [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_interpreted_string_literal] = STATE(2027), + [sym_c_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_mutability_modifiers] = STATE(828), + [sym_plain_type] = STATE(4291), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3394), [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_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3396), + [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(3398), [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), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_c_SQUOTE] = ACTIONS(691), - [anon_sym_c_DQUOTE] = ACTIONS(693), - [anon_sym_r_SQUOTE] = ACTIONS(695), - [anon_sym_r_DQUOTE] = ACTIONS(697), - [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [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(3400), + [anon_sym_DOLLARif] = ACTIONS(3402), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_select] = ACTIONS(3406), + [anon_sym_lock] = ACTIONS(3408), + [anon_sym_rlock] = ACTIONS(3408), + [anon_sym_unsafe] = ACTIONS(3410), + [anon_sym_sql] = ACTIONS(3412), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -122462,111 +122758,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [865] = { [sym_line_comment] = STATE(865), [sym_block_comment] = STATE(865), - [sym__expression] = STATE(2577), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2379), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_struct] = ACTIONS(1717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2405), - [anon_sym_go] = ACTIONS(2407), - [anon_sym_spawn] = ACTIONS(2409), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2401), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(2417), - [anon_sym_lock] = ACTIONS(2419), - [anon_sym_rlock] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_go] = ACTIONS(1721), + [anon_sym_spawn] = ACTIONS(1723), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_DASH] = ACTIONS(2173), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(1741), + [anon_sym_lock] = ACTIONS(1743), + [anon_sym_rlock] = ACTIONS(1743), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -122576,111 +122872,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [866] = { [sym_line_comment] = STATE(866), [sym_block_comment] = STATE(866), - [sym__expression] = STATE(2427), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(2310), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(3364), - [anon_sym_spawn] = ACTIONS(3366), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_CARET] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_LT_DASH] = ACTIONS(3370), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3372), - [anon_sym_lock] = ACTIONS(3374), - [anon_sym_rlock] = ACTIONS(3374), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_go] = ACTIONS(3348), + [anon_sym_spawn] = ACTIONS(3350), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_LT_DASH] = ACTIONS(3354), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3358), + [anon_sym_rlock] = ACTIONS(3358), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -122690,111 +122986,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [867] = { [sym_line_comment] = STATE(867), [sym_block_comment] = STATE(867), - [sym__expression] = STATE(1115), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1228), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(2746), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3620), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [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_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(1438), [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), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_c_SQUOTE] = ACTIONS(691), - [anon_sym_c_DQUOTE] = ACTIONS(693), - [anon_sym_r_SQUOTE] = ACTIONS(695), - [anon_sym_r_DQUOTE] = ACTIONS(697), - [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -122804,111 +123100,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [868] = { [sym_line_comment] = STATE(868), [sym_block_comment] = STATE(868), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3553), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(1825), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_go] = ACTIONS(807), + [anon_sym_spawn] = ACTIONS(809), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_LT_DASH] = ACTIONS(817), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(827), + [anon_sym_lock] = ACTIONS(829), + [anon_sym_rlock] = ACTIONS(829), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -122918,111 +123214,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [869] = { [sym_line_comment] = STATE(869), [sym_block_comment] = STATE(869), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3555), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2424), + [sym__expression_without_blocks] = STATE(2531), + [sym__expression_with_blocks] = STATE(2531), + [sym_inc_expression] = STATE(2523), + [sym_dec_expression] = STATE(2523), + [sym_or_block_expression] = STATE(2523), + [sym_option_propagation_expression] = STATE(2523), + [sym_result_propagation_expression] = STATE(2523), + [sym_anon_struct_value_expression] = STATE(2511), + [sym_go_expression] = STATE(2523), + [sym_spawn_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_call_expression] = STATE(2523), + [sym_type_initializer] = STATE(2511), + [sym_function_literal] = STATE(2523), + [sym_reference_expression] = STATE(2564), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2523), + [sym_receive_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_as_type_cast_expression] = STATE(2523), + [sym__max_group] = STATE(2523), + [sym_literal] = STATE(2539), + [sym_map_init_expression] = STATE(2511), + [sym_array_creation] = STATE(2523), + [sym_fixed_array_creation] = STATE(2523), + [sym_selector_expression] = STATE(2523), + [sym_index_expression] = STATE(2523), + [sym_slice_expression] = STATE(2523), + [sym_if_expression] = STATE(2511), + [sym_compile_time_if_expression] = STATE(2511), + [sym_is_expression] = STATE(2523), + [sym_in_expression] = STATE(2523), + [sym_enum_fetch] = STATE(2523), + [sym_match_expression] = STATE(2511), + [sym_select_expression] = STATE(2511), + [sym_lock_expression] = STATE(2511), + [sym_unsafe_expression] = STATE(2511), + [sym_sql_expression] = STATE(2511), + [sym_interpreted_string_literal] = STATE(2542), + [sym_c_string_literal] = STATE(2542), + [sym_raw_string_literal] = STATE(2542), + [sym_mutability_modifiers] = STATE(855), + [sym_plain_type] = STATE(4289), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1703), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_struct] = ACTIONS(1717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_go] = ACTIONS(1721), + [anon_sym_spawn] = ACTIONS(1723), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_DASH] = ACTIONS(2173), + [sym_none] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_nil] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_DOLLARif] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_select] = ACTIONS(1741), + [anon_sym_lock] = ACTIONS(1743), + [anon_sym_rlock] = ACTIONS(1743), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1747), + [sym_int_literal] = ACTIONS(1733), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -123032,111 +123328,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [870] = { [sym_line_comment] = STATE(870), [sym_block_comment] = STATE(870), - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(764), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2652), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2405), - [anon_sym_go] = ACTIONS(2407), - [anon_sym_spawn] = ACTIONS(2409), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2401), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_LT_DASH] = ACTIONS(2415), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(2417), - [anon_sym_lock] = ACTIONS(2419), - [anon_sym_rlock] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -123146,111 +123442,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [871] = { [sym_line_comment] = STATE(871), [sym_block_comment] = STATE(871), - [sym__expression] = STATE(2613), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(1941), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3092), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_go] = ACTIONS(3102), + [anon_sym_spawn] = ACTIONS(3104), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3096), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3108), + [anon_sym_LT_DASH] = ACTIONS(3110), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(3112), + [anon_sym_lock] = ACTIONS(3114), + [anon_sym_rlock] = ACTIONS(3114), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -123260,111 +123556,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [872] = { [sym_line_comment] = STATE(872), [sym_block_comment] = STATE(872), - [sym__expression] = STATE(221), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), - [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), - [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), - [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), - [sym_if_expression] = STATE(476), - [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), - [sym_match_expression] = STATE(476), - [sym_select_expression] = STATE(476), - [sym_lock_expression] = STATE(476), - [sym_unsafe_expression] = STATE(476), - [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4168), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3182), + [sym__expression] = STATE(1814), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3092), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3184), - [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_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(801), [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), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_c_SQUOTE] = ACTIONS(85), - [anon_sym_c_DQUOTE] = ACTIONS(87), - [anon_sym_r_SQUOTE] = ACTIONS(89), - [anon_sym_r_DQUOTE] = ACTIONS(91), - [sym_pseudo_compile_time_identifier] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_go] = ACTIONS(3102), + [anon_sym_spawn] = ACTIONS(3104), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3096), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3108), + [anon_sym_LT_DASH] = ACTIONS(3110), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(3112), + [anon_sym_lock] = ACTIONS(3114), + [anon_sym_rlock] = ACTIONS(3114), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -123374,111 +123670,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [873] = { [sym_line_comment] = STATE(873), [sym_block_comment] = STATE(873), - [sym__expression] = STATE(2752), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3561), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(1811), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4115), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3092), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2787), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_go] = ACTIONS(3102), + [anon_sym_spawn] = ACTIONS(3104), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3096), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3108), + [anon_sym_LT_DASH] = ACTIONS(3110), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(3112), + [anon_sym_lock] = ACTIONS(3114), + [anon_sym_rlock] = ACTIONS(3114), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -123488,111 +123784,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [874] = { [sym_line_comment] = STATE(874), [sym_block_comment] = STATE(874), - [sym__expression] = STATE(2773), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(1828), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3092), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_go] = ACTIONS(3102), + [anon_sym_spawn] = ACTIONS(3104), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3096), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3108), + [anon_sym_LT_DASH] = ACTIONS(3110), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(3112), + [anon_sym_lock] = ACTIONS(3114), + [anon_sym_rlock] = ACTIONS(3114), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -123602,111 +123898,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [875] = { [sym_line_comment] = STATE(875), [sym_block_comment] = STATE(875), - [sym__expression] = STATE(1114), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1228), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(1829), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3092), [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_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(801), [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), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_c_SQUOTE] = ACTIONS(691), - [anon_sym_c_DQUOTE] = ACTIONS(693), - [anon_sym_r_SQUOTE] = ACTIONS(695), - [anon_sym_r_DQUOTE] = ACTIONS(697), - [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_go] = ACTIONS(3102), + [anon_sym_spawn] = ACTIONS(3104), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3096), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3108), + [anon_sym_LT_DASH] = ACTIONS(3110), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(3112), + [anon_sym_lock] = ACTIONS(3114), + [anon_sym_rlock] = ACTIONS(3114), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -123716,111 +124012,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [876] = { [sym_line_comment] = STATE(876), [sym_block_comment] = STATE(876), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2916), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2914), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(1811), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4111), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3092), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_go] = ACTIONS(3102), + [anon_sym_spawn] = ACTIONS(3104), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3096), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3108), + [anon_sym_LT_DASH] = ACTIONS(3110), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(3112), + [anon_sym_lock] = ACTIONS(3114), + [anon_sym_rlock] = ACTIONS(3114), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -123830,111 +124126,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [877] = { [sym_line_comment] = STATE(877), [sym_block_comment] = STATE(877), - [sym__expression] = STATE(961), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2986), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2987), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3394), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_go] = ACTIONS(3400), - [anon_sym_spawn] = ACTIONS(3402), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_CARET] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_LT_DASH] = ACTIONS(3406), - [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(3408), - [anon_sym_lock] = ACTIONS(3410), - [anon_sym_rlock] = ACTIONS(3410), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -123944,111 +124240,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [878] = { [sym_line_comment] = STATE(878), [sym_block_comment] = STATE(878), - [sym__expression] = STATE(2430), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(4005), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(1811), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3092), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(3418), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3106), - [anon_sym_lock] = ACTIONS(3108), - [anon_sym_rlock] = ACTIONS(3108), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_go] = ACTIONS(3102), + [anon_sym_spawn] = ACTIONS(3104), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3096), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3108), + [anon_sym_LT_DASH] = ACTIONS(3110), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(3112), + [anon_sym_lock] = ACTIONS(3114), + [anon_sym_rlock] = ACTIONS(3114), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -124058,111 +124354,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [879] = { [sym_line_comment] = STATE(879), [sym_block_comment] = STATE(879), - [sym__expression] = STATE(1906), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3148), + [sym__expression] = STATE(1811), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3092), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_go] = ACTIONS(3156), - [anon_sym_spawn] = ACTIONS(3158), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_CARET] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_LT_DASH] = ACTIONS(3164), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(3166), - [anon_sym_lock] = ACTIONS(3168), - [anon_sym_rlock] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_go] = ACTIONS(3102), + [anon_sym_spawn] = ACTIONS(3104), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3096), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3108), + [anon_sym_LT_DASH] = ACTIONS(3110), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(3112), + [anon_sym_lock] = ACTIONS(3114), + [anon_sym_rlock] = ACTIONS(3114), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -124172,111 +124468,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [880] = { [sym_line_comment] = STATE(880), [sym_block_comment] = STATE(880), - [sym__expression] = STATE(961), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4039), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2858), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3394), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_go] = ACTIONS(3400), - [anon_sym_spawn] = ACTIONS(3402), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_CARET] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_LT_DASH] = ACTIONS(3406), - [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(3408), - [anon_sym_lock] = ACTIONS(3410), - [anon_sym_rlock] = ACTIONS(3410), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -124286,111 +124582,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [881] = { [sym_line_comment] = STATE(881), [sym_block_comment] = STATE(881), - [sym__expression] = STATE(2829), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2710), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -124400,111 +124696,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [882] = { [sym_line_comment] = STATE(882), [sym_block_comment] = STATE(882), - [sym__expression] = STATE(961), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4052), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2852), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3394), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_go] = ACTIONS(3400), - [anon_sym_spawn] = ACTIONS(3402), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_CARET] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_LT_DASH] = ACTIONS(3406), - [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(3408), - [anon_sym_lock] = ACTIONS(3410), - [anon_sym_rlock] = ACTIONS(3410), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -124514,111 +124810,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [883] = { [sym_line_comment] = STATE(883), [sym_block_comment] = STATE(883), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2891), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2842), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3620), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -124628,111 +124924,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [884] = { [sym_line_comment] = STATE(884), [sym_block_comment] = STATE(884), - [sym__expression] = STATE(2432), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(4005), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2629), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(3418), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3106), - [anon_sym_lock] = ACTIONS(3108), - [anon_sym_rlock] = ACTIONS(3108), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -124742,111 +125038,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [885] = { [sym_line_comment] = STATE(885), [sym_block_comment] = STATE(885), - [sym__expression] = STATE(2418), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(4005), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2849), + [sym__expression_without_blocks] = STATE(2968), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(3418), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3106), - [anon_sym_lock] = ACTIONS(3108), - [anon_sym_rlock] = ACTIONS(3108), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -124856,111 +125152,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [886] = { [sym_line_comment] = STATE(886), [sym_block_comment] = STATE(886), - [sym__expression] = STATE(975), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2659), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3394), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_go] = ACTIONS(3400), - [anon_sym_spawn] = ACTIONS(3402), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_CARET] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_LT_DASH] = ACTIONS(3406), - [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(3408), - [anon_sym_lock] = ACTIONS(3410), - [anon_sym_rlock] = ACTIONS(3410), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -124970,111 +125266,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [887] = { [sym_line_comment] = STATE(887), [sym_block_comment] = STATE(887), - [sym__expression] = STATE(2435), - [sym__expression_without_blocks] = STATE(2640), - [sym__expression_with_blocks] = STATE(2640), - [sym_inc_expression] = STATE(2767), - [sym_dec_expression] = STATE(2767), - [sym_or_block_expression] = STATE(2767), - [sym_option_propagation_expression] = STATE(2767), - [sym_result_propagation_expression] = STATE(2767), - [sym_anon_struct_value_expression] = STATE(2642), - [sym_go_expression] = STATE(2767), - [sym_spawn_expression] = STATE(2767), - [sym_parenthesized_expression] = STATE(2767), - [sym_call_expression] = STATE(2767), - [sym_type_initializer] = STATE(2642), - [sym_function_literal] = STATE(2767), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2767), - [sym_receive_expression] = STATE(2767), - [sym_binary_expression] = STATE(2767), - [sym_as_type_cast_expression] = STATE(2767), - [sym__max_group] = STATE(2767), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2642), - [sym_array_creation] = STATE(2767), - [sym_fixed_array_creation] = STATE(2767), - [sym_selector_expression] = STATE(2767), - [sym_index_expression] = STATE(2767), - [sym_slice_expression] = STATE(2767), - [sym_if_expression] = STATE(2642), - [sym_compile_time_if_expression] = STATE(2642), - [sym_is_expression] = STATE(2767), - [sym_in_expression] = STATE(2767), - [sym_enum_fetch] = STATE(2767), - [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_interpreted_string_literal] = STATE(2650), - [sym_c_string_literal] = STATE(2650), - [sym_raw_string_literal] = STATE(2650), - [sym_mutability_modifiers] = STATE(620), - [sym_plain_type] = STATE(4005), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(227), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_mutability_modifiers] = STATE(863), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3176), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_fn] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(3418), - [anon_sym_struct] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3178), + [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(3420), - [anon_sym_go] = ACTIONS(1103), - [anon_sym_spawn] = ACTIONS(1105), - [anon_sym_json_DOTdecode] = ACTIONS(1107), - [anon_sym_LBRACK2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_LT_DASH] = ACTIONS(1113), - [sym_none] = ACTIONS(1115), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_nil] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_DOLLARif] = ACTIONS(1121), - [anon_sym_match] = ACTIONS(1123), - [anon_sym_select] = ACTIONS(3106), - [anon_sym_lock] = ACTIONS(3108), - [anon_sym_rlock] = ACTIONS(3108), - [anon_sym_unsafe] = ACTIONS(1129), - [anon_sym_sql] = ACTIONS(1131), - [sym_int_literal] = ACTIONS(1115), - [sym_float_literal] = ACTIONS(1133), - [sym_rune_literal] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_c_SQUOTE] = ACTIONS(1139), - [anon_sym_c_DQUOTE] = ACTIONS(1141), - [anon_sym_r_SQUOTE] = ACTIONS(1143), - [anon_sym_r_DQUOTE] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [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), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_c_SQUOTE] = ACTIONS(85), + [anon_sym_c_DQUOTE] = ACTIONS(87), + [anon_sym_r_SQUOTE] = ACTIONS(89), + [anon_sym_r_DQUOTE] = ACTIONS(91), + [sym_pseudo_compile_time_identifier] = ACTIONS(93), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -125084,111 +125380,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [888] = { [sym_line_comment] = STATE(888), [sym_block_comment] = STATE(888), - [sym__expression] = STATE(979), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(1935), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3092), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3394), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_go] = ACTIONS(3400), - [anon_sym_spawn] = ACTIONS(3402), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_CARET] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_LT_DASH] = ACTIONS(3406), - [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(3408), - [anon_sym_lock] = ACTIONS(3410), - [anon_sym_rlock] = ACTIONS(3410), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_go] = ACTIONS(3102), + [anon_sym_spawn] = ACTIONS(3104), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3096), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3108), + [anon_sym_LT_DASH] = ACTIONS(3110), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(3112), + [anon_sym_lock] = ACTIONS(3114), + [anon_sym_rlock] = ACTIONS(3114), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -125198,111 +125494,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [889] = { [sym_line_comment] = STATE(889), [sym_block_comment] = STATE(889), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2933), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2999), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -125312,111 +125608,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [890] = { [sym_line_comment] = STATE(890), [sym_block_comment] = STATE(890), - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(3997), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(1794), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3092), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3376), - [anon_sym_DASH] = ACTIONS(3376), - [anon_sym_STAR] = ACTIONS(3378), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_go] = ACTIONS(3382), - [anon_sym_spawn] = ACTIONS(3384), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3376), - [anon_sym_CARET] = ACTIONS(3376), - [anon_sym_AMP] = ACTIONS(3386), - [anon_sym_LT_DASH] = ACTIONS(3388), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3390), - [anon_sym_lock] = ACTIONS(3392), - [anon_sym_rlock] = ACTIONS(3392), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_go] = ACTIONS(3102), + [anon_sym_spawn] = ACTIONS(3104), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3096), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3108), + [anon_sym_LT_DASH] = ACTIONS(3110), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(3112), + [anon_sym_lock] = ACTIONS(3114), + [anon_sym_rlock] = ACTIONS(3114), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -125426,111 +125722,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [891] = { [sym_line_comment] = STATE(891), [sym_block_comment] = STATE(891), - [sym__expression] = STATE(2820), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2818), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -125540,111 +125836,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [892] = { [sym_line_comment] = STATE(892), [sym_block_comment] = STATE(892), - [sym__expression] = STATE(964), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(1934), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3092), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_CARET] = ACTIONS(2555), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym_LT_DASH] = ACTIONS(2567), - [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(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_go] = ACTIONS(3102), + [anon_sym_spawn] = ACTIONS(3104), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3096), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3108), + [anon_sym_LT_DASH] = ACTIONS(3110), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(3112), + [anon_sym_lock] = ACTIONS(3114), + [anon_sym_rlock] = ACTIONS(3114), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -125654,111 +125950,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [893] = { [sym_line_comment] = STATE(893), [sym_block_comment] = STATE(893), - [sym__expression] = STATE(2808), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(1933), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3092), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_go] = ACTIONS(3102), + [anon_sym_spawn] = ACTIONS(3104), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3096), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3108), + [anon_sym_LT_DASH] = ACTIONS(3110), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(3112), + [anon_sym_lock] = ACTIONS(3114), + [anon_sym_rlock] = ACTIONS(3114), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -125768,111 +126064,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [894] = { [sym_line_comment] = STATE(894), [sym_block_comment] = STATE(894), - [sym__expression] = STATE(2448), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(1932), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3092), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_go] = ACTIONS(3102), + [anon_sym_spawn] = ACTIONS(3104), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3096), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3108), + [anon_sym_LT_DASH] = ACTIONS(3110), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(3112), + [anon_sym_lock] = ACTIONS(3114), + [anon_sym_rlock] = ACTIONS(3114), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -125882,72 +126178,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [895] = { [sym_line_comment] = STATE(895), [sym_block_comment] = STATE(895), - [sym__expression] = STATE(226), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), + [sym__expression] = STATE(228), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), [sym_if_expression] = STATE(476), [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), [sym_match_expression] = STATE(476), [sym_select_expression] = STATE(476), [sym_lock_expression] = STATE(476), [sym_unsafe_expression] = STATE(476), [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3182), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_mutability_modifiers] = STATE(863), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3176), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_LBRACE] = ACTIONS(3178), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_fn] = ACTIONS(485), [anon_sym_PLUS] = ACTIONS(31), @@ -125996,72 +126292,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [896] = { [sym_line_comment] = STATE(896), [sym_block_comment] = STATE(896), - [sym__expression] = STATE(219), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [897] = { + [sym_line_comment] = STATE(897), + [sym_block_comment] = STATE(897), + [sym__expression] = STATE(226), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), [sym_if_expression] = STATE(476), [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), [sym_match_expression] = STATE(476), [sym_select_expression] = STATE(476), [sym_lock_expression] = STATE(476), [sym_unsafe_expression] = STATE(476), [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3182), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_mutability_modifiers] = STATE(863), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3176), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_LBRACE] = ACTIONS(3178), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_fn] = ACTIONS(485), [anon_sym_PLUS] = ACTIONS(31), @@ -126107,228 +126517,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [897] = { - [sym_line_comment] = STATE(897), - [sym_block_comment] = STATE(897), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3553), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, [898] = { [sym_line_comment] = STATE(898), [sym_block_comment] = STATE(898), - [sym__expression] = STATE(1122), - [sym__expression_without_blocks] = STATE(1185), - [sym__expression_with_blocks] = STATE(1185), - [sym_inc_expression] = STATE(1184), - [sym_dec_expression] = STATE(1184), - [sym_or_block_expression] = STATE(1184), - [sym_option_propagation_expression] = STATE(1184), - [sym_result_propagation_expression] = STATE(1184), - [sym_anon_struct_value_expression] = STATE(1179), - [sym_go_expression] = STATE(1184), - [sym_spawn_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_type_initializer] = STATE(1179), - [sym_function_literal] = STATE(1184), - [sym_reference_expression] = STATE(1228), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1184), - [sym_receive_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_as_type_cast_expression] = STATE(1184), - [sym__max_group] = STATE(1184), - [sym_literal] = STATE(1187), - [sym_map_init_expression] = STATE(1179), - [sym_array_creation] = STATE(1184), - [sym_fixed_array_creation] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_slice_expression] = STATE(1184), - [sym_if_expression] = STATE(1179), - [sym_compile_time_if_expression] = STATE(1179), - [sym_is_expression] = STATE(1184), - [sym_in_expression] = STATE(1184), - [sym_enum_fetch] = STATE(1184), - [sym_match_expression] = STATE(1179), - [sym_select_expression] = STATE(1179), - [sym_lock_expression] = STATE(1179), - [sym_unsafe_expression] = STATE(1179), - [sym_sql_expression] = STATE(1179), - [sym_interpreted_string_literal] = STATE(1193), - [sym_c_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_mutability_modifiers] = STATE(906), - [sym_plain_type] = STATE(4007), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(973), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [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_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_struct] = ACTIONS(513), [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), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_c_SQUOTE] = ACTIONS(691), - [anon_sym_c_DQUOTE] = ACTIONS(693), - [anon_sym_r_SQUOTE] = ACTIONS(695), - [anon_sym_r_DQUOTE] = ACTIONS(697), - [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_go] = ACTIONS(3420), + [anon_sym_spawn] = ACTIONS(3422), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3424), + [anon_sym_LT_DASH] = ACTIONS(3426), + [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(3428), + [anon_sym_lock] = ACTIONS(3430), + [anon_sym_rlock] = ACTIONS(3430), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -126338,111 +126634,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [899] = { [sym_line_comment] = STATE(899), [sym_block_comment] = STATE(899), - [sym__expression] = STATE(2206), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(3997), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(1931), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3092), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3376), - [anon_sym_DASH] = ACTIONS(3376), - [anon_sym_STAR] = ACTIONS(3378), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_go] = ACTIONS(3382), - [anon_sym_spawn] = ACTIONS(3384), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3376), - [anon_sym_CARET] = ACTIONS(3376), - [anon_sym_AMP] = ACTIONS(3386), - [anon_sym_LT_DASH] = ACTIONS(3388), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3390), - [anon_sym_lock] = ACTIONS(3392), - [anon_sym_rlock] = ACTIONS(3392), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_go] = ACTIONS(3102), + [anon_sym_spawn] = ACTIONS(3104), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3096), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3108), + [anon_sym_LT_DASH] = ACTIONS(3110), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(3112), + [anon_sym_lock] = ACTIONS(3114), + [anon_sym_rlock] = ACTIONS(3114), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -126452,111 +126748,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [900] = { [sym_line_comment] = STATE(900), [sym_block_comment] = STATE(900), - [sym__expression] = STATE(2123), - [sym__expression_without_blocks] = STATE(2184), - [sym__expression_with_blocks] = STATE(2184), - [sym_inc_expression] = STATE(2182), - [sym_dec_expression] = STATE(2182), - [sym_or_block_expression] = STATE(2182), - [sym_option_propagation_expression] = STATE(2182), - [sym_result_propagation_expression] = STATE(2182), - [sym_anon_struct_value_expression] = STATE(2180), - [sym_go_expression] = STATE(2182), - [sym_spawn_expression] = STATE(2182), - [sym_parenthesized_expression] = STATE(2182), - [sym_call_expression] = STATE(2182), - [sym_type_initializer] = STATE(2180), - [sym_function_literal] = STATE(2182), - [sym_reference_expression] = STATE(2218), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2182), - [sym_receive_expression] = STATE(2182), - [sym_binary_expression] = STATE(2182), - [sym_as_type_cast_expression] = STATE(2182), - [sym__max_group] = STATE(2182), - [sym_literal] = STATE(2237), - [sym_map_init_expression] = STATE(2180), - [sym_array_creation] = STATE(2182), - [sym_fixed_array_creation] = STATE(2182), - [sym_selector_expression] = STATE(2182), - [sym_index_expression] = STATE(2182), - [sym_slice_expression] = STATE(2182), - [sym_if_expression] = STATE(2180), - [sym_compile_time_if_expression] = STATE(2180), - [sym_is_expression] = STATE(2182), - [sym_in_expression] = STATE(2182), - [sym_enum_fetch] = STATE(2182), - [sym_match_expression] = STATE(2180), - [sym_select_expression] = STATE(2180), - [sym_lock_expression] = STATE(2180), - [sym_unsafe_expression] = STATE(2180), - [sym_sql_expression] = STATE(2180), - [sym_interpreted_string_literal] = STATE(2241), - [sym_c_string_literal] = STATE(2241), - [sym_raw_string_literal] = STATE(2241), - [sym_mutability_modifiers] = STATE(751), - [sym_plain_type] = STATE(3997), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3276), + [sym__expression] = STATE(217), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_mutability_modifiers] = STATE(863), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3176), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_fn] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3376), - [anon_sym_DASH] = ACTIONS(3376), - [anon_sym_STAR] = ACTIONS(3378), - [anon_sym_struct] = ACTIONS(3290), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3178), + [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(3380), - [anon_sym_go] = ACTIONS(3382), - [anon_sym_spawn] = ACTIONS(3384), - [anon_sym_json_DOTdecode] = ACTIONS(3298), - [anon_sym_LBRACK2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3376), - [anon_sym_CARET] = ACTIONS(3376), - [anon_sym_AMP] = ACTIONS(3386), - [anon_sym_LT_DASH] = ACTIONS(3388), - [sym_none] = ACTIONS(3306), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_nil] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_DOLLARif] = ACTIONS(3310), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_select] = ACTIONS(3390), - [anon_sym_lock] = ACTIONS(3392), - [anon_sym_rlock] = ACTIONS(3392), - [anon_sym_unsafe] = ACTIONS(3318), - [anon_sym_sql] = ACTIONS(3320), - [sym_int_literal] = ACTIONS(3306), - [sym_float_literal] = ACTIONS(3322), - [sym_rune_literal] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_c_SQUOTE] = ACTIONS(3328), - [anon_sym_c_DQUOTE] = ACTIONS(3330), - [anon_sym_r_SQUOTE] = ACTIONS(3332), - [anon_sym_r_DQUOTE] = ACTIONS(3334), - [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [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), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_c_SQUOTE] = ACTIONS(85), + [anon_sym_c_DQUOTE] = ACTIONS(87), + [anon_sym_r_SQUOTE] = ACTIONS(89), + [anon_sym_r_DQUOTE] = ACTIONS(91), + [sym_pseudo_compile_time_identifier] = ACTIONS(93), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -126566,111 +126862,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [901] = { [sym_line_comment] = STATE(901), [sym_block_comment] = STATE(901), - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(698), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3424), + [sym__expression] = STATE(225), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_mutability_modifiers] = STATE(863), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3176), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3426), - [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_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3178), + [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(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), - [anon_sym_SQUOTE] = ACTIONS(357), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_c_SQUOTE] = ACTIONS(361), - [anon_sym_c_DQUOTE] = ACTIONS(363), - [anon_sym_r_SQUOTE] = ACTIONS(365), - [anon_sym_r_DQUOTE] = ACTIONS(367), - [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [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), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_c_SQUOTE] = ACTIONS(85), + [anon_sym_c_DQUOTE] = ACTIONS(87), + [anon_sym_r_SQUOTE] = ACTIONS(89), + [anon_sym_r_DQUOTE] = ACTIONS(91), + [sym_pseudo_compile_time_identifier] = ACTIONS(93), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -126680,111 +126976,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [902] = { [sym_line_comment] = STATE(902), [sym_block_comment] = STATE(902), - [sym__expression] = STATE(2599), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(960), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_LT_DASH] = ACTIONS(2137), + [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(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -126794,111 +127090,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [903] = { [sym_line_comment] = STATE(903), [sym_block_comment] = STATE(903), - [sym__expression] = STATE(2615), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1811), + [sym__expression] = STATE(2303), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3088), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3094), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(3096), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -126908,111 +127204,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [904] = { [sym_line_comment] = STATE(904), [sym_block_comment] = STATE(904), - [sym__expression] = STATE(1611), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(698), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3424), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3637), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3426), - [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_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(1438), [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), - [anon_sym_SQUOTE] = ACTIONS(357), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_c_SQUOTE] = ACTIONS(361), - [anon_sym_c_DQUOTE] = ACTIONS(363), - [anon_sym_r_SQUOTE] = ACTIONS(365), - [anon_sym_r_DQUOTE] = ACTIONS(367), - [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -127022,111 +127318,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [905] = { [sym_line_comment] = STATE(905), [sym_block_comment] = STATE(905), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2733), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -127136,113 +127432,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [906] = { [sym_line_comment] = STATE(906), [sym_block_comment] = STATE(906), - [sym__expression] = STATE(2822), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(222), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_mutability_modifiers] = STATE(863), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3176), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3178), + [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(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), - [anon_sym_shared] = ACTIONS(95), - [anon_sym_map_LBRACK] = ACTIONS(97), + [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), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_c_SQUOTE] = ACTIONS(85), + [anon_sym_c_DQUOTE] = ACTIONS(87), + [anon_sym_r_SQUOTE] = ACTIONS(89), + [anon_sym_r_DQUOTE] = ACTIONS(91), + [sym_pseudo_compile_time_identifier] = ACTIONS(93), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), @@ -127250,111 +127546,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [907] = { [sym_line_comment] = STATE(907), [sym_block_comment] = STATE(907), - [sym__expression] = STATE(963), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_CARET] = ACTIONS(2555), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym_LT_DASH] = ACTIONS(2567), - [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(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -127364,111 +127660,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [908] = { [sym_line_comment] = STATE(908), [sym_block_comment] = STATE(908), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3555), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(224), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_mutability_modifiers] = STATE(863), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3176), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3178), + [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(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [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), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_c_SQUOTE] = ACTIONS(85), + [anon_sym_c_DQUOTE] = ACTIONS(87), + [anon_sym_r_SQUOTE] = ACTIONS(89), + [anon_sym_r_DQUOTE] = ACTIONS(91), + [sym_pseudo_compile_time_identifier] = ACTIONS(93), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -127478,111 +127774,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [909] = { [sym_line_comment] = STATE(909), [sym_block_comment] = STATE(909), - [sym__expression] = STATE(961), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4059), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2739), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3394), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_go] = ACTIONS(3400), - [anon_sym_spawn] = ACTIONS(3402), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_CARET] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_LT_DASH] = ACTIONS(3406), - [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(3408), - [anon_sym_lock] = ACTIONS(3410), - [anon_sym_rlock] = ACTIONS(3410), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -127592,111 +127888,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [910] = { [sym_line_comment] = STATE(910), [sym_block_comment] = STATE(910), - [sym__expression] = STATE(2757), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(3561), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2575), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4084), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(3146), + [anon_sym_struct] = ACTIONS(1095), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2787), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_go] = ACTIONS(3150), + [anon_sym_spawn] = ACTIONS(3152), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_CARET] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3156), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3158), + [anon_sym_lock] = ACTIONS(3160), + [anon_sym_rlock] = ACTIONS(3160), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -127706,111 +128002,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [911] = { [sym_line_comment] = STATE(911), [sym_block_comment] = STATE(911), - [sym__expression] = STATE(957), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2782), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3394), - [anon_sym_DASH] = ACTIONS(3394), - [anon_sym_STAR] = ACTIONS(3396), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_go] = ACTIONS(3400), - [anon_sym_spawn] = ACTIONS(3402), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_CARET] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3404), - [anon_sym_LT_DASH] = ACTIONS(3406), - [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(3408), - [anon_sym_lock] = ACTIONS(3410), - [anon_sym_rlock] = ACTIONS(3410), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -127820,111 +128116,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [912] = { [sym_line_comment] = STATE(912), [sym_block_comment] = STATE(912), - [sym__expression] = STATE(2722), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(223), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_mutability_modifiers] = STATE(863), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3176), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3178), + [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(3414), - [anon_sym_go] = ACTIONS(2789), - [anon_sym_spawn] = ACTIONS(2791), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(3416), - [anon_sym_LT_DASH] = ACTIONS(2795), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [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), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_c_SQUOTE] = ACTIONS(85), + [anon_sym_c_DQUOTE] = ACTIONS(87), + [anon_sym_r_SQUOTE] = ACTIONS(89), + [anon_sym_r_DQUOTE] = ACTIONS(91), + [sym_pseudo_compile_time_identifier] = ACTIONS(93), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -127934,111 +128230,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [913] = { [sym_line_comment] = STATE(913), [sym_block_comment] = STATE(913), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2931), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2930), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3620), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -128048,111 +128344,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [914] = { [sym_line_comment] = STATE(914), [sym_block_comment] = STATE(914), - [sym__expression] = STATE(1751), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(960), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(789), - [anon_sym_go] = ACTIONS(791), - [anon_sym_spawn] = ACTIONS(793), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(797), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(799), - [anon_sym_LT_DASH] = ACTIONS(801), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(811), - [anon_sym_lock] = ACTIONS(813), - [anon_sym_rlock] = ACTIONS(813), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_LT_DASH] = ACTIONS(2137), + [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(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -128162,111 +128458,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [915] = { [sym_line_comment] = STATE(915), [sym_block_comment] = STATE(915), - [sym__expression] = STATE(1751), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4235), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(2658), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(789), - [anon_sym_go] = ACTIONS(791), - [anon_sym_spawn] = ACTIONS(793), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(797), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(799), - [anon_sym_LT_DASH] = ACTIONS(801), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(811), - [anon_sym_lock] = ACTIONS(813), - [anon_sym_rlock] = ACTIONS(813), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -128276,111 +128572,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [916] = { [sym_line_comment] = STATE(916), [sym_block_comment] = STATE(916), - [sym__expression] = STATE(965), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2298), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_CARET] = ACTIONS(2555), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym_LT_DASH] = ACTIONS(2567), - [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(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_go] = ACTIONS(3348), + [anon_sym_spawn] = ACTIONS(3350), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_LT_DASH] = ACTIONS(3354), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3358), + [anon_sym_rlock] = ACTIONS(3358), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -128390,111 +128686,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [917] = { [sym_line_comment] = STATE(917), [sym_block_comment] = STATE(917), - [sym__expression] = STATE(966), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1079), - [sym_dec_expression] = STATE(1079), - [sym_or_block_expression] = STATE(1079), - [sym_option_propagation_expression] = STATE(1079), - [sym_result_propagation_expression] = STATE(1079), - [sym_anon_struct_value_expression] = STATE(1076), - [sym_go_expression] = STATE(1079), - [sym_spawn_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_type_initializer] = STATE(1076), - [sym_function_literal] = STATE(1079), - [sym_reference_expression] = STATE(1063), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1079), - [sym_receive_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_as_type_cast_expression] = STATE(1079), - [sym__max_group] = STATE(1079), - [sym_literal] = STATE(1084), - [sym_map_init_expression] = STATE(1076), - [sym_array_creation] = STATE(1079), - [sym_fixed_array_creation] = STATE(1079), - [sym_selector_expression] = STATE(1079), - [sym_index_expression] = STATE(1079), - [sym_slice_expression] = STATE(1079), - [sym_if_expression] = STATE(1076), - [sym_compile_time_if_expression] = STATE(1076), - [sym_is_expression] = STATE(1079), - [sym_in_expression] = STATE(1079), - [sym_enum_fetch] = STATE(1079), - [sym_match_expression] = STATE(1076), - [sym_select_expression] = STATE(1076), - [sym_lock_expression] = STATE(1076), - [sym_unsafe_expression] = STATE(1076), - [sym_sql_expression] = STATE(1076), - [sym_interpreted_string_literal] = STATE(1085), - [sym_c_string_literal] = STATE(1085), - [sym_raw_string_literal] = STATE(1085), - [sym_mutability_modifiers] = STATE(891), - [sym_plain_type] = STATE(4008), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2639), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2561), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_CARET] = ACTIONS(2555), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym_LT_DASH] = ACTIONS(2567), - [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(2569), - [sym_rune_literal] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_c_SQUOTE] = ACTIONS(2575), - [anon_sym_c_DQUOTE] = ACTIONS(2577), - [anon_sym_r_SQUOTE] = ACTIONS(2579), - [anon_sym_r_DQUOTE] = ACTIONS(2581), - [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -128504,111 +128800,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [918] = { [sym_line_comment] = STATE(918), [sym_block_comment] = STATE(918), - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2884), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2912), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(2399), + [sym__expression] = STATE(1684), + [sym__expression_without_blocks] = STATE(1923), + [sym__expression_with_blocks] = STATE(1923), + [sym_inc_expression] = STATE(1922), + [sym_dec_expression] = STATE(1922), + [sym_or_block_expression] = STATE(1922), + [sym_option_propagation_expression] = STATE(1922), + [sym_result_propagation_expression] = STATE(1922), + [sym_anon_struct_value_expression] = STATE(1921), + [sym_go_expression] = STATE(1922), + [sym_spawn_expression] = STATE(1922), + [sym_parenthesized_expression] = STATE(1922), + [sym_call_expression] = STATE(1922), + [sym_type_initializer] = STATE(1921), + [sym_function_literal] = STATE(1922), + [sym_reference_expression] = STATE(1929), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1922), + [sym_receive_expression] = STATE(1922), + [sym_binary_expression] = STATE(1922), + [sym_as_type_cast_expression] = STATE(1922), + [sym__max_group] = STATE(1922), + [sym_literal] = STATE(1924), + [sym_map_init_expression] = STATE(1921), + [sym_array_creation] = STATE(1922), + [sym_fixed_array_creation] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym_index_expression] = STATE(1922), + [sym_slice_expression] = STATE(1922), + [sym_if_expression] = STATE(1921), + [sym_compile_time_if_expression] = STATE(1921), + [sym_is_expression] = STATE(1922), + [sym_in_expression] = STATE(1922), + [sym_enum_fetch] = STATE(1922), + [sym_match_expression] = STATE(1921), + [sym_select_expression] = STATE(1921), + [sym_lock_expression] = STATE(1921), + [sym_unsafe_expression] = STATE(1921), + [sym_sql_expression] = STATE(1921), + [sym_interpreted_string_literal] = STATE(1925), + [sym_c_string_literal] = STATE(1925), + [sym_raw_string_literal] = STATE(1925), + [sym_mutability_modifiers] = STATE(943), + [sym_plain_type] = STATE(4080), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3214), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_struct] = ACTIONS(3228), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3232), + [anon_sym_spawn] = ACTIONS(3234), + [anon_sym_json_DOTdecode] = ACTIONS(3236), + [anon_sym_LBRACK2] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_CARET] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym_LT_DASH] = ACTIONS(3242), + [sym_none] = ACTIONS(3244), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [sym_nil] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3248), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3252), + [anon_sym_lock] = ACTIONS(3254), + [anon_sym_rlock] = ACTIONS(3254), + [anon_sym_unsafe] = ACTIONS(3256), + [anon_sym_sql] = ACTIONS(3258), + [sym_int_literal] = ACTIONS(3244), + [sym_float_literal] = ACTIONS(3260), + [sym_rune_literal] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3264), + [anon_sym_c_SQUOTE] = ACTIONS(3266), + [anon_sym_c_DQUOTE] = ACTIONS(3268), + [anon_sym_r_SQUOTE] = ACTIONS(3270), + [anon_sym_r_DQUOTE] = ACTIONS(3272), + [sym_pseudo_compile_time_identifier] = ACTIONS(3274), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -128618,111 +128914,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [919] = { [sym_line_comment] = STATE(919), [sym_block_comment] = STATE(919), - [sym__expression] = STATE(1616), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(698), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3424), + [sym__expression] = STATE(2834), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3426), - [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_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [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), - [anon_sym_SQUOTE] = ACTIONS(357), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_c_SQUOTE] = ACTIONS(361), - [anon_sym_c_DQUOTE] = ACTIONS(363), - [anon_sym_r_SQUOTE] = ACTIONS(365), - [anon_sym_r_DQUOTE] = ACTIONS(367), - [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -128732,111 +129028,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [920] = { [sym_line_comment] = STATE(920), [sym_block_comment] = STATE(920), - [sym__expression] = STATE(1620), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(698), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3424), + [sym__expression] = STATE(219), + [sym__expression_without_blocks] = STATE(326), + [sym__expression_with_blocks] = STATE(326), + [sym_inc_expression] = STATE(460), + [sym_dec_expression] = STATE(460), + [sym_or_block_expression] = STATE(460), + [sym_option_propagation_expression] = STATE(460), + [sym_result_propagation_expression] = STATE(460), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(460), + [sym_spawn_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_call_expression] = STATE(460), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(460), + [sym_reference_expression] = STATE(484), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(460), + [sym_receive_expression] = STATE(460), + [sym_binary_expression] = STATE(460), + [sym_as_type_cast_expression] = STATE(460), + [sym__max_group] = STATE(460), + [sym_literal] = STATE(365), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(460), + [sym_fixed_array_creation] = STATE(460), + [sym_selector_expression] = STATE(460), + [sym_index_expression] = STATE(460), + [sym_slice_expression] = STATE(460), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(460), + [sym_in_expression] = STATE(460), + [sym_enum_fetch] = STATE(460), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(309), + [sym_c_string_literal] = STATE(309), + [sym_raw_string_literal] = STATE(309), + [sym_mutability_modifiers] = STATE(863), + [sym_plain_type] = STATE(4134), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3176), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3426), - [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_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3178), + [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(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), - [anon_sym_SQUOTE] = ACTIONS(357), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_c_SQUOTE] = ACTIONS(361), - [anon_sym_c_DQUOTE] = ACTIONS(363), - [anon_sym_r_SQUOTE] = ACTIONS(365), - [anon_sym_r_DQUOTE] = ACTIONS(367), - [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [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), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_c_SQUOTE] = ACTIONS(85), + [anon_sym_c_DQUOTE] = ACTIONS(87), + [anon_sym_r_SQUOTE] = ACTIONS(89), + [anon_sym_r_DQUOTE] = ACTIONS(91), + [sym_pseudo_compile_time_identifier] = ACTIONS(93), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -128846,111 +129142,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [921] = { [sym_line_comment] = STATE(921), [sym_block_comment] = STATE(921), - [sym__expression] = STATE(1615), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(698), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3424), + [sym__expression] = STATE(2489), + [sym__expression_without_blocks] = STATE(2824), + [sym__expression_with_blocks] = STATE(2824), + [sym_inc_expression] = STATE(2726), + [sym_dec_expression] = STATE(2726), + [sym_or_block_expression] = STATE(2726), + [sym_option_propagation_expression] = STATE(2726), + [sym_result_propagation_expression] = STATE(2726), + [sym_anon_struct_value_expression] = STATE(2844), + [sym_go_expression] = STATE(2726), + [sym_spawn_expression] = STATE(2726), + [sym_parenthesized_expression] = STATE(2726), + [sym_call_expression] = STATE(2726), + [sym_type_initializer] = STATE(2844), + [sym_function_literal] = STATE(2726), + [sym_reference_expression] = STATE(2725), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2726), + [sym_receive_expression] = STATE(2726), + [sym_binary_expression] = STATE(2726), + [sym_as_type_cast_expression] = STATE(2726), + [sym__max_group] = STATE(2726), + [sym_literal] = STATE(2731), + [sym_map_init_expression] = STATE(2844), + [sym_array_creation] = STATE(2726), + [sym_fixed_array_creation] = STATE(2726), + [sym_selector_expression] = STATE(2726), + [sym_index_expression] = STATE(2726), + [sym_slice_expression] = STATE(2726), + [sym_if_expression] = STATE(2844), + [sym_compile_time_if_expression] = STATE(2844), + [sym_is_expression] = STATE(2726), + [sym_in_expression] = STATE(2726), + [sym_enum_fetch] = STATE(2726), + [sym_match_expression] = STATE(2844), + [sym_select_expression] = STATE(2844), + [sym_lock_expression] = STATE(2844), + [sym_unsafe_expression] = STATE(2844), + [sym_sql_expression] = STATE(2844), + [sym_interpreted_string_literal] = STATE(2669), + [sym_c_string_literal] = STATE(2669), + [sym_raw_string_literal] = STATE(2669), + [sym_mutability_modifiers] = STATE(937), + [sym_plain_type] = STATE(4084), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3426), - [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_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1095), [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), - [anon_sym_SQUOTE] = ACTIONS(357), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_c_SQUOTE] = ACTIONS(361), - [anon_sym_c_DQUOTE] = ACTIONS(363), - [anon_sym_r_SQUOTE] = ACTIONS(365), - [anon_sym_r_DQUOTE] = ACTIONS(367), - [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(3196), + [anon_sym_lock] = ACTIONS(3198), + [anon_sym_rlock] = ACTIONS(3198), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_c_SQUOTE] = ACTIONS(1135), + [anon_sym_c_DQUOTE] = ACTIONS(1137), + [anon_sym_r_SQUOTE] = ACTIONS(1139), + [anon_sym_r_DQUOTE] = ACTIONS(1141), + [sym_pseudo_compile_time_identifier] = ACTIONS(1143), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -128960,111 +129256,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [922] = { [sym_line_comment] = STATE(922), [sym_block_comment] = STATE(922), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(698), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3424), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2948), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2946), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3426), - [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_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [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), - [anon_sym_SQUOTE] = ACTIONS(357), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_c_SQUOTE] = ACTIONS(361), - [anon_sym_c_DQUOTE] = ACTIONS(363), - [anon_sym_r_SQUOTE] = ACTIONS(365), - [anon_sym_r_DQUOTE] = ACTIONS(367), - [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -129074,111 +129370,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [923] = { [sym_line_comment] = STATE(923), [sym_block_comment] = STATE(923), - [sym__expression] = STATE(1751), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4247), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(955), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(789), - [anon_sym_go] = ACTIONS(791), - [anon_sym_spawn] = ACTIONS(793), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(797), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(799), - [anon_sym_LT_DASH] = ACTIONS(801), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(811), - [anon_sym_lock] = ACTIONS(813), - [anon_sym_rlock] = ACTIONS(813), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_LT_DASH] = ACTIONS(2137), + [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(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -129188,111 +129484,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [924] = { [sym_line_comment] = STATE(924), [sym_block_comment] = STATE(924), - [sym__expression] = STATE(2280), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(2631), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(882), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(3364), - [anon_sym_spawn] = ACTIONS(3366), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_CARET] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_LT_DASH] = ACTIONS(3370), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3372), - [anon_sym_lock] = ACTIONS(3374), - [anon_sym_rlock] = ACTIONS(3374), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_LT_DASH] = ACTIONS(1825), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1829), + [anon_sym_lock] = ACTIONS(1831), + [anon_sym_rlock] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -129302,111 +129598,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [925] = { [sym_line_comment] = STATE(925), [sym_block_comment] = STATE(925), - [sym__expression] = STATE(2285), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4196), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(956), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(3364), - [anon_sym_spawn] = ACTIONS(3366), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_CARET] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_LT_DASH] = ACTIONS(3370), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3372), - [anon_sym_lock] = ACTIONS(3374), - [anon_sym_rlock] = ACTIONS(3374), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_LT_DASH] = ACTIONS(2137), + [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(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -129416,111 +129712,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [926] = { [sym_line_comment] = STATE(926), [sym_block_comment] = STATE(926), - [sym__expression] = STATE(1614), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(698), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3424), + [sym__expression] = STATE(977), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3426), - [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_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_struct] = ACTIONS(513), [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), - [anon_sym_SQUOTE] = ACTIONS(357), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_c_SQUOTE] = ACTIONS(361), - [anon_sym_c_DQUOTE] = ACTIONS(363), - [anon_sym_r_SQUOTE] = ACTIONS(365), - [anon_sym_r_DQUOTE] = ACTIONS(367), - [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_go] = ACTIONS(3420), + [anon_sym_spawn] = ACTIONS(3422), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3424), + [anon_sym_LT_DASH] = ACTIONS(3426), + [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(3428), + [anon_sym_lock] = ACTIONS(3430), + [anon_sym_rlock] = ACTIONS(3430), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -129530,111 +129826,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [927] = { [sym_line_comment] = STATE(927), [sym_block_comment] = STATE(927), - [sym__expression] = STATE(2424), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(3364), - [anon_sym_spawn] = ACTIONS(3366), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_CARET] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_LT_DASH] = ACTIONS(3370), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3372), - [anon_sym_lock] = ACTIONS(3374), - [anon_sym_rlock] = ACTIONS(3374), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -129644,111 +129940,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [928] = { [sym_line_comment] = STATE(928), [sym_block_comment] = STATE(928), - [sym__expression] = STATE(1766), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(962), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(789), - [anon_sym_go] = ACTIONS(791), - [anon_sym_spawn] = ACTIONS(793), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(797), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(799), - [anon_sym_LT_DASH] = ACTIONS(801), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(811), - [anon_sym_lock] = ACTIONS(813), - [anon_sym_rlock] = ACTIONS(813), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_LT_DASH] = ACTIONS(2137), + [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(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -129758,111 +130054,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [929] = { [sym_line_comment] = STATE(929), [sym_block_comment] = STATE(929), - [sym__expression] = STATE(2285), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(963), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(3364), - [anon_sym_spawn] = ACTIONS(3366), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_CARET] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_LT_DASH] = ACTIONS(3370), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3372), - [anon_sym_lock] = ACTIONS(3374), - [anon_sym_rlock] = ACTIONS(3374), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_LT_DASH] = ACTIONS(2137), + [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(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -129872,111 +130168,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [930] = { [sym_line_comment] = STATE(930), [sym_block_comment] = STATE(930), - [sym__expression] = STATE(1613), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(698), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3424), + [sym__expression] = STATE(1814), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3426), - [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_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_struct] = ACTIONS(801), [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), - [anon_sym_SQUOTE] = ACTIONS(357), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_c_SQUOTE] = ACTIONS(361), - [anon_sym_c_DQUOTE] = ACTIONS(363), - [anon_sym_r_SQUOTE] = ACTIONS(365), - [anon_sym_r_DQUOTE] = ACTIONS(367), - [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_go] = ACTIONS(807), + [anon_sym_spawn] = ACTIONS(809), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_LT_DASH] = ACTIONS(817), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(827), + [anon_sym_lock] = ACTIONS(829), + [anon_sym_rlock] = ACTIONS(829), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -129986,111 +130282,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [931] = { [sym_line_comment] = STATE(931), [sym_block_comment] = STATE(931), - [sym__expression] = STATE(1616), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(698), - [sym_plain_type] = STATE(4244), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3424), + [sym__expression] = STATE(1811), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4115), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3426), - [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_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_struct] = ACTIONS(801), [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), - [anon_sym_SQUOTE] = ACTIONS(357), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_c_SQUOTE] = ACTIONS(361), - [anon_sym_c_DQUOTE] = ACTIONS(363), - [anon_sym_r_SQUOTE] = ACTIONS(365), - [anon_sym_r_DQUOTE] = ACTIONS(367), - [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_go] = ACTIONS(807), + [anon_sym_spawn] = ACTIONS(809), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_LT_DASH] = ACTIONS(817), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(827), + [anon_sym_lock] = ACTIONS(829), + [anon_sym_rlock] = ACTIONS(829), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -130100,111 +130396,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [932] = { [sym_line_comment] = STATE(932), [sym_block_comment] = STATE(932), - [sym__expression] = STATE(1616), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(698), - [sym_plain_type] = STATE(4241), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3424), + [sym__expression] = STATE(1808), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3426), - [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_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_struct] = ACTIONS(801), [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), - [anon_sym_SQUOTE] = ACTIONS(357), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_c_SQUOTE] = ACTIONS(361), - [anon_sym_c_DQUOTE] = ACTIONS(363), - [anon_sym_r_SQUOTE] = ACTIONS(365), - [anon_sym_r_DQUOTE] = ACTIONS(367), - [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_go] = ACTIONS(807), + [anon_sym_spawn] = ACTIONS(809), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_LT_DASH] = ACTIONS(817), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(827), + [anon_sym_lock] = ACTIONS(829), + [anon_sym_rlock] = ACTIONS(829), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -130214,111 +130510,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [933] = { [sym_line_comment] = STATE(933), [sym_block_comment] = STATE(933), - [sym__expression] = STATE(2445), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(964), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_LT_DASH] = ACTIONS(2137), + [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(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -130328,111 +130624,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [934] = { [sym_line_comment] = STATE(934), [sym_block_comment] = STATE(934), - [sym__expression] = STATE(2268), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2645), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -130442,111 +130738,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [935] = { [sym_line_comment] = STATE(935), [sym_block_comment] = STATE(935), - [sym__expression] = STATE(2425), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(965), + [sym__expression_without_blocks] = STATE(1090), + [sym__expression_with_blocks] = STATE(1090), + [sym_inc_expression] = STATE(1089), + [sym_dec_expression] = STATE(1089), + [sym_or_block_expression] = STATE(1089), + [sym_option_propagation_expression] = STATE(1089), + [sym_result_propagation_expression] = STATE(1089), + [sym_anon_struct_value_expression] = STATE(1086), + [sym_go_expression] = STATE(1089), + [sym_spawn_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_type_initializer] = STATE(1086), + [sym_function_literal] = STATE(1089), + [sym_reference_expression] = STATE(1080), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(1089), + [sym_receive_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_as_type_cast_expression] = STATE(1089), + [sym__max_group] = STATE(1089), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1086), + [sym_array_creation] = STATE(1089), + [sym_fixed_array_creation] = STATE(1089), + [sym_selector_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_slice_expression] = STATE(1089), + [sym_if_expression] = STATE(1086), + [sym_compile_time_if_expression] = STATE(1086), + [sym_is_expression] = STATE(1089), + [sym_in_expression] = STATE(1089), + [sym_enum_fetch] = STATE(1089), + [sym_match_expression] = STATE(1086), + [sym_select_expression] = STATE(1086), + [sym_lock_expression] = STATE(1086), + [sym_unsafe_expression] = STATE(1086), + [sym_sql_expression] = STATE(1086), + [sym_interpreted_string_literal] = STATE(1095), + [sym_c_string_literal] = STATE(1095), + [sym_raw_string_literal] = STATE(1095), + [sym_mutability_modifiers] = STATE(797), + [sym_plain_type] = STATE(4256), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(3364), - [anon_sym_spawn] = ACTIONS(3366), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_CARET] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_LT_DASH] = ACTIONS(3370), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3372), - [anon_sym_lock] = ACTIONS(3374), - [anon_sym_rlock] = ACTIONS(3374), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_LT_DASH] = ACTIONS(2137), + [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(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -130556,111 +130852,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [936] = { [sym_line_comment] = STATE(936), [sym_block_comment] = STATE(936), - [sym__expression] = STATE(2446), - [sym__expression_without_blocks] = STATE(2383), - [sym__expression_with_blocks] = STATE(2383), - [sym_inc_expression] = STATE(2376), - [sym_dec_expression] = STATE(2376), - [sym_or_block_expression] = STATE(2376), - [sym_option_propagation_expression] = STATE(2376), - [sym_result_propagation_expression] = STATE(2376), - [sym_anon_struct_value_expression] = STATE(2375), - [sym_go_expression] = STATE(2376), - [sym_spawn_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_type_initializer] = STATE(2375), - [sym_function_literal] = STATE(2376), - [sym_reference_expression] = STATE(2373), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2376), - [sym_receive_expression] = STATE(2376), - [sym_binary_expression] = STATE(2376), - [sym_as_type_cast_expression] = STATE(2376), - [sym__max_group] = STATE(2376), - [sym_literal] = STATE(2397), - [sym_map_init_expression] = STATE(2375), - [sym_array_creation] = STATE(2376), - [sym_fixed_array_creation] = STATE(2376), - [sym_selector_expression] = STATE(2376), - [sym_index_expression] = STATE(2376), - [sym_slice_expression] = STATE(2376), - [sym_if_expression] = STATE(2375), - [sym_compile_time_if_expression] = STATE(2375), - [sym_is_expression] = STATE(2376), - [sym_in_expression] = STATE(2376), - [sym_enum_fetch] = STATE(2376), - [sym_match_expression] = STATE(2375), - [sym_select_expression] = STATE(2375), - [sym_lock_expression] = STATE(2375), - [sym_unsafe_expression] = STATE(2375), - [sym_sql_expression] = STATE(2375), - [sym_interpreted_string_literal] = STATE(2398), - [sym_c_string_literal] = STATE(2398), - [sym_raw_string_literal] = STATE(2398), - [sym_mutability_modifiers] = STATE(881), - [sym_plain_type] = STATE(4091), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1219), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2978), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2977), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_go] = ACTIONS(1237), - [anon_sym_spawn] = ACTIONS(1239), - [anon_sym_json_DOTdecode] = ACTIONS(1241), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_LT_DASH] = ACTIONS(1247), - [sym_none] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [sym_nil] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_DOLLARif] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1257), - [anon_sym_lock] = ACTIONS(1259), - [anon_sym_rlock] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1263), - [sym_int_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1265), - [sym_rune_literal] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_c_SQUOTE] = ACTIONS(1271), - [anon_sym_c_DQUOTE] = ACTIONS(1273), - [anon_sym_r_SQUOTE] = ACTIONS(1275), - [anon_sym_r_DQUOTE] = ACTIONS(1277), - [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -130670,111 +130966,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [937] = { [sym_line_comment] = STATE(937), [sym_block_comment] = STATE(937), - [sym__expression] = STATE(1617), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(698), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3424), + [sym__expression] = STATE(2868), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3426), - [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_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [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), - [anon_sym_SQUOTE] = ACTIONS(357), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_c_SQUOTE] = ACTIONS(361), - [anon_sym_c_DQUOTE] = ACTIONS(363), - [anon_sym_r_SQUOTE] = ACTIONS(365), - [anon_sym_r_DQUOTE] = ACTIONS(367), - [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -130784,111 +131080,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [938] = { [sym_line_comment] = STATE(938), [sym_block_comment] = STATE(938), - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1674), - [sym__expression_with_blocks] = STATE(1674), - [sym_inc_expression] = STATE(1675), - [sym_dec_expression] = STATE(1675), - [sym_or_block_expression] = STATE(1675), - [sym_option_propagation_expression] = STATE(1675), - [sym_result_propagation_expression] = STATE(1675), - [sym_anon_struct_value_expression] = STATE(1683), - [sym_go_expression] = STATE(1675), - [sym_spawn_expression] = STATE(1675), - [sym_parenthesized_expression] = STATE(1675), - [sym_call_expression] = STATE(1675), - [sym_type_initializer] = STATE(1683), - [sym_function_literal] = STATE(1675), - [sym_reference_expression] = STATE(1684), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1675), - [sym_receive_expression] = STATE(1675), - [sym_binary_expression] = STATE(1675), - [sym_as_type_cast_expression] = STATE(1675), - [sym__max_group] = STATE(1675), - [sym_literal] = STATE(1673), - [sym_map_init_expression] = STATE(1683), - [sym_array_creation] = STATE(1675), - [sym_fixed_array_creation] = STATE(1675), - [sym_selector_expression] = STATE(1675), - [sym_index_expression] = STATE(1675), - [sym_slice_expression] = STATE(1675), - [sym_if_expression] = STATE(1683), - [sym_compile_time_if_expression] = STATE(1683), - [sym_is_expression] = STATE(1675), - [sym_in_expression] = STATE(1675), - [sym_enum_fetch] = STATE(1675), - [sym_match_expression] = STATE(1683), - [sym_select_expression] = STATE(1683), - [sym_lock_expression] = STATE(1683), - [sym_unsafe_expression] = STATE(1683), - [sym_sql_expression] = STATE(1683), - [sym_interpreted_string_literal] = STATE(1672), - [sym_c_string_literal] = STATE(1672), - [sym_raw_string_literal] = STATE(1672), - [sym_mutability_modifiers] = STATE(698), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3424), + [sym__expression] = STATE(1802), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3426), - [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_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_struct] = ACTIONS(801), [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), - [anon_sym_SQUOTE] = ACTIONS(357), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_c_SQUOTE] = ACTIONS(361), - [anon_sym_c_DQUOTE] = ACTIONS(363), - [anon_sym_r_SQUOTE] = ACTIONS(365), - [anon_sym_r_DQUOTE] = ACTIONS(367), - [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_go] = ACTIONS(807), + [anon_sym_spawn] = ACTIONS(809), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_LT_DASH] = ACTIONS(817), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(827), + [anon_sym_lock] = ACTIONS(829), + [anon_sym_rlock] = ACTIONS(829), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -130898,111 +131194,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [939] = { [sym_line_comment] = STATE(939), [sym_block_comment] = STATE(939), - [sym__expression] = STATE(1775), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1641), + [sym__expression] = STATE(2785), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3620), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(789), - [anon_sym_go] = ACTIONS(791), - [anon_sym_spawn] = ACTIONS(793), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(797), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(799), - [anon_sym_LT_DASH] = ACTIONS(801), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(811), - [anon_sym_lock] = ACTIONS(813), - [anon_sym_rlock] = ACTIONS(813), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -131012,111 +131308,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [940] = { [sym_line_comment] = STATE(940), [sym_block_comment] = STATE(940), - [sym__expression] = STATE(1751), - [sym__expression_without_blocks] = STATE(1958), - [sym__expression_with_blocks] = STATE(1958), - [sym_inc_expression] = STATE(1959), - [sym_dec_expression] = STATE(1959), - [sym_or_block_expression] = STATE(1959), - [sym_option_propagation_expression] = STATE(1959), - [sym_result_propagation_expression] = STATE(1959), - [sym_anon_struct_value_expression] = STATE(1962), - [sym_go_expression] = STATE(1959), - [sym_spawn_expression] = STATE(1959), - [sym_parenthesized_expression] = STATE(1959), - [sym_call_expression] = STATE(1959), - [sym_type_initializer] = STATE(1962), - [sym_function_literal] = STATE(1959), - [sym_reference_expression] = STATE(1954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1959), - [sym_receive_expression] = STATE(1959), - [sym_binary_expression] = STATE(1959), - [sym_as_type_cast_expression] = STATE(1959), - [sym__max_group] = STATE(1959), - [sym_literal] = STATE(1952), - [sym_map_init_expression] = STATE(1962), - [sym_array_creation] = STATE(1959), - [sym_fixed_array_creation] = STATE(1959), - [sym_selector_expression] = STATE(1959), - [sym_index_expression] = STATE(1959), - [sym_slice_expression] = STATE(1959), - [sym_if_expression] = STATE(1962), - [sym_compile_time_if_expression] = STATE(1962), - [sym_is_expression] = STATE(1959), - [sym_in_expression] = STATE(1959), - [sym_enum_fetch] = STATE(1959), - [sym_match_expression] = STATE(1962), - [sym_select_expression] = STATE(1962), - [sym_lock_expression] = STATE(1962), - [sym_unsafe_expression] = STATE(1962), - [sym_sql_expression] = STATE(1962), - [sym_interpreted_string_literal] = STATE(1951), - [sym_c_string_literal] = STATE(1951), - [sym_raw_string_literal] = STATE(1951), - [sym_mutability_modifiers] = STATE(592), - [sym_plain_type] = STATE(4257), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), + [sym__expression] = STATE(1811), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4111), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_struct] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(789), - [anon_sym_go] = ACTIONS(791), - [anon_sym_spawn] = ACTIONS(793), - [anon_sym_json_DOTdecode] = ACTIONS(795), - [anon_sym_LBRACK2] = ACTIONS(797), - [anon_sym_TILDE] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(799), - [anon_sym_LT_DASH] = ACTIONS(801), - [sym_none] = ACTIONS(803), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_nil] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_DOLLARif] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_select] = ACTIONS(811), - [anon_sym_lock] = ACTIONS(813), - [anon_sym_rlock] = ACTIONS(813), - [anon_sym_unsafe] = ACTIONS(815), - [anon_sym_sql] = ACTIONS(817), - [sym_int_literal] = ACTIONS(803), - [sym_float_literal] = ACTIONS(819), - [sym_rune_literal] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_c_SQUOTE] = ACTIONS(825), - [anon_sym_c_DQUOTE] = ACTIONS(827), - [anon_sym_r_SQUOTE] = ACTIONS(829), - [anon_sym_r_DQUOTE] = ACTIONS(831), - [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_go] = ACTIONS(807), + [anon_sym_spawn] = ACTIONS(809), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_LT_DASH] = ACTIONS(817), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(827), + [anon_sym_lock] = ACTIONS(829), + [anon_sym_rlock] = ACTIONS(829), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -131126,111 +131422,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [941] = { [sym_line_comment] = STATE(941), [sym_block_comment] = STATE(941), - [sym__expression] = STATE(217), - [sym__expression_without_blocks] = STATE(474), - [sym__expression_with_blocks] = STATE(474), - [sym_inc_expression] = STATE(475), - [sym_dec_expression] = STATE(475), - [sym_or_block_expression] = STATE(475), - [sym_option_propagation_expression] = STATE(475), - [sym_result_propagation_expression] = STATE(475), - [sym_anon_struct_value_expression] = STATE(476), - [sym_go_expression] = STATE(475), - [sym_spawn_expression] = STATE(475), - [sym_parenthesized_expression] = STATE(475), - [sym_call_expression] = STATE(475), - [sym_type_initializer] = STATE(476), - [sym_function_literal] = STATE(475), - [sym_reference_expression] = STATE(491), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(475), - [sym_receive_expression] = STATE(475), - [sym_binary_expression] = STATE(475), - [sym_as_type_cast_expression] = STATE(475), - [sym__max_group] = STATE(475), - [sym_literal] = STATE(462), - [sym_map_init_expression] = STATE(476), - [sym_array_creation] = STATE(475), - [sym_fixed_array_creation] = STATE(475), - [sym_selector_expression] = STATE(475), - [sym_index_expression] = STATE(475), - [sym_slice_expression] = STATE(475), - [sym_if_expression] = STATE(476), - [sym_compile_time_if_expression] = STATE(476), - [sym_is_expression] = STATE(475), - [sym_in_expression] = STATE(475), - [sym_enum_fetch] = STATE(475), - [sym_match_expression] = STATE(476), - [sym_select_expression] = STATE(476), - [sym_lock_expression] = STATE(476), - [sym_unsafe_expression] = STATE(476), - [sym_sql_expression] = STATE(476), - [sym_interpreted_string_literal] = STATE(392), - [sym_c_string_literal] = STATE(392), - [sym_raw_string_literal] = STATE(392), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3182), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(3645), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3184), - [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_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(1438), [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), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_c_SQUOTE] = ACTIONS(85), - [anon_sym_c_DQUOTE] = ACTIONS(87), - [anon_sym_r_SQUOTE] = ACTIONS(89), - [anon_sym_r_DQUOTE] = ACTIONS(91), - [sym_pseudo_compile_time_identifier] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_go] = ACTIONS(2409), + [anon_sym_spawn] = ACTIONS(2411), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_CARET] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -131240,111 +131536,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [942] = { [sym_line_comment] = STATE(942), [sym_block_comment] = STATE(942), - [sym__expression] = STATE(2285), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4206), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2958), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2956), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(3364), - [anon_sym_spawn] = ACTIONS(3366), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_CARET] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_LT_DASH] = ACTIONS(3370), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3372), - [anon_sym_lock] = ACTIONS(3374), - [anon_sym_rlock] = ACTIONS(3374), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -131354,111 +131650,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [943] = { [sym_line_comment] = STATE(943), [sym_block_comment] = STATE(943), - [sym__expression] = STATE(2285), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4198), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(2850), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1438), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(3364), - [anon_sym_spawn] = ACTIONS(3366), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_CARET] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_LT_DASH] = ACTIONS(3370), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3372), - [anon_sym_lock] = ACTIONS(3374), - [anon_sym_rlock] = ACTIONS(3374), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_go] = ACTIONS(1442), + [anon_sym_spawn] = ACTIONS(1444), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LT_DASH] = ACTIONS(1452), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(1462), + [anon_sym_lock] = ACTIONS(1464), + [anon_sym_rlock] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -131468,111 +131764,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [944] = { [sym_line_comment] = STATE(944), [sym_block_comment] = STATE(944), - [sym__expression] = STATE(2395), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(2190), + [sym__expression_without_blocks] = STATE(2207), + [sym__expression_with_blocks] = STATE(2207), + [sym_inc_expression] = STATE(2206), + [sym_dec_expression] = STATE(2206), + [sym_or_block_expression] = STATE(2206), + [sym_option_propagation_expression] = STATE(2206), + [sym_result_propagation_expression] = STATE(2206), + [sym_anon_struct_value_expression] = STATE(2205), + [sym_go_expression] = STATE(2206), + [sym_spawn_expression] = STATE(2206), + [sym_parenthesized_expression] = STATE(2206), + [sym_call_expression] = STATE(2206), + [sym_type_initializer] = STATE(2205), + [sym_function_literal] = STATE(2206), + [sym_reference_expression] = STATE(2204), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2206), + [sym_receive_expression] = STATE(2206), + [sym_binary_expression] = STATE(2206), + [sym_as_type_cast_expression] = STATE(2206), + [sym__max_group] = STATE(2206), + [sym_literal] = STATE(2211), + [sym_map_init_expression] = STATE(2205), + [sym_array_creation] = STATE(2206), + [sym_fixed_array_creation] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym_index_expression] = STATE(2206), + [sym_slice_expression] = STATE(2206), + [sym_if_expression] = STATE(2205), + [sym_compile_time_if_expression] = STATE(2205), + [sym_is_expression] = STATE(2206), + [sym_in_expression] = STATE(2206), + [sym_enum_fetch] = STATE(2206), + [sym_match_expression] = STATE(2205), + [sym_select_expression] = STATE(2205), + [sym_lock_expression] = STATE(2205), + [sym_unsafe_expression] = STATE(2205), + [sym_sql_expression] = STATE(2205), + [sym_interpreted_string_literal] = STATE(2212), + [sym_c_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_mutability_modifiers] = STATE(694), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_struct] = ACTIONS(3294), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(3364), - [anon_sym_spawn] = ACTIONS(3366), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_CARET] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_LT_DASH] = ACTIONS(3370), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3372), - [anon_sym_lock] = ACTIONS(3374), - [anon_sym_rlock] = ACTIONS(3374), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_go] = ACTIONS(3298), + [anon_sym_spawn] = ACTIONS(3300), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3290), + [anon_sym_CARET] = ACTIONS(3290), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3308), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3320), + [anon_sym_rlock] = ACTIONS(3320), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3324), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_c_SQUOTE] = ACTIONS(3332), + [anon_sym_c_DQUOTE] = ACTIONS(3334), + [anon_sym_r_SQUOTE] = ACTIONS(3336), + [anon_sym_r_DQUOTE] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -131582,111 +131878,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [945] = { [sym_line_comment] = STATE(945), [sym_block_comment] = STATE(945), - [sym__expression] = STATE(2437), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(1811), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(3364), - [anon_sym_spawn] = ACTIONS(3366), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_CARET] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_LT_DASH] = ACTIONS(3370), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3372), - [anon_sym_lock] = ACTIONS(3374), - [anon_sym_rlock] = ACTIONS(3374), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_go] = ACTIONS(807), + [anon_sym_spawn] = ACTIONS(809), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_LT_DASH] = ACTIONS(817), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(827), + [anon_sym_lock] = ACTIONS(829), + [anon_sym_rlock] = ACTIONS(829), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -131696,111 +131992,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [946] = { [sym_line_comment] = STATE(946), [sym_block_comment] = STATE(946), - [sym__expression] = STATE(2377), - [sym__expression_without_blocks] = STATE(2453), - [sym__expression_with_blocks] = STATE(2453), - [sym_inc_expression] = STATE(2517), - [sym_dec_expression] = STATE(2517), - [sym_or_block_expression] = STATE(2517), - [sym_option_propagation_expression] = STATE(2517), - [sym_result_propagation_expression] = STATE(2517), - [sym_anon_struct_value_expression] = STATE(2530), - [sym_go_expression] = STATE(2517), - [sym_spawn_expression] = STATE(2517), - [sym_parenthesized_expression] = STATE(2517), - [sym_call_expression] = STATE(2517), - [sym_type_initializer] = STATE(2530), - [sym_function_literal] = STATE(2517), - [sym_reference_expression] = STATE(2458), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2517), - [sym_receive_expression] = STATE(2517), - [sym_binary_expression] = STATE(2517), - [sym_as_type_cast_expression] = STATE(2517), - [sym__max_group] = STATE(2517), - [sym_literal] = STATE(2490), - [sym_map_init_expression] = STATE(2530), - [sym_array_creation] = STATE(2517), - [sym_fixed_array_creation] = STATE(2517), - [sym_selector_expression] = STATE(2517), - [sym_index_expression] = STATE(2517), - [sym_slice_expression] = STATE(2517), - [sym_if_expression] = STATE(2530), - [sym_compile_time_if_expression] = STATE(2530), - [sym_is_expression] = STATE(2517), - [sym_in_expression] = STATE(2517), - [sym_enum_fetch] = STATE(2517), - [sym_match_expression] = STATE(2530), - [sym_select_expression] = STATE(2530), - [sym_lock_expression] = STATE(2530), - [sym_unsafe_expression] = STATE(2530), - [sym_sql_expression] = STATE(2530), - [sym_interpreted_string_literal] = STATE(2489), - [sym_c_string_literal] = STATE(2489), - [sym_raw_string_literal] = STATE(2489), - [sym_mutability_modifiers] = STATE(889), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(1811), + [sym__expression_without_blocks] = STATE(2020), + [sym__expression_with_blocks] = STATE(2020), + [sym_inc_expression] = STATE(2019), + [sym_dec_expression] = STATE(2019), + [sym_or_block_expression] = STATE(2019), + [sym_option_propagation_expression] = STATE(2019), + [sym_result_propagation_expression] = STATE(2019), + [sym_anon_struct_value_expression] = STATE(2018), + [sym_go_expression] = STATE(2019), + [sym_spawn_expression] = STATE(2019), + [sym_parenthesized_expression] = STATE(2019), + [sym_call_expression] = STATE(2019), + [sym_type_initializer] = STATE(2018), + [sym_function_literal] = STATE(2019), + [sym_reference_expression] = STATE(2047), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2019), + [sym_receive_expression] = STATE(2019), + [sym_binary_expression] = STATE(2019), + [sym_as_type_cast_expression] = STATE(2019), + [sym__max_group] = STATE(2019), + [sym_literal] = STATE(2024), + [sym_map_init_expression] = STATE(2018), + [sym_array_creation] = STATE(2019), + [sym_fixed_array_creation] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym_index_expression] = STATE(2019), + [sym_slice_expression] = STATE(2019), + [sym_if_expression] = STATE(2018), + [sym_compile_time_if_expression] = STATE(2018), + [sym_is_expression] = STATE(2019), + [sym_in_expression] = STATE(2019), + [sym_enum_fetch] = STATE(2019), + [sym_match_expression] = STATE(2018), + [sym_select_expression] = STATE(2018), + [sym_lock_expression] = STATE(2018), + [sym_unsafe_expression] = STATE(2018), + [sym_sql_expression] = STATE(2018), + [sym_interpreted_string_literal] = STATE(2025), + [sym_c_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_mutability_modifiers] = STATE(800), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_fn] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(799), + [anon_sym_struct] = ACTIONS(801), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(3364), - [anon_sym_spawn] = ACTIONS(3366), - [anon_sym_json_DOTdecode] = ACTIONS(2519), - [anon_sym_LBRACK2] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_CARET] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_LT_DASH] = ACTIONS(3370), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3372), - [anon_sym_lock] = ACTIONS(3374), - [anon_sym_rlock] = ACTIONS(3374), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2527), - [sym_rune_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_c_SQUOTE] = ACTIONS(2533), - [anon_sym_c_DQUOTE] = ACTIONS(2535), - [anon_sym_r_SQUOTE] = ACTIONS(2537), - [anon_sym_r_DQUOTE] = ACTIONS(2539), - [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_go] = ACTIONS(807), + [anon_sym_spawn] = ACTIONS(809), + [anon_sym_json_DOTdecode] = ACTIONS(811), + [anon_sym_LBRACK2] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_LT_DASH] = ACTIONS(817), + [sym_none] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_nil] = ACTIONS(819), + [anon_sym_if] = ACTIONS(821), + [anon_sym_DOLLARif] = ACTIONS(823), + [anon_sym_match] = ACTIONS(825), + [anon_sym_select] = ACTIONS(827), + [anon_sym_lock] = ACTIONS(829), + [anon_sym_rlock] = ACTIONS(829), + [anon_sym_unsafe] = ACTIONS(831), + [anon_sym_sql] = ACTIONS(833), + [sym_int_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(835), + [sym_rune_literal] = ACTIONS(835), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_c_SQUOTE] = ACTIONS(841), + [anon_sym_c_DQUOTE] = ACTIONS(843), + [anon_sym_r_SQUOTE] = ACTIONS(845), + [anon_sym_r_DQUOTE] = ACTIONS(847), + [sym_pseudo_compile_time_identifier] = ACTIONS(849), [anon_sym_shared] = ACTIONS(95), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), @@ -131810,350 +132106,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [947] = { [sym_line_comment] = STATE(947), [sym_block_comment] = STATE(947), - [sym_reference_expression] = STATE(4356), - [sym_type_reference_expression] = STATE(3302), - [sym_plain_type] = STATE(3337), - [sym__plain_type_without_special] = STATE(3360), - [sym_anon_struct_type] = STATE(3354), - [sym_multi_return_type] = STATE(3360), - [sym_result_type] = STATE(3360), - [sym_option_type] = STATE(3360), - [sym_qualified_type] = STATE(3302), - [sym_fixed_array_type] = STATE(3354), - [sym_array_type] = STATE(3354), - [sym_pointer_type] = STATE(3354), - [sym_wrong_pointer_type] = STATE(3354), - [sym_map_type] = STATE(3354), - [sym_channel_type] = STATE(3354), - [sym_shared_type] = STATE(3354), - [sym_thread_type] = STATE(3354), - [sym_atomic_type] = STATE(3354), - [sym_generic_type] = STATE(3354), - [sym_function_type] = STATE(3354), - [sym_identifier] = ACTIONS(3430), - [anon_sym_LF] = ACTIONS(2057), - [anon_sym_CR] = ACTIONS(2057), - [anon_sym_CR_LF] = ACTIONS(2057), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(3432), - [anon_sym___global] = ACTIONS(2159), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(3434), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(3436), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_struct] = ACTIONS(3438), - [anon_sym_pub] = ACTIONS(2159), - [anon_sym_mut] = ACTIONS(2057), - [anon_sym_COLON] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_QMARK] = ACTIONS(3440), - [anon_sym_BANG] = ACTIONS(3442), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_LBRACK2] = ACTIONS(3444), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(3446), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_AMP_CARET] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(2055), - [anon_sym_POUND_LBRACK] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(3448), - [anon_sym_map_LBRACK] = ACTIONS(3450), - [anon_sym_chan] = ACTIONS(3452), - [anon_sym_thread] = ACTIONS(3454), - [anon_sym_atomic] = ACTIONS(3456), + [sym__expression] = STATE(2648), + [sym__expression_without_blocks] = STATE(2415), + [sym__expression_with_blocks] = STATE(2415), + [sym_inc_expression] = STATE(2377), + [sym_dec_expression] = STATE(2377), + [sym_or_block_expression] = STATE(2377), + [sym_option_propagation_expression] = STATE(2377), + [sym_result_propagation_expression] = STATE(2377), + [sym_anon_struct_value_expression] = STATE(2374), + [sym_go_expression] = STATE(2377), + [sym_spawn_expression] = STATE(2377), + [sym_parenthesized_expression] = STATE(2377), + [sym_call_expression] = STATE(2377), + [sym_type_initializer] = STATE(2374), + [sym_function_literal] = STATE(2377), + [sym_reference_expression] = STATE(2447), + [sym_type_reference_expression] = STATE(3593), + [sym_unary_expression] = STATE(2377), + [sym_receive_expression] = STATE(2377), + [sym_binary_expression] = STATE(2377), + [sym_as_type_cast_expression] = STATE(2377), + [sym__max_group] = STATE(2377), + [sym_literal] = STATE(2354), + [sym_map_init_expression] = STATE(2374), + [sym_array_creation] = STATE(2377), + [sym_fixed_array_creation] = STATE(2377), + [sym_selector_expression] = STATE(2377), + [sym_index_expression] = STATE(2377), + [sym_slice_expression] = STATE(2377), + [sym_if_expression] = STATE(2374), + [sym_compile_time_if_expression] = STATE(2374), + [sym_is_expression] = STATE(2377), + [sym_in_expression] = STATE(2377), + [sym_enum_fetch] = STATE(2377), + [sym_match_expression] = STATE(2374), + [sym_select_expression] = STATE(2374), + [sym_lock_expression] = STATE(2374), + [sym_unsafe_expression] = STATE(2374), + [sym_sql_expression] = STATE(2374), + [sym_interpreted_string_literal] = STATE(2440), + [sym_c_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_mutability_modifiers] = STATE(566), + [sym_plain_type] = STATE(4383), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(1807), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3134), + [anon_sym_json_DOTdecode] = ACTIONS(1446), + [anon_sym_LBRACK2] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3138), + [sym_none] = ACTIONS(1454), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_nil] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_DOLLARif] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_sql] = ACTIONS(1468), + [sym_int_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_c_SQUOTE] = ACTIONS(1476), + [anon_sym_c_DQUOTE] = ACTIONS(1478), + [anon_sym_r_SQUOTE] = ACTIONS(1480), + [anon_sym_r_DQUOTE] = ACTIONS(1482), + [sym_pseudo_compile_time_identifier] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [948] = { [sym_line_comment] = STATE(948), [sym_block_comment] = STATE(948), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(605), - [anon_sym_LF] = ACTIONS(607), - [anon_sym_CR] = ACTIONS(607), - [anon_sym_CR_LF] = ACTIONS(607), + [sym_reference_expression] = STATE(4406), + [sym_type_reference_expression] = STATE(3360), + [sym_plain_type] = STATE(3398), + [sym__plain_type_without_special] = STATE(3404), + [sym_anon_struct_type] = STATE(3401), + [sym_multi_return_type] = STATE(3404), + [sym_result_type] = STATE(3404), + [sym_option_type] = STATE(3404), + [sym_qualified_type] = STATE(3360), + [sym_fixed_array_type] = STATE(3401), + [sym_array_type] = STATE(3401), + [sym_pointer_type] = STATE(3401), + [sym_wrong_pointer_type] = STATE(3401), + [sym_map_type] = STATE(3401), + [sym_channel_type] = STATE(3401), + [sym_shared_type] = STATE(3401), + [sym_thread_type] = STATE(3401), + [sym_atomic_type] = STATE(3401), + [sym_generic_type] = STATE(3401), + [sym_function_type] = STATE(3401), + [sym_identifier] = ACTIONS(3434), + [anon_sym_LF] = ACTIONS(1889), + [anon_sym_CR] = ACTIONS(1889), + [anon_sym_CR_LF] = ACTIONS(1889), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(607), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(607), - [anon_sym_RBRACE] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(609), - [anon_sym_RPAREN] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_BANG_EQ] = ACTIONS(607), - [anon_sym_LT_EQ] = ACTIONS(607), - [anon_sym_GT_EQ] = ACTIONS(607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_mut] = ACTIONS(607), - [anon_sym_PLUS_PLUS] = ACTIONS(607), - [anon_sym_DASH_DASH] = ACTIONS(607), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_go] = ACTIONS(607), - [anon_sym_spawn] = ACTIONS(607), - [anon_sym_json_DOTdecode] = ACTIONS(607), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_DASH] = ACTIONS(607), - [anon_sym_LT_LT] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_GT_GT_GT] = ACTIONS(607), - [anon_sym_AMP_CARET] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [anon_sym_or] = ACTIONS(607), - [sym_none] = ACTIONS(607), - [sym_true] = ACTIONS(607), - [sym_false] = ACTIONS(607), - [sym_nil] = ACTIONS(607), - [anon_sym_QMARK_DOT] = ACTIONS(607), - [anon_sym_POUND_LBRACK] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_DOLLARif] = ACTIONS(607), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(607), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_select] = ACTIONS(607), - [anon_sym_lock] = ACTIONS(607), - [anon_sym_rlock] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_sql] = ACTIONS(607), - [sym_int_literal] = ACTIONS(607), - [sym_float_literal] = ACTIONS(607), - [sym_rune_literal] = ACTIONS(607), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_DQUOTE] = ACTIONS(607), - [anon_sym_c_SQUOTE] = ACTIONS(607), - [anon_sym_c_DQUOTE] = ACTIONS(607), - [anon_sym_r_SQUOTE] = ACTIONS(607), - [anon_sym_r_DQUOTE] = ACTIONS(607), - [sym_pseudo_compile_time_identifier] = ACTIONS(607), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(561), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [anon_sym_SEMI] = ACTIONS(1887), + [anon_sym_DOT] = ACTIONS(1887), + [anon_sym_as] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_COMMA] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(3436), + [anon_sym___global] = ACTIONS(2095), + [anon_sym_fn] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(3440), + [anon_sym_SLASH] = ACTIONS(1887), + [anon_sym_PERCENT] = ACTIONS(1887), + [anon_sym_LT] = ACTIONS(1887), + [anon_sym_GT] = ACTIONS(1887), + [anon_sym_EQ_EQ] = ACTIONS(1887), + [anon_sym_BANG_EQ] = ACTIONS(1887), + [anon_sym_LT_EQ] = ACTIONS(1887), + [anon_sym_GT_EQ] = ACTIONS(1887), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_struct] = ACTIONS(3442), + [anon_sym_pub] = ACTIONS(2095), + [anon_sym_mut] = ACTIONS(1889), + [anon_sym_COLON] = ACTIONS(1887), + [anon_sym_PLUS_PLUS] = ACTIONS(1887), + [anon_sym_DASH_DASH] = ACTIONS(1887), + [anon_sym_QMARK] = ACTIONS(3444), + [anon_sym_BANG] = ACTIONS(3446), + [anon_sym_go] = ACTIONS(1887), + [anon_sym_spawn] = ACTIONS(1887), + [anon_sym_json_DOTdecode] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1887), + [anon_sym_LBRACK2] = ACTIONS(3448), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_CARET] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(3450), + [anon_sym_LT_DASH] = ACTIONS(1887), + [anon_sym_LT_LT] = ACTIONS(1887), + [anon_sym_GT_GT] = ACTIONS(1887), + [anon_sym_GT_GT_GT] = ACTIONS(1887), + [anon_sym_AMP_CARET] = ACTIONS(1887), + [anon_sym_AMP_AMP] = ACTIONS(1887), + [anon_sym_PIPE_PIPE] = ACTIONS(1887), + [anon_sym_or] = ACTIONS(1887), + [sym_none] = ACTIONS(1887), + [sym_true] = ACTIONS(1887), + [sym_false] = ACTIONS(1887), + [sym_nil] = ACTIONS(1887), + [anon_sym_QMARK_DOT] = ACTIONS(1887), + [anon_sym_POUND_LBRACK] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_DOLLARif] = ACTIONS(1887), + [anon_sym_is] = ACTIONS(1887), + [anon_sym_BANGis] = ACTIONS(1887), + [anon_sym_in] = ACTIONS(1887), + [anon_sym_BANGin] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_select] = ACTIONS(1887), + [anon_sym_lock] = ACTIONS(1887), + [anon_sym_rlock] = ACTIONS(1887), + [anon_sym_unsafe] = ACTIONS(1887), + [anon_sym_sql] = ACTIONS(1887), + [sym_int_literal] = ACTIONS(1887), + [sym_float_literal] = ACTIONS(1887), + [sym_rune_literal] = ACTIONS(1887), + [anon_sym_SQUOTE] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(1887), + [anon_sym_c_SQUOTE] = ACTIONS(1887), + [anon_sym_c_DQUOTE] = ACTIONS(1887), + [anon_sym_r_SQUOTE] = ACTIONS(1887), + [anon_sym_r_DQUOTE] = ACTIONS(1887), + [sym_pseudo_compile_time_identifier] = ACTIONS(1887), + [anon_sym_shared] = ACTIONS(3452), + [anon_sym_map_LBRACK] = ACTIONS(3454), + [anon_sym_chan] = ACTIONS(3456), + [anon_sym_thread] = ACTIONS(3458), + [anon_sym_atomic] = ACTIONS(3460), }, [949] = { [sym_line_comment] = STATE(949), [sym_block_comment] = STATE(949), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2311), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(627), - [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_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(627), - [anon_sym_RPAREN] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(627), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(627), - [anon_sym_BANG_EQ] = ACTIONS(627), - [anon_sym_LT_EQ] = ACTIONS(627), - [anon_sym_GT_EQ] = ACTIONS(627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(627), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(627), - [anon_sym_mut] = ACTIONS(627), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_QMARK] = ACTIONS(627), - [anon_sym_BANG] = ACTIONS(627), - [anon_sym_go] = ACTIONS(627), - [anon_sym_spawn] = ACTIONS(627), - [anon_sym_json_DOTdecode] = ACTIONS(627), - [anon_sym_LBRACK2] = ACTIONS(627), - [anon_sym_TILDE] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(627), - [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), - [anon_sym_SQUOTE] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(627), - [anon_sym_c_SQUOTE] = ACTIONS(627), - [anon_sym_c_DQUOTE] = ACTIONS(627), - [anon_sym_r_SQUOTE] = ACTIONS(627), - [anon_sym_r_DQUOTE] = ACTIONS(627), - [sym_pseudo_compile_time_identifier] = ACTIONS(627), - [anon_sym_shared] = ACTIONS(627), - [anon_sym_map_LBRACK] = ACTIONS(627), - [anon_sym_chan] = ACTIONS(627), - [anon_sym_thread] = ACTIONS(627), - [anon_sym_atomic] = ACTIONS(627), - }, - [950] = { - [sym_line_comment] = STATE(950), - [sym_block_comment] = STATE(950), - [sym_reference_expression] = STATE(4407), + [sym_reference_expression] = STATE(4499), [sym_type_reference_expression] = STATE(1136), - [sym_plain_type] = STATE(1140), - [sym__plain_type_without_special] = STATE(1171), - [sym_anon_struct_type] = STATE(1169), - [sym_multi_return_type] = STATE(1171), - [sym_result_type] = STATE(1171), - [sym_option_type] = STATE(1171), + [sym_plain_type] = STATE(1194), + [sym__plain_type_without_special] = STATE(1179), + [sym_anon_struct_type] = STATE(1183), + [sym_multi_return_type] = STATE(1179), + [sym_result_type] = STATE(1179), + [sym_option_type] = STATE(1179), [sym_qualified_type] = STATE(1136), - [sym_fixed_array_type] = STATE(1169), - [sym_array_type] = STATE(1169), - [sym_pointer_type] = STATE(1169), - [sym_wrong_pointer_type] = STATE(1169), - [sym_map_type] = STATE(1169), - [sym_channel_type] = STATE(1169), - [sym_shared_type] = STATE(1169), - [sym_thread_type] = STATE(1169), - [sym_atomic_type] = STATE(1169), - [sym_generic_type] = STATE(1169), - [sym_function_type] = STATE(1169), - [sym_identifier] = ACTIONS(3460), + [sym_fixed_array_type] = STATE(1183), + [sym_array_type] = STATE(1183), + [sym_pointer_type] = STATE(1183), + [sym_wrong_pointer_type] = STATE(1183), + [sym_map_type] = STATE(1183), + [sym_channel_type] = STATE(1183), + [sym_shared_type] = STATE(1183), + [sym_thread_type] = STATE(1183), + [sym_atomic_type] = STATE(1183), + [sym_generic_type] = STATE(1183), + [sym_function_type] = STATE(1183), + [sym_identifier] = ACTIONS(3462), [anon_sym_LF] = ACTIONS(601), [anon_sym_CR] = ACTIONS(601), [anon_sym_CR_LF] = ACTIONS(601), @@ -132165,13 +132361,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(601), [anon_sym_COMMA] = ACTIONS(601), [anon_sym_RBRACE] = ACTIONS(601), - [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3464), [anon_sym_RPAREN] = ACTIONS(601), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(3464), + [anon_sym_fn] = ACTIONS(3466), [anon_sym_PLUS] = ACTIONS(601), [anon_sym_DASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(3466), + [anon_sym_STAR] = ACTIONS(3468), [anon_sym_SLASH] = ACTIONS(601), [anon_sym_PERCENT] = ACTIONS(601), [anon_sym_LT] = ACTIONS(601), @@ -132182,19 +132377,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(601), [anon_sym_DOT_DOT_DOT] = ACTIONS(601), [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_struct] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), [anon_sym_mut] = ACTIONS(601), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_QMARK] = ACTIONS(3470), - [anon_sym_BANG] = ACTIONS(3472), + [anon_sym_QMARK] = ACTIONS(3472), + [anon_sym_BANG] = ACTIONS(3474), [anon_sym_go] = ACTIONS(601), [anon_sym_spawn] = ACTIONS(601), [anon_sym_json_DOTdecode] = ACTIONS(601), - [anon_sym_LBRACK2] = ACTIONS(3474), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_LBRACK2] = ACTIONS(3476), [anon_sym_TILDE] = ACTIONS(601), [anon_sym_CARET] = ACTIONS(601), - [anon_sym_AMP] = ACTIONS(3476), + [anon_sym_AMP] = ACTIONS(3478), [anon_sym_LT_DASH] = ACTIONS(601), [anon_sym_LT_LT] = ACTIONS(601), [anon_sym_GT_GT] = ACTIONS(601), @@ -132231,36 +132427,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r_SQUOTE] = ACTIONS(601), [anon_sym_r_DQUOTE] = ACTIONS(601), [sym_pseudo_compile_time_identifier] = ACTIONS(601), - [anon_sym_shared] = ACTIONS(3478), - [anon_sym_map_LBRACK] = ACTIONS(3480), - [anon_sym_chan] = ACTIONS(3482), - [anon_sym_thread] = ACTIONS(3484), - [anon_sym_atomic] = ACTIONS(3486), + [anon_sym_shared] = ACTIONS(3480), + [anon_sym_map_LBRACK] = ACTIONS(3482), + [anon_sym_chan] = ACTIONS(3484), + [anon_sym_thread] = ACTIONS(3486), + [anon_sym_atomic] = ACTIONS(3488), }, - [951] = { - [sym_line_comment] = STATE(951), - [sym_block_comment] = STATE(951), - [sym_reference_expression] = STATE(4407), - [sym_type_reference_expression] = STATE(1136), - [sym_plain_type] = STATE(1213), - [sym__plain_type_without_special] = STATE(1171), - [sym_anon_struct_type] = STATE(1169), - [sym_multi_return_type] = STATE(1171), - [sym_result_type] = STATE(1171), - [sym_option_type] = STATE(1171), - [sym_qualified_type] = STATE(1136), - [sym_fixed_array_type] = STATE(1169), - [sym_array_type] = STATE(1169), - [sym_pointer_type] = STATE(1169), - [sym_wrong_pointer_type] = STATE(1169), - [sym_map_type] = STATE(1169), - [sym_channel_type] = STATE(1169), - [sym_shared_type] = STATE(1169), - [sym_thread_type] = STATE(1169), - [sym_atomic_type] = STATE(1169), - [sym_generic_type] = STATE(1169), - [sym_function_type] = STATE(1169), - [sym_identifier] = ACTIONS(3460), + [950] = { + [sym_line_comment] = STATE(950), + [sym_block_comment] = STATE(950), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2418), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(597), [anon_sym_LF] = ACTIONS(597), [anon_sym_CR] = ACTIONS(597), [anon_sym_CR_LF] = ACTIONS(597), @@ -132272,13 +132468,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(597), [anon_sym_COMMA] = ACTIONS(597), [anon_sym_RBRACE] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(597), [anon_sym_RPAREN] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(3464), + [anon_sym_fn] = ACTIONS(597), [anon_sym_PLUS] = ACTIONS(597), [anon_sym_DASH] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(3466), + [anon_sym_STAR] = ACTIONS(597), [anon_sym_SLASH] = ACTIONS(597), [anon_sym_PERCENT] = ACTIONS(597), [anon_sym_LT] = ACTIONS(597), @@ -132289,19 +132484,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(597), [anon_sym_DOT_DOT_DOT] = ACTIONS(597), [anon_sym_LBRACK] = ACTIONS(595), - [anon_sym_struct] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(597), [anon_sym_mut] = ACTIONS(597), [anon_sym_PLUS_PLUS] = ACTIONS(597), [anon_sym_DASH_DASH] = ACTIONS(597), - [anon_sym_QMARK] = ACTIONS(3470), - [anon_sym_BANG] = ACTIONS(3472), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), [anon_sym_go] = ACTIONS(597), [anon_sym_spawn] = ACTIONS(597), [anon_sym_json_DOTdecode] = ACTIONS(597), - [anon_sym_LBRACK2] = ACTIONS(3474), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), [anon_sym_TILDE] = ACTIONS(597), [anon_sym_CARET] = ACTIONS(597), - [anon_sym_AMP] = ACTIONS(3476), + [anon_sym_AMP] = ACTIONS(597), [anon_sym_LT_DASH] = ACTIONS(597), [anon_sym_LT_LT] = ACTIONS(597), [anon_sym_GT_GT] = ACTIONS(597), @@ -132338,36 +132534,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r_SQUOTE] = ACTIONS(597), [anon_sym_r_DQUOTE] = ACTIONS(597), [sym_pseudo_compile_time_identifier] = ACTIONS(597), - [anon_sym_shared] = ACTIONS(3478), - [anon_sym_map_LBRACK] = ACTIONS(3480), - [anon_sym_chan] = ACTIONS(3482), - [anon_sym_thread] = ACTIONS(3484), - [anon_sym_atomic] = ACTIONS(3486), + [anon_sym_shared] = ACTIONS(597), + [anon_sym_map_LBRACK] = ACTIONS(597), + [anon_sym_chan] = ACTIONS(597), + [anon_sym_thread] = ACTIONS(597), + [anon_sym_atomic] = ACTIONS(597), }, - [952] = { - [sym_line_comment] = STATE(952), - [sym_block_comment] = STATE(952), - [sym_reference_expression] = STATE(4407), + [951] = { + [sym_line_comment] = STATE(951), + [sym_block_comment] = STATE(951), + [sym_reference_expression] = STATE(4499), [sym_type_reference_expression] = STATE(1136), - [sym_plain_type] = STATE(1205), - [sym__plain_type_without_special] = STATE(1171), - [sym_anon_struct_type] = STATE(1169), - [sym_multi_return_type] = STATE(1171), - [sym_result_type] = STATE(1171), - [sym_option_type] = STATE(1171), + [sym_plain_type] = STATE(1197), + [sym__plain_type_without_special] = STATE(1179), + [sym_anon_struct_type] = STATE(1183), + [sym_multi_return_type] = STATE(1179), + [sym_result_type] = STATE(1179), + [sym_option_type] = STATE(1179), [sym_qualified_type] = STATE(1136), - [sym_fixed_array_type] = STATE(1169), - [sym_array_type] = STATE(1169), - [sym_pointer_type] = STATE(1169), - [sym_wrong_pointer_type] = STATE(1169), - [sym_map_type] = STATE(1169), - [sym_channel_type] = STATE(1169), - [sym_shared_type] = STATE(1169), - [sym_thread_type] = STATE(1169), - [sym_atomic_type] = STATE(1169), - [sym_generic_type] = STATE(1169), - [sym_function_type] = STATE(1169), - [sym_identifier] = ACTIONS(3460), + [sym_fixed_array_type] = STATE(1183), + [sym_array_type] = STATE(1183), + [sym_pointer_type] = STATE(1183), + [sym_wrong_pointer_type] = STATE(1183), + [sym_map_type] = STATE(1183), + [sym_channel_type] = STATE(1183), + [sym_shared_type] = STATE(1183), + [sym_thread_type] = STATE(1183), + [sym_atomic_type] = STATE(1183), + [sym_generic_type] = STATE(1183), + [sym_function_type] = STATE(1183), + [sym_identifier] = ACTIONS(3462), [anon_sym_LF] = ACTIONS(567), [anon_sym_CR] = ACTIONS(567), [anon_sym_CR_LF] = ACTIONS(567), @@ -132379,13 +132575,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(567), [anon_sym_COMMA] = ACTIONS(567), [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3464), [anon_sym_RPAREN] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(3464), + [anon_sym_fn] = ACTIONS(3466), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3466), + [anon_sym_STAR] = ACTIONS(3468), [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(567), [anon_sym_LT] = ACTIONS(567), @@ -132396,19 +132591,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(567), [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), [anon_sym_mut] = ACTIONS(567), [anon_sym_PLUS_PLUS] = ACTIONS(567), [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(3470), - [anon_sym_BANG] = ACTIONS(3472), + [anon_sym_QMARK] = ACTIONS(3472), + [anon_sym_BANG] = ACTIONS(3474), [anon_sym_go] = ACTIONS(567), [anon_sym_spawn] = ACTIONS(567), [anon_sym_json_DOTdecode] = ACTIONS(567), - [anon_sym_LBRACK2] = ACTIONS(3474), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_LBRACK2] = ACTIONS(3476), [anon_sym_TILDE] = ACTIONS(567), [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(3476), + [anon_sym_AMP] = ACTIONS(3478), [anon_sym_LT_DASH] = ACTIONS(567), [anon_sym_LT_LT] = ACTIONS(567), [anon_sym_GT_GT] = ACTIONS(567), @@ -132445,124 +132641,653 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r_SQUOTE] = ACTIONS(567), [anon_sym_r_DQUOTE] = ACTIONS(567), [sym_pseudo_compile_time_identifier] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(3478), - [anon_sym_map_LBRACK] = ACTIONS(3480), - [anon_sym_chan] = ACTIONS(3482), - [anon_sym_thread] = ACTIONS(3484), - [anon_sym_atomic] = ACTIONS(3486), + [anon_sym_shared] = ACTIONS(3480), + [anon_sym_map_LBRACK] = ACTIONS(3482), + [anon_sym_chan] = ACTIONS(3484), + [anon_sym_thread] = ACTIONS(3486), + [anon_sym_atomic] = ACTIONS(3488), + }, + [952] = { + [sym_line_comment] = STATE(952), + [sym_block_comment] = STATE(952), + [sym_reference_expression] = STATE(4499), + [sym_type_reference_expression] = STATE(1136), + [sym_plain_type] = STATE(1184), + [sym__plain_type_without_special] = STATE(1179), + [sym_anon_struct_type] = STATE(1183), + [sym_multi_return_type] = STATE(1179), + [sym_result_type] = STATE(1179), + [sym_option_type] = STATE(1179), + [sym_qualified_type] = STATE(1136), + [sym_fixed_array_type] = STATE(1183), + [sym_array_type] = STATE(1183), + [sym_pointer_type] = STATE(1183), + [sym_wrong_pointer_type] = STATE(1183), + [sym_map_type] = STATE(1183), + [sym_channel_type] = STATE(1183), + [sym_shared_type] = STATE(1183), + [sym_thread_type] = STATE(1183), + [sym_atomic_type] = STATE(1183), + [sym_generic_type] = STATE(1183), + [sym_function_type] = STATE(1183), + [sym_identifier] = ACTIONS(3462), + [anon_sym_LF] = ACTIONS(605), + [anon_sym_CR] = ACTIONS(605), + [anon_sym_CR_LF] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(605), + [anon_sym_DOT] = ACTIONS(605), + [anon_sym_as] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(605), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_RBRACE] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(3464), + [anon_sym_RPAREN] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(3466), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(3468), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [anon_sym_LT_EQ] = ACTIONS(605), + [anon_sym_GT_EQ] = ACTIONS(605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_mut] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_QMARK] = ACTIONS(3472), + [anon_sym_BANG] = ACTIONS(3474), + [anon_sym_go] = ACTIONS(605), + [anon_sym_spawn] = ACTIONS(605), + [anon_sym_json_DOTdecode] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_LBRACK2] = ACTIONS(3476), + [anon_sym_TILDE] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(3478), + [anon_sym_LT_DASH] = ACTIONS(605), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_GT_GT_GT] = ACTIONS(605), + [anon_sym_AMP_CARET] = ACTIONS(605), + [anon_sym_AMP_AMP] = ACTIONS(605), + [anon_sym_PIPE_PIPE] = ACTIONS(605), + [anon_sym_or] = ACTIONS(605), + [sym_none] = ACTIONS(605), + [sym_true] = ACTIONS(605), + [sym_false] = ACTIONS(605), + [sym_nil] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(605), + [anon_sym_POUND_LBRACK] = ACTIONS(605), + [anon_sym_if] = ACTIONS(605), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_is] = ACTIONS(605), + [anon_sym_BANGis] = ACTIONS(605), + [anon_sym_in] = ACTIONS(605), + [anon_sym_BANGin] = ACTIONS(605), + [anon_sym_match] = ACTIONS(605), + [anon_sym_select] = ACTIONS(605), + [anon_sym_lock] = ACTIONS(605), + [anon_sym_rlock] = ACTIONS(605), + [anon_sym_unsafe] = ACTIONS(605), + [anon_sym_sql] = ACTIONS(605), + [sym_int_literal] = ACTIONS(605), + [sym_float_literal] = ACTIONS(605), + [sym_rune_literal] = ACTIONS(605), + [anon_sym_SQUOTE] = ACTIONS(605), + [anon_sym_DQUOTE] = ACTIONS(605), + [anon_sym_c_SQUOTE] = ACTIONS(605), + [anon_sym_c_DQUOTE] = ACTIONS(605), + [anon_sym_r_SQUOTE] = ACTIONS(605), + [anon_sym_r_DQUOTE] = ACTIONS(605), + [sym_pseudo_compile_time_identifier] = ACTIONS(605), + [anon_sym_shared] = ACTIONS(3480), + [anon_sym_map_LBRACK] = ACTIONS(3482), + [anon_sym_chan] = ACTIONS(3484), + [anon_sym_thread] = ACTIONS(3486), + [anon_sym_atomic] = ACTIONS(3488), }, [953] = { [sym_line_comment] = STATE(953), [sym_block_comment] = STATE(953), - [sym_type_parameters] = STATE(4197), - [sym_argument_list] = STATE(1001), - [sym_or_block] = STATE(1000), - [aux_sym_strictly_expression_list_repeat1] = STATE(1408), - [ts_builtin_sym_end] = ACTIONS(3488), - [sym_identifier] = ACTIONS(1721), - [anon_sym_LF] = ACTIONS(1721), - [anon_sym_CR] = ACTIONS(1721), - [anon_sym_CR_LF] = ACTIONS(1721), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2421), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(611), + [anon_sym_CR] = ACTIONS(611), + [anon_sym_CR_LF] = ACTIONS(611), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3490), - [anon_sym_as] = ACTIONS(3492), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_COMMA] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym___global] = ACTIONS(1721), - [anon_sym_type] = ACTIONS(1721), - [anon_sym_PIPE] = ACTIONS(3498), - [anon_sym_fn] = ACTIONS(1721), - [anon_sym_PLUS] = ACTIONS(3498), - [anon_sym_DASH] = ACTIONS(3498), - [anon_sym_STAR] = ACTIONS(3500), - [anon_sym_SLASH] = ACTIONS(3500), - [anon_sym_PERCENT] = ACTIONS(3500), - [anon_sym_LT] = ACTIONS(3502), - [anon_sym_GT] = ACTIONS(3502), - [anon_sym_EQ_EQ] = ACTIONS(3502), - [anon_sym_BANG_EQ] = ACTIONS(3502), - [anon_sym_LT_EQ] = ACTIONS(3502), - [anon_sym_GT_EQ] = ACTIONS(3502), - [anon_sym_LBRACK] = ACTIONS(3504), - [anon_sym_struct] = ACTIONS(1721), - [anon_sym_union] = ACTIONS(1721), - [anon_sym_pub] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_enum] = ACTIONS(1721), - [anon_sym_interface] = ACTIONS(1721), - [anon_sym_PLUS_PLUS] = ACTIONS(3506), - [anon_sym_DASH_DASH] = ACTIONS(3508), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3512), - [anon_sym_go] = ACTIONS(1721), - [anon_sym_spawn] = ACTIONS(1721), - [anon_sym_json_DOTdecode] = ACTIONS(1721), - [anon_sym_LBRACK2] = ACTIONS(3514), - [anon_sym_TILDE] = ACTIONS(1721), - [anon_sym_CARET] = ACTIONS(3498), - [anon_sym_AMP] = ACTIONS(3500), - [anon_sym_LT_DASH] = ACTIONS(1721), - [anon_sym_LT_LT] = ACTIONS(3500), - [anon_sym_GT_GT] = ACTIONS(3500), - [anon_sym_GT_GT_GT] = ACTIONS(3500), - [anon_sym_AMP_CARET] = ACTIONS(3500), - [anon_sym_AMP_AMP] = ACTIONS(3516), - [anon_sym_PIPE_PIPE] = ACTIONS(3518), - [anon_sym_or] = ACTIONS(3520), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_QMARK_DOT] = ACTIONS(3490), - [anon_sym_POUND_LBRACK] = ACTIONS(3514), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_DOLLARif] = ACTIONS(1721), - [anon_sym_is] = ACTIONS(3522), - [anon_sym_BANGis] = ACTIONS(3522), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_BANGin] = ACTIONS(3524), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_select] = ACTIONS(1721), - [anon_sym_lock] = ACTIONS(1721), - [anon_sym_rlock] = ACTIONS(1721), - [anon_sym_unsafe] = ACTIONS(1721), - [anon_sym_sql] = ACTIONS(1721), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(1721), - [sym_rune_literal] = ACTIONS(1721), - [anon_sym_SQUOTE] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [anon_sym_c_SQUOTE] = ACTIONS(1721), - [anon_sym_c_DQUOTE] = ACTIONS(1721), - [anon_sym_r_SQUOTE] = ACTIONS(1721), - [anon_sym_r_DQUOTE] = ACTIONS(1721), - [sym_pseudo_compile_time_identifier] = ACTIONS(1721), - [anon_sym_shared] = ACTIONS(1721), - [anon_sym_map_LBRACK] = ACTIONS(1721), - [anon_sym_chan] = ACTIONS(1721), - [anon_sym_thread] = ACTIONS(1721), - [anon_sym_atomic] = ACTIONS(1721), - [anon_sym_assert] = ACTIONS(1721), - [anon_sym_defer] = ACTIONS(1721), - [anon_sym_goto] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_DOLLARfor] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(1721), - [anon_sym_asm] = ACTIONS(1721), - [anon_sym_AT_LBRACK] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(611), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_as] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_RBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_RPAREN] = ACTIONS(611), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(611), + [anon_sym_BANG_EQ] = ACTIONS(611), + [anon_sym_LT_EQ] = ACTIONS(611), + [anon_sym_GT_EQ] = ACTIONS(611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_mut] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3490), + [anon_sym_go] = ACTIONS(611), + [anon_sym_spawn] = ACTIONS(611), + [anon_sym_json_DOTdecode] = ACTIONS(611), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_DASH] = ACTIONS(611), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(611), + [anon_sym_AMP_CARET] = ACTIONS(611), + [anon_sym_AMP_AMP] = ACTIONS(611), + [anon_sym_PIPE_PIPE] = ACTIONS(611), + [anon_sym_or] = ACTIONS(611), + [sym_none] = ACTIONS(611), + [sym_true] = ACTIONS(611), + [sym_false] = ACTIONS(611), + [sym_nil] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(611), + [anon_sym_if] = ACTIONS(611), + [anon_sym_DOLLARif] = ACTIONS(611), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(611), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(611), + [anon_sym_match] = ACTIONS(611), + [anon_sym_select] = ACTIONS(611), + [anon_sym_lock] = ACTIONS(611), + [anon_sym_rlock] = ACTIONS(611), + [anon_sym_unsafe] = ACTIONS(611), + [anon_sym_sql] = ACTIONS(611), + [sym_int_literal] = ACTIONS(611), + [sym_float_literal] = ACTIONS(611), + [sym_rune_literal] = ACTIONS(611), + [anon_sym_SQUOTE] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(611), + [anon_sym_c_SQUOTE] = ACTIONS(611), + [anon_sym_c_DQUOTE] = ACTIONS(611), + [anon_sym_r_SQUOTE] = ACTIONS(611), + [anon_sym_r_DQUOTE] = ACTIONS(611), + [sym_pseudo_compile_time_identifier] = ACTIONS(611), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(561), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [954] = { [sym_line_comment] = STATE(954), [sym_block_comment] = STATE(954), - [sym_type_parameters] = STATE(4197), - [sym_argument_list] = STATE(1001), - [sym_or_block] = STATE(1000), + [sym_type_parameters] = STATE(4208), + [sym_argument_list] = STATE(1044), + [sym_or_block] = STATE(1043), + [aux_sym_strictly_expression_list_repeat1] = STATE(1448), + [ts_builtin_sym_end] = ACTIONS(3492), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LF] = ACTIONS(1695), + [anon_sym_CR] = ACTIONS(1695), + [anon_sym_CR_LF] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3494), + [anon_sym_as] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_COMMA] = ACTIONS(3498), + [anon_sym_const] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym___global] = ACTIONS(1695), + [anon_sym_type] = ACTIONS(1695), + [anon_sym_fn] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(3502), + [anon_sym_DASH] = ACTIONS(3502), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_PERCENT] = ACTIONS(3504), + [anon_sym_LT] = ACTIONS(3506), + [anon_sym_GT] = ACTIONS(3506), + [anon_sym_EQ_EQ] = ACTIONS(3506), + [anon_sym_BANG_EQ] = ACTIONS(3506), + [anon_sym_LT_EQ] = ACTIONS(3506), + [anon_sym_GT_EQ] = ACTIONS(3506), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_struct] = ACTIONS(1695), + [anon_sym_union] = ACTIONS(1695), + [anon_sym_pub] = ACTIONS(1695), + [anon_sym_mut] = ACTIONS(1695), + [anon_sym_enum] = ACTIONS(1695), + [anon_sym_interface] = ACTIONS(1695), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3512), + [anon_sym_QMARK] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_go] = ACTIONS(1695), + [anon_sym_spawn] = ACTIONS(1695), + [anon_sym_json_DOTdecode] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(3502), + [anon_sym_LBRACK2] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(1695), + [anon_sym_CARET] = ACTIONS(3502), + [anon_sym_AMP] = ACTIONS(3504), + [anon_sym_LT_DASH] = ACTIONS(1695), + [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(3520), + [anon_sym_PIPE_PIPE] = ACTIONS(3522), + [anon_sym_or] = ACTIONS(3524), + [sym_none] = ACTIONS(1695), + [sym_true] = ACTIONS(1695), + [sym_false] = ACTIONS(1695), + [sym_nil] = ACTIONS(1695), + [anon_sym_QMARK_DOT] = ACTIONS(3494), + [anon_sym_POUND_LBRACK] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(1695), + [anon_sym_DOLLARif] = ACTIONS(1695), + [anon_sym_is] = ACTIONS(3526), + [anon_sym_BANGis] = ACTIONS(3526), + [anon_sym_in] = ACTIONS(3528), + [anon_sym_BANGin] = ACTIONS(3528), + [anon_sym_match] = ACTIONS(1695), + [anon_sym_select] = ACTIONS(1695), + [anon_sym_lock] = ACTIONS(1695), + [anon_sym_rlock] = ACTIONS(1695), + [anon_sym_unsafe] = ACTIONS(1695), + [anon_sym_sql] = ACTIONS(1695), + [sym_int_literal] = ACTIONS(1695), + [sym_float_literal] = ACTIONS(1695), + [sym_rune_literal] = ACTIONS(1695), + [anon_sym_SQUOTE] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [anon_sym_c_SQUOTE] = ACTIONS(1695), + [anon_sym_c_DQUOTE] = ACTIONS(1695), + [anon_sym_r_SQUOTE] = ACTIONS(1695), + [anon_sym_r_DQUOTE] = ACTIONS(1695), + [sym_pseudo_compile_time_identifier] = ACTIONS(1695), + [anon_sym_shared] = ACTIONS(1695), + [anon_sym_map_LBRACK] = ACTIONS(1695), + [anon_sym_chan] = ACTIONS(1695), + [anon_sym_thread] = ACTIONS(1695), + [anon_sym_atomic] = ACTIONS(1695), + [anon_sym_assert] = ACTIONS(1695), + [anon_sym_defer] = ACTIONS(1695), + [anon_sym_goto] = ACTIONS(1695), + [anon_sym_break] = ACTIONS(1695), + [anon_sym_continue] = ACTIONS(1695), + [anon_sym_return] = ACTIONS(1695), + [anon_sym_DOLLARfor] = ACTIONS(1695), + [anon_sym_for] = ACTIONS(1695), + [anon_sym_POUND] = ACTIONS(1695), + [anon_sym_asm] = ACTIONS(1695), + [anon_sym_AT_LBRACK] = ACTIONS(1695), + }, + [955] = { + [sym_line_comment] = STATE(955), + [sym_block_comment] = STATE(955), + [sym_type_parameters] = STATE(4208), + [sym_argument_list] = STATE(1044), + [sym_or_block] = STATE(1043), + [ts_builtin_sym_end] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1767), + [anon_sym_LF] = ACTIONS(1767), + [anon_sym_CR] = ACTIONS(1767), + [anon_sym_CR_LF] = ACTIONS(1767), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3494), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_COMMA] = ACTIONS(1767), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym___global] = ACTIONS(1767), + [anon_sym_type] = ACTIONS(1767), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_PERCENT] = ACTIONS(3504), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_EQ_EQ] = ACTIONS(1767), + [anon_sym_BANG_EQ] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_union] = ACTIONS(1767), + [anon_sym_pub] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_enum] = ACTIONS(1767), + [anon_sym_interface] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK2] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_CARET] = ACTIONS(1767), + [anon_sym_AMP] = ACTIONS(3504), + [anon_sym_LT_DASH] = ACTIONS(1767), + [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(1767), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(3494), + [anon_sym_POUND_LBRACK] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1767), + [anon_sym_in] = ACTIONS(1767), + [anon_sym_BANGin] = ACTIONS(1767), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1767), + [sym_rune_literal] = ACTIONS(1767), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_c_SQUOTE] = ACTIONS(1767), + [anon_sym_c_DQUOTE] = ACTIONS(1767), + [anon_sym_r_SQUOTE] = ACTIONS(1767), + [anon_sym_r_DQUOTE] = ACTIONS(1767), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1767), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), + [anon_sym_assert] = ACTIONS(1767), + [anon_sym_defer] = ACTIONS(1767), + [anon_sym_goto] = ACTIONS(1767), + [anon_sym_break] = ACTIONS(1767), + [anon_sym_continue] = ACTIONS(1767), + [anon_sym_return] = ACTIONS(1767), + [anon_sym_DOLLARfor] = ACTIONS(1767), + [anon_sym_for] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(1767), + [anon_sym_asm] = ACTIONS(1767), + [anon_sym_AT_LBRACK] = ACTIONS(1767), + }, + [956] = { + [sym_line_comment] = STATE(956), + [sym_block_comment] = STATE(956), + [sym_type_parameters] = STATE(4208), + [sym_argument_list] = STATE(1044), + [sym_or_block] = STATE(1043), + [ts_builtin_sym_end] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1767), + [anon_sym_LF] = ACTIONS(1767), + [anon_sym_CR] = ACTIONS(1767), + [anon_sym_CR_LF] = ACTIONS(1767), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3494), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_COMMA] = ACTIONS(1767), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym___global] = ACTIONS(1767), + [anon_sym_type] = ACTIONS(1767), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_PERCENT] = ACTIONS(1767), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_EQ_EQ] = ACTIONS(1767), + [anon_sym_BANG_EQ] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_union] = ACTIONS(1767), + [anon_sym_pub] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_enum] = ACTIONS(1767), + [anon_sym_interface] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK2] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_CARET] = ACTIONS(1767), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym_LT_DASH] = ACTIONS(1767), + [anon_sym_LT_LT] = ACTIONS(1767), + [anon_sym_GT_GT] = ACTIONS(1767), + [anon_sym_GT_GT_GT] = ACTIONS(1767), + [anon_sym_AMP_CARET] = ACTIONS(1767), + [anon_sym_AMP_AMP] = ACTIONS(1767), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(3494), + [anon_sym_POUND_LBRACK] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1767), + [anon_sym_in] = ACTIONS(1767), + [anon_sym_BANGin] = ACTIONS(1767), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1767), + [sym_rune_literal] = ACTIONS(1767), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_c_SQUOTE] = ACTIONS(1767), + [anon_sym_c_DQUOTE] = ACTIONS(1767), + [anon_sym_r_SQUOTE] = ACTIONS(1767), + [anon_sym_r_DQUOTE] = ACTIONS(1767), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1767), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), + [anon_sym_assert] = ACTIONS(1767), + [anon_sym_defer] = ACTIONS(1767), + [anon_sym_goto] = ACTIONS(1767), + [anon_sym_break] = ACTIONS(1767), + [anon_sym_continue] = ACTIONS(1767), + [anon_sym_return] = ACTIONS(1767), + [anon_sym_DOLLARfor] = ACTIONS(1767), + [anon_sym_for] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(1767), + [anon_sym_asm] = ACTIONS(1767), + [anon_sym_AT_LBRACK] = ACTIONS(1767), + }, + [957] = { + [sym_line_comment] = STATE(957), + [sym_block_comment] = STATE(957), + [sym_type_parameters] = STATE(4208), + [sym_argument_list] = STATE(1044), + [sym_or_block] = STATE(1043), + [ts_builtin_sym_end] = ACTIONS(1787), + [sym_identifier] = ACTIONS(1789), + [anon_sym_LF] = ACTIONS(1789), + [anon_sym_CR] = ACTIONS(1789), + [anon_sym_CR_LF] = ACTIONS(1789), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3494), + [anon_sym_as] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_COMMA] = ACTIONS(1789), + [anon_sym_const] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym___global] = ACTIONS(1789), + [anon_sym_type] = ACTIONS(1789), + [anon_sym_fn] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_STAR] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(1789), + [anon_sym_PERCENT] = ACTIONS(1789), + [anon_sym_LT] = ACTIONS(1789), + [anon_sym_GT] = ACTIONS(1789), + [anon_sym_EQ_EQ] = ACTIONS(1789), + [anon_sym_BANG_EQ] = ACTIONS(1789), + [anon_sym_LT_EQ] = ACTIONS(1789), + [anon_sym_GT_EQ] = ACTIONS(1789), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_struct] = ACTIONS(1789), + [anon_sym_union] = ACTIONS(1789), + [anon_sym_pub] = ACTIONS(1789), + [anon_sym_mut] = ACTIONS(1789), + [anon_sym_enum] = ACTIONS(1789), + [anon_sym_interface] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [anon_sym_QMARK] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_go] = ACTIONS(1789), + [anon_sym_spawn] = ACTIONS(1789), + [anon_sym_json_DOTdecode] = ACTIONS(1789), + [anon_sym_PIPE] = ACTIONS(1789), + [anon_sym_LBRACK2] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_CARET] = ACTIONS(1789), + [anon_sym_AMP] = ACTIONS(1789), + [anon_sym_LT_DASH] = ACTIONS(1789), + [anon_sym_LT_LT] = ACTIONS(1789), + [anon_sym_GT_GT] = ACTIONS(1789), + [anon_sym_GT_GT_GT] = ACTIONS(1789), + [anon_sym_AMP_CARET] = ACTIONS(1789), + [anon_sym_AMP_AMP] = ACTIONS(1789), + [anon_sym_PIPE_PIPE] = ACTIONS(1789), + [anon_sym_or] = ACTIONS(1789), + [sym_none] = ACTIONS(1789), + [sym_true] = ACTIONS(1789), + [sym_false] = ACTIONS(1789), + [sym_nil] = ACTIONS(1789), + [anon_sym_QMARK_DOT] = ACTIONS(3494), + [anon_sym_POUND_LBRACK] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1789), + [anon_sym_is] = ACTIONS(1789), + [anon_sym_BANGis] = ACTIONS(1789), + [anon_sym_in] = ACTIONS(1789), + [anon_sym_BANGin] = ACTIONS(1789), + [anon_sym_match] = ACTIONS(1789), + [anon_sym_select] = ACTIONS(1789), + [anon_sym_lock] = ACTIONS(1789), + [anon_sym_rlock] = ACTIONS(1789), + [anon_sym_unsafe] = ACTIONS(1789), + [anon_sym_sql] = ACTIONS(1789), + [sym_int_literal] = ACTIONS(1789), + [sym_float_literal] = ACTIONS(1789), + [sym_rune_literal] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(1789), + [anon_sym_c_SQUOTE] = ACTIONS(1789), + [anon_sym_c_DQUOTE] = ACTIONS(1789), + [anon_sym_r_SQUOTE] = ACTIONS(1789), + [anon_sym_r_DQUOTE] = ACTIONS(1789), + [sym_pseudo_compile_time_identifier] = ACTIONS(1789), + [anon_sym_shared] = ACTIONS(1789), + [anon_sym_map_LBRACK] = ACTIONS(1789), + [anon_sym_chan] = ACTIONS(1789), + [anon_sym_thread] = ACTIONS(1789), + [anon_sym_atomic] = ACTIONS(1789), + [anon_sym_assert] = ACTIONS(1789), + [anon_sym_defer] = ACTIONS(1789), + [anon_sym_goto] = ACTIONS(1789), + [anon_sym_break] = ACTIONS(1789), + [anon_sym_continue] = ACTIONS(1789), + [anon_sym_return] = ACTIONS(1789), + [anon_sym_DOLLARfor] = ACTIONS(1789), + [anon_sym_for] = ACTIONS(1789), + [anon_sym_POUND] = ACTIONS(1789), + [anon_sym_asm] = ACTIONS(1789), + [anon_sym_AT_LBRACK] = ACTIONS(1789), + }, + [958] = { + [sym_line_comment] = STATE(958), + [sym_block_comment] = STATE(958), + [sym_type_parameters] = STATE(4208), + [sym_argument_list] = STATE(1044), + [sym_or_block] = STATE(1043), [ts_builtin_sym_end] = ACTIONS(1777), [sym_identifier] = ACTIONS(1779), [anon_sym_LF] = ACTIONS(1779), @@ -132570,65 +133295,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(1779), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3490), - [anon_sym_as] = ACTIONS(3492), + [anon_sym_DOT] = ACTIONS(3494), + [anon_sym_as] = ACTIONS(3496), [anon_sym_LBRACE] = ACTIONS(1779), [anon_sym_COMMA] = ACTIONS(1779), [anon_sym_const] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym_LPAREN] = ACTIONS(3500), [anon_sym___global] = ACTIONS(1779), [anon_sym_type] = ACTIONS(1779), - [anon_sym_PIPE] = ACTIONS(3498), [anon_sym_fn] = ACTIONS(1779), - [anon_sym_PLUS] = ACTIONS(3498), - [anon_sym_DASH] = ACTIONS(3498), - [anon_sym_STAR] = ACTIONS(3500), - [anon_sym_SLASH] = ACTIONS(3500), - [anon_sym_PERCENT] = ACTIONS(3500), - [anon_sym_LT] = ACTIONS(3502), - [anon_sym_GT] = ACTIONS(3502), - [anon_sym_EQ_EQ] = ACTIONS(3502), - [anon_sym_BANG_EQ] = ACTIONS(3502), - [anon_sym_LT_EQ] = ACTIONS(3502), - [anon_sym_GT_EQ] = ACTIONS(3502), - [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_PLUS] = ACTIONS(3502), + [anon_sym_DASH] = ACTIONS(3502), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_PERCENT] = ACTIONS(3504), + [anon_sym_LT] = ACTIONS(3506), + [anon_sym_GT] = ACTIONS(3506), + [anon_sym_EQ_EQ] = ACTIONS(3506), + [anon_sym_BANG_EQ] = ACTIONS(3506), + [anon_sym_LT_EQ] = ACTIONS(3506), + [anon_sym_GT_EQ] = ACTIONS(3506), + [anon_sym_LBRACK] = ACTIONS(3508), [anon_sym_struct] = ACTIONS(1779), [anon_sym_union] = ACTIONS(1779), [anon_sym_pub] = ACTIONS(1779), [anon_sym_mut] = ACTIONS(1779), [anon_sym_enum] = ACTIONS(1779), [anon_sym_interface] = ACTIONS(1779), - [anon_sym_PLUS_PLUS] = ACTIONS(3506), - [anon_sym_DASH_DASH] = ACTIONS(3508), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3512), + [anon_sym_QMARK] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3516), [anon_sym_go] = ACTIONS(1779), [anon_sym_spawn] = ACTIONS(1779), [anon_sym_json_DOTdecode] = ACTIONS(1779), - [anon_sym_LBRACK2] = ACTIONS(3514), + [anon_sym_PIPE] = ACTIONS(3502), + [anon_sym_LBRACK2] = ACTIONS(3518), [anon_sym_TILDE] = ACTIONS(1779), - [anon_sym_CARET] = ACTIONS(3498), - [anon_sym_AMP] = ACTIONS(3500), + [anon_sym_CARET] = ACTIONS(3502), + [anon_sym_AMP] = ACTIONS(3504), [anon_sym_LT_DASH] = ACTIONS(1779), - [anon_sym_LT_LT] = ACTIONS(3500), - [anon_sym_GT_GT] = ACTIONS(3500), - [anon_sym_GT_GT_GT] = ACTIONS(3500), - [anon_sym_AMP_CARET] = ACTIONS(3500), - [anon_sym_AMP_AMP] = ACTIONS(3516), - [anon_sym_PIPE_PIPE] = ACTIONS(3518), - [anon_sym_or] = ACTIONS(3520), + [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(3520), + [anon_sym_PIPE_PIPE] = ACTIONS(3522), + [anon_sym_or] = ACTIONS(3524), [sym_none] = ACTIONS(1779), [sym_true] = ACTIONS(1779), [sym_false] = ACTIONS(1779), [sym_nil] = ACTIONS(1779), - [anon_sym_QMARK_DOT] = ACTIONS(3490), - [anon_sym_POUND_LBRACK] = ACTIONS(3514), + [anon_sym_QMARK_DOT] = ACTIONS(3494), + [anon_sym_POUND_LBRACK] = ACTIONS(3518), [anon_sym_if] = ACTIONS(1779), [anon_sym_DOLLARif] = ACTIONS(1779), - [anon_sym_is] = ACTIONS(3522), - [anon_sym_BANGis] = ACTIONS(3522), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_BANGin] = ACTIONS(3524), + [anon_sym_is] = ACTIONS(3526), + [anon_sym_BANGis] = ACTIONS(3526), + [anon_sym_in] = ACTIONS(3528), + [anon_sym_BANGin] = ACTIONS(3528), [anon_sym_match] = ACTIONS(1779), [anon_sym_select] = ACTIONS(1779), [anon_sym_lock] = ACTIONS(1779), @@ -132662,642 +133387,852 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1779), [anon_sym_AT_LBRACK] = ACTIONS(1779), }, - [955] = { - [sym_line_comment] = STATE(955), - [sym_block_comment] = STATE(955), - [sym_type_parameters] = STATE(4197), - [sym_argument_list] = STATE(1001), - [sym_or_block] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(3526), - [sym_identifier] = ACTIONS(3528), - [anon_sym_LF] = ACTIONS(3528), - [anon_sym_CR] = ACTIONS(3528), - [anon_sym_CR_LF] = ACTIONS(3528), + [959] = { + [sym_line_comment] = STATE(959), + [sym_block_comment] = STATE(959), + [sym_type_parameters] = STATE(4208), + [sym_argument_list] = STATE(1044), + [sym_or_block] = STATE(1043), + [ts_builtin_sym_end] = ACTIONS(1773), + [sym_identifier] = ACTIONS(1775), + [anon_sym_LF] = ACTIONS(1775), + [anon_sym_CR] = ACTIONS(1775), + [anon_sym_CR_LF] = ACTIONS(1775), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3490), - [anon_sym_as] = ACTIONS(3492), - [anon_sym_LBRACE] = ACTIONS(3528), - [anon_sym_COMMA] = ACTIONS(3530), - [anon_sym_const] = ACTIONS(3528), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym___global] = ACTIONS(3528), - [anon_sym_type] = ACTIONS(3528), - [anon_sym_PIPE] = ACTIONS(3498), - [anon_sym_fn] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3498), - [anon_sym_DASH] = ACTIONS(3498), - [anon_sym_STAR] = ACTIONS(3500), - [anon_sym_SLASH] = ACTIONS(3500), - [anon_sym_PERCENT] = ACTIONS(3500), - [anon_sym_LT] = ACTIONS(3502), - [anon_sym_GT] = ACTIONS(3502), - [anon_sym_EQ_EQ] = ACTIONS(3502), - [anon_sym_BANG_EQ] = ACTIONS(3502), - [anon_sym_LT_EQ] = ACTIONS(3502), - [anon_sym_GT_EQ] = ACTIONS(3502), - [anon_sym_LBRACK] = ACTIONS(3504), - [anon_sym_struct] = ACTIONS(3528), - [anon_sym_union] = ACTIONS(3528), - [anon_sym_pub] = ACTIONS(3528), - [anon_sym_mut] = ACTIONS(3528), - [anon_sym_enum] = ACTIONS(3528), - [anon_sym_interface] = ACTIONS(3528), - [anon_sym_PLUS_PLUS] = ACTIONS(3506), - [anon_sym_DASH_DASH] = ACTIONS(3508), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3512), - [anon_sym_go] = ACTIONS(3528), - [anon_sym_spawn] = ACTIONS(3528), - [anon_sym_json_DOTdecode] = ACTIONS(3528), - [anon_sym_LBRACK2] = ACTIONS(3514), - [anon_sym_TILDE] = ACTIONS(3528), - [anon_sym_CARET] = ACTIONS(3498), - [anon_sym_AMP] = ACTIONS(3500), - [anon_sym_LT_DASH] = ACTIONS(3528), - [anon_sym_LT_LT] = ACTIONS(3500), - [anon_sym_GT_GT] = ACTIONS(3500), - [anon_sym_GT_GT_GT] = ACTIONS(3500), - [anon_sym_AMP_CARET] = ACTIONS(3500), - [anon_sym_AMP_AMP] = ACTIONS(3516), - [anon_sym_PIPE_PIPE] = ACTIONS(3518), - [anon_sym_or] = ACTIONS(3520), - [sym_none] = ACTIONS(3528), - [sym_true] = ACTIONS(3528), - [sym_false] = ACTIONS(3528), - [sym_nil] = ACTIONS(3528), - [anon_sym_QMARK_DOT] = ACTIONS(3490), - [anon_sym_POUND_LBRACK] = ACTIONS(3514), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_DOLLARif] = ACTIONS(3528), - [anon_sym_is] = ACTIONS(3522), - [anon_sym_BANGis] = ACTIONS(3522), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_BANGin] = ACTIONS(3524), - [anon_sym_match] = ACTIONS(3528), - [anon_sym_select] = ACTIONS(3528), - [anon_sym_lock] = ACTIONS(3528), - [anon_sym_rlock] = ACTIONS(3528), - [anon_sym_unsafe] = ACTIONS(3528), - [anon_sym_sql] = ACTIONS(3528), - [sym_int_literal] = ACTIONS(3528), - [sym_float_literal] = ACTIONS(3528), - [sym_rune_literal] = ACTIONS(3528), - [anon_sym_SQUOTE] = ACTIONS(3528), - [anon_sym_DQUOTE] = ACTIONS(3528), - [anon_sym_c_SQUOTE] = ACTIONS(3528), - [anon_sym_c_DQUOTE] = ACTIONS(3528), - [anon_sym_r_SQUOTE] = ACTIONS(3528), - [anon_sym_r_DQUOTE] = ACTIONS(3528), - [sym_pseudo_compile_time_identifier] = ACTIONS(3528), - [anon_sym_shared] = ACTIONS(3528), - [anon_sym_map_LBRACK] = ACTIONS(3528), - [anon_sym_chan] = ACTIONS(3528), - [anon_sym_thread] = ACTIONS(3528), - [anon_sym_atomic] = ACTIONS(3528), - [anon_sym_assert] = ACTIONS(3528), - [anon_sym_defer] = ACTIONS(3528), - [anon_sym_goto] = ACTIONS(3528), - [anon_sym_break] = ACTIONS(3528), - [anon_sym_continue] = ACTIONS(3528), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_DOLLARfor] = ACTIONS(3528), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_POUND] = ACTIONS(3528), - [anon_sym_asm] = ACTIONS(3528), - [anon_sym_AT_LBRACK] = ACTIONS(3528), + [anon_sym_DOT] = ACTIONS(3494), + [anon_sym_as] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(1775), + [anon_sym_COMMA] = ACTIONS(1775), + [anon_sym_const] = ACTIONS(1775), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym___global] = ACTIONS(1775), + [anon_sym_type] = ACTIONS(1775), + [anon_sym_fn] = ACTIONS(1775), + [anon_sym_PLUS] = ACTIONS(3502), + [anon_sym_DASH] = ACTIONS(3502), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_PERCENT] = ACTIONS(3504), + [anon_sym_LT] = ACTIONS(3506), + [anon_sym_GT] = ACTIONS(3506), + [anon_sym_EQ_EQ] = ACTIONS(3506), + [anon_sym_BANG_EQ] = ACTIONS(3506), + [anon_sym_LT_EQ] = ACTIONS(3506), + [anon_sym_GT_EQ] = ACTIONS(3506), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_struct] = ACTIONS(1775), + [anon_sym_union] = ACTIONS(1775), + [anon_sym_pub] = ACTIONS(1775), + [anon_sym_mut] = ACTIONS(1775), + [anon_sym_enum] = ACTIONS(1775), + [anon_sym_interface] = ACTIONS(1775), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3512), + [anon_sym_QMARK] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_go] = ACTIONS(1775), + [anon_sym_spawn] = ACTIONS(1775), + [anon_sym_json_DOTdecode] = ACTIONS(1775), + [anon_sym_PIPE] = ACTIONS(3502), + [anon_sym_LBRACK2] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(3502), + [anon_sym_AMP] = ACTIONS(3504), + [anon_sym_LT_DASH] = ACTIONS(1775), + [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(3520), + [anon_sym_PIPE_PIPE] = ACTIONS(3522), + [anon_sym_or] = ACTIONS(3524), + [sym_none] = ACTIONS(1775), + [sym_true] = ACTIONS(1775), + [sym_false] = ACTIONS(1775), + [sym_nil] = ACTIONS(1775), + [anon_sym_QMARK_DOT] = ACTIONS(3494), + [anon_sym_POUND_LBRACK] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(1775), + [anon_sym_DOLLARif] = ACTIONS(1775), + [anon_sym_is] = ACTIONS(3526), + [anon_sym_BANGis] = ACTIONS(3526), + [anon_sym_in] = ACTIONS(3528), + [anon_sym_BANGin] = ACTIONS(3528), + [anon_sym_match] = ACTIONS(1775), + [anon_sym_select] = ACTIONS(1775), + [anon_sym_lock] = ACTIONS(1775), + [anon_sym_rlock] = ACTIONS(1775), + [anon_sym_unsafe] = ACTIONS(1775), + [anon_sym_sql] = ACTIONS(1775), + [sym_int_literal] = ACTIONS(1775), + [sym_float_literal] = ACTIONS(1775), + [sym_rune_literal] = ACTIONS(1775), + [anon_sym_SQUOTE] = ACTIONS(1775), + [anon_sym_DQUOTE] = ACTIONS(1775), + [anon_sym_c_SQUOTE] = ACTIONS(1775), + [anon_sym_c_DQUOTE] = ACTIONS(1775), + [anon_sym_r_SQUOTE] = ACTIONS(1775), + [anon_sym_r_DQUOTE] = ACTIONS(1775), + [sym_pseudo_compile_time_identifier] = ACTIONS(1775), + [anon_sym_shared] = ACTIONS(1775), + [anon_sym_map_LBRACK] = ACTIONS(1775), + [anon_sym_chan] = ACTIONS(1775), + [anon_sym_thread] = ACTIONS(1775), + [anon_sym_atomic] = ACTIONS(1775), + [anon_sym_assert] = ACTIONS(1775), + [anon_sym_defer] = ACTIONS(1775), + [anon_sym_goto] = ACTIONS(1775), + [anon_sym_break] = ACTIONS(1775), + [anon_sym_continue] = ACTIONS(1775), + [anon_sym_return] = ACTIONS(1775), + [anon_sym_DOLLARfor] = ACTIONS(1775), + [anon_sym_for] = ACTIONS(1775), + [anon_sym_POUND] = ACTIONS(1775), + [anon_sym_asm] = ACTIONS(1775), + [anon_sym_AT_LBRACK] = ACTIONS(1775), }, - [956] = { - [sym_line_comment] = STATE(956), - [sym_block_comment] = STATE(956), - [sym_type_parameters] = STATE(4197), - [sym_argument_list] = STATE(1001), - [sym_or_block] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1791), - [anon_sym_LF] = ACTIONS(1791), - [anon_sym_CR] = ACTIONS(1791), - [anon_sym_CR_LF] = ACTIONS(1791), + [960] = { + [sym_line_comment] = STATE(960), + [sym_block_comment] = STATE(960), + [sym_type_parameters] = STATE(4208), + [sym_argument_list] = STATE(1044), + [sym_or_block] = STATE(1043), + [ts_builtin_sym_end] = ACTIONS(1769), + [sym_identifier] = ACTIONS(1771), + [anon_sym_LF] = ACTIONS(1771), + [anon_sym_CR] = ACTIONS(1771), + [anon_sym_CR_LF] = ACTIONS(1771), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3490), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym___global] = ACTIONS(1791), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(3498), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(3498), - [anon_sym_DASH] = ACTIONS(3498), - [anon_sym_STAR] = ACTIONS(3500), - [anon_sym_SLASH] = ACTIONS(3500), - [anon_sym_PERCENT] = ACTIONS(3500), - [anon_sym_LT] = ACTIONS(3502), - [anon_sym_GT] = ACTIONS(3502), - [anon_sym_EQ_EQ] = ACTIONS(3502), - [anon_sym_BANG_EQ] = ACTIONS(3502), - [anon_sym_LT_EQ] = ACTIONS(3502), - [anon_sym_GT_EQ] = ACTIONS(3502), - [anon_sym_LBRACK] = ACTIONS(3504), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_union] = ACTIONS(1791), - [anon_sym_pub] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [anon_sym_interface] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3512), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1791), - [anon_sym_LBRACK2] = ACTIONS(3514), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(3498), - [anon_sym_AMP] = ACTIONS(3500), - [anon_sym_LT_DASH] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(3500), - [anon_sym_GT_GT] = ACTIONS(3500), - [anon_sym_GT_GT_GT] = ACTIONS(3500), - [anon_sym_AMP_CARET] = ACTIONS(3500), - [anon_sym_AMP_AMP] = ACTIONS(3516), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(3490), - [anon_sym_POUND_LBRACK] = ACTIONS(3514), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1791), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_BANGin] = ACTIONS(3524), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1791), - [sym_rune_literal] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(1791), - [anon_sym_c_SQUOTE] = ACTIONS(1791), - [anon_sym_c_DQUOTE] = ACTIONS(1791), - [anon_sym_r_SQUOTE] = ACTIONS(1791), - [anon_sym_r_DQUOTE] = ACTIONS(1791), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1791), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), - [anon_sym_assert] = ACTIONS(1791), - [anon_sym_defer] = ACTIONS(1791), - [anon_sym_goto] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_DOLLARfor] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_POUND] = ACTIONS(1791), - [anon_sym_asm] = ACTIONS(1791), - [anon_sym_AT_LBRACK] = ACTIONS(1791), + [anon_sym_DOT] = ACTIONS(3494), + [anon_sym_as] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_COMMA] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym___global] = ACTIONS(1771), + [anon_sym_type] = ACTIONS(1771), + [anon_sym_fn] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1771), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_SLASH] = ACTIONS(1771), + [anon_sym_PERCENT] = ACTIONS(1771), + [anon_sym_LT] = ACTIONS(1771), + [anon_sym_GT] = ACTIONS(1771), + [anon_sym_EQ_EQ] = ACTIONS(1771), + [anon_sym_BANG_EQ] = ACTIONS(1771), + [anon_sym_LT_EQ] = ACTIONS(1771), + [anon_sym_GT_EQ] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_struct] = ACTIONS(1771), + [anon_sym_union] = ACTIONS(1771), + [anon_sym_pub] = ACTIONS(1771), + [anon_sym_mut] = ACTIONS(1771), + [anon_sym_enum] = ACTIONS(1771), + [anon_sym_interface] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_QMARK] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_go] = ACTIONS(1771), + [anon_sym_spawn] = ACTIONS(1771), + [anon_sym_json_DOTdecode] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_LBRACK2] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_LT_DASH] = ACTIONS(1771), + [anon_sym_LT_LT] = ACTIONS(1771), + [anon_sym_GT_GT] = ACTIONS(1771), + [anon_sym_GT_GT_GT] = ACTIONS(1771), + [anon_sym_AMP_CARET] = ACTIONS(1771), + [anon_sym_AMP_AMP] = ACTIONS(1771), + [anon_sym_PIPE_PIPE] = ACTIONS(1771), + [anon_sym_or] = ACTIONS(1771), + [sym_none] = ACTIONS(1771), + [sym_true] = ACTIONS(1771), + [sym_false] = ACTIONS(1771), + [sym_nil] = ACTIONS(1771), + [anon_sym_QMARK_DOT] = ACTIONS(3494), + [anon_sym_POUND_LBRACK] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_DOLLARif] = ACTIONS(1771), + [anon_sym_is] = ACTIONS(1771), + [anon_sym_BANGis] = ACTIONS(1771), + [anon_sym_in] = ACTIONS(1771), + [anon_sym_BANGin] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_select] = ACTIONS(1771), + [anon_sym_lock] = ACTIONS(1771), + [anon_sym_rlock] = ACTIONS(1771), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1771), + [sym_int_literal] = ACTIONS(1771), + [sym_float_literal] = ACTIONS(1771), + [sym_rune_literal] = ACTIONS(1771), + [anon_sym_SQUOTE] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [anon_sym_c_SQUOTE] = ACTIONS(1771), + [anon_sym_c_DQUOTE] = ACTIONS(1771), + [anon_sym_r_SQUOTE] = ACTIONS(1771), + [anon_sym_r_DQUOTE] = ACTIONS(1771), + [sym_pseudo_compile_time_identifier] = ACTIONS(1771), + [anon_sym_shared] = ACTIONS(1771), + [anon_sym_map_LBRACK] = ACTIONS(1771), + [anon_sym_chan] = ACTIONS(1771), + [anon_sym_thread] = ACTIONS(1771), + [anon_sym_atomic] = ACTIONS(1771), + [anon_sym_assert] = ACTIONS(1771), + [anon_sym_defer] = ACTIONS(1771), + [anon_sym_goto] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_DOLLARfor] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(1771), + [anon_sym_asm] = ACTIONS(1771), + [anon_sym_AT_LBRACK] = ACTIONS(1771), }, - [957] = { - [sym_line_comment] = STATE(957), - [sym_block_comment] = STATE(957), - [sym_type_parameters] = STATE(4197), - [sym_argument_list] = STATE(1001), - [sym_or_block] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(1767), - [sym_identifier] = ACTIONS(1769), - [anon_sym_LF] = ACTIONS(1769), - [anon_sym_CR] = ACTIONS(1769), - [anon_sym_CR_LF] = ACTIONS(1769), + [961] = { + [sym_line_comment] = STATE(961), + [sym_block_comment] = STATE(961), + [sym_type_parameters] = STATE(4208), + [sym_argument_list] = STATE(1044), + [sym_or_block] = STATE(1043), + [ts_builtin_sym_end] = ACTIONS(3530), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LF] = ACTIONS(1657), + [anon_sym_CR] = ACTIONS(1657), + [anon_sym_CR_LF] = ACTIONS(1657), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3490), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_COMMA] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym___global] = ACTIONS(1769), - [anon_sym_type] = ACTIONS(1769), - [anon_sym_PIPE] = ACTIONS(1769), - [anon_sym_fn] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_STAR] = ACTIONS(1769), - [anon_sym_SLASH] = ACTIONS(1769), - [anon_sym_PERCENT] = ACTIONS(1769), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1769), - [anon_sym_EQ_EQ] = ACTIONS(1769), - [anon_sym_BANG_EQ] = ACTIONS(1769), - [anon_sym_LT_EQ] = ACTIONS(1769), - [anon_sym_GT_EQ] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(3504), - [anon_sym_struct] = ACTIONS(1769), - [anon_sym_union] = ACTIONS(1769), - [anon_sym_pub] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_enum] = ACTIONS(1769), - [anon_sym_interface] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3512), - [anon_sym_go] = ACTIONS(1769), - [anon_sym_spawn] = ACTIONS(1769), - [anon_sym_json_DOTdecode] = ACTIONS(1769), - [anon_sym_LBRACK2] = ACTIONS(3514), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_CARET] = ACTIONS(1769), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_LT_DASH] = ACTIONS(1769), - [anon_sym_LT_LT] = ACTIONS(1769), - [anon_sym_GT_GT] = ACTIONS(1769), - [anon_sym_GT_GT_GT] = ACTIONS(1769), - [anon_sym_AMP_CARET] = ACTIONS(1769), - [anon_sym_AMP_AMP] = ACTIONS(1769), - [anon_sym_PIPE_PIPE] = ACTIONS(1769), - [anon_sym_or] = ACTIONS(1769), - [sym_none] = ACTIONS(1769), - [sym_true] = ACTIONS(1769), - [sym_false] = ACTIONS(1769), - [sym_nil] = ACTIONS(1769), - [anon_sym_QMARK_DOT] = ACTIONS(3490), - [anon_sym_POUND_LBRACK] = ACTIONS(3514), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_DOLLARif] = ACTIONS(1769), - [anon_sym_is] = ACTIONS(1769), - [anon_sym_BANGis] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_BANGin] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_select] = ACTIONS(1769), - [anon_sym_lock] = ACTIONS(1769), - [anon_sym_rlock] = ACTIONS(1769), - [anon_sym_unsafe] = ACTIONS(1769), - [anon_sym_sql] = ACTIONS(1769), - [sym_int_literal] = ACTIONS(1769), - [sym_float_literal] = ACTIONS(1769), - [sym_rune_literal] = ACTIONS(1769), - [anon_sym_SQUOTE] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1769), - [anon_sym_c_SQUOTE] = ACTIONS(1769), - [anon_sym_c_DQUOTE] = ACTIONS(1769), - [anon_sym_r_SQUOTE] = ACTIONS(1769), - [anon_sym_r_DQUOTE] = ACTIONS(1769), - [sym_pseudo_compile_time_identifier] = ACTIONS(1769), - [anon_sym_shared] = ACTIONS(1769), - [anon_sym_map_LBRACK] = ACTIONS(1769), - [anon_sym_chan] = ACTIONS(1769), - [anon_sym_thread] = ACTIONS(1769), - [anon_sym_atomic] = ACTIONS(1769), - [anon_sym_assert] = ACTIONS(1769), - [anon_sym_defer] = ACTIONS(1769), - [anon_sym_goto] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_DOLLARfor] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(1769), - [anon_sym_asm] = ACTIONS(1769), - [anon_sym_AT_LBRACK] = ACTIONS(1769), + [anon_sym_DOT] = ACTIONS(3494), + [anon_sym_as] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_COMMA] = ACTIONS(1657), + [anon_sym_const] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym___global] = ACTIONS(1657), + [anon_sym_type] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(3502), + [anon_sym_DASH] = ACTIONS(3502), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_PERCENT] = ACTIONS(3504), + [anon_sym_LT] = ACTIONS(3506), + [anon_sym_GT] = ACTIONS(3506), + [anon_sym_EQ_EQ] = ACTIONS(3506), + [anon_sym_BANG_EQ] = ACTIONS(3506), + [anon_sym_LT_EQ] = ACTIONS(3506), + [anon_sym_GT_EQ] = ACTIONS(3506), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_struct] = ACTIONS(1657), + [anon_sym_union] = ACTIONS(1657), + [anon_sym_pub] = ACTIONS(1657), + [anon_sym_mut] = ACTIONS(1657), + [anon_sym_enum] = ACTIONS(1657), + [anon_sym_interface] = ACTIONS(1657), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3512), + [anon_sym_QMARK] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_go] = ACTIONS(1657), + [anon_sym_spawn] = ACTIONS(1657), + [anon_sym_json_DOTdecode] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(3502), + [anon_sym_LBRACK2] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(1657), + [anon_sym_CARET] = ACTIONS(3502), + [anon_sym_AMP] = ACTIONS(3504), + [anon_sym_LT_DASH] = ACTIONS(1657), + [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(3520), + [anon_sym_PIPE_PIPE] = ACTIONS(3522), + [anon_sym_or] = ACTIONS(3524), + [sym_none] = ACTIONS(1657), + [sym_true] = ACTIONS(1657), + [sym_false] = ACTIONS(1657), + [sym_nil] = ACTIONS(1657), + [anon_sym_QMARK_DOT] = ACTIONS(3494), + [anon_sym_POUND_LBRACK] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(1657), + [anon_sym_DOLLARif] = ACTIONS(1657), + [anon_sym_is] = ACTIONS(3526), + [anon_sym_BANGis] = ACTIONS(3526), + [anon_sym_in] = ACTIONS(3528), + [anon_sym_BANGin] = ACTIONS(3528), + [anon_sym_match] = ACTIONS(1657), + [anon_sym_select] = ACTIONS(1657), + [anon_sym_lock] = ACTIONS(1657), + [anon_sym_rlock] = ACTIONS(1657), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1657), + [sym_int_literal] = ACTIONS(1657), + [sym_float_literal] = ACTIONS(1657), + [sym_rune_literal] = ACTIONS(1657), + [anon_sym_SQUOTE] = ACTIONS(1657), + [anon_sym_DQUOTE] = ACTIONS(1657), + [anon_sym_c_SQUOTE] = ACTIONS(1657), + [anon_sym_c_DQUOTE] = ACTIONS(1657), + [anon_sym_r_SQUOTE] = ACTIONS(1657), + [anon_sym_r_DQUOTE] = ACTIONS(1657), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(1657), + [anon_sym_map_LBRACK] = ACTIONS(1657), + [anon_sym_chan] = ACTIONS(1657), + [anon_sym_thread] = ACTIONS(1657), + [anon_sym_atomic] = ACTIONS(1657), + [anon_sym_assert] = ACTIONS(1657), + [anon_sym_defer] = ACTIONS(1657), + [anon_sym_goto] = ACTIONS(1657), + [anon_sym_break] = ACTIONS(1657), + [anon_sym_continue] = ACTIONS(1657), + [anon_sym_return] = ACTIONS(1657), + [anon_sym_DOLLARfor] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1657), + [anon_sym_POUND] = ACTIONS(1657), + [anon_sym_asm] = ACTIONS(1657), + [anon_sym_AT_LBRACK] = ACTIONS(1657), }, - [958] = { - [sym_line_comment] = STATE(958), - [sym_block_comment] = STATE(958), - [sym_type_parameters] = STATE(4197), - [sym_argument_list] = STATE(1001), - [sym_or_block] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(1785), - [sym_identifier] = ACTIONS(1787), - [anon_sym_LF] = ACTIONS(1787), - [anon_sym_CR] = ACTIONS(1787), - [anon_sym_CR_LF] = ACTIONS(1787), + [962] = { + [sym_line_comment] = STATE(962), + [sym_block_comment] = STATE(962), + [sym_type_parameters] = STATE(4208), + [sym_argument_list] = STATE(1044), + [sym_or_block] = STATE(1043), + [ts_builtin_sym_end] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1767), + [anon_sym_LF] = ACTIONS(1767), + [anon_sym_CR] = ACTIONS(1767), + [anon_sym_CR_LF] = ACTIONS(1767), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3490), - [anon_sym_as] = ACTIONS(1787), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_COMMA] = ACTIONS(1787), - [anon_sym_const] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym___global] = ACTIONS(1787), - [anon_sym_type] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(3498), - [anon_sym_fn] = ACTIONS(1787), - [anon_sym_PLUS] = ACTIONS(3498), - [anon_sym_DASH] = ACTIONS(3498), - [anon_sym_STAR] = ACTIONS(3500), - [anon_sym_SLASH] = ACTIONS(3500), - [anon_sym_PERCENT] = ACTIONS(3500), - [anon_sym_LT] = ACTIONS(1787), - [anon_sym_GT] = ACTIONS(1787), - [anon_sym_EQ_EQ] = ACTIONS(1787), - [anon_sym_BANG_EQ] = ACTIONS(1787), - [anon_sym_LT_EQ] = ACTIONS(1787), - [anon_sym_GT_EQ] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(3504), - [anon_sym_struct] = ACTIONS(1787), - [anon_sym_union] = ACTIONS(1787), - [anon_sym_pub] = ACTIONS(1787), - [anon_sym_mut] = ACTIONS(1787), - [anon_sym_enum] = ACTIONS(1787), - [anon_sym_interface] = ACTIONS(1787), - [anon_sym_PLUS_PLUS] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3512), - [anon_sym_go] = ACTIONS(1787), - [anon_sym_spawn] = ACTIONS(1787), - [anon_sym_json_DOTdecode] = ACTIONS(1787), - [anon_sym_LBRACK2] = ACTIONS(3514), - [anon_sym_TILDE] = ACTIONS(1787), - [anon_sym_CARET] = ACTIONS(3498), - [anon_sym_AMP] = ACTIONS(3500), - [anon_sym_LT_DASH] = ACTIONS(1787), - [anon_sym_LT_LT] = ACTIONS(3500), - [anon_sym_GT_GT] = ACTIONS(3500), - [anon_sym_GT_GT_GT] = ACTIONS(3500), - [anon_sym_AMP_CARET] = ACTIONS(3500), - [anon_sym_AMP_AMP] = ACTIONS(1787), - [anon_sym_PIPE_PIPE] = ACTIONS(1787), - [anon_sym_or] = ACTIONS(1787), - [sym_none] = ACTIONS(1787), - [sym_true] = ACTIONS(1787), - [sym_false] = ACTIONS(1787), - [sym_nil] = ACTIONS(1787), - [anon_sym_QMARK_DOT] = ACTIONS(3490), - [anon_sym_POUND_LBRACK] = ACTIONS(3514), - [anon_sym_if] = ACTIONS(1787), - [anon_sym_DOLLARif] = ACTIONS(1787), - [anon_sym_is] = ACTIONS(1787), - [anon_sym_BANGis] = ACTIONS(1787), - [anon_sym_in] = ACTIONS(1787), - [anon_sym_BANGin] = ACTIONS(1787), - [anon_sym_match] = ACTIONS(1787), - [anon_sym_select] = ACTIONS(1787), - [anon_sym_lock] = ACTIONS(1787), - [anon_sym_rlock] = ACTIONS(1787), - [anon_sym_unsafe] = ACTIONS(1787), - [anon_sym_sql] = ACTIONS(1787), - [sym_int_literal] = ACTIONS(1787), - [sym_float_literal] = ACTIONS(1787), - [sym_rune_literal] = ACTIONS(1787), - [anon_sym_SQUOTE] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [anon_sym_c_SQUOTE] = ACTIONS(1787), - [anon_sym_c_DQUOTE] = ACTIONS(1787), - [anon_sym_r_SQUOTE] = ACTIONS(1787), - [anon_sym_r_DQUOTE] = ACTIONS(1787), - [sym_pseudo_compile_time_identifier] = ACTIONS(1787), - [anon_sym_shared] = ACTIONS(1787), - [anon_sym_map_LBRACK] = ACTIONS(1787), - [anon_sym_chan] = ACTIONS(1787), - [anon_sym_thread] = ACTIONS(1787), - [anon_sym_atomic] = ACTIONS(1787), - [anon_sym_assert] = ACTIONS(1787), - [anon_sym_defer] = ACTIONS(1787), - [anon_sym_goto] = ACTIONS(1787), - [anon_sym_break] = ACTIONS(1787), - [anon_sym_continue] = ACTIONS(1787), - [anon_sym_return] = ACTIONS(1787), - [anon_sym_DOLLARfor] = ACTIONS(1787), - [anon_sym_for] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(1787), - [anon_sym_asm] = ACTIONS(1787), - [anon_sym_AT_LBRACK] = ACTIONS(1787), + [anon_sym_DOT] = ACTIONS(3494), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_COMMA] = ACTIONS(1767), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym___global] = ACTIONS(1767), + [anon_sym_type] = ACTIONS(1767), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(3502), + [anon_sym_DASH] = ACTIONS(3502), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_PERCENT] = ACTIONS(3504), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_EQ_EQ] = ACTIONS(1767), + [anon_sym_BANG_EQ] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_union] = ACTIONS(1767), + [anon_sym_pub] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_enum] = ACTIONS(1767), + [anon_sym_interface] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(3502), + [anon_sym_LBRACK2] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_CARET] = ACTIONS(3502), + [anon_sym_AMP] = ACTIONS(3504), + [anon_sym_LT_DASH] = ACTIONS(1767), + [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(1767), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(3494), + [anon_sym_POUND_LBRACK] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1767), + [anon_sym_in] = ACTIONS(1767), + [anon_sym_BANGin] = ACTIONS(1767), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1767), + [sym_rune_literal] = ACTIONS(1767), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_c_SQUOTE] = ACTIONS(1767), + [anon_sym_c_DQUOTE] = ACTIONS(1767), + [anon_sym_r_SQUOTE] = ACTIONS(1767), + [anon_sym_r_DQUOTE] = ACTIONS(1767), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1767), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), + [anon_sym_assert] = ACTIONS(1767), + [anon_sym_defer] = ACTIONS(1767), + [anon_sym_goto] = ACTIONS(1767), + [anon_sym_break] = ACTIONS(1767), + [anon_sym_continue] = ACTIONS(1767), + [anon_sym_return] = ACTIONS(1767), + [anon_sym_DOLLARfor] = ACTIONS(1767), + [anon_sym_for] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(1767), + [anon_sym_asm] = ACTIONS(1767), + [anon_sym_AT_LBRACK] = ACTIONS(1767), }, - [959] = { - [sym_line_comment] = STATE(959), - [sym_block_comment] = STATE(959), - [sym_type_parameters] = STATE(4197), - [sym_argument_list] = STATE(1001), - [sym_or_block] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(1771), - [sym_identifier] = ACTIONS(1773), - [anon_sym_LF] = ACTIONS(1773), - [anon_sym_CR] = ACTIONS(1773), - [anon_sym_CR_LF] = ACTIONS(1773), + [963] = { + [sym_line_comment] = STATE(963), + [sym_block_comment] = STATE(963), + [sym_type_parameters] = STATE(4208), + [sym_argument_list] = STATE(1044), + [sym_or_block] = STATE(1043), + [ts_builtin_sym_end] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1767), + [anon_sym_LF] = ACTIONS(1767), + [anon_sym_CR] = ACTIONS(1767), + [anon_sym_CR_LF] = ACTIONS(1767), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3490), - [anon_sym_as] = ACTIONS(3492), - [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_COMMA] = ACTIONS(1773), - [anon_sym_const] = ACTIONS(1773), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym___global] = ACTIONS(1773), - [anon_sym_type] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(3498), - [anon_sym_fn] = ACTIONS(1773), - [anon_sym_PLUS] = ACTIONS(3498), - [anon_sym_DASH] = ACTIONS(3498), - [anon_sym_STAR] = ACTIONS(3500), - [anon_sym_SLASH] = ACTIONS(3500), - [anon_sym_PERCENT] = ACTIONS(3500), - [anon_sym_LT] = ACTIONS(3502), - [anon_sym_GT] = ACTIONS(3502), - [anon_sym_EQ_EQ] = ACTIONS(3502), - [anon_sym_BANG_EQ] = ACTIONS(3502), - [anon_sym_LT_EQ] = ACTIONS(3502), - [anon_sym_GT_EQ] = ACTIONS(3502), - [anon_sym_LBRACK] = ACTIONS(3504), - [anon_sym_struct] = ACTIONS(1773), - [anon_sym_union] = ACTIONS(1773), - [anon_sym_pub] = ACTIONS(1773), - [anon_sym_mut] = ACTIONS(1773), - [anon_sym_enum] = ACTIONS(1773), - [anon_sym_interface] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(3506), - [anon_sym_DASH_DASH] = ACTIONS(3508), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3512), - [anon_sym_go] = ACTIONS(1773), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1773), - [anon_sym_LBRACK2] = ACTIONS(3514), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(3498), - [anon_sym_AMP] = ACTIONS(3500), - [anon_sym_LT_DASH] = ACTIONS(1773), - [anon_sym_LT_LT] = ACTIONS(3500), - [anon_sym_GT_GT] = ACTIONS(3500), - [anon_sym_GT_GT_GT] = ACTIONS(3500), - [anon_sym_AMP_CARET] = ACTIONS(3500), - [anon_sym_AMP_AMP] = ACTIONS(3516), - [anon_sym_PIPE_PIPE] = ACTIONS(3518), - [anon_sym_or] = ACTIONS(3520), - [sym_none] = ACTIONS(1773), - [sym_true] = ACTIONS(1773), - [sym_false] = ACTIONS(1773), - [sym_nil] = ACTIONS(1773), - [anon_sym_QMARK_DOT] = ACTIONS(3490), - [anon_sym_POUND_LBRACK] = ACTIONS(3514), - [anon_sym_if] = ACTIONS(1773), - [anon_sym_DOLLARif] = ACTIONS(1773), - [anon_sym_is] = ACTIONS(3532), - [anon_sym_BANGis] = ACTIONS(3532), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_BANGin] = ACTIONS(3524), - [anon_sym_match] = ACTIONS(1773), - [anon_sym_select] = ACTIONS(1773), - [anon_sym_lock] = ACTIONS(1773), - [anon_sym_rlock] = ACTIONS(1773), - [anon_sym_unsafe] = ACTIONS(1773), - [anon_sym_sql] = ACTIONS(1773), - [sym_int_literal] = ACTIONS(1773), - [sym_float_literal] = ACTIONS(1773), - [sym_rune_literal] = ACTIONS(1773), - [anon_sym_SQUOTE] = ACTIONS(1773), - [anon_sym_DQUOTE] = ACTIONS(1773), - [anon_sym_c_SQUOTE] = ACTIONS(1773), - [anon_sym_c_DQUOTE] = ACTIONS(1773), - [anon_sym_r_SQUOTE] = ACTIONS(1773), - [anon_sym_r_DQUOTE] = ACTIONS(1773), - [sym_pseudo_compile_time_identifier] = ACTIONS(1773), - [anon_sym_shared] = ACTIONS(1773), - [anon_sym_map_LBRACK] = ACTIONS(1773), - [anon_sym_chan] = ACTIONS(1773), - [anon_sym_thread] = ACTIONS(1773), - [anon_sym_atomic] = ACTIONS(1773), - [anon_sym_assert] = ACTIONS(1773), - [anon_sym_defer] = ACTIONS(1773), - [anon_sym_goto] = ACTIONS(1773), - [anon_sym_break] = ACTIONS(1773), - [anon_sym_continue] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(1773), - [anon_sym_DOLLARfor] = ACTIONS(1773), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_POUND] = ACTIONS(1773), - [anon_sym_asm] = ACTIONS(1773), - [anon_sym_AT_LBRACK] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(3494), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_COMMA] = ACTIONS(1767), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym___global] = ACTIONS(1767), + [anon_sym_type] = ACTIONS(1767), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(3502), + [anon_sym_DASH] = ACTIONS(3502), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_PERCENT] = ACTIONS(3504), + [anon_sym_LT] = ACTIONS(3506), + [anon_sym_GT] = ACTIONS(3506), + [anon_sym_EQ_EQ] = ACTIONS(3506), + [anon_sym_BANG_EQ] = ACTIONS(3506), + [anon_sym_LT_EQ] = ACTIONS(3506), + [anon_sym_GT_EQ] = ACTIONS(3506), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_union] = ACTIONS(1767), + [anon_sym_pub] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_enum] = ACTIONS(1767), + [anon_sym_interface] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(3502), + [anon_sym_LBRACK2] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_CARET] = ACTIONS(3502), + [anon_sym_AMP] = ACTIONS(3504), + [anon_sym_LT_DASH] = ACTIONS(1767), + [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(1767), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(3494), + [anon_sym_POUND_LBRACK] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1767), + [anon_sym_in] = ACTIONS(3528), + [anon_sym_BANGin] = ACTIONS(3528), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1767), + [sym_rune_literal] = ACTIONS(1767), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_c_SQUOTE] = ACTIONS(1767), + [anon_sym_c_DQUOTE] = ACTIONS(1767), + [anon_sym_r_SQUOTE] = ACTIONS(1767), + [anon_sym_r_DQUOTE] = ACTIONS(1767), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1767), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), + [anon_sym_assert] = ACTIONS(1767), + [anon_sym_defer] = ACTIONS(1767), + [anon_sym_goto] = ACTIONS(1767), + [anon_sym_break] = ACTIONS(1767), + [anon_sym_continue] = ACTIONS(1767), + [anon_sym_return] = ACTIONS(1767), + [anon_sym_DOLLARfor] = ACTIONS(1767), + [anon_sym_for] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(1767), + [anon_sym_asm] = ACTIONS(1767), + [anon_sym_AT_LBRACK] = ACTIONS(1767), }, - [960] = { - [sym_line_comment] = STATE(960), - [sym_block_comment] = STATE(960), - [sym_type_parameters] = STATE(4197), - [sym_argument_list] = STATE(1001), - [sym_or_block] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1765), - [anon_sym_CR] = ACTIONS(1765), - [anon_sym_CR_LF] = ACTIONS(1765), + [964] = { + [sym_line_comment] = STATE(964), + [sym_block_comment] = STATE(964), + [sym_type_parameters] = STATE(4208), + [sym_argument_list] = STATE(1044), + [sym_or_block] = STATE(1043), + [ts_builtin_sym_end] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1767), + [anon_sym_LF] = ACTIONS(1767), + [anon_sym_CR] = ACTIONS(1767), + [anon_sym_CR_LF] = ACTIONS(1767), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3490), - [anon_sym_as] = ACTIONS(3492), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym___global] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(3498), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(3498), - [anon_sym_DASH] = ACTIONS(3498), - [anon_sym_STAR] = ACTIONS(3500), - [anon_sym_SLASH] = ACTIONS(3500), - [anon_sym_PERCENT] = ACTIONS(3500), - [anon_sym_LT] = ACTIONS(3502), - [anon_sym_GT] = ACTIONS(3502), - [anon_sym_EQ_EQ] = ACTIONS(3502), - [anon_sym_BANG_EQ] = ACTIONS(3502), - [anon_sym_LT_EQ] = ACTIONS(3502), - [anon_sym_GT_EQ] = ACTIONS(3502), - [anon_sym_LBRACK] = ACTIONS(3504), - [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(3506), - [anon_sym_DASH_DASH] = ACTIONS(3508), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3512), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1765), - [anon_sym_LBRACK2] = ACTIONS(3514), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(3498), - [anon_sym_AMP] = ACTIONS(3500), - [anon_sym_LT_DASH] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(3500), - [anon_sym_GT_GT] = ACTIONS(3500), - [anon_sym_GT_GT_GT] = ACTIONS(3500), - [anon_sym_AMP_CARET] = ACTIONS(3500), - [anon_sym_AMP_AMP] = ACTIONS(3516), - [anon_sym_PIPE_PIPE] = ACTIONS(3518), - [anon_sym_or] = ACTIONS(3520), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3490), - [anon_sym_POUND_LBRACK] = ACTIONS(3514), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(3522), - [anon_sym_BANGis] = ACTIONS(3522), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_BANGin] = ACTIONS(3524), - [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), - [anon_sym_SQUOTE] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [anon_sym_c_SQUOTE] = ACTIONS(1765), - [anon_sym_c_DQUOTE] = ACTIONS(1765), - [anon_sym_r_SQUOTE] = ACTIONS(1765), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(3494), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_COMMA] = ACTIONS(1767), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym___global] = ACTIONS(1767), + [anon_sym_type] = ACTIONS(1767), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(3502), + [anon_sym_DASH] = ACTIONS(3502), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_PERCENT] = ACTIONS(3504), + [anon_sym_LT] = ACTIONS(3506), + [anon_sym_GT] = ACTIONS(3506), + [anon_sym_EQ_EQ] = ACTIONS(3506), + [anon_sym_BANG_EQ] = ACTIONS(3506), + [anon_sym_LT_EQ] = ACTIONS(3506), + [anon_sym_GT_EQ] = ACTIONS(3506), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_union] = ACTIONS(1767), + [anon_sym_pub] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_enum] = ACTIONS(1767), + [anon_sym_interface] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(3502), + [anon_sym_LBRACK2] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_CARET] = ACTIONS(3502), + [anon_sym_AMP] = ACTIONS(3504), + [anon_sym_LT_DASH] = ACTIONS(1767), + [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(3520), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(3494), + [anon_sym_POUND_LBRACK] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1767), + [anon_sym_in] = ACTIONS(3528), + [anon_sym_BANGin] = ACTIONS(3528), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1767), + [sym_rune_literal] = ACTIONS(1767), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_c_SQUOTE] = ACTIONS(1767), + [anon_sym_c_DQUOTE] = ACTIONS(1767), + [anon_sym_r_SQUOTE] = ACTIONS(1767), + [anon_sym_r_DQUOTE] = ACTIONS(1767), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1767), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), + [anon_sym_assert] = ACTIONS(1767), + [anon_sym_defer] = ACTIONS(1767), + [anon_sym_goto] = ACTIONS(1767), + [anon_sym_break] = ACTIONS(1767), + [anon_sym_continue] = ACTIONS(1767), + [anon_sym_return] = ACTIONS(1767), + [anon_sym_DOLLARfor] = ACTIONS(1767), + [anon_sym_for] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(1767), + [anon_sym_asm] = ACTIONS(1767), + [anon_sym_AT_LBRACK] = ACTIONS(1767), }, - [961] = { - [sym_line_comment] = STATE(961), - [sym_block_comment] = STATE(961), - [sym_type_parameters] = STATE(4197), - [sym_argument_list] = STATE(1001), - [sym_or_block] = STATE(1000), + [965] = { + [sym_line_comment] = STATE(965), + [sym_block_comment] = STATE(965), + [sym_type_parameters] = STATE(4208), + [sym_argument_list] = STATE(1044), + [sym_or_block] = STATE(1043), + [ts_builtin_sym_end] = ACTIONS(1791), + [sym_identifier] = ACTIONS(1793), + [anon_sym_LF] = ACTIONS(1793), + [anon_sym_CR] = ACTIONS(1793), + [anon_sym_CR_LF] = ACTIONS(1793), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3494), + [anon_sym_as] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_COMMA] = ACTIONS(1793), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym___global] = ACTIONS(1793), + [anon_sym_type] = ACTIONS(1793), + [anon_sym_fn] = ACTIONS(1793), + [anon_sym_PLUS] = ACTIONS(3502), + [anon_sym_DASH] = ACTIONS(3502), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_PERCENT] = ACTIONS(3504), + [anon_sym_LT] = ACTIONS(1793), + [anon_sym_GT] = ACTIONS(1793), + [anon_sym_EQ_EQ] = ACTIONS(1793), + [anon_sym_BANG_EQ] = ACTIONS(1793), + [anon_sym_LT_EQ] = ACTIONS(1793), + [anon_sym_GT_EQ] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_struct] = ACTIONS(1793), + [anon_sym_union] = ACTIONS(1793), + [anon_sym_pub] = ACTIONS(1793), + [anon_sym_mut] = ACTIONS(1793), + [anon_sym_enum] = ACTIONS(1793), + [anon_sym_interface] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_go] = ACTIONS(1793), + [anon_sym_spawn] = ACTIONS(1793), + [anon_sym_json_DOTdecode] = ACTIONS(1793), + [anon_sym_PIPE] = ACTIONS(3502), + [anon_sym_LBRACK2] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_CARET] = ACTIONS(3502), + [anon_sym_AMP] = ACTIONS(3504), + [anon_sym_LT_DASH] = ACTIONS(1793), + [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(1793), + [anon_sym_PIPE_PIPE] = ACTIONS(1793), + [anon_sym_or] = ACTIONS(1793), + [sym_none] = ACTIONS(1793), + [sym_true] = ACTIONS(1793), + [sym_false] = ACTIONS(1793), + [sym_nil] = ACTIONS(1793), + [anon_sym_QMARK_DOT] = ACTIONS(3494), + [anon_sym_POUND_LBRACK] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1793), + [anon_sym_is] = ACTIONS(1793), + [anon_sym_BANGis] = ACTIONS(1793), + [anon_sym_in] = ACTIONS(1793), + [anon_sym_BANGin] = ACTIONS(1793), + [anon_sym_match] = ACTIONS(1793), + [anon_sym_select] = ACTIONS(1793), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1793), + [anon_sym_sql] = ACTIONS(1793), + [sym_int_literal] = ACTIONS(1793), + [sym_float_literal] = ACTIONS(1793), + [sym_rune_literal] = ACTIONS(1793), + [anon_sym_SQUOTE] = ACTIONS(1793), + [anon_sym_DQUOTE] = ACTIONS(1793), + [anon_sym_c_SQUOTE] = ACTIONS(1793), + [anon_sym_c_DQUOTE] = ACTIONS(1793), + [anon_sym_r_SQUOTE] = ACTIONS(1793), + [anon_sym_r_DQUOTE] = ACTIONS(1793), + [sym_pseudo_compile_time_identifier] = ACTIONS(1793), + [anon_sym_shared] = ACTIONS(1793), + [anon_sym_map_LBRACK] = ACTIONS(1793), + [anon_sym_chan] = ACTIONS(1793), + [anon_sym_thread] = ACTIONS(1793), + [anon_sym_atomic] = ACTIONS(1793), + [anon_sym_assert] = ACTIONS(1793), + [anon_sym_defer] = ACTIONS(1793), + [anon_sym_goto] = ACTIONS(1793), + [anon_sym_break] = ACTIONS(1793), + [anon_sym_continue] = ACTIONS(1793), + [anon_sym_return] = ACTIONS(1793), + [anon_sym_DOLLARfor] = ACTIONS(1793), + [anon_sym_for] = ACTIONS(1793), + [anon_sym_POUND] = ACTIONS(1793), + [anon_sym_asm] = ACTIONS(1793), + [anon_sym_AT_LBRACK] = ACTIONS(1793), + }, + [966] = { + [sym_line_comment] = STATE(966), + [sym_block_comment] = STATE(966), + [sym_type_parameters] = STATE(4208), + [sym_argument_list] = STATE(1044), + [sym_or_block] = STATE(1043), + [ts_builtin_sym_end] = ACTIONS(3532), + [sym_identifier] = ACTIONS(3534), + [anon_sym_LF] = ACTIONS(3534), + [anon_sym_CR] = ACTIONS(3534), + [anon_sym_CR_LF] = ACTIONS(3534), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3494), + [anon_sym_as] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_COMMA] = ACTIONS(3536), + [anon_sym_const] = ACTIONS(3534), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym___global] = ACTIONS(3534), + [anon_sym_type] = ACTIONS(3534), + [anon_sym_fn] = ACTIONS(3534), + [anon_sym_PLUS] = ACTIONS(3502), + [anon_sym_DASH] = ACTIONS(3502), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_PERCENT] = ACTIONS(3504), + [anon_sym_LT] = ACTIONS(3506), + [anon_sym_GT] = ACTIONS(3506), + [anon_sym_EQ_EQ] = ACTIONS(3506), + [anon_sym_BANG_EQ] = ACTIONS(3506), + [anon_sym_LT_EQ] = ACTIONS(3506), + [anon_sym_GT_EQ] = ACTIONS(3506), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_struct] = ACTIONS(3534), + [anon_sym_union] = ACTIONS(3534), + [anon_sym_pub] = ACTIONS(3534), + [anon_sym_mut] = ACTIONS(3534), + [anon_sym_enum] = ACTIONS(3534), + [anon_sym_interface] = ACTIONS(3534), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3512), + [anon_sym_QMARK] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_go] = ACTIONS(3534), + [anon_sym_spawn] = ACTIONS(3534), + [anon_sym_json_DOTdecode] = ACTIONS(3534), + [anon_sym_PIPE] = ACTIONS(3502), + [anon_sym_LBRACK2] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(3534), + [anon_sym_CARET] = ACTIONS(3502), + [anon_sym_AMP] = ACTIONS(3504), + [anon_sym_LT_DASH] = ACTIONS(3534), + [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(3520), + [anon_sym_PIPE_PIPE] = ACTIONS(3522), + [anon_sym_or] = ACTIONS(3524), + [sym_none] = ACTIONS(3534), + [sym_true] = ACTIONS(3534), + [sym_false] = ACTIONS(3534), + [sym_nil] = ACTIONS(3534), + [anon_sym_QMARK_DOT] = ACTIONS(3494), + [anon_sym_POUND_LBRACK] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(3534), + [anon_sym_DOLLARif] = ACTIONS(3534), + [anon_sym_is] = ACTIONS(3526), + [anon_sym_BANGis] = ACTIONS(3526), + [anon_sym_in] = ACTIONS(3528), + [anon_sym_BANGin] = ACTIONS(3528), + [anon_sym_match] = ACTIONS(3534), + [anon_sym_select] = ACTIONS(3534), + [anon_sym_lock] = ACTIONS(3534), + [anon_sym_rlock] = ACTIONS(3534), + [anon_sym_unsafe] = ACTIONS(3534), + [anon_sym_sql] = ACTIONS(3534), + [sym_int_literal] = ACTIONS(3534), + [sym_float_literal] = ACTIONS(3534), + [sym_rune_literal] = ACTIONS(3534), + [anon_sym_SQUOTE] = ACTIONS(3534), + [anon_sym_DQUOTE] = ACTIONS(3534), + [anon_sym_c_SQUOTE] = ACTIONS(3534), + [anon_sym_c_DQUOTE] = ACTIONS(3534), + [anon_sym_r_SQUOTE] = ACTIONS(3534), + [anon_sym_r_DQUOTE] = ACTIONS(3534), + [sym_pseudo_compile_time_identifier] = ACTIONS(3534), + [anon_sym_shared] = ACTIONS(3534), + [anon_sym_map_LBRACK] = ACTIONS(3534), + [anon_sym_chan] = ACTIONS(3534), + [anon_sym_thread] = ACTIONS(3534), + [anon_sym_atomic] = ACTIONS(3534), + [anon_sym_assert] = ACTIONS(3534), + [anon_sym_defer] = ACTIONS(3534), + [anon_sym_goto] = ACTIONS(3534), + [anon_sym_break] = ACTIONS(3534), + [anon_sym_continue] = ACTIONS(3534), + [anon_sym_return] = ACTIONS(3534), + [anon_sym_DOLLARfor] = ACTIONS(3534), + [anon_sym_for] = ACTIONS(3534), + [anon_sym_POUND] = ACTIONS(3534), + [anon_sym_asm] = ACTIONS(3534), + [anon_sym_AT_LBRACK] = ACTIONS(3534), + }, + [967] = { + [sym_line_comment] = STATE(967), + [sym_block_comment] = STATE(967), + [sym_type_parameters] = STATE(4208), + [sym_argument_list] = STATE(1044), + [sym_or_block] = STATE(1043), [ts_builtin_sym_end] = ACTIONS(1781), [sym_identifier] = ACTIONS(1783), [anon_sym_LF] = ACTIONS(1783), @@ -133305,65 +134240,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(1783), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3490), - [anon_sym_as] = ACTIONS(1783), + [anon_sym_DOT] = ACTIONS(3494), + [anon_sym_as] = ACTIONS(3496), [anon_sym_LBRACE] = ACTIONS(1783), [anon_sym_COMMA] = ACTIONS(1783), [anon_sym_const] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym_LPAREN] = ACTIONS(3500), [anon_sym___global] = ACTIONS(1783), [anon_sym_type] = ACTIONS(1783), - [anon_sym_PIPE] = ACTIONS(1783), [anon_sym_fn] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1783), - [anon_sym_SLASH] = ACTIONS(1783), - [anon_sym_PERCENT] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1783), - [anon_sym_GT] = ACTIONS(1783), - [anon_sym_EQ_EQ] = ACTIONS(1783), - [anon_sym_BANG_EQ] = ACTIONS(1783), - [anon_sym_LT_EQ] = ACTIONS(1783), - [anon_sym_GT_EQ] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_PLUS] = ACTIONS(3502), + [anon_sym_DASH] = ACTIONS(3502), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_PERCENT] = ACTIONS(3504), + [anon_sym_LT] = ACTIONS(3506), + [anon_sym_GT] = ACTIONS(3506), + [anon_sym_EQ_EQ] = ACTIONS(3506), + [anon_sym_BANG_EQ] = ACTIONS(3506), + [anon_sym_LT_EQ] = ACTIONS(3506), + [anon_sym_GT_EQ] = ACTIONS(3506), + [anon_sym_LBRACK] = ACTIONS(3508), [anon_sym_struct] = ACTIONS(1783), [anon_sym_union] = ACTIONS(1783), [anon_sym_pub] = ACTIONS(1783), [anon_sym_mut] = ACTIONS(1783), [anon_sym_enum] = ACTIONS(1783), [anon_sym_interface] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3512), + [anon_sym_QMARK] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3516), [anon_sym_go] = ACTIONS(1783), [anon_sym_spawn] = ACTIONS(1783), [anon_sym_json_DOTdecode] = ACTIONS(1783), - [anon_sym_LBRACK2] = ACTIONS(3514), + [anon_sym_PIPE] = ACTIONS(3502), + [anon_sym_LBRACK2] = ACTIONS(3518), [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_CARET] = ACTIONS(3502), + [anon_sym_AMP] = ACTIONS(3504), [anon_sym_LT_DASH] = ACTIONS(1783), - [anon_sym_LT_LT] = ACTIONS(1783), - [anon_sym_GT_GT] = ACTIONS(1783), - [anon_sym_GT_GT_GT] = ACTIONS(1783), - [anon_sym_AMP_CARET] = ACTIONS(1783), - [anon_sym_AMP_AMP] = ACTIONS(1783), - [anon_sym_PIPE_PIPE] = ACTIONS(1783), - [anon_sym_or] = ACTIONS(1783), + [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(3520), + [anon_sym_PIPE_PIPE] = ACTIONS(3522), + [anon_sym_or] = ACTIONS(3524), [sym_none] = ACTIONS(1783), [sym_true] = ACTIONS(1783), [sym_false] = ACTIONS(1783), [sym_nil] = ACTIONS(1783), - [anon_sym_QMARK_DOT] = ACTIONS(3490), - [anon_sym_POUND_LBRACK] = ACTIONS(3514), + [anon_sym_QMARK_DOT] = ACTIONS(3494), + [anon_sym_POUND_LBRACK] = ACTIONS(3518), [anon_sym_if] = ACTIONS(1783), [anon_sym_DOLLARif] = ACTIONS(1783), - [anon_sym_is] = ACTIONS(1783), - [anon_sym_BANGis] = ACTIONS(1783), - [anon_sym_in] = ACTIONS(1783), - [anon_sym_BANGin] = ACTIONS(1783), + [anon_sym_is] = ACTIONS(3538), + [anon_sym_BANGis] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3528), + [anon_sym_BANGin] = ACTIONS(3528), [anon_sym_match] = ACTIONS(1783), [anon_sym_select] = ACTIONS(1783), [anon_sym_lock] = ACTIONS(1783), @@ -133397,535 +134332,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1783), [anon_sym_AT_LBRACK] = ACTIONS(1783), }, - [962] = { - [sym_line_comment] = STATE(962), - [sym_block_comment] = STATE(962), - [sym_type_parameters] = STATE(4197), - [sym_argument_list] = STATE(1001), - [sym_or_block] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(3534), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LF] = ACTIONS(1759), - [anon_sym_CR] = ACTIONS(1759), - [anon_sym_CR_LF] = ACTIONS(1759), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3490), - [anon_sym_as] = ACTIONS(3492), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_COMMA] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym___global] = ACTIONS(1759), - [anon_sym_type] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(3498), - [anon_sym_fn] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(3498), - [anon_sym_DASH] = ACTIONS(3498), - [anon_sym_STAR] = ACTIONS(3500), - [anon_sym_SLASH] = ACTIONS(3500), - [anon_sym_PERCENT] = ACTIONS(3500), - [anon_sym_LT] = ACTIONS(3502), - [anon_sym_GT] = ACTIONS(3502), - [anon_sym_EQ_EQ] = ACTIONS(3502), - [anon_sym_BANG_EQ] = ACTIONS(3502), - [anon_sym_LT_EQ] = ACTIONS(3502), - [anon_sym_GT_EQ] = ACTIONS(3502), - [anon_sym_LBRACK] = ACTIONS(3504), - [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(3506), - [anon_sym_DASH_DASH] = ACTIONS(3508), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3512), - [anon_sym_go] = ACTIONS(1759), - [anon_sym_spawn] = ACTIONS(1759), - [anon_sym_json_DOTdecode] = ACTIONS(1759), - [anon_sym_LBRACK2] = ACTIONS(3514), - [anon_sym_TILDE] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(3498), - [anon_sym_AMP] = ACTIONS(3500), - [anon_sym_LT_DASH] = ACTIONS(1759), - [anon_sym_LT_LT] = ACTIONS(3500), - [anon_sym_GT_GT] = ACTIONS(3500), - [anon_sym_GT_GT_GT] = ACTIONS(3500), - [anon_sym_AMP_CARET] = ACTIONS(3500), - [anon_sym_AMP_AMP] = ACTIONS(3516), - [anon_sym_PIPE_PIPE] = ACTIONS(3518), - [anon_sym_or] = ACTIONS(3520), - [sym_none] = ACTIONS(1759), - [sym_true] = ACTIONS(1759), - [sym_false] = ACTIONS(1759), - [sym_nil] = ACTIONS(1759), - [anon_sym_QMARK_DOT] = ACTIONS(3490), - [anon_sym_POUND_LBRACK] = ACTIONS(3514), - [anon_sym_if] = ACTIONS(1759), - [anon_sym_DOLLARif] = ACTIONS(1759), - [anon_sym_is] = ACTIONS(3522), - [anon_sym_BANGis] = ACTIONS(3522), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_BANGin] = ACTIONS(3524), - [anon_sym_match] = ACTIONS(1759), - [anon_sym_select] = ACTIONS(1759), - [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), - [anon_sym_SQUOTE] = ACTIONS(1759), - [anon_sym_DQUOTE] = ACTIONS(1759), - [anon_sym_c_SQUOTE] = ACTIONS(1759), - [anon_sym_c_DQUOTE] = ACTIONS(1759), - [anon_sym_r_SQUOTE] = ACTIONS(1759), - [anon_sym_r_DQUOTE] = 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), - }, - [963] = { - [sym_line_comment] = STATE(963), - [sym_block_comment] = STATE(963), - [sym_type_parameters] = STATE(4197), - [sym_argument_list] = STATE(1001), - [sym_or_block] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1791), - [anon_sym_LF] = ACTIONS(1791), - [anon_sym_CR] = ACTIONS(1791), - [anon_sym_CR_LF] = ACTIONS(1791), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3490), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym___global] = ACTIONS(1791), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1791), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_STAR] = ACTIONS(3500), - [anon_sym_SLASH] = ACTIONS(3500), - [anon_sym_PERCENT] = ACTIONS(3500), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_LT_EQ] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(3504), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_union] = ACTIONS(1791), - [anon_sym_pub] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [anon_sym_interface] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3512), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1791), - [anon_sym_LBRACK2] = ACTIONS(3514), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(3500), - [anon_sym_LT_DASH] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(3500), - [anon_sym_GT_GT] = ACTIONS(3500), - [anon_sym_GT_GT_GT] = ACTIONS(3500), - [anon_sym_AMP_CARET] = ACTIONS(3500), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(3490), - [anon_sym_POUND_LBRACK] = ACTIONS(3514), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1791), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_BANGin] = ACTIONS(1791), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1791), - [sym_rune_literal] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(1791), - [anon_sym_c_SQUOTE] = ACTIONS(1791), - [anon_sym_c_DQUOTE] = ACTIONS(1791), - [anon_sym_r_SQUOTE] = ACTIONS(1791), - [anon_sym_r_DQUOTE] = ACTIONS(1791), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1791), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), - [anon_sym_assert] = ACTIONS(1791), - [anon_sym_defer] = ACTIONS(1791), - [anon_sym_goto] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_DOLLARfor] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_POUND] = ACTIONS(1791), - [anon_sym_asm] = ACTIONS(1791), - [anon_sym_AT_LBRACK] = ACTIONS(1791), - }, - [964] = { - [sym_line_comment] = STATE(964), - [sym_block_comment] = STATE(964), - [sym_type_parameters] = STATE(4197), - [sym_argument_list] = STATE(1001), - [sym_or_block] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1791), - [anon_sym_LF] = ACTIONS(1791), - [anon_sym_CR] = ACTIONS(1791), - [anon_sym_CR_LF] = ACTIONS(1791), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3490), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym___global] = ACTIONS(1791), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(3498), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(3498), - [anon_sym_DASH] = ACTIONS(3498), - [anon_sym_STAR] = ACTIONS(3500), - [anon_sym_SLASH] = ACTIONS(3500), - [anon_sym_PERCENT] = ACTIONS(3500), - [anon_sym_LT] = ACTIONS(3502), - [anon_sym_GT] = ACTIONS(3502), - [anon_sym_EQ_EQ] = ACTIONS(3502), - [anon_sym_BANG_EQ] = ACTIONS(3502), - [anon_sym_LT_EQ] = ACTIONS(3502), - [anon_sym_GT_EQ] = ACTIONS(3502), - [anon_sym_LBRACK] = ACTIONS(3504), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_union] = ACTIONS(1791), - [anon_sym_pub] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [anon_sym_interface] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3512), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1791), - [anon_sym_LBRACK2] = ACTIONS(3514), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(3498), - [anon_sym_AMP] = ACTIONS(3500), - [anon_sym_LT_DASH] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(3500), - [anon_sym_GT_GT] = ACTIONS(3500), - [anon_sym_GT_GT_GT] = ACTIONS(3500), - [anon_sym_AMP_CARET] = ACTIONS(3500), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(3490), - [anon_sym_POUND_LBRACK] = ACTIONS(3514), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1791), - [anon_sym_in] = ACTIONS(3524), - [anon_sym_BANGin] = ACTIONS(3524), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1791), - [sym_rune_literal] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(1791), - [anon_sym_c_SQUOTE] = ACTIONS(1791), - [anon_sym_c_DQUOTE] = ACTIONS(1791), - [anon_sym_r_SQUOTE] = ACTIONS(1791), - [anon_sym_r_DQUOTE] = ACTIONS(1791), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1791), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), - [anon_sym_assert] = ACTIONS(1791), - [anon_sym_defer] = ACTIONS(1791), - [anon_sym_goto] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_DOLLARfor] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_POUND] = ACTIONS(1791), - [anon_sym_asm] = ACTIONS(1791), - [anon_sym_AT_LBRACK] = ACTIONS(1791), - }, - [965] = { - [sym_line_comment] = STATE(965), - [sym_block_comment] = STATE(965), - [sym_type_parameters] = STATE(4197), - [sym_argument_list] = STATE(1001), - [sym_or_block] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1791), - [anon_sym_LF] = ACTIONS(1791), - [anon_sym_CR] = ACTIONS(1791), - [anon_sym_CR_LF] = ACTIONS(1791), + [968] = { + [sym_line_comment] = STATE(968), + [sym_block_comment] = STATE(968), + [sym_type_parameters] = STATE(4208), + [sym_argument_list] = STATE(1044), + [sym_or_block] = STATE(1043), + [ts_builtin_sym_end] = ACTIONS(1777), + [sym_identifier] = ACTIONS(1779), + [anon_sym_LF] = ACTIONS(1779), + [anon_sym_CR] = ACTIONS(1779), + [anon_sym_CR_LF] = ACTIONS(1779), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3490), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym___global] = ACTIONS(1791), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1791), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_STAR] = ACTIONS(1791), - [anon_sym_SLASH] = ACTIONS(1791), - [anon_sym_PERCENT] = ACTIONS(1791), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_LT_EQ] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(3504), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_union] = ACTIONS(1791), - [anon_sym_pub] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [anon_sym_interface] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3512), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1791), - [anon_sym_LBRACK2] = ACTIONS(3514), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_LT_DASH] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(1791), - [anon_sym_GT_GT] = ACTIONS(1791), - [anon_sym_GT_GT_GT] = ACTIONS(1791), - [anon_sym_AMP_CARET] = ACTIONS(1791), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(3490), - [anon_sym_POUND_LBRACK] = ACTIONS(3514), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1791), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_BANGin] = ACTIONS(1791), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1791), - [sym_rune_literal] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(1791), - [anon_sym_c_SQUOTE] = ACTIONS(1791), - [anon_sym_c_DQUOTE] = ACTIONS(1791), - [anon_sym_r_SQUOTE] = ACTIONS(1791), - [anon_sym_r_DQUOTE] = ACTIONS(1791), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1791), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), - [anon_sym_assert] = ACTIONS(1791), - [anon_sym_defer] = ACTIONS(1791), - [anon_sym_goto] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_DOLLARfor] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_POUND] = ACTIONS(1791), - [anon_sym_asm] = ACTIONS(1791), - [anon_sym_AT_LBRACK] = ACTIONS(1791), + [anon_sym_DOT] = ACTIONS(3494), + [anon_sym_as] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym___global] = ACTIONS(1779), + [anon_sym_type] = ACTIONS(1779), + [anon_sym_fn] = ACTIONS(1779), + [anon_sym_PLUS] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_STAR] = ACTIONS(3542), + [anon_sym_SLASH] = ACTIONS(3542), + [anon_sym_PERCENT] = ACTIONS(3542), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_GT] = ACTIONS(3544), + [anon_sym_EQ_EQ] = ACTIONS(3544), + [anon_sym_BANG_EQ] = ACTIONS(3544), + [anon_sym_LT_EQ] = ACTIONS(3544), + [anon_sym_GT_EQ] = ACTIONS(3544), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_struct] = ACTIONS(1779), + [anon_sym_union] = ACTIONS(1779), + [anon_sym_pub] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_enum] = ACTIONS(1779), + [anon_sym_interface] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3512), + [anon_sym_QMARK] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_go] = ACTIONS(1779), + [anon_sym_spawn] = ACTIONS(1779), + [anon_sym_json_DOTdecode] = ACTIONS(1779), + [anon_sym_PIPE] = ACTIONS(3540), + [anon_sym_LBRACK2] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_CARET] = ACTIONS(3540), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_LT_DASH] = ACTIONS(1779), + [anon_sym_LT_LT] = ACTIONS(3542), + [anon_sym_GT_GT] = ACTIONS(3542), + [anon_sym_GT_GT_GT] = ACTIONS(3542), + [anon_sym_AMP_CARET] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_or] = ACTIONS(3524), + [sym_none] = ACTIONS(1779), + [sym_true] = ACTIONS(1779), + [sym_false] = ACTIONS(1779), + [sym_nil] = ACTIONS(1779), + [anon_sym_QMARK_DOT] = ACTIONS(3494), + [anon_sym_POUND_LBRACK] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1779), + [anon_sym_is] = ACTIONS(3526), + [anon_sym_BANGis] = ACTIONS(3526), + [anon_sym_in] = ACTIONS(3550), + [anon_sym_BANGin] = ACTIONS(3550), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_select] = ACTIONS(1779), + [anon_sym_lock] = ACTIONS(1779), + [anon_sym_rlock] = ACTIONS(1779), + [anon_sym_unsafe] = ACTIONS(1779), + [anon_sym_sql] = ACTIONS(1779), + [sym_int_literal] = ACTIONS(1779), + [sym_float_literal] = ACTIONS(1779), + [sym_rune_literal] = ACTIONS(1779), + [anon_sym_SQUOTE] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [anon_sym_c_SQUOTE] = ACTIONS(1779), + [anon_sym_c_DQUOTE] = ACTIONS(1779), + [anon_sym_r_SQUOTE] = ACTIONS(1779), + [anon_sym_r_DQUOTE] = ACTIONS(1779), + [sym_pseudo_compile_time_identifier] = ACTIONS(1779), + [anon_sym_shared] = ACTIONS(1779), + [anon_sym_map_LBRACK] = ACTIONS(1779), + [anon_sym_chan] = ACTIONS(1779), + [anon_sym_thread] = ACTIONS(1779), + [anon_sym_atomic] = ACTIONS(1779), + [anon_sym_assert] = ACTIONS(1779), + [anon_sym_defer] = ACTIONS(1779), + [anon_sym_goto] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_DOLLARfor] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(1779), + [anon_sym_asm] = ACTIONS(1779), + [anon_sym_AT_LBRACK] = ACTIONS(1779), }, - [966] = { - [sym_line_comment] = STATE(966), - [sym_block_comment] = STATE(966), - [sym_type_parameters] = STATE(4197), - [sym_argument_list] = STATE(1001), - [sym_or_block] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1791), - [anon_sym_LF] = ACTIONS(1791), - [anon_sym_CR] = ACTIONS(1791), - [anon_sym_CR_LF] = ACTIONS(1791), + [969] = { + [sym_line_comment] = STATE(969), + [sym_block_comment] = STATE(969), + [sym_type_parameters] = STATE(4208), + [sym_argument_list] = STATE(1044), + [sym_or_block] = STATE(1043), + [ts_builtin_sym_end] = ACTIONS(3552), + [sym_identifier] = ACTIONS(3554), + [anon_sym_LF] = ACTIONS(3554), + [anon_sym_CR] = ACTIONS(3554), + [anon_sym_CR_LF] = ACTIONS(3554), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3490), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym___global] = ACTIONS(1791), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(3498), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(3498), - [anon_sym_DASH] = ACTIONS(3498), - [anon_sym_STAR] = ACTIONS(3500), - [anon_sym_SLASH] = ACTIONS(3500), - [anon_sym_PERCENT] = ACTIONS(3500), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_LT_EQ] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(3504), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_union] = ACTIONS(1791), - [anon_sym_pub] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [anon_sym_interface] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3512), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1791), - [anon_sym_LBRACK2] = ACTIONS(3514), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(3498), - [anon_sym_AMP] = ACTIONS(3500), - [anon_sym_LT_DASH] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(3500), - [anon_sym_GT_GT] = ACTIONS(3500), - [anon_sym_GT_GT_GT] = ACTIONS(3500), - [anon_sym_AMP_CARET] = ACTIONS(3500), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(3490), - [anon_sym_POUND_LBRACK] = ACTIONS(3514), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1791), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_BANGin] = ACTIONS(1791), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1791), - [sym_rune_literal] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(1791), - [anon_sym_c_SQUOTE] = ACTIONS(1791), - [anon_sym_c_DQUOTE] = ACTIONS(1791), - [anon_sym_r_SQUOTE] = ACTIONS(1791), - [anon_sym_r_DQUOTE] = ACTIONS(1791), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1791), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), - [anon_sym_assert] = ACTIONS(1791), - [anon_sym_defer] = ACTIONS(1791), - [anon_sym_goto] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_DOLLARfor] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_POUND] = ACTIONS(1791), - [anon_sym_asm] = ACTIONS(1791), - [anon_sym_AT_LBRACK] = ACTIONS(1791), + [anon_sym_DOT] = ACTIONS(3494), + [anon_sym_as] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(3554), + [anon_sym_const] = ACTIONS(3554), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym___global] = ACTIONS(3554), + [anon_sym_type] = ACTIONS(3554), + [anon_sym_fn] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_STAR] = ACTIONS(3542), + [anon_sym_SLASH] = ACTIONS(3542), + [anon_sym_PERCENT] = ACTIONS(3542), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_GT] = ACTIONS(3544), + [anon_sym_EQ_EQ] = ACTIONS(3544), + [anon_sym_BANG_EQ] = ACTIONS(3544), + [anon_sym_LT_EQ] = ACTIONS(3544), + [anon_sym_GT_EQ] = ACTIONS(3544), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_struct] = ACTIONS(3554), + [anon_sym_union] = ACTIONS(3554), + [anon_sym_pub] = ACTIONS(3554), + [anon_sym_mut] = ACTIONS(3554), + [anon_sym_enum] = ACTIONS(3554), + [anon_sym_interface] = ACTIONS(3554), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3512), + [anon_sym_QMARK] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_go] = ACTIONS(3554), + [anon_sym_spawn] = ACTIONS(3554), + [anon_sym_json_DOTdecode] = ACTIONS(3554), + [anon_sym_PIPE] = ACTIONS(3540), + [anon_sym_LBRACK2] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(3554), + [anon_sym_CARET] = ACTIONS(3540), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_LT_DASH] = ACTIONS(3554), + [anon_sym_LT_LT] = ACTIONS(3542), + [anon_sym_GT_GT] = ACTIONS(3542), + [anon_sym_GT_GT_GT] = ACTIONS(3542), + [anon_sym_AMP_CARET] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_or] = ACTIONS(3524), + [sym_none] = ACTIONS(3554), + [sym_true] = ACTIONS(3554), + [sym_false] = ACTIONS(3554), + [sym_nil] = ACTIONS(3554), + [anon_sym_QMARK_DOT] = ACTIONS(3494), + [anon_sym_POUND_LBRACK] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(3554), + [anon_sym_DOLLARif] = ACTIONS(3554), + [anon_sym_is] = ACTIONS(3526), + [anon_sym_BANGis] = ACTIONS(3526), + [anon_sym_in] = ACTIONS(3550), + [anon_sym_BANGin] = ACTIONS(3550), + [anon_sym_match] = ACTIONS(3554), + [anon_sym_select] = ACTIONS(3554), + [anon_sym_lock] = ACTIONS(3554), + [anon_sym_rlock] = ACTIONS(3554), + [anon_sym_unsafe] = ACTIONS(3554), + [anon_sym_sql] = ACTIONS(3554), + [sym_int_literal] = ACTIONS(3554), + [sym_float_literal] = ACTIONS(3554), + [sym_rune_literal] = ACTIONS(3554), + [anon_sym_SQUOTE] = ACTIONS(3554), + [anon_sym_DQUOTE] = ACTIONS(3554), + [anon_sym_c_SQUOTE] = ACTIONS(3554), + [anon_sym_c_DQUOTE] = ACTIONS(3554), + [anon_sym_r_SQUOTE] = ACTIONS(3554), + [anon_sym_r_DQUOTE] = ACTIONS(3554), + [sym_pseudo_compile_time_identifier] = ACTIONS(3554), + [anon_sym_shared] = ACTIONS(3554), + [anon_sym_map_LBRACK] = ACTIONS(3554), + [anon_sym_chan] = ACTIONS(3554), + [anon_sym_thread] = ACTIONS(3554), + [anon_sym_atomic] = ACTIONS(3554), + [anon_sym_assert] = ACTIONS(3554), + [anon_sym_defer] = ACTIONS(3554), + [anon_sym_goto] = ACTIONS(3554), + [anon_sym_break] = ACTIONS(3554), + [anon_sym_continue] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3554), + [anon_sym_DOLLARfor] = ACTIONS(3554), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_POUND] = ACTIONS(3554), + [anon_sym_asm] = ACTIONS(3554), + [anon_sym_AT_LBRACK] = ACTIONS(3554), }, - [967] = { - [sym_line_comment] = STATE(967), - [sym_block_comment] = STATE(967), - [sym_else_branch] = STATE(1093), + [970] = { + [sym_line_comment] = STATE(970), + [sym_block_comment] = STATE(970), + [sym_else_branch] = STATE(1021), [ts_builtin_sym_end] = ACTIONS(1803), [sym_identifier] = ACTIONS(1805), [anon_sym_LF] = ACTIONS(1805), @@ -133941,7 +134559,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1805), [anon_sym___global] = ACTIONS(1805), [anon_sym_type] = ACTIONS(1805), - [anon_sym_PIPE] = ACTIONS(1805), [anon_sym_fn] = ACTIONS(1805), [anon_sym_PLUS] = ACTIONS(1805), [anon_sym_DASH] = ACTIONS(1805), @@ -133968,6 +134585,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(1805), [anon_sym_spawn] = ACTIONS(1805), [anon_sym_json_DOTdecode] = ACTIONS(1805), + [anon_sym_PIPE] = ACTIONS(1805), [anon_sym_LBRACK2] = ACTIONS(1805), [anon_sym_TILDE] = ACTIONS(1805), [anon_sym_CARET] = ACTIONS(1805), @@ -133987,7 +134605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_DOT] = ACTIONS(1805), [anon_sym_POUND_LBRACK] = ACTIONS(1805), [anon_sym_if] = ACTIONS(1805), - [anon_sym_else] = ACTIONS(3536), + [anon_sym_else] = ACTIONS(3556), [anon_sym_DOLLARif] = ACTIONS(1805), [anon_sym_is] = ACTIONS(1805), [anon_sym_BANGis] = ACTIONS(1805), @@ -134026,10 +134644,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1805), [anon_sym_AT_LBRACK] = ACTIONS(1805), }, - [968] = { - [sym_line_comment] = STATE(968), - [sym_block_comment] = STATE(968), - [sym_else_branch] = STATE(1092), + [971] = { + [sym_line_comment] = STATE(971), + [sym_block_comment] = STATE(971), + [sym_else_branch] = STATE(1023), [ts_builtin_sym_end] = ACTIONS(1797), [sym_identifier] = ACTIONS(1799), [anon_sym_LF] = ACTIONS(1799), @@ -134045,7 +134663,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1799), [anon_sym___global] = ACTIONS(1799), [anon_sym_type] = ACTIONS(1799), - [anon_sym_PIPE] = ACTIONS(1799), [anon_sym_fn] = ACTIONS(1799), [anon_sym_PLUS] = ACTIONS(1799), [anon_sym_DASH] = ACTIONS(1799), @@ -134072,6 +134689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(1799), [anon_sym_spawn] = ACTIONS(1799), [anon_sym_json_DOTdecode] = ACTIONS(1799), + [anon_sym_PIPE] = ACTIONS(1799), [anon_sym_LBRACK2] = ACTIONS(1799), [anon_sym_TILDE] = ACTIONS(1799), [anon_sym_CARET] = ACTIONS(1799), @@ -134091,7 +134709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_DOT] = ACTIONS(1799), [anon_sym_POUND_LBRACK] = ACTIONS(1799), [anon_sym_if] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(3536), + [anon_sym_else] = ACTIONS(3556), [anon_sym_DOLLARif] = ACTIONS(1799), [anon_sym_is] = ACTIONS(1799), [anon_sym_BANGis] = ACTIONS(1799), @@ -134130,844 +134748,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(1799), [anon_sym_AT_LBRACK] = ACTIONS(1799), }, - [969] = { - [sym_line_comment] = STATE(969), - [sym_block_comment] = STATE(969), - [sym_type_parameters] = STATE(4197), - [sym_argument_list] = STATE(1001), - [sym_or_block] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(3538), - [sym_identifier] = ACTIONS(3540), - [anon_sym_LF] = ACTIONS(3540), - [anon_sym_CR] = ACTIONS(3540), - [anon_sym_CR_LF] = ACTIONS(3540), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3490), - [anon_sym_as] = ACTIONS(3492), - [anon_sym_LBRACE] = ACTIONS(3540), - [anon_sym_const] = ACTIONS(3540), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym___global] = ACTIONS(3540), - [anon_sym_type] = ACTIONS(3540), - [anon_sym_PIPE] = ACTIONS(3542), - [anon_sym_fn] = ACTIONS(3540), - [anon_sym_PLUS] = ACTIONS(3542), - [anon_sym_DASH] = ACTIONS(3542), - [anon_sym_STAR] = ACTIONS(3544), - [anon_sym_SLASH] = ACTIONS(3544), - [anon_sym_PERCENT] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(3546), - [anon_sym_GT] = ACTIONS(3546), - [anon_sym_EQ_EQ] = ACTIONS(3546), - [anon_sym_BANG_EQ] = ACTIONS(3546), - [anon_sym_LT_EQ] = ACTIONS(3546), - [anon_sym_GT_EQ] = ACTIONS(3546), - [anon_sym_LBRACK] = ACTIONS(3504), - [anon_sym_struct] = ACTIONS(3540), - [anon_sym_union] = ACTIONS(3540), - [anon_sym_pub] = ACTIONS(3540), - [anon_sym_mut] = ACTIONS(3540), - [anon_sym_enum] = ACTIONS(3540), - [anon_sym_interface] = ACTIONS(3540), - [anon_sym_PLUS_PLUS] = ACTIONS(3506), - [anon_sym_DASH_DASH] = ACTIONS(3508), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3512), - [anon_sym_go] = ACTIONS(3540), - [anon_sym_spawn] = ACTIONS(3540), - [anon_sym_json_DOTdecode] = ACTIONS(3540), - [anon_sym_LBRACK2] = ACTIONS(3514), - [anon_sym_TILDE] = ACTIONS(3540), - [anon_sym_CARET] = ACTIONS(3542), - [anon_sym_AMP] = ACTIONS(3544), - [anon_sym_LT_DASH] = ACTIONS(3540), - [anon_sym_LT_LT] = ACTIONS(3544), - [anon_sym_GT_GT] = ACTIONS(3544), - [anon_sym_GT_GT_GT] = ACTIONS(3544), - [anon_sym_AMP_CARET] = ACTIONS(3544), - [anon_sym_AMP_AMP] = ACTIONS(3548), - [anon_sym_PIPE_PIPE] = ACTIONS(3550), - [anon_sym_or] = ACTIONS(3520), - [sym_none] = ACTIONS(3540), - [sym_true] = ACTIONS(3540), - [sym_false] = ACTIONS(3540), - [sym_nil] = ACTIONS(3540), - [anon_sym_QMARK_DOT] = ACTIONS(3490), - [anon_sym_POUND_LBRACK] = ACTIONS(3514), - [anon_sym_if] = ACTIONS(3540), - [anon_sym_DOLLARif] = ACTIONS(3540), - [anon_sym_is] = ACTIONS(3522), - [anon_sym_BANGis] = ACTIONS(3522), - [anon_sym_in] = ACTIONS(3552), - [anon_sym_BANGin] = ACTIONS(3552), - [anon_sym_match] = ACTIONS(3540), - [anon_sym_select] = ACTIONS(3540), - [anon_sym_lock] = ACTIONS(3540), - [anon_sym_rlock] = ACTIONS(3540), - [anon_sym_unsafe] = ACTIONS(3540), - [anon_sym_sql] = ACTIONS(3540), - [sym_int_literal] = ACTIONS(3540), - [sym_float_literal] = ACTIONS(3540), - [sym_rune_literal] = ACTIONS(3540), - [anon_sym_SQUOTE] = ACTIONS(3540), - [anon_sym_DQUOTE] = ACTIONS(3540), - [anon_sym_c_SQUOTE] = ACTIONS(3540), - [anon_sym_c_DQUOTE] = ACTIONS(3540), - [anon_sym_r_SQUOTE] = ACTIONS(3540), - [anon_sym_r_DQUOTE] = ACTIONS(3540), - [sym_pseudo_compile_time_identifier] = ACTIONS(3540), - [anon_sym_shared] = ACTIONS(3540), - [anon_sym_map_LBRACK] = ACTIONS(3540), - [anon_sym_chan] = ACTIONS(3540), - [anon_sym_thread] = ACTIONS(3540), - [anon_sym_atomic] = ACTIONS(3540), - [anon_sym_assert] = ACTIONS(3540), - [anon_sym_defer] = ACTIONS(3540), - [anon_sym_goto] = ACTIONS(3540), - [anon_sym_break] = ACTIONS(3540), - [anon_sym_continue] = ACTIONS(3540), - [anon_sym_return] = ACTIONS(3540), - [anon_sym_DOLLARfor] = ACTIONS(3540), - [anon_sym_for] = ACTIONS(3540), - [anon_sym_POUND] = ACTIONS(3540), - [anon_sym_asm] = ACTIONS(3540), - [anon_sym_AT_LBRACK] = ACTIONS(3540), - }, - [970] = { - [sym_line_comment] = STATE(970), - [sym_block_comment] = STATE(970), - [sym_type_parameters] = STATE(4197), - [sym_argument_list] = STATE(1001), - [sym_or_block] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1791), - [anon_sym_LF] = ACTIONS(1791), - [anon_sym_CR] = ACTIONS(1791), - [anon_sym_CR_LF] = ACTIONS(1791), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3490), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym___global] = ACTIONS(1791), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(3542), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(3542), - [anon_sym_DASH] = ACTIONS(3542), - [anon_sym_STAR] = ACTIONS(3544), - [anon_sym_SLASH] = ACTIONS(3544), - [anon_sym_PERCENT] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(3546), - [anon_sym_GT] = ACTIONS(3546), - [anon_sym_EQ_EQ] = ACTIONS(3546), - [anon_sym_BANG_EQ] = ACTIONS(3546), - [anon_sym_LT_EQ] = ACTIONS(3546), - [anon_sym_GT_EQ] = ACTIONS(3546), - [anon_sym_LBRACK] = ACTIONS(3504), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_union] = ACTIONS(1791), - [anon_sym_pub] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [anon_sym_interface] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3512), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1791), - [anon_sym_LBRACK2] = ACTIONS(3514), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(3542), - [anon_sym_AMP] = ACTIONS(3544), - [anon_sym_LT_DASH] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(3544), - [anon_sym_GT_GT] = ACTIONS(3544), - [anon_sym_GT_GT_GT] = ACTIONS(3544), - [anon_sym_AMP_CARET] = ACTIONS(3544), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(3490), - [anon_sym_POUND_LBRACK] = ACTIONS(3514), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1791), - [anon_sym_in] = ACTIONS(3552), - [anon_sym_BANGin] = ACTIONS(3552), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1791), - [sym_rune_literal] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(1791), - [anon_sym_c_SQUOTE] = ACTIONS(1791), - [anon_sym_c_DQUOTE] = ACTIONS(1791), - [anon_sym_r_SQUOTE] = ACTIONS(1791), - [anon_sym_r_DQUOTE] = ACTIONS(1791), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1791), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), - [anon_sym_assert] = ACTIONS(1791), - [anon_sym_defer] = ACTIONS(1791), - [anon_sym_goto] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_DOLLARfor] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_POUND] = ACTIONS(1791), - [anon_sym_asm] = ACTIONS(1791), - [anon_sym_AT_LBRACK] = ACTIONS(1791), - }, - [971] = { - [sym_line_comment] = STATE(971), - [sym_block_comment] = STATE(971), - [sym_type_parameters] = STATE(4197), - [sym_argument_list] = STATE(1001), - [sym_or_block] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1791), - [anon_sym_LF] = ACTIONS(1791), - [anon_sym_CR] = ACTIONS(1791), - [anon_sym_CR_LF] = ACTIONS(1791), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3490), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym___global] = ACTIONS(1791), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(3542), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(3542), - [anon_sym_DASH] = ACTIONS(3542), - [anon_sym_STAR] = ACTIONS(3544), - [anon_sym_SLASH] = ACTIONS(3544), - [anon_sym_PERCENT] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(3546), - [anon_sym_GT] = ACTIONS(3546), - [anon_sym_EQ_EQ] = ACTIONS(3546), - [anon_sym_BANG_EQ] = ACTIONS(3546), - [anon_sym_LT_EQ] = ACTIONS(3546), - [anon_sym_GT_EQ] = ACTIONS(3546), - [anon_sym_LBRACK] = ACTIONS(3504), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_union] = ACTIONS(1791), - [anon_sym_pub] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [anon_sym_interface] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3512), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1791), - [anon_sym_LBRACK2] = ACTIONS(3514), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(3542), - [anon_sym_AMP] = ACTIONS(3544), - [anon_sym_LT_DASH] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(3544), - [anon_sym_GT_GT] = ACTIONS(3544), - [anon_sym_GT_GT_GT] = ACTIONS(3544), - [anon_sym_AMP_CARET] = ACTIONS(3544), - [anon_sym_AMP_AMP] = ACTIONS(3548), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(3490), - [anon_sym_POUND_LBRACK] = ACTIONS(3514), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1791), - [anon_sym_in] = ACTIONS(3552), - [anon_sym_BANGin] = ACTIONS(3552), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1791), - [sym_rune_literal] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(1791), - [anon_sym_c_SQUOTE] = ACTIONS(1791), - [anon_sym_c_DQUOTE] = ACTIONS(1791), - [anon_sym_r_SQUOTE] = ACTIONS(1791), - [anon_sym_r_DQUOTE] = ACTIONS(1791), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1791), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), - [anon_sym_assert] = ACTIONS(1791), - [anon_sym_defer] = ACTIONS(1791), - [anon_sym_goto] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_DOLLARfor] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_POUND] = ACTIONS(1791), - [anon_sym_asm] = ACTIONS(1791), - [anon_sym_AT_LBRACK] = ACTIONS(1791), - }, [972] = { [sym_line_comment] = STATE(972), [sym_block_comment] = STATE(972), - [sym_type_parameters] = STATE(4197), - [sym_argument_list] = STATE(1001), - [sym_or_block] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(3554), - [sym_identifier] = ACTIONS(3556), - [anon_sym_LF] = ACTIONS(3556), - [anon_sym_CR] = ACTIONS(3556), - [anon_sym_CR_LF] = ACTIONS(3556), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3490), - [anon_sym_as] = ACTIONS(3492), - [anon_sym_LBRACE] = ACTIONS(3556), - [anon_sym_const] = ACTIONS(3556), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym___global] = ACTIONS(3556), - [anon_sym_type] = ACTIONS(3556), - [anon_sym_PIPE] = ACTIONS(3542), - [anon_sym_fn] = ACTIONS(3556), - [anon_sym_PLUS] = ACTIONS(3556), - [anon_sym_DASH] = ACTIONS(3556), - [anon_sym_STAR] = ACTIONS(3556), - [anon_sym_SLASH] = ACTIONS(3544), - [anon_sym_PERCENT] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(3546), - [anon_sym_GT] = ACTIONS(3546), - [anon_sym_EQ_EQ] = ACTIONS(3546), - [anon_sym_BANG_EQ] = ACTIONS(3546), - [anon_sym_LT_EQ] = ACTIONS(3546), - [anon_sym_GT_EQ] = ACTIONS(3546), - [anon_sym_LBRACK] = ACTIONS(3504), - [anon_sym_struct] = ACTIONS(3556), - [anon_sym_union] = ACTIONS(3556), - [anon_sym_pub] = ACTIONS(3556), - [anon_sym_mut] = ACTIONS(3556), - [anon_sym_enum] = ACTIONS(3556), - [anon_sym_interface] = ACTIONS(3556), - [anon_sym_PLUS_PLUS] = ACTIONS(3506), - [anon_sym_DASH_DASH] = ACTIONS(3508), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3512), - [anon_sym_go] = ACTIONS(3556), - [anon_sym_spawn] = ACTIONS(3556), - [anon_sym_json_DOTdecode] = ACTIONS(3556), - [anon_sym_LBRACK2] = ACTIONS(3514), - [anon_sym_TILDE] = ACTIONS(3556), - [anon_sym_CARET] = ACTIONS(3556), - [anon_sym_AMP] = ACTIONS(3556), - [anon_sym_LT_DASH] = ACTIONS(3556), - [anon_sym_LT_LT] = ACTIONS(3544), - [anon_sym_GT_GT] = ACTIONS(3544), - [anon_sym_GT_GT_GT] = ACTIONS(3544), - [anon_sym_AMP_CARET] = ACTIONS(3544), - [anon_sym_AMP_AMP] = ACTIONS(3548), - [anon_sym_PIPE_PIPE] = ACTIONS(3550), - [anon_sym_or] = ACTIONS(3520), - [sym_none] = ACTIONS(3556), - [sym_true] = ACTIONS(3556), - [sym_false] = ACTIONS(3556), - [sym_nil] = ACTIONS(3556), - [anon_sym_QMARK_DOT] = ACTIONS(3490), - [anon_sym_POUND_LBRACK] = ACTIONS(3514), - [anon_sym_if] = ACTIONS(3556), - [anon_sym_DOLLARif] = ACTIONS(3556), - [anon_sym_is] = ACTIONS(3522), - [anon_sym_BANGis] = ACTIONS(3522), - [anon_sym_in] = ACTIONS(3552), - [anon_sym_BANGin] = ACTIONS(3552), - [anon_sym_match] = ACTIONS(3556), - [anon_sym_select] = ACTIONS(3556), - [anon_sym_lock] = ACTIONS(3556), - [anon_sym_rlock] = ACTIONS(3556), - [anon_sym_unsafe] = ACTIONS(3556), - [anon_sym_sql] = ACTIONS(3556), - [sym_int_literal] = ACTIONS(3556), - [sym_float_literal] = ACTIONS(3556), - [sym_rune_literal] = ACTIONS(3556), - [anon_sym_SQUOTE] = ACTIONS(3556), - [anon_sym_DQUOTE] = ACTIONS(3556), - [anon_sym_c_SQUOTE] = ACTIONS(3556), - [anon_sym_c_DQUOTE] = ACTIONS(3556), - [anon_sym_r_SQUOTE] = ACTIONS(3556), - [anon_sym_r_DQUOTE] = ACTIONS(3556), - [sym_pseudo_compile_time_identifier] = ACTIONS(3556), - [anon_sym_shared] = ACTIONS(3556), - [anon_sym_map_LBRACK] = ACTIONS(3556), - [anon_sym_chan] = ACTIONS(3556), - [anon_sym_thread] = ACTIONS(3556), - [anon_sym_atomic] = ACTIONS(3556), - [anon_sym_assert] = ACTIONS(3556), - [anon_sym_defer] = ACTIONS(3556), - [anon_sym_goto] = ACTIONS(3556), - [anon_sym_break] = ACTIONS(3556), - [anon_sym_continue] = ACTIONS(3556), - [anon_sym_return] = ACTIONS(3556), - [anon_sym_DOLLARfor] = ACTIONS(3556), - [anon_sym_for] = ACTIONS(3556), - [anon_sym_POUND] = ACTIONS(3556), - [anon_sym_asm] = ACTIONS(3556), - [anon_sym_AT_LBRACK] = ACTIONS(3556), - }, - [973] = { - [sym_line_comment] = STATE(973), - [sym_block_comment] = STATE(973), - [sym_type_parameters] = STATE(4197), - [sym_argument_list] = STATE(1001), - [sym_or_block] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1791), - [anon_sym_LF] = ACTIONS(1791), - [anon_sym_CR] = ACTIONS(1791), - [anon_sym_CR_LF] = ACTIONS(1791), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3490), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym___global] = ACTIONS(1791), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(3542), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(3542), - [anon_sym_DASH] = ACTIONS(3542), - [anon_sym_STAR] = ACTIONS(3544), - [anon_sym_SLASH] = ACTIONS(3544), - [anon_sym_PERCENT] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_LT_EQ] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(3504), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_union] = ACTIONS(1791), - [anon_sym_pub] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [anon_sym_interface] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3512), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1791), - [anon_sym_LBRACK2] = ACTIONS(3514), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(3542), - [anon_sym_AMP] = ACTIONS(3544), - [anon_sym_LT_DASH] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(3544), - [anon_sym_GT_GT] = ACTIONS(3544), - [anon_sym_GT_GT_GT] = ACTIONS(3544), - [anon_sym_AMP_CARET] = ACTIONS(3544), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(3490), - [anon_sym_POUND_LBRACK] = ACTIONS(3514), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1791), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_BANGin] = ACTIONS(1791), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1791), - [sym_rune_literal] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(1791), - [anon_sym_c_SQUOTE] = ACTIONS(1791), - [anon_sym_c_DQUOTE] = ACTIONS(1791), - [anon_sym_r_SQUOTE] = ACTIONS(1791), - [anon_sym_r_DQUOTE] = ACTIONS(1791), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1791), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), - [anon_sym_assert] = ACTIONS(1791), - [anon_sym_defer] = ACTIONS(1791), - [anon_sym_goto] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_DOLLARfor] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_POUND] = ACTIONS(1791), - [anon_sym_asm] = ACTIONS(1791), - [anon_sym_AT_LBRACK] = ACTIONS(1791), - }, - [974] = { - [sym_line_comment] = STATE(974), - [sym_block_comment] = STATE(974), - [sym_type_parameters] = STATE(4197), - [sym_argument_list] = STATE(1001), - [sym_or_block] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1791), - [anon_sym_LF] = ACTIONS(1791), - [anon_sym_CR] = ACTIONS(1791), - [anon_sym_CR_LF] = ACTIONS(1791), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3490), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym___global] = ACTIONS(1791), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1791), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_STAR] = ACTIONS(3544), - [anon_sym_SLASH] = ACTIONS(3544), - [anon_sym_PERCENT] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_LT_EQ] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(3504), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_union] = ACTIONS(1791), - [anon_sym_pub] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [anon_sym_interface] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3512), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1791), - [anon_sym_LBRACK2] = ACTIONS(3514), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(3544), - [anon_sym_LT_DASH] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(3544), - [anon_sym_GT_GT] = ACTIONS(3544), - [anon_sym_GT_GT_GT] = ACTIONS(3544), - [anon_sym_AMP_CARET] = ACTIONS(3544), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(3490), - [anon_sym_POUND_LBRACK] = ACTIONS(3514), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1791), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_BANGin] = ACTIONS(1791), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1791), - [sym_rune_literal] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(1791), - [anon_sym_c_SQUOTE] = ACTIONS(1791), - [anon_sym_c_DQUOTE] = ACTIONS(1791), - [anon_sym_r_SQUOTE] = ACTIONS(1791), - [anon_sym_r_DQUOTE] = ACTIONS(1791), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1791), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), - [anon_sym_assert] = ACTIONS(1791), - [anon_sym_defer] = ACTIONS(1791), - [anon_sym_goto] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_DOLLARfor] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_POUND] = ACTIONS(1791), - [anon_sym_asm] = ACTIONS(1791), - [anon_sym_AT_LBRACK] = ACTIONS(1791), - }, - [975] = { - [sym_line_comment] = STATE(975), - [sym_block_comment] = STATE(975), - [sym_type_parameters] = STATE(4197), - [sym_argument_list] = STATE(1001), - [sym_or_block] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(1763), - [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(3490), - [anon_sym_as] = ACTIONS(3492), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym___global] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(3542), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(3542), - [anon_sym_DASH] = ACTIONS(3542), - [anon_sym_STAR] = ACTIONS(3544), - [anon_sym_SLASH] = ACTIONS(3544), - [anon_sym_PERCENT] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(3546), - [anon_sym_GT] = ACTIONS(3546), - [anon_sym_EQ_EQ] = ACTIONS(3546), - [anon_sym_BANG_EQ] = ACTIONS(3546), - [anon_sym_LT_EQ] = ACTIONS(3546), - [anon_sym_GT_EQ] = ACTIONS(3546), - [anon_sym_LBRACK] = ACTIONS(3504), - [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(3506), - [anon_sym_DASH_DASH] = ACTIONS(3508), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3512), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1765), - [anon_sym_LBRACK2] = ACTIONS(3514), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(3542), - [anon_sym_AMP] = ACTIONS(3544), - [anon_sym_LT_DASH] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(3544), - [anon_sym_GT_GT] = ACTIONS(3544), - [anon_sym_GT_GT_GT] = ACTIONS(3544), - [anon_sym_AMP_CARET] = ACTIONS(3544), - [anon_sym_AMP_AMP] = ACTIONS(3548), - [anon_sym_PIPE_PIPE] = ACTIONS(3550), - [anon_sym_or] = ACTIONS(3520), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3490), - [anon_sym_POUND_LBRACK] = ACTIONS(3514), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(3522), - [anon_sym_BANGis] = ACTIONS(3522), - [anon_sym_in] = ACTIONS(3552), - [anon_sym_BANGin] = ACTIONS(3552), - [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), - [anon_sym_SQUOTE] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [anon_sym_c_SQUOTE] = ACTIONS(1765), - [anon_sym_c_DQUOTE] = ACTIONS(1765), - [anon_sym_r_SQUOTE] = ACTIONS(1765), - [anon_sym_r_DQUOTE] = 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), - }, - [976] = { - [sym_line_comment] = STATE(976), - [sym_block_comment] = STATE(976), - [sym_type_parameters] = STATE(4197), - [sym_argument_list] = STATE(1001), - [sym_or_block] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(1785), - [sym_identifier] = ACTIONS(1787), - [anon_sym_LF] = ACTIONS(1787), - [anon_sym_CR] = ACTIONS(1787), - [anon_sym_CR_LF] = ACTIONS(1787), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3490), - [anon_sym_as] = ACTIONS(1787), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_const] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym___global] = ACTIONS(1787), - [anon_sym_type] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(3542), - [anon_sym_fn] = ACTIONS(1787), - [anon_sym_PLUS] = ACTIONS(3542), - [anon_sym_DASH] = ACTIONS(3542), - [anon_sym_STAR] = ACTIONS(3544), - [anon_sym_SLASH] = ACTIONS(3544), - [anon_sym_PERCENT] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(1787), - [anon_sym_GT] = ACTIONS(1787), - [anon_sym_EQ_EQ] = ACTIONS(1787), - [anon_sym_BANG_EQ] = ACTIONS(1787), - [anon_sym_LT_EQ] = ACTIONS(1787), - [anon_sym_GT_EQ] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(3504), - [anon_sym_struct] = ACTIONS(1787), - [anon_sym_union] = ACTIONS(1787), - [anon_sym_pub] = ACTIONS(1787), - [anon_sym_mut] = ACTIONS(1787), - [anon_sym_enum] = ACTIONS(1787), - [anon_sym_interface] = ACTIONS(1787), - [anon_sym_PLUS_PLUS] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3512), - [anon_sym_go] = ACTIONS(1787), - [anon_sym_spawn] = ACTIONS(1787), - [anon_sym_json_DOTdecode] = ACTIONS(1787), - [anon_sym_LBRACK2] = ACTIONS(3514), - [anon_sym_TILDE] = ACTIONS(1787), - [anon_sym_CARET] = ACTIONS(3542), - [anon_sym_AMP] = ACTIONS(3544), - [anon_sym_LT_DASH] = ACTIONS(1787), - [anon_sym_LT_LT] = ACTIONS(3544), - [anon_sym_GT_GT] = ACTIONS(3544), - [anon_sym_GT_GT_GT] = ACTIONS(3544), - [anon_sym_AMP_CARET] = ACTIONS(3544), - [anon_sym_AMP_AMP] = ACTIONS(1787), - [anon_sym_PIPE_PIPE] = ACTIONS(1787), - [anon_sym_or] = ACTIONS(1787), - [sym_none] = ACTIONS(1787), - [sym_true] = ACTIONS(1787), - [sym_false] = ACTIONS(1787), - [sym_nil] = ACTIONS(1787), - [anon_sym_QMARK_DOT] = ACTIONS(3490), - [anon_sym_POUND_LBRACK] = ACTIONS(3514), - [anon_sym_if] = ACTIONS(1787), - [anon_sym_DOLLARif] = ACTIONS(1787), - [anon_sym_is] = ACTIONS(1787), - [anon_sym_BANGis] = ACTIONS(1787), - [anon_sym_in] = ACTIONS(1787), - [anon_sym_BANGin] = ACTIONS(1787), - [anon_sym_match] = ACTIONS(1787), - [anon_sym_select] = ACTIONS(1787), - [anon_sym_lock] = ACTIONS(1787), - [anon_sym_rlock] = ACTIONS(1787), - [anon_sym_unsafe] = ACTIONS(1787), - [anon_sym_sql] = ACTIONS(1787), - [sym_int_literal] = ACTIONS(1787), - [sym_float_literal] = ACTIONS(1787), - [sym_rune_literal] = ACTIONS(1787), - [anon_sym_SQUOTE] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [anon_sym_c_SQUOTE] = ACTIONS(1787), - [anon_sym_c_DQUOTE] = ACTIONS(1787), - [anon_sym_r_SQUOTE] = ACTIONS(1787), - [anon_sym_r_DQUOTE] = ACTIONS(1787), - [sym_pseudo_compile_time_identifier] = ACTIONS(1787), - [anon_sym_shared] = ACTIONS(1787), - [anon_sym_map_LBRACK] = ACTIONS(1787), - [anon_sym_chan] = ACTIONS(1787), - [anon_sym_thread] = ACTIONS(1787), - [anon_sym_atomic] = ACTIONS(1787), - [anon_sym_assert] = ACTIONS(1787), - [anon_sym_defer] = ACTIONS(1787), - [anon_sym_goto] = ACTIONS(1787), - [anon_sym_break] = ACTIONS(1787), - [anon_sym_continue] = ACTIONS(1787), - [anon_sym_return] = ACTIONS(1787), - [anon_sym_DOLLARfor] = ACTIONS(1787), - [anon_sym_for] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(1787), - [anon_sym_asm] = ACTIONS(1787), - [anon_sym_AT_LBRACK] = ACTIONS(1787), - }, - [977] = { - [sym_line_comment] = STATE(977), - [sym_block_comment] = STATE(977), - [sym_type_parameters] = STATE(4197), - [sym_argument_list] = STATE(1001), - [sym_or_block] = STATE(1000), + [sym_type_parameters] = STATE(4208), + [sym_argument_list] = STATE(1044), + [sym_or_block] = STATE(1043), [ts_builtin_sym_end] = ACTIONS(3558), [sym_identifier] = ACTIONS(3560), [anon_sym_LF] = ACTIONS(3560), @@ -134975,64 +134761,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(3560), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3490), - [anon_sym_as] = ACTIONS(3492), + [anon_sym_DOT] = ACTIONS(3494), + [anon_sym_as] = ACTIONS(3496), [anon_sym_LBRACE] = ACTIONS(3560), [anon_sym_const] = ACTIONS(3560), - [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym_LPAREN] = ACTIONS(3500), [anon_sym___global] = ACTIONS(3560), [anon_sym_type] = ACTIONS(3560), - [anon_sym_PIPE] = ACTIONS(3542), [anon_sym_fn] = ACTIONS(3560), - [anon_sym_PLUS] = ACTIONS(3542), - [anon_sym_DASH] = ACTIONS(3542), - [anon_sym_STAR] = ACTIONS(3544), - [anon_sym_SLASH] = ACTIONS(3544), - [anon_sym_PERCENT] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(3546), - [anon_sym_GT] = ACTIONS(3546), - [anon_sym_EQ_EQ] = ACTIONS(3546), - [anon_sym_BANG_EQ] = ACTIONS(3546), - [anon_sym_LT_EQ] = ACTIONS(3546), - [anon_sym_GT_EQ] = ACTIONS(3546), - [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_PLUS] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_STAR] = ACTIONS(3542), + [anon_sym_SLASH] = ACTIONS(3542), + [anon_sym_PERCENT] = ACTIONS(3542), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_GT] = ACTIONS(3544), + [anon_sym_EQ_EQ] = ACTIONS(3544), + [anon_sym_BANG_EQ] = ACTIONS(3544), + [anon_sym_LT_EQ] = ACTIONS(3544), + [anon_sym_GT_EQ] = ACTIONS(3544), + [anon_sym_LBRACK] = ACTIONS(3508), [anon_sym_struct] = ACTIONS(3560), [anon_sym_union] = ACTIONS(3560), [anon_sym_pub] = ACTIONS(3560), [anon_sym_mut] = ACTIONS(3560), [anon_sym_enum] = ACTIONS(3560), [anon_sym_interface] = ACTIONS(3560), - [anon_sym_PLUS_PLUS] = ACTIONS(3506), - [anon_sym_DASH_DASH] = ACTIONS(3508), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3512), + [anon_sym_QMARK] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3516), [anon_sym_go] = ACTIONS(3560), [anon_sym_spawn] = ACTIONS(3560), [anon_sym_json_DOTdecode] = ACTIONS(3560), - [anon_sym_LBRACK2] = ACTIONS(3514), + [anon_sym_PIPE] = ACTIONS(3540), + [anon_sym_LBRACK2] = ACTIONS(3518), [anon_sym_TILDE] = ACTIONS(3560), - [anon_sym_CARET] = ACTIONS(3542), - [anon_sym_AMP] = ACTIONS(3544), + [anon_sym_CARET] = ACTIONS(3540), + [anon_sym_AMP] = ACTIONS(3542), [anon_sym_LT_DASH] = ACTIONS(3560), - [anon_sym_LT_LT] = ACTIONS(3544), - [anon_sym_GT_GT] = ACTIONS(3544), - [anon_sym_GT_GT_GT] = ACTIONS(3544), - [anon_sym_AMP_CARET] = ACTIONS(3544), - [anon_sym_AMP_AMP] = ACTIONS(3548), - [anon_sym_PIPE_PIPE] = ACTIONS(3550), - [anon_sym_or] = ACTIONS(3520), + [anon_sym_LT_LT] = ACTIONS(3542), + [anon_sym_GT_GT] = ACTIONS(3542), + [anon_sym_GT_GT_GT] = ACTIONS(3542), + [anon_sym_AMP_CARET] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_or] = ACTIONS(3524), [sym_none] = ACTIONS(3560), [sym_true] = ACTIONS(3560), [sym_false] = ACTIONS(3560), [sym_nil] = ACTIONS(3560), - [anon_sym_QMARK_DOT] = ACTIONS(3490), - [anon_sym_POUND_LBRACK] = ACTIONS(3514), + [anon_sym_QMARK_DOT] = ACTIONS(3494), + [anon_sym_POUND_LBRACK] = ACTIONS(3518), [anon_sym_if] = ACTIONS(3560), [anon_sym_DOLLARif] = ACTIONS(3560), - [anon_sym_is] = ACTIONS(3522), - [anon_sym_BANGis] = ACTIONS(3522), - [anon_sym_in] = ACTIONS(3552), - [anon_sym_BANGin] = ACTIONS(3552), + [anon_sym_is] = ACTIONS(3526), + [anon_sym_BANGis] = ACTIONS(3526), + [anon_sym_in] = ACTIONS(3550), + [anon_sym_BANGin] = ACTIONS(3550), [anon_sym_match] = ACTIONS(3560), [anon_sym_select] = ACTIONS(3560), [anon_sym_lock] = ACTIONS(3560), @@ -135066,12 +134852,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(3560), [anon_sym_AT_LBRACK] = ACTIONS(3560), }, - [978] = { - [sym_line_comment] = STATE(978), - [sym_block_comment] = STATE(978), - [sym_type_parameters] = STATE(4197), - [sym_argument_list] = STATE(1001), - [sym_or_block] = STATE(1000), + [973] = { + [sym_line_comment] = STATE(973), + [sym_block_comment] = STATE(973), + [sym_type_parameters] = STATE(4208), + [sym_argument_list] = STATE(1044), + [sym_or_block] = STATE(1043), [ts_builtin_sym_end] = ACTIONS(3562), [sym_identifier] = ACTIONS(3564), [anon_sym_LF] = ACTIONS(3564), @@ -135079,64 +134865,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(3564), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3490), - [anon_sym_as] = ACTIONS(3492), + [anon_sym_DOT] = ACTIONS(3494), + [anon_sym_as] = ACTIONS(3496), [anon_sym_LBRACE] = ACTIONS(3564), [anon_sym_const] = ACTIONS(3564), - [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym_LPAREN] = ACTIONS(3500), [anon_sym___global] = ACTIONS(3564), [anon_sym_type] = ACTIONS(3564), - [anon_sym_PIPE] = ACTIONS(3542), [anon_sym_fn] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3542), - [anon_sym_DASH] = ACTIONS(3542), - [anon_sym_STAR] = ACTIONS(3544), - [anon_sym_SLASH] = ACTIONS(3544), - [anon_sym_PERCENT] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(3546), - [anon_sym_GT] = ACTIONS(3546), - [anon_sym_EQ_EQ] = ACTIONS(3546), - [anon_sym_BANG_EQ] = ACTIONS(3546), - [anon_sym_LT_EQ] = ACTIONS(3546), - [anon_sym_GT_EQ] = ACTIONS(3546), - [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3542), + [anon_sym_PERCENT] = ACTIONS(3542), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_GT] = ACTIONS(3544), + [anon_sym_EQ_EQ] = ACTIONS(3544), + [anon_sym_BANG_EQ] = ACTIONS(3544), + [anon_sym_LT_EQ] = ACTIONS(3544), + [anon_sym_GT_EQ] = ACTIONS(3544), + [anon_sym_LBRACK] = ACTIONS(3508), [anon_sym_struct] = ACTIONS(3564), [anon_sym_union] = ACTIONS(3564), [anon_sym_pub] = ACTIONS(3564), [anon_sym_mut] = ACTIONS(3564), [anon_sym_enum] = ACTIONS(3564), [anon_sym_interface] = ACTIONS(3564), - [anon_sym_PLUS_PLUS] = ACTIONS(3506), - [anon_sym_DASH_DASH] = ACTIONS(3508), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3512), + [anon_sym_QMARK] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3516), [anon_sym_go] = ACTIONS(3564), [anon_sym_spawn] = ACTIONS(3564), [anon_sym_json_DOTdecode] = ACTIONS(3564), - [anon_sym_LBRACK2] = ACTIONS(3514), + [anon_sym_PIPE] = ACTIONS(3540), + [anon_sym_LBRACK2] = ACTIONS(3518), [anon_sym_TILDE] = ACTIONS(3564), - [anon_sym_CARET] = ACTIONS(3542), - [anon_sym_AMP] = ACTIONS(3544), + [anon_sym_CARET] = ACTIONS(3564), + [anon_sym_AMP] = ACTIONS(3564), [anon_sym_LT_DASH] = ACTIONS(3564), - [anon_sym_LT_LT] = ACTIONS(3544), - [anon_sym_GT_GT] = ACTIONS(3544), - [anon_sym_GT_GT_GT] = ACTIONS(3544), - [anon_sym_AMP_CARET] = ACTIONS(3544), - [anon_sym_AMP_AMP] = ACTIONS(3548), - [anon_sym_PIPE_PIPE] = ACTIONS(3550), - [anon_sym_or] = ACTIONS(3520), + [anon_sym_LT_LT] = ACTIONS(3542), + [anon_sym_GT_GT] = ACTIONS(3542), + [anon_sym_GT_GT_GT] = ACTIONS(3542), + [anon_sym_AMP_CARET] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_or] = ACTIONS(3524), [sym_none] = ACTIONS(3564), [sym_true] = ACTIONS(3564), [sym_false] = ACTIONS(3564), [sym_nil] = ACTIONS(3564), - [anon_sym_QMARK_DOT] = ACTIONS(3490), - [anon_sym_POUND_LBRACK] = ACTIONS(3514), + [anon_sym_QMARK_DOT] = ACTIONS(3494), + [anon_sym_POUND_LBRACK] = ACTIONS(3518), [anon_sym_if] = ACTIONS(3564), [anon_sym_DOLLARif] = ACTIONS(3564), - [anon_sym_is] = ACTIONS(3522), - [anon_sym_BANGis] = ACTIONS(3522), - [anon_sym_in] = ACTIONS(3552), - [anon_sym_BANGin] = ACTIONS(3552), + [anon_sym_is] = ACTIONS(3526), + [anon_sym_BANGis] = ACTIONS(3526), + [anon_sym_in] = ACTIONS(3550), + [anon_sym_BANGin] = ACTIONS(3550), [anon_sym_match] = ACTIONS(3564), [anon_sym_select] = ACTIONS(3564), [anon_sym_lock] = ACTIONS(3564), @@ -135170,237 +134956,861 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(3564), [anon_sym_AT_LBRACK] = ACTIONS(3564), }, - [979] = { - [sym_line_comment] = STATE(979), - [sym_block_comment] = STATE(979), - [sym_type_parameters] = STATE(4197), - [sym_argument_list] = STATE(1001), - [sym_or_block] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(1777), - [sym_identifier] = ACTIONS(1779), - [anon_sym_LF] = ACTIONS(1779), - [anon_sym_CR] = ACTIONS(1779), - [anon_sym_CR_LF] = ACTIONS(1779), + [974] = { + [sym_line_comment] = STATE(974), + [sym_block_comment] = STATE(974), + [sym_type_parameters] = STATE(4208), + [sym_argument_list] = STATE(1044), + [sym_or_block] = STATE(1043), + [ts_builtin_sym_end] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1767), + [anon_sym_LF] = ACTIONS(1767), + [anon_sym_CR] = ACTIONS(1767), + [anon_sym_CR_LF] = ACTIONS(1767), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3490), - [anon_sym_as] = ACTIONS(3492), - [anon_sym_LBRACE] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym___global] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_PIPE] = ACTIONS(3542), - [anon_sym_fn] = ACTIONS(1779), - [anon_sym_PLUS] = ACTIONS(3542), - [anon_sym_DASH] = ACTIONS(3542), - [anon_sym_STAR] = ACTIONS(3544), - [anon_sym_SLASH] = ACTIONS(3544), - [anon_sym_PERCENT] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(3546), - [anon_sym_GT] = ACTIONS(3546), - [anon_sym_EQ_EQ] = ACTIONS(3546), - [anon_sym_BANG_EQ] = ACTIONS(3546), - [anon_sym_LT_EQ] = ACTIONS(3546), - [anon_sym_GT_EQ] = ACTIONS(3546), - [anon_sym_LBRACK] = ACTIONS(3504), - [anon_sym_struct] = ACTIONS(1779), - [anon_sym_union] = ACTIONS(1779), - [anon_sym_pub] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_enum] = ACTIONS(1779), - [anon_sym_interface] = ACTIONS(1779), - [anon_sym_PLUS_PLUS] = ACTIONS(3506), - [anon_sym_DASH_DASH] = ACTIONS(3508), - [anon_sym_QMARK] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3512), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1779), - [anon_sym_json_DOTdecode] = ACTIONS(1779), - [anon_sym_LBRACK2] = ACTIONS(3514), - [anon_sym_TILDE] = ACTIONS(1779), - [anon_sym_CARET] = ACTIONS(3542), - [anon_sym_AMP] = ACTIONS(3544), - [anon_sym_LT_DASH] = ACTIONS(1779), - [anon_sym_LT_LT] = ACTIONS(3544), - [anon_sym_GT_GT] = ACTIONS(3544), - [anon_sym_GT_GT_GT] = ACTIONS(3544), - [anon_sym_AMP_CARET] = ACTIONS(3544), - [anon_sym_AMP_AMP] = ACTIONS(3548), - [anon_sym_PIPE_PIPE] = ACTIONS(3550), - [anon_sym_or] = ACTIONS(3520), - [sym_none] = ACTIONS(1779), - [sym_true] = ACTIONS(1779), - [sym_false] = ACTIONS(1779), - [sym_nil] = ACTIONS(1779), - [anon_sym_QMARK_DOT] = ACTIONS(3490), - [anon_sym_POUND_LBRACK] = ACTIONS(3514), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1779), - [anon_sym_is] = ACTIONS(3522), - [anon_sym_BANGis] = ACTIONS(3522), - [anon_sym_in] = ACTIONS(3552), - [anon_sym_BANGin] = ACTIONS(3552), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_select] = ACTIONS(1779), - [anon_sym_lock] = ACTIONS(1779), - [anon_sym_rlock] = ACTIONS(1779), - [anon_sym_unsafe] = ACTIONS(1779), - [anon_sym_sql] = ACTIONS(1779), - [sym_int_literal] = ACTIONS(1779), - [sym_float_literal] = ACTIONS(1779), - [sym_rune_literal] = ACTIONS(1779), - [anon_sym_SQUOTE] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1779), - [anon_sym_c_SQUOTE] = ACTIONS(1779), - [anon_sym_c_DQUOTE] = ACTIONS(1779), - [anon_sym_r_SQUOTE] = ACTIONS(1779), - [anon_sym_r_DQUOTE] = ACTIONS(1779), - [sym_pseudo_compile_time_identifier] = ACTIONS(1779), - [anon_sym_shared] = ACTIONS(1779), - [anon_sym_map_LBRACK] = ACTIONS(1779), - [anon_sym_chan] = ACTIONS(1779), - [anon_sym_thread] = ACTIONS(1779), - [anon_sym_atomic] = ACTIONS(1779), - [anon_sym_assert] = ACTIONS(1779), - [anon_sym_defer] = ACTIONS(1779), - [anon_sym_goto] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_DOLLARfor] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(1779), - [anon_sym_asm] = ACTIONS(1779), - [anon_sym_AT_LBRACK] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(3494), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym___global] = ACTIONS(1767), + [anon_sym_type] = ACTIONS(1767), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(3542), + [anon_sym_SLASH] = ACTIONS(3542), + [anon_sym_PERCENT] = ACTIONS(3542), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_EQ_EQ] = ACTIONS(1767), + [anon_sym_BANG_EQ] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_union] = ACTIONS(1767), + [anon_sym_pub] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_enum] = ACTIONS(1767), + [anon_sym_interface] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK2] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_CARET] = ACTIONS(1767), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_LT_DASH] = ACTIONS(1767), + [anon_sym_LT_LT] = ACTIONS(3542), + [anon_sym_GT_GT] = ACTIONS(3542), + [anon_sym_GT_GT_GT] = ACTIONS(3542), + [anon_sym_AMP_CARET] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(1767), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(3494), + [anon_sym_POUND_LBRACK] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1767), + [anon_sym_in] = ACTIONS(1767), + [anon_sym_BANGin] = ACTIONS(1767), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1767), + [sym_rune_literal] = ACTIONS(1767), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_c_SQUOTE] = ACTIONS(1767), + [anon_sym_c_DQUOTE] = ACTIONS(1767), + [anon_sym_r_SQUOTE] = ACTIONS(1767), + [anon_sym_r_DQUOTE] = ACTIONS(1767), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1767), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), + [anon_sym_assert] = ACTIONS(1767), + [anon_sym_defer] = ACTIONS(1767), + [anon_sym_goto] = ACTIONS(1767), + [anon_sym_break] = ACTIONS(1767), + [anon_sym_continue] = ACTIONS(1767), + [anon_sym_return] = ACTIONS(1767), + [anon_sym_DOLLARfor] = ACTIONS(1767), + [anon_sym_for] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(1767), + [anon_sym_asm] = ACTIONS(1767), + [anon_sym_AT_LBRACK] = ACTIONS(1767), + }, + [975] = { + [sym_line_comment] = STATE(975), + [sym_block_comment] = STATE(975), + [sym_type_parameters] = STATE(4208), + [sym_argument_list] = STATE(1044), + [sym_or_block] = STATE(1043), + [ts_builtin_sym_end] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1767), + [anon_sym_LF] = ACTIONS(1767), + [anon_sym_CR] = ACTIONS(1767), + [anon_sym_CR_LF] = ACTIONS(1767), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3494), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym___global] = ACTIONS(1767), + [anon_sym_type] = ACTIONS(1767), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_STAR] = ACTIONS(3542), + [anon_sym_SLASH] = ACTIONS(3542), + [anon_sym_PERCENT] = ACTIONS(3542), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_EQ_EQ] = ACTIONS(1767), + [anon_sym_BANG_EQ] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_union] = ACTIONS(1767), + [anon_sym_pub] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_enum] = ACTIONS(1767), + [anon_sym_interface] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(3540), + [anon_sym_LBRACK2] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_CARET] = ACTIONS(3540), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_LT_DASH] = ACTIONS(1767), + [anon_sym_LT_LT] = ACTIONS(3542), + [anon_sym_GT_GT] = ACTIONS(3542), + [anon_sym_GT_GT_GT] = ACTIONS(3542), + [anon_sym_AMP_CARET] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(1767), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(3494), + [anon_sym_POUND_LBRACK] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1767), + [anon_sym_in] = ACTIONS(1767), + [anon_sym_BANGin] = ACTIONS(1767), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1767), + [sym_rune_literal] = ACTIONS(1767), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_c_SQUOTE] = ACTIONS(1767), + [anon_sym_c_DQUOTE] = ACTIONS(1767), + [anon_sym_r_SQUOTE] = ACTIONS(1767), + [anon_sym_r_DQUOTE] = ACTIONS(1767), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1767), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), + [anon_sym_assert] = ACTIONS(1767), + [anon_sym_defer] = ACTIONS(1767), + [anon_sym_goto] = ACTIONS(1767), + [anon_sym_break] = ACTIONS(1767), + [anon_sym_continue] = ACTIONS(1767), + [anon_sym_return] = ACTIONS(1767), + [anon_sym_DOLLARfor] = ACTIONS(1767), + [anon_sym_for] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(1767), + [anon_sym_asm] = ACTIONS(1767), + [anon_sym_AT_LBRACK] = ACTIONS(1767), + }, + [976] = { + [sym_line_comment] = STATE(976), + [sym_block_comment] = STATE(976), + [sym_type_parameters] = STATE(4208), + [sym_argument_list] = STATE(1044), + [sym_or_block] = STATE(1043), + [ts_builtin_sym_end] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1767), + [anon_sym_LF] = ACTIONS(1767), + [anon_sym_CR] = ACTIONS(1767), + [anon_sym_CR_LF] = ACTIONS(1767), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3494), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym___global] = ACTIONS(1767), + [anon_sym_type] = ACTIONS(1767), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_STAR] = ACTIONS(3542), + [anon_sym_SLASH] = ACTIONS(3542), + [anon_sym_PERCENT] = ACTIONS(3542), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_GT] = ACTIONS(3544), + [anon_sym_EQ_EQ] = ACTIONS(3544), + [anon_sym_BANG_EQ] = ACTIONS(3544), + [anon_sym_LT_EQ] = ACTIONS(3544), + [anon_sym_GT_EQ] = ACTIONS(3544), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_union] = ACTIONS(1767), + [anon_sym_pub] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_enum] = ACTIONS(1767), + [anon_sym_interface] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(3540), + [anon_sym_LBRACK2] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_CARET] = ACTIONS(3540), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_LT_DASH] = ACTIONS(1767), + [anon_sym_LT_LT] = ACTIONS(3542), + [anon_sym_GT_GT] = ACTIONS(3542), + [anon_sym_GT_GT_GT] = ACTIONS(3542), + [anon_sym_AMP_CARET] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(1767), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(3494), + [anon_sym_POUND_LBRACK] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1767), + [anon_sym_in] = ACTIONS(3550), + [anon_sym_BANGin] = ACTIONS(3550), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1767), + [sym_rune_literal] = ACTIONS(1767), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_c_SQUOTE] = ACTIONS(1767), + [anon_sym_c_DQUOTE] = ACTIONS(1767), + [anon_sym_r_SQUOTE] = ACTIONS(1767), + [anon_sym_r_DQUOTE] = ACTIONS(1767), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1767), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), + [anon_sym_assert] = ACTIONS(1767), + [anon_sym_defer] = ACTIONS(1767), + [anon_sym_goto] = ACTIONS(1767), + [anon_sym_break] = ACTIONS(1767), + [anon_sym_continue] = ACTIONS(1767), + [anon_sym_return] = ACTIONS(1767), + [anon_sym_DOLLARfor] = ACTIONS(1767), + [anon_sym_for] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(1767), + [anon_sym_asm] = ACTIONS(1767), + [anon_sym_AT_LBRACK] = ACTIONS(1767), + }, + [977] = { + [sym_line_comment] = STATE(977), + [sym_block_comment] = STATE(977), + [sym_type_parameters] = STATE(4208), + [sym_argument_list] = STATE(1044), + [sym_or_block] = STATE(1043), + [ts_builtin_sym_end] = ACTIONS(3566), + [sym_identifier] = ACTIONS(3568), + [anon_sym_LF] = ACTIONS(3568), + [anon_sym_CR] = ACTIONS(3568), + [anon_sym_CR_LF] = ACTIONS(3568), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3494), + [anon_sym_as] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(3568), + [anon_sym_const] = ACTIONS(3568), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym___global] = ACTIONS(3568), + [anon_sym_type] = ACTIONS(3568), + [anon_sym_fn] = ACTIONS(3568), + [anon_sym_PLUS] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_STAR] = ACTIONS(3542), + [anon_sym_SLASH] = ACTIONS(3542), + [anon_sym_PERCENT] = ACTIONS(3542), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_GT] = ACTIONS(3544), + [anon_sym_EQ_EQ] = ACTIONS(3544), + [anon_sym_BANG_EQ] = ACTIONS(3544), + [anon_sym_LT_EQ] = ACTIONS(3544), + [anon_sym_GT_EQ] = ACTIONS(3544), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_struct] = ACTIONS(3568), + [anon_sym_union] = ACTIONS(3568), + [anon_sym_pub] = ACTIONS(3568), + [anon_sym_mut] = ACTIONS(3568), + [anon_sym_enum] = ACTIONS(3568), + [anon_sym_interface] = ACTIONS(3568), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3512), + [anon_sym_QMARK] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_go] = ACTIONS(3568), + [anon_sym_spawn] = ACTIONS(3568), + [anon_sym_json_DOTdecode] = ACTIONS(3568), + [anon_sym_PIPE] = ACTIONS(3540), + [anon_sym_LBRACK2] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(3568), + [anon_sym_CARET] = ACTIONS(3540), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_LT_DASH] = ACTIONS(3568), + [anon_sym_LT_LT] = ACTIONS(3542), + [anon_sym_GT_GT] = ACTIONS(3542), + [anon_sym_GT_GT_GT] = ACTIONS(3542), + [anon_sym_AMP_CARET] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_or] = ACTIONS(3524), + [sym_none] = ACTIONS(3568), + [sym_true] = ACTIONS(3568), + [sym_false] = ACTIONS(3568), + [sym_nil] = ACTIONS(3568), + [anon_sym_QMARK_DOT] = ACTIONS(3494), + [anon_sym_POUND_LBRACK] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(3568), + [anon_sym_DOLLARif] = ACTIONS(3568), + [anon_sym_is] = ACTIONS(3526), + [anon_sym_BANGis] = ACTIONS(3526), + [anon_sym_in] = ACTIONS(3550), + [anon_sym_BANGin] = ACTIONS(3550), + [anon_sym_match] = ACTIONS(3568), + [anon_sym_select] = ACTIONS(3568), + [anon_sym_lock] = ACTIONS(3568), + [anon_sym_rlock] = ACTIONS(3568), + [anon_sym_unsafe] = ACTIONS(3568), + [anon_sym_sql] = ACTIONS(3568), + [sym_int_literal] = ACTIONS(3568), + [sym_float_literal] = ACTIONS(3568), + [sym_rune_literal] = ACTIONS(3568), + [anon_sym_SQUOTE] = ACTIONS(3568), + [anon_sym_DQUOTE] = ACTIONS(3568), + [anon_sym_c_SQUOTE] = ACTIONS(3568), + [anon_sym_c_DQUOTE] = ACTIONS(3568), + [anon_sym_r_SQUOTE] = ACTIONS(3568), + [anon_sym_r_DQUOTE] = ACTIONS(3568), + [sym_pseudo_compile_time_identifier] = ACTIONS(3568), + [anon_sym_shared] = ACTIONS(3568), + [anon_sym_map_LBRACK] = ACTIONS(3568), + [anon_sym_chan] = ACTIONS(3568), + [anon_sym_thread] = ACTIONS(3568), + [anon_sym_atomic] = ACTIONS(3568), + [anon_sym_assert] = ACTIONS(3568), + [anon_sym_defer] = ACTIONS(3568), + [anon_sym_goto] = ACTIONS(3568), + [anon_sym_break] = ACTIONS(3568), + [anon_sym_continue] = ACTIONS(3568), + [anon_sym_return] = ACTIONS(3568), + [anon_sym_DOLLARfor] = ACTIONS(3568), + [anon_sym_for] = ACTIONS(3568), + [anon_sym_POUND] = ACTIONS(3568), + [anon_sym_asm] = ACTIONS(3568), + [anon_sym_AT_LBRACK] = ACTIONS(3568), + }, + [978] = { + [sym_line_comment] = STATE(978), + [sym_block_comment] = STATE(978), + [sym_type_parameters] = STATE(4208), + [sym_argument_list] = STATE(1044), + [sym_or_block] = STATE(1043), + [ts_builtin_sym_end] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1767), + [anon_sym_LF] = ACTIONS(1767), + [anon_sym_CR] = ACTIONS(1767), + [anon_sym_CR_LF] = ACTIONS(1767), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3494), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym___global] = ACTIONS(1767), + [anon_sym_type] = ACTIONS(1767), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_STAR] = ACTIONS(3542), + [anon_sym_SLASH] = ACTIONS(3542), + [anon_sym_PERCENT] = ACTIONS(3542), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_GT] = ACTIONS(3544), + [anon_sym_EQ_EQ] = ACTIONS(3544), + [anon_sym_BANG_EQ] = ACTIONS(3544), + [anon_sym_LT_EQ] = ACTIONS(3544), + [anon_sym_GT_EQ] = ACTIONS(3544), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_union] = ACTIONS(1767), + [anon_sym_pub] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_enum] = ACTIONS(1767), + [anon_sym_interface] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(3540), + [anon_sym_LBRACK2] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_CARET] = ACTIONS(3540), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_LT_DASH] = ACTIONS(1767), + [anon_sym_LT_LT] = ACTIONS(3542), + [anon_sym_GT_GT] = ACTIONS(3542), + [anon_sym_GT_GT_GT] = ACTIONS(3542), + [anon_sym_AMP_CARET] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(3494), + [anon_sym_POUND_LBRACK] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1767), + [anon_sym_in] = ACTIONS(3550), + [anon_sym_BANGin] = ACTIONS(3550), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1767), + [sym_rune_literal] = ACTIONS(1767), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_c_SQUOTE] = ACTIONS(1767), + [anon_sym_c_DQUOTE] = ACTIONS(1767), + [anon_sym_r_SQUOTE] = ACTIONS(1767), + [anon_sym_r_DQUOTE] = ACTIONS(1767), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1767), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), + [anon_sym_assert] = ACTIONS(1767), + [anon_sym_defer] = ACTIONS(1767), + [anon_sym_goto] = ACTIONS(1767), + [anon_sym_break] = ACTIONS(1767), + [anon_sym_continue] = ACTIONS(1767), + [anon_sym_return] = ACTIONS(1767), + [anon_sym_DOLLARfor] = ACTIONS(1767), + [anon_sym_for] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(1767), + [anon_sym_asm] = ACTIONS(1767), + [anon_sym_AT_LBRACK] = ACTIONS(1767), + }, + [979] = { + [sym_line_comment] = STATE(979), + [sym_block_comment] = STATE(979), + [sym_type_parameters] = STATE(4208), + [sym_argument_list] = STATE(1044), + [sym_or_block] = STATE(1043), + [ts_builtin_sym_end] = ACTIONS(1791), + [sym_identifier] = ACTIONS(1793), + [anon_sym_LF] = ACTIONS(1793), + [anon_sym_CR] = ACTIONS(1793), + [anon_sym_CR_LF] = ACTIONS(1793), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3494), + [anon_sym_as] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym___global] = ACTIONS(1793), + [anon_sym_type] = ACTIONS(1793), + [anon_sym_fn] = ACTIONS(1793), + [anon_sym_PLUS] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_STAR] = ACTIONS(3542), + [anon_sym_SLASH] = ACTIONS(3542), + [anon_sym_PERCENT] = ACTIONS(3542), + [anon_sym_LT] = ACTIONS(1793), + [anon_sym_GT] = ACTIONS(1793), + [anon_sym_EQ_EQ] = ACTIONS(1793), + [anon_sym_BANG_EQ] = ACTIONS(1793), + [anon_sym_LT_EQ] = ACTIONS(1793), + [anon_sym_GT_EQ] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_struct] = ACTIONS(1793), + [anon_sym_union] = ACTIONS(1793), + [anon_sym_pub] = ACTIONS(1793), + [anon_sym_mut] = ACTIONS(1793), + [anon_sym_enum] = ACTIONS(1793), + [anon_sym_interface] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_go] = ACTIONS(1793), + [anon_sym_spawn] = ACTIONS(1793), + [anon_sym_json_DOTdecode] = ACTIONS(1793), + [anon_sym_PIPE] = ACTIONS(3540), + [anon_sym_LBRACK2] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_CARET] = ACTIONS(3540), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_LT_DASH] = ACTIONS(1793), + [anon_sym_LT_LT] = ACTIONS(3542), + [anon_sym_GT_GT] = ACTIONS(3542), + [anon_sym_GT_GT_GT] = ACTIONS(3542), + [anon_sym_AMP_CARET] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(1793), + [anon_sym_PIPE_PIPE] = ACTIONS(1793), + [anon_sym_or] = ACTIONS(1793), + [sym_none] = ACTIONS(1793), + [sym_true] = ACTIONS(1793), + [sym_false] = ACTIONS(1793), + [sym_nil] = ACTIONS(1793), + [anon_sym_QMARK_DOT] = ACTIONS(3494), + [anon_sym_POUND_LBRACK] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1793), + [anon_sym_is] = ACTIONS(1793), + [anon_sym_BANGis] = ACTIONS(1793), + [anon_sym_in] = ACTIONS(1793), + [anon_sym_BANGin] = ACTIONS(1793), + [anon_sym_match] = ACTIONS(1793), + [anon_sym_select] = ACTIONS(1793), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1793), + [anon_sym_sql] = ACTIONS(1793), + [sym_int_literal] = ACTIONS(1793), + [sym_float_literal] = ACTIONS(1793), + [sym_rune_literal] = ACTIONS(1793), + [anon_sym_SQUOTE] = ACTIONS(1793), + [anon_sym_DQUOTE] = ACTIONS(1793), + [anon_sym_c_SQUOTE] = ACTIONS(1793), + [anon_sym_c_DQUOTE] = ACTIONS(1793), + [anon_sym_r_SQUOTE] = ACTIONS(1793), + [anon_sym_r_DQUOTE] = ACTIONS(1793), + [sym_pseudo_compile_time_identifier] = ACTIONS(1793), + [anon_sym_shared] = ACTIONS(1793), + [anon_sym_map_LBRACK] = ACTIONS(1793), + [anon_sym_chan] = ACTIONS(1793), + [anon_sym_thread] = ACTIONS(1793), + [anon_sym_atomic] = ACTIONS(1793), + [anon_sym_assert] = ACTIONS(1793), + [anon_sym_defer] = ACTIONS(1793), + [anon_sym_goto] = ACTIONS(1793), + [anon_sym_break] = ACTIONS(1793), + [anon_sym_continue] = ACTIONS(1793), + [anon_sym_return] = ACTIONS(1793), + [anon_sym_DOLLARfor] = ACTIONS(1793), + [anon_sym_for] = ACTIONS(1793), + [anon_sym_POUND] = ACTIONS(1793), + [anon_sym_asm] = ACTIONS(1793), + [anon_sym_AT_LBRACK] = ACTIONS(1793), }, [980] = { [sym_line_comment] = STATE(980), [sym_block_comment] = STATE(980), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), + [sym_type_parameters] = STATE(4208), + [sym_argument_list] = STATE(1044), + [sym_or_block] = STATE(1043), + [ts_builtin_sym_end] = ACTIONS(1773), + [sym_identifier] = ACTIONS(1775), + [anon_sym_LF] = ACTIONS(1775), + [anon_sym_CR] = ACTIONS(1775), + [anon_sym_CR_LF] = ACTIONS(1775), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1889), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym___global] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_PERCENT] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), - [anon_sym_LBRACK2] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(1889), - [anon_sym_GT_GT] = ACTIONS(1889), - [anon_sym_GT_GT_GT] = ACTIONS(1889), - [anon_sym_AMP_CARET] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(1889), - [anon_sym_POUND_LBRACK] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_DOLLARelse] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [anon_sym_SQUOTE] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1889), - [anon_sym_c_SQUOTE] = ACTIONS(1889), - [anon_sym_c_DQUOTE] = ACTIONS(1889), - [anon_sym_r_SQUOTE] = ACTIONS(1889), - [anon_sym_r_DQUOTE] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [anon_sym_assert] = ACTIONS(1889), - [anon_sym_defer] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_DOLLARfor] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_asm] = ACTIONS(1889), - [anon_sym_AT_LBRACK] = ACTIONS(1889), + [anon_sym_DOT] = ACTIONS(3494), + [anon_sym_as] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(1775), + [anon_sym_const] = ACTIONS(1775), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym___global] = ACTIONS(1775), + [anon_sym_type] = ACTIONS(1775), + [anon_sym_fn] = ACTIONS(1775), + [anon_sym_PLUS] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_STAR] = ACTIONS(3542), + [anon_sym_SLASH] = ACTIONS(3542), + [anon_sym_PERCENT] = ACTIONS(3542), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_GT] = ACTIONS(3544), + [anon_sym_EQ_EQ] = ACTIONS(3544), + [anon_sym_BANG_EQ] = ACTIONS(3544), + [anon_sym_LT_EQ] = ACTIONS(3544), + [anon_sym_GT_EQ] = ACTIONS(3544), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_struct] = ACTIONS(1775), + [anon_sym_union] = ACTIONS(1775), + [anon_sym_pub] = ACTIONS(1775), + [anon_sym_mut] = ACTIONS(1775), + [anon_sym_enum] = ACTIONS(1775), + [anon_sym_interface] = ACTIONS(1775), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3512), + [anon_sym_QMARK] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_go] = ACTIONS(1775), + [anon_sym_spawn] = ACTIONS(1775), + [anon_sym_json_DOTdecode] = ACTIONS(1775), + [anon_sym_PIPE] = ACTIONS(3540), + [anon_sym_LBRACK2] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(3540), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_LT_DASH] = ACTIONS(1775), + [anon_sym_LT_LT] = ACTIONS(3542), + [anon_sym_GT_GT] = ACTIONS(3542), + [anon_sym_GT_GT_GT] = ACTIONS(3542), + [anon_sym_AMP_CARET] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_or] = ACTIONS(3524), + [sym_none] = ACTIONS(1775), + [sym_true] = ACTIONS(1775), + [sym_false] = ACTIONS(1775), + [sym_nil] = ACTIONS(1775), + [anon_sym_QMARK_DOT] = ACTIONS(3494), + [anon_sym_POUND_LBRACK] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(1775), + [anon_sym_DOLLARif] = ACTIONS(1775), + [anon_sym_is] = ACTIONS(3526), + [anon_sym_BANGis] = ACTIONS(3526), + [anon_sym_in] = ACTIONS(3550), + [anon_sym_BANGin] = ACTIONS(3550), + [anon_sym_match] = ACTIONS(1775), + [anon_sym_select] = ACTIONS(1775), + [anon_sym_lock] = ACTIONS(1775), + [anon_sym_rlock] = ACTIONS(1775), + [anon_sym_unsafe] = ACTIONS(1775), + [anon_sym_sql] = ACTIONS(1775), + [sym_int_literal] = ACTIONS(1775), + [sym_float_literal] = ACTIONS(1775), + [sym_rune_literal] = ACTIONS(1775), + [anon_sym_SQUOTE] = ACTIONS(1775), + [anon_sym_DQUOTE] = ACTIONS(1775), + [anon_sym_c_SQUOTE] = ACTIONS(1775), + [anon_sym_c_DQUOTE] = ACTIONS(1775), + [anon_sym_r_SQUOTE] = ACTIONS(1775), + [anon_sym_r_DQUOTE] = ACTIONS(1775), + [sym_pseudo_compile_time_identifier] = ACTIONS(1775), + [anon_sym_shared] = ACTIONS(1775), + [anon_sym_map_LBRACK] = ACTIONS(1775), + [anon_sym_chan] = ACTIONS(1775), + [anon_sym_thread] = ACTIONS(1775), + [anon_sym_atomic] = ACTIONS(1775), + [anon_sym_assert] = ACTIONS(1775), + [anon_sym_defer] = ACTIONS(1775), + [anon_sym_goto] = ACTIONS(1775), + [anon_sym_break] = ACTIONS(1775), + [anon_sym_continue] = ACTIONS(1775), + [anon_sym_return] = ACTIONS(1775), + [anon_sym_DOLLARfor] = ACTIONS(1775), + [anon_sym_for] = ACTIONS(1775), + [anon_sym_POUND] = ACTIONS(1775), + [anon_sym_asm] = ACTIONS(1775), + [anon_sym_AT_LBRACK] = ACTIONS(1775), }, [981] = { [sym_line_comment] = STATE(981), [sym_block_comment] = STATE(981), - [sym_reference_expression] = STATE(4323), - [sym_type_reference_expression] = STATE(1277), - [sym_plain_type] = STATE(1323), - [sym__plain_type_without_special] = STATE(1296), - [sym_anon_struct_type] = STATE(1299), - [sym_multi_return_type] = STATE(1296), - [sym_result_type] = STATE(1296), - [sym_option_type] = STATE(1296), - [sym_qualified_type] = STATE(1277), - [sym_fixed_array_type] = STATE(1299), - [sym_array_type] = STATE(1299), - [sym_pointer_type] = STATE(1299), - [sym_wrong_pointer_type] = STATE(1299), - [sym_map_type] = STATE(1299), - [sym_channel_type] = STATE(1299), - [sym_shared_type] = STATE(1299), - [sym_thread_type] = STATE(1299), - [sym_atomic_type] = STATE(1299), - [sym_generic_type] = STATE(1299), - [sym_function_type] = STATE(1299), - [sym_identifier] = ACTIONS(3566), + [sym_reference_expression] = STATE(4428), + [sym_type_reference_expression] = STATE(1286), + [sym_plain_type] = STATE(1364), + [sym__plain_type_without_special] = STATE(1334), + [sym_anon_struct_type] = STATE(1340), + [sym_multi_return_type] = STATE(1334), + [sym_result_type] = STATE(1334), + [sym_option_type] = STATE(1334), + [sym_qualified_type] = STATE(1286), + [sym_fixed_array_type] = STATE(1340), + [sym_array_type] = STATE(1340), + [sym_pointer_type] = STATE(1340), + [sym_wrong_pointer_type] = STATE(1340), + [sym_map_type] = STATE(1340), + [sym_channel_type] = STATE(1340), + [sym_shared_type] = STATE(1340), + [sym_thread_type] = STATE(1340), + [sym_atomic_type] = STATE(1340), + [sym_generic_type] = STATE(1340), + [sym_function_type] = STATE(1340), + [sym_identifier] = ACTIONS(3570), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_RBRACE] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_fn] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(599), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(599), + [anon_sym_BANG_EQ] = ACTIONS(599), + [anon_sym_LT_EQ] = ACTIONS(599), + [anon_sym_GT_EQ] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_RBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(3578), + [anon_sym_mut] = ACTIONS(601), + [anon_sym_COLON] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(3580), + [anon_sym_BANG] = ACTIONS(3582), + [anon_sym_go] = ACTIONS(601), + [anon_sym_spawn] = ACTIONS(601), + [anon_sym_json_DOTdecode] = ACTIONS(599), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_LBRACK2] = ACTIONS(3584), + [anon_sym_TILDE] = ACTIONS(599), + [anon_sym_CARET] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(3586), + [anon_sym_LT_DASH] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(599), + [anon_sym_AMP_CARET] = ACTIONS(599), + [anon_sym_AMP_AMP] = ACTIONS(599), + [anon_sym_PIPE_PIPE] = ACTIONS(599), + [anon_sym_or] = ACTIONS(601), + [sym_none] = ACTIONS(601), + [sym_true] = ACTIONS(601), + [sym_false] = ACTIONS(601), + [sym_nil] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(599), + [anon_sym_POUND_LBRACK] = ACTIONS(599), + [anon_sym_if] = ACTIONS(601), + [anon_sym_DOLLARif] = ACTIONS(601), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(599), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(599), + [anon_sym_match] = ACTIONS(601), + [anon_sym_select] = ACTIONS(601), + [anon_sym_lock] = ACTIONS(601), + [anon_sym_rlock] = ACTIONS(601), + [anon_sym_unsafe] = ACTIONS(601), + [anon_sym_sql] = ACTIONS(601), + [sym_int_literal] = ACTIONS(601), + [sym_float_literal] = ACTIONS(599), + [sym_rune_literal] = ACTIONS(599), + [anon_sym_SQUOTE] = ACTIONS(599), + [anon_sym_DQUOTE] = ACTIONS(599), + [anon_sym_c_SQUOTE] = ACTIONS(599), + [anon_sym_c_DQUOTE] = ACTIONS(599), + [anon_sym_r_SQUOTE] = ACTIONS(599), + [anon_sym_r_DQUOTE] = ACTIONS(599), + [sym_pseudo_compile_time_identifier] = ACTIONS(601), + [anon_sym_shared] = ACTIONS(3588), + [anon_sym_map_LBRACK] = ACTIONS(3590), + [anon_sym_chan] = ACTIONS(3592), + [anon_sym_thread] = ACTIONS(3594), + [anon_sym_atomic] = ACTIONS(3596), + }, + [982] = { + [sym_line_comment] = STATE(982), + [sym_block_comment] = STATE(982), + [sym_reference_expression] = STATE(4428), + [sym_type_reference_expression] = STATE(1286), + [sym_plain_type] = STATE(1348), + [sym__plain_type_without_special] = STATE(1334), + [sym_anon_struct_type] = STATE(1340), + [sym_multi_return_type] = STATE(1334), + [sym_result_type] = STATE(1334), + [sym_option_type] = STATE(1334), + [sym_qualified_type] = STATE(1286), + [sym_fixed_array_type] = STATE(1340), + [sym_array_type] = STATE(1340), + [sym_pointer_type] = STATE(1340), + [sym_wrong_pointer_type] = STATE(1340), + [sym_map_type] = STATE(1340), + [sym_channel_type] = STATE(1340), + [sym_shared_type] = STATE(1340), + [sym_thread_type] = STATE(1340), + [sym_atomic_type] = STATE(1340), + [sym_generic_type] = STATE(1340), + [sym_function_type] = STATE(1340), + [sym_identifier] = ACTIONS(3570), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(567), @@ -135408,12 +135818,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(563), [anon_sym_COMMA] = ACTIONS(563), [anon_sym_RBRACE] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3568), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(3570), + [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_fn] = ACTIONS(3574), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3572), + [anon_sym_STAR] = ACTIONS(3576), [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(563), [anon_sym_LT] = ACTIONS(567), @@ -135424,20 +135833,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(563), [anon_sym_LBRACK] = ACTIONS(563), [anon_sym_RBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(3574), + [anon_sym_struct] = ACTIONS(3578), [anon_sym_mut] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(563), [anon_sym_PLUS_PLUS] = ACTIONS(563), [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3578), + [anon_sym_QMARK] = ACTIONS(3580), + [anon_sym_BANG] = ACTIONS(3582), [anon_sym_go] = ACTIONS(567), [anon_sym_spawn] = ACTIONS(567), [anon_sym_json_DOTdecode] = ACTIONS(563), - [anon_sym_LBRACK2] = ACTIONS(3580), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_LBRACK2] = ACTIONS(3584), [anon_sym_TILDE] = ACTIONS(563), [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(3582), + [anon_sym_AMP] = ACTIONS(3586), [anon_sym_LT_DASH] = ACTIONS(563), [anon_sym_LT_LT] = ACTIONS(563), [anon_sym_GT_GT] = ACTIONS(567), @@ -135474,36 +135884,654 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r_SQUOTE] = ACTIONS(563), [anon_sym_r_DQUOTE] = ACTIONS(563), [sym_pseudo_compile_time_identifier] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(3584), - [anon_sym_map_LBRACK] = ACTIONS(3586), - [anon_sym_chan] = ACTIONS(3588), - [anon_sym_thread] = ACTIONS(3590), - [anon_sym_atomic] = ACTIONS(3592), + [anon_sym_shared] = ACTIONS(3588), + [anon_sym_map_LBRACK] = ACTIONS(3590), + [anon_sym_chan] = ACTIONS(3592), + [anon_sym_thread] = ACTIONS(3594), + [anon_sym_atomic] = ACTIONS(3596), }, - [982] = { - [sym_line_comment] = STATE(982), - [sym_block_comment] = STATE(982), - [sym_reference_expression] = STATE(4323), - [sym_type_reference_expression] = STATE(1277), - [sym_plain_type] = STATE(1311), - [sym__plain_type_without_special] = STATE(1296), - [sym_anon_struct_type] = STATE(1299), - [sym_multi_return_type] = STATE(1296), - [sym_result_type] = STATE(1296), - [sym_option_type] = STATE(1296), - [sym_qualified_type] = STATE(1277), - [sym_fixed_array_type] = STATE(1299), - [sym_array_type] = STATE(1299), - [sym_pointer_type] = STATE(1299), - [sym_wrong_pointer_type] = STATE(1299), - [sym_map_type] = STATE(1299), - [sym_channel_type] = STATE(1299), - [sym_shared_type] = STATE(1299), - [sym_thread_type] = STATE(1299), - [sym_atomic_type] = STATE(1299), - [sym_generic_type] = STATE(1299), - [sym_function_type] = STATE(1299), - [sym_identifier] = ACTIONS(3566), + [983] = { + [sym_line_comment] = STATE(983), + [sym_block_comment] = STATE(983), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2421), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(609), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_as] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_RBRACE] = ACTIONS(607), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(3600), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_LT_EQ] = ACTIONS(607), + [anon_sym_GT_EQ] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_RBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_mut] = ACTIONS(611), + [anon_sym_COLON] = ACTIONS(607), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3602), + [anon_sym_go] = ACTIONS(611), + [anon_sym_spawn] = ACTIONS(611), + [anon_sym_json_DOTdecode] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_TILDE] = ACTIONS(607), + [anon_sym_CARET] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_DASH] = ACTIONS(607), + [anon_sym_LT_LT] = ACTIONS(607), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(607), + [anon_sym_AMP_CARET] = ACTIONS(607), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [anon_sym_or] = ACTIONS(611), + [sym_none] = ACTIONS(611), + [sym_true] = ACTIONS(611), + [sym_false] = ACTIONS(611), + [sym_nil] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(607), + [anon_sym_POUND_LBRACK] = ACTIONS(607), + [anon_sym_if] = ACTIONS(611), + [anon_sym_DOLLARif] = ACTIONS(611), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(607), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(607), + [anon_sym_match] = ACTIONS(611), + [anon_sym_select] = ACTIONS(611), + [anon_sym_lock] = ACTIONS(611), + [anon_sym_rlock] = ACTIONS(611), + [anon_sym_unsafe] = ACTIONS(611), + [anon_sym_sql] = ACTIONS(611), + [sym_int_literal] = ACTIONS(611), + [sym_float_literal] = ACTIONS(607), + [sym_rune_literal] = ACTIONS(607), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [anon_sym_c_SQUOTE] = ACTIONS(607), + [anon_sym_c_DQUOTE] = ACTIONS(607), + [anon_sym_r_SQUOTE] = ACTIONS(607), + [anon_sym_r_DQUOTE] = ACTIONS(607), + [sym_pseudo_compile_time_identifier] = ACTIONS(611), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [984] = { + [sym_line_comment] = STATE(984), + [sym_block_comment] = STATE(984), + [sym_reference_expression] = STATE(4428), + [sym_type_reference_expression] = STATE(1286), + [sym_plain_type] = STATE(1371), + [sym__plain_type_without_special] = STATE(1334), + [sym_anon_struct_type] = STATE(1340), + [sym_multi_return_type] = STATE(1334), + [sym_result_type] = STATE(1334), + [sym_option_type] = STATE(1334), + [sym_qualified_type] = STATE(1286), + [sym_fixed_array_type] = STATE(1340), + [sym_array_type] = STATE(1340), + [sym_pointer_type] = STATE(1340), + [sym_wrong_pointer_type] = STATE(1340), + [sym_map_type] = STATE(1340), + [sym_channel_type] = STATE(1340), + [sym_shared_type] = STATE(1340), + [sym_thread_type] = STATE(1340), + [sym_atomic_type] = STATE(1340), + [sym_generic_type] = STATE(1340), + [sym_function_type] = STATE(1340), + [sym_identifier] = ACTIONS(3570), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(605), + [anon_sym_as] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RBRACE] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_fn] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_BANG_EQ] = ACTIONS(603), + [anon_sym_LT_EQ] = ACTIONS(603), + [anon_sym_GT_EQ] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_RBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(3578), + [anon_sym_mut] = ACTIONS(605), + [anon_sym_COLON] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(3580), + [anon_sym_BANG] = ACTIONS(3582), + [anon_sym_go] = ACTIONS(605), + [anon_sym_spawn] = ACTIONS(605), + [anon_sym_json_DOTdecode] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_LBRACK2] = ACTIONS(3584), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(3586), + [anon_sym_LT_DASH] = ACTIONS(603), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_GT_GT_GT] = ACTIONS(603), + [anon_sym_AMP_CARET] = ACTIONS(603), + [anon_sym_AMP_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(603), + [anon_sym_or] = ACTIONS(605), + [sym_none] = ACTIONS(605), + [sym_true] = ACTIONS(605), + [sym_false] = ACTIONS(605), + [sym_nil] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(603), + [anon_sym_if] = ACTIONS(605), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_is] = ACTIONS(605), + [anon_sym_BANGis] = ACTIONS(603), + [anon_sym_in] = ACTIONS(605), + [anon_sym_BANGin] = ACTIONS(603), + [anon_sym_match] = ACTIONS(605), + [anon_sym_select] = ACTIONS(605), + [anon_sym_lock] = ACTIONS(605), + [anon_sym_rlock] = ACTIONS(605), + [anon_sym_unsafe] = ACTIONS(605), + [anon_sym_sql] = ACTIONS(605), + [sym_int_literal] = ACTIONS(605), + [sym_float_literal] = ACTIONS(603), + [sym_rune_literal] = ACTIONS(603), + [anon_sym_SQUOTE] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(603), + [anon_sym_c_SQUOTE] = ACTIONS(603), + [anon_sym_c_DQUOTE] = ACTIONS(603), + [anon_sym_r_SQUOTE] = ACTIONS(603), + [anon_sym_r_DQUOTE] = ACTIONS(603), + [sym_pseudo_compile_time_identifier] = ACTIONS(605), + [anon_sym_shared] = ACTIONS(3588), + [anon_sym_map_LBRACK] = ACTIONS(3590), + [anon_sym_chan] = ACTIONS(3592), + [anon_sym_thread] = ACTIONS(3594), + [anon_sym_atomic] = ACTIONS(3596), + }, + [985] = { + [sym_line_comment] = STATE(985), + [sym_block_comment] = STATE(985), + [ts_builtin_sym_end] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1837), + [anon_sym_LF] = ACTIONS(1837), + [anon_sym_CR] = ACTIONS(1837), + [anon_sym_CR_LF] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_as] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_const] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym___global] = ACTIONS(1837), + [anon_sym_type] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_struct] = ACTIONS(1837), + [anon_sym_union] = ACTIONS(1837), + [anon_sym_pub] = ACTIONS(1837), + [anon_sym_mut] = ACTIONS(1837), + [anon_sym_enum] = ACTIONS(1837), + [anon_sym_interface] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_QMARK] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_go] = ACTIONS(1837), + [anon_sym_spawn] = ACTIONS(1837), + [anon_sym_json_DOTdecode] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_LBRACK2] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_AMP_CARET] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [sym_none] = ACTIONS(1837), + [sym_true] = ACTIONS(1837), + [sym_false] = ACTIONS(1837), + [sym_nil] = ACTIONS(1837), + [anon_sym_QMARK_DOT] = ACTIONS(1837), + [anon_sym_POUND_LBRACK] = ACTIONS(1837), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_DOLLARif] = ACTIONS(1837), + [anon_sym_DOLLARelse] = ACTIONS(1837), + [anon_sym_is] = ACTIONS(1837), + [anon_sym_BANGis] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_BANGin] = ACTIONS(1837), + [anon_sym_match] = ACTIONS(1837), + [anon_sym_select] = ACTIONS(1837), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1837), + [anon_sym_sql] = ACTIONS(1837), + [sym_int_literal] = ACTIONS(1837), + [sym_float_literal] = ACTIONS(1837), + [sym_rune_literal] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_c_SQUOTE] = ACTIONS(1837), + [anon_sym_c_DQUOTE] = ACTIONS(1837), + [anon_sym_r_SQUOTE] = ACTIONS(1837), + [anon_sym_r_DQUOTE] = ACTIONS(1837), + [sym_pseudo_compile_time_identifier] = ACTIONS(1837), + [anon_sym_shared] = ACTIONS(1837), + [anon_sym_map_LBRACK] = ACTIONS(1837), + [anon_sym_chan] = ACTIONS(1837), + [anon_sym_thread] = ACTIONS(1837), + [anon_sym_atomic] = ACTIONS(1837), + [anon_sym_assert] = ACTIONS(1837), + [anon_sym_defer] = ACTIONS(1837), + [anon_sym_goto] = ACTIONS(1837), + [anon_sym_break] = ACTIONS(1837), + [anon_sym_continue] = ACTIONS(1837), + [anon_sym_return] = ACTIONS(1837), + [anon_sym_DOLLARfor] = ACTIONS(1837), + [anon_sym_for] = ACTIONS(1837), + [anon_sym_POUND] = ACTIONS(1837), + [anon_sym_asm] = ACTIONS(1837), + [anon_sym_AT_LBRACK] = ACTIONS(1837), + }, + [986] = { + [sym_line_comment] = STATE(986), + [sym_block_comment] = STATE(986), + [sym_type_parameters] = STATE(1036), + [ts_builtin_sym_end] = ACTIONS(1943), + [sym_identifier] = ACTIONS(1945), + [anon_sym_LF] = ACTIONS(1945), + [anon_sym_CR] = ACTIONS(1945), + [anon_sym_CR_LF] = ACTIONS(1945), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1945), + [anon_sym_as] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1945), + [anon_sym_COMMA] = ACTIONS(1945), + [anon_sym_const] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym___global] = ACTIONS(1945), + [anon_sym_type] = ACTIONS(1945), + [anon_sym_fn] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1945), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_SLASH] = ACTIONS(1945), + [anon_sym_PERCENT] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1945), + [anon_sym_GT] = ACTIONS(1945), + [anon_sym_EQ_EQ] = ACTIONS(1945), + [anon_sym_BANG_EQ] = ACTIONS(1945), + [anon_sym_LT_EQ] = ACTIONS(1945), + [anon_sym_GT_EQ] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1943), + [anon_sym_struct] = ACTIONS(1945), + [anon_sym_union] = ACTIONS(1945), + [anon_sym_pub] = ACTIONS(1945), + [anon_sym_mut] = ACTIONS(1945), + [anon_sym_enum] = ACTIONS(1945), + [anon_sym_interface] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), + [anon_sym_QMARK] = ACTIONS(1945), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_go] = ACTIONS(1945), + [anon_sym_spawn] = ACTIONS(1945), + [anon_sym_json_DOTdecode] = ACTIONS(1945), + [anon_sym_PIPE] = ACTIONS(1945), + [anon_sym_LBRACK2] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), + [anon_sym_LT_DASH] = ACTIONS(1945), + [anon_sym_LT_LT] = ACTIONS(1945), + [anon_sym_GT_GT] = ACTIONS(1945), + [anon_sym_GT_GT_GT] = ACTIONS(1945), + [anon_sym_AMP_CARET] = ACTIONS(1945), + [anon_sym_AMP_AMP] = ACTIONS(1945), + [anon_sym_PIPE_PIPE] = ACTIONS(1945), + [anon_sym_or] = ACTIONS(1945), + [sym_none] = ACTIONS(1945), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_nil] = ACTIONS(1945), + [anon_sym_QMARK_DOT] = ACTIONS(1945), + [anon_sym_POUND_LBRACK] = ACTIONS(1945), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_DOLLARif] = ACTIONS(1945), + [anon_sym_is] = ACTIONS(1945), + [anon_sym_BANGis] = ACTIONS(1945), + [anon_sym_in] = ACTIONS(1945), + [anon_sym_BANGin] = ACTIONS(1945), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_select] = ACTIONS(1945), + [anon_sym_lock] = ACTIONS(1945), + [anon_sym_rlock] = ACTIONS(1945), + [anon_sym_unsafe] = ACTIONS(1945), + [anon_sym_sql] = ACTIONS(1945), + [sym_int_literal] = ACTIONS(1945), + [sym_float_literal] = ACTIONS(1945), + [sym_rune_literal] = ACTIONS(1945), + [anon_sym_SQUOTE] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(1945), + [anon_sym_c_SQUOTE] = ACTIONS(1945), + [anon_sym_c_DQUOTE] = ACTIONS(1945), + [anon_sym_r_SQUOTE] = ACTIONS(1945), + [anon_sym_r_DQUOTE] = ACTIONS(1945), + [sym_pseudo_compile_time_identifier] = ACTIONS(1945), + [anon_sym_shared] = ACTIONS(1945), + [anon_sym_map_LBRACK] = ACTIONS(1945), + [anon_sym_chan] = ACTIONS(1945), + [anon_sym_thread] = ACTIONS(1945), + [anon_sym_atomic] = ACTIONS(1945), + [anon_sym_assert] = ACTIONS(1945), + [anon_sym_defer] = ACTIONS(1945), + [anon_sym_goto] = ACTIONS(1945), + [anon_sym_break] = ACTIONS(1945), + [anon_sym_continue] = ACTIONS(1945), + [anon_sym_return] = ACTIONS(1945), + [anon_sym_DOLLARfor] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1945), + [anon_sym_POUND] = ACTIONS(1945), + [anon_sym_asm] = ACTIONS(1945), + [anon_sym_AT_LBRACK] = ACTIONS(1945), + }, + [987] = { + [sym_line_comment] = STATE(987), + [sym_block_comment] = STATE(987), + [ts_builtin_sym_end] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1837), + [anon_sym_LF] = ACTIONS(1837), + [anon_sym_CR] = ACTIONS(1837), + [anon_sym_CR_LF] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_as] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_const] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym___global] = ACTIONS(1837), + [anon_sym_type] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_struct] = ACTIONS(1837), + [anon_sym_union] = ACTIONS(1837), + [anon_sym_pub] = ACTIONS(1837), + [anon_sym_mut] = ACTIONS(1837), + [anon_sym_enum] = ACTIONS(1837), + [anon_sym_interface] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_QMARK] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_go] = ACTIONS(1837), + [anon_sym_spawn] = ACTIONS(1837), + [anon_sym_json_DOTdecode] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_LBRACK2] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_AMP_CARET] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [sym_none] = ACTIONS(1837), + [sym_true] = ACTIONS(1837), + [sym_false] = ACTIONS(1837), + [sym_nil] = ACTIONS(1837), + [anon_sym_QMARK_DOT] = ACTIONS(1837), + [anon_sym_POUND_LBRACK] = ACTIONS(1837), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_else] = ACTIONS(1837), + [anon_sym_DOLLARif] = ACTIONS(1837), + [anon_sym_is] = ACTIONS(1837), + [anon_sym_BANGis] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_BANGin] = ACTIONS(1837), + [anon_sym_match] = ACTIONS(1837), + [anon_sym_select] = ACTIONS(1837), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1837), + [anon_sym_sql] = ACTIONS(1837), + [sym_int_literal] = ACTIONS(1837), + [sym_float_literal] = ACTIONS(1837), + [sym_rune_literal] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_c_SQUOTE] = ACTIONS(1837), + [anon_sym_c_DQUOTE] = ACTIONS(1837), + [anon_sym_r_SQUOTE] = ACTIONS(1837), + [anon_sym_r_DQUOTE] = ACTIONS(1837), + [sym_pseudo_compile_time_identifier] = ACTIONS(1837), + [anon_sym_shared] = ACTIONS(1837), + [anon_sym_map_LBRACK] = ACTIONS(1837), + [anon_sym_chan] = ACTIONS(1837), + [anon_sym_thread] = ACTIONS(1837), + [anon_sym_atomic] = ACTIONS(1837), + [anon_sym_assert] = ACTIONS(1837), + [anon_sym_defer] = ACTIONS(1837), + [anon_sym_goto] = ACTIONS(1837), + [anon_sym_break] = ACTIONS(1837), + [anon_sym_continue] = ACTIONS(1837), + [anon_sym_return] = ACTIONS(1837), + [anon_sym_DOLLARfor] = ACTIONS(1837), + [anon_sym_for] = ACTIONS(1837), + [anon_sym_POUND] = ACTIONS(1837), + [anon_sym_asm] = ACTIONS(1837), + [anon_sym_AT_LBRACK] = ACTIONS(1837), + }, + [988] = { + [sym_line_comment] = STATE(988), + [sym_block_comment] = STATE(988), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1853), + [anon_sym_as] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_COMMA] = ACTIONS(1853), + [anon_sym_const] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1853), + [anon_sym___global] = ACTIONS(1853), + [anon_sym_type] = 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(1851), + [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(1853), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_go] = ACTIONS(1853), + [anon_sym_spawn] = ACTIONS(1853), + [anon_sym_json_DOTdecode] = ACTIONS(1853), + [anon_sym_PIPE] = ACTIONS(1853), + [anon_sym_LBRACK2] = ACTIONS(1853), + [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(1853), + [anon_sym_POUND_LBRACK] = ACTIONS(1853), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_DOLLARif] = ACTIONS(1853), + [anon_sym_DOLLARelse] = ACTIONS(3604), + [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), + [anon_sym_SQUOTE] = ACTIONS(1853), + [anon_sym_DQUOTE] = ACTIONS(1853), + [anon_sym_c_SQUOTE] = ACTIONS(1853), + [anon_sym_c_DQUOTE] = ACTIONS(1853), + [anon_sym_r_SQUOTE] = ACTIONS(1853), + [anon_sym_r_DQUOTE] = 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), + }, + [989] = { + [sym_line_comment] = STATE(989), + [sym_block_comment] = STATE(989), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2418), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(597), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(597), @@ -135511,12 +136539,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(595), [anon_sym_COMMA] = ACTIONS(595), [anon_sym_RBRACE] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(3568), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(3570), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_fn] = ACTIONS(597), [anon_sym_PLUS] = ACTIONS(597), [anon_sym_DASH] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(3572), + [anon_sym_STAR] = ACTIONS(595), [anon_sym_SLASH] = ACTIONS(597), [anon_sym_PERCENT] = ACTIONS(595), [anon_sym_LT] = ACTIONS(597), @@ -135527,20 +136554,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(595), [anon_sym_LBRACK] = ACTIONS(595), [anon_sym_RBRACK] = ACTIONS(595), - [anon_sym_struct] = ACTIONS(3574), + [anon_sym_struct] = ACTIONS(597), [anon_sym_mut] = ACTIONS(597), [anon_sym_COLON] = ACTIONS(595), [anon_sym_PLUS_PLUS] = ACTIONS(595), [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3578), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), [anon_sym_go] = ACTIONS(597), [anon_sym_spawn] = ACTIONS(597), [anon_sym_json_DOTdecode] = ACTIONS(595), - [anon_sym_LBRACK2] = ACTIONS(3580), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), [anon_sym_TILDE] = ACTIONS(595), [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(3582), + [anon_sym_AMP] = ACTIONS(597), [anon_sym_LT_DASH] = ACTIONS(595), [anon_sym_LT_LT] = ACTIONS(595), [anon_sym_GT_GT] = ACTIONS(597), @@ -135577,118 +136605,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r_SQUOTE] = ACTIONS(595), [anon_sym_r_DQUOTE] = ACTIONS(595), [sym_pseudo_compile_time_identifier] = ACTIONS(597), - [anon_sym_shared] = ACTIONS(3584), - [anon_sym_map_LBRACK] = ACTIONS(3586), - [anon_sym_chan] = ACTIONS(3588), - [anon_sym_thread] = ACTIONS(3590), - [anon_sym_atomic] = ACTIONS(3592), + [anon_sym_shared] = ACTIONS(597), + [anon_sym_map_LBRACK] = ACTIONS(595), + [anon_sym_chan] = ACTIONS(597), + [anon_sym_thread] = ACTIONS(597), + [anon_sym_atomic] = ACTIONS(597), }, - [983] = { - [sym_line_comment] = STATE(983), - [sym_block_comment] = STATE(983), - [sym_reference_expression] = STATE(4323), - [sym_type_reference_expression] = STATE(1277), - [sym_plain_type] = STATE(1302), - [sym__plain_type_without_special] = STATE(1296), - [sym_anon_struct_type] = STATE(1299), - [sym_multi_return_type] = STATE(1296), - [sym_result_type] = STATE(1296), - [sym_option_type] = STATE(1296), - [sym_qualified_type] = STATE(1277), - [sym_fixed_array_type] = STATE(1299), - [sym_array_type] = STATE(1299), - [sym_pointer_type] = STATE(1299), - [sym_wrong_pointer_type] = STATE(1299), - [sym_map_type] = STATE(1299), - [sym_channel_type] = STATE(1299), - [sym_shared_type] = STATE(1299), - [sym_thread_type] = STATE(1299), - [sym_atomic_type] = STATE(1299), - [sym_generic_type] = STATE(1299), - [sym_function_type] = STATE(1299), - [sym_identifier] = ACTIONS(3566), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(601), - [anon_sym_as] = ACTIONS(601), - [anon_sym_LBRACE] = ACTIONS(599), - [anon_sym_COMMA] = ACTIONS(599), - [anon_sym_RBRACE] = ACTIONS(599), - [anon_sym_LPAREN] = ACTIONS(3568), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(3570), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(3572), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(599), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(599), - [anon_sym_BANG_EQ] = ACTIONS(599), - [anon_sym_LT_EQ] = ACTIONS(599), - [anon_sym_GT_EQ] = ACTIONS(599), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_RBRACK] = ACTIONS(599), - [anon_sym_struct] = ACTIONS(3574), - [anon_sym_mut] = ACTIONS(601), - [anon_sym_COLON] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_QMARK] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3578), - [anon_sym_go] = ACTIONS(601), - [anon_sym_spawn] = ACTIONS(601), - [anon_sym_json_DOTdecode] = ACTIONS(599), - [anon_sym_LBRACK2] = ACTIONS(3580), - [anon_sym_TILDE] = ACTIONS(599), - [anon_sym_CARET] = ACTIONS(599), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(599), - [anon_sym_LT_LT] = ACTIONS(599), - [anon_sym_GT_GT] = ACTIONS(601), - [anon_sym_GT_GT_GT] = ACTIONS(599), - [anon_sym_AMP_CARET] = ACTIONS(599), - [anon_sym_AMP_AMP] = ACTIONS(599), - [anon_sym_PIPE_PIPE] = ACTIONS(599), - [anon_sym_or] = ACTIONS(601), - [sym_none] = ACTIONS(601), - [sym_true] = ACTIONS(601), - [sym_false] = ACTIONS(601), - [sym_nil] = ACTIONS(601), - [anon_sym_QMARK_DOT] = ACTIONS(599), - [anon_sym_POUND_LBRACK] = ACTIONS(599), - [anon_sym_if] = ACTIONS(601), - [anon_sym_DOLLARif] = ACTIONS(601), - [anon_sym_is] = ACTIONS(601), - [anon_sym_BANGis] = ACTIONS(599), - [anon_sym_in] = ACTIONS(601), - [anon_sym_BANGin] = ACTIONS(599), - [anon_sym_match] = ACTIONS(601), - [anon_sym_select] = ACTIONS(601), - [anon_sym_lock] = ACTIONS(601), - [anon_sym_rlock] = ACTIONS(601), - [anon_sym_unsafe] = ACTIONS(601), - [anon_sym_sql] = ACTIONS(601), - [sym_int_literal] = ACTIONS(601), - [sym_float_literal] = ACTIONS(599), - [sym_rune_literal] = ACTIONS(599), - [anon_sym_SQUOTE] = ACTIONS(599), - [anon_sym_DQUOTE] = ACTIONS(599), - [anon_sym_c_SQUOTE] = ACTIONS(599), - [anon_sym_c_DQUOTE] = ACTIONS(599), - [anon_sym_r_SQUOTE] = ACTIONS(599), - [anon_sym_r_DQUOTE] = ACTIONS(599), - [sym_pseudo_compile_time_identifier] = ACTIONS(601), - [anon_sym_shared] = ACTIONS(3584), - [anon_sym_map_LBRACK] = ACTIONS(3586), - [anon_sym_chan] = ACTIONS(3588), - [anon_sym_thread] = ACTIONS(3590), - [anon_sym_atomic] = ACTIONS(3592), + [990] = { + [sym_line_comment] = STATE(990), + [sym_block_comment] = STATE(990), + [ts_builtin_sym_end] = ACTIONS(1875), + [sym_identifier] = ACTIONS(1877), + [anon_sym_LF] = ACTIONS(1877), + [anon_sym_CR] = ACTIONS(1877), + [anon_sym_CR_LF] = ACTIONS(1877), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1877), + [anon_sym_as] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_const] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym___global] = ACTIONS(1877), + [anon_sym_type] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1877), + [anon_sym_union] = ACTIONS(1877), + [anon_sym_pub] = ACTIONS(1877), + [anon_sym_mut] = ACTIONS(1877), + [anon_sym_enum] = ACTIONS(1877), + [anon_sym_interface] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_QMARK] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_go] = ACTIONS(1877), + [anon_sym_spawn] = ACTIONS(1877), + [anon_sym_json_DOTdecode] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_LBRACK2] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT] = ACTIONS(1877), + [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(1877), + [sym_none] = ACTIONS(1877), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [sym_nil] = ACTIONS(1877), + [anon_sym_QMARK_DOT] = ACTIONS(1877), + [anon_sym_POUND_LBRACK] = ACTIONS(1877), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_DOLLARif] = ACTIONS(1877), + [anon_sym_DOLLARelse] = ACTIONS(1877), + [anon_sym_is] = ACTIONS(1877), + [anon_sym_BANGis] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_BANGin] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1877), + [anon_sym_select] = ACTIONS(1877), + [anon_sym_lock] = ACTIONS(1877), + [anon_sym_rlock] = ACTIONS(1877), + [anon_sym_unsafe] = ACTIONS(1877), + [anon_sym_sql] = ACTIONS(1877), + [sym_int_literal] = ACTIONS(1877), + [sym_float_literal] = ACTIONS(1877), + [sym_rune_literal] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_c_SQUOTE] = ACTIONS(1877), + [anon_sym_c_DQUOTE] = ACTIONS(1877), + [anon_sym_r_SQUOTE] = ACTIONS(1877), + [anon_sym_r_DQUOTE] = ACTIONS(1877), + [sym_pseudo_compile_time_identifier] = ACTIONS(1877), + [anon_sym_shared] = ACTIONS(1877), + [anon_sym_map_LBRACK] = ACTIONS(1877), + [anon_sym_chan] = ACTIONS(1877), + [anon_sym_thread] = ACTIONS(1877), + [anon_sym_atomic] = ACTIONS(1877), + [anon_sym_assert] = ACTIONS(1877), + [anon_sym_defer] = ACTIONS(1877), + [anon_sym_goto] = ACTIONS(1877), + [anon_sym_break] = ACTIONS(1877), + [anon_sym_continue] = ACTIONS(1877), + [anon_sym_return] = ACTIONS(1877), + [anon_sym_DOLLARfor] = ACTIONS(1877), + [anon_sym_for] = ACTIONS(1877), + [anon_sym_POUND] = ACTIONS(1877), + [anon_sym_asm] = ACTIONS(1877), + [anon_sym_AT_LBRACK] = ACTIONS(1877), }, - [984] = { - [sym_line_comment] = STATE(984), - [sym_block_comment] = STATE(984), + [991] = { + [sym_line_comment] = STATE(991), + [sym_block_comment] = STATE(991), [ts_builtin_sym_end] = ACTIONS(2077), [sym_identifier] = ACTIONS(2079), [anon_sym_LF] = ACTIONS(2079), @@ -135704,7 +136732,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(2079), [anon_sym___global] = ACTIONS(2079), [anon_sym_type] = ACTIONS(2079), - [anon_sym_PIPE] = ACTIONS(2079), [anon_sym_fn] = ACTIONS(2079), [anon_sym_PLUS] = ACTIONS(2079), [anon_sym_DASH] = ACTIONS(2079), @@ -135731,6 +136758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(2079), [anon_sym_spawn] = ACTIONS(2079), [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_PIPE] = ACTIONS(2079), [anon_sym_LBRACK2] = ACTIONS(2079), [anon_sym_TILDE] = ACTIONS(2079), [anon_sym_CARET] = ACTIONS(2079), @@ -135751,7 +136779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_LBRACK] = ACTIONS(2079), [anon_sym_if] = ACTIONS(2079), [anon_sym_DOLLARif] = ACTIONS(2079), - [anon_sym_DOLLARelse] = ACTIONS(3594), + [anon_sym_DOLLARelse] = ACTIONS(3606), [anon_sym_is] = ACTIONS(2079), [anon_sym_BANGis] = ACTIONS(2079), [anon_sym_in] = ACTIONS(2079), @@ -135789,3994 +136817,2152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2079), [anon_sym_AT_LBRACK] = ACTIONS(2079), }, - [985] = { - [sym_line_comment] = STATE(985), - [sym_block_comment] = STATE(985), - [ts_builtin_sym_end] = ACTIONS(2039), - [sym_identifier] = ACTIONS(2041), - [anon_sym_LF] = ACTIONS(2041), - [anon_sym_CR] = ACTIONS(2041), - [anon_sym_CR_LF] = ACTIONS(2041), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2041), - [anon_sym_as] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(2041), - [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym___global] = ACTIONS(2041), - [anon_sym_type] = ACTIONS(2041), - [anon_sym_PIPE] = ACTIONS(2041), - [anon_sym_fn] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2041), - [anon_sym_SLASH] = ACTIONS(2041), - [anon_sym_PERCENT] = ACTIONS(2041), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_GT] = ACTIONS(2041), - [anon_sym_EQ_EQ] = ACTIONS(2041), - [anon_sym_BANG_EQ] = ACTIONS(2041), - [anon_sym_LT_EQ] = ACTIONS(2041), - [anon_sym_GT_EQ] = ACTIONS(2041), - [anon_sym_LBRACK] = ACTIONS(2039), - [anon_sym_struct] = ACTIONS(2041), - [anon_sym_union] = ACTIONS(2041), - [anon_sym_pub] = ACTIONS(2041), - [anon_sym_mut] = ACTIONS(2041), - [anon_sym_enum] = ACTIONS(2041), - [anon_sym_interface] = ACTIONS(2041), - [anon_sym_PLUS_PLUS] = ACTIONS(2041), - [anon_sym_DASH_DASH] = ACTIONS(2041), - [anon_sym_QMARK] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(2041), - [anon_sym_go] = ACTIONS(2041), - [anon_sym_spawn] = ACTIONS(2041), - [anon_sym_json_DOTdecode] = ACTIONS(2041), - [anon_sym_LBRACK2] = ACTIONS(2041), - [anon_sym_TILDE] = ACTIONS(2041), - [anon_sym_CARET] = ACTIONS(2041), - [anon_sym_AMP] = ACTIONS(2041), - [anon_sym_LT_DASH] = ACTIONS(2041), - [anon_sym_LT_LT] = ACTIONS(2041), - [anon_sym_GT_GT] = ACTIONS(2041), - [anon_sym_GT_GT_GT] = ACTIONS(2041), - [anon_sym_AMP_CARET] = ACTIONS(2041), - [anon_sym_AMP_AMP] = ACTIONS(2041), - [anon_sym_PIPE_PIPE] = ACTIONS(2041), - [anon_sym_or] = ACTIONS(2041), - [sym_none] = ACTIONS(2041), - [sym_true] = ACTIONS(2041), - [sym_false] = ACTIONS(2041), - [sym_nil] = ACTIONS(2041), - [anon_sym_QMARK_DOT] = ACTIONS(2041), - [anon_sym_POUND_LBRACK] = ACTIONS(2041), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_DOLLARif] = ACTIONS(2041), - [anon_sym_DOLLARelse] = ACTIONS(3596), - [anon_sym_is] = ACTIONS(2041), - [anon_sym_BANGis] = ACTIONS(2041), - [anon_sym_in] = ACTIONS(2041), - [anon_sym_BANGin] = ACTIONS(2041), - [anon_sym_match] = ACTIONS(2041), - [anon_sym_select] = ACTIONS(2041), - [anon_sym_lock] = ACTIONS(2041), - [anon_sym_rlock] = ACTIONS(2041), - [anon_sym_unsafe] = ACTIONS(2041), - [anon_sym_sql] = ACTIONS(2041), - [sym_int_literal] = ACTIONS(2041), - [sym_float_literal] = ACTIONS(2041), - [sym_rune_literal] = ACTIONS(2041), - [anon_sym_SQUOTE] = ACTIONS(2041), - [anon_sym_DQUOTE] = ACTIONS(2041), - [anon_sym_c_SQUOTE] = ACTIONS(2041), - [anon_sym_c_DQUOTE] = ACTIONS(2041), - [anon_sym_r_SQUOTE] = ACTIONS(2041), - [anon_sym_r_DQUOTE] = ACTIONS(2041), - [sym_pseudo_compile_time_identifier] = ACTIONS(2041), - [anon_sym_shared] = ACTIONS(2041), - [anon_sym_map_LBRACK] = ACTIONS(2041), - [anon_sym_chan] = ACTIONS(2041), - [anon_sym_thread] = ACTIONS(2041), - [anon_sym_atomic] = ACTIONS(2041), - [anon_sym_assert] = ACTIONS(2041), - [anon_sym_defer] = ACTIONS(2041), - [anon_sym_goto] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_DOLLARfor] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(2041), - [anon_sym_asm] = ACTIONS(2041), - [anon_sym_AT_LBRACK] = ACTIONS(2041), - }, - [986] = { - [sym_line_comment] = STATE(986), - [sym_block_comment] = STATE(986), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1889), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym___global] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_PERCENT] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), - [anon_sym_LBRACK2] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(1889), - [anon_sym_GT_GT] = ACTIONS(1889), - [anon_sym_GT_GT_GT] = ACTIONS(1889), - [anon_sym_AMP_CARET] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(1889), - [anon_sym_POUND_LBRACK] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_else] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [anon_sym_SQUOTE] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1889), - [anon_sym_c_SQUOTE] = ACTIONS(1889), - [anon_sym_c_DQUOTE] = ACTIONS(1889), - [anon_sym_r_SQUOTE] = ACTIONS(1889), - [anon_sym_r_DQUOTE] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [anon_sym_assert] = ACTIONS(1889), - [anon_sym_defer] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_DOLLARfor] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_asm] = ACTIONS(1889), - [anon_sym_AT_LBRACK] = ACTIONS(1889), - }, - [987] = { - [sym_line_comment] = STATE(987), - [sym_block_comment] = STATE(987), - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_LF] = ACTIONS(1809), - [anon_sym_CR] = ACTIONS(1809), - [anon_sym_CR_LF] = ACTIONS(1809), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_as] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym___global] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_fn] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_PERCENT] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_EQ_EQ] = ACTIONS(1809), - [anon_sym_BANG_EQ] = ACTIONS(1809), - [anon_sym_LT_EQ] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_pub] = ACTIONS(1809), - [anon_sym_mut] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_interface] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1809), - [anon_sym_json_DOTdecode] = ACTIONS(1809), - [anon_sym_LBRACK2] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_LT_DASH] = ACTIONS(1809), - [anon_sym_LT_LT] = ACTIONS(1809), - [anon_sym_GT_GT] = ACTIONS(1809), - [anon_sym_GT_GT_GT] = ACTIONS(1809), - [anon_sym_AMP_CARET] = ACTIONS(1809), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [anon_sym_PIPE_PIPE] = ACTIONS(1809), - [anon_sym_or] = ACTIONS(1809), - [sym_none] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_nil] = ACTIONS(1809), - [anon_sym_QMARK_DOT] = ACTIONS(1809), - [anon_sym_POUND_LBRACK] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_DOLLARif] = ACTIONS(1809), - [anon_sym_DOLLARelse] = ACTIONS(1809), - [anon_sym_is] = ACTIONS(1809), - [anon_sym_BANGis] = ACTIONS(1809), - [anon_sym_in] = ACTIONS(1809), - [anon_sym_BANGin] = ACTIONS(1809), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_select] = ACTIONS(1809), - [anon_sym_lock] = ACTIONS(1809), - [anon_sym_rlock] = ACTIONS(1809), - [anon_sym_unsafe] = ACTIONS(1809), - [anon_sym_sql] = ACTIONS(1809), - [sym_int_literal] = ACTIONS(1809), - [sym_float_literal] = ACTIONS(1809), - [sym_rune_literal] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1809), - [anon_sym_c_SQUOTE] = ACTIONS(1809), - [anon_sym_c_DQUOTE] = ACTIONS(1809), - [anon_sym_r_SQUOTE] = ACTIONS(1809), - [anon_sym_r_DQUOTE] = ACTIONS(1809), - [sym_pseudo_compile_time_identifier] = ACTIONS(1809), - [anon_sym_shared] = ACTIONS(1809), - [anon_sym_map_LBRACK] = ACTIONS(1809), - [anon_sym_chan] = ACTIONS(1809), - [anon_sym_thread] = ACTIONS(1809), - [anon_sym_atomic] = ACTIONS(1809), - [anon_sym_assert] = ACTIONS(1809), - [anon_sym_defer] = ACTIONS(1809), - [anon_sym_goto] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_DOLLARfor] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_POUND] = ACTIONS(1809), - [anon_sym_asm] = ACTIONS(1809), - [anon_sym_AT_LBRACK] = ACTIONS(1809), - }, - [988] = { - [sym_line_comment] = STATE(988), - [sym_block_comment] = STATE(988), - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_LF] = ACTIONS(1809), - [anon_sym_CR] = ACTIONS(1809), - [anon_sym_CR_LF] = ACTIONS(1809), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_as] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym___global] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_fn] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_PERCENT] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_EQ_EQ] = ACTIONS(1809), - [anon_sym_BANG_EQ] = ACTIONS(1809), - [anon_sym_LT_EQ] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_pub] = ACTIONS(1809), - [anon_sym_mut] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_interface] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1809), - [anon_sym_json_DOTdecode] = ACTIONS(1809), - [anon_sym_LBRACK2] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_LT_DASH] = ACTIONS(1809), - [anon_sym_LT_LT] = ACTIONS(1809), - [anon_sym_GT_GT] = ACTIONS(1809), - [anon_sym_GT_GT_GT] = ACTIONS(1809), - [anon_sym_AMP_CARET] = ACTIONS(1809), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [anon_sym_PIPE_PIPE] = ACTIONS(1809), - [anon_sym_or] = ACTIONS(1809), - [sym_none] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_nil] = ACTIONS(1809), - [anon_sym_QMARK_DOT] = ACTIONS(1809), - [anon_sym_POUND_LBRACK] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_else] = ACTIONS(1809), - [anon_sym_DOLLARif] = ACTIONS(1809), - [anon_sym_is] = ACTIONS(1809), - [anon_sym_BANGis] = ACTIONS(1809), - [anon_sym_in] = ACTIONS(1809), - [anon_sym_BANGin] = ACTIONS(1809), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_select] = ACTIONS(1809), - [anon_sym_lock] = ACTIONS(1809), - [anon_sym_rlock] = ACTIONS(1809), - [anon_sym_unsafe] = ACTIONS(1809), - [anon_sym_sql] = ACTIONS(1809), - [sym_int_literal] = ACTIONS(1809), - [sym_float_literal] = ACTIONS(1809), - [sym_rune_literal] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1809), - [anon_sym_c_SQUOTE] = ACTIONS(1809), - [anon_sym_c_DQUOTE] = ACTIONS(1809), - [anon_sym_r_SQUOTE] = ACTIONS(1809), - [anon_sym_r_DQUOTE] = ACTIONS(1809), - [sym_pseudo_compile_time_identifier] = ACTIONS(1809), - [anon_sym_shared] = ACTIONS(1809), - [anon_sym_map_LBRACK] = ACTIONS(1809), - [anon_sym_chan] = ACTIONS(1809), - [anon_sym_thread] = ACTIONS(1809), - [anon_sym_atomic] = ACTIONS(1809), - [anon_sym_assert] = ACTIONS(1809), - [anon_sym_defer] = ACTIONS(1809), - [anon_sym_goto] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_DOLLARfor] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_POUND] = ACTIONS(1809), - [anon_sym_asm] = ACTIONS(1809), - [anon_sym_AT_LBRACK] = ACTIONS(1809), - }, - [989] = { - [sym_line_comment] = STATE(989), - [sym_block_comment] = STATE(989), - [sym_type_parameters] = STATE(1062), - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [anon_sym_LF] = ACTIONS(1899), - [anon_sym_CR] = ACTIONS(1899), - [anon_sym_CR_LF] = ACTIONS(1899), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1899), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym___global] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_fn] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_union] = ACTIONS(1899), - [anon_sym_pub] = ACTIONS(1899), - [anon_sym_mut] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [anon_sym_interface] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [anon_sym_QMARK] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_go] = ACTIONS(1899), - [anon_sym_spawn] = ACTIONS(1899), - [anon_sym_json_DOTdecode] = ACTIONS(1899), - [anon_sym_LBRACK2] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_LT_DASH] = ACTIONS(1899), - [anon_sym_LT_LT] = ACTIONS(1899), - [anon_sym_GT_GT] = ACTIONS(1899), - [anon_sym_GT_GT_GT] = ACTIONS(1899), - [anon_sym_AMP_CARET] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_or] = ACTIONS(1899), - [sym_none] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_nil] = ACTIONS(1899), - [anon_sym_QMARK_DOT] = ACTIONS(1899), - [anon_sym_POUND_LBRACK] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_DOLLARif] = ACTIONS(1899), - [anon_sym_is] = ACTIONS(1899), - [anon_sym_BANGis] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_BANGin] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_select] = ACTIONS(1899), - [anon_sym_lock] = ACTIONS(1899), - [anon_sym_rlock] = ACTIONS(1899), - [anon_sym_unsafe] = ACTIONS(1899), - [anon_sym_sql] = ACTIONS(1899), - [sym_int_literal] = ACTIONS(1899), - [sym_float_literal] = ACTIONS(1899), - [sym_rune_literal] = ACTIONS(1899), - [anon_sym_SQUOTE] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1899), - [anon_sym_c_SQUOTE] = ACTIONS(1899), - [anon_sym_c_DQUOTE] = ACTIONS(1899), - [anon_sym_r_SQUOTE] = ACTIONS(1899), - [anon_sym_r_DQUOTE] = ACTIONS(1899), - [sym_pseudo_compile_time_identifier] = ACTIONS(1899), - [anon_sym_shared] = ACTIONS(1899), - [anon_sym_map_LBRACK] = ACTIONS(1899), - [anon_sym_chan] = ACTIONS(1899), - [anon_sym_thread] = ACTIONS(1899), - [anon_sym_atomic] = ACTIONS(1899), - [anon_sym_assert] = ACTIONS(1899), - [anon_sym_defer] = ACTIONS(1899), - [anon_sym_goto] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_DOLLARfor] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_POUND] = ACTIONS(1899), - [anon_sym_asm] = ACTIONS(1899), - [anon_sym_AT_LBRACK] = ACTIONS(1899), - }, - [990] = { - [sym_line_comment] = STATE(990), - [sym_block_comment] = STATE(990), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(605), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(603), - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_RBRACE] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_LT_EQ] = ACTIONS(603), - [anon_sym_GT_EQ] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_RBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_mut] = ACTIONS(607), - [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(3602), - [anon_sym_go] = ACTIONS(607), - [anon_sym_spawn] = ACTIONS(607), - [anon_sym_json_DOTdecode] = ACTIONS(603), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_CARET] = ACTIONS(603), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_DASH] = ACTIONS(603), - [anon_sym_LT_LT] = ACTIONS(603), - [anon_sym_GT_GT] = ACTIONS(607), - [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(607), - [sym_none] = ACTIONS(607), - [sym_true] = ACTIONS(607), - [sym_false] = ACTIONS(607), - [sym_nil] = ACTIONS(607), - [anon_sym_QMARK_DOT] = ACTIONS(603), - [anon_sym_POUND_LBRACK] = ACTIONS(603), - [anon_sym_if] = ACTIONS(607), - [anon_sym_DOLLARif] = ACTIONS(607), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(603), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(603), - [anon_sym_match] = ACTIONS(607), - [anon_sym_select] = ACTIONS(607), - [anon_sym_lock] = ACTIONS(607), - [anon_sym_rlock] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_sql] = ACTIONS(607), - [sym_int_literal] = ACTIONS(607), - [sym_float_literal] = ACTIONS(603), - [sym_rune_literal] = ACTIONS(603), - [anon_sym_SQUOTE] = ACTIONS(603), - [anon_sym_DQUOTE] = ACTIONS(603), - [anon_sym_c_SQUOTE] = ACTIONS(603), - [anon_sym_c_DQUOTE] = ACTIONS(603), - [anon_sym_r_SQUOTE] = ACTIONS(603), - [anon_sym_r_DQUOTE] = ACTIONS(603), - [sym_pseudo_compile_time_identifier] = ACTIONS(607), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [991] = { - [sym_line_comment] = STATE(991), - [sym_block_comment] = STATE(991), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2311), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(625), - [anon_sym_RBRACE] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(625), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(625), - [anon_sym_BANG_EQ] = ACTIONS(625), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_RBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(627), - [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(627), - [anon_sym_BANG] = ACTIONS(627), - [anon_sym_go] = ACTIONS(627), - [anon_sym_spawn] = ACTIONS(627), - [anon_sym_json_DOTdecode] = ACTIONS(625), - [anon_sym_LBRACK2] = ACTIONS(627), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_CARET] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(627), - [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), - [anon_sym_SQUOTE] = ACTIONS(625), - [anon_sym_DQUOTE] = ACTIONS(625), - [anon_sym_c_SQUOTE] = ACTIONS(625), - [anon_sym_c_DQUOTE] = ACTIONS(625), - [anon_sym_r_SQUOTE] = ACTIONS(625), - [anon_sym_r_DQUOTE] = ACTIONS(625), - [sym_pseudo_compile_time_identifier] = ACTIONS(627), - [anon_sym_shared] = ACTIONS(627), - [anon_sym_map_LBRACK] = ACTIONS(625), - [anon_sym_chan] = ACTIONS(627), - [anon_sym_thread] = ACTIONS(627), - [anon_sym_atomic] = ACTIONS(627), - }, [992] = { [sym_line_comment] = STATE(992), [sym_block_comment] = STATE(992), - [ts_builtin_sym_end] = ACTIONS(2841), - [sym_identifier] = ACTIONS(2843), - [anon_sym_LF] = ACTIONS(2843), - [anon_sym_CR] = ACTIONS(2843), - [anon_sym_CR_LF] = ACTIONS(2843), + [ts_builtin_sym_end] = ACTIONS(1875), + [sym_identifier] = ACTIONS(1877), + [anon_sym_LF] = ACTIONS(1877), + [anon_sym_CR] = ACTIONS(1877), + [anon_sym_CR_LF] = ACTIONS(1877), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2843), - [anon_sym_as] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_COMMA] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym___global] = ACTIONS(2843), - [anon_sym_type] = ACTIONS(2843), - [anon_sym_PIPE] = ACTIONS(2843), - [anon_sym_fn] = ACTIONS(2843), - [anon_sym_PLUS] = ACTIONS(2843), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_STAR] = ACTIONS(2843), - [anon_sym_SLASH] = ACTIONS(2843), - [anon_sym_PERCENT] = ACTIONS(2843), - [anon_sym_LT] = ACTIONS(2843), - [anon_sym_GT] = ACTIONS(2843), - [anon_sym_EQ_EQ] = ACTIONS(2843), - [anon_sym_BANG_EQ] = ACTIONS(2843), - [anon_sym_LT_EQ] = ACTIONS(2843), - [anon_sym_GT_EQ] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_struct] = ACTIONS(2843), - [anon_sym_union] = ACTIONS(2843), - [anon_sym_pub] = ACTIONS(2843), - [anon_sym_mut] = ACTIONS(2843), - [anon_sym_enum] = ACTIONS(2843), - [anon_sym_interface] = ACTIONS(2843), - [anon_sym_PLUS_PLUS] = ACTIONS(2843), - [anon_sym_DASH_DASH] = ACTIONS(2843), - [anon_sym_QMARK] = ACTIONS(2843), - [anon_sym_BANG] = ACTIONS(2843), - [anon_sym_go] = ACTIONS(2843), - [anon_sym_spawn] = ACTIONS(2843), - [anon_sym_json_DOTdecode] = ACTIONS(2843), - [anon_sym_LBRACK2] = ACTIONS(2843), - [anon_sym_TILDE] = ACTIONS(2843), - [anon_sym_CARET] = ACTIONS(2843), - [anon_sym_AMP] = ACTIONS(2843), - [anon_sym_LT_DASH] = ACTIONS(2843), - [anon_sym_LT_LT] = ACTIONS(2843), - [anon_sym_GT_GT] = ACTIONS(2843), - [anon_sym_GT_GT_GT] = ACTIONS(2843), - [anon_sym_AMP_CARET] = ACTIONS(2843), - [anon_sym_AMP_AMP] = ACTIONS(2843), - [anon_sym_PIPE_PIPE] = ACTIONS(2843), - [anon_sym_or] = ACTIONS(2843), - [sym_none] = ACTIONS(2843), - [sym_true] = ACTIONS(2843), - [sym_false] = ACTIONS(2843), - [sym_nil] = ACTIONS(2843), - [anon_sym_QMARK_DOT] = ACTIONS(2843), - [anon_sym_POUND_LBRACK] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_DOLLARif] = ACTIONS(2843), - [anon_sym_is] = ACTIONS(2843), - [anon_sym_BANGis] = ACTIONS(2843), - [anon_sym_in] = ACTIONS(2843), - [anon_sym_BANGin] = ACTIONS(2843), - [anon_sym_match] = ACTIONS(2843), - [anon_sym_select] = ACTIONS(2843), - [anon_sym_lock] = ACTIONS(2843), - [anon_sym_rlock] = ACTIONS(2843), - [anon_sym_unsafe] = ACTIONS(2843), - [anon_sym_sql] = ACTIONS(2843), - [sym_int_literal] = ACTIONS(2843), - [sym_float_literal] = ACTIONS(2843), - [sym_rune_literal] = ACTIONS(2843), - [anon_sym_SQUOTE] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [anon_sym_c_SQUOTE] = ACTIONS(2843), - [anon_sym_c_DQUOTE] = ACTIONS(2843), - [anon_sym_r_SQUOTE] = ACTIONS(2843), - [anon_sym_r_DQUOTE] = ACTIONS(2843), - [sym_pseudo_compile_time_identifier] = ACTIONS(2843), - [anon_sym_shared] = ACTIONS(2843), - [anon_sym_map_LBRACK] = ACTIONS(2843), - [anon_sym_chan] = ACTIONS(2843), - [anon_sym_thread] = ACTIONS(2843), - [anon_sym_atomic] = ACTIONS(2843), - [anon_sym_assert] = ACTIONS(2843), - [anon_sym_defer] = ACTIONS(2843), - [anon_sym_goto] = ACTIONS(2843), - [anon_sym_break] = ACTIONS(2843), - [anon_sym_continue] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2843), - [anon_sym_DOLLARfor] = ACTIONS(2843), - [anon_sym_for] = ACTIONS(2843), - [anon_sym_POUND] = ACTIONS(2843), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym_AT_LBRACK] = ACTIONS(2843), + [anon_sym_DOT] = ACTIONS(1877), + [anon_sym_as] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_const] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym___global] = ACTIONS(1877), + [anon_sym_type] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1877), + [anon_sym_union] = ACTIONS(1877), + [anon_sym_pub] = ACTIONS(1877), + [anon_sym_mut] = ACTIONS(1877), + [anon_sym_enum] = ACTIONS(1877), + [anon_sym_interface] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_QMARK] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_go] = ACTIONS(1877), + [anon_sym_spawn] = ACTIONS(1877), + [anon_sym_json_DOTdecode] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_LBRACK2] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT] = ACTIONS(1877), + [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(1877), + [sym_none] = ACTIONS(1877), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [sym_nil] = ACTIONS(1877), + [anon_sym_QMARK_DOT] = ACTIONS(1877), + [anon_sym_POUND_LBRACK] = ACTIONS(1877), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_else] = ACTIONS(1877), + [anon_sym_DOLLARif] = ACTIONS(1877), + [anon_sym_is] = ACTIONS(1877), + [anon_sym_BANGis] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_BANGin] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1877), + [anon_sym_select] = ACTIONS(1877), + [anon_sym_lock] = ACTIONS(1877), + [anon_sym_rlock] = ACTIONS(1877), + [anon_sym_unsafe] = ACTIONS(1877), + [anon_sym_sql] = ACTIONS(1877), + [sym_int_literal] = ACTIONS(1877), + [sym_float_literal] = ACTIONS(1877), + [sym_rune_literal] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_c_SQUOTE] = ACTIONS(1877), + [anon_sym_c_DQUOTE] = ACTIONS(1877), + [anon_sym_r_SQUOTE] = ACTIONS(1877), + [anon_sym_r_DQUOTE] = ACTIONS(1877), + [sym_pseudo_compile_time_identifier] = ACTIONS(1877), + [anon_sym_shared] = ACTIONS(1877), + [anon_sym_map_LBRACK] = ACTIONS(1877), + [anon_sym_chan] = ACTIONS(1877), + [anon_sym_thread] = ACTIONS(1877), + [anon_sym_atomic] = ACTIONS(1877), + [anon_sym_assert] = ACTIONS(1877), + [anon_sym_defer] = ACTIONS(1877), + [anon_sym_goto] = ACTIONS(1877), + [anon_sym_break] = ACTIONS(1877), + [anon_sym_continue] = ACTIONS(1877), + [anon_sym_return] = ACTIONS(1877), + [anon_sym_DOLLARfor] = ACTIONS(1877), + [anon_sym_for] = ACTIONS(1877), + [anon_sym_POUND] = ACTIONS(1877), + [anon_sym_asm] = ACTIONS(1877), + [anon_sym_AT_LBRACK] = ACTIONS(1877), }, [993] = { [sym_line_comment] = STATE(993), [sym_block_comment] = STATE(993), - [ts_builtin_sym_end] = ACTIONS(2149), - [sym_identifier] = ACTIONS(2151), - [anon_sym_LF] = ACTIONS(2151), - [anon_sym_CR] = ACTIONS(2151), - [anon_sym_CR_LF] = ACTIONS(2151), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(2475), + [anon_sym_LF] = ACTIONS(2475), + [anon_sym_CR] = ACTIONS(2475), + [anon_sym_CR_LF] = ACTIONS(2475), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2151), - [anon_sym_as] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_COMMA] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym___global] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2151), - [anon_sym_fn] = ACTIONS(2151), - [anon_sym_PLUS] = ACTIONS(2151), - [anon_sym_DASH] = ACTIONS(2151), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_SLASH] = ACTIONS(2151), - [anon_sym_PERCENT] = ACTIONS(2151), - [anon_sym_LT] = ACTIONS(2151), - [anon_sym_GT] = ACTIONS(2151), - [anon_sym_EQ_EQ] = ACTIONS(2151), - [anon_sym_BANG_EQ] = ACTIONS(2151), - [anon_sym_LT_EQ] = ACTIONS(2151), - [anon_sym_GT_EQ] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_struct] = ACTIONS(2151), - [anon_sym_union] = ACTIONS(2151), - [anon_sym_pub] = ACTIONS(2151), - [anon_sym_mut] = ACTIONS(2151), - [anon_sym_enum] = ACTIONS(2151), - [anon_sym_interface] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [anon_sym_QMARK] = ACTIONS(2151), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_go] = ACTIONS(2151), - [anon_sym_spawn] = ACTIONS(2151), - [anon_sym_json_DOTdecode] = ACTIONS(2151), - [anon_sym_LBRACK2] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_LT_DASH] = ACTIONS(2151), - [anon_sym_LT_LT] = ACTIONS(2151), - [anon_sym_GT_GT] = ACTIONS(2151), - [anon_sym_GT_GT_GT] = ACTIONS(2151), - [anon_sym_AMP_CARET] = ACTIONS(2151), - [anon_sym_AMP_AMP] = ACTIONS(2151), - [anon_sym_PIPE_PIPE] = ACTIONS(2151), - [anon_sym_or] = ACTIONS(2151), - [sym_none] = ACTIONS(2151), - [sym_true] = ACTIONS(2151), - [sym_false] = ACTIONS(2151), - [sym_nil] = ACTIONS(2151), - [anon_sym_QMARK_DOT] = ACTIONS(2151), - [anon_sym_POUND_LBRACK] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_DOLLARif] = ACTIONS(2151), - [anon_sym_is] = ACTIONS(2151), - [anon_sym_BANGis] = ACTIONS(2151), - [anon_sym_in] = ACTIONS(2151), - [anon_sym_BANGin] = ACTIONS(2151), - [anon_sym_match] = ACTIONS(2151), - [anon_sym_select] = ACTIONS(2151), - [anon_sym_lock] = ACTIONS(2151), - [anon_sym_rlock] = ACTIONS(2151), - [anon_sym_unsafe] = ACTIONS(2151), - [anon_sym_sql] = ACTIONS(2151), - [sym_int_literal] = ACTIONS(2151), - [sym_float_literal] = ACTIONS(2151), - [sym_rune_literal] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2151), - [anon_sym_c_SQUOTE] = ACTIONS(2151), - [anon_sym_c_DQUOTE] = ACTIONS(2151), - [anon_sym_r_SQUOTE] = ACTIONS(2151), - [anon_sym_r_DQUOTE] = ACTIONS(2151), - [sym_pseudo_compile_time_identifier] = ACTIONS(2151), - [anon_sym_shared] = ACTIONS(2151), - [anon_sym_map_LBRACK] = ACTIONS(2151), - [anon_sym_chan] = ACTIONS(2151), - [anon_sym_thread] = ACTIONS(2151), - [anon_sym_atomic] = ACTIONS(2151), - [anon_sym_assert] = ACTIONS(2151), - [anon_sym_defer] = ACTIONS(2151), - [anon_sym_goto] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_DOLLARfor] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_POUND] = ACTIONS(2151), - [anon_sym_asm] = ACTIONS(2151), - [anon_sym_AT_LBRACK] = ACTIONS(2151), + [anon_sym_DOT] = ACTIONS(2475), + [anon_sym_as] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_COMMA] = ACTIONS(2475), + [anon_sym_const] = ACTIONS(2475), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym___global] = ACTIONS(2475), + [anon_sym_type] = ACTIONS(2475), + [anon_sym_fn] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_SLASH] = ACTIONS(2475), + [anon_sym_PERCENT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_EQ_EQ] = ACTIONS(2475), + [anon_sym_BANG_EQ] = ACTIONS(2475), + [anon_sym_LT_EQ] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2475), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_union] = ACTIONS(2475), + [anon_sym_pub] = ACTIONS(2475), + [anon_sym_mut] = ACTIONS(2475), + [anon_sym_enum] = ACTIONS(2475), + [anon_sym_interface] = ACTIONS(2475), + [anon_sym_PLUS_PLUS] = ACTIONS(2475), + [anon_sym_DASH_DASH] = ACTIONS(2475), + [anon_sym_QMARK] = ACTIONS(2475), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_go] = ACTIONS(2475), + [anon_sym_spawn] = ACTIONS(2475), + [anon_sym_json_DOTdecode] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(2475), + [anon_sym_LBRACK2] = ACTIONS(2475), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_LT_DASH] = ACTIONS(2475), + [anon_sym_LT_LT] = ACTIONS(2475), + [anon_sym_GT_GT] = ACTIONS(2475), + [anon_sym_GT_GT_GT] = ACTIONS(2475), + [anon_sym_AMP_CARET] = ACTIONS(2475), + [anon_sym_AMP_AMP] = ACTIONS(2475), + [anon_sym_PIPE_PIPE] = ACTIONS(2475), + [anon_sym_or] = ACTIONS(2475), + [sym_none] = ACTIONS(2475), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_nil] = ACTIONS(2475), + [anon_sym_QMARK_DOT] = ACTIONS(2475), + [anon_sym_POUND_LBRACK] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_DOLLARif] = ACTIONS(2475), + [anon_sym_is] = ACTIONS(2475), + [anon_sym_BANGis] = ACTIONS(2475), + [anon_sym_in] = ACTIONS(2475), + [anon_sym_BANGin] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_lock] = ACTIONS(2475), + [anon_sym_rlock] = ACTIONS(2475), + [anon_sym_unsafe] = ACTIONS(2475), + [anon_sym_sql] = ACTIONS(2475), + [sym_int_literal] = ACTIONS(2475), + [sym_float_literal] = ACTIONS(2475), + [sym_rune_literal] = ACTIONS(2475), + [anon_sym_SQUOTE] = ACTIONS(2475), + [anon_sym_DQUOTE] = ACTIONS(2475), + [anon_sym_c_SQUOTE] = ACTIONS(2475), + [anon_sym_c_DQUOTE] = ACTIONS(2475), + [anon_sym_r_SQUOTE] = ACTIONS(2475), + [anon_sym_r_DQUOTE] = ACTIONS(2475), + [sym_pseudo_compile_time_identifier] = ACTIONS(2475), + [anon_sym_shared] = ACTIONS(2475), + [anon_sym_map_LBRACK] = ACTIONS(2475), + [anon_sym_chan] = ACTIONS(2475), + [anon_sym_thread] = ACTIONS(2475), + [anon_sym_atomic] = ACTIONS(2475), + [anon_sym_assert] = ACTIONS(2475), + [anon_sym_defer] = ACTIONS(2475), + [anon_sym_goto] = ACTIONS(2475), + [anon_sym_break] = ACTIONS(2475), + [anon_sym_continue] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2475), + [anon_sym_DOLLARfor] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_POUND] = ACTIONS(2475), + [anon_sym_asm] = ACTIONS(2475), + [anon_sym_AT_LBRACK] = ACTIONS(2475), }, [994] = { [sym_line_comment] = STATE(994), [sym_block_comment] = STATE(994), - [ts_builtin_sym_end] = ACTIONS(2735), - [sym_identifier] = ACTIONS(2737), - [anon_sym_LF] = ACTIONS(2737), - [anon_sym_CR] = ACTIONS(2737), - [anon_sym_CR_LF] = ACTIONS(2737), + [ts_builtin_sym_end] = ACTIONS(2975), + [sym_identifier] = ACTIONS(2977), + [anon_sym_LF] = ACTIONS(2977), + [anon_sym_CR] = ACTIONS(2977), + [anon_sym_CR_LF] = ACTIONS(2977), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2737), - [anon_sym_as] = ACTIONS(2737), - [anon_sym_LBRACE] = ACTIONS(2737), - [anon_sym_COMMA] = ACTIONS(2737), - [anon_sym_const] = ACTIONS(2737), - [anon_sym_LPAREN] = ACTIONS(2737), - [anon_sym___global] = ACTIONS(2737), - [anon_sym_type] = ACTIONS(2737), - [anon_sym_PIPE] = ACTIONS(2737), - [anon_sym_fn] = ACTIONS(2737), - [anon_sym_PLUS] = ACTIONS(2737), - [anon_sym_DASH] = ACTIONS(2737), - [anon_sym_STAR] = ACTIONS(2737), - [anon_sym_SLASH] = ACTIONS(2737), - [anon_sym_PERCENT] = ACTIONS(2737), - [anon_sym_LT] = ACTIONS(2737), - [anon_sym_GT] = ACTIONS(2737), - [anon_sym_EQ_EQ] = ACTIONS(2737), - [anon_sym_BANG_EQ] = ACTIONS(2737), - [anon_sym_LT_EQ] = ACTIONS(2737), - [anon_sym_GT_EQ] = ACTIONS(2737), - [anon_sym_LBRACK] = ACTIONS(2735), - [anon_sym_struct] = ACTIONS(2737), - [anon_sym_union] = ACTIONS(2737), - [anon_sym_pub] = ACTIONS(2737), - [anon_sym_mut] = ACTIONS(2737), - [anon_sym_enum] = ACTIONS(2737), - [anon_sym_interface] = ACTIONS(2737), - [anon_sym_PLUS_PLUS] = ACTIONS(2737), - [anon_sym_DASH_DASH] = ACTIONS(2737), - [anon_sym_QMARK] = ACTIONS(2737), - [anon_sym_BANG] = ACTIONS(2737), - [anon_sym_go] = ACTIONS(2737), - [anon_sym_spawn] = ACTIONS(2737), - [anon_sym_json_DOTdecode] = ACTIONS(2737), - [anon_sym_LBRACK2] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2737), - [anon_sym_CARET] = ACTIONS(2737), - [anon_sym_AMP] = ACTIONS(2737), - [anon_sym_LT_DASH] = ACTIONS(2737), - [anon_sym_LT_LT] = ACTIONS(2737), - [anon_sym_GT_GT] = ACTIONS(2737), - [anon_sym_GT_GT_GT] = ACTIONS(2737), - [anon_sym_AMP_CARET] = ACTIONS(2737), - [anon_sym_AMP_AMP] = ACTIONS(2737), - [anon_sym_PIPE_PIPE] = ACTIONS(2737), - [anon_sym_or] = ACTIONS(2737), - [sym_none] = ACTIONS(2737), - [sym_true] = ACTIONS(2737), - [sym_false] = ACTIONS(2737), - [sym_nil] = ACTIONS(2737), - [anon_sym_QMARK_DOT] = ACTIONS(2737), - [anon_sym_POUND_LBRACK] = ACTIONS(2737), - [anon_sym_if] = ACTIONS(2737), - [anon_sym_DOLLARif] = ACTIONS(2737), - [anon_sym_is] = ACTIONS(2737), - [anon_sym_BANGis] = ACTIONS(2737), - [anon_sym_in] = ACTIONS(2737), - [anon_sym_BANGin] = ACTIONS(2737), - [anon_sym_match] = ACTIONS(2737), - [anon_sym_select] = ACTIONS(2737), - [anon_sym_lock] = ACTIONS(2737), - [anon_sym_rlock] = ACTIONS(2737), - [anon_sym_unsafe] = ACTIONS(2737), - [anon_sym_sql] = ACTIONS(2737), - [sym_int_literal] = ACTIONS(2737), - [sym_float_literal] = ACTIONS(2737), - [sym_rune_literal] = ACTIONS(2737), - [anon_sym_SQUOTE] = ACTIONS(2737), - [anon_sym_DQUOTE] = ACTIONS(2737), - [anon_sym_c_SQUOTE] = ACTIONS(2737), - [anon_sym_c_DQUOTE] = ACTIONS(2737), - [anon_sym_r_SQUOTE] = ACTIONS(2737), - [anon_sym_r_DQUOTE] = ACTIONS(2737), - [sym_pseudo_compile_time_identifier] = ACTIONS(2737), - [anon_sym_shared] = ACTIONS(2737), - [anon_sym_map_LBRACK] = ACTIONS(2737), - [anon_sym_chan] = ACTIONS(2737), - [anon_sym_thread] = ACTIONS(2737), - [anon_sym_atomic] = ACTIONS(2737), - [anon_sym_assert] = ACTIONS(2737), - [anon_sym_defer] = ACTIONS(2737), - [anon_sym_goto] = ACTIONS(2737), - [anon_sym_break] = ACTIONS(2737), - [anon_sym_continue] = ACTIONS(2737), - [anon_sym_return] = ACTIONS(2737), - [anon_sym_DOLLARfor] = ACTIONS(2737), - [anon_sym_for] = ACTIONS(2737), - [anon_sym_POUND] = ACTIONS(2737), - [anon_sym_asm] = ACTIONS(2737), - [anon_sym_AT_LBRACK] = ACTIONS(2737), + [anon_sym_DOT] = ACTIONS(2977), + [anon_sym_as] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2977), + [anon_sym_COMMA] = ACTIONS(2977), + [anon_sym_const] = ACTIONS(2977), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym___global] = ACTIONS(2977), + [anon_sym_type] = ACTIONS(2977), + [anon_sym_fn] = ACTIONS(2977), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2977), + [anon_sym_SLASH] = ACTIONS(2977), + [anon_sym_PERCENT] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_GT] = ACTIONS(2977), + [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(2975), + [anon_sym_struct] = ACTIONS(2977), + [anon_sym_union] = ACTIONS(2977), + [anon_sym_pub] = ACTIONS(2977), + [anon_sym_mut] = ACTIONS(2977), + [anon_sym_enum] = ACTIONS(2977), + [anon_sym_interface] = ACTIONS(2977), + [anon_sym_PLUS_PLUS] = ACTIONS(2977), + [anon_sym_DASH_DASH] = ACTIONS(2977), + [anon_sym_QMARK] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_go] = ACTIONS(2977), + [anon_sym_spawn] = ACTIONS(2977), + [anon_sym_json_DOTdecode] = ACTIONS(2977), + [anon_sym_PIPE] = ACTIONS(2977), + [anon_sym_LBRACK2] = ACTIONS(2977), + [anon_sym_TILDE] = ACTIONS(2977), + [anon_sym_CARET] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_LT_DASH] = ACTIONS(2977), + [anon_sym_LT_LT] = ACTIONS(2977), + [anon_sym_GT_GT] = ACTIONS(2977), + [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(2977), + [sym_none] = ACTIONS(2977), + [sym_true] = ACTIONS(2977), + [sym_false] = ACTIONS(2977), + [sym_nil] = ACTIONS(2977), + [anon_sym_QMARK_DOT] = ACTIONS(2977), + [anon_sym_POUND_LBRACK] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_DOLLARif] = ACTIONS(2977), + [anon_sym_is] = ACTIONS(2977), + [anon_sym_BANGis] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2977), + [anon_sym_BANGin] = ACTIONS(2977), + [anon_sym_match] = ACTIONS(2977), + [anon_sym_select] = ACTIONS(2977), + [anon_sym_lock] = ACTIONS(2977), + [anon_sym_rlock] = ACTIONS(2977), + [anon_sym_unsafe] = ACTIONS(2977), + [anon_sym_sql] = ACTIONS(2977), + [sym_int_literal] = ACTIONS(2977), + [sym_float_literal] = ACTIONS(2977), + [sym_rune_literal] = ACTIONS(2977), + [anon_sym_SQUOTE] = ACTIONS(2977), + [anon_sym_DQUOTE] = ACTIONS(2977), + [anon_sym_c_SQUOTE] = ACTIONS(2977), + [anon_sym_c_DQUOTE] = ACTIONS(2977), + [anon_sym_r_SQUOTE] = ACTIONS(2977), + [anon_sym_r_DQUOTE] = ACTIONS(2977), + [sym_pseudo_compile_time_identifier] = ACTIONS(2977), + [anon_sym_shared] = ACTIONS(2977), + [anon_sym_map_LBRACK] = ACTIONS(2977), + [anon_sym_chan] = ACTIONS(2977), + [anon_sym_thread] = ACTIONS(2977), + [anon_sym_atomic] = ACTIONS(2977), + [anon_sym_assert] = ACTIONS(2977), + [anon_sym_defer] = ACTIONS(2977), + [anon_sym_goto] = ACTIONS(2977), + [anon_sym_break] = ACTIONS(2977), + [anon_sym_continue] = ACTIONS(2977), + [anon_sym_return] = ACTIONS(2977), + [anon_sym_DOLLARfor] = ACTIONS(2977), + [anon_sym_for] = ACTIONS(2977), + [anon_sym_POUND] = ACTIONS(2977), + [anon_sym_asm] = ACTIONS(2977), + [anon_sym_AT_LBRACK] = ACTIONS(2977), }, [995] = { [sym_line_comment] = STATE(995), [sym_block_comment] = STATE(995), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2115), - [anon_sym_LF] = ACTIONS(2115), - [anon_sym_CR] = ACTIONS(2115), - [anon_sym_CR_LF] = ACTIONS(2115), + [ts_builtin_sym_end] = ACTIONS(2923), + [sym_identifier] = ACTIONS(2925), + [anon_sym_LF] = ACTIONS(2925), + [anon_sym_CR] = ACTIONS(2925), + [anon_sym_CR_LF] = ACTIONS(2925), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2115), - [anon_sym_as] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(2115), - [anon_sym_COMMA] = ACTIONS(2115), - [anon_sym_const] = ACTIONS(2115), - [anon_sym_LPAREN] = ACTIONS(2115), - [anon_sym___global] = ACTIONS(2115), - [anon_sym_type] = ACTIONS(2115), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_fn] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2115), - [anon_sym_SLASH] = ACTIONS(2115), - [anon_sym_PERCENT] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(2115), - [anon_sym_GT] = ACTIONS(2115), - [anon_sym_EQ_EQ] = ACTIONS(2115), - [anon_sym_BANG_EQ] = ACTIONS(2115), - [anon_sym_LT_EQ] = ACTIONS(2115), - [anon_sym_GT_EQ] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_struct] = ACTIONS(2115), - [anon_sym_union] = ACTIONS(2115), - [anon_sym_pub] = ACTIONS(2115), - [anon_sym_mut] = ACTIONS(2115), - [anon_sym_enum] = ACTIONS(2115), - [anon_sym_interface] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_go] = ACTIONS(2115), - [anon_sym_spawn] = ACTIONS(2115), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2115), - [anon_sym_LT_LT] = ACTIONS(2115), - [anon_sym_GT_GT] = ACTIONS(2115), - [anon_sym_GT_GT_GT] = ACTIONS(2115), - [anon_sym_AMP_CARET] = ACTIONS(2115), - [anon_sym_AMP_AMP] = ACTIONS(2115), - [anon_sym_PIPE_PIPE] = ACTIONS(2115), - [anon_sym_or] = ACTIONS(2115), - [sym_none] = ACTIONS(2115), - [sym_true] = ACTIONS(2115), - [sym_false] = ACTIONS(2115), - [sym_nil] = ACTIONS(2115), - [anon_sym_QMARK_DOT] = ACTIONS(2115), - [anon_sym_POUND_LBRACK] = ACTIONS(2115), - [anon_sym_if] = ACTIONS(2115), - [anon_sym_DOLLARif] = ACTIONS(2115), - [anon_sym_is] = ACTIONS(2115), - [anon_sym_BANGis] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(2115), - [anon_sym_BANGin] = ACTIONS(2115), - [anon_sym_match] = ACTIONS(2115), - [anon_sym_select] = ACTIONS(2115), - [anon_sym_lock] = ACTIONS(2115), - [anon_sym_rlock] = ACTIONS(2115), - [anon_sym_unsafe] = ACTIONS(2115), - [anon_sym_sql] = ACTIONS(2115), - [sym_int_literal] = ACTIONS(2115), - [sym_float_literal] = ACTIONS(2115), - [sym_rune_literal] = ACTIONS(2115), - [anon_sym_SQUOTE] = ACTIONS(2115), - [anon_sym_DQUOTE] = ACTIONS(2115), - [anon_sym_c_SQUOTE] = ACTIONS(2115), - [anon_sym_c_DQUOTE] = ACTIONS(2115), - [anon_sym_r_SQUOTE] = ACTIONS(2115), - [anon_sym_r_DQUOTE] = ACTIONS(2115), - [sym_pseudo_compile_time_identifier] = ACTIONS(2115), - [anon_sym_shared] = ACTIONS(2115), - [anon_sym_map_LBRACK] = ACTIONS(2115), - [anon_sym_chan] = ACTIONS(2115), - [anon_sym_thread] = ACTIONS(2115), - [anon_sym_atomic] = ACTIONS(2115), - [anon_sym_assert] = ACTIONS(2115), - [anon_sym_defer] = ACTIONS(2115), - [anon_sym_goto] = ACTIONS(2115), - [anon_sym_break] = ACTIONS(2115), - [anon_sym_continue] = ACTIONS(2115), - [anon_sym_return] = ACTIONS(2115), - [anon_sym_DOLLARfor] = ACTIONS(2115), - [anon_sym_for] = ACTIONS(2115), - [anon_sym_POUND] = ACTIONS(2115), - [anon_sym_asm] = ACTIONS(2115), - [anon_sym_AT_LBRACK] = ACTIONS(2115), + [anon_sym_DOT] = ACTIONS(2925), + [anon_sym_as] = ACTIONS(2925), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_COMMA] = ACTIONS(2925), + [anon_sym_const] = ACTIONS(2925), + [anon_sym_LPAREN] = ACTIONS(2925), + [anon_sym___global] = ACTIONS(2925), + [anon_sym_type] = ACTIONS(2925), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_SLASH] = ACTIONS(2925), + [anon_sym_PERCENT] = ACTIONS(2925), + [anon_sym_LT] = ACTIONS(2925), + [anon_sym_GT] = ACTIONS(2925), + [anon_sym_EQ_EQ] = ACTIONS(2925), + [anon_sym_BANG_EQ] = ACTIONS(2925), + [anon_sym_LT_EQ] = ACTIONS(2925), + [anon_sym_GT_EQ] = ACTIONS(2925), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2925), + [anon_sym_union] = ACTIONS(2925), + [anon_sym_pub] = ACTIONS(2925), + [anon_sym_mut] = ACTIONS(2925), + [anon_sym_enum] = ACTIONS(2925), + [anon_sym_interface] = ACTIONS(2925), + [anon_sym_PLUS_PLUS] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(2925), + [anon_sym_QMARK] = ACTIONS(2925), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2925), + [anon_sym_spawn] = ACTIONS(2925), + [anon_sym_json_DOTdecode] = ACTIONS(2925), + [anon_sym_PIPE] = ACTIONS(2925), + [anon_sym_LBRACK2] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_CARET] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2925), + [anon_sym_LT_DASH] = ACTIONS(2925), + [anon_sym_LT_LT] = ACTIONS(2925), + [anon_sym_GT_GT] = ACTIONS(2925), + [anon_sym_GT_GT_GT] = ACTIONS(2925), + [anon_sym_AMP_CARET] = ACTIONS(2925), + [anon_sym_AMP_AMP] = ACTIONS(2925), + [anon_sym_PIPE_PIPE] = ACTIONS(2925), + [anon_sym_or] = ACTIONS(2925), + [sym_none] = ACTIONS(2925), + [sym_true] = ACTIONS(2925), + [sym_false] = ACTIONS(2925), + [sym_nil] = ACTIONS(2925), + [anon_sym_QMARK_DOT] = ACTIONS(2925), + [anon_sym_POUND_LBRACK] = ACTIONS(2925), + [anon_sym_if] = ACTIONS(2925), + [anon_sym_DOLLARif] = ACTIONS(2925), + [anon_sym_is] = ACTIONS(2925), + [anon_sym_BANGis] = ACTIONS(2925), + [anon_sym_in] = ACTIONS(2925), + [anon_sym_BANGin] = ACTIONS(2925), + [anon_sym_match] = ACTIONS(2925), + [anon_sym_select] = ACTIONS(2925), + [anon_sym_lock] = ACTIONS(2925), + [anon_sym_rlock] = ACTIONS(2925), + [anon_sym_unsafe] = ACTIONS(2925), + [anon_sym_sql] = ACTIONS(2925), + [sym_int_literal] = ACTIONS(2925), + [sym_float_literal] = ACTIONS(2925), + [sym_rune_literal] = ACTIONS(2925), + [anon_sym_SQUOTE] = ACTIONS(2925), + [anon_sym_DQUOTE] = ACTIONS(2925), + [anon_sym_c_SQUOTE] = ACTIONS(2925), + [anon_sym_c_DQUOTE] = ACTIONS(2925), + [anon_sym_r_SQUOTE] = ACTIONS(2925), + [anon_sym_r_DQUOTE] = ACTIONS(2925), + [sym_pseudo_compile_time_identifier] = ACTIONS(2925), + [anon_sym_shared] = ACTIONS(2925), + [anon_sym_map_LBRACK] = ACTIONS(2925), + [anon_sym_chan] = ACTIONS(2925), + [anon_sym_thread] = ACTIONS(2925), + [anon_sym_atomic] = ACTIONS(2925), + [anon_sym_assert] = ACTIONS(2925), + [anon_sym_defer] = ACTIONS(2925), + [anon_sym_goto] = ACTIONS(2925), + [anon_sym_break] = ACTIONS(2925), + [anon_sym_continue] = ACTIONS(2925), + [anon_sym_return] = ACTIONS(2925), + [anon_sym_DOLLARfor] = ACTIONS(2925), + [anon_sym_for] = ACTIONS(2925), + [anon_sym_POUND] = ACTIONS(2925), + [anon_sym_asm] = ACTIONS(2925), + [anon_sym_AT_LBRACK] = ACTIONS(2925), }, [996] = { [sym_line_comment] = STATE(996), [sym_block_comment] = STATE(996), - [ts_builtin_sym_end] = ACTIONS(2727), - [sym_identifier] = ACTIONS(2729), - [anon_sym_LF] = ACTIONS(2729), - [anon_sym_CR] = ACTIONS(2729), - [anon_sym_CR_LF] = ACTIONS(2729), + [ts_builtin_sym_end] = ACTIONS(2729), + [sym_identifier] = ACTIONS(2731), + [anon_sym_LF] = ACTIONS(2731), + [anon_sym_CR] = ACTIONS(2731), + [anon_sym_CR_LF] = ACTIONS(2731), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2729), - [anon_sym_as] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_COMMA] = ACTIONS(2729), - [anon_sym_const] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym___global] = ACTIONS(2729), - [anon_sym_type] = ACTIONS(2729), - [anon_sym_PIPE] = ACTIONS(2729), - [anon_sym_fn] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_SLASH] = ACTIONS(2729), - [anon_sym_PERCENT] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2729), - [anon_sym_GT] = ACTIONS(2729), - [anon_sym_EQ_EQ] = ACTIONS(2729), - [anon_sym_BANG_EQ] = ACTIONS(2729), - [anon_sym_LT_EQ] = ACTIONS(2729), - [anon_sym_GT_EQ] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_struct] = ACTIONS(2729), - [anon_sym_union] = ACTIONS(2729), - [anon_sym_pub] = ACTIONS(2729), - [anon_sym_mut] = ACTIONS(2729), - [anon_sym_enum] = ACTIONS(2729), - [anon_sym_interface] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2729), - [anon_sym_DASH_DASH] = ACTIONS(2729), - [anon_sym_QMARK] = ACTIONS(2729), - [anon_sym_BANG] = ACTIONS(2729), - [anon_sym_go] = ACTIONS(2729), - [anon_sym_spawn] = ACTIONS(2729), - [anon_sym_json_DOTdecode] = ACTIONS(2729), - [anon_sym_LBRACK2] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2729), - [anon_sym_CARET] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_LT_DASH] = ACTIONS(2729), - [anon_sym_LT_LT] = ACTIONS(2729), - [anon_sym_GT_GT] = ACTIONS(2729), - [anon_sym_GT_GT_GT] = ACTIONS(2729), - [anon_sym_AMP_CARET] = ACTIONS(2729), - [anon_sym_AMP_AMP] = ACTIONS(2729), - [anon_sym_PIPE_PIPE] = ACTIONS(2729), - [anon_sym_or] = ACTIONS(2729), - [sym_none] = ACTIONS(2729), - [sym_true] = ACTIONS(2729), - [sym_false] = ACTIONS(2729), - [sym_nil] = ACTIONS(2729), - [anon_sym_QMARK_DOT] = ACTIONS(2729), - [anon_sym_POUND_LBRACK] = ACTIONS(2729), - [anon_sym_if] = ACTIONS(2729), - [anon_sym_DOLLARif] = ACTIONS(2729), - [anon_sym_is] = ACTIONS(2729), - [anon_sym_BANGis] = ACTIONS(2729), - [anon_sym_in] = ACTIONS(2729), - [anon_sym_BANGin] = ACTIONS(2729), - [anon_sym_match] = ACTIONS(2729), - [anon_sym_select] = ACTIONS(2729), - [anon_sym_lock] = ACTIONS(2729), - [anon_sym_rlock] = ACTIONS(2729), - [anon_sym_unsafe] = ACTIONS(2729), - [anon_sym_sql] = ACTIONS(2729), - [sym_int_literal] = ACTIONS(2729), - [sym_float_literal] = ACTIONS(2729), - [sym_rune_literal] = ACTIONS(2729), - [anon_sym_SQUOTE] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2729), - [anon_sym_c_SQUOTE] = ACTIONS(2729), - [anon_sym_c_DQUOTE] = ACTIONS(2729), - [anon_sym_r_SQUOTE] = ACTIONS(2729), - [anon_sym_r_DQUOTE] = ACTIONS(2729), - [sym_pseudo_compile_time_identifier] = ACTIONS(2729), - [anon_sym_shared] = ACTIONS(2729), - [anon_sym_map_LBRACK] = ACTIONS(2729), - [anon_sym_chan] = ACTIONS(2729), - [anon_sym_thread] = ACTIONS(2729), - [anon_sym_atomic] = ACTIONS(2729), - [anon_sym_assert] = ACTIONS(2729), - [anon_sym_defer] = ACTIONS(2729), - [anon_sym_goto] = ACTIONS(2729), - [anon_sym_break] = ACTIONS(2729), - [anon_sym_continue] = ACTIONS(2729), - [anon_sym_return] = ACTIONS(2729), - [anon_sym_DOLLARfor] = ACTIONS(2729), - [anon_sym_for] = ACTIONS(2729), - [anon_sym_POUND] = ACTIONS(2729), - [anon_sym_asm] = ACTIONS(2729), - [anon_sym_AT_LBRACK] = ACTIONS(2729), + [anon_sym_DOT] = ACTIONS(2731), + [anon_sym_as] = ACTIONS(2731), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_COMMA] = ACTIONS(2731), + [anon_sym_const] = ACTIONS(2731), + [anon_sym_LPAREN] = ACTIONS(2731), + [anon_sym___global] = ACTIONS(2731), + [anon_sym_type] = ACTIONS(2731), + [anon_sym_fn] = ACTIONS(2731), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2731), + [anon_sym_SLASH] = ACTIONS(2731), + [anon_sym_PERCENT] = ACTIONS(2731), + [anon_sym_LT] = ACTIONS(2731), + [anon_sym_GT] = ACTIONS(2731), + [anon_sym_EQ_EQ] = ACTIONS(2731), + [anon_sym_BANG_EQ] = ACTIONS(2731), + [anon_sym_LT_EQ] = ACTIONS(2731), + [anon_sym_GT_EQ] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2729), + [anon_sym_struct] = ACTIONS(2731), + [anon_sym_union] = ACTIONS(2731), + [anon_sym_pub] = ACTIONS(2731), + [anon_sym_mut] = ACTIONS(2731), + [anon_sym_enum] = ACTIONS(2731), + [anon_sym_interface] = ACTIONS(2731), + [anon_sym_PLUS_PLUS] = ACTIONS(2731), + [anon_sym_DASH_DASH] = ACTIONS(2731), + [anon_sym_QMARK] = ACTIONS(2731), + [anon_sym_BANG] = ACTIONS(2731), + [anon_sym_go] = ACTIONS(2731), + [anon_sym_spawn] = ACTIONS(2731), + [anon_sym_json_DOTdecode] = ACTIONS(2731), + [anon_sym_PIPE] = ACTIONS(2731), + [anon_sym_LBRACK2] = ACTIONS(2731), + [anon_sym_TILDE] = ACTIONS(2731), + [anon_sym_CARET] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_LT_DASH] = ACTIONS(2731), + [anon_sym_LT_LT] = ACTIONS(2731), + [anon_sym_GT_GT] = ACTIONS(2731), + [anon_sym_GT_GT_GT] = ACTIONS(2731), + [anon_sym_AMP_CARET] = ACTIONS(2731), + [anon_sym_AMP_AMP] = ACTIONS(2731), + [anon_sym_PIPE_PIPE] = ACTIONS(2731), + [anon_sym_or] = ACTIONS(2731), + [sym_none] = ACTIONS(2731), + [sym_true] = ACTIONS(2731), + [sym_false] = ACTIONS(2731), + [sym_nil] = ACTIONS(2731), + [anon_sym_QMARK_DOT] = ACTIONS(2731), + [anon_sym_POUND_LBRACK] = ACTIONS(2731), + [anon_sym_if] = ACTIONS(2731), + [anon_sym_DOLLARif] = ACTIONS(2731), + [anon_sym_is] = ACTIONS(2731), + [anon_sym_BANGis] = ACTIONS(2731), + [anon_sym_in] = ACTIONS(2731), + [anon_sym_BANGin] = ACTIONS(2731), + [anon_sym_match] = ACTIONS(2731), + [anon_sym_select] = ACTIONS(2731), + [anon_sym_lock] = ACTIONS(2731), + [anon_sym_rlock] = ACTIONS(2731), + [anon_sym_unsafe] = ACTIONS(2731), + [anon_sym_sql] = ACTIONS(2731), + [sym_int_literal] = ACTIONS(2731), + [sym_float_literal] = ACTIONS(2731), + [sym_rune_literal] = ACTIONS(2731), + [anon_sym_SQUOTE] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(2731), + [anon_sym_c_SQUOTE] = ACTIONS(2731), + [anon_sym_c_DQUOTE] = ACTIONS(2731), + [anon_sym_r_SQUOTE] = ACTIONS(2731), + [anon_sym_r_DQUOTE] = ACTIONS(2731), + [sym_pseudo_compile_time_identifier] = ACTIONS(2731), + [anon_sym_shared] = ACTIONS(2731), + [anon_sym_map_LBRACK] = ACTIONS(2731), + [anon_sym_chan] = ACTIONS(2731), + [anon_sym_thread] = ACTIONS(2731), + [anon_sym_atomic] = ACTIONS(2731), + [anon_sym_assert] = ACTIONS(2731), + [anon_sym_defer] = ACTIONS(2731), + [anon_sym_goto] = ACTIONS(2731), + [anon_sym_break] = ACTIONS(2731), + [anon_sym_continue] = ACTIONS(2731), + [anon_sym_return] = ACTIONS(2731), + [anon_sym_DOLLARfor] = ACTIONS(2731), + [anon_sym_for] = ACTIONS(2731), + [anon_sym_POUND] = ACTIONS(2731), + [anon_sym_asm] = ACTIONS(2731), + [anon_sym_AT_LBRACK] = ACTIONS(2731), }, [997] = { [sym_line_comment] = STATE(997), [sym_block_comment] = STATE(997), - [ts_builtin_sym_end] = ACTIONS(2469), - [sym_identifier] = ACTIONS(2471), - [anon_sym_LF] = ACTIONS(2471), - [anon_sym_CR] = ACTIONS(2471), - [anon_sym_CR_LF] = ACTIONS(2471), + [ts_builtin_sym_end] = ACTIONS(2725), + [sym_identifier] = ACTIONS(2727), + [anon_sym_LF] = ACTIONS(2727), + [anon_sym_CR] = ACTIONS(2727), + [anon_sym_CR_LF] = ACTIONS(2727), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2471), - [anon_sym_as] = ACTIONS(2471), - [anon_sym_LBRACE] = ACTIONS(2471), - [anon_sym_COMMA] = ACTIONS(2471), - [anon_sym_const] = ACTIONS(2471), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym___global] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_PIPE] = ACTIONS(2471), - [anon_sym_fn] = ACTIONS(2471), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_STAR] = ACTIONS(2471), - [anon_sym_SLASH] = ACTIONS(2471), - [anon_sym_PERCENT] = ACTIONS(2471), - [anon_sym_LT] = ACTIONS(2471), - [anon_sym_GT] = ACTIONS(2471), - [anon_sym_EQ_EQ] = ACTIONS(2471), - [anon_sym_BANG_EQ] = ACTIONS(2471), - [anon_sym_LT_EQ] = ACTIONS(2471), - [anon_sym_GT_EQ] = ACTIONS(2471), - [anon_sym_LBRACK] = ACTIONS(2469), - [anon_sym_struct] = ACTIONS(2471), - [anon_sym_union] = ACTIONS(2471), - [anon_sym_pub] = ACTIONS(2471), - [anon_sym_mut] = ACTIONS(2471), - [anon_sym_enum] = ACTIONS(2471), - [anon_sym_interface] = ACTIONS(2471), - [anon_sym_PLUS_PLUS] = ACTIONS(2471), - [anon_sym_DASH_DASH] = ACTIONS(2471), - [anon_sym_QMARK] = ACTIONS(2471), - [anon_sym_BANG] = ACTIONS(2471), - [anon_sym_go] = ACTIONS(2471), - [anon_sym_spawn] = ACTIONS(2471), - [anon_sym_json_DOTdecode] = ACTIONS(2471), - [anon_sym_LBRACK2] = ACTIONS(2471), - [anon_sym_TILDE] = ACTIONS(2471), - [anon_sym_CARET] = ACTIONS(2471), - [anon_sym_AMP] = ACTIONS(2471), - [anon_sym_LT_DASH] = ACTIONS(2471), - [anon_sym_LT_LT] = ACTIONS(2471), - [anon_sym_GT_GT] = ACTIONS(2471), - [anon_sym_GT_GT_GT] = ACTIONS(2471), - [anon_sym_AMP_CARET] = ACTIONS(2471), - [anon_sym_AMP_AMP] = ACTIONS(2471), - [anon_sym_PIPE_PIPE] = ACTIONS(2471), - [anon_sym_or] = ACTIONS(2471), - [sym_none] = ACTIONS(2471), - [sym_true] = ACTIONS(2471), - [sym_false] = ACTIONS(2471), - [sym_nil] = ACTIONS(2471), - [anon_sym_QMARK_DOT] = ACTIONS(2471), - [anon_sym_POUND_LBRACK] = ACTIONS(2471), - [anon_sym_if] = ACTIONS(2471), - [anon_sym_DOLLARif] = ACTIONS(2471), - [anon_sym_is] = ACTIONS(2471), - [anon_sym_BANGis] = ACTIONS(2471), - [anon_sym_in] = ACTIONS(2471), - [anon_sym_BANGin] = ACTIONS(2471), - [anon_sym_match] = ACTIONS(2471), - [anon_sym_select] = ACTIONS(2471), - [anon_sym_lock] = ACTIONS(2471), - [anon_sym_rlock] = ACTIONS(2471), - [anon_sym_unsafe] = ACTIONS(2471), - [anon_sym_sql] = ACTIONS(2471), - [sym_int_literal] = ACTIONS(2471), - [sym_float_literal] = ACTIONS(2471), - [sym_rune_literal] = ACTIONS(2471), - [anon_sym_SQUOTE] = ACTIONS(2471), - [anon_sym_DQUOTE] = ACTIONS(2471), - [anon_sym_c_SQUOTE] = ACTIONS(2471), - [anon_sym_c_DQUOTE] = ACTIONS(2471), - [anon_sym_r_SQUOTE] = ACTIONS(2471), - [anon_sym_r_DQUOTE] = ACTIONS(2471), - [sym_pseudo_compile_time_identifier] = ACTIONS(2471), - [anon_sym_shared] = ACTIONS(2471), - [anon_sym_map_LBRACK] = ACTIONS(2471), - [anon_sym_chan] = ACTIONS(2471), - [anon_sym_thread] = ACTIONS(2471), - [anon_sym_atomic] = ACTIONS(2471), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_defer] = ACTIONS(2471), - [anon_sym_goto] = ACTIONS(2471), - [anon_sym_break] = ACTIONS(2471), - [anon_sym_continue] = ACTIONS(2471), - [anon_sym_return] = ACTIONS(2471), - [anon_sym_DOLLARfor] = ACTIONS(2471), - [anon_sym_for] = ACTIONS(2471), - [anon_sym_POUND] = ACTIONS(2471), - [anon_sym_asm] = ACTIONS(2471), - [anon_sym_AT_LBRACK] = ACTIONS(2471), + [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_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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2727), + [anon_sym_DQUOTE] = ACTIONS(2727), + [anon_sym_c_SQUOTE] = ACTIONS(2727), + [anon_sym_c_DQUOTE] = ACTIONS(2727), + [anon_sym_r_SQUOTE] = ACTIONS(2727), + [anon_sym_r_DQUOTE] = 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), }, [998] = { [sym_line_comment] = STATE(998), [sym_block_comment] = STATE(998), - [ts_builtin_sym_end] = ACTIONS(2195), - [sym_identifier] = ACTIONS(2197), - [anon_sym_LF] = ACTIONS(2197), - [anon_sym_CR] = ACTIONS(2197), - [anon_sym_CR_LF] = ACTIONS(2197), + [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), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_COMMA] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym___global] = ACTIONS(2197), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_PIPE] = ACTIONS(2197), - [anon_sym_fn] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2197), - [anon_sym_SLASH] = ACTIONS(2197), - [anon_sym_PERCENT] = ACTIONS(2197), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_GT] = ACTIONS(2197), - [anon_sym_EQ_EQ] = ACTIONS(2197), - [anon_sym_BANG_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2197), - [anon_sym_union] = ACTIONS(2197), - [anon_sym_pub] = ACTIONS(2197), - [anon_sym_mut] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [anon_sym_interface] = ACTIONS(2197), - [anon_sym_PLUS_PLUS] = ACTIONS(2197), - [anon_sym_DASH_DASH] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_go] = ACTIONS(2197), - [anon_sym_spawn] = ACTIONS(2197), - [anon_sym_json_DOTdecode] = ACTIONS(2197), - [anon_sym_LBRACK2] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_CARET] = ACTIONS(2197), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_LT_DASH] = ACTIONS(2197), - [anon_sym_LT_LT] = ACTIONS(2197), - [anon_sym_GT_GT] = ACTIONS(2197), - [anon_sym_GT_GT_GT] = ACTIONS(2197), - [anon_sym_AMP_CARET] = ACTIONS(2197), - [anon_sym_AMP_AMP] = ACTIONS(2197), - [anon_sym_PIPE_PIPE] = ACTIONS(2197), - [anon_sym_or] = ACTIONS(2197), - [sym_none] = ACTIONS(2197), - [sym_true] = ACTIONS(2197), - [sym_false] = ACTIONS(2197), - [sym_nil] = ACTIONS(2197), - [anon_sym_QMARK_DOT] = ACTIONS(2197), - [anon_sym_POUND_LBRACK] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_DOLLARif] = ACTIONS(2197), - [anon_sym_is] = ACTIONS(2197), - [anon_sym_BANGis] = ACTIONS(2197), - [anon_sym_in] = ACTIONS(2197), - [anon_sym_BANGin] = ACTIONS(2197), - [anon_sym_match] = ACTIONS(2197), - [anon_sym_select] = ACTIONS(2197), - [anon_sym_lock] = ACTIONS(2197), - [anon_sym_rlock] = ACTIONS(2197), - [anon_sym_unsafe] = ACTIONS(2197), - [anon_sym_sql] = ACTIONS(2197), - [sym_int_literal] = ACTIONS(2197), - [sym_float_literal] = ACTIONS(2197), - [sym_rune_literal] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_DQUOTE] = ACTIONS(2197), - [anon_sym_c_SQUOTE] = ACTIONS(2197), - [anon_sym_c_DQUOTE] = ACTIONS(2197), - [anon_sym_r_SQUOTE] = ACTIONS(2197), - [anon_sym_r_DQUOTE] = ACTIONS(2197), - [sym_pseudo_compile_time_identifier] = ACTIONS(2197), - [anon_sym_shared] = ACTIONS(2197), - [anon_sym_map_LBRACK] = ACTIONS(2197), - [anon_sym_chan] = ACTIONS(2197), - [anon_sym_thread] = ACTIONS(2197), - [anon_sym_atomic] = ACTIONS(2197), - [anon_sym_assert] = ACTIONS(2197), - [anon_sym_defer] = ACTIONS(2197), - [anon_sym_goto] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_DOLLARfor] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_POUND] = ACTIONS(2197), - [anon_sym_asm] = ACTIONS(2197), - [anon_sym_AT_LBRACK] = ACTIONS(2197), + [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_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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2715), + [anon_sym_c_SQUOTE] = ACTIONS(2715), + [anon_sym_c_DQUOTE] = ACTIONS(2715), + [anon_sym_r_SQUOTE] = ACTIONS(2715), + [anon_sym_r_DQUOTE] = 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), }, [999] = { [sym_line_comment] = STATE(999), [sym_block_comment] = STATE(999), - [ts_builtin_sym_end] = ACTIONS(2183), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LF] = ACTIONS(2185), - [anon_sym_CR] = ACTIONS(2185), - [anon_sym_CR_LF] = ACTIONS(2185), + [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_DOT] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_COMMA] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym___global] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_PIPE] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(2185), - [anon_sym_SLASH] = ACTIONS(2185), - [anon_sym_PERCENT] = ACTIONS(2185), - [anon_sym_LT] = ACTIONS(2185), - [anon_sym_GT] = ACTIONS(2185), - [anon_sym_EQ_EQ] = ACTIONS(2185), - [anon_sym_BANG_EQ] = ACTIONS(2185), - [anon_sym_LT_EQ] = ACTIONS(2185), - [anon_sym_GT_EQ] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_mut] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_interface] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_QMARK] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_go] = ACTIONS(2185), - [anon_sym_spawn] = ACTIONS(2185), - [anon_sym_json_DOTdecode] = ACTIONS(2185), - [anon_sym_LBRACK2] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_LT_DASH] = ACTIONS(2185), - [anon_sym_LT_LT] = ACTIONS(2185), - [anon_sym_GT_GT] = ACTIONS(2185), - [anon_sym_GT_GT_GT] = ACTIONS(2185), - [anon_sym_AMP_CARET] = ACTIONS(2185), - [anon_sym_AMP_AMP] = ACTIONS(2185), - [anon_sym_PIPE_PIPE] = ACTIONS(2185), - [anon_sym_or] = ACTIONS(2185), - [sym_none] = ACTIONS(2185), - [sym_true] = ACTIONS(2185), - [sym_false] = ACTIONS(2185), - [sym_nil] = ACTIONS(2185), - [anon_sym_QMARK_DOT] = ACTIONS(2185), - [anon_sym_POUND_LBRACK] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_DOLLARif] = ACTIONS(2185), - [anon_sym_is] = ACTIONS(2185), - [anon_sym_BANGis] = ACTIONS(2185), - [anon_sym_in] = ACTIONS(2185), - [anon_sym_BANGin] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_select] = ACTIONS(2185), - [anon_sym_lock] = ACTIONS(2185), - [anon_sym_rlock] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_sql] = ACTIONS(2185), - [sym_int_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_rune_literal] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_DQUOTE] = ACTIONS(2185), - [anon_sym_c_SQUOTE] = ACTIONS(2185), - [anon_sym_c_DQUOTE] = ACTIONS(2185), - [anon_sym_r_SQUOTE] = ACTIONS(2185), - [anon_sym_r_DQUOTE] = ACTIONS(2185), - [sym_pseudo_compile_time_identifier] = ACTIONS(2185), - [anon_sym_shared] = ACTIONS(2185), - [anon_sym_map_LBRACK] = ACTIONS(2185), - [anon_sym_chan] = ACTIONS(2185), - [anon_sym_thread] = ACTIONS(2185), - [anon_sym_atomic] = ACTIONS(2185), - [anon_sym_assert] = ACTIONS(2185), - [anon_sym_defer] = ACTIONS(2185), - [anon_sym_goto] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_DOLLARfor] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_POUND] = ACTIONS(2185), - [anon_sym_asm] = ACTIONS(2185), - [anon_sym_AT_LBRACK] = ACTIONS(2185), + [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_fn] = ACTIONS(2941), + [anon_sym_PLUS] = ACTIONS(2941), + [anon_sym_DASH] = ACTIONS(2941), + [anon_sym_STAR] = ACTIONS(2941), + [anon_sym_SLASH] = 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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2941), + [anon_sym_DQUOTE] = ACTIONS(2941), + [anon_sym_c_SQUOTE] = ACTIONS(2941), + [anon_sym_c_DQUOTE] = ACTIONS(2941), + [anon_sym_r_SQUOTE] = ACTIONS(2941), + [anon_sym_r_DQUOTE] = 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), }, [1000] = { [sym_line_comment] = STATE(1000), [sym_block_comment] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(2545), - [sym_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2547), - [anon_sym_CR] = ACTIONS(2547), - [anon_sym_CR_LF] = ACTIONS(2547), + [ts_builtin_sym_end] = ACTIONS(3016), + [sym_identifier] = ACTIONS(3018), + [anon_sym_LF] = ACTIONS(3018), + [anon_sym_CR] = ACTIONS(3018), + [anon_sym_CR_LF] = ACTIONS(3018), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_COMMA] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym___global] = ACTIONS(2547), - [anon_sym_type] = ACTIONS(2547), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_fn] = ACTIONS(2547), - [anon_sym_PLUS] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_STAR] = ACTIONS(2547), - [anon_sym_SLASH] = ACTIONS(2547), - [anon_sym_PERCENT] = ACTIONS(2547), - [anon_sym_LT] = ACTIONS(2547), - [anon_sym_GT] = ACTIONS(2547), - [anon_sym_EQ_EQ] = ACTIONS(2547), - [anon_sym_BANG_EQ] = ACTIONS(2547), - [anon_sym_LT_EQ] = ACTIONS(2547), - [anon_sym_GT_EQ] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2545), - [anon_sym_struct] = ACTIONS(2547), - [anon_sym_union] = ACTIONS(2547), - [anon_sym_pub] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_enum] = ACTIONS(2547), - [anon_sym_interface] = ACTIONS(2547), - [anon_sym_PLUS_PLUS] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_QMARK] = ACTIONS(2547), - [anon_sym_BANG] = ACTIONS(2547), - [anon_sym_go] = ACTIONS(2547), - [anon_sym_spawn] = ACTIONS(2547), - [anon_sym_json_DOTdecode] = ACTIONS(2547), - [anon_sym_LBRACK2] = ACTIONS(2547), - [anon_sym_TILDE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [anon_sym_AMP] = ACTIONS(2547), - [anon_sym_LT_DASH] = ACTIONS(2547), - [anon_sym_LT_LT] = ACTIONS(2547), - [anon_sym_GT_GT] = ACTIONS(2547), - [anon_sym_GT_GT_GT] = ACTIONS(2547), - [anon_sym_AMP_CARET] = ACTIONS(2547), - [anon_sym_AMP_AMP] = ACTIONS(2547), - [anon_sym_PIPE_PIPE] = ACTIONS(2547), - [anon_sym_or] = ACTIONS(2547), - [sym_none] = ACTIONS(2547), - [sym_true] = ACTIONS(2547), - [sym_false] = ACTIONS(2547), - [sym_nil] = ACTIONS(2547), - [anon_sym_QMARK_DOT] = ACTIONS(2547), - [anon_sym_POUND_LBRACK] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_DOLLARif] = ACTIONS(2547), - [anon_sym_is] = ACTIONS(2547), - [anon_sym_BANGis] = ACTIONS(2547), - [anon_sym_in] = ACTIONS(2547), - [anon_sym_BANGin] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_select] = ACTIONS(2547), - [anon_sym_lock] = ACTIONS(2547), - [anon_sym_rlock] = ACTIONS(2547), - [anon_sym_unsafe] = ACTIONS(2547), - [anon_sym_sql] = ACTIONS(2547), - [sym_int_literal] = ACTIONS(2547), - [sym_float_literal] = ACTIONS(2547), - [sym_rune_literal] = ACTIONS(2547), - [anon_sym_SQUOTE] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [anon_sym_c_SQUOTE] = ACTIONS(2547), - [anon_sym_c_DQUOTE] = ACTIONS(2547), - [anon_sym_r_SQUOTE] = ACTIONS(2547), - [anon_sym_r_DQUOTE] = ACTIONS(2547), - [sym_pseudo_compile_time_identifier] = ACTIONS(2547), - [anon_sym_shared] = ACTIONS(2547), - [anon_sym_map_LBRACK] = ACTIONS(2547), - [anon_sym_chan] = ACTIONS(2547), - [anon_sym_thread] = ACTIONS(2547), - [anon_sym_atomic] = ACTIONS(2547), - [anon_sym_assert] = ACTIONS(2547), - [anon_sym_defer] = ACTIONS(2547), - [anon_sym_goto] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_DOLLARfor] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(2547), - [anon_sym_asm] = ACTIONS(2547), - [anon_sym_AT_LBRACK] = ACTIONS(2547), + [anon_sym_DOT] = ACTIONS(3018), + [anon_sym_as] = ACTIONS(3018), + [anon_sym_LBRACE] = ACTIONS(3018), + [anon_sym_COMMA] = ACTIONS(3018), + [anon_sym_const] = ACTIONS(3018), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym___global] = ACTIONS(3018), + [anon_sym_type] = ACTIONS(3018), + [anon_sym_fn] = ACTIONS(3018), + [anon_sym_PLUS] = ACTIONS(3018), + [anon_sym_DASH] = ACTIONS(3018), + [anon_sym_STAR] = ACTIONS(3018), + [anon_sym_SLASH] = ACTIONS(3018), + [anon_sym_PERCENT] = ACTIONS(3018), + [anon_sym_LT] = ACTIONS(3018), + [anon_sym_GT] = ACTIONS(3018), + [anon_sym_EQ_EQ] = ACTIONS(3018), + [anon_sym_BANG_EQ] = ACTIONS(3018), + [anon_sym_LT_EQ] = ACTIONS(3018), + [anon_sym_GT_EQ] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3016), + [anon_sym_struct] = ACTIONS(3018), + [anon_sym_union] = ACTIONS(3018), + [anon_sym_pub] = ACTIONS(3018), + [anon_sym_mut] = ACTIONS(3018), + [anon_sym_enum] = ACTIONS(3018), + [anon_sym_interface] = ACTIONS(3018), + [anon_sym_PLUS_PLUS] = ACTIONS(3018), + [anon_sym_DASH_DASH] = ACTIONS(3018), + [anon_sym_QMARK] = ACTIONS(3018), + [anon_sym_BANG] = ACTIONS(3018), + [anon_sym_go] = ACTIONS(3018), + [anon_sym_spawn] = ACTIONS(3018), + [anon_sym_json_DOTdecode] = ACTIONS(3018), + [anon_sym_PIPE] = ACTIONS(3018), + [anon_sym_LBRACK2] = ACTIONS(3018), + [anon_sym_TILDE] = ACTIONS(3018), + [anon_sym_CARET] = ACTIONS(3018), + [anon_sym_AMP] = ACTIONS(3018), + [anon_sym_LT_DASH] = ACTIONS(3018), + [anon_sym_LT_LT] = ACTIONS(3018), + [anon_sym_GT_GT] = ACTIONS(3018), + [anon_sym_GT_GT_GT] = ACTIONS(3018), + [anon_sym_AMP_CARET] = ACTIONS(3018), + [anon_sym_AMP_AMP] = ACTIONS(3018), + [anon_sym_PIPE_PIPE] = ACTIONS(3018), + [anon_sym_or] = ACTIONS(3018), + [sym_none] = ACTIONS(3018), + [sym_true] = ACTIONS(3018), + [sym_false] = ACTIONS(3018), + [sym_nil] = ACTIONS(3018), + [anon_sym_QMARK_DOT] = ACTIONS(3018), + [anon_sym_POUND_LBRACK] = ACTIONS(3018), + [anon_sym_if] = ACTIONS(3018), + [anon_sym_DOLLARif] = ACTIONS(3018), + [anon_sym_is] = ACTIONS(3018), + [anon_sym_BANGis] = ACTIONS(3018), + [anon_sym_in] = ACTIONS(3018), + [anon_sym_BANGin] = ACTIONS(3018), + [anon_sym_match] = ACTIONS(3018), + [anon_sym_select] = ACTIONS(3018), + [anon_sym_lock] = ACTIONS(3018), + [anon_sym_rlock] = ACTIONS(3018), + [anon_sym_unsafe] = ACTIONS(3018), + [anon_sym_sql] = ACTIONS(3018), + [sym_int_literal] = ACTIONS(3018), + [sym_float_literal] = ACTIONS(3018), + [sym_rune_literal] = ACTIONS(3018), + [anon_sym_SQUOTE] = ACTIONS(3018), + [anon_sym_DQUOTE] = ACTIONS(3018), + [anon_sym_c_SQUOTE] = ACTIONS(3018), + [anon_sym_c_DQUOTE] = ACTIONS(3018), + [anon_sym_r_SQUOTE] = ACTIONS(3018), + [anon_sym_r_DQUOTE] = ACTIONS(3018), + [sym_pseudo_compile_time_identifier] = ACTIONS(3018), + [anon_sym_shared] = ACTIONS(3018), + [anon_sym_map_LBRACK] = ACTIONS(3018), + [anon_sym_chan] = ACTIONS(3018), + [anon_sym_thread] = ACTIONS(3018), + [anon_sym_atomic] = ACTIONS(3018), + [anon_sym_assert] = ACTIONS(3018), + [anon_sym_defer] = ACTIONS(3018), + [anon_sym_goto] = ACTIONS(3018), + [anon_sym_break] = ACTIONS(3018), + [anon_sym_continue] = ACTIONS(3018), + [anon_sym_return] = ACTIONS(3018), + [anon_sym_DOLLARfor] = ACTIONS(3018), + [anon_sym_for] = ACTIONS(3018), + [anon_sym_POUND] = ACTIONS(3018), + [anon_sym_asm] = ACTIONS(3018), + [anon_sym_AT_LBRACK] = ACTIONS(3018), }, [1001] = { [sym_line_comment] = STATE(1001), [sym_block_comment] = STATE(1001), - [ts_builtin_sym_end] = ACTIONS(2429), - [sym_identifier] = ACTIONS(2431), - [anon_sym_LF] = ACTIONS(2431), - [anon_sym_CR] = ACTIONS(2431), - [anon_sym_CR_LF] = ACTIONS(2431), + [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_DOT] = ACTIONS(2431), - [anon_sym_as] = ACTIONS(2431), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_COMMA] = ACTIONS(2431), - [anon_sym_const] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym___global] = ACTIONS(2431), - [anon_sym_type] = ACTIONS(2431), - [anon_sym_PIPE] = ACTIONS(2431), - [anon_sym_fn] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2431), - [anon_sym_DASH] = ACTIONS(2431), - [anon_sym_STAR] = ACTIONS(2431), - [anon_sym_SLASH] = ACTIONS(2431), - [anon_sym_PERCENT] = ACTIONS(2431), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_GT] = ACTIONS(2431), - [anon_sym_EQ_EQ] = ACTIONS(2431), - [anon_sym_BANG_EQ] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(2431), - [anon_sym_GT_EQ] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2429), - [anon_sym_struct] = ACTIONS(2431), - [anon_sym_union] = ACTIONS(2431), - [anon_sym_pub] = ACTIONS(2431), - [anon_sym_mut] = ACTIONS(2431), - [anon_sym_enum] = ACTIONS(2431), - [anon_sym_interface] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_QMARK] = ACTIONS(2431), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_go] = ACTIONS(2431), - [anon_sym_spawn] = ACTIONS(2431), - [anon_sym_json_DOTdecode] = ACTIONS(2431), - [anon_sym_LBRACK2] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_LT_DASH] = ACTIONS(2431), - [anon_sym_LT_LT] = ACTIONS(2431), - [anon_sym_GT_GT] = ACTIONS(2431), - [anon_sym_GT_GT_GT] = ACTIONS(2431), - [anon_sym_AMP_CARET] = ACTIONS(2431), - [anon_sym_AMP_AMP] = ACTIONS(2431), - [anon_sym_PIPE_PIPE] = ACTIONS(2431), - [anon_sym_or] = ACTIONS(2431), - [sym_none] = ACTIONS(2431), - [sym_true] = ACTIONS(2431), - [sym_false] = ACTIONS(2431), - [sym_nil] = ACTIONS(2431), - [anon_sym_QMARK_DOT] = ACTIONS(2431), - [anon_sym_POUND_LBRACK] = ACTIONS(2431), - [anon_sym_if] = ACTIONS(2431), - [anon_sym_DOLLARif] = ACTIONS(2431), - [anon_sym_is] = ACTIONS(2431), - [anon_sym_BANGis] = ACTIONS(2431), - [anon_sym_in] = ACTIONS(2431), - [anon_sym_BANGin] = ACTIONS(2431), - [anon_sym_match] = ACTIONS(2431), - [anon_sym_select] = ACTIONS(2431), - [anon_sym_lock] = ACTIONS(2431), - [anon_sym_rlock] = ACTIONS(2431), - [anon_sym_unsafe] = ACTIONS(2431), - [anon_sym_sql] = ACTIONS(2431), - [sym_int_literal] = ACTIONS(2431), - [sym_float_literal] = ACTIONS(2431), - [sym_rune_literal] = ACTIONS(2431), - [anon_sym_SQUOTE] = ACTIONS(2431), - [anon_sym_DQUOTE] = ACTIONS(2431), - [anon_sym_c_SQUOTE] = ACTIONS(2431), - [anon_sym_c_DQUOTE] = ACTIONS(2431), - [anon_sym_r_SQUOTE] = ACTIONS(2431), - [anon_sym_r_DQUOTE] = ACTIONS(2431), - [sym_pseudo_compile_time_identifier] = ACTIONS(2431), - [anon_sym_shared] = ACTIONS(2431), - [anon_sym_map_LBRACK] = ACTIONS(2431), - [anon_sym_chan] = ACTIONS(2431), - [anon_sym_thread] = ACTIONS(2431), - [anon_sym_atomic] = ACTIONS(2431), - [anon_sym_assert] = ACTIONS(2431), - [anon_sym_defer] = ACTIONS(2431), - [anon_sym_goto] = ACTIONS(2431), - [anon_sym_break] = ACTIONS(2431), - [anon_sym_continue] = ACTIONS(2431), - [anon_sym_return] = ACTIONS(2431), - [anon_sym_DOLLARfor] = ACTIONS(2431), - [anon_sym_for] = ACTIONS(2431), - [anon_sym_POUND] = ACTIONS(2431), - [anon_sym_asm] = ACTIONS(2431), - [anon_sym_AT_LBRACK] = ACTIONS(2431), + [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_fn] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_SLASH] = 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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2995), + [anon_sym_c_SQUOTE] = ACTIONS(2995), + [anon_sym_c_DQUOTE] = ACTIONS(2995), + [anon_sym_r_SQUOTE] = ACTIONS(2995), + [anon_sym_r_DQUOTE] = 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), }, [1002] = { [sym_line_comment] = STATE(1002), [sym_block_comment] = STATE(1002), - [ts_builtin_sym_end] = ACTIONS(2187), - [sym_identifier] = ACTIONS(2189), - [anon_sym_LF] = ACTIONS(2189), - [anon_sym_CR] = ACTIONS(2189), - [anon_sym_CR_LF] = ACTIONS(2189), + [ts_builtin_sym_end] = ACTIONS(2963), + [sym_identifier] = ACTIONS(2965), + [anon_sym_LF] = ACTIONS(2965), + [anon_sym_CR] = ACTIONS(2965), + [anon_sym_CR_LF] = ACTIONS(2965), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2189), - [anon_sym_as] = ACTIONS(2189), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_COMMA] = ACTIONS(2189), - [anon_sym_const] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym___global] = ACTIONS(2189), - [anon_sym_type] = ACTIONS(2189), - [anon_sym_PIPE] = ACTIONS(2189), - [anon_sym_fn] = ACTIONS(2189), - [anon_sym_PLUS] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2189), - [anon_sym_STAR] = ACTIONS(2189), - [anon_sym_SLASH] = ACTIONS(2189), - [anon_sym_PERCENT] = ACTIONS(2189), - [anon_sym_LT] = ACTIONS(2189), - [anon_sym_GT] = ACTIONS(2189), - [anon_sym_EQ_EQ] = ACTIONS(2189), - [anon_sym_BANG_EQ] = ACTIONS(2189), - [anon_sym_LT_EQ] = ACTIONS(2189), - [anon_sym_GT_EQ] = ACTIONS(2189), - [anon_sym_LBRACK] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_pub] = ACTIONS(2189), - [anon_sym_mut] = ACTIONS(2189), - [anon_sym_enum] = ACTIONS(2189), - [anon_sym_interface] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [anon_sym_QMARK] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_go] = ACTIONS(2189), - [anon_sym_spawn] = ACTIONS(2189), - [anon_sym_json_DOTdecode] = ACTIONS(2189), - [anon_sym_LBRACK2] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_CARET] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2189), - [anon_sym_LT_DASH] = ACTIONS(2189), - [anon_sym_LT_LT] = ACTIONS(2189), - [anon_sym_GT_GT] = ACTIONS(2189), - [anon_sym_GT_GT_GT] = ACTIONS(2189), - [anon_sym_AMP_CARET] = ACTIONS(2189), - [anon_sym_AMP_AMP] = ACTIONS(2189), - [anon_sym_PIPE_PIPE] = ACTIONS(2189), - [anon_sym_or] = ACTIONS(2189), - [sym_none] = ACTIONS(2189), - [sym_true] = ACTIONS(2189), - [sym_false] = ACTIONS(2189), - [sym_nil] = ACTIONS(2189), - [anon_sym_QMARK_DOT] = ACTIONS(2189), - [anon_sym_POUND_LBRACK] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_DOLLARif] = ACTIONS(2189), - [anon_sym_is] = ACTIONS(2189), - [anon_sym_BANGis] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(2189), - [anon_sym_BANGin] = ACTIONS(2189), - [anon_sym_match] = ACTIONS(2189), - [anon_sym_select] = ACTIONS(2189), - [anon_sym_lock] = ACTIONS(2189), - [anon_sym_rlock] = ACTIONS(2189), - [anon_sym_unsafe] = ACTIONS(2189), - [anon_sym_sql] = ACTIONS(2189), - [sym_int_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_rune_literal] = ACTIONS(2189), - [anon_sym_SQUOTE] = ACTIONS(2189), - [anon_sym_DQUOTE] = ACTIONS(2189), - [anon_sym_c_SQUOTE] = ACTIONS(2189), - [anon_sym_c_DQUOTE] = ACTIONS(2189), - [anon_sym_r_SQUOTE] = ACTIONS(2189), - [anon_sym_r_DQUOTE] = ACTIONS(2189), - [sym_pseudo_compile_time_identifier] = ACTIONS(2189), - [anon_sym_shared] = ACTIONS(2189), - [anon_sym_map_LBRACK] = ACTIONS(2189), - [anon_sym_chan] = ACTIONS(2189), - [anon_sym_thread] = ACTIONS(2189), - [anon_sym_atomic] = ACTIONS(2189), - [anon_sym_assert] = ACTIONS(2189), - [anon_sym_defer] = ACTIONS(2189), - [anon_sym_goto] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), - [anon_sym_return] = ACTIONS(2189), - [anon_sym_DOLLARfor] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_POUND] = ACTIONS(2189), - [anon_sym_asm] = ACTIONS(2189), - [anon_sym_AT_LBRACK] = ACTIONS(2189), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_as] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_COMMA] = ACTIONS(2965), + [anon_sym_const] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym___global] = ACTIONS(2965), + [anon_sym_type] = ACTIONS(2965), + [anon_sym_fn] = ACTIONS(2965), + [anon_sym_PLUS] = ACTIONS(2965), + [anon_sym_DASH] = ACTIONS(2965), + [anon_sym_STAR] = ACTIONS(2965), + [anon_sym_SLASH] = ACTIONS(2965), + [anon_sym_PERCENT] = ACTIONS(2965), + [anon_sym_LT] = ACTIONS(2965), + [anon_sym_GT] = ACTIONS(2965), + [anon_sym_EQ_EQ] = ACTIONS(2965), + [anon_sym_BANG_EQ] = ACTIONS(2965), + [anon_sym_LT_EQ] = ACTIONS(2965), + [anon_sym_GT_EQ] = ACTIONS(2965), + [anon_sym_LBRACK] = ACTIONS(2963), + [anon_sym_struct] = ACTIONS(2965), + [anon_sym_union] = ACTIONS(2965), + [anon_sym_pub] = ACTIONS(2965), + [anon_sym_mut] = ACTIONS(2965), + [anon_sym_enum] = ACTIONS(2965), + [anon_sym_interface] = ACTIONS(2965), + [anon_sym_PLUS_PLUS] = ACTIONS(2965), + [anon_sym_DASH_DASH] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_BANG] = ACTIONS(2965), + [anon_sym_go] = ACTIONS(2965), + [anon_sym_spawn] = ACTIONS(2965), + [anon_sym_json_DOTdecode] = ACTIONS(2965), + [anon_sym_PIPE] = ACTIONS(2965), + [anon_sym_LBRACK2] = ACTIONS(2965), + [anon_sym_TILDE] = ACTIONS(2965), + [anon_sym_CARET] = ACTIONS(2965), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_LT_DASH] = ACTIONS(2965), + [anon_sym_LT_LT] = ACTIONS(2965), + [anon_sym_GT_GT] = ACTIONS(2965), + [anon_sym_GT_GT_GT] = ACTIONS(2965), + [anon_sym_AMP_CARET] = ACTIONS(2965), + [anon_sym_AMP_AMP] = ACTIONS(2965), + [anon_sym_PIPE_PIPE] = ACTIONS(2965), + [anon_sym_or] = ACTIONS(2965), + [sym_none] = ACTIONS(2965), + [sym_true] = ACTIONS(2965), + [sym_false] = ACTIONS(2965), + [sym_nil] = ACTIONS(2965), + [anon_sym_QMARK_DOT] = ACTIONS(2965), + [anon_sym_POUND_LBRACK] = ACTIONS(2965), + [anon_sym_if] = ACTIONS(2965), + [anon_sym_DOLLARif] = ACTIONS(2965), + [anon_sym_is] = ACTIONS(2965), + [anon_sym_BANGis] = ACTIONS(2965), + [anon_sym_in] = ACTIONS(2965), + [anon_sym_BANGin] = ACTIONS(2965), + [anon_sym_match] = ACTIONS(2965), + [anon_sym_select] = ACTIONS(2965), + [anon_sym_lock] = ACTIONS(2965), + [anon_sym_rlock] = ACTIONS(2965), + [anon_sym_unsafe] = ACTIONS(2965), + [anon_sym_sql] = ACTIONS(2965), + [sym_int_literal] = ACTIONS(2965), + [sym_float_literal] = ACTIONS(2965), + [sym_rune_literal] = ACTIONS(2965), + [anon_sym_SQUOTE] = ACTIONS(2965), + [anon_sym_DQUOTE] = ACTIONS(2965), + [anon_sym_c_SQUOTE] = ACTIONS(2965), + [anon_sym_c_DQUOTE] = ACTIONS(2965), + [anon_sym_r_SQUOTE] = ACTIONS(2965), + [anon_sym_r_DQUOTE] = ACTIONS(2965), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), + [anon_sym_shared] = ACTIONS(2965), + [anon_sym_map_LBRACK] = ACTIONS(2965), + [anon_sym_chan] = ACTIONS(2965), + [anon_sym_thread] = ACTIONS(2965), + [anon_sym_atomic] = ACTIONS(2965), + [anon_sym_assert] = ACTIONS(2965), + [anon_sym_defer] = ACTIONS(2965), + [anon_sym_goto] = ACTIONS(2965), + [anon_sym_break] = ACTIONS(2965), + [anon_sym_continue] = ACTIONS(2965), + [anon_sym_return] = ACTIONS(2965), + [anon_sym_DOLLARfor] = ACTIONS(2965), + [anon_sym_for] = ACTIONS(2965), + [anon_sym_POUND] = ACTIONS(2965), + [anon_sym_asm] = ACTIONS(2965), + [anon_sym_AT_LBRACK] = ACTIONS(2965), }, [1003] = { [sym_line_comment] = STATE(1003), [sym_block_comment] = STATE(1003), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LF] = ACTIONS(2097), - [anon_sym_CR] = ACTIONS(2097), - [anon_sym_CR_LF] = ACTIONS(2097), + [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_DOT] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym___global] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_PIPE] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_PERCENT] = ACTIONS(2097), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2097), - [anon_sym_EQ_EQ] = ACTIONS(2097), - [anon_sym_BANG_EQ] = ACTIONS(2097), - [anon_sym_LT_EQ] = ACTIONS(2097), - [anon_sym_GT_EQ] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_pub] = ACTIONS(2097), - [anon_sym_mut] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_interface] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_QMARK] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2097), - [anon_sym_json_DOTdecode] = ACTIONS(2097), - [anon_sym_LBRACK2] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2097), - [anon_sym_CARET] = ACTIONS(2097), - [anon_sym_AMP] = ACTIONS(2097), - [anon_sym_LT_DASH] = ACTIONS(2097), - [anon_sym_LT_LT] = ACTIONS(2097), - [anon_sym_GT_GT] = ACTIONS(2097), - [anon_sym_GT_GT_GT] = ACTIONS(2097), - [anon_sym_AMP_CARET] = ACTIONS(2097), - [anon_sym_AMP_AMP] = ACTIONS(2097), - [anon_sym_PIPE_PIPE] = ACTIONS(2097), - [anon_sym_or] = ACTIONS(2097), - [sym_none] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_nil] = ACTIONS(2097), - [anon_sym_QMARK_DOT] = ACTIONS(2097), - [anon_sym_POUND_LBRACK] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_DOLLARif] = ACTIONS(2097), - [anon_sym_is] = ACTIONS(2097), - [anon_sym_BANGis] = ACTIONS(2097), - [anon_sym_in] = ACTIONS(2097), - [anon_sym_BANGin] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_select] = ACTIONS(2097), - [anon_sym_lock] = ACTIONS(2097), - [anon_sym_rlock] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_sql] = ACTIONS(2097), - [sym_int_literal] = ACTIONS(2097), - [sym_float_literal] = ACTIONS(2097), - [sym_rune_literal] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_c_SQUOTE] = ACTIONS(2097), - [anon_sym_c_DQUOTE] = ACTIONS(2097), - [anon_sym_r_SQUOTE] = ACTIONS(2097), - [anon_sym_r_DQUOTE] = ACTIONS(2097), - [sym_pseudo_compile_time_identifier] = ACTIONS(2097), - [anon_sym_shared] = ACTIONS(2097), - [anon_sym_map_LBRACK] = ACTIONS(2097), - [anon_sym_chan] = ACTIONS(2097), - [anon_sym_thread] = ACTIONS(2097), - [anon_sym_atomic] = ACTIONS(2097), - [anon_sym_assert] = ACTIONS(2097), - [anon_sym_defer] = ACTIONS(2097), - [anon_sym_goto] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_DOLLARfor] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(2097), - [anon_sym_asm] = ACTIONS(2097), - [anon_sym_AT_LBRACK] = ACTIONS(2097), + [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_fn] = ACTIONS(2999), + [anon_sym_PLUS] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_SLASH] = 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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_DQUOTE] = ACTIONS(2999), + [anon_sym_c_SQUOTE] = ACTIONS(2999), + [anon_sym_c_DQUOTE] = ACTIONS(2999), + [anon_sym_r_SQUOTE] = ACTIONS(2999), + [anon_sym_r_DQUOTE] = 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), }, [1004] = { [sym_line_comment] = STATE(1004), [sym_block_comment] = STATE(1004), - [ts_builtin_sym_end] = ACTIONS(2121), - [sym_identifier] = ACTIONS(2123), - [anon_sym_LF] = ACTIONS(2123), - [anon_sym_CR] = ACTIONS(2123), - [anon_sym_CR_LF] = ACTIONS(2123), + [ts_builtin_sym_end] = ACTIONS(2959), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LF] = ACTIONS(2961), + [anon_sym_CR] = ACTIONS(2961), + [anon_sym_CR_LF] = ACTIONS(2961), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2123), - [anon_sym_as] = ACTIONS(2123), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_COMMA] = ACTIONS(2123), - [anon_sym_const] = ACTIONS(2123), - [anon_sym_LPAREN] = ACTIONS(2123), - [anon_sym___global] = ACTIONS(2123), - [anon_sym_type] = ACTIONS(2123), - [anon_sym_PIPE] = ACTIONS(2123), - [anon_sym_fn] = ACTIONS(2123), - [anon_sym_PLUS] = ACTIONS(2123), - [anon_sym_DASH] = ACTIONS(2123), - [anon_sym_STAR] = ACTIONS(2123), - [anon_sym_SLASH] = ACTIONS(2123), - [anon_sym_PERCENT] = ACTIONS(2123), - [anon_sym_LT] = ACTIONS(2123), - [anon_sym_GT] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2123), - [anon_sym_BANG_EQ] = ACTIONS(2123), - [anon_sym_LT_EQ] = ACTIONS(2123), - [anon_sym_GT_EQ] = ACTIONS(2123), - [anon_sym_LBRACK] = ACTIONS(2121), - [anon_sym_struct] = ACTIONS(2123), - [anon_sym_union] = ACTIONS(2123), - [anon_sym_pub] = ACTIONS(2123), - [anon_sym_mut] = ACTIONS(2123), - [anon_sym_enum] = ACTIONS(2123), - [anon_sym_interface] = ACTIONS(2123), - [anon_sym_PLUS_PLUS] = ACTIONS(2123), - [anon_sym_DASH_DASH] = ACTIONS(2123), - [anon_sym_QMARK] = ACTIONS(2123), - [anon_sym_BANG] = ACTIONS(2123), - [anon_sym_go] = ACTIONS(2123), - [anon_sym_spawn] = ACTIONS(2123), - [anon_sym_json_DOTdecode] = ACTIONS(2123), - [anon_sym_LBRACK2] = ACTIONS(2123), - [anon_sym_TILDE] = ACTIONS(2123), - [anon_sym_CARET] = ACTIONS(2123), - [anon_sym_AMP] = ACTIONS(2123), - [anon_sym_LT_DASH] = ACTIONS(2123), - [anon_sym_LT_LT] = ACTIONS(2123), - [anon_sym_GT_GT] = ACTIONS(2123), - [anon_sym_GT_GT_GT] = ACTIONS(2123), - [anon_sym_AMP_CARET] = ACTIONS(2123), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_PIPE_PIPE] = ACTIONS(2123), - [anon_sym_or] = ACTIONS(2123), - [sym_none] = ACTIONS(2123), - [sym_true] = ACTIONS(2123), - [sym_false] = ACTIONS(2123), - [sym_nil] = ACTIONS(2123), - [anon_sym_QMARK_DOT] = ACTIONS(2123), - [anon_sym_POUND_LBRACK] = ACTIONS(2123), - [anon_sym_if] = ACTIONS(2123), - [anon_sym_DOLLARif] = ACTIONS(2123), - [anon_sym_is] = ACTIONS(2123), - [anon_sym_BANGis] = ACTIONS(2123), - [anon_sym_in] = ACTIONS(2123), - [anon_sym_BANGin] = ACTIONS(2123), - [anon_sym_match] = ACTIONS(2123), - [anon_sym_select] = ACTIONS(2123), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2123), - [anon_sym_sql] = ACTIONS(2123), - [sym_int_literal] = ACTIONS(2123), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_DQUOTE] = ACTIONS(2123), - [anon_sym_c_SQUOTE] = ACTIONS(2123), - [anon_sym_c_DQUOTE] = ACTIONS(2123), - [anon_sym_r_SQUOTE] = ACTIONS(2123), - [anon_sym_r_DQUOTE] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(2123), - [anon_sym_shared] = ACTIONS(2123), - [anon_sym_map_LBRACK] = ACTIONS(2123), - [anon_sym_chan] = ACTIONS(2123), - [anon_sym_thread] = ACTIONS(2123), - [anon_sym_atomic] = ACTIONS(2123), - [anon_sym_assert] = ACTIONS(2123), - [anon_sym_defer] = ACTIONS(2123), - [anon_sym_goto] = ACTIONS(2123), - [anon_sym_break] = ACTIONS(2123), - [anon_sym_continue] = ACTIONS(2123), - [anon_sym_return] = ACTIONS(2123), - [anon_sym_DOLLARfor] = ACTIONS(2123), - [anon_sym_for] = ACTIONS(2123), - [anon_sym_POUND] = ACTIONS(2123), - [anon_sym_asm] = ACTIONS(2123), - [anon_sym_AT_LBRACK] = ACTIONS(2123), + [anon_sym_DOT] = ACTIONS(2961), + [anon_sym_as] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2961), + [anon_sym_COMMA] = ACTIONS(2961), + [anon_sym_const] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2961), + [anon_sym___global] = ACTIONS(2961), + [anon_sym_type] = ACTIONS(2961), + [anon_sym_fn] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2961), + [anon_sym_SLASH] = ACTIONS(2961), + [anon_sym_PERCENT] = ACTIONS(2961), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_EQ_EQ] = ACTIONS(2961), + [anon_sym_BANG_EQ] = ACTIONS(2961), + [anon_sym_LT_EQ] = ACTIONS(2961), + [anon_sym_GT_EQ] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2959), + [anon_sym_struct] = ACTIONS(2961), + [anon_sym_union] = ACTIONS(2961), + [anon_sym_pub] = ACTIONS(2961), + [anon_sym_mut] = ACTIONS(2961), + [anon_sym_enum] = ACTIONS(2961), + [anon_sym_interface] = ACTIONS(2961), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_DASH_DASH] = ACTIONS(2961), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_BANG] = ACTIONS(2961), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2961), + [anon_sym_json_DOTdecode] = ACTIONS(2961), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_LBRACK2] = ACTIONS(2961), + [anon_sym_TILDE] = ACTIONS(2961), + [anon_sym_CARET] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2961), + [anon_sym_LT_LT] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(2961), + [anon_sym_GT_GT_GT] = ACTIONS(2961), + [anon_sym_AMP_CARET] = ACTIONS(2961), + [anon_sym_AMP_AMP] = ACTIONS(2961), + [anon_sym_PIPE_PIPE] = ACTIONS(2961), + [anon_sym_or] = ACTIONS(2961), + [sym_none] = ACTIONS(2961), + [sym_true] = ACTIONS(2961), + [sym_false] = ACTIONS(2961), + [sym_nil] = ACTIONS(2961), + [anon_sym_QMARK_DOT] = ACTIONS(2961), + [anon_sym_POUND_LBRACK] = ACTIONS(2961), + [anon_sym_if] = ACTIONS(2961), + [anon_sym_DOLLARif] = ACTIONS(2961), + [anon_sym_is] = ACTIONS(2961), + [anon_sym_BANGis] = ACTIONS(2961), + [anon_sym_in] = ACTIONS(2961), + [anon_sym_BANGin] = ACTIONS(2961), + [anon_sym_match] = ACTIONS(2961), + [anon_sym_select] = ACTIONS(2961), + [anon_sym_lock] = ACTIONS(2961), + [anon_sym_rlock] = ACTIONS(2961), + [anon_sym_unsafe] = ACTIONS(2961), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2961), + [sym_float_literal] = ACTIONS(2961), + [sym_rune_literal] = ACTIONS(2961), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_DQUOTE] = ACTIONS(2961), + [anon_sym_c_SQUOTE] = ACTIONS(2961), + [anon_sym_c_DQUOTE] = ACTIONS(2961), + [anon_sym_r_SQUOTE] = ACTIONS(2961), + [anon_sym_r_DQUOTE] = ACTIONS(2961), + [sym_pseudo_compile_time_identifier] = ACTIONS(2961), + [anon_sym_shared] = ACTIONS(2961), + [anon_sym_map_LBRACK] = ACTIONS(2961), + [anon_sym_chan] = ACTIONS(2961), + [anon_sym_thread] = ACTIONS(2961), + [anon_sym_atomic] = ACTIONS(2961), + [anon_sym_assert] = ACTIONS(2961), + [anon_sym_defer] = ACTIONS(2961), + [anon_sym_goto] = ACTIONS(2961), + [anon_sym_break] = ACTIONS(2961), + [anon_sym_continue] = ACTIONS(2961), + [anon_sym_return] = ACTIONS(2961), + [anon_sym_DOLLARfor] = ACTIONS(2961), + [anon_sym_for] = ACTIONS(2961), + [anon_sym_POUND] = ACTIONS(2961), + [anon_sym_asm] = ACTIONS(2961), + [anon_sym_AT_LBRACK] = ACTIONS(2961), }, [1005] = { [sym_line_comment] = STATE(1005), [sym_block_comment] = STATE(1005), - [ts_builtin_sym_end] = ACTIONS(2263), - [sym_identifier] = ACTIONS(2265), - [anon_sym_LF] = ACTIONS(2265), - [anon_sym_CR] = ACTIONS(2265), - [anon_sym_CR_LF] = ACTIONS(2265), + [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_DOT] = ACTIONS(2265), - [anon_sym_as] = ACTIONS(2265), - [anon_sym_LBRACE] = ACTIONS(2265), - [anon_sym_COMMA] = ACTIONS(2265), - [anon_sym_const] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2265), - [anon_sym___global] = ACTIONS(2265), - [anon_sym_type] = ACTIONS(2265), - [anon_sym_PIPE] = ACTIONS(2265), - [anon_sym_fn] = ACTIONS(2265), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_SLASH] = ACTIONS(2265), - [anon_sym_PERCENT] = ACTIONS(2265), - [anon_sym_LT] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(2265), - [anon_sym_EQ_EQ] = ACTIONS(2265), - [anon_sym_BANG_EQ] = ACTIONS(2265), - [anon_sym_LT_EQ] = ACTIONS(2265), - [anon_sym_GT_EQ] = ACTIONS(2265), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_struct] = ACTIONS(2265), - [anon_sym_union] = ACTIONS(2265), - [anon_sym_pub] = ACTIONS(2265), - [anon_sym_mut] = ACTIONS(2265), - [anon_sym_enum] = ACTIONS(2265), - [anon_sym_interface] = ACTIONS(2265), - [anon_sym_PLUS_PLUS] = ACTIONS(2265), - [anon_sym_DASH_DASH] = ACTIONS(2265), - [anon_sym_QMARK] = ACTIONS(2265), - [anon_sym_BANG] = ACTIONS(2265), - [anon_sym_go] = ACTIONS(2265), - [anon_sym_spawn] = ACTIONS(2265), - [anon_sym_json_DOTdecode] = ACTIONS(2265), - [anon_sym_LBRACK2] = ACTIONS(2265), - [anon_sym_TILDE] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2265), - [anon_sym_AMP] = ACTIONS(2265), - [anon_sym_LT_DASH] = ACTIONS(2265), - [anon_sym_LT_LT] = ACTIONS(2265), - [anon_sym_GT_GT] = ACTIONS(2265), - [anon_sym_GT_GT_GT] = ACTIONS(2265), - [anon_sym_AMP_CARET] = ACTIONS(2265), - [anon_sym_AMP_AMP] = ACTIONS(2265), - [anon_sym_PIPE_PIPE] = ACTIONS(2265), - [anon_sym_or] = ACTIONS(2265), - [sym_none] = ACTIONS(2265), - [sym_true] = ACTIONS(2265), - [sym_false] = ACTIONS(2265), - [sym_nil] = ACTIONS(2265), - [anon_sym_QMARK_DOT] = ACTIONS(2265), - [anon_sym_POUND_LBRACK] = ACTIONS(2265), - [anon_sym_if] = ACTIONS(2265), - [anon_sym_DOLLARif] = ACTIONS(2265), - [anon_sym_is] = ACTIONS(2265), - [anon_sym_BANGis] = ACTIONS(2265), - [anon_sym_in] = ACTIONS(2265), - [anon_sym_BANGin] = ACTIONS(2265), - [anon_sym_match] = ACTIONS(2265), - [anon_sym_select] = ACTIONS(2265), - [anon_sym_lock] = ACTIONS(2265), - [anon_sym_rlock] = ACTIONS(2265), - [anon_sym_unsafe] = ACTIONS(2265), - [anon_sym_sql] = ACTIONS(2265), - [sym_int_literal] = ACTIONS(2265), - [sym_float_literal] = ACTIONS(2265), - [sym_rune_literal] = ACTIONS(2265), - [anon_sym_SQUOTE] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2265), - [anon_sym_c_SQUOTE] = ACTIONS(2265), - [anon_sym_c_DQUOTE] = ACTIONS(2265), - [anon_sym_r_SQUOTE] = ACTIONS(2265), - [anon_sym_r_DQUOTE] = ACTIONS(2265), - [sym_pseudo_compile_time_identifier] = ACTIONS(2265), - [anon_sym_shared] = ACTIONS(2265), - [anon_sym_map_LBRACK] = ACTIONS(2265), - [anon_sym_chan] = ACTIONS(2265), - [anon_sym_thread] = ACTIONS(2265), - [anon_sym_atomic] = ACTIONS(2265), - [anon_sym_assert] = ACTIONS(2265), - [anon_sym_defer] = ACTIONS(2265), - [anon_sym_goto] = ACTIONS(2265), - [anon_sym_break] = ACTIONS(2265), - [anon_sym_continue] = ACTIONS(2265), - [anon_sym_return] = ACTIONS(2265), - [anon_sym_DOLLARfor] = ACTIONS(2265), - [anon_sym_for] = ACTIONS(2265), - [anon_sym_POUND] = ACTIONS(2265), - [anon_sym_asm] = ACTIONS(2265), - [anon_sym_AT_LBRACK] = ACTIONS(2265), + [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_fn] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3003), + [anon_sym_DASH] = ACTIONS(3003), + [anon_sym_STAR] = ACTIONS(3003), + [anon_sym_SLASH] = 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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(3003), + [anon_sym_DQUOTE] = ACTIONS(3003), + [anon_sym_c_SQUOTE] = ACTIONS(3003), + [anon_sym_c_DQUOTE] = ACTIONS(3003), + [anon_sym_r_SQUOTE] = ACTIONS(3003), + [anon_sym_r_DQUOTE] = 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), }, [1006] = { [sym_line_comment] = STATE(1006), [sym_block_comment] = STATE(1006), - [ts_builtin_sym_end] = ACTIONS(2153), - [sym_identifier] = ACTIONS(2155), - [anon_sym_LF] = ACTIONS(2155), - [anon_sym_CR] = ACTIONS(2155), - [anon_sym_CR_LF] = ACTIONS(2155), + [ts_builtin_sym_end] = ACTIONS(3060), + [sym_identifier] = ACTIONS(3062), + [anon_sym_LF] = ACTIONS(3062), + [anon_sym_CR] = ACTIONS(3062), + [anon_sym_CR_LF] = ACTIONS(3062), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2155), - [anon_sym_as] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2155), - [anon_sym_COMMA] = ACTIONS(2155), - [anon_sym_const] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym___global] = ACTIONS(2155), - [anon_sym_type] = ACTIONS(2155), - [anon_sym_PIPE] = ACTIONS(2155), - [anon_sym_fn] = ACTIONS(2155), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2155), - [anon_sym_SLASH] = ACTIONS(2155), - [anon_sym_PERCENT] = ACTIONS(2155), - [anon_sym_LT] = ACTIONS(2155), - [anon_sym_GT] = ACTIONS(2155), - [anon_sym_EQ_EQ] = ACTIONS(2155), - [anon_sym_BANG_EQ] = ACTIONS(2155), - [anon_sym_LT_EQ] = ACTIONS(2155), - [anon_sym_GT_EQ] = ACTIONS(2155), - [anon_sym_LBRACK] = ACTIONS(2153), - [anon_sym_struct] = ACTIONS(2155), - [anon_sym_union] = ACTIONS(2155), - [anon_sym_pub] = ACTIONS(2155), - [anon_sym_mut] = ACTIONS(2155), - [anon_sym_enum] = ACTIONS(2155), - [anon_sym_interface] = ACTIONS(2155), - [anon_sym_PLUS_PLUS] = ACTIONS(2155), - [anon_sym_DASH_DASH] = ACTIONS(2155), - [anon_sym_QMARK] = ACTIONS(2155), - [anon_sym_BANG] = ACTIONS(2155), - [anon_sym_go] = ACTIONS(2155), - [anon_sym_spawn] = ACTIONS(2155), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2155), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_CARET] = ACTIONS(2155), - [anon_sym_AMP] = ACTIONS(2155), - [anon_sym_LT_DASH] = ACTIONS(2155), - [anon_sym_LT_LT] = ACTIONS(2155), - [anon_sym_GT_GT] = ACTIONS(2155), - [anon_sym_GT_GT_GT] = ACTIONS(2155), - [anon_sym_AMP_CARET] = ACTIONS(2155), - [anon_sym_AMP_AMP] = ACTIONS(2155), - [anon_sym_PIPE_PIPE] = ACTIONS(2155), - [anon_sym_or] = ACTIONS(2155), - [sym_none] = ACTIONS(2155), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [sym_nil] = ACTIONS(2155), - [anon_sym_QMARK_DOT] = ACTIONS(2155), - [anon_sym_POUND_LBRACK] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_DOLLARif] = ACTIONS(2155), - [anon_sym_is] = ACTIONS(2155), - [anon_sym_BANGis] = ACTIONS(2155), - [anon_sym_in] = ACTIONS(2155), - [anon_sym_BANGin] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2155), - [anon_sym_lock] = ACTIONS(2155), - [anon_sym_rlock] = ACTIONS(2155), - [anon_sym_unsafe] = ACTIONS(2155), - [anon_sym_sql] = ACTIONS(2155), - [sym_int_literal] = ACTIONS(2155), - [sym_float_literal] = ACTIONS(2155), - [sym_rune_literal] = ACTIONS(2155), - [anon_sym_SQUOTE] = ACTIONS(2155), - [anon_sym_DQUOTE] = ACTIONS(2155), - [anon_sym_c_SQUOTE] = ACTIONS(2155), - [anon_sym_c_DQUOTE] = ACTIONS(2155), - [anon_sym_r_SQUOTE] = ACTIONS(2155), - [anon_sym_r_DQUOTE] = ACTIONS(2155), - [sym_pseudo_compile_time_identifier] = ACTIONS(2155), - [anon_sym_shared] = ACTIONS(2155), - [anon_sym_map_LBRACK] = ACTIONS(2155), - [anon_sym_chan] = ACTIONS(2155), - [anon_sym_thread] = ACTIONS(2155), - [anon_sym_atomic] = ACTIONS(2155), - [anon_sym_assert] = ACTIONS(2155), - [anon_sym_defer] = ACTIONS(2155), - [anon_sym_goto] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_DOLLARfor] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_POUND] = ACTIONS(2155), - [anon_sym_asm] = ACTIONS(2155), - [anon_sym_AT_LBRACK] = ACTIONS(2155), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_as] = ACTIONS(3062), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3062), + [anon_sym_const] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym___global] = ACTIONS(3062), + [anon_sym_type] = ACTIONS(3062), + [anon_sym_fn] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_SLASH] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3062), + [anon_sym_EQ_EQ] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_LT_EQ] = ACTIONS(3062), + [anon_sym_GT_EQ] = ACTIONS(3062), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3062), + [anon_sym_pub] = ACTIONS(3062), + [anon_sym_mut] = ACTIONS(3062), + [anon_sym_enum] = ACTIONS(3062), + [anon_sym_interface] = ACTIONS(3062), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_go] = ACTIONS(3062), + [anon_sym_spawn] = ACTIONS(3062), + [anon_sym_json_DOTdecode] = ACTIONS(3062), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_LBRACK2] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_LT_LT] = ACTIONS(3062), + [anon_sym_GT_GT] = ACTIONS(3062), + [anon_sym_GT_GT_GT] = ACTIONS(3062), + [anon_sym_AMP_CARET] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_or] = ACTIONS(3062), + [sym_none] = ACTIONS(3062), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_nil] = ACTIONS(3062), + [anon_sym_QMARK_DOT] = ACTIONS(3062), + [anon_sym_POUND_LBRACK] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_DOLLARif] = ACTIONS(3062), + [anon_sym_is] = ACTIONS(3062), + [anon_sym_BANGis] = ACTIONS(3062), + [anon_sym_in] = ACTIONS(3062), + [anon_sym_BANGin] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_select] = ACTIONS(3062), + [anon_sym_lock] = ACTIONS(3062), + [anon_sym_rlock] = ACTIONS(3062), + [anon_sym_unsafe] = ACTIONS(3062), + [anon_sym_sql] = ACTIONS(3062), + [sym_int_literal] = ACTIONS(3062), + [sym_float_literal] = ACTIONS(3062), + [sym_rune_literal] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_c_SQUOTE] = ACTIONS(3062), + [anon_sym_c_DQUOTE] = ACTIONS(3062), + [anon_sym_r_SQUOTE] = ACTIONS(3062), + [anon_sym_r_DQUOTE] = ACTIONS(3062), + [sym_pseudo_compile_time_identifier] = ACTIONS(3062), + [anon_sym_shared] = ACTIONS(3062), + [anon_sym_map_LBRACK] = ACTIONS(3062), + [anon_sym_chan] = ACTIONS(3062), + [anon_sym_thread] = ACTIONS(3062), + [anon_sym_atomic] = ACTIONS(3062), + [anon_sym_assert] = ACTIONS(3062), + [anon_sym_defer] = ACTIONS(3062), + [anon_sym_goto] = ACTIONS(3062), + [anon_sym_break] = ACTIONS(3062), + [anon_sym_continue] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_DOLLARfor] = ACTIONS(3062), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_POUND] = ACTIONS(3062), + [anon_sym_asm] = ACTIONS(3062), + [anon_sym_AT_LBRACK] = ACTIONS(3062), }, [1007] = { [sym_line_comment] = STATE(1007), [sym_block_comment] = STATE(1007), - [ts_builtin_sym_end] = ACTIONS(3044), - [sym_identifier] = ACTIONS(3046), - [anon_sym_LF] = ACTIONS(3046), - [anon_sym_CR] = ACTIONS(3046), - [anon_sym_CR_LF] = ACTIONS(3046), + [ts_builtin_sym_end] = ACTIONS(3036), + [sym_identifier] = ACTIONS(3038), + [anon_sym_LF] = ACTIONS(3038), + [anon_sym_CR] = ACTIONS(3038), + [anon_sym_CR_LF] = ACTIONS(3038), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3046), - [anon_sym_as] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_const] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3046), - [anon_sym___global] = ACTIONS(3046), - [anon_sym_type] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3046), - [anon_sym_fn] = ACTIONS(3046), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_SLASH] = ACTIONS(3046), - [anon_sym_PERCENT] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_GT] = ACTIONS(3046), - [anon_sym_EQ_EQ] = ACTIONS(3046), - [anon_sym_BANG_EQ] = ACTIONS(3046), - [anon_sym_LT_EQ] = ACTIONS(3046), - [anon_sym_GT_EQ] = ACTIONS(3046), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_struct] = ACTIONS(3046), - [anon_sym_union] = ACTIONS(3046), - [anon_sym_pub] = ACTIONS(3046), - [anon_sym_mut] = ACTIONS(3046), - [anon_sym_enum] = ACTIONS(3046), - [anon_sym_interface] = ACTIONS(3046), - [anon_sym_PLUS_PLUS] = ACTIONS(3046), - [anon_sym_DASH_DASH] = ACTIONS(3046), - [anon_sym_QMARK] = ACTIONS(3046), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_go] = ACTIONS(3046), - [anon_sym_spawn] = ACTIONS(3046), - [anon_sym_json_DOTdecode] = ACTIONS(3046), - [anon_sym_LBRACK2] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_CARET] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_LT_DASH] = ACTIONS(3046), - [anon_sym_LT_LT] = ACTIONS(3046), - [anon_sym_GT_GT] = ACTIONS(3046), - [anon_sym_GT_GT_GT] = ACTIONS(3046), - [anon_sym_AMP_CARET] = ACTIONS(3046), - [anon_sym_AMP_AMP] = ACTIONS(3046), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3046), - [sym_none] = ACTIONS(3046), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_nil] = ACTIONS(3046), - [anon_sym_QMARK_DOT] = ACTIONS(3046), - [anon_sym_POUND_LBRACK] = ACTIONS(3046), - [anon_sym_if] = ACTIONS(3046), - [anon_sym_DOLLARif] = ACTIONS(3046), - [anon_sym_is] = ACTIONS(3046), - [anon_sym_BANGis] = ACTIONS(3046), - [anon_sym_in] = ACTIONS(3046), - [anon_sym_BANGin] = ACTIONS(3046), - [anon_sym_match] = ACTIONS(3046), - [anon_sym_select] = ACTIONS(3046), - [anon_sym_lock] = ACTIONS(3046), - [anon_sym_rlock] = ACTIONS(3046), - [anon_sym_unsafe] = ACTIONS(3046), - [anon_sym_sql] = ACTIONS(3046), - [sym_int_literal] = ACTIONS(3046), - [sym_float_literal] = ACTIONS(3046), - [sym_rune_literal] = ACTIONS(3046), - [anon_sym_SQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE] = ACTIONS(3046), - [anon_sym_c_SQUOTE] = ACTIONS(3046), - [anon_sym_c_DQUOTE] = ACTIONS(3046), - [anon_sym_r_SQUOTE] = ACTIONS(3046), - [anon_sym_r_DQUOTE] = ACTIONS(3046), - [sym_pseudo_compile_time_identifier] = ACTIONS(3046), - [anon_sym_shared] = ACTIONS(3046), - [anon_sym_map_LBRACK] = ACTIONS(3046), - [anon_sym_chan] = ACTIONS(3046), - [anon_sym_thread] = ACTIONS(3046), - [anon_sym_atomic] = ACTIONS(3046), - [anon_sym_assert] = ACTIONS(3046), - [anon_sym_defer] = ACTIONS(3046), - [anon_sym_goto] = ACTIONS(3046), - [anon_sym_break] = ACTIONS(3046), - [anon_sym_continue] = ACTIONS(3046), - [anon_sym_return] = ACTIONS(3046), - [anon_sym_DOLLARfor] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3046), - [anon_sym_POUND] = ACTIONS(3046), - [anon_sym_asm] = ACTIONS(3046), - [anon_sym_AT_LBRACK] = ACTIONS(3046), + [anon_sym_DOT] = ACTIONS(3038), + [anon_sym_as] = ACTIONS(3038), + [anon_sym_LBRACE] = ACTIONS(3038), + [anon_sym_COMMA] = ACTIONS(3038), + [anon_sym_const] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym___global] = ACTIONS(3038), + [anon_sym_type] = ACTIONS(3038), + [anon_sym_fn] = ACTIONS(3038), + [anon_sym_PLUS] = ACTIONS(3038), + [anon_sym_DASH] = ACTIONS(3038), + [anon_sym_STAR] = ACTIONS(3038), + [anon_sym_SLASH] = ACTIONS(3038), + [anon_sym_PERCENT] = ACTIONS(3038), + [anon_sym_LT] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3038), + [anon_sym_EQ_EQ] = ACTIONS(3038), + [anon_sym_BANG_EQ] = ACTIONS(3038), + [anon_sym_LT_EQ] = ACTIONS(3038), + [anon_sym_GT_EQ] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3036), + [anon_sym_struct] = ACTIONS(3038), + [anon_sym_union] = ACTIONS(3038), + [anon_sym_pub] = ACTIONS(3038), + [anon_sym_mut] = ACTIONS(3038), + [anon_sym_enum] = ACTIONS(3038), + [anon_sym_interface] = ACTIONS(3038), + [anon_sym_PLUS_PLUS] = ACTIONS(3038), + [anon_sym_DASH_DASH] = ACTIONS(3038), + [anon_sym_QMARK] = ACTIONS(3038), + [anon_sym_BANG] = ACTIONS(3038), + [anon_sym_go] = ACTIONS(3038), + [anon_sym_spawn] = ACTIONS(3038), + [anon_sym_json_DOTdecode] = ACTIONS(3038), + [anon_sym_PIPE] = ACTIONS(3038), + [anon_sym_LBRACK2] = ACTIONS(3038), + [anon_sym_TILDE] = ACTIONS(3038), + [anon_sym_CARET] = ACTIONS(3038), + [anon_sym_AMP] = ACTIONS(3038), + [anon_sym_LT_DASH] = ACTIONS(3038), + [anon_sym_LT_LT] = ACTIONS(3038), + [anon_sym_GT_GT] = ACTIONS(3038), + [anon_sym_GT_GT_GT] = ACTIONS(3038), + [anon_sym_AMP_CARET] = ACTIONS(3038), + [anon_sym_AMP_AMP] = ACTIONS(3038), + [anon_sym_PIPE_PIPE] = ACTIONS(3038), + [anon_sym_or] = ACTIONS(3038), + [sym_none] = ACTIONS(3038), + [sym_true] = ACTIONS(3038), + [sym_false] = ACTIONS(3038), + [sym_nil] = ACTIONS(3038), + [anon_sym_QMARK_DOT] = ACTIONS(3038), + [anon_sym_POUND_LBRACK] = ACTIONS(3038), + [anon_sym_if] = ACTIONS(3038), + [anon_sym_DOLLARif] = ACTIONS(3038), + [anon_sym_is] = ACTIONS(3038), + [anon_sym_BANGis] = ACTIONS(3038), + [anon_sym_in] = ACTIONS(3038), + [anon_sym_BANGin] = ACTIONS(3038), + [anon_sym_match] = ACTIONS(3038), + [anon_sym_select] = ACTIONS(3038), + [anon_sym_lock] = ACTIONS(3038), + [anon_sym_rlock] = ACTIONS(3038), + [anon_sym_unsafe] = ACTIONS(3038), + [anon_sym_sql] = ACTIONS(3038), + [sym_int_literal] = ACTIONS(3038), + [sym_float_literal] = ACTIONS(3038), + [sym_rune_literal] = ACTIONS(3038), + [anon_sym_SQUOTE] = ACTIONS(3038), + [anon_sym_DQUOTE] = ACTIONS(3038), + [anon_sym_c_SQUOTE] = ACTIONS(3038), + [anon_sym_c_DQUOTE] = ACTIONS(3038), + [anon_sym_r_SQUOTE] = ACTIONS(3038), + [anon_sym_r_DQUOTE] = ACTIONS(3038), + [sym_pseudo_compile_time_identifier] = ACTIONS(3038), + [anon_sym_shared] = ACTIONS(3038), + [anon_sym_map_LBRACK] = ACTIONS(3038), + [anon_sym_chan] = ACTIONS(3038), + [anon_sym_thread] = ACTIONS(3038), + [anon_sym_atomic] = ACTIONS(3038), + [anon_sym_assert] = ACTIONS(3038), + [anon_sym_defer] = ACTIONS(3038), + [anon_sym_goto] = ACTIONS(3038), + [anon_sym_break] = ACTIONS(3038), + [anon_sym_continue] = ACTIONS(3038), + [anon_sym_return] = ACTIONS(3038), + [anon_sym_DOLLARfor] = ACTIONS(3038), + [anon_sym_for] = ACTIONS(3038), + [anon_sym_POUND] = ACTIONS(3038), + [anon_sym_asm] = ACTIONS(3038), + [anon_sym_AT_LBRACK] = ACTIONS(3038), }, [1008] = { [sym_line_comment] = STATE(1008), [sym_block_comment] = STATE(1008), - [ts_builtin_sym_end] = ACTIONS(2203), - [sym_identifier] = ACTIONS(2205), - [anon_sym_LF] = ACTIONS(2205), - [anon_sym_CR] = ACTIONS(2205), - [anon_sym_CR_LF] = ACTIONS(2205), + [ts_builtin_sym_end] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), + [anon_sym_LF] = ACTIONS(2929), + [anon_sym_CR] = ACTIONS(2929), + [anon_sym_CR_LF] = ACTIONS(2929), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2205), - [anon_sym_as] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2205), - [anon_sym_COMMA] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym___global] = ACTIONS(2205), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_PIPE] = ACTIONS(2205), - [anon_sym_fn] = ACTIONS(2205), - [anon_sym_PLUS] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_STAR] = ACTIONS(2205), - [anon_sym_SLASH] = ACTIONS(2205), - [anon_sym_PERCENT] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_GT] = ACTIONS(2205), - [anon_sym_EQ_EQ] = ACTIONS(2205), - [anon_sym_BANG_EQ] = ACTIONS(2205), - [anon_sym_LT_EQ] = ACTIONS(2205), - [anon_sym_GT_EQ] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_struct] = ACTIONS(2205), - [anon_sym_union] = ACTIONS(2205), - [anon_sym_pub] = ACTIONS(2205), - [anon_sym_mut] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), - [anon_sym_interface] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [anon_sym_QMARK] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_go] = ACTIONS(2205), - [anon_sym_spawn] = ACTIONS(2205), - [anon_sym_json_DOTdecode] = ACTIONS(2205), - [anon_sym_LBRACK2] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), - [anon_sym_LT_DASH] = ACTIONS(2205), - [anon_sym_LT_LT] = ACTIONS(2205), - [anon_sym_GT_GT] = ACTIONS(2205), - [anon_sym_GT_GT_GT] = ACTIONS(2205), - [anon_sym_AMP_CARET] = ACTIONS(2205), - [anon_sym_AMP_AMP] = ACTIONS(2205), - [anon_sym_PIPE_PIPE] = ACTIONS(2205), - [anon_sym_or] = ACTIONS(2205), - [sym_none] = ACTIONS(2205), - [sym_true] = ACTIONS(2205), - [sym_false] = ACTIONS(2205), - [sym_nil] = ACTIONS(2205), - [anon_sym_QMARK_DOT] = ACTIONS(2205), - [anon_sym_POUND_LBRACK] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_DOLLARif] = ACTIONS(2205), - [anon_sym_is] = ACTIONS(2205), - [anon_sym_BANGis] = ACTIONS(2205), - [anon_sym_in] = ACTIONS(2205), - [anon_sym_BANGin] = ACTIONS(2205), - [anon_sym_match] = ACTIONS(2205), - [anon_sym_select] = ACTIONS(2205), - [anon_sym_lock] = ACTIONS(2205), - [anon_sym_rlock] = ACTIONS(2205), - [anon_sym_unsafe] = ACTIONS(2205), - [anon_sym_sql] = ACTIONS(2205), - [sym_int_literal] = ACTIONS(2205), - [sym_float_literal] = ACTIONS(2205), - [sym_rune_literal] = ACTIONS(2205), - [anon_sym_SQUOTE] = ACTIONS(2205), - [anon_sym_DQUOTE] = ACTIONS(2205), - [anon_sym_c_SQUOTE] = ACTIONS(2205), - [anon_sym_c_DQUOTE] = ACTIONS(2205), - [anon_sym_r_SQUOTE] = ACTIONS(2205), - [anon_sym_r_DQUOTE] = ACTIONS(2205), - [sym_pseudo_compile_time_identifier] = ACTIONS(2205), - [anon_sym_shared] = ACTIONS(2205), - [anon_sym_map_LBRACK] = ACTIONS(2205), - [anon_sym_chan] = ACTIONS(2205), - [anon_sym_thread] = ACTIONS(2205), - [anon_sym_atomic] = ACTIONS(2205), - [anon_sym_assert] = ACTIONS(2205), - [anon_sym_defer] = ACTIONS(2205), - [anon_sym_goto] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_DOLLARfor] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_POUND] = ACTIONS(2205), - [anon_sym_asm] = ACTIONS(2205), - [anon_sym_AT_LBRACK] = ACTIONS(2205), + [anon_sym_DOT] = ACTIONS(2929), + [anon_sym_as] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2929), + [anon_sym_COMMA] = ACTIONS(2929), + [anon_sym_const] = ACTIONS(2929), + [anon_sym_LPAREN] = ACTIONS(2929), + [anon_sym___global] = ACTIONS(2929), + [anon_sym_type] = ACTIONS(2929), + [anon_sym_fn] = ACTIONS(2929), + [anon_sym_PLUS] = ACTIONS(2929), + [anon_sym_DASH] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_SLASH] = ACTIONS(2929), + [anon_sym_PERCENT] = ACTIONS(2929), + [anon_sym_LT] = ACTIONS(2929), + [anon_sym_GT] = ACTIONS(2929), + [anon_sym_EQ_EQ] = ACTIONS(2929), + [anon_sym_BANG_EQ] = ACTIONS(2929), + [anon_sym_LT_EQ] = ACTIONS(2929), + [anon_sym_GT_EQ] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_struct] = ACTIONS(2929), + [anon_sym_union] = ACTIONS(2929), + [anon_sym_pub] = ACTIONS(2929), + [anon_sym_mut] = ACTIONS(2929), + [anon_sym_enum] = ACTIONS(2929), + [anon_sym_interface] = ACTIONS(2929), + [anon_sym_PLUS_PLUS] = ACTIONS(2929), + [anon_sym_DASH_DASH] = ACTIONS(2929), + [anon_sym_QMARK] = ACTIONS(2929), + [anon_sym_BANG] = ACTIONS(2929), + [anon_sym_go] = ACTIONS(2929), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2929), + [anon_sym_PIPE] = ACTIONS(2929), + [anon_sym_LBRACK2] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_CARET] = ACTIONS(2929), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_LT_DASH] = ACTIONS(2929), + [anon_sym_LT_LT] = ACTIONS(2929), + [anon_sym_GT_GT] = ACTIONS(2929), + [anon_sym_GT_GT_GT] = ACTIONS(2929), + [anon_sym_AMP_CARET] = ACTIONS(2929), + [anon_sym_AMP_AMP] = ACTIONS(2929), + [anon_sym_PIPE_PIPE] = ACTIONS(2929), + [anon_sym_or] = ACTIONS(2929), + [sym_none] = ACTIONS(2929), + [sym_true] = ACTIONS(2929), + [sym_false] = ACTIONS(2929), + [sym_nil] = ACTIONS(2929), + [anon_sym_QMARK_DOT] = ACTIONS(2929), + [anon_sym_POUND_LBRACK] = ACTIONS(2929), + [anon_sym_if] = ACTIONS(2929), + [anon_sym_DOLLARif] = ACTIONS(2929), + [anon_sym_is] = ACTIONS(2929), + [anon_sym_BANGis] = ACTIONS(2929), + [anon_sym_in] = ACTIONS(2929), + [anon_sym_BANGin] = ACTIONS(2929), + [anon_sym_match] = ACTIONS(2929), + [anon_sym_select] = ACTIONS(2929), + [anon_sym_lock] = ACTIONS(2929), + [anon_sym_rlock] = ACTIONS(2929), + [anon_sym_unsafe] = ACTIONS(2929), + [anon_sym_sql] = ACTIONS(2929), + [sym_int_literal] = ACTIONS(2929), + [sym_float_literal] = ACTIONS(2929), + [sym_rune_literal] = ACTIONS(2929), + [anon_sym_SQUOTE] = ACTIONS(2929), + [anon_sym_DQUOTE] = ACTIONS(2929), + [anon_sym_c_SQUOTE] = ACTIONS(2929), + [anon_sym_c_DQUOTE] = ACTIONS(2929), + [anon_sym_r_SQUOTE] = ACTIONS(2929), + [anon_sym_r_DQUOTE] = ACTIONS(2929), + [sym_pseudo_compile_time_identifier] = ACTIONS(2929), + [anon_sym_shared] = ACTIONS(2929), + [anon_sym_map_LBRACK] = ACTIONS(2929), + [anon_sym_chan] = ACTIONS(2929), + [anon_sym_thread] = ACTIONS(2929), + [anon_sym_atomic] = ACTIONS(2929), + [anon_sym_assert] = ACTIONS(2929), + [anon_sym_defer] = ACTIONS(2929), + [anon_sym_goto] = ACTIONS(2929), + [anon_sym_break] = ACTIONS(2929), + [anon_sym_continue] = ACTIONS(2929), + [anon_sym_return] = ACTIONS(2929), + [anon_sym_DOLLARfor] = ACTIONS(2929), + [anon_sym_for] = ACTIONS(2929), + [anon_sym_POUND] = ACTIONS(2929), + [anon_sym_asm] = ACTIONS(2929), + [anon_sym_AT_LBRACK] = ACTIONS(2929), }, [1009] = { [sym_line_comment] = STATE(1009), [sym_block_comment] = STATE(1009), - [ts_builtin_sym_end] = ACTIONS(2207), - [sym_identifier] = ACTIONS(2209), - [anon_sym_LF] = ACTIONS(2209), - [anon_sym_CR] = ACTIONS(2209), - [anon_sym_CR_LF] = ACTIONS(2209), + [ts_builtin_sym_end] = ACTIONS(2759), + [sym_identifier] = ACTIONS(2761), + [anon_sym_LF] = ACTIONS(2761), + [anon_sym_CR] = ACTIONS(2761), + [anon_sym_CR_LF] = ACTIONS(2761), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_as] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2209), - [anon_sym_COMMA] = ACTIONS(2209), - [anon_sym_const] = ACTIONS(2209), - [anon_sym_LPAREN] = ACTIONS(2209), - [anon_sym___global] = ACTIONS(2209), - [anon_sym_type] = ACTIONS(2209), - [anon_sym_PIPE] = ACTIONS(2209), - [anon_sym_fn] = ACTIONS(2209), - [anon_sym_PLUS] = ACTIONS(2209), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_SLASH] = ACTIONS(2209), - [anon_sym_PERCENT] = ACTIONS(2209), - [anon_sym_LT] = ACTIONS(2209), - [anon_sym_GT] = ACTIONS(2209), - [anon_sym_EQ_EQ] = ACTIONS(2209), - [anon_sym_BANG_EQ] = ACTIONS(2209), - [anon_sym_LT_EQ] = ACTIONS(2209), - [anon_sym_GT_EQ] = ACTIONS(2209), - [anon_sym_LBRACK] = ACTIONS(2207), - [anon_sym_struct] = ACTIONS(2209), - [anon_sym_union] = ACTIONS(2209), - [anon_sym_pub] = ACTIONS(2209), - [anon_sym_mut] = ACTIONS(2209), - [anon_sym_enum] = ACTIONS(2209), - [anon_sym_interface] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_QMARK] = ACTIONS(2209), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_go] = ACTIONS(2209), - [anon_sym_spawn] = ACTIONS(2209), - [anon_sym_json_DOTdecode] = ACTIONS(2209), - [anon_sym_LBRACK2] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_LT_DASH] = ACTIONS(2209), - [anon_sym_LT_LT] = ACTIONS(2209), - [anon_sym_GT_GT] = ACTIONS(2209), - [anon_sym_GT_GT_GT] = ACTIONS(2209), - [anon_sym_AMP_CARET] = ACTIONS(2209), - [anon_sym_AMP_AMP] = ACTIONS(2209), - [anon_sym_PIPE_PIPE] = ACTIONS(2209), - [anon_sym_or] = ACTIONS(2209), - [sym_none] = ACTIONS(2209), - [sym_true] = ACTIONS(2209), - [sym_false] = ACTIONS(2209), - [sym_nil] = ACTIONS(2209), - [anon_sym_QMARK_DOT] = ACTIONS(2209), - [anon_sym_POUND_LBRACK] = ACTIONS(2209), - [anon_sym_if] = ACTIONS(2209), - [anon_sym_DOLLARif] = ACTIONS(2209), - [anon_sym_is] = ACTIONS(2209), - [anon_sym_BANGis] = ACTIONS(2209), - [anon_sym_in] = ACTIONS(2209), - [anon_sym_BANGin] = ACTIONS(2209), - [anon_sym_match] = ACTIONS(2209), - [anon_sym_select] = ACTIONS(2209), - [anon_sym_lock] = ACTIONS(2209), - [anon_sym_rlock] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(2209), - [anon_sym_sql] = ACTIONS(2209), - [sym_int_literal] = ACTIONS(2209), - [sym_float_literal] = ACTIONS(2209), - [sym_rune_literal] = ACTIONS(2209), - [anon_sym_SQUOTE] = ACTIONS(2209), - [anon_sym_DQUOTE] = ACTIONS(2209), - [anon_sym_c_SQUOTE] = ACTIONS(2209), - [anon_sym_c_DQUOTE] = ACTIONS(2209), - [anon_sym_r_SQUOTE] = ACTIONS(2209), - [anon_sym_r_DQUOTE] = ACTIONS(2209), - [sym_pseudo_compile_time_identifier] = ACTIONS(2209), - [anon_sym_shared] = ACTIONS(2209), - [anon_sym_map_LBRACK] = ACTIONS(2209), - [anon_sym_chan] = ACTIONS(2209), - [anon_sym_thread] = ACTIONS(2209), - [anon_sym_atomic] = ACTIONS(2209), - [anon_sym_assert] = ACTIONS(2209), - [anon_sym_defer] = ACTIONS(2209), - [anon_sym_goto] = ACTIONS(2209), - [anon_sym_break] = ACTIONS(2209), - [anon_sym_continue] = ACTIONS(2209), - [anon_sym_return] = ACTIONS(2209), - [anon_sym_DOLLARfor] = ACTIONS(2209), - [anon_sym_for] = ACTIONS(2209), - [anon_sym_POUND] = ACTIONS(2209), - [anon_sym_asm] = ACTIONS(2209), - [anon_sym_AT_LBRACK] = ACTIONS(2209), + [anon_sym_DOT] = ACTIONS(2761), + [anon_sym_as] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2761), + [anon_sym_COMMA] = ACTIONS(2761), + [anon_sym_const] = ACTIONS(2761), + [anon_sym_LPAREN] = ACTIONS(2761), + [anon_sym___global] = ACTIONS(2761), + [anon_sym_type] = ACTIONS(2761), + [anon_sym_fn] = ACTIONS(2761), + [anon_sym_PLUS] = ACTIONS(2761), + [anon_sym_DASH] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(2761), + [anon_sym_SLASH] = ACTIONS(2761), + [anon_sym_PERCENT] = ACTIONS(2761), + [anon_sym_LT] = ACTIONS(2761), + [anon_sym_GT] = ACTIONS(2761), + [anon_sym_EQ_EQ] = ACTIONS(2761), + [anon_sym_BANG_EQ] = ACTIONS(2761), + [anon_sym_LT_EQ] = ACTIONS(2761), + [anon_sym_GT_EQ] = ACTIONS(2761), + [anon_sym_LBRACK] = ACTIONS(2759), + [anon_sym_struct] = ACTIONS(2761), + [anon_sym_union] = ACTIONS(2761), + [anon_sym_pub] = ACTIONS(2761), + [anon_sym_mut] = ACTIONS(2761), + [anon_sym_enum] = ACTIONS(2761), + [anon_sym_interface] = ACTIONS(2761), + [anon_sym_PLUS_PLUS] = ACTIONS(2761), + [anon_sym_DASH_DASH] = ACTIONS(2761), + [anon_sym_QMARK] = ACTIONS(2761), + [anon_sym_BANG] = ACTIONS(2761), + [anon_sym_go] = ACTIONS(2761), + [anon_sym_spawn] = ACTIONS(2761), + [anon_sym_json_DOTdecode] = ACTIONS(2761), + [anon_sym_PIPE] = ACTIONS(2761), + [anon_sym_LBRACK2] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2761), + [anon_sym_CARET] = ACTIONS(2761), + [anon_sym_AMP] = ACTIONS(2761), + [anon_sym_LT_DASH] = ACTIONS(2761), + [anon_sym_LT_LT] = ACTIONS(2761), + [anon_sym_GT_GT] = ACTIONS(2761), + [anon_sym_GT_GT_GT] = ACTIONS(2761), + [anon_sym_AMP_CARET] = ACTIONS(2761), + [anon_sym_AMP_AMP] = ACTIONS(2761), + [anon_sym_PIPE_PIPE] = ACTIONS(2761), + [anon_sym_or] = ACTIONS(2761), + [sym_none] = ACTIONS(2761), + [sym_true] = ACTIONS(2761), + [sym_false] = ACTIONS(2761), + [sym_nil] = ACTIONS(2761), + [anon_sym_QMARK_DOT] = ACTIONS(2761), + [anon_sym_POUND_LBRACK] = ACTIONS(2761), + [anon_sym_if] = ACTIONS(2761), + [anon_sym_DOLLARif] = ACTIONS(2761), + [anon_sym_is] = ACTIONS(2761), + [anon_sym_BANGis] = ACTIONS(2761), + [anon_sym_in] = ACTIONS(2761), + [anon_sym_BANGin] = ACTIONS(2761), + [anon_sym_match] = ACTIONS(2761), + [anon_sym_select] = ACTIONS(2761), + [anon_sym_lock] = ACTIONS(2761), + [anon_sym_rlock] = ACTIONS(2761), + [anon_sym_unsafe] = ACTIONS(2761), + [anon_sym_sql] = ACTIONS(2761), + [sym_int_literal] = ACTIONS(2761), + [sym_float_literal] = ACTIONS(2761), + [sym_rune_literal] = ACTIONS(2761), + [anon_sym_SQUOTE] = ACTIONS(2761), + [anon_sym_DQUOTE] = ACTIONS(2761), + [anon_sym_c_SQUOTE] = ACTIONS(2761), + [anon_sym_c_DQUOTE] = ACTIONS(2761), + [anon_sym_r_SQUOTE] = ACTIONS(2761), + [anon_sym_r_DQUOTE] = ACTIONS(2761), + [sym_pseudo_compile_time_identifier] = ACTIONS(2761), + [anon_sym_shared] = ACTIONS(2761), + [anon_sym_map_LBRACK] = ACTIONS(2761), + [anon_sym_chan] = ACTIONS(2761), + [anon_sym_thread] = ACTIONS(2761), + [anon_sym_atomic] = ACTIONS(2761), + [anon_sym_assert] = ACTIONS(2761), + [anon_sym_defer] = ACTIONS(2761), + [anon_sym_goto] = ACTIONS(2761), + [anon_sym_break] = ACTIONS(2761), + [anon_sym_continue] = ACTIONS(2761), + [anon_sym_return] = ACTIONS(2761), + [anon_sym_DOLLARfor] = ACTIONS(2761), + [anon_sym_for] = ACTIONS(2761), + [anon_sym_POUND] = ACTIONS(2761), + [anon_sym_asm] = ACTIONS(2761), + [anon_sym_AT_LBRACK] = ACTIONS(2761), }, [1010] = { [sym_line_comment] = STATE(1010), [sym_block_comment] = STATE(1010), - [ts_builtin_sym_end] = ACTIONS(2723), - [sym_identifier] = ACTIONS(2725), - [anon_sym_LF] = ACTIONS(2725), - [anon_sym_CR] = ACTIONS(2725), - [anon_sym_CR_LF] = ACTIONS(2725), + [ts_builtin_sym_end] = ACTIONS(2339), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LF] = ACTIONS(2341), + [anon_sym_CR] = ACTIONS(2341), + [anon_sym_CR_LF] = ACTIONS(2341), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2725), - [anon_sym_as] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_COMMA] = ACTIONS(2725), - [anon_sym_const] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(2725), - [anon_sym___global] = ACTIONS(2725), - [anon_sym_type] = ACTIONS(2725), - [anon_sym_PIPE] = ACTIONS(2725), - [anon_sym_fn] = ACTIONS(2725), - [anon_sym_PLUS] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2725), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_SLASH] = ACTIONS(2725), - [anon_sym_PERCENT] = ACTIONS(2725), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_GT] = ACTIONS(2725), - [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(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2725), - [anon_sym_pub] = ACTIONS(2725), - [anon_sym_mut] = ACTIONS(2725), - [anon_sym_enum] = ACTIONS(2725), - [anon_sym_interface] = ACTIONS(2725), - [anon_sym_PLUS_PLUS] = ACTIONS(2725), - [anon_sym_DASH_DASH] = ACTIONS(2725), - [anon_sym_QMARK] = ACTIONS(2725), - [anon_sym_BANG] = ACTIONS(2725), - [anon_sym_go] = ACTIONS(2725), - [anon_sym_spawn] = ACTIONS(2725), - [anon_sym_json_DOTdecode] = ACTIONS(2725), - [anon_sym_LBRACK2] = ACTIONS(2725), - [anon_sym_TILDE] = ACTIONS(2725), - [anon_sym_CARET] = ACTIONS(2725), - [anon_sym_AMP] = ACTIONS(2725), - [anon_sym_LT_DASH] = ACTIONS(2725), - [anon_sym_LT_LT] = ACTIONS(2725), - [anon_sym_GT_GT] = ACTIONS(2725), - [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(2725), - [sym_none] = ACTIONS(2725), - [sym_true] = ACTIONS(2725), - [sym_false] = ACTIONS(2725), - [sym_nil] = ACTIONS(2725), - [anon_sym_QMARK_DOT] = ACTIONS(2725), - [anon_sym_POUND_LBRACK] = ACTIONS(2725), - [anon_sym_if] = ACTIONS(2725), - [anon_sym_DOLLARif] = ACTIONS(2725), - [anon_sym_is] = ACTIONS(2725), - [anon_sym_BANGis] = ACTIONS(2725), - [anon_sym_in] = ACTIONS(2725), - [anon_sym_BANGin] = ACTIONS(2725), - [anon_sym_match] = ACTIONS(2725), - [anon_sym_select] = ACTIONS(2725), - [anon_sym_lock] = ACTIONS(2725), - [anon_sym_rlock] = ACTIONS(2725), - [anon_sym_unsafe] = ACTIONS(2725), - [anon_sym_sql] = ACTIONS(2725), - [sym_int_literal] = ACTIONS(2725), - [sym_float_literal] = ACTIONS(2725), - [sym_rune_literal] = ACTIONS(2725), - [anon_sym_SQUOTE] = ACTIONS(2725), - [anon_sym_DQUOTE] = ACTIONS(2725), - [anon_sym_c_SQUOTE] = ACTIONS(2725), - [anon_sym_c_DQUOTE] = ACTIONS(2725), - [anon_sym_r_SQUOTE] = ACTIONS(2725), - [anon_sym_r_DQUOTE] = ACTIONS(2725), - [sym_pseudo_compile_time_identifier] = ACTIONS(2725), - [anon_sym_shared] = ACTIONS(2725), - [anon_sym_map_LBRACK] = ACTIONS(2725), - [anon_sym_chan] = ACTIONS(2725), - [anon_sym_thread] = ACTIONS(2725), - [anon_sym_atomic] = ACTIONS(2725), - [anon_sym_assert] = ACTIONS(2725), - [anon_sym_defer] = ACTIONS(2725), - [anon_sym_goto] = ACTIONS(2725), - [anon_sym_break] = ACTIONS(2725), - [anon_sym_continue] = ACTIONS(2725), - [anon_sym_return] = ACTIONS(2725), - [anon_sym_DOLLARfor] = ACTIONS(2725), - [anon_sym_for] = ACTIONS(2725), - [anon_sym_POUND] = ACTIONS(2725), - [anon_sym_asm] = ACTIONS(2725), - [anon_sym_AT_LBRACK] = ACTIONS(2725), + [anon_sym_DOT] = ACTIONS(2341), + [anon_sym_as] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2341), + [anon_sym_COMMA] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2341), + [anon_sym___global] = ACTIONS(2341), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_fn] = ACTIONS(2341), + [anon_sym_PLUS] = ACTIONS(2341), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_STAR] = ACTIONS(2341), + [anon_sym_SLASH] = ACTIONS(2341), + [anon_sym_PERCENT] = ACTIONS(2341), + [anon_sym_LT] = ACTIONS(2341), + [anon_sym_GT] = ACTIONS(2341), + [anon_sym_EQ_EQ] = ACTIONS(2341), + [anon_sym_BANG_EQ] = ACTIONS(2341), + [anon_sym_LT_EQ] = ACTIONS(2341), + [anon_sym_GT_EQ] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2339), + [anon_sym_struct] = ACTIONS(2341), + [anon_sym_union] = ACTIONS(2341), + [anon_sym_pub] = ACTIONS(2341), + [anon_sym_mut] = ACTIONS(2341), + [anon_sym_enum] = ACTIONS(2341), + [anon_sym_interface] = ACTIONS(2341), + [anon_sym_PLUS_PLUS] = ACTIONS(2341), + [anon_sym_DASH_DASH] = ACTIONS(2341), + [anon_sym_QMARK] = ACTIONS(2341), + [anon_sym_BANG] = ACTIONS(2341), + [anon_sym_go] = ACTIONS(2341), + [anon_sym_spawn] = ACTIONS(2341), + [anon_sym_json_DOTdecode] = ACTIONS(2341), + [anon_sym_PIPE] = ACTIONS(2341), + [anon_sym_LBRACK2] = ACTIONS(2341), + [anon_sym_TILDE] = ACTIONS(2341), + [anon_sym_CARET] = ACTIONS(2341), + [anon_sym_AMP] = ACTIONS(2341), + [anon_sym_LT_DASH] = ACTIONS(2341), + [anon_sym_LT_LT] = ACTIONS(2341), + [anon_sym_GT_GT] = ACTIONS(2341), + [anon_sym_GT_GT_GT] = ACTIONS(2341), + [anon_sym_AMP_CARET] = ACTIONS(2341), + [anon_sym_AMP_AMP] = ACTIONS(2341), + [anon_sym_PIPE_PIPE] = ACTIONS(2341), + [anon_sym_or] = ACTIONS(2341), + [sym_none] = ACTIONS(2341), + [sym_true] = ACTIONS(2341), + [sym_false] = ACTIONS(2341), + [sym_nil] = ACTIONS(2341), + [anon_sym_QMARK_DOT] = ACTIONS(2341), + [anon_sym_POUND_LBRACK] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_DOLLARif] = ACTIONS(2341), + [anon_sym_is] = ACTIONS(2341), + [anon_sym_BANGis] = ACTIONS(2341), + [anon_sym_in] = ACTIONS(2341), + [anon_sym_BANGin] = ACTIONS(2341), + [anon_sym_match] = ACTIONS(2341), + [anon_sym_select] = ACTIONS(2341), + [anon_sym_lock] = ACTIONS(2341), + [anon_sym_rlock] = ACTIONS(2341), + [anon_sym_unsafe] = ACTIONS(2341), + [anon_sym_sql] = ACTIONS(2341), + [sym_int_literal] = ACTIONS(2341), + [sym_float_literal] = ACTIONS(2341), + [sym_rune_literal] = ACTIONS(2341), + [anon_sym_SQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [anon_sym_c_SQUOTE] = ACTIONS(2341), + [anon_sym_c_DQUOTE] = ACTIONS(2341), + [anon_sym_r_SQUOTE] = ACTIONS(2341), + [anon_sym_r_DQUOTE] = ACTIONS(2341), + [sym_pseudo_compile_time_identifier] = ACTIONS(2341), + [anon_sym_shared] = ACTIONS(2341), + [anon_sym_map_LBRACK] = ACTIONS(2341), + [anon_sym_chan] = ACTIONS(2341), + [anon_sym_thread] = ACTIONS(2341), + [anon_sym_atomic] = ACTIONS(2341), + [anon_sym_assert] = ACTIONS(2341), + [anon_sym_defer] = ACTIONS(2341), + [anon_sym_goto] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2341), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_DOLLARfor] = ACTIONS(2341), + [anon_sym_for] = ACTIONS(2341), + [anon_sym_POUND] = ACTIONS(2341), + [anon_sym_asm] = ACTIONS(2341), + [anon_sym_AT_LBRACK] = ACTIONS(2341), }, [1011] = { [sym_line_comment] = STATE(1011), [sym_block_comment] = STATE(1011), - [ts_builtin_sym_end] = ACTIONS(2157), - [sym_identifier] = ACTIONS(2159), - [anon_sym_LF] = ACTIONS(2159), - [anon_sym_CR] = ACTIONS(2159), - [anon_sym_CR_LF] = ACTIONS(2159), + [ts_builtin_sym_end] = ACTIONS(2335), + [sym_identifier] = ACTIONS(2337), + [anon_sym_LF] = ACTIONS(2337), + [anon_sym_CR] = ACTIONS(2337), + [anon_sym_CR_LF] = ACTIONS(2337), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_as] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym___global] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_PIPE] = ACTIONS(2159), - [anon_sym_fn] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_PERCENT] = ACTIONS(2159), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_GT] = ACTIONS(2159), - [anon_sym_EQ_EQ] = ACTIONS(2159), - [anon_sym_BANG_EQ] = ACTIONS(2159), - [anon_sym_LT_EQ] = ACTIONS(2159), - [anon_sym_GT_EQ] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2159), - [anon_sym_union] = ACTIONS(2159), - [anon_sym_pub] = ACTIONS(2159), - [anon_sym_mut] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [anon_sym_interface] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [anon_sym_QMARK] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(2159), - [anon_sym_spawn] = ACTIONS(2159), - [anon_sym_json_DOTdecode] = ACTIONS(2159), - [anon_sym_LBRACK2] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2159), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2159), - [anon_sym_LT_LT] = ACTIONS(2159), - [anon_sym_GT_GT] = ACTIONS(2159), - [anon_sym_GT_GT_GT] = ACTIONS(2159), - [anon_sym_AMP_CARET] = ACTIONS(2159), - [anon_sym_AMP_AMP] = ACTIONS(2159), - [anon_sym_PIPE_PIPE] = ACTIONS(2159), - [anon_sym_or] = ACTIONS(2159), - [sym_none] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_nil] = ACTIONS(2159), - [anon_sym_QMARK_DOT] = ACTIONS(2159), - [anon_sym_POUND_LBRACK] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_DOLLARif] = ACTIONS(2159), - [anon_sym_is] = ACTIONS(2159), - [anon_sym_BANGis] = ACTIONS(2159), - [anon_sym_in] = ACTIONS(2159), - [anon_sym_BANGin] = ACTIONS(2159), - [anon_sym_match] = ACTIONS(2159), - [anon_sym_select] = ACTIONS(2159), - [anon_sym_lock] = ACTIONS(2159), - [anon_sym_rlock] = ACTIONS(2159), - [anon_sym_unsafe] = ACTIONS(2159), - [anon_sym_sql] = ACTIONS(2159), - [sym_int_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), - [sym_rune_literal] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_c_SQUOTE] = ACTIONS(2159), - [anon_sym_c_DQUOTE] = ACTIONS(2159), - [anon_sym_r_SQUOTE] = ACTIONS(2159), - [anon_sym_r_DQUOTE] = ACTIONS(2159), - [sym_pseudo_compile_time_identifier] = ACTIONS(2159), - [anon_sym_shared] = ACTIONS(2159), - [anon_sym_map_LBRACK] = ACTIONS(2159), - [anon_sym_chan] = ACTIONS(2159), - [anon_sym_thread] = ACTIONS(2159), - [anon_sym_atomic] = ACTIONS(2159), - [anon_sym_assert] = ACTIONS(2159), - [anon_sym_defer] = ACTIONS(2159), - [anon_sym_goto] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_DOLLARfor] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_POUND] = ACTIONS(2159), - [anon_sym_asm] = ACTIONS(2159), - [anon_sym_AT_LBRACK] = ACTIONS(2159), + [anon_sym_DOT] = ACTIONS(2337), + [anon_sym_as] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_COMMA] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_LPAREN] = ACTIONS(2337), + [anon_sym___global] = ACTIONS(2337), + [anon_sym_type] = ACTIONS(2337), + [anon_sym_fn] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(2337), + [anon_sym_SLASH] = ACTIONS(2337), + [anon_sym_PERCENT] = ACTIONS(2337), + [anon_sym_LT] = ACTIONS(2337), + [anon_sym_GT] = ACTIONS(2337), + [anon_sym_EQ_EQ] = ACTIONS(2337), + [anon_sym_BANG_EQ] = ACTIONS(2337), + [anon_sym_LT_EQ] = ACTIONS(2337), + [anon_sym_GT_EQ] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(2335), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_union] = ACTIONS(2337), + [anon_sym_pub] = ACTIONS(2337), + [anon_sym_mut] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_interface] = ACTIONS(2337), + [anon_sym_PLUS_PLUS] = ACTIONS(2337), + [anon_sym_DASH_DASH] = ACTIONS(2337), + [anon_sym_QMARK] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(2337), + [anon_sym_go] = ACTIONS(2337), + [anon_sym_spawn] = ACTIONS(2337), + [anon_sym_json_DOTdecode] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_LBRACK2] = ACTIONS(2337), + [anon_sym_TILDE] = ACTIONS(2337), + [anon_sym_CARET] = ACTIONS(2337), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_LT_DASH] = ACTIONS(2337), + [anon_sym_LT_LT] = ACTIONS(2337), + [anon_sym_GT_GT] = ACTIONS(2337), + [anon_sym_GT_GT_GT] = ACTIONS(2337), + [anon_sym_AMP_CARET] = ACTIONS(2337), + [anon_sym_AMP_AMP] = ACTIONS(2337), + [anon_sym_PIPE_PIPE] = ACTIONS(2337), + [anon_sym_or] = ACTIONS(2337), + [sym_none] = ACTIONS(2337), + [sym_true] = ACTIONS(2337), + [sym_false] = ACTIONS(2337), + [sym_nil] = ACTIONS(2337), + [anon_sym_QMARK_DOT] = ACTIONS(2337), + [anon_sym_POUND_LBRACK] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_DOLLARif] = ACTIONS(2337), + [anon_sym_is] = ACTIONS(2337), + [anon_sym_BANGis] = ACTIONS(2337), + [anon_sym_in] = ACTIONS(2337), + [anon_sym_BANGin] = ACTIONS(2337), + [anon_sym_match] = ACTIONS(2337), + [anon_sym_select] = ACTIONS(2337), + [anon_sym_lock] = ACTIONS(2337), + [anon_sym_rlock] = ACTIONS(2337), + [anon_sym_unsafe] = ACTIONS(2337), + [anon_sym_sql] = ACTIONS(2337), + [sym_int_literal] = ACTIONS(2337), + [sym_float_literal] = ACTIONS(2337), + [sym_rune_literal] = ACTIONS(2337), + [anon_sym_SQUOTE] = ACTIONS(2337), + [anon_sym_DQUOTE] = ACTIONS(2337), + [anon_sym_c_SQUOTE] = ACTIONS(2337), + [anon_sym_c_DQUOTE] = ACTIONS(2337), + [anon_sym_r_SQUOTE] = ACTIONS(2337), + [anon_sym_r_DQUOTE] = ACTIONS(2337), + [sym_pseudo_compile_time_identifier] = ACTIONS(2337), + [anon_sym_shared] = ACTIONS(2337), + [anon_sym_map_LBRACK] = ACTIONS(2337), + [anon_sym_chan] = ACTIONS(2337), + [anon_sym_thread] = ACTIONS(2337), + [anon_sym_atomic] = ACTIONS(2337), + [anon_sym_assert] = ACTIONS(2337), + [anon_sym_defer] = ACTIONS(2337), + [anon_sym_goto] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_DOLLARfor] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(2337), + [anon_sym_asm] = ACTIONS(2337), + [anon_sym_AT_LBRACK] = ACTIONS(2337), }, [1012] = { [sym_line_comment] = STATE(1012), [sym_block_comment] = STATE(1012), - [ts_builtin_sym_end] = ACTIONS(2211), - [sym_identifier] = ACTIONS(2213), - [anon_sym_LF] = ACTIONS(2213), - [anon_sym_CR] = ACTIONS(2213), - [anon_sym_CR_LF] = ACTIONS(2213), + [ts_builtin_sym_end] = ACTIONS(2707), + [sym_identifier] = ACTIONS(2709), + [anon_sym_LF] = ACTIONS(2709), + [anon_sym_CR] = ACTIONS(2709), + [anon_sym_CR_LF] = ACTIONS(2709), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2213), - [anon_sym_as] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_COMMA] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym___global] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_PIPE] = ACTIONS(2213), - [anon_sym_fn] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_STAR] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_PERCENT] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_GT] = ACTIONS(2213), - [anon_sym_EQ_EQ] = ACTIONS(2213), - [anon_sym_BANG_EQ] = ACTIONS(2213), - [anon_sym_LT_EQ] = ACTIONS(2213), - [anon_sym_GT_EQ] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_struct] = ACTIONS(2213), - [anon_sym_union] = ACTIONS(2213), - [anon_sym_pub] = ACTIONS(2213), - [anon_sym_mut] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_PLUS_PLUS] = ACTIONS(2213), - [anon_sym_DASH_DASH] = ACTIONS(2213), - [anon_sym_QMARK] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2213), - [anon_sym_json_DOTdecode] = ACTIONS(2213), - [anon_sym_LBRACK2] = ACTIONS(2213), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_CARET] = ACTIONS(2213), - [anon_sym_AMP] = ACTIONS(2213), - [anon_sym_LT_DASH] = ACTIONS(2213), - [anon_sym_LT_LT] = ACTIONS(2213), - [anon_sym_GT_GT] = ACTIONS(2213), - [anon_sym_GT_GT_GT] = ACTIONS(2213), - [anon_sym_AMP_CARET] = ACTIONS(2213), - [anon_sym_AMP_AMP] = ACTIONS(2213), - [anon_sym_PIPE_PIPE] = ACTIONS(2213), - [anon_sym_or] = ACTIONS(2213), - [sym_none] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_nil] = ACTIONS(2213), - [anon_sym_QMARK_DOT] = ACTIONS(2213), - [anon_sym_POUND_LBRACK] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_DOLLARif] = ACTIONS(2213), - [anon_sym_is] = ACTIONS(2213), - [anon_sym_BANGis] = ACTIONS(2213), - [anon_sym_in] = ACTIONS(2213), - [anon_sym_BANGin] = ACTIONS(2213), - [anon_sym_match] = ACTIONS(2213), - [anon_sym_select] = ACTIONS(2213), - [anon_sym_lock] = ACTIONS(2213), - [anon_sym_rlock] = ACTIONS(2213), - [anon_sym_unsafe] = ACTIONS(2213), - [anon_sym_sql] = ACTIONS(2213), - [sym_int_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), - [sym_rune_literal] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_DQUOTE] = ACTIONS(2213), - [anon_sym_c_SQUOTE] = ACTIONS(2213), - [anon_sym_c_DQUOTE] = ACTIONS(2213), - [anon_sym_r_SQUOTE] = ACTIONS(2213), - [anon_sym_r_DQUOTE] = ACTIONS(2213), - [sym_pseudo_compile_time_identifier] = ACTIONS(2213), - [anon_sym_shared] = ACTIONS(2213), - [anon_sym_map_LBRACK] = ACTIONS(2213), - [anon_sym_chan] = ACTIONS(2213), - [anon_sym_thread] = ACTIONS(2213), - [anon_sym_atomic] = ACTIONS(2213), - [anon_sym_assert] = ACTIONS(2213), - [anon_sym_defer] = ACTIONS(2213), - [anon_sym_goto] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_DOLLARfor] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_POUND] = ACTIONS(2213), - [anon_sym_asm] = ACTIONS(2213), - [anon_sym_AT_LBRACK] = ACTIONS(2213), + [anon_sym_DOT] = ACTIONS(2709), + [anon_sym_as] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2709), + [anon_sym_COMMA] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_LPAREN] = ACTIONS(2709), + [anon_sym___global] = ACTIONS(2709), + [anon_sym_type] = ACTIONS(2709), + [anon_sym_fn] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2709), + [anon_sym_SLASH] = ACTIONS(2709), + [anon_sym_PERCENT] = ACTIONS(2709), + [anon_sym_LT] = ACTIONS(2709), + [anon_sym_GT] = ACTIONS(2709), + [anon_sym_EQ_EQ] = ACTIONS(2709), + [anon_sym_BANG_EQ] = ACTIONS(2709), + [anon_sym_LT_EQ] = ACTIONS(2709), + [anon_sym_GT_EQ] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2707), + [anon_sym_struct] = ACTIONS(2709), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_pub] = ACTIONS(2709), + [anon_sym_mut] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_interface] = ACTIONS(2709), + [anon_sym_PLUS_PLUS] = ACTIONS(2709), + [anon_sym_DASH_DASH] = ACTIONS(2709), + [anon_sym_QMARK] = ACTIONS(2709), + [anon_sym_BANG] = ACTIONS(2709), + [anon_sym_go] = ACTIONS(2709), + [anon_sym_spawn] = ACTIONS(2709), + [anon_sym_json_DOTdecode] = ACTIONS(2709), + [anon_sym_PIPE] = ACTIONS(2709), + [anon_sym_LBRACK2] = ACTIONS(2709), + [anon_sym_TILDE] = ACTIONS(2709), + [anon_sym_CARET] = ACTIONS(2709), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_LT_DASH] = ACTIONS(2709), + [anon_sym_LT_LT] = ACTIONS(2709), + [anon_sym_GT_GT] = ACTIONS(2709), + [anon_sym_GT_GT_GT] = ACTIONS(2709), + [anon_sym_AMP_CARET] = ACTIONS(2709), + [anon_sym_AMP_AMP] = ACTIONS(2709), + [anon_sym_PIPE_PIPE] = ACTIONS(2709), + [anon_sym_or] = ACTIONS(2709), + [sym_none] = ACTIONS(2709), + [sym_true] = ACTIONS(2709), + [sym_false] = ACTIONS(2709), + [sym_nil] = ACTIONS(2709), + [anon_sym_QMARK_DOT] = ACTIONS(2709), + [anon_sym_POUND_LBRACK] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_DOLLARif] = ACTIONS(2709), + [anon_sym_is] = ACTIONS(2709), + [anon_sym_BANGis] = ACTIONS(2709), + [anon_sym_in] = ACTIONS(2709), + [anon_sym_BANGin] = ACTIONS(2709), + [anon_sym_match] = ACTIONS(2709), + [anon_sym_select] = ACTIONS(2709), + [anon_sym_lock] = ACTIONS(2709), + [anon_sym_rlock] = ACTIONS(2709), + [anon_sym_unsafe] = ACTIONS(2709), + [anon_sym_sql] = ACTIONS(2709), + [sym_int_literal] = ACTIONS(2709), + [sym_float_literal] = ACTIONS(2709), + [sym_rune_literal] = ACTIONS(2709), + [anon_sym_SQUOTE] = ACTIONS(2709), + [anon_sym_DQUOTE] = ACTIONS(2709), + [anon_sym_c_SQUOTE] = ACTIONS(2709), + [anon_sym_c_DQUOTE] = ACTIONS(2709), + [anon_sym_r_SQUOTE] = ACTIONS(2709), + [anon_sym_r_DQUOTE] = ACTIONS(2709), + [sym_pseudo_compile_time_identifier] = ACTIONS(2709), + [anon_sym_shared] = ACTIONS(2709), + [anon_sym_map_LBRACK] = ACTIONS(2709), + [anon_sym_chan] = ACTIONS(2709), + [anon_sym_thread] = ACTIONS(2709), + [anon_sym_atomic] = ACTIONS(2709), + [anon_sym_assert] = ACTIONS(2709), + [anon_sym_defer] = ACTIONS(2709), + [anon_sym_goto] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_DOLLARfor] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_POUND] = ACTIONS(2709), + [anon_sym_asm] = ACTIONS(2709), + [anon_sym_AT_LBRACK] = ACTIONS(2709), }, [1013] = { [sym_line_comment] = STATE(1013), [sym_block_comment] = STATE(1013), - [ts_builtin_sym_end] = ACTIONS(2215), - [sym_identifier] = ACTIONS(2217), - [anon_sym_LF] = ACTIONS(2217), - [anon_sym_CR] = ACTIONS(2217), - [anon_sym_CR_LF] = ACTIONS(2217), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_as] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2217), - [anon_sym_COMMA] = ACTIONS(2217), - [anon_sym_const] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2217), - [anon_sym___global] = ACTIONS(2217), - [anon_sym_type] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2217), - [anon_sym_fn] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2217), - [anon_sym_DASH] = ACTIONS(2217), - [anon_sym_STAR] = ACTIONS(2217), - [anon_sym_SLASH] = ACTIONS(2217), - [anon_sym_PERCENT] = ACTIONS(2217), - [anon_sym_LT] = ACTIONS(2217), - [anon_sym_GT] = ACTIONS(2217), - [anon_sym_EQ_EQ] = ACTIONS(2217), - [anon_sym_BANG_EQ] = ACTIONS(2217), - [anon_sym_LT_EQ] = ACTIONS(2217), - [anon_sym_GT_EQ] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_struct] = ACTIONS(2217), - [anon_sym_union] = ACTIONS(2217), - [anon_sym_pub] = ACTIONS(2217), - [anon_sym_mut] = ACTIONS(2217), - [anon_sym_enum] = ACTIONS(2217), - [anon_sym_interface] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_QMARK] = ACTIONS(2217), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_go] = ACTIONS(2217), - [anon_sym_spawn] = ACTIONS(2217), - [anon_sym_json_DOTdecode] = ACTIONS(2217), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_LT_DASH] = ACTIONS(2217), - [anon_sym_LT_LT] = ACTIONS(2217), - [anon_sym_GT_GT] = ACTIONS(2217), - [anon_sym_GT_GT_GT] = ACTIONS(2217), - [anon_sym_AMP_CARET] = ACTIONS(2217), - [anon_sym_AMP_AMP] = ACTIONS(2217), - [anon_sym_PIPE_PIPE] = ACTIONS(2217), - [anon_sym_or] = ACTIONS(2217), - [sym_none] = ACTIONS(2217), - [sym_true] = ACTIONS(2217), - [sym_false] = ACTIONS(2217), - [sym_nil] = ACTIONS(2217), - [anon_sym_QMARK_DOT] = ACTIONS(2217), - [anon_sym_POUND_LBRACK] = ACTIONS(2217), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_DOLLARif] = ACTIONS(2217), - [anon_sym_is] = ACTIONS(2217), - [anon_sym_BANGis] = ACTIONS(2217), - [anon_sym_in] = ACTIONS(2217), - [anon_sym_BANGin] = ACTIONS(2217), - [anon_sym_match] = ACTIONS(2217), - [anon_sym_select] = ACTIONS(2217), - [anon_sym_lock] = ACTIONS(2217), - [anon_sym_rlock] = ACTIONS(2217), - [anon_sym_unsafe] = ACTIONS(2217), - [anon_sym_sql] = ACTIONS(2217), - [sym_int_literal] = ACTIONS(2217), - [sym_float_literal] = ACTIONS(2217), - [sym_rune_literal] = ACTIONS(2217), - [anon_sym_SQUOTE] = ACTIONS(2217), - [anon_sym_DQUOTE] = ACTIONS(2217), - [anon_sym_c_SQUOTE] = ACTIONS(2217), - [anon_sym_c_DQUOTE] = ACTIONS(2217), - [anon_sym_r_SQUOTE] = ACTIONS(2217), - [anon_sym_r_DQUOTE] = ACTIONS(2217), - [sym_pseudo_compile_time_identifier] = ACTIONS(2217), - [anon_sym_shared] = ACTIONS(2217), - [anon_sym_map_LBRACK] = ACTIONS(2217), - [anon_sym_chan] = ACTIONS(2217), - [anon_sym_thread] = ACTIONS(2217), - [anon_sym_atomic] = ACTIONS(2217), - [anon_sym_assert] = ACTIONS(2217), - [anon_sym_defer] = ACTIONS(2217), - [anon_sym_goto] = ACTIONS(2217), - [anon_sym_break] = ACTIONS(2217), - [anon_sym_continue] = ACTIONS(2217), - [anon_sym_return] = ACTIONS(2217), - [anon_sym_DOLLARfor] = ACTIONS(2217), - [anon_sym_for] = ACTIONS(2217), - [anon_sym_POUND] = ACTIONS(2217), - [anon_sym_asm] = ACTIONS(2217), - [anon_sym_AT_LBRACK] = ACTIONS(2217), - }, - [1014] = { - [sym_line_comment] = STATE(1014), - [sym_block_comment] = STATE(1014), - [ts_builtin_sym_end] = ACTIONS(2219), - [sym_identifier] = ACTIONS(2221), - [anon_sym_LF] = ACTIONS(2221), - [anon_sym_CR] = ACTIONS(2221), - [anon_sym_CR_LF] = ACTIONS(2221), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2221), - [anon_sym_as] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_COMMA] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym___global] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(2221), - [anon_sym_fn] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_PERCENT] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_GT] = ACTIONS(2221), - [anon_sym_EQ_EQ] = ACTIONS(2221), - [anon_sym_BANG_EQ] = ACTIONS(2221), - [anon_sym_LT_EQ] = ACTIONS(2221), - [anon_sym_GT_EQ] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2219), - [anon_sym_struct] = ACTIONS(2221), - [anon_sym_union] = ACTIONS(2221), - [anon_sym_pub] = ACTIONS(2221), - [anon_sym_mut] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [anon_sym_QMARK] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_go] = ACTIONS(2221), - [anon_sym_spawn] = ACTIONS(2221), - [anon_sym_json_DOTdecode] = ACTIONS(2221), - [anon_sym_LBRACK2] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_LT_DASH] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_GT_GT] = ACTIONS(2221), - [anon_sym_GT_GT_GT] = ACTIONS(2221), - [anon_sym_AMP_CARET] = ACTIONS(2221), - [anon_sym_AMP_AMP] = ACTIONS(2221), - [anon_sym_PIPE_PIPE] = ACTIONS(2221), - [anon_sym_or] = ACTIONS(2221), - [sym_none] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_nil] = ACTIONS(2221), - [anon_sym_QMARK_DOT] = ACTIONS(2221), - [anon_sym_POUND_LBRACK] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_DOLLARif] = ACTIONS(2221), - [anon_sym_is] = ACTIONS(2221), - [anon_sym_BANGis] = ACTIONS(2221), - [anon_sym_in] = ACTIONS(2221), - [anon_sym_BANGin] = ACTIONS(2221), - [anon_sym_match] = ACTIONS(2221), - [anon_sym_select] = ACTIONS(2221), - [anon_sym_lock] = ACTIONS(2221), - [anon_sym_rlock] = ACTIONS(2221), - [anon_sym_unsafe] = ACTIONS(2221), - [anon_sym_sql] = ACTIONS(2221), - [sym_int_literal] = ACTIONS(2221), - [sym_float_literal] = ACTIONS(2221), - [sym_rune_literal] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_c_SQUOTE] = ACTIONS(2221), - [anon_sym_c_DQUOTE] = ACTIONS(2221), - [anon_sym_r_SQUOTE] = ACTIONS(2221), - [anon_sym_r_DQUOTE] = ACTIONS(2221), - [sym_pseudo_compile_time_identifier] = ACTIONS(2221), - [anon_sym_shared] = ACTIONS(2221), - [anon_sym_map_LBRACK] = ACTIONS(2221), - [anon_sym_chan] = ACTIONS(2221), - [anon_sym_thread] = ACTIONS(2221), - [anon_sym_atomic] = ACTIONS(2221), - [anon_sym_assert] = ACTIONS(2221), - [anon_sym_defer] = ACTIONS(2221), - [anon_sym_goto] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_DOLLARfor] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_POUND] = ACTIONS(2221), - [anon_sym_asm] = ACTIONS(2221), - [anon_sym_AT_LBRACK] = ACTIONS(2221), - }, - [1015] = { - [sym_line_comment] = STATE(1015), - [sym_block_comment] = STATE(1015), - [ts_builtin_sym_end] = ACTIONS(2583), - [sym_identifier] = ACTIONS(2585), - [anon_sym_LF] = ACTIONS(2585), - [anon_sym_CR] = ACTIONS(2585), - [anon_sym_CR_LF] = ACTIONS(2585), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2585), - [anon_sym_as] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_COMMA] = ACTIONS(2585), - [anon_sym_const] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2585), - [anon_sym___global] = ACTIONS(2585), - [anon_sym_type] = ACTIONS(2585), - [anon_sym_PIPE] = ACTIONS(2585), - [anon_sym_fn] = ACTIONS(2585), - [anon_sym_PLUS] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_SLASH] = ACTIONS(2585), - [anon_sym_PERCENT] = ACTIONS(2585), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_GT] = ACTIONS(2585), - [anon_sym_EQ_EQ] = ACTIONS(2585), - [anon_sym_BANG_EQ] = ACTIONS(2585), - [anon_sym_LT_EQ] = ACTIONS(2585), - [anon_sym_GT_EQ] = ACTIONS(2585), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_struct] = ACTIONS(2585), - [anon_sym_union] = ACTIONS(2585), - [anon_sym_pub] = ACTIONS(2585), - [anon_sym_mut] = ACTIONS(2585), - [anon_sym_enum] = ACTIONS(2585), - [anon_sym_interface] = ACTIONS(2585), - [anon_sym_PLUS_PLUS] = ACTIONS(2585), - [anon_sym_DASH_DASH] = ACTIONS(2585), - [anon_sym_QMARK] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_go] = ACTIONS(2585), - [anon_sym_spawn] = ACTIONS(2585), - [anon_sym_json_DOTdecode] = ACTIONS(2585), - [anon_sym_LBRACK2] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [anon_sym_CARET] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2585), - [anon_sym_LT_DASH] = ACTIONS(2585), - [anon_sym_LT_LT] = ACTIONS(2585), - [anon_sym_GT_GT] = ACTIONS(2585), - [anon_sym_GT_GT_GT] = ACTIONS(2585), - [anon_sym_AMP_CARET] = ACTIONS(2585), - [anon_sym_AMP_AMP] = ACTIONS(2585), - [anon_sym_PIPE_PIPE] = ACTIONS(2585), - [anon_sym_or] = ACTIONS(2585), - [sym_none] = ACTIONS(2585), - [sym_true] = ACTIONS(2585), - [sym_false] = ACTIONS(2585), - [sym_nil] = ACTIONS(2585), - [anon_sym_QMARK_DOT] = ACTIONS(2585), - [anon_sym_POUND_LBRACK] = ACTIONS(2585), - [anon_sym_if] = ACTIONS(2585), - [anon_sym_DOLLARif] = ACTIONS(2585), - [anon_sym_is] = ACTIONS(2585), - [anon_sym_BANGis] = ACTIONS(2585), - [anon_sym_in] = ACTIONS(2585), - [anon_sym_BANGin] = ACTIONS(2585), - [anon_sym_match] = ACTIONS(2585), - [anon_sym_select] = ACTIONS(2585), - [anon_sym_lock] = ACTIONS(2585), - [anon_sym_rlock] = ACTIONS(2585), - [anon_sym_unsafe] = ACTIONS(2585), - [anon_sym_sql] = ACTIONS(2585), - [sym_int_literal] = ACTIONS(2585), - [sym_float_literal] = ACTIONS(2585), - [sym_rune_literal] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2585), - [anon_sym_DQUOTE] = ACTIONS(2585), - [anon_sym_c_SQUOTE] = ACTIONS(2585), - [anon_sym_c_DQUOTE] = ACTIONS(2585), - [anon_sym_r_SQUOTE] = ACTIONS(2585), - [anon_sym_r_DQUOTE] = ACTIONS(2585), - [sym_pseudo_compile_time_identifier] = ACTIONS(2585), - [anon_sym_shared] = ACTIONS(2585), - [anon_sym_map_LBRACK] = ACTIONS(2585), - [anon_sym_chan] = ACTIONS(2585), - [anon_sym_thread] = ACTIONS(2585), - [anon_sym_atomic] = ACTIONS(2585), - [anon_sym_assert] = ACTIONS(2585), - [anon_sym_defer] = ACTIONS(2585), - [anon_sym_goto] = ACTIONS(2585), - [anon_sym_break] = ACTIONS(2585), - [anon_sym_continue] = ACTIONS(2585), - [anon_sym_return] = ACTIONS(2585), - [anon_sym_DOLLARfor] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2585), - [anon_sym_POUND] = ACTIONS(2585), - [anon_sym_asm] = ACTIONS(2585), - [anon_sym_AT_LBRACK] = ACTIONS(2585), - }, - [1016] = { - [sym_line_comment] = STATE(1016), - [sym_block_comment] = STATE(1016), - [ts_builtin_sym_end] = ACTIONS(2807), - [sym_identifier] = ACTIONS(2809), - [anon_sym_LF] = ACTIONS(2809), - [anon_sym_CR] = ACTIONS(2809), - [anon_sym_CR_LF] = ACTIONS(2809), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2809), - [anon_sym_as] = ACTIONS(2809), - [anon_sym_LBRACE] = ACTIONS(2809), - [anon_sym_COMMA] = ACTIONS(2809), - [anon_sym_const] = ACTIONS(2809), - [anon_sym_LPAREN] = ACTIONS(2809), - [anon_sym___global] = ACTIONS(2809), - [anon_sym_type] = ACTIONS(2809), - [anon_sym_PIPE] = ACTIONS(2809), - [anon_sym_fn] = ACTIONS(2809), - [anon_sym_PLUS] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2809), - [anon_sym_SLASH] = ACTIONS(2809), - [anon_sym_PERCENT] = ACTIONS(2809), - [anon_sym_LT] = ACTIONS(2809), - [anon_sym_GT] = ACTIONS(2809), - [anon_sym_EQ_EQ] = ACTIONS(2809), - [anon_sym_BANG_EQ] = ACTIONS(2809), - [anon_sym_LT_EQ] = ACTIONS(2809), - [anon_sym_GT_EQ] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_struct] = ACTIONS(2809), - [anon_sym_union] = ACTIONS(2809), - [anon_sym_pub] = ACTIONS(2809), - [anon_sym_mut] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(2809), - [anon_sym_interface] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2809), - [anon_sym_DASH_DASH] = ACTIONS(2809), - [anon_sym_QMARK] = ACTIONS(2809), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_go] = ACTIONS(2809), - [anon_sym_spawn] = ACTIONS(2809), - [anon_sym_json_DOTdecode] = ACTIONS(2809), - [anon_sym_LBRACK2] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_CARET] = ACTIONS(2809), - [anon_sym_AMP] = ACTIONS(2809), - [anon_sym_LT_DASH] = ACTIONS(2809), - [anon_sym_LT_LT] = ACTIONS(2809), - [anon_sym_GT_GT] = ACTIONS(2809), - [anon_sym_GT_GT_GT] = ACTIONS(2809), - [anon_sym_AMP_CARET] = ACTIONS(2809), - [anon_sym_AMP_AMP] = ACTIONS(2809), - [anon_sym_PIPE_PIPE] = ACTIONS(2809), - [anon_sym_or] = ACTIONS(2809), - [sym_none] = ACTIONS(2809), - [sym_true] = ACTIONS(2809), - [sym_false] = ACTIONS(2809), - [sym_nil] = ACTIONS(2809), - [anon_sym_QMARK_DOT] = ACTIONS(2809), - [anon_sym_POUND_LBRACK] = ACTIONS(2809), - [anon_sym_if] = ACTIONS(2809), - [anon_sym_DOLLARif] = ACTIONS(2809), - [anon_sym_is] = ACTIONS(2809), - [anon_sym_BANGis] = ACTIONS(2809), - [anon_sym_in] = ACTIONS(2809), - [anon_sym_BANGin] = ACTIONS(2809), - [anon_sym_match] = ACTIONS(2809), - [anon_sym_select] = ACTIONS(2809), - [anon_sym_lock] = ACTIONS(2809), - [anon_sym_rlock] = ACTIONS(2809), - [anon_sym_unsafe] = ACTIONS(2809), - [anon_sym_sql] = ACTIONS(2809), - [sym_int_literal] = ACTIONS(2809), - [sym_float_literal] = ACTIONS(2809), - [sym_rune_literal] = ACTIONS(2809), - [anon_sym_SQUOTE] = ACTIONS(2809), - [anon_sym_DQUOTE] = ACTIONS(2809), - [anon_sym_c_SQUOTE] = ACTIONS(2809), - [anon_sym_c_DQUOTE] = ACTIONS(2809), - [anon_sym_r_SQUOTE] = ACTIONS(2809), - [anon_sym_r_DQUOTE] = ACTIONS(2809), - [sym_pseudo_compile_time_identifier] = ACTIONS(2809), - [anon_sym_shared] = ACTIONS(2809), - [anon_sym_map_LBRACK] = ACTIONS(2809), - [anon_sym_chan] = ACTIONS(2809), - [anon_sym_thread] = ACTIONS(2809), - [anon_sym_atomic] = ACTIONS(2809), - [anon_sym_assert] = ACTIONS(2809), - [anon_sym_defer] = ACTIONS(2809), - [anon_sym_goto] = ACTIONS(2809), - [anon_sym_break] = ACTIONS(2809), - [anon_sym_continue] = ACTIONS(2809), - [anon_sym_return] = ACTIONS(2809), - [anon_sym_DOLLARfor] = ACTIONS(2809), - [anon_sym_for] = ACTIONS(2809), - [anon_sym_POUND] = ACTIONS(2809), - [anon_sym_asm] = ACTIONS(2809), - [anon_sym_AT_LBRACK] = ACTIONS(2809), - }, - [1017] = { - [sym_line_comment] = STATE(1017), - [sym_block_comment] = STATE(1017), - [ts_builtin_sym_end] = ACTIONS(2739), - [sym_identifier] = ACTIONS(2741), - [anon_sym_LF] = ACTIONS(2741), - [anon_sym_CR] = ACTIONS(2741), - [anon_sym_CR_LF] = ACTIONS(2741), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2741), - [anon_sym_as] = ACTIONS(2741), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_const] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2741), - [anon_sym___global] = ACTIONS(2741), - [anon_sym_type] = ACTIONS(2741), - [anon_sym_PIPE] = ACTIONS(2741), - [anon_sym_fn] = ACTIONS(2741), - [anon_sym_PLUS] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2741), - [anon_sym_STAR] = ACTIONS(2741), - [anon_sym_SLASH] = ACTIONS(2741), - [anon_sym_PERCENT] = ACTIONS(2741), - [anon_sym_LT] = ACTIONS(2741), - [anon_sym_GT] = ACTIONS(2741), - [anon_sym_EQ_EQ] = ACTIONS(2741), - [anon_sym_BANG_EQ] = ACTIONS(2741), - [anon_sym_LT_EQ] = ACTIONS(2741), - [anon_sym_GT_EQ] = ACTIONS(2741), - [anon_sym_LBRACK] = ACTIONS(2739), - [anon_sym_struct] = ACTIONS(2741), - [anon_sym_union] = ACTIONS(2741), - [anon_sym_pub] = ACTIONS(2741), - [anon_sym_mut] = ACTIONS(2741), - [anon_sym_enum] = ACTIONS(2741), - [anon_sym_interface] = ACTIONS(2741), - [anon_sym_PLUS_PLUS] = ACTIONS(2741), - [anon_sym_DASH_DASH] = ACTIONS(2741), - [anon_sym_QMARK] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_go] = ACTIONS(2741), - [anon_sym_spawn] = ACTIONS(2741), - [anon_sym_json_DOTdecode] = ACTIONS(2741), - [anon_sym_LBRACK2] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2741), - [anon_sym_CARET] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2741), - [anon_sym_LT_DASH] = ACTIONS(2741), - [anon_sym_LT_LT] = ACTIONS(2741), - [anon_sym_GT_GT] = ACTIONS(2741), - [anon_sym_GT_GT_GT] = ACTIONS(2741), - [anon_sym_AMP_CARET] = ACTIONS(2741), - [anon_sym_AMP_AMP] = ACTIONS(2741), - [anon_sym_PIPE_PIPE] = ACTIONS(2741), - [anon_sym_or] = ACTIONS(2741), - [sym_none] = ACTIONS(2741), - [sym_true] = ACTIONS(2741), - [sym_false] = ACTIONS(2741), - [sym_nil] = ACTIONS(2741), - [anon_sym_QMARK_DOT] = ACTIONS(2741), - [anon_sym_POUND_LBRACK] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(2741), - [anon_sym_DOLLARif] = ACTIONS(2741), - [anon_sym_is] = ACTIONS(2741), - [anon_sym_BANGis] = ACTIONS(2741), - [anon_sym_in] = ACTIONS(2741), - [anon_sym_BANGin] = ACTIONS(2741), - [anon_sym_match] = ACTIONS(2741), - [anon_sym_select] = ACTIONS(2741), - [anon_sym_lock] = ACTIONS(2741), - [anon_sym_rlock] = ACTIONS(2741), - [anon_sym_unsafe] = ACTIONS(2741), - [anon_sym_sql] = ACTIONS(2741), - [sym_int_literal] = ACTIONS(2741), - [sym_float_literal] = ACTIONS(2741), - [sym_rune_literal] = ACTIONS(2741), - [anon_sym_SQUOTE] = ACTIONS(2741), - [anon_sym_DQUOTE] = ACTIONS(2741), - [anon_sym_c_SQUOTE] = ACTIONS(2741), - [anon_sym_c_DQUOTE] = ACTIONS(2741), - [anon_sym_r_SQUOTE] = ACTIONS(2741), - [anon_sym_r_DQUOTE] = ACTIONS(2741), - [sym_pseudo_compile_time_identifier] = ACTIONS(2741), - [anon_sym_shared] = ACTIONS(2741), - [anon_sym_map_LBRACK] = ACTIONS(2741), - [anon_sym_chan] = ACTIONS(2741), - [anon_sym_thread] = ACTIONS(2741), - [anon_sym_atomic] = ACTIONS(2741), - [anon_sym_assert] = ACTIONS(2741), - [anon_sym_defer] = ACTIONS(2741), - [anon_sym_goto] = ACTIONS(2741), - [anon_sym_break] = ACTIONS(2741), - [anon_sym_continue] = ACTIONS(2741), - [anon_sym_return] = ACTIONS(2741), - [anon_sym_DOLLARfor] = ACTIONS(2741), - [anon_sym_for] = ACTIONS(2741), - [anon_sym_POUND] = ACTIONS(2741), - [anon_sym_asm] = ACTIONS(2741), - [anon_sym_AT_LBRACK] = ACTIONS(2741), - }, - [1018] = { - [sym_line_comment] = STATE(1018), - [sym_block_comment] = STATE(1018), - [ts_builtin_sym_end] = ACTIONS(2087), - [sym_identifier] = ACTIONS(2089), - [anon_sym_LF] = ACTIONS(2089), - [anon_sym_CR] = ACTIONS(2089), - [anon_sym_CR_LF] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2089), - [anon_sym_as] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_COMMA] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym___global] = ACTIONS(2089), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(2089), - [anon_sym_fn] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2089), - [anon_sym_SLASH] = ACTIONS(2089), - [anon_sym_PERCENT] = ACTIONS(2089), - [anon_sym_LT] = ACTIONS(2089), - [anon_sym_GT] = ACTIONS(2089), - [anon_sym_EQ_EQ] = ACTIONS(2089), - [anon_sym_BANG_EQ] = ACTIONS(2089), - [anon_sym_LT_EQ] = ACTIONS(2089), - [anon_sym_GT_EQ] = ACTIONS(2089), - [anon_sym_LBRACK] = ACTIONS(2087), - [anon_sym_struct] = ACTIONS(2089), - [anon_sym_union] = ACTIONS(2089), - [anon_sym_pub] = ACTIONS(2089), - [anon_sym_mut] = ACTIONS(2089), - [anon_sym_enum] = ACTIONS(2089), - [anon_sym_interface] = ACTIONS(2089), - [anon_sym_PLUS_PLUS] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2089), - [anon_sym_QMARK] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(2089), - [anon_sym_go] = ACTIONS(2089), - [anon_sym_spawn] = ACTIONS(2089), - [anon_sym_json_DOTdecode] = ACTIONS(2089), - [anon_sym_LBRACK2] = ACTIONS(2089), - [anon_sym_TILDE] = ACTIONS(2089), - [anon_sym_CARET] = ACTIONS(2089), - [anon_sym_AMP] = ACTIONS(2089), - [anon_sym_LT_DASH] = ACTIONS(2089), - [anon_sym_LT_LT] = ACTIONS(2089), - [anon_sym_GT_GT] = ACTIONS(2089), - [anon_sym_GT_GT_GT] = ACTIONS(2089), - [anon_sym_AMP_CARET] = ACTIONS(2089), - [anon_sym_AMP_AMP] = ACTIONS(2089), - [anon_sym_PIPE_PIPE] = ACTIONS(2089), - [anon_sym_or] = ACTIONS(2089), - [sym_none] = ACTIONS(2089), - [sym_true] = ACTIONS(2089), - [sym_false] = ACTIONS(2089), - [sym_nil] = ACTIONS(2089), - [anon_sym_QMARK_DOT] = ACTIONS(2089), - [anon_sym_POUND_LBRACK] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_DOLLARif] = ACTIONS(2089), - [anon_sym_is] = ACTIONS(2089), - [anon_sym_BANGis] = ACTIONS(2089), - [anon_sym_in] = ACTIONS(2089), - [anon_sym_BANGin] = ACTIONS(2089), - [anon_sym_match] = ACTIONS(2089), - [anon_sym_select] = ACTIONS(2089), - [anon_sym_lock] = ACTIONS(2089), - [anon_sym_rlock] = ACTIONS(2089), - [anon_sym_unsafe] = ACTIONS(2089), - [anon_sym_sql] = ACTIONS(2089), - [sym_int_literal] = ACTIONS(2089), - [sym_float_literal] = ACTIONS(2089), - [sym_rune_literal] = ACTIONS(2089), - [anon_sym_SQUOTE] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2089), - [anon_sym_c_SQUOTE] = ACTIONS(2089), - [anon_sym_c_DQUOTE] = ACTIONS(2089), - [anon_sym_r_SQUOTE] = ACTIONS(2089), - [anon_sym_r_DQUOTE] = ACTIONS(2089), - [sym_pseudo_compile_time_identifier] = ACTIONS(2089), - [anon_sym_shared] = ACTIONS(2089), - [anon_sym_map_LBRACK] = ACTIONS(2089), - [anon_sym_chan] = ACTIONS(2089), - [anon_sym_thread] = ACTIONS(2089), - [anon_sym_atomic] = ACTIONS(2089), - [anon_sym_assert] = ACTIONS(2089), - [anon_sym_defer] = ACTIONS(2089), - [anon_sym_goto] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_DOLLARfor] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_POUND] = ACTIONS(2089), - [anon_sym_asm] = ACTIONS(2089), - [anon_sym_AT_LBRACK] = ACTIONS(2089), - }, - [1019] = { - [sym_line_comment] = STATE(1019), - [sym_block_comment] = STATE(1019), - [ts_builtin_sym_end] = ACTIONS(2125), - [sym_identifier] = ACTIONS(2127), - [anon_sym_LF] = ACTIONS(2127), - [anon_sym_CR] = ACTIONS(2127), - [anon_sym_CR_LF] = ACTIONS(2127), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2127), - [anon_sym_as] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_COMMA] = ACTIONS(2127), - [anon_sym_const] = ACTIONS(2127), - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym___global] = ACTIONS(2127), - [anon_sym_type] = ACTIONS(2127), - [anon_sym_PIPE] = ACTIONS(2127), - [anon_sym_fn] = ACTIONS(2127), - [anon_sym_PLUS] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2127), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_SLASH] = ACTIONS(2127), - [anon_sym_PERCENT] = ACTIONS(2127), - [anon_sym_LT] = ACTIONS(2127), - [anon_sym_GT] = ACTIONS(2127), - [anon_sym_EQ_EQ] = ACTIONS(2127), - [anon_sym_BANG_EQ] = ACTIONS(2127), - [anon_sym_LT_EQ] = ACTIONS(2127), - [anon_sym_GT_EQ] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_struct] = ACTIONS(2127), - [anon_sym_union] = ACTIONS(2127), - [anon_sym_pub] = ACTIONS(2127), - [anon_sym_mut] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(2127), - [anon_sym_interface] = ACTIONS(2127), - [anon_sym_PLUS_PLUS] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(2127), - [anon_sym_QMARK] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_go] = ACTIONS(2127), - [anon_sym_spawn] = ACTIONS(2127), - [anon_sym_json_DOTdecode] = ACTIONS(2127), - [anon_sym_LBRACK2] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_CARET] = ACTIONS(2127), - [anon_sym_AMP] = ACTIONS(2127), - [anon_sym_LT_DASH] = ACTIONS(2127), - [anon_sym_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_AMP_CARET] = ACTIONS(2127), - [anon_sym_AMP_AMP] = ACTIONS(2127), - [anon_sym_PIPE_PIPE] = ACTIONS(2127), - [anon_sym_or] = ACTIONS(2127), - [sym_none] = ACTIONS(2127), - [sym_true] = ACTIONS(2127), - [sym_false] = ACTIONS(2127), - [sym_nil] = ACTIONS(2127), - [anon_sym_QMARK_DOT] = ACTIONS(2127), - [anon_sym_POUND_LBRACK] = ACTIONS(2127), - [anon_sym_if] = ACTIONS(2127), - [anon_sym_DOLLARif] = ACTIONS(2127), - [anon_sym_is] = ACTIONS(2127), - [anon_sym_BANGis] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2127), - [anon_sym_BANGin] = ACTIONS(2127), - [anon_sym_match] = ACTIONS(2127), - [anon_sym_select] = ACTIONS(2127), - [anon_sym_lock] = ACTIONS(2127), - [anon_sym_rlock] = ACTIONS(2127), - [anon_sym_unsafe] = ACTIONS(2127), - [anon_sym_sql] = ACTIONS(2127), - [sym_int_literal] = ACTIONS(2127), - [sym_float_literal] = ACTIONS(2127), - [sym_rune_literal] = ACTIONS(2127), - [anon_sym_SQUOTE] = ACTIONS(2127), - [anon_sym_DQUOTE] = ACTIONS(2127), - [anon_sym_c_SQUOTE] = ACTIONS(2127), - [anon_sym_c_DQUOTE] = ACTIONS(2127), - [anon_sym_r_SQUOTE] = ACTIONS(2127), - [anon_sym_r_DQUOTE] = ACTIONS(2127), - [sym_pseudo_compile_time_identifier] = ACTIONS(2127), - [anon_sym_shared] = ACTIONS(2127), - [anon_sym_map_LBRACK] = ACTIONS(2127), - [anon_sym_chan] = ACTIONS(2127), - [anon_sym_thread] = ACTIONS(2127), - [anon_sym_atomic] = ACTIONS(2127), - [anon_sym_assert] = ACTIONS(2127), - [anon_sym_defer] = ACTIONS(2127), - [anon_sym_goto] = ACTIONS(2127), - [anon_sym_break] = ACTIONS(2127), - [anon_sym_continue] = ACTIONS(2127), - [anon_sym_return] = ACTIONS(2127), - [anon_sym_DOLLARfor] = ACTIONS(2127), - [anon_sym_for] = ACTIONS(2127), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_asm] = ACTIONS(2127), - [anon_sym_AT_LBRACK] = ACTIONS(2127), - }, - [1020] = { - [sym_line_comment] = STATE(1020), - [sym_block_comment] = STATE(1020), - [ts_builtin_sym_end] = ACTIONS(2103), - [sym_identifier] = ACTIONS(2105), - [anon_sym_LF] = ACTIONS(2105), - [anon_sym_CR] = ACTIONS(2105), - [anon_sym_CR_LF] = ACTIONS(2105), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_as] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_COMMA] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym___global] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_PIPE] = ACTIONS(2105), - [anon_sym_fn] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_PERCENT] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_GT] = ACTIONS(2105), - [anon_sym_EQ_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ] = ACTIONS(2105), - [anon_sym_LT_EQ] = ACTIONS(2105), - [anon_sym_GT_EQ] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2103), - [anon_sym_struct] = ACTIONS(2105), - [anon_sym_union] = ACTIONS(2105), - [anon_sym_pub] = ACTIONS(2105), - [anon_sym_mut] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [anon_sym_QMARK] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_go] = ACTIONS(2105), - [anon_sym_spawn] = ACTIONS(2105), - [anon_sym_json_DOTdecode] = ACTIONS(2105), - [anon_sym_LBRACK2] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_CARET] = ACTIONS(2105), - [anon_sym_AMP] = ACTIONS(2105), - [anon_sym_LT_DASH] = ACTIONS(2105), - [anon_sym_LT_LT] = ACTIONS(2105), - [anon_sym_GT_GT] = ACTIONS(2105), - [anon_sym_GT_GT_GT] = ACTIONS(2105), - [anon_sym_AMP_CARET] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(2105), - [anon_sym_PIPE_PIPE] = ACTIONS(2105), - [anon_sym_or] = ACTIONS(2105), - [sym_none] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_nil] = ACTIONS(2105), - [anon_sym_QMARK_DOT] = ACTIONS(2105), - [anon_sym_POUND_LBRACK] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_DOLLARif] = ACTIONS(2105), - [anon_sym_is] = ACTIONS(2105), - [anon_sym_BANGis] = ACTIONS(2105), - [anon_sym_in] = ACTIONS(2105), - [anon_sym_BANGin] = ACTIONS(2105), - [anon_sym_match] = ACTIONS(2105), - [anon_sym_select] = ACTIONS(2105), - [anon_sym_lock] = ACTIONS(2105), - [anon_sym_rlock] = ACTIONS(2105), - [anon_sym_unsafe] = ACTIONS(2105), - [anon_sym_sql] = ACTIONS(2105), - [sym_int_literal] = ACTIONS(2105), - [sym_float_literal] = ACTIONS(2105), - [sym_rune_literal] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_c_SQUOTE] = ACTIONS(2105), - [anon_sym_c_DQUOTE] = ACTIONS(2105), - [anon_sym_r_SQUOTE] = ACTIONS(2105), - [anon_sym_r_DQUOTE] = ACTIONS(2105), - [sym_pseudo_compile_time_identifier] = ACTIONS(2105), - [anon_sym_shared] = ACTIONS(2105), - [anon_sym_map_LBRACK] = ACTIONS(2105), - [anon_sym_chan] = ACTIONS(2105), - [anon_sym_thread] = ACTIONS(2105), - [anon_sym_atomic] = ACTIONS(2105), - [anon_sym_assert] = ACTIONS(2105), - [anon_sym_defer] = ACTIONS(2105), - [anon_sym_goto] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_DOLLARfor] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_POUND] = ACTIONS(2105), - [anon_sym_asm] = ACTIONS(2105), - [anon_sym_AT_LBRACK] = ACTIONS(2105), - }, - [1021] = { - [sym_line_comment] = STATE(1021), - [sym_block_comment] = STATE(1021), - [ts_builtin_sym_end] = ACTIONS(2811), - [sym_identifier] = ACTIONS(2813), - [anon_sym_LF] = ACTIONS(2813), - [anon_sym_CR] = ACTIONS(2813), - [anon_sym_CR_LF] = ACTIONS(2813), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2813), - [anon_sym_as] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2813), - [anon_sym_COMMA] = ACTIONS(2813), - [anon_sym_const] = ACTIONS(2813), - [anon_sym_LPAREN] = ACTIONS(2813), - [anon_sym___global] = ACTIONS(2813), - [anon_sym_type] = ACTIONS(2813), - [anon_sym_PIPE] = ACTIONS(2813), - [anon_sym_fn] = ACTIONS(2813), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_SLASH] = ACTIONS(2813), - [anon_sym_PERCENT] = ACTIONS(2813), - [anon_sym_LT] = ACTIONS(2813), - [anon_sym_GT] = ACTIONS(2813), - [anon_sym_EQ_EQ] = ACTIONS(2813), - [anon_sym_BANG_EQ] = ACTIONS(2813), - [anon_sym_LT_EQ] = ACTIONS(2813), - [anon_sym_GT_EQ] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_struct] = ACTIONS(2813), - [anon_sym_union] = ACTIONS(2813), - [anon_sym_pub] = ACTIONS(2813), - [anon_sym_mut] = ACTIONS(2813), - [anon_sym_enum] = ACTIONS(2813), - [anon_sym_interface] = ACTIONS(2813), - [anon_sym_PLUS_PLUS] = ACTIONS(2813), - [anon_sym_DASH_DASH] = ACTIONS(2813), - [anon_sym_QMARK] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(2813), - [anon_sym_go] = ACTIONS(2813), - [anon_sym_spawn] = ACTIONS(2813), - [anon_sym_json_DOTdecode] = ACTIONS(2813), - [anon_sym_LBRACK2] = ACTIONS(2813), - [anon_sym_TILDE] = ACTIONS(2813), - [anon_sym_CARET] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_LT_DASH] = ACTIONS(2813), - [anon_sym_LT_LT] = ACTIONS(2813), - [anon_sym_GT_GT] = ACTIONS(2813), - [anon_sym_GT_GT_GT] = ACTIONS(2813), - [anon_sym_AMP_CARET] = ACTIONS(2813), - [anon_sym_AMP_AMP] = ACTIONS(2813), - [anon_sym_PIPE_PIPE] = ACTIONS(2813), - [anon_sym_or] = ACTIONS(2813), - [sym_none] = ACTIONS(2813), - [sym_true] = ACTIONS(2813), - [sym_false] = ACTIONS(2813), - [sym_nil] = ACTIONS(2813), - [anon_sym_QMARK_DOT] = ACTIONS(2813), - [anon_sym_POUND_LBRACK] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2813), - [anon_sym_DOLLARif] = ACTIONS(2813), - [anon_sym_is] = ACTIONS(2813), - [anon_sym_BANGis] = ACTIONS(2813), - [anon_sym_in] = ACTIONS(2813), - [anon_sym_BANGin] = ACTIONS(2813), - [anon_sym_match] = ACTIONS(2813), - [anon_sym_select] = ACTIONS(2813), - [anon_sym_lock] = ACTIONS(2813), - [anon_sym_rlock] = ACTIONS(2813), - [anon_sym_unsafe] = ACTIONS(2813), - [anon_sym_sql] = ACTIONS(2813), - [sym_int_literal] = ACTIONS(2813), - [sym_float_literal] = ACTIONS(2813), - [sym_rune_literal] = ACTIONS(2813), - [anon_sym_SQUOTE] = ACTIONS(2813), - [anon_sym_DQUOTE] = ACTIONS(2813), - [anon_sym_c_SQUOTE] = ACTIONS(2813), - [anon_sym_c_DQUOTE] = ACTIONS(2813), - [anon_sym_r_SQUOTE] = ACTIONS(2813), - [anon_sym_r_DQUOTE] = ACTIONS(2813), - [sym_pseudo_compile_time_identifier] = ACTIONS(2813), - [anon_sym_shared] = ACTIONS(2813), - [anon_sym_map_LBRACK] = ACTIONS(2813), - [anon_sym_chan] = ACTIONS(2813), - [anon_sym_thread] = ACTIONS(2813), - [anon_sym_atomic] = ACTIONS(2813), - [anon_sym_assert] = ACTIONS(2813), - [anon_sym_defer] = ACTIONS(2813), - [anon_sym_goto] = ACTIONS(2813), - [anon_sym_break] = ACTIONS(2813), - [anon_sym_continue] = ACTIONS(2813), - [anon_sym_return] = ACTIONS(2813), - [anon_sym_DOLLARfor] = ACTIONS(2813), - [anon_sym_for] = ACTIONS(2813), - [anon_sym_POUND] = ACTIONS(2813), - [anon_sym_asm] = ACTIONS(2813), - [anon_sym_AT_LBRACK] = ACTIONS(2813), - }, - [1022] = { - [sym_line_comment] = STATE(1022), - [sym_block_comment] = STATE(1022), - [ts_builtin_sym_end] = ACTIONS(2157), - [sym_identifier] = ACTIONS(2159), - [anon_sym_LF] = ACTIONS(2159), - [anon_sym_CR] = ACTIONS(2159), - [anon_sym_CR_LF] = ACTIONS(2159), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym___global] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_PIPE] = ACTIONS(2159), - [anon_sym_fn] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_PERCENT] = ACTIONS(2159), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_GT] = ACTIONS(2159), - [anon_sym_EQ_EQ] = ACTIONS(2159), - [anon_sym_BANG_EQ] = ACTIONS(2159), - [anon_sym_LT_EQ] = ACTIONS(2159), - [anon_sym_GT_EQ] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2159), - [anon_sym_union] = ACTIONS(2159), - [anon_sym_pub] = ACTIONS(2159), - [anon_sym_mut] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [anon_sym_interface] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [anon_sym_QMARK] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(2159), - [anon_sym_spawn] = ACTIONS(2159), - [anon_sym_json_DOTdecode] = ACTIONS(2159), - [anon_sym_LBRACK2] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2159), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2159), - [anon_sym_LT_LT] = ACTIONS(2159), - [anon_sym_GT_GT] = ACTIONS(2159), - [anon_sym_GT_GT_GT] = ACTIONS(2159), - [anon_sym_AMP_CARET] = ACTIONS(2159), - [anon_sym_AMP_AMP] = ACTIONS(2159), - [anon_sym_PIPE_PIPE] = ACTIONS(2159), - [anon_sym_or] = ACTIONS(2159), - [sym_none] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_nil] = ACTIONS(2159), - [anon_sym_QMARK_DOT] = ACTIONS(2159), - [anon_sym_POUND_LBRACK] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_DOLLARif] = ACTIONS(2159), - [anon_sym_is] = ACTIONS(2159), - [anon_sym_BANGis] = ACTIONS(2159), - [anon_sym_in] = ACTIONS(2159), - [anon_sym_BANGin] = ACTIONS(2159), - [anon_sym_match] = ACTIONS(2159), - [anon_sym_select] = ACTIONS(2159), - [anon_sym_lock] = ACTIONS(2159), - [anon_sym_rlock] = ACTIONS(2159), - [anon_sym_unsafe] = ACTIONS(2159), - [anon_sym_sql] = ACTIONS(2159), - [sym_int_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), - [sym_rune_literal] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_c_SQUOTE] = ACTIONS(2159), - [anon_sym_c_DQUOTE] = ACTIONS(2159), - [anon_sym_r_SQUOTE] = ACTIONS(2159), - [anon_sym_r_DQUOTE] = ACTIONS(2159), - [sym_pseudo_compile_time_identifier] = ACTIONS(2159), - [anon_sym_shared] = ACTIONS(2159), - [anon_sym_map_LBRACK] = ACTIONS(2159), - [anon_sym_chan] = ACTIONS(2159), - [anon_sym_thread] = ACTIONS(2159), - [anon_sym_atomic] = ACTIONS(2159), - [anon_sym_assert] = ACTIONS(2159), - [anon_sym_defer] = ACTIONS(2159), - [anon_sym_goto] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_DOLLARfor] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_POUND] = ACTIONS(2159), - [anon_sym_asm] = ACTIONS(2159), - [anon_sym_AT_LBRACK] = ACTIONS(2159), - }, - [1023] = { - [sym_line_comment] = STATE(1023), - [sym_block_comment] = STATE(1023), - [ts_builtin_sym_end] = ACTIONS(2761), - [sym_identifier] = ACTIONS(2763), - [anon_sym_LF] = ACTIONS(2763), - [anon_sym_CR] = ACTIONS(2763), - [anon_sym_CR_LF] = ACTIONS(2763), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2763), - [anon_sym_as] = ACTIONS(2763), - [anon_sym_LBRACE] = ACTIONS(2763), - [anon_sym_COMMA] = ACTIONS(2763), - [anon_sym_const] = ACTIONS(2763), - [anon_sym_LPAREN] = ACTIONS(2763), - [anon_sym___global] = ACTIONS(2763), - [anon_sym_type] = ACTIONS(2763), - [anon_sym_PIPE] = ACTIONS(2763), - [anon_sym_fn] = ACTIONS(2763), - [anon_sym_PLUS] = ACTIONS(2763), - [anon_sym_DASH] = ACTIONS(2763), - [anon_sym_STAR] = ACTIONS(2763), - [anon_sym_SLASH] = ACTIONS(2763), - [anon_sym_PERCENT] = ACTIONS(2763), - [anon_sym_LT] = ACTIONS(2763), - [anon_sym_GT] = ACTIONS(2763), - [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(2761), - [anon_sym_struct] = ACTIONS(2763), - [anon_sym_union] = ACTIONS(2763), - [anon_sym_pub] = ACTIONS(2763), - [anon_sym_mut] = ACTIONS(2763), - [anon_sym_enum] = ACTIONS(2763), - [anon_sym_interface] = ACTIONS(2763), - [anon_sym_PLUS_PLUS] = ACTIONS(2763), - [anon_sym_DASH_DASH] = ACTIONS(2763), - [anon_sym_QMARK] = ACTIONS(2763), - [anon_sym_BANG] = ACTIONS(2763), - [anon_sym_go] = ACTIONS(2763), - [anon_sym_spawn] = ACTIONS(2763), - [anon_sym_json_DOTdecode] = ACTIONS(2763), - [anon_sym_LBRACK2] = ACTIONS(2763), - [anon_sym_TILDE] = ACTIONS(2763), - [anon_sym_CARET] = ACTIONS(2763), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_LT_DASH] = ACTIONS(2763), - [anon_sym_LT_LT] = ACTIONS(2763), - [anon_sym_GT_GT] = ACTIONS(2763), - [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(2763), - [sym_none] = ACTIONS(2763), - [sym_true] = ACTIONS(2763), - [sym_false] = ACTIONS(2763), - [sym_nil] = ACTIONS(2763), - [anon_sym_QMARK_DOT] = ACTIONS(2763), - [anon_sym_POUND_LBRACK] = ACTIONS(2763), - [anon_sym_if] = ACTIONS(2763), - [anon_sym_DOLLARif] = ACTIONS(2763), - [anon_sym_is] = ACTIONS(2763), - [anon_sym_BANGis] = ACTIONS(2763), - [anon_sym_in] = ACTIONS(2763), - [anon_sym_BANGin] = ACTIONS(2763), - [anon_sym_match] = ACTIONS(2763), - [anon_sym_select] = ACTIONS(2763), - [anon_sym_lock] = ACTIONS(2763), - [anon_sym_rlock] = ACTIONS(2763), - [anon_sym_unsafe] = ACTIONS(2763), - [anon_sym_sql] = ACTIONS(2763), - [sym_int_literal] = ACTIONS(2763), - [sym_float_literal] = ACTIONS(2763), - [sym_rune_literal] = ACTIONS(2763), - [anon_sym_SQUOTE] = ACTIONS(2763), - [anon_sym_DQUOTE] = ACTIONS(2763), - [anon_sym_c_SQUOTE] = ACTIONS(2763), - [anon_sym_c_DQUOTE] = ACTIONS(2763), - [anon_sym_r_SQUOTE] = ACTIONS(2763), - [anon_sym_r_DQUOTE] = ACTIONS(2763), - [sym_pseudo_compile_time_identifier] = ACTIONS(2763), - [anon_sym_shared] = ACTIONS(2763), - [anon_sym_map_LBRACK] = ACTIONS(2763), - [anon_sym_chan] = ACTIONS(2763), - [anon_sym_thread] = ACTIONS(2763), - [anon_sym_atomic] = ACTIONS(2763), - [anon_sym_assert] = ACTIONS(2763), - [anon_sym_defer] = ACTIONS(2763), - [anon_sym_goto] = ACTIONS(2763), - [anon_sym_break] = ACTIONS(2763), - [anon_sym_continue] = ACTIONS(2763), - [anon_sym_return] = ACTIONS(2763), - [anon_sym_DOLLARfor] = ACTIONS(2763), - [anon_sym_for] = ACTIONS(2763), - [anon_sym_POUND] = ACTIONS(2763), - [anon_sym_asm] = ACTIONS(2763), - [anon_sym_AT_LBRACK] = ACTIONS(2763), - }, - [1024] = { - [sym_line_comment] = STATE(1024), - [sym_block_comment] = STATE(1024), [ts_builtin_sym_end] = ACTIONS(2773), [sym_identifier] = ACTIONS(2775), [anon_sym_LF] = ACTIONS(2775), @@ -139792,7 +138978,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(2775), [anon_sym___global] = ACTIONS(2775), [anon_sym_type] = ACTIONS(2775), - [anon_sym_PIPE] = ACTIONS(2775), [anon_sym_fn] = ACTIONS(2775), [anon_sym_PLUS] = ACTIONS(2775), [anon_sym_DASH] = ACTIONS(2775), @@ -139819,6 +139004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(2775), [anon_sym_spawn] = ACTIONS(2775), [anon_sym_json_DOTdecode] = ACTIONS(2775), + [anon_sym_PIPE] = ACTIONS(2775), [anon_sym_LBRACK2] = ACTIONS(2775), [anon_sym_TILDE] = ACTIONS(2775), [anon_sym_CARET] = ACTIONS(2775), @@ -139876,7477 +139062,8701 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(2775), [anon_sym_AT_LBRACK] = ACTIONS(2775), }, + [1014] = { + [sym_line_comment] = STATE(1014), + [sym_block_comment] = STATE(1014), + [ts_builtin_sym_end] = ACTIONS(2699), + [sym_identifier] = ACTIONS(2701), + [anon_sym_LF] = ACTIONS(2701), + [anon_sym_CR] = ACTIONS(2701), + [anon_sym_CR_LF] = ACTIONS(2701), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2701), + [anon_sym_as] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2701), + [anon_sym_COMMA] = ACTIONS(2701), + [anon_sym_const] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(2701), + [anon_sym___global] = ACTIONS(2701), + [anon_sym_type] = ACTIONS(2701), + [anon_sym_fn] = ACTIONS(2701), + [anon_sym_PLUS] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(2701), + [anon_sym_STAR] = ACTIONS(2701), + [anon_sym_SLASH] = ACTIONS(2701), + [anon_sym_PERCENT] = ACTIONS(2701), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_GT] = ACTIONS(2701), + [anon_sym_EQ_EQ] = ACTIONS(2701), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_LT_EQ] = ACTIONS(2701), + [anon_sym_GT_EQ] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_struct] = ACTIONS(2701), + [anon_sym_union] = ACTIONS(2701), + [anon_sym_pub] = ACTIONS(2701), + [anon_sym_mut] = ACTIONS(2701), + [anon_sym_enum] = ACTIONS(2701), + [anon_sym_interface] = ACTIONS(2701), + [anon_sym_PLUS_PLUS] = ACTIONS(2701), + [anon_sym_DASH_DASH] = ACTIONS(2701), + [anon_sym_QMARK] = ACTIONS(2701), + [anon_sym_BANG] = ACTIONS(2701), + [anon_sym_go] = ACTIONS(2701), + [anon_sym_spawn] = ACTIONS(2701), + [anon_sym_json_DOTdecode] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(2701), + [anon_sym_LBRACK2] = ACTIONS(2701), + [anon_sym_TILDE] = ACTIONS(2701), + [anon_sym_CARET] = ACTIONS(2701), + [anon_sym_AMP] = ACTIONS(2701), + [anon_sym_LT_DASH] = ACTIONS(2701), + [anon_sym_LT_LT] = ACTIONS(2701), + [anon_sym_GT_GT] = ACTIONS(2701), + [anon_sym_GT_GT_GT] = ACTIONS(2701), + [anon_sym_AMP_CARET] = ACTIONS(2701), + [anon_sym_AMP_AMP] = ACTIONS(2701), + [anon_sym_PIPE_PIPE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2701), + [sym_none] = ACTIONS(2701), + [sym_true] = ACTIONS(2701), + [sym_false] = ACTIONS(2701), + [sym_nil] = ACTIONS(2701), + [anon_sym_QMARK_DOT] = ACTIONS(2701), + [anon_sym_POUND_LBRACK] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_DOLLARif] = ACTIONS(2701), + [anon_sym_is] = ACTIONS(2701), + [anon_sym_BANGis] = ACTIONS(2701), + [anon_sym_in] = ACTIONS(2701), + [anon_sym_BANGin] = ACTIONS(2701), + [anon_sym_match] = ACTIONS(2701), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2701), + [anon_sym_rlock] = ACTIONS(2701), + [anon_sym_unsafe] = ACTIONS(2701), + [anon_sym_sql] = ACTIONS(2701), + [sym_int_literal] = ACTIONS(2701), + [sym_float_literal] = ACTIONS(2701), + [sym_rune_literal] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE] = ACTIONS(2701), + [anon_sym_c_SQUOTE] = ACTIONS(2701), + [anon_sym_c_DQUOTE] = ACTIONS(2701), + [anon_sym_r_SQUOTE] = ACTIONS(2701), + [anon_sym_r_DQUOTE] = ACTIONS(2701), + [sym_pseudo_compile_time_identifier] = ACTIONS(2701), + [anon_sym_shared] = ACTIONS(2701), + [anon_sym_map_LBRACK] = ACTIONS(2701), + [anon_sym_chan] = ACTIONS(2701), + [anon_sym_thread] = ACTIONS(2701), + [anon_sym_atomic] = ACTIONS(2701), + [anon_sym_assert] = ACTIONS(2701), + [anon_sym_defer] = ACTIONS(2701), + [anon_sym_goto] = ACTIONS(2701), + [anon_sym_break] = ACTIONS(2701), + [anon_sym_continue] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_DOLLARfor] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_POUND] = ACTIONS(2701), + [anon_sym_asm] = ACTIONS(2701), + [anon_sym_AT_LBRACK] = ACTIONS(2701), + }, + [1015] = { + [sym_line_comment] = STATE(1015), + [sym_block_comment] = STATE(1015), + [ts_builtin_sym_end] = ACTIONS(2979), + [sym_identifier] = ACTIONS(2981), + [anon_sym_LF] = ACTIONS(2981), + [anon_sym_CR] = ACTIONS(2981), + [anon_sym_CR_LF] = ACTIONS(2981), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_as] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2981), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_const] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2981), + [anon_sym___global] = ACTIONS(2981), + [anon_sym_type] = ACTIONS(2981), + [anon_sym_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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE] = ACTIONS(2981), + [anon_sym_c_SQUOTE] = ACTIONS(2981), + [anon_sym_c_DQUOTE] = ACTIONS(2981), + [anon_sym_r_SQUOTE] = ACTIONS(2981), + [anon_sym_r_DQUOTE] = 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), + }, + [1016] = { + [sym_line_comment] = STATE(1016), + [sym_block_comment] = STATE(1016), + [ts_builtin_sym_end] = ACTIONS(2329), + [sym_identifier] = ACTIONS(2331), + [anon_sym_LF] = ACTIONS(2331), + [anon_sym_CR] = ACTIONS(2331), + [anon_sym_CR_LF] = ACTIONS(2331), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2331), + [anon_sym_as] = ACTIONS(2331), + [anon_sym_LBRACE] = ACTIONS(2331), + [anon_sym_COMMA] = ACTIONS(2331), + [anon_sym_const] = ACTIONS(2331), + [anon_sym_LPAREN] = ACTIONS(2331), + [anon_sym___global] = ACTIONS(2331), + [anon_sym_type] = ACTIONS(2331), + [anon_sym_fn] = ACTIONS(2331), + [anon_sym_PLUS] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_STAR] = ACTIONS(2331), + [anon_sym_SLASH] = ACTIONS(2331), + [anon_sym_PERCENT] = ACTIONS(2331), + [anon_sym_LT] = ACTIONS(2331), + [anon_sym_GT] = ACTIONS(2331), + [anon_sym_EQ_EQ] = ACTIONS(2331), + [anon_sym_BANG_EQ] = ACTIONS(2331), + [anon_sym_LT_EQ] = ACTIONS(2331), + [anon_sym_GT_EQ] = ACTIONS(2331), + [anon_sym_LBRACK] = ACTIONS(2329), + [anon_sym_struct] = ACTIONS(2331), + [anon_sym_union] = ACTIONS(2331), + [anon_sym_pub] = ACTIONS(2331), + [anon_sym_mut] = ACTIONS(2331), + [anon_sym_enum] = ACTIONS(2331), + [anon_sym_interface] = ACTIONS(2331), + [anon_sym_PLUS_PLUS] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2331), + [anon_sym_QMARK] = ACTIONS(2331), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_go] = ACTIONS(2331), + [anon_sym_spawn] = ACTIONS(2331), + [anon_sym_json_DOTdecode] = ACTIONS(2331), + [anon_sym_PIPE] = ACTIONS(2331), + [anon_sym_LBRACK2] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_CARET] = ACTIONS(2331), + [anon_sym_AMP] = ACTIONS(2331), + [anon_sym_LT_DASH] = ACTIONS(2331), + [anon_sym_LT_LT] = ACTIONS(2331), + [anon_sym_GT_GT] = ACTIONS(2331), + [anon_sym_GT_GT_GT] = ACTIONS(2331), + [anon_sym_AMP_CARET] = ACTIONS(2331), + [anon_sym_AMP_AMP] = ACTIONS(2331), + [anon_sym_PIPE_PIPE] = ACTIONS(2331), + [anon_sym_or] = ACTIONS(2331), + [sym_none] = ACTIONS(2331), + [sym_true] = ACTIONS(2331), + [sym_false] = ACTIONS(2331), + [sym_nil] = ACTIONS(2331), + [anon_sym_QMARK_DOT] = ACTIONS(2331), + [anon_sym_POUND_LBRACK] = ACTIONS(2331), + [anon_sym_if] = ACTIONS(2331), + [anon_sym_DOLLARif] = ACTIONS(2331), + [anon_sym_is] = ACTIONS(2331), + [anon_sym_BANGis] = ACTIONS(2331), + [anon_sym_in] = ACTIONS(2331), + [anon_sym_BANGin] = ACTIONS(2331), + [anon_sym_match] = ACTIONS(2331), + [anon_sym_select] = ACTIONS(2331), + [anon_sym_lock] = ACTIONS(2331), + [anon_sym_rlock] = ACTIONS(2331), + [anon_sym_unsafe] = ACTIONS(2331), + [anon_sym_sql] = ACTIONS(2331), + [sym_int_literal] = ACTIONS(2331), + [sym_float_literal] = ACTIONS(2331), + [sym_rune_literal] = ACTIONS(2331), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_DQUOTE] = ACTIONS(2331), + [anon_sym_c_SQUOTE] = ACTIONS(2331), + [anon_sym_c_DQUOTE] = ACTIONS(2331), + [anon_sym_r_SQUOTE] = ACTIONS(2331), + [anon_sym_r_DQUOTE] = ACTIONS(2331), + [sym_pseudo_compile_time_identifier] = ACTIONS(2331), + [anon_sym_shared] = ACTIONS(2331), + [anon_sym_map_LBRACK] = ACTIONS(2331), + [anon_sym_chan] = ACTIONS(2331), + [anon_sym_thread] = ACTIONS(2331), + [anon_sym_atomic] = ACTIONS(2331), + [anon_sym_assert] = ACTIONS(2331), + [anon_sym_defer] = ACTIONS(2331), + [anon_sym_goto] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(2331), + [anon_sym_continue] = ACTIONS(2331), + [anon_sym_return] = ACTIONS(2331), + [anon_sym_DOLLARfor] = ACTIONS(2331), + [anon_sym_for] = ACTIONS(2331), + [anon_sym_POUND] = ACTIONS(2331), + [anon_sym_asm] = ACTIONS(2331), + [anon_sym_AT_LBRACK] = ACTIONS(2331), + }, + [1017] = { + [sym_line_comment] = STATE(1017), + [sym_block_comment] = STATE(1017), + [ts_builtin_sym_end] = ACTIONS(2313), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LF] = ACTIONS(2315), + [anon_sym_CR] = ACTIONS(2315), + [anon_sym_CR_LF] = ACTIONS(2315), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2315), + [anon_sym_as] = ACTIONS(2315), + [anon_sym_LBRACE] = ACTIONS(2315), + [anon_sym_COMMA] = ACTIONS(2315), + [anon_sym_const] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym___global] = ACTIONS(2315), + [anon_sym_type] = ACTIONS(2315), + [anon_sym_fn] = ACTIONS(2315), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2315), + [anon_sym_SLASH] = ACTIONS(2315), + [anon_sym_PERCENT] = ACTIONS(2315), + [anon_sym_LT] = ACTIONS(2315), + [anon_sym_GT] = ACTIONS(2315), + [anon_sym_EQ_EQ] = ACTIONS(2315), + [anon_sym_BANG_EQ] = ACTIONS(2315), + [anon_sym_LT_EQ] = ACTIONS(2315), + [anon_sym_GT_EQ] = ACTIONS(2315), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_struct] = ACTIONS(2315), + [anon_sym_union] = ACTIONS(2315), + [anon_sym_pub] = ACTIONS(2315), + [anon_sym_mut] = ACTIONS(2315), + [anon_sym_enum] = ACTIONS(2315), + [anon_sym_interface] = ACTIONS(2315), + [anon_sym_PLUS_PLUS] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2315), + [anon_sym_QMARK] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_go] = ACTIONS(2315), + [anon_sym_spawn] = ACTIONS(2315), + [anon_sym_json_DOTdecode] = ACTIONS(2315), + [anon_sym_PIPE] = ACTIONS(2315), + [anon_sym_LBRACK2] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_CARET] = ACTIONS(2315), + [anon_sym_AMP] = ACTIONS(2315), + [anon_sym_LT_DASH] = ACTIONS(2315), + [anon_sym_LT_LT] = ACTIONS(2315), + [anon_sym_GT_GT] = ACTIONS(2315), + [anon_sym_GT_GT_GT] = ACTIONS(2315), + [anon_sym_AMP_CARET] = ACTIONS(2315), + [anon_sym_AMP_AMP] = ACTIONS(2315), + [anon_sym_PIPE_PIPE] = ACTIONS(2315), + [anon_sym_or] = ACTIONS(2315), + [sym_none] = ACTIONS(2315), + [sym_true] = ACTIONS(2315), + [sym_false] = ACTIONS(2315), + [sym_nil] = ACTIONS(2315), + [anon_sym_QMARK_DOT] = ACTIONS(2315), + [anon_sym_POUND_LBRACK] = ACTIONS(2315), + [anon_sym_if] = ACTIONS(2315), + [anon_sym_DOLLARif] = ACTIONS(2315), + [anon_sym_is] = ACTIONS(2315), + [anon_sym_BANGis] = ACTIONS(2315), + [anon_sym_in] = ACTIONS(2315), + [anon_sym_BANGin] = ACTIONS(2315), + [anon_sym_match] = ACTIONS(2315), + [anon_sym_select] = ACTIONS(2315), + [anon_sym_lock] = ACTIONS(2315), + [anon_sym_rlock] = ACTIONS(2315), + [anon_sym_unsafe] = ACTIONS(2315), + [anon_sym_sql] = ACTIONS(2315), + [sym_int_literal] = ACTIONS(2315), + [sym_float_literal] = ACTIONS(2315), + [sym_rune_literal] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_DQUOTE] = ACTIONS(2315), + [anon_sym_c_SQUOTE] = ACTIONS(2315), + [anon_sym_c_DQUOTE] = ACTIONS(2315), + [anon_sym_r_SQUOTE] = ACTIONS(2315), + [anon_sym_r_DQUOTE] = ACTIONS(2315), + [sym_pseudo_compile_time_identifier] = ACTIONS(2315), + [anon_sym_shared] = ACTIONS(2315), + [anon_sym_map_LBRACK] = ACTIONS(2315), + [anon_sym_chan] = ACTIONS(2315), + [anon_sym_thread] = ACTIONS(2315), + [anon_sym_atomic] = ACTIONS(2315), + [anon_sym_assert] = ACTIONS(2315), + [anon_sym_defer] = ACTIONS(2315), + [anon_sym_goto] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(2315), + [anon_sym_continue] = ACTIONS(2315), + [anon_sym_return] = ACTIONS(2315), + [anon_sym_DOLLARfor] = ACTIONS(2315), + [anon_sym_for] = ACTIONS(2315), + [anon_sym_POUND] = ACTIONS(2315), + [anon_sym_asm] = ACTIONS(2315), + [anon_sym_AT_LBRACK] = ACTIONS(2315), + }, + [1018] = { + [sym_line_comment] = STATE(1018), + [sym_block_comment] = STATE(1018), + [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_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_fn] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_SLASH] = 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_PIPE] = 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_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), + [anon_sym_SQUOTE] = ACTIONS(2449), + [anon_sym_DQUOTE] = ACTIONS(2449), + [anon_sym_c_SQUOTE] = ACTIONS(2449), + [anon_sym_c_DQUOTE] = ACTIONS(2449), + [anon_sym_r_SQUOTE] = ACTIONS(2449), + [anon_sym_r_DQUOTE] = 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), + }, + [1019] = { + [sym_line_comment] = STATE(1019), + [sym_block_comment] = STATE(1019), + [ts_builtin_sym_end] = ACTIONS(2681), + [sym_identifier] = ACTIONS(2683), + [anon_sym_LF] = ACTIONS(2683), + [anon_sym_CR] = ACTIONS(2683), + [anon_sym_CR_LF] = ACTIONS(2683), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2683), + [anon_sym_as] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_COMMA] = ACTIONS(2683), + [anon_sym_const] = ACTIONS(2683), + [anon_sym_LPAREN] = ACTIONS(2683), + [anon_sym___global] = ACTIONS(2683), + [anon_sym_type] = ACTIONS(2683), + [anon_sym_fn] = ACTIONS(2683), + [anon_sym_PLUS] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(2683), + [anon_sym_SLASH] = ACTIONS(2683), + [anon_sym_PERCENT] = ACTIONS(2683), + [anon_sym_LT] = ACTIONS(2683), + [anon_sym_GT] = ACTIONS(2683), + [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(2681), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2683), + [anon_sym_pub] = ACTIONS(2683), + [anon_sym_mut] = ACTIONS(2683), + [anon_sym_enum] = ACTIONS(2683), + [anon_sym_interface] = ACTIONS(2683), + [anon_sym_PLUS_PLUS] = ACTIONS(2683), + [anon_sym_DASH_DASH] = ACTIONS(2683), + [anon_sym_QMARK] = ACTIONS(2683), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_go] = ACTIONS(2683), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(2683), + [anon_sym_PIPE] = ACTIONS(2683), + [anon_sym_LBRACK2] = ACTIONS(2683), + [anon_sym_TILDE] = ACTIONS(2683), + [anon_sym_CARET] = ACTIONS(2683), + [anon_sym_AMP] = ACTIONS(2683), + [anon_sym_LT_DASH] = ACTIONS(2683), + [anon_sym_LT_LT] = ACTIONS(2683), + [anon_sym_GT_GT] = ACTIONS(2683), + [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(2683), + [sym_none] = ACTIONS(2683), + [sym_true] = ACTIONS(2683), + [sym_false] = ACTIONS(2683), + [sym_nil] = ACTIONS(2683), + [anon_sym_QMARK_DOT] = ACTIONS(2683), + [anon_sym_POUND_LBRACK] = ACTIONS(2683), + [anon_sym_if] = ACTIONS(2683), + [anon_sym_DOLLARif] = ACTIONS(2683), + [anon_sym_is] = ACTIONS(2683), + [anon_sym_BANGis] = ACTIONS(2683), + [anon_sym_in] = ACTIONS(2683), + [anon_sym_BANGin] = ACTIONS(2683), + [anon_sym_match] = ACTIONS(2683), + [anon_sym_select] = ACTIONS(2683), + [anon_sym_lock] = ACTIONS(2683), + [anon_sym_rlock] = ACTIONS(2683), + [anon_sym_unsafe] = ACTIONS(2683), + [anon_sym_sql] = ACTIONS(2683), + [sym_int_literal] = ACTIONS(2683), + [sym_float_literal] = ACTIONS(2683), + [sym_rune_literal] = ACTIONS(2683), + [anon_sym_SQUOTE] = ACTIONS(2683), + [anon_sym_DQUOTE] = ACTIONS(2683), + [anon_sym_c_SQUOTE] = ACTIONS(2683), + [anon_sym_c_DQUOTE] = ACTIONS(2683), + [anon_sym_r_SQUOTE] = ACTIONS(2683), + [anon_sym_r_DQUOTE] = ACTIONS(2683), + [sym_pseudo_compile_time_identifier] = ACTIONS(2683), + [anon_sym_shared] = ACTIONS(2683), + [anon_sym_map_LBRACK] = ACTIONS(2683), + [anon_sym_chan] = ACTIONS(2683), + [anon_sym_thread] = ACTIONS(2683), + [anon_sym_atomic] = ACTIONS(2683), + [anon_sym_assert] = ACTIONS(2683), + [anon_sym_defer] = ACTIONS(2683), + [anon_sym_goto] = ACTIONS(2683), + [anon_sym_break] = ACTIONS(2683), + [anon_sym_continue] = ACTIONS(2683), + [anon_sym_return] = ACTIONS(2683), + [anon_sym_DOLLARfor] = ACTIONS(2683), + [anon_sym_for] = ACTIONS(2683), + [anon_sym_POUND] = ACTIONS(2683), + [anon_sym_asm] = ACTIONS(2683), + [anon_sym_AT_LBRACK] = ACTIONS(2683), + }, + [1020] = { + [sym_line_comment] = STATE(1020), + [sym_block_comment] = STATE(1020), + [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_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_fn] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_SLASH] = 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_PIPE] = 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_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), + [anon_sym_SQUOTE] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2457), + [anon_sym_c_SQUOTE] = ACTIONS(2457), + [anon_sym_c_DQUOTE] = ACTIONS(2457), + [anon_sym_r_SQUOTE] = ACTIONS(2457), + [anon_sym_r_DQUOTE] = 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), + }, + [1021] = { + [sym_line_comment] = STATE(1021), + [sym_block_comment] = STATE(1021), + [ts_builtin_sym_end] = ACTIONS(2463), + [sym_identifier] = ACTIONS(2465), + [anon_sym_LF] = ACTIONS(2465), + [anon_sym_CR] = ACTIONS(2465), + [anon_sym_CR_LF] = ACTIONS(2465), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2465), + [anon_sym_as] = ACTIONS(2465), + [anon_sym_LBRACE] = ACTIONS(2465), + [anon_sym_COMMA] = ACTIONS(2465), + [anon_sym_const] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym___global] = ACTIONS(2465), + [anon_sym_type] = ACTIONS(2465), + [anon_sym_fn] = ACTIONS(2465), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_SLASH] = ACTIONS(2465), + [anon_sym_PERCENT] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_EQ_EQ] = ACTIONS(2465), + [anon_sym_BANG_EQ] = ACTIONS(2465), + [anon_sym_LT_EQ] = ACTIONS(2465), + [anon_sym_GT_EQ] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_struct] = ACTIONS(2465), + [anon_sym_union] = ACTIONS(2465), + [anon_sym_pub] = ACTIONS(2465), + [anon_sym_mut] = ACTIONS(2465), + [anon_sym_enum] = ACTIONS(2465), + [anon_sym_interface] = ACTIONS(2465), + [anon_sym_PLUS_PLUS] = ACTIONS(2465), + [anon_sym_DASH_DASH] = ACTIONS(2465), + [anon_sym_QMARK] = ACTIONS(2465), + [anon_sym_BANG] = ACTIONS(2465), + [anon_sym_go] = ACTIONS(2465), + [anon_sym_spawn] = ACTIONS(2465), + [anon_sym_json_DOTdecode] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(2465), + [anon_sym_LBRACK2] = ACTIONS(2465), + [anon_sym_TILDE] = ACTIONS(2465), + [anon_sym_CARET] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2465), + [anon_sym_LT_DASH] = ACTIONS(2465), + [anon_sym_LT_LT] = ACTIONS(2465), + [anon_sym_GT_GT] = ACTIONS(2465), + [anon_sym_GT_GT_GT] = ACTIONS(2465), + [anon_sym_AMP_CARET] = ACTIONS(2465), + [anon_sym_AMP_AMP] = ACTIONS(2465), + [anon_sym_PIPE_PIPE] = ACTIONS(2465), + [anon_sym_or] = ACTIONS(2465), + [sym_none] = ACTIONS(2465), + [sym_true] = ACTIONS(2465), + [sym_false] = ACTIONS(2465), + [sym_nil] = ACTIONS(2465), + [anon_sym_QMARK_DOT] = ACTIONS(2465), + [anon_sym_POUND_LBRACK] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_DOLLARif] = ACTIONS(2465), + [anon_sym_is] = ACTIONS(2465), + [anon_sym_BANGis] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(2465), + [anon_sym_BANGin] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_lock] = ACTIONS(2465), + [anon_sym_rlock] = ACTIONS(2465), + [anon_sym_unsafe] = ACTIONS(2465), + [anon_sym_sql] = ACTIONS(2465), + [sym_int_literal] = ACTIONS(2465), + [sym_float_literal] = ACTIONS(2465), + [sym_rune_literal] = ACTIONS(2465), + [anon_sym_SQUOTE] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(2465), + [anon_sym_c_SQUOTE] = ACTIONS(2465), + [anon_sym_c_DQUOTE] = ACTIONS(2465), + [anon_sym_r_SQUOTE] = ACTIONS(2465), + [anon_sym_r_DQUOTE] = ACTIONS(2465), + [sym_pseudo_compile_time_identifier] = ACTIONS(2465), + [anon_sym_shared] = ACTIONS(2465), + [anon_sym_map_LBRACK] = ACTIONS(2465), + [anon_sym_chan] = ACTIONS(2465), + [anon_sym_thread] = ACTIONS(2465), + [anon_sym_atomic] = ACTIONS(2465), + [anon_sym_assert] = ACTIONS(2465), + [anon_sym_defer] = ACTIONS(2465), + [anon_sym_goto] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_DOLLARfor] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_POUND] = ACTIONS(2465), + [anon_sym_asm] = ACTIONS(2465), + [anon_sym_AT_LBRACK] = ACTIONS(2465), + }, + [1022] = { + [sym_line_comment] = STATE(1022), + [sym_block_comment] = STATE(1022), + [ts_builtin_sym_end] = ACTIONS(2497), + [sym_identifier] = ACTIONS(2499), + [anon_sym_LF] = ACTIONS(2499), + [anon_sym_CR] = ACTIONS(2499), + [anon_sym_CR_LF] = ACTIONS(2499), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2499), + [anon_sym_as] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_COMMA] = ACTIONS(2499), + [anon_sym_const] = ACTIONS(2499), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym___global] = ACTIONS(2499), + [anon_sym_type] = ACTIONS(2499), + [anon_sym_fn] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(2499), + [anon_sym_SLASH] = ACTIONS(2499), + [anon_sym_PERCENT] = ACTIONS(2499), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(2499), + [anon_sym_EQ_EQ] = ACTIONS(2499), + [anon_sym_BANG_EQ] = ACTIONS(2499), + [anon_sym_LT_EQ] = ACTIONS(2499), + [anon_sym_GT_EQ] = ACTIONS(2499), + [anon_sym_LBRACK] = ACTIONS(2497), + [anon_sym_struct] = ACTIONS(2499), + [anon_sym_union] = ACTIONS(2499), + [anon_sym_pub] = ACTIONS(2499), + [anon_sym_mut] = ACTIONS(2499), + [anon_sym_enum] = ACTIONS(2499), + [anon_sym_interface] = ACTIONS(2499), + [anon_sym_PLUS_PLUS] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(2499), + [anon_sym_QMARK] = ACTIONS(2499), + [anon_sym_BANG] = ACTIONS(3608), + [anon_sym_go] = ACTIONS(2499), + [anon_sym_spawn] = ACTIONS(2499), + [anon_sym_json_DOTdecode] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_LBRACK2] = ACTIONS(2499), + [anon_sym_TILDE] = ACTIONS(2499), + [anon_sym_CARET] = ACTIONS(2499), + [anon_sym_AMP] = ACTIONS(2499), + [anon_sym_LT_DASH] = ACTIONS(2499), + [anon_sym_LT_LT] = ACTIONS(2499), + [anon_sym_GT_GT] = ACTIONS(2499), + [anon_sym_GT_GT_GT] = ACTIONS(2499), + [anon_sym_AMP_CARET] = ACTIONS(2499), + [anon_sym_AMP_AMP] = ACTIONS(2499), + [anon_sym_PIPE_PIPE] = ACTIONS(2499), + [anon_sym_or] = ACTIONS(2499), + [sym_none] = ACTIONS(2499), + [sym_true] = ACTIONS(2499), + [sym_false] = ACTIONS(2499), + [sym_nil] = ACTIONS(2499), + [anon_sym_QMARK_DOT] = ACTIONS(2499), + [anon_sym_POUND_LBRACK] = ACTIONS(2499), + [anon_sym_if] = ACTIONS(2499), + [anon_sym_DOLLARif] = ACTIONS(2499), + [anon_sym_is] = ACTIONS(2499), + [anon_sym_BANGis] = ACTIONS(2499), + [anon_sym_in] = ACTIONS(2499), + [anon_sym_BANGin] = ACTIONS(2499), + [anon_sym_match] = ACTIONS(2499), + [anon_sym_select] = ACTIONS(2499), + [anon_sym_lock] = ACTIONS(2499), + [anon_sym_rlock] = ACTIONS(2499), + [anon_sym_unsafe] = ACTIONS(2499), + [anon_sym_sql] = ACTIONS(2499), + [sym_int_literal] = ACTIONS(2499), + [sym_float_literal] = ACTIONS(2499), + [sym_rune_literal] = ACTIONS(2499), + [anon_sym_SQUOTE] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(2499), + [anon_sym_c_SQUOTE] = ACTIONS(2499), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2499), + [anon_sym_r_DQUOTE] = ACTIONS(2499), + [sym_pseudo_compile_time_identifier] = ACTIONS(2499), + [anon_sym_shared] = ACTIONS(2499), + [anon_sym_map_LBRACK] = ACTIONS(2499), + [anon_sym_chan] = ACTIONS(2499), + [anon_sym_thread] = ACTIONS(2499), + [anon_sym_atomic] = ACTIONS(2499), + [anon_sym_assert] = ACTIONS(2499), + [anon_sym_defer] = ACTIONS(2499), + [anon_sym_goto] = ACTIONS(2499), + [anon_sym_break] = ACTIONS(2499), + [anon_sym_continue] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_DOLLARfor] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(2499), + [anon_sym_asm] = ACTIONS(2499), + [anon_sym_AT_LBRACK] = ACTIONS(2499), + }, + [1023] = { + [sym_line_comment] = STATE(1023), + [sym_block_comment] = STATE(1023), + [ts_builtin_sym_end] = ACTIONS(2619), + [sym_identifier] = ACTIONS(2621), + [anon_sym_LF] = ACTIONS(2621), + [anon_sym_CR] = ACTIONS(2621), + [anon_sym_CR_LF] = ACTIONS(2621), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2621), + [anon_sym_as] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_COMMA] = ACTIONS(2621), + [anon_sym_const] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym___global] = ACTIONS(2621), + [anon_sym_type] = ACTIONS(2621), + [anon_sym_fn] = ACTIONS(2621), + [anon_sym_PLUS] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_SLASH] = ACTIONS(2621), + [anon_sym_PERCENT] = ACTIONS(2621), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_GT] = ACTIONS(2621), + [anon_sym_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_EQ] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_struct] = ACTIONS(2621), + [anon_sym_union] = ACTIONS(2621), + [anon_sym_pub] = ACTIONS(2621), + [anon_sym_mut] = ACTIONS(2621), + [anon_sym_enum] = ACTIONS(2621), + [anon_sym_interface] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_QMARK] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_go] = ACTIONS(2621), + [anon_sym_spawn] = ACTIONS(2621), + [anon_sym_json_DOTdecode] = ACTIONS(2621), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_LBRACK2] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_LT_DASH] = ACTIONS(2621), + [anon_sym_LT_LT] = ACTIONS(2621), + [anon_sym_GT_GT] = ACTIONS(2621), + [anon_sym_GT_GT_GT] = ACTIONS(2621), + [anon_sym_AMP_CARET] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2621), + [sym_none] = ACTIONS(2621), + [sym_true] = ACTIONS(2621), + [sym_false] = ACTIONS(2621), + [sym_nil] = ACTIONS(2621), + [anon_sym_QMARK_DOT] = ACTIONS(2621), + [anon_sym_POUND_LBRACK] = ACTIONS(2621), + [anon_sym_if] = ACTIONS(2621), + [anon_sym_DOLLARif] = ACTIONS(2621), + [anon_sym_is] = ACTIONS(2621), + [anon_sym_BANGis] = ACTIONS(2621), + [anon_sym_in] = ACTIONS(2621), + [anon_sym_BANGin] = ACTIONS(2621), + [anon_sym_match] = ACTIONS(2621), + [anon_sym_select] = ACTIONS(2621), + [anon_sym_lock] = ACTIONS(2621), + [anon_sym_rlock] = ACTIONS(2621), + [anon_sym_unsafe] = ACTIONS(2621), + [anon_sym_sql] = ACTIONS(2621), + [sym_int_literal] = ACTIONS(2621), + [sym_float_literal] = ACTIONS(2621), + [sym_rune_literal] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [anon_sym_c_SQUOTE] = ACTIONS(2621), + [anon_sym_c_DQUOTE] = ACTIONS(2621), + [anon_sym_r_SQUOTE] = ACTIONS(2621), + [anon_sym_r_DQUOTE] = ACTIONS(2621), + [sym_pseudo_compile_time_identifier] = ACTIONS(2621), + [anon_sym_shared] = ACTIONS(2621), + [anon_sym_map_LBRACK] = ACTIONS(2621), + [anon_sym_chan] = ACTIONS(2621), + [anon_sym_thread] = ACTIONS(2621), + [anon_sym_atomic] = ACTIONS(2621), + [anon_sym_assert] = ACTIONS(2621), + [anon_sym_defer] = ACTIONS(2621), + [anon_sym_goto] = ACTIONS(2621), + [anon_sym_break] = ACTIONS(2621), + [anon_sym_continue] = ACTIONS(2621), + [anon_sym_return] = ACTIONS(2621), + [anon_sym_DOLLARfor] = ACTIONS(2621), + [anon_sym_for] = ACTIONS(2621), + [anon_sym_POUND] = ACTIONS(2621), + [anon_sym_asm] = ACTIONS(2621), + [anon_sym_AT_LBRACK] = ACTIONS(2621), + }, + [1024] = { + [sym_line_comment] = STATE(1024), + [sym_block_comment] = STATE(1024), + [ts_builtin_sym_end] = ACTIONS(2721), + [sym_identifier] = ACTIONS(2723), + [anon_sym_LF] = ACTIONS(2723), + [anon_sym_CR] = ACTIONS(2723), + [anon_sym_CR_LF] = ACTIONS(2723), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2723), + [anon_sym_as] = ACTIONS(2723), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_COMMA] = ACTIONS(2723), + [anon_sym_const] = ACTIONS(2723), + [anon_sym_LPAREN] = ACTIONS(2723), + [anon_sym___global] = ACTIONS(2723), + [anon_sym_type] = ACTIONS(2723), + [anon_sym_fn] = ACTIONS(2723), + [anon_sym_PLUS] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2723), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_SLASH] = ACTIONS(2723), + [anon_sym_PERCENT] = ACTIONS(2723), + [anon_sym_LT] = ACTIONS(2723), + [anon_sym_GT] = ACTIONS(2723), + [anon_sym_EQ_EQ] = ACTIONS(2723), + [anon_sym_BANG_EQ] = ACTIONS(2723), + [anon_sym_LT_EQ] = ACTIONS(2723), + [anon_sym_GT_EQ] = ACTIONS(2723), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2723), + [anon_sym_union] = ACTIONS(2723), + [anon_sym_pub] = ACTIONS(2723), + [anon_sym_mut] = ACTIONS(2723), + [anon_sym_enum] = ACTIONS(2723), + [anon_sym_interface] = ACTIONS(2723), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_QMARK] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_go] = ACTIONS(2723), + [anon_sym_spawn] = ACTIONS(2723), + [anon_sym_json_DOTdecode] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2723), + [anon_sym_LBRACK2] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_CARET] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_LT_DASH] = ACTIONS(2723), + [anon_sym_LT_LT] = ACTIONS(2723), + [anon_sym_GT_GT] = ACTIONS(2723), + [anon_sym_GT_GT_GT] = ACTIONS(2723), + [anon_sym_AMP_CARET] = ACTIONS(2723), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_PIPE_PIPE] = ACTIONS(2723), + [anon_sym_or] = ACTIONS(2723), + [sym_none] = ACTIONS(2723), + [sym_true] = ACTIONS(2723), + [sym_false] = ACTIONS(2723), + [sym_nil] = ACTIONS(2723), + [anon_sym_QMARK_DOT] = ACTIONS(2723), + [anon_sym_POUND_LBRACK] = ACTIONS(2723), + [anon_sym_if] = ACTIONS(2723), + [anon_sym_DOLLARif] = ACTIONS(2723), + [anon_sym_is] = ACTIONS(2723), + [anon_sym_BANGis] = ACTIONS(2723), + [anon_sym_in] = ACTIONS(2723), + [anon_sym_BANGin] = ACTIONS(2723), + [anon_sym_match] = ACTIONS(2723), + [anon_sym_select] = ACTIONS(2723), + [anon_sym_lock] = ACTIONS(2723), + [anon_sym_rlock] = ACTIONS(2723), + [anon_sym_unsafe] = ACTIONS(2723), + [anon_sym_sql] = ACTIONS(2723), + [sym_int_literal] = ACTIONS(2723), + [sym_float_literal] = ACTIONS(2723), + [sym_rune_literal] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2723), + [anon_sym_c_SQUOTE] = ACTIONS(2723), + [anon_sym_c_DQUOTE] = ACTIONS(2723), + [anon_sym_r_SQUOTE] = ACTIONS(2723), + [anon_sym_r_DQUOTE] = ACTIONS(2723), + [sym_pseudo_compile_time_identifier] = ACTIONS(2723), + [anon_sym_shared] = ACTIONS(2723), + [anon_sym_map_LBRACK] = ACTIONS(2723), + [anon_sym_chan] = ACTIONS(2723), + [anon_sym_thread] = ACTIONS(2723), + [anon_sym_atomic] = ACTIONS(2723), + [anon_sym_assert] = ACTIONS(2723), + [anon_sym_defer] = ACTIONS(2723), + [anon_sym_goto] = ACTIONS(2723), + [anon_sym_break] = ACTIONS(2723), + [anon_sym_continue] = ACTIONS(2723), + [anon_sym_return] = ACTIONS(2723), + [anon_sym_DOLLARfor] = ACTIONS(2723), + [anon_sym_for] = ACTIONS(2723), + [anon_sym_POUND] = ACTIONS(2723), + [anon_sym_asm] = ACTIONS(2723), + [anon_sym_AT_LBRACK] = ACTIONS(2723), + }, [1025] = { [sym_line_comment] = STATE(1025), [sym_block_comment] = STATE(1025), - [ts_builtin_sym_end] = ACTIONS(2777), - [sym_identifier] = ACTIONS(2779), - [anon_sym_LF] = ACTIONS(2779), - [anon_sym_CR] = ACTIONS(2779), - [anon_sym_CR_LF] = ACTIONS(2779), + [ts_builtin_sym_end] = ACTIONS(2747), + [sym_identifier] = ACTIONS(2749), + [anon_sym_LF] = ACTIONS(2749), + [anon_sym_CR] = ACTIONS(2749), + [anon_sym_CR_LF] = ACTIONS(2749), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2779), - [anon_sym_as] = ACTIONS(2779), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_COMMA] = ACTIONS(2779), - [anon_sym_const] = ACTIONS(2779), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym___global] = ACTIONS(2779), - [anon_sym_type] = ACTIONS(2779), - [anon_sym_PIPE] = ACTIONS(2779), - [anon_sym_fn] = ACTIONS(2779), - [anon_sym_PLUS] = ACTIONS(2779), - [anon_sym_DASH] = ACTIONS(2779), - [anon_sym_STAR] = ACTIONS(2779), - [anon_sym_SLASH] = ACTIONS(2779), - [anon_sym_PERCENT] = ACTIONS(2779), - [anon_sym_LT] = ACTIONS(2779), - [anon_sym_GT] = ACTIONS(2779), - [anon_sym_EQ_EQ] = ACTIONS(2779), - [anon_sym_BANG_EQ] = ACTIONS(2779), - [anon_sym_LT_EQ] = ACTIONS(2779), - [anon_sym_GT_EQ] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2779), - [anon_sym_union] = ACTIONS(2779), - [anon_sym_pub] = ACTIONS(2779), - [anon_sym_mut] = ACTIONS(2779), - [anon_sym_enum] = ACTIONS(2779), - [anon_sym_interface] = ACTIONS(2779), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_QMARK] = ACTIONS(2779), - [anon_sym_BANG] = ACTIONS(2779), - [anon_sym_go] = ACTIONS(2779), - [anon_sym_spawn] = ACTIONS(2779), - [anon_sym_json_DOTdecode] = ACTIONS(2779), - [anon_sym_LBRACK2] = ACTIONS(2779), - [anon_sym_TILDE] = ACTIONS(2779), - [anon_sym_CARET] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2779), - [anon_sym_LT_DASH] = ACTIONS(2779), - [anon_sym_LT_LT] = ACTIONS(2779), - [anon_sym_GT_GT] = ACTIONS(2779), - [anon_sym_GT_GT_GT] = ACTIONS(2779), - [anon_sym_AMP_CARET] = ACTIONS(2779), - [anon_sym_AMP_AMP] = ACTIONS(2779), - [anon_sym_PIPE_PIPE] = ACTIONS(2779), - [anon_sym_or] = ACTIONS(2779), - [sym_none] = ACTIONS(2779), - [sym_true] = ACTIONS(2779), - [sym_false] = ACTIONS(2779), - [sym_nil] = ACTIONS(2779), - [anon_sym_QMARK_DOT] = ACTIONS(2779), - [anon_sym_POUND_LBRACK] = ACTIONS(2779), - [anon_sym_if] = ACTIONS(2779), - [anon_sym_DOLLARif] = ACTIONS(2779), - [anon_sym_is] = ACTIONS(2779), - [anon_sym_BANGis] = ACTIONS(2779), - [anon_sym_in] = ACTIONS(2779), - [anon_sym_BANGin] = ACTIONS(2779), - [anon_sym_match] = ACTIONS(2779), - [anon_sym_select] = ACTIONS(2779), - [anon_sym_lock] = ACTIONS(2779), - [anon_sym_rlock] = ACTIONS(2779), - [anon_sym_unsafe] = ACTIONS(2779), - [anon_sym_sql] = ACTIONS(2779), - [sym_int_literal] = ACTIONS(2779), - [sym_float_literal] = ACTIONS(2779), - [sym_rune_literal] = ACTIONS(2779), - [anon_sym_SQUOTE] = ACTIONS(2779), - [anon_sym_DQUOTE] = ACTIONS(2779), - [anon_sym_c_SQUOTE] = ACTIONS(2779), - [anon_sym_c_DQUOTE] = ACTIONS(2779), - [anon_sym_r_SQUOTE] = ACTIONS(2779), - [anon_sym_r_DQUOTE] = ACTIONS(2779), - [sym_pseudo_compile_time_identifier] = ACTIONS(2779), - [anon_sym_shared] = ACTIONS(2779), - [anon_sym_map_LBRACK] = ACTIONS(2779), - [anon_sym_chan] = ACTIONS(2779), - [anon_sym_thread] = ACTIONS(2779), - [anon_sym_atomic] = ACTIONS(2779), - [anon_sym_assert] = ACTIONS(2779), - [anon_sym_defer] = ACTIONS(2779), - [anon_sym_goto] = ACTIONS(2779), - [anon_sym_break] = ACTIONS(2779), - [anon_sym_continue] = ACTIONS(2779), - [anon_sym_return] = ACTIONS(2779), - [anon_sym_DOLLARfor] = ACTIONS(2779), - [anon_sym_for] = ACTIONS(2779), - [anon_sym_POUND] = ACTIONS(2779), - [anon_sym_asm] = ACTIONS(2779), - [anon_sym_AT_LBRACK] = ACTIONS(2779), + [anon_sym_DOT] = ACTIONS(2749), + [anon_sym_as] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(2749), + [anon_sym_COMMA] = ACTIONS(2749), + [anon_sym_const] = ACTIONS(2749), + [anon_sym_LPAREN] = ACTIONS(2749), + [anon_sym___global] = ACTIONS(2749), + [anon_sym_type] = ACTIONS(2749), + [anon_sym_fn] = ACTIONS(2749), + [anon_sym_PLUS] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2749), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_SLASH] = ACTIONS(2749), + [anon_sym_PERCENT] = ACTIONS(2749), + [anon_sym_LT] = ACTIONS(2749), + [anon_sym_GT] = ACTIONS(2749), + [anon_sym_EQ_EQ] = ACTIONS(2749), + [anon_sym_BANG_EQ] = ACTIONS(2749), + [anon_sym_LT_EQ] = ACTIONS(2749), + [anon_sym_GT_EQ] = ACTIONS(2749), + [anon_sym_LBRACK] = ACTIONS(2747), + [anon_sym_struct] = ACTIONS(2749), + [anon_sym_union] = ACTIONS(2749), + [anon_sym_pub] = ACTIONS(2749), + [anon_sym_mut] = ACTIONS(2749), + [anon_sym_enum] = ACTIONS(2749), + [anon_sym_interface] = ACTIONS(2749), + [anon_sym_PLUS_PLUS] = ACTIONS(2749), + [anon_sym_DASH_DASH] = ACTIONS(2749), + [anon_sym_QMARK] = ACTIONS(2749), + [anon_sym_BANG] = ACTIONS(2749), + [anon_sym_go] = ACTIONS(2749), + [anon_sym_spawn] = ACTIONS(2749), + [anon_sym_json_DOTdecode] = ACTIONS(2749), + [anon_sym_PIPE] = ACTIONS(2749), + [anon_sym_LBRACK2] = ACTIONS(2749), + [anon_sym_TILDE] = ACTIONS(2749), + [anon_sym_CARET] = ACTIONS(2749), + [anon_sym_AMP] = ACTIONS(2749), + [anon_sym_LT_DASH] = ACTIONS(2749), + [anon_sym_LT_LT] = ACTIONS(2749), + [anon_sym_GT_GT] = ACTIONS(2749), + [anon_sym_GT_GT_GT] = ACTIONS(2749), + [anon_sym_AMP_CARET] = ACTIONS(2749), + [anon_sym_AMP_AMP] = ACTIONS(2749), + [anon_sym_PIPE_PIPE] = ACTIONS(2749), + [anon_sym_or] = ACTIONS(2749), + [sym_none] = ACTIONS(2749), + [sym_true] = ACTIONS(2749), + [sym_false] = ACTIONS(2749), + [sym_nil] = ACTIONS(2749), + [anon_sym_QMARK_DOT] = ACTIONS(2749), + [anon_sym_POUND_LBRACK] = ACTIONS(2749), + [anon_sym_if] = ACTIONS(2749), + [anon_sym_DOLLARif] = ACTIONS(2749), + [anon_sym_is] = ACTIONS(2749), + [anon_sym_BANGis] = ACTIONS(2749), + [anon_sym_in] = ACTIONS(2749), + [anon_sym_BANGin] = ACTIONS(2749), + [anon_sym_match] = ACTIONS(2749), + [anon_sym_select] = ACTIONS(2749), + [anon_sym_lock] = ACTIONS(2749), + [anon_sym_rlock] = ACTIONS(2749), + [anon_sym_unsafe] = ACTIONS(2749), + [anon_sym_sql] = ACTIONS(2749), + [sym_int_literal] = ACTIONS(2749), + [sym_float_literal] = ACTIONS(2749), + [sym_rune_literal] = ACTIONS(2749), + [anon_sym_SQUOTE] = ACTIONS(2749), + [anon_sym_DQUOTE] = ACTIONS(2749), + [anon_sym_c_SQUOTE] = ACTIONS(2749), + [anon_sym_c_DQUOTE] = ACTIONS(2749), + [anon_sym_r_SQUOTE] = ACTIONS(2749), + [anon_sym_r_DQUOTE] = ACTIONS(2749), + [sym_pseudo_compile_time_identifier] = ACTIONS(2749), + [anon_sym_shared] = ACTIONS(2749), + [anon_sym_map_LBRACK] = ACTIONS(2749), + [anon_sym_chan] = ACTIONS(2749), + [anon_sym_thread] = ACTIONS(2749), + [anon_sym_atomic] = ACTIONS(2749), + [anon_sym_assert] = ACTIONS(2749), + [anon_sym_defer] = ACTIONS(2749), + [anon_sym_goto] = ACTIONS(2749), + [anon_sym_break] = ACTIONS(2749), + [anon_sym_continue] = ACTIONS(2749), + [anon_sym_return] = ACTIONS(2749), + [anon_sym_DOLLARfor] = ACTIONS(2749), + [anon_sym_for] = ACTIONS(2749), + [anon_sym_POUND] = ACTIONS(2749), + [anon_sym_asm] = ACTIONS(2749), + [anon_sym_AT_LBRACK] = ACTIONS(2749), }, [1026] = { [sym_line_comment] = STATE(1026), [sym_block_comment] = STATE(1026), - [ts_builtin_sym_end] = ACTIONS(2815), - [sym_identifier] = ACTIONS(2817), - [anon_sym_LF] = ACTIONS(2817), - [anon_sym_CR] = ACTIONS(2817), - [anon_sym_CR_LF] = ACTIONS(2817), + [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_DOT] = ACTIONS(2817), - [anon_sym_as] = ACTIONS(2817), - [anon_sym_LBRACE] = ACTIONS(2817), - [anon_sym_COMMA] = ACTIONS(2817), - [anon_sym_const] = ACTIONS(2817), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym___global] = ACTIONS(2817), - [anon_sym_type] = ACTIONS(2817), - [anon_sym_PIPE] = ACTIONS(2817), - [anon_sym_fn] = ACTIONS(2817), - [anon_sym_PLUS] = ACTIONS(2817), - [anon_sym_DASH] = ACTIONS(2817), - [anon_sym_STAR] = ACTIONS(2817), - [anon_sym_SLASH] = ACTIONS(2817), - [anon_sym_PERCENT] = ACTIONS(2817), - [anon_sym_LT] = ACTIONS(2817), - [anon_sym_GT] = ACTIONS(2817), - [anon_sym_EQ_EQ] = ACTIONS(2817), - [anon_sym_BANG_EQ] = ACTIONS(2817), - [anon_sym_LT_EQ] = ACTIONS(2817), - [anon_sym_GT_EQ] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(2817), - [anon_sym_union] = ACTIONS(2817), - [anon_sym_pub] = ACTIONS(2817), - [anon_sym_mut] = ACTIONS(2817), - [anon_sym_enum] = ACTIONS(2817), - [anon_sym_interface] = ACTIONS(2817), - [anon_sym_PLUS_PLUS] = ACTIONS(2817), - [anon_sym_DASH_DASH] = ACTIONS(2817), - [anon_sym_QMARK] = ACTIONS(2817), - [anon_sym_BANG] = ACTIONS(2817), - [anon_sym_go] = ACTIONS(2817), - [anon_sym_spawn] = ACTIONS(2817), - [anon_sym_json_DOTdecode] = ACTIONS(2817), - [anon_sym_LBRACK2] = ACTIONS(2817), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_CARET] = ACTIONS(2817), - [anon_sym_AMP] = ACTIONS(2817), - [anon_sym_LT_DASH] = ACTIONS(2817), - [anon_sym_LT_LT] = ACTIONS(2817), - [anon_sym_GT_GT] = ACTIONS(2817), - [anon_sym_GT_GT_GT] = ACTIONS(2817), - [anon_sym_AMP_CARET] = ACTIONS(2817), - [anon_sym_AMP_AMP] = ACTIONS(2817), - [anon_sym_PIPE_PIPE] = ACTIONS(2817), - [anon_sym_or] = ACTIONS(2817), - [sym_none] = ACTIONS(2817), - [sym_true] = ACTIONS(2817), - [sym_false] = ACTIONS(2817), - [sym_nil] = ACTIONS(2817), - [anon_sym_QMARK_DOT] = ACTIONS(2817), - [anon_sym_POUND_LBRACK] = ACTIONS(2817), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_DOLLARif] = ACTIONS(2817), - [anon_sym_is] = ACTIONS(2817), - [anon_sym_BANGis] = ACTIONS(2817), - [anon_sym_in] = ACTIONS(2817), - [anon_sym_BANGin] = ACTIONS(2817), - [anon_sym_match] = ACTIONS(2817), - [anon_sym_select] = ACTIONS(2817), - [anon_sym_lock] = ACTIONS(2817), - [anon_sym_rlock] = ACTIONS(2817), - [anon_sym_unsafe] = ACTIONS(2817), - [anon_sym_sql] = ACTIONS(2817), - [sym_int_literal] = ACTIONS(2817), - [sym_float_literal] = ACTIONS(2817), - [sym_rune_literal] = ACTIONS(2817), - [anon_sym_SQUOTE] = ACTIONS(2817), - [anon_sym_DQUOTE] = ACTIONS(2817), - [anon_sym_c_SQUOTE] = ACTIONS(2817), - [anon_sym_c_DQUOTE] = ACTIONS(2817), - [anon_sym_r_SQUOTE] = ACTIONS(2817), - [anon_sym_r_DQUOTE] = ACTIONS(2817), - [sym_pseudo_compile_time_identifier] = ACTIONS(2817), - [anon_sym_shared] = ACTIONS(2817), - [anon_sym_map_LBRACK] = ACTIONS(2817), - [anon_sym_chan] = ACTIONS(2817), - [anon_sym_thread] = ACTIONS(2817), - [anon_sym_atomic] = ACTIONS(2817), - [anon_sym_assert] = ACTIONS(2817), - [anon_sym_defer] = ACTIONS(2817), - [anon_sym_goto] = ACTIONS(2817), - [anon_sym_break] = ACTIONS(2817), - [anon_sym_continue] = ACTIONS(2817), - [anon_sym_return] = ACTIONS(2817), - [anon_sym_DOLLARfor] = ACTIONS(2817), - [anon_sym_for] = ACTIONS(2817), - [anon_sym_POUND] = ACTIONS(2817), - [anon_sym_asm] = ACTIONS(2817), - [anon_sym_AT_LBRACK] = ACTIONS(2817), + [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_fn] = ACTIONS(2765), + [anon_sym_PLUS] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(2765), + [anon_sym_STAR] = ACTIONS(2765), + [anon_sym_SLASH] = 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_PIPE] = 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_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), + [anon_sym_SQUOTE] = ACTIONS(2765), + [anon_sym_DQUOTE] = ACTIONS(2765), + [anon_sym_c_SQUOTE] = ACTIONS(2765), + [anon_sym_c_DQUOTE] = ACTIONS(2765), + [anon_sym_r_SQUOTE] = ACTIONS(2765), + [anon_sym_r_DQUOTE] = 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), }, [1027] = { [sym_line_comment] = STATE(1027), [sym_block_comment] = STATE(1027), - [ts_builtin_sym_end] = ACTIONS(2853), - [sym_identifier] = ACTIONS(2855), - [anon_sym_LF] = ACTIONS(2855), - [anon_sym_CR] = ACTIONS(2855), - [anon_sym_CR_LF] = ACTIONS(2855), + [ts_builtin_sym_end] = ACTIONS(2769), + [sym_identifier] = ACTIONS(2771), + [anon_sym_LF] = ACTIONS(2771), + [anon_sym_CR] = ACTIONS(2771), + [anon_sym_CR_LF] = ACTIONS(2771), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2855), - [anon_sym_as] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_COMMA] = ACTIONS(2855), - [anon_sym_const] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym___global] = ACTIONS(2855), - [anon_sym_type] = ACTIONS(2855), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_fn] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_SLASH] = ACTIONS(2855), - [anon_sym_PERCENT] = ACTIONS(2855), - [anon_sym_LT] = ACTIONS(2855), - [anon_sym_GT] = ACTIONS(2855), - [anon_sym_EQ_EQ] = ACTIONS(2855), - [anon_sym_BANG_EQ] = ACTIONS(2855), - [anon_sym_LT_EQ] = ACTIONS(2855), - [anon_sym_GT_EQ] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_union] = ACTIONS(2855), - [anon_sym_pub] = ACTIONS(2855), - [anon_sym_mut] = ACTIONS(2855), - [anon_sym_enum] = ACTIONS(2855), - [anon_sym_interface] = ACTIONS(2855), - [anon_sym_PLUS_PLUS] = ACTIONS(2855), - [anon_sym_DASH_DASH] = ACTIONS(2855), - [anon_sym_QMARK] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_go] = ACTIONS(2855), - [anon_sym_spawn] = ACTIONS(2855), - [anon_sym_json_DOTdecode] = ACTIONS(2855), - [anon_sym_LBRACK2] = ACTIONS(2855), - [anon_sym_TILDE] = ACTIONS(2855), - [anon_sym_CARET] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_LT_DASH] = ACTIONS(2855), - [anon_sym_LT_LT] = ACTIONS(2855), - [anon_sym_GT_GT] = ACTIONS(2855), - [anon_sym_GT_GT_GT] = ACTIONS(2855), - [anon_sym_AMP_CARET] = ACTIONS(2855), - [anon_sym_AMP_AMP] = ACTIONS(2855), - [anon_sym_PIPE_PIPE] = ACTIONS(2855), - [anon_sym_or] = ACTIONS(2855), - [sym_none] = ACTIONS(2855), - [sym_true] = ACTIONS(2855), - [sym_false] = ACTIONS(2855), - [sym_nil] = ACTIONS(2855), - [anon_sym_QMARK_DOT] = ACTIONS(2855), - [anon_sym_POUND_LBRACK] = ACTIONS(2855), - [anon_sym_if] = ACTIONS(2855), - [anon_sym_DOLLARif] = ACTIONS(2855), - [anon_sym_is] = ACTIONS(2855), - [anon_sym_BANGis] = ACTIONS(2855), - [anon_sym_in] = ACTIONS(2855), - [anon_sym_BANGin] = ACTIONS(2855), - [anon_sym_match] = ACTIONS(2855), - [anon_sym_select] = ACTIONS(2855), - [anon_sym_lock] = ACTIONS(2855), - [anon_sym_rlock] = ACTIONS(2855), - [anon_sym_unsafe] = ACTIONS(2855), - [anon_sym_sql] = ACTIONS(2855), - [sym_int_literal] = ACTIONS(2855), - [sym_float_literal] = ACTIONS(2855), - [sym_rune_literal] = ACTIONS(2855), - [anon_sym_SQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [anon_sym_c_SQUOTE] = ACTIONS(2855), - [anon_sym_c_DQUOTE] = ACTIONS(2855), - [anon_sym_r_SQUOTE] = ACTIONS(2855), - [anon_sym_r_DQUOTE] = ACTIONS(2855), - [sym_pseudo_compile_time_identifier] = ACTIONS(2855), - [anon_sym_shared] = ACTIONS(2855), - [anon_sym_map_LBRACK] = ACTIONS(2855), - [anon_sym_chan] = ACTIONS(2855), - [anon_sym_thread] = ACTIONS(2855), - [anon_sym_atomic] = ACTIONS(2855), - [anon_sym_assert] = ACTIONS(2855), - [anon_sym_defer] = ACTIONS(2855), - [anon_sym_goto] = ACTIONS(2855), - [anon_sym_break] = ACTIONS(2855), - [anon_sym_continue] = ACTIONS(2855), - [anon_sym_return] = ACTIONS(2855), - [anon_sym_DOLLARfor] = ACTIONS(2855), - [anon_sym_for] = ACTIONS(2855), - [anon_sym_POUND] = ACTIONS(2855), - [anon_sym_asm] = ACTIONS(2855), - [anon_sym_AT_LBRACK] = ACTIONS(2855), + [anon_sym_DOT] = ACTIONS(2771), + [anon_sym_as] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_COMMA] = ACTIONS(2771), + [anon_sym_const] = ACTIONS(2771), + [anon_sym_LPAREN] = ACTIONS(2771), + [anon_sym___global] = ACTIONS(2771), + [anon_sym_type] = ACTIONS(2771), + [anon_sym_fn] = ACTIONS(2771), + [anon_sym_PLUS] = ACTIONS(2771), + [anon_sym_DASH] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_SLASH] = ACTIONS(2771), + [anon_sym_PERCENT] = ACTIONS(2771), + [anon_sym_LT] = ACTIONS(2771), + [anon_sym_GT] = ACTIONS(2771), + [anon_sym_EQ_EQ] = ACTIONS(2771), + [anon_sym_BANG_EQ] = ACTIONS(2771), + [anon_sym_LT_EQ] = ACTIONS(2771), + [anon_sym_GT_EQ] = ACTIONS(2771), + [anon_sym_LBRACK] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(2771), + [anon_sym_union] = ACTIONS(2771), + [anon_sym_pub] = ACTIONS(2771), + [anon_sym_mut] = ACTIONS(2771), + [anon_sym_enum] = ACTIONS(2771), + [anon_sym_interface] = ACTIONS(2771), + [anon_sym_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_DASH_DASH] = ACTIONS(2771), + [anon_sym_QMARK] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_go] = ACTIONS(2771), + [anon_sym_spawn] = ACTIONS(2771), + [anon_sym_json_DOTdecode] = ACTIONS(2771), + [anon_sym_PIPE] = ACTIONS(2771), + [anon_sym_LBRACK2] = ACTIONS(2771), + [anon_sym_TILDE] = ACTIONS(2771), + [anon_sym_CARET] = ACTIONS(2771), + [anon_sym_AMP] = ACTIONS(2771), + [anon_sym_LT_DASH] = ACTIONS(2771), + [anon_sym_LT_LT] = ACTIONS(2771), + [anon_sym_GT_GT] = ACTIONS(2771), + [anon_sym_GT_GT_GT] = ACTIONS(2771), + [anon_sym_AMP_CARET] = ACTIONS(2771), + [anon_sym_AMP_AMP] = ACTIONS(2771), + [anon_sym_PIPE_PIPE] = ACTIONS(2771), + [anon_sym_or] = ACTIONS(2771), + [sym_none] = ACTIONS(2771), + [sym_true] = ACTIONS(2771), + [sym_false] = ACTIONS(2771), + [sym_nil] = ACTIONS(2771), + [anon_sym_QMARK_DOT] = ACTIONS(2771), + [anon_sym_POUND_LBRACK] = ACTIONS(2771), + [anon_sym_if] = ACTIONS(2771), + [anon_sym_DOLLARif] = ACTIONS(2771), + [anon_sym_is] = ACTIONS(2771), + [anon_sym_BANGis] = ACTIONS(2771), + [anon_sym_in] = ACTIONS(2771), + [anon_sym_BANGin] = ACTIONS(2771), + [anon_sym_match] = ACTIONS(2771), + [anon_sym_select] = ACTIONS(2771), + [anon_sym_lock] = ACTIONS(2771), + [anon_sym_rlock] = ACTIONS(2771), + [anon_sym_unsafe] = ACTIONS(2771), + [anon_sym_sql] = ACTIONS(2771), + [sym_int_literal] = ACTIONS(2771), + [sym_float_literal] = ACTIONS(2771), + [sym_rune_literal] = ACTIONS(2771), + [anon_sym_SQUOTE] = ACTIONS(2771), + [anon_sym_DQUOTE] = ACTIONS(2771), + [anon_sym_c_SQUOTE] = ACTIONS(2771), + [anon_sym_c_DQUOTE] = ACTIONS(2771), + [anon_sym_r_SQUOTE] = ACTIONS(2771), + [anon_sym_r_DQUOTE] = ACTIONS(2771), + [sym_pseudo_compile_time_identifier] = ACTIONS(2771), + [anon_sym_shared] = ACTIONS(2771), + [anon_sym_map_LBRACK] = ACTIONS(2771), + [anon_sym_chan] = ACTIONS(2771), + [anon_sym_thread] = ACTIONS(2771), + [anon_sym_atomic] = ACTIONS(2771), + [anon_sym_assert] = ACTIONS(2771), + [anon_sym_defer] = ACTIONS(2771), + [anon_sym_goto] = ACTIONS(2771), + [anon_sym_break] = ACTIONS(2771), + [anon_sym_continue] = ACTIONS(2771), + [anon_sym_return] = ACTIONS(2771), + [anon_sym_DOLLARfor] = ACTIONS(2771), + [anon_sym_for] = ACTIONS(2771), + [anon_sym_POUND] = ACTIONS(2771), + [anon_sym_asm] = ACTIONS(2771), + [anon_sym_AT_LBRACK] = ACTIONS(2771), }, [1028] = { [sym_line_comment] = STATE(1028), [sym_block_comment] = STATE(1028), - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_LF] = ACTIONS(1809), - [anon_sym_CR] = ACTIONS(1809), - [anon_sym_CR_LF] = ACTIONS(1809), + [ts_builtin_sym_end] = ACTIONS(2365), + [sym_identifier] = ACTIONS(2367), + [anon_sym_LF] = ACTIONS(2367), + [anon_sym_CR] = ACTIONS(2367), + [anon_sym_CR_LF] = ACTIONS(2367), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_as] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(2029), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym___global] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_fn] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_PERCENT] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_EQ_EQ] = ACTIONS(1809), - [anon_sym_BANG_EQ] = ACTIONS(1809), - [anon_sym_LT_EQ] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_pub] = ACTIONS(1809), - [anon_sym_mut] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_interface] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1809), - [anon_sym_json_DOTdecode] = ACTIONS(1809), - [anon_sym_LBRACK2] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_LT_DASH] = ACTIONS(1809), - [anon_sym_LT_LT] = ACTIONS(1809), - [anon_sym_GT_GT] = ACTIONS(1809), - [anon_sym_GT_GT_GT] = ACTIONS(1809), - [anon_sym_AMP_CARET] = ACTIONS(1809), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [anon_sym_PIPE_PIPE] = ACTIONS(1809), - [anon_sym_or] = ACTIONS(1809), - [sym_none] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_nil] = ACTIONS(1809), - [anon_sym_QMARK_DOT] = ACTIONS(1809), - [anon_sym_POUND_LBRACK] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_DOLLARif] = ACTIONS(1809), - [anon_sym_is] = ACTIONS(1809), - [anon_sym_BANGis] = ACTIONS(1809), - [anon_sym_in] = ACTIONS(1809), - [anon_sym_BANGin] = ACTIONS(1809), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_select] = ACTIONS(1809), - [anon_sym_lock] = ACTIONS(1809), - [anon_sym_rlock] = ACTIONS(1809), - [anon_sym_unsafe] = ACTIONS(1809), - [anon_sym_sql] = ACTIONS(1809), - [sym_int_literal] = ACTIONS(1809), - [sym_float_literal] = ACTIONS(1809), - [sym_rune_literal] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1809), - [anon_sym_c_SQUOTE] = ACTIONS(1809), - [anon_sym_c_DQUOTE] = ACTIONS(1809), - [anon_sym_r_SQUOTE] = ACTIONS(1809), - [anon_sym_r_DQUOTE] = ACTIONS(1809), - [sym_pseudo_compile_time_identifier] = ACTIONS(1809), - [anon_sym_shared] = ACTIONS(1809), - [anon_sym_map_LBRACK] = ACTIONS(1809), - [anon_sym_chan] = ACTIONS(1809), - [anon_sym_thread] = ACTIONS(1809), - [anon_sym_atomic] = ACTIONS(1809), - [anon_sym_assert] = ACTIONS(1809), - [anon_sym_defer] = ACTIONS(1809), - [anon_sym_goto] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_DOLLARfor] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_POUND] = ACTIONS(1809), - [anon_sym_asm] = ACTIONS(1809), - [anon_sym_AT_LBRACK] = ACTIONS(1809), + [anon_sym_DOT] = ACTIONS(2367), + [anon_sym_as] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_COMMA] = ACTIONS(2367), + [anon_sym_const] = ACTIONS(2367), + [anon_sym_LPAREN] = ACTIONS(2367), + [anon_sym___global] = ACTIONS(2367), + [anon_sym_type] = ACTIONS(2367), + [anon_sym_fn] = ACTIONS(2367), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_SLASH] = ACTIONS(2367), + [anon_sym_PERCENT] = ACTIONS(2367), + [anon_sym_LT] = ACTIONS(2367), + [anon_sym_GT] = ACTIONS(2367), + [anon_sym_EQ_EQ] = ACTIONS(2367), + [anon_sym_BANG_EQ] = ACTIONS(2367), + [anon_sym_LT_EQ] = ACTIONS(2367), + [anon_sym_GT_EQ] = ACTIONS(2367), + [anon_sym_LBRACK] = ACTIONS(2365), + [anon_sym_struct] = ACTIONS(2367), + [anon_sym_union] = ACTIONS(2367), + [anon_sym_pub] = ACTIONS(2367), + [anon_sym_mut] = ACTIONS(2367), + [anon_sym_enum] = ACTIONS(2367), + [anon_sym_interface] = ACTIONS(2367), + [anon_sym_PLUS_PLUS] = ACTIONS(2367), + [anon_sym_DASH_DASH] = ACTIONS(2367), + [anon_sym_QMARK] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_go] = ACTIONS(2367), + [anon_sym_spawn] = ACTIONS(2367), + [anon_sym_json_DOTdecode] = ACTIONS(2367), + [anon_sym_PIPE] = ACTIONS(2367), + [anon_sym_LBRACK2] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_CARET] = ACTIONS(2367), + [anon_sym_AMP] = ACTIONS(2367), + [anon_sym_LT_DASH] = ACTIONS(2367), + [anon_sym_LT_LT] = ACTIONS(2367), + [anon_sym_GT_GT] = ACTIONS(2367), + [anon_sym_GT_GT_GT] = ACTIONS(2367), + [anon_sym_AMP_CARET] = ACTIONS(2367), + [anon_sym_AMP_AMP] = ACTIONS(2367), + [anon_sym_PIPE_PIPE] = ACTIONS(2367), + [anon_sym_or] = ACTIONS(2367), + [sym_none] = ACTIONS(2367), + [sym_true] = ACTIONS(2367), + [sym_false] = ACTIONS(2367), + [sym_nil] = ACTIONS(2367), + [anon_sym_QMARK_DOT] = ACTIONS(2367), + [anon_sym_POUND_LBRACK] = ACTIONS(2367), + [anon_sym_if] = ACTIONS(2367), + [anon_sym_DOLLARif] = ACTIONS(2367), + [anon_sym_is] = ACTIONS(2367), + [anon_sym_BANGis] = ACTIONS(2367), + [anon_sym_in] = ACTIONS(2367), + [anon_sym_BANGin] = ACTIONS(2367), + [anon_sym_match] = ACTIONS(2367), + [anon_sym_select] = ACTIONS(2367), + [anon_sym_lock] = ACTIONS(2367), + [anon_sym_rlock] = ACTIONS(2367), + [anon_sym_unsafe] = ACTIONS(2367), + [anon_sym_sql] = ACTIONS(2367), + [sym_int_literal] = ACTIONS(2367), + [sym_float_literal] = ACTIONS(2367), + [sym_rune_literal] = ACTIONS(2367), + [anon_sym_SQUOTE] = ACTIONS(2367), + [anon_sym_DQUOTE] = ACTIONS(2367), + [anon_sym_c_SQUOTE] = ACTIONS(2367), + [anon_sym_c_DQUOTE] = ACTIONS(2367), + [anon_sym_r_SQUOTE] = ACTIONS(2367), + [anon_sym_r_DQUOTE] = ACTIONS(2367), + [sym_pseudo_compile_time_identifier] = ACTIONS(2367), + [anon_sym_shared] = ACTIONS(2367), + [anon_sym_map_LBRACK] = ACTIONS(2367), + [anon_sym_chan] = ACTIONS(2367), + [anon_sym_thread] = ACTIONS(2367), + [anon_sym_atomic] = ACTIONS(2367), + [anon_sym_assert] = ACTIONS(2367), + [anon_sym_defer] = ACTIONS(2367), + [anon_sym_goto] = ACTIONS(2367), + [anon_sym_break] = ACTIONS(2367), + [anon_sym_continue] = ACTIONS(2367), + [anon_sym_return] = ACTIONS(2367), + [anon_sym_DOLLARfor] = ACTIONS(2367), + [anon_sym_for] = ACTIONS(2367), + [anon_sym_POUND] = ACTIONS(2367), + [anon_sym_asm] = ACTIONS(2367), + [anon_sym_AT_LBRACK] = ACTIONS(2367), }, [1029] = { [sym_line_comment] = STATE(1029), [sym_block_comment] = STATE(1029), - [ts_builtin_sym_end] = ACTIONS(2799), - [sym_identifier] = ACTIONS(2801), - [anon_sym_LF] = ACTIONS(2801), - [anon_sym_CR] = ACTIONS(2801), - [anon_sym_CR_LF] = ACTIONS(2801), + [ts_builtin_sym_end] = ACTIONS(3020), + [sym_identifier] = ACTIONS(3022), + [anon_sym_LF] = ACTIONS(3022), + [anon_sym_CR] = ACTIONS(3022), + [anon_sym_CR_LF] = ACTIONS(3022), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2801), - [anon_sym_as] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_COMMA] = ACTIONS(2801), - [anon_sym_const] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2801), - [anon_sym___global] = ACTIONS(2801), - [anon_sym_type] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(2801), - [anon_sym_fn] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_SLASH] = ACTIONS(2801), - [anon_sym_PERCENT] = ACTIONS(2801), - [anon_sym_LT] = ACTIONS(2801), - [anon_sym_GT] = ACTIONS(2801), - [anon_sym_EQ_EQ] = ACTIONS(2801), - [anon_sym_BANG_EQ] = ACTIONS(2801), - [anon_sym_LT_EQ] = ACTIONS(2801), - [anon_sym_GT_EQ] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_struct] = ACTIONS(2801), - [anon_sym_union] = ACTIONS(2801), - [anon_sym_pub] = ACTIONS(2801), - [anon_sym_mut] = ACTIONS(2801), - [anon_sym_enum] = ACTIONS(2801), - [anon_sym_interface] = ACTIONS(2801), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_go] = ACTIONS(2801), - [anon_sym_spawn] = ACTIONS(2801), - [anon_sym_json_DOTdecode] = ACTIONS(2801), - [anon_sym_LBRACK2] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_LT_DASH] = ACTIONS(2801), - [anon_sym_LT_LT] = ACTIONS(2801), - [anon_sym_GT_GT] = ACTIONS(2801), - [anon_sym_GT_GT_GT] = ACTIONS(2801), - [anon_sym_AMP_CARET] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_PIPE_PIPE] = ACTIONS(2801), - [anon_sym_or] = ACTIONS(2801), - [sym_none] = ACTIONS(2801), - [sym_true] = ACTIONS(2801), - [sym_false] = ACTIONS(2801), - [sym_nil] = ACTIONS(2801), - [anon_sym_QMARK_DOT] = ACTIONS(2801), - [anon_sym_POUND_LBRACK] = ACTIONS(2801), - [anon_sym_if] = ACTIONS(2801), - [anon_sym_DOLLARif] = ACTIONS(2801), - [anon_sym_is] = ACTIONS(2801), - [anon_sym_BANGis] = ACTIONS(2801), - [anon_sym_in] = ACTIONS(2801), - [anon_sym_BANGin] = ACTIONS(2801), - [anon_sym_match] = ACTIONS(2801), - [anon_sym_select] = ACTIONS(2801), - [anon_sym_lock] = ACTIONS(2801), - [anon_sym_rlock] = ACTIONS(2801), - [anon_sym_unsafe] = ACTIONS(2801), - [anon_sym_sql] = ACTIONS(2801), - [sym_int_literal] = ACTIONS(2801), - [sym_float_literal] = ACTIONS(2801), - [sym_rune_literal] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2801), - [anon_sym_DQUOTE] = ACTIONS(2801), - [anon_sym_c_SQUOTE] = ACTIONS(2801), - [anon_sym_c_DQUOTE] = ACTIONS(2801), - [anon_sym_r_SQUOTE] = ACTIONS(2801), - [anon_sym_r_DQUOTE] = ACTIONS(2801), - [sym_pseudo_compile_time_identifier] = ACTIONS(2801), - [anon_sym_shared] = ACTIONS(2801), - [anon_sym_map_LBRACK] = ACTIONS(2801), - [anon_sym_chan] = ACTIONS(2801), - [anon_sym_thread] = ACTIONS(2801), - [anon_sym_atomic] = ACTIONS(2801), - [anon_sym_assert] = ACTIONS(2801), - [anon_sym_defer] = ACTIONS(2801), - [anon_sym_goto] = ACTIONS(2801), - [anon_sym_break] = ACTIONS(2801), - [anon_sym_continue] = ACTIONS(2801), - [anon_sym_return] = ACTIONS(2801), - [anon_sym_DOLLARfor] = ACTIONS(2801), - [anon_sym_for] = ACTIONS(2801), - [anon_sym_POUND] = ACTIONS(2801), - [anon_sym_asm] = ACTIONS(2801), - [anon_sym_AT_LBRACK] = ACTIONS(2801), + [anon_sym_DOT] = ACTIONS(3022), + [anon_sym_as] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3022), + [anon_sym_COMMA] = ACTIONS(3022), + [anon_sym_const] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym___global] = ACTIONS(3022), + [anon_sym_type] = ACTIONS(3022), + [anon_sym_fn] = ACTIONS(3022), + [anon_sym_PLUS] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(3022), + [anon_sym_SLASH] = ACTIONS(3022), + [anon_sym_PERCENT] = ACTIONS(3022), + [anon_sym_LT] = ACTIONS(3022), + [anon_sym_GT] = ACTIONS(3022), + [anon_sym_EQ_EQ] = ACTIONS(3022), + [anon_sym_BANG_EQ] = ACTIONS(3022), + [anon_sym_LT_EQ] = ACTIONS(3022), + [anon_sym_GT_EQ] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_struct] = ACTIONS(3022), + [anon_sym_union] = ACTIONS(3022), + [anon_sym_pub] = ACTIONS(3022), + [anon_sym_mut] = ACTIONS(3022), + [anon_sym_enum] = ACTIONS(3022), + [anon_sym_interface] = ACTIONS(3022), + [anon_sym_PLUS_PLUS] = ACTIONS(3022), + [anon_sym_DASH_DASH] = ACTIONS(3022), + [anon_sym_QMARK] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_go] = ACTIONS(3022), + [anon_sym_spawn] = ACTIONS(3022), + [anon_sym_json_DOTdecode] = ACTIONS(3022), + [anon_sym_PIPE] = ACTIONS(3022), + [anon_sym_LBRACK2] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3022), + [anon_sym_CARET] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3022), + [anon_sym_LT_DASH] = ACTIONS(3022), + [anon_sym_LT_LT] = ACTIONS(3022), + [anon_sym_GT_GT] = ACTIONS(3022), + [anon_sym_GT_GT_GT] = ACTIONS(3022), + [anon_sym_AMP_CARET] = ACTIONS(3022), + [anon_sym_AMP_AMP] = ACTIONS(3022), + [anon_sym_PIPE_PIPE] = ACTIONS(3022), + [anon_sym_or] = ACTIONS(3022), + [sym_none] = ACTIONS(3022), + [sym_true] = ACTIONS(3022), + [sym_false] = ACTIONS(3022), + [sym_nil] = ACTIONS(3022), + [anon_sym_QMARK_DOT] = ACTIONS(3022), + [anon_sym_POUND_LBRACK] = ACTIONS(3022), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_DOLLARif] = ACTIONS(3022), + [anon_sym_is] = ACTIONS(3022), + [anon_sym_BANGis] = ACTIONS(3022), + [anon_sym_in] = ACTIONS(3022), + [anon_sym_BANGin] = ACTIONS(3022), + [anon_sym_match] = ACTIONS(3022), + [anon_sym_select] = ACTIONS(3022), + [anon_sym_lock] = ACTIONS(3022), + [anon_sym_rlock] = ACTIONS(3022), + [anon_sym_unsafe] = ACTIONS(3022), + [anon_sym_sql] = ACTIONS(3022), + [sym_int_literal] = ACTIONS(3022), + [sym_float_literal] = ACTIONS(3022), + [sym_rune_literal] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_c_SQUOTE] = ACTIONS(3022), + [anon_sym_c_DQUOTE] = ACTIONS(3022), + [anon_sym_r_SQUOTE] = ACTIONS(3022), + [anon_sym_r_DQUOTE] = ACTIONS(3022), + [sym_pseudo_compile_time_identifier] = ACTIONS(3022), + [anon_sym_shared] = ACTIONS(3022), + [anon_sym_map_LBRACK] = ACTIONS(3022), + [anon_sym_chan] = ACTIONS(3022), + [anon_sym_thread] = ACTIONS(3022), + [anon_sym_atomic] = ACTIONS(3022), + [anon_sym_assert] = ACTIONS(3022), + [anon_sym_defer] = ACTIONS(3022), + [anon_sym_goto] = ACTIONS(3022), + [anon_sym_break] = ACTIONS(3022), + [anon_sym_continue] = ACTIONS(3022), + [anon_sym_return] = ACTIONS(3022), + [anon_sym_DOLLARfor] = ACTIONS(3022), + [anon_sym_for] = ACTIONS(3022), + [anon_sym_POUND] = ACTIONS(3022), + [anon_sym_asm] = ACTIONS(3022), + [anon_sym_AT_LBRACK] = ACTIONS(3022), }, [1030] = { [sym_line_comment] = STATE(1030), [sym_block_comment] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(3023), - [sym_identifier] = ACTIONS(3025), - [anon_sym_LF] = ACTIONS(3025), - [anon_sym_CR] = ACTIONS(3025), - [anon_sym_CR_LF] = ACTIONS(3025), + [ts_builtin_sym_end] = ACTIONS(3024), + [sym_identifier] = ACTIONS(3026), + [anon_sym_LF] = ACTIONS(3026), + [anon_sym_CR] = ACTIONS(3026), + [anon_sym_CR_LF] = ACTIONS(3026), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3025), - [anon_sym_as] = ACTIONS(3025), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_COMMA] = ACTIONS(3025), - [anon_sym_const] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(3025), - [anon_sym___global] = ACTIONS(3025), - [anon_sym_type] = ACTIONS(3025), - [anon_sym_PIPE] = ACTIONS(3025), - [anon_sym_fn] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_SLASH] = ACTIONS(3025), - [anon_sym_PERCENT] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(3025), - [anon_sym_GT] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_union] = ACTIONS(3025), - [anon_sym_pub] = ACTIONS(3025), - [anon_sym_mut] = ACTIONS(3025), - [anon_sym_enum] = ACTIONS(3025), - [anon_sym_interface] = ACTIONS(3025), - [anon_sym_PLUS_PLUS] = ACTIONS(3025), - [anon_sym_DASH_DASH] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3025), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_go] = ACTIONS(3025), - [anon_sym_spawn] = ACTIONS(3025), - [anon_sym_json_DOTdecode] = ACTIONS(3025), - [anon_sym_LBRACK2] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3025), - [anon_sym_CARET] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3025), - [anon_sym_LT_DASH] = ACTIONS(3025), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_GT_GT_GT] = ACTIONS(3025), - [anon_sym_AMP_CARET] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_or] = ACTIONS(3025), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_QMARK_DOT] = ACTIONS(3025), - [anon_sym_POUND_LBRACK] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3025), - [anon_sym_DOLLARif] = ACTIONS(3025), - [anon_sym_is] = ACTIONS(3025), - [anon_sym_BANGis] = ACTIONS(3025), - [anon_sym_in] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(3025), - [anon_sym_match] = ACTIONS(3025), - [anon_sym_select] = ACTIONS(3025), - [anon_sym_lock] = ACTIONS(3025), - [anon_sym_rlock] = ACTIONS(3025), - [anon_sym_unsafe] = ACTIONS(3025), - [anon_sym_sql] = ACTIONS(3025), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3025), - [sym_rune_literal] = ACTIONS(3025), - [anon_sym_SQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_c_SQUOTE] = ACTIONS(3025), - [anon_sym_c_DQUOTE] = ACTIONS(3025), - [anon_sym_r_SQUOTE] = ACTIONS(3025), - [anon_sym_r_DQUOTE] = ACTIONS(3025), - [sym_pseudo_compile_time_identifier] = ACTIONS(3025), - [anon_sym_shared] = ACTIONS(3025), - [anon_sym_map_LBRACK] = ACTIONS(3025), - [anon_sym_chan] = ACTIONS(3025), - [anon_sym_thread] = ACTIONS(3025), - [anon_sym_atomic] = ACTIONS(3025), - [anon_sym_assert] = ACTIONS(3025), - [anon_sym_defer] = ACTIONS(3025), - [anon_sym_goto] = ACTIONS(3025), - [anon_sym_break] = ACTIONS(3025), - [anon_sym_continue] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(3025), - [anon_sym_DOLLARfor] = ACTIONS(3025), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_POUND] = ACTIONS(3025), - [anon_sym_asm] = ACTIONS(3025), - [anon_sym_AT_LBRACK] = ACTIONS(3025), + [anon_sym_DOT] = ACTIONS(3026), + [anon_sym_as] = ACTIONS(3026), + [anon_sym_LBRACE] = ACTIONS(3026), + [anon_sym_COMMA] = ACTIONS(3026), + [anon_sym_const] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3026), + [anon_sym___global] = ACTIONS(3026), + [anon_sym_type] = ACTIONS(3026), + [anon_sym_fn] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3026), + [anon_sym_SLASH] = ACTIONS(3026), + [anon_sym_PERCENT] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(3026), + [anon_sym_GT] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3026), + [anon_sym_BANG_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_struct] = ACTIONS(3026), + [anon_sym_union] = ACTIONS(3026), + [anon_sym_pub] = ACTIONS(3026), + [anon_sym_mut] = ACTIONS(3026), + [anon_sym_enum] = ACTIONS(3026), + [anon_sym_interface] = ACTIONS(3026), + [anon_sym_PLUS_PLUS] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(3026), + [anon_sym_QMARK] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_go] = ACTIONS(3026), + [anon_sym_spawn] = ACTIONS(3026), + [anon_sym_json_DOTdecode] = ACTIONS(3026), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_LBRACK2] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3026), + [anon_sym_CARET] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_LT_DASH] = ACTIONS(3026), + [anon_sym_LT_LT] = ACTIONS(3026), + [anon_sym_GT_GT] = ACTIONS(3026), + [anon_sym_GT_GT_GT] = ACTIONS(3026), + [anon_sym_AMP_CARET] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_or] = ACTIONS(3026), + [sym_none] = ACTIONS(3026), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_nil] = ACTIONS(3026), + [anon_sym_QMARK_DOT] = ACTIONS(3026), + [anon_sym_POUND_LBRACK] = ACTIONS(3026), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_DOLLARif] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3026), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_in] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_match] = ACTIONS(3026), + [anon_sym_select] = ACTIONS(3026), + [anon_sym_lock] = ACTIONS(3026), + [anon_sym_rlock] = ACTIONS(3026), + [anon_sym_unsafe] = ACTIONS(3026), + [anon_sym_sql] = ACTIONS(3026), + [sym_int_literal] = ACTIONS(3026), + [sym_float_literal] = ACTIONS(3026), + [sym_rune_literal] = ACTIONS(3026), + [anon_sym_SQUOTE] = ACTIONS(3026), + [anon_sym_DQUOTE] = ACTIONS(3026), + [anon_sym_c_SQUOTE] = ACTIONS(3026), + [anon_sym_c_DQUOTE] = ACTIONS(3026), + [anon_sym_r_SQUOTE] = ACTIONS(3026), + [anon_sym_r_DQUOTE] = ACTIONS(3026), + [sym_pseudo_compile_time_identifier] = ACTIONS(3026), + [anon_sym_shared] = ACTIONS(3026), + [anon_sym_map_LBRACK] = ACTIONS(3026), + [anon_sym_chan] = ACTIONS(3026), + [anon_sym_thread] = ACTIONS(3026), + [anon_sym_atomic] = ACTIONS(3026), + [anon_sym_assert] = ACTIONS(3026), + [anon_sym_defer] = ACTIONS(3026), + [anon_sym_goto] = ACTIONS(3026), + [anon_sym_break] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(3026), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_DOLLARfor] = ACTIONS(3026), + [anon_sym_for] = ACTIONS(3026), + [anon_sym_POUND] = ACTIONS(3026), + [anon_sym_asm] = ACTIONS(3026), + [anon_sym_AT_LBRACK] = ACTIONS(3026), }, [1031] = { [sym_line_comment] = STATE(1031), [sym_block_comment] = STATE(1031), - [ts_builtin_sym_end] = ACTIONS(2717), - [sym_identifier] = ACTIONS(2719), - [anon_sym_LF] = ACTIONS(2719), - [anon_sym_CR] = ACTIONS(2719), - [anon_sym_CR_LF] = ACTIONS(2719), + [ts_builtin_sym_end] = ACTIONS(2189), + [sym_identifier] = ACTIONS(2191), + [anon_sym_LF] = ACTIONS(2191), + [anon_sym_CR] = ACTIONS(2191), + [anon_sym_CR_LF] = ACTIONS(2191), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2719), - [anon_sym_as] = ACTIONS(2719), - [anon_sym_LBRACE] = ACTIONS(2719), - [anon_sym_COMMA] = ACTIONS(2719), - [anon_sym_const] = ACTIONS(2719), - [anon_sym_LPAREN] = ACTIONS(2719), - [anon_sym___global] = ACTIONS(2719), - [anon_sym_type] = ACTIONS(2719), - [anon_sym_PIPE] = ACTIONS(2719), - [anon_sym_fn] = ACTIONS(2719), - [anon_sym_PLUS] = ACTIONS(2719), - [anon_sym_DASH] = ACTIONS(2719), - [anon_sym_STAR] = ACTIONS(2719), - [anon_sym_SLASH] = ACTIONS(2719), - [anon_sym_PERCENT] = ACTIONS(2719), - [anon_sym_LT] = ACTIONS(2719), - [anon_sym_GT] = ACTIONS(2719), - [anon_sym_EQ_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2719), - [anon_sym_LT_EQ] = ACTIONS(2719), - [anon_sym_GT_EQ] = ACTIONS(2719), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_struct] = ACTIONS(2719), - [anon_sym_union] = ACTIONS(2719), - [anon_sym_pub] = ACTIONS(2719), - [anon_sym_mut] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2719), - [anon_sym_interface] = ACTIONS(2719), - [anon_sym_PLUS_PLUS] = ACTIONS(2719), - [anon_sym_DASH_DASH] = ACTIONS(2719), - [anon_sym_QMARK] = ACTIONS(2719), - [anon_sym_BANG] = ACTIONS(2719), - [anon_sym_go] = ACTIONS(2719), - [anon_sym_spawn] = ACTIONS(2719), - [anon_sym_json_DOTdecode] = ACTIONS(2719), - [anon_sym_LBRACK2] = ACTIONS(2719), - [anon_sym_TILDE] = ACTIONS(2719), - [anon_sym_CARET] = ACTIONS(2719), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_LT_DASH] = ACTIONS(2719), - [anon_sym_LT_LT] = ACTIONS(2719), - [anon_sym_GT_GT] = ACTIONS(2719), - [anon_sym_GT_GT_GT] = ACTIONS(2719), - [anon_sym_AMP_CARET] = ACTIONS(2719), - [anon_sym_AMP_AMP] = ACTIONS(2719), - [anon_sym_PIPE_PIPE] = ACTIONS(2719), - [anon_sym_or] = ACTIONS(2719), - [sym_none] = ACTIONS(2719), - [sym_true] = ACTIONS(2719), - [sym_false] = ACTIONS(2719), - [sym_nil] = ACTIONS(2719), - [anon_sym_QMARK_DOT] = ACTIONS(2719), - [anon_sym_POUND_LBRACK] = ACTIONS(2719), - [anon_sym_if] = ACTIONS(2719), - [anon_sym_DOLLARif] = ACTIONS(2719), - [anon_sym_is] = ACTIONS(2719), - [anon_sym_BANGis] = ACTIONS(2719), - [anon_sym_in] = ACTIONS(2719), - [anon_sym_BANGin] = ACTIONS(2719), - [anon_sym_match] = ACTIONS(2719), - [anon_sym_select] = ACTIONS(2719), - [anon_sym_lock] = ACTIONS(2719), - [anon_sym_rlock] = ACTIONS(2719), - [anon_sym_unsafe] = ACTIONS(2719), - [anon_sym_sql] = ACTIONS(2719), - [sym_int_literal] = ACTIONS(2719), - [sym_float_literal] = ACTIONS(2719), - [sym_rune_literal] = ACTIONS(2719), - [anon_sym_SQUOTE] = ACTIONS(2719), - [anon_sym_DQUOTE] = ACTIONS(2719), - [anon_sym_c_SQUOTE] = ACTIONS(2719), - [anon_sym_c_DQUOTE] = ACTIONS(2719), - [anon_sym_r_SQUOTE] = ACTIONS(2719), - [anon_sym_r_DQUOTE] = ACTIONS(2719), - [sym_pseudo_compile_time_identifier] = ACTIONS(2719), - [anon_sym_shared] = ACTIONS(2719), - [anon_sym_map_LBRACK] = ACTIONS(2719), - [anon_sym_chan] = ACTIONS(2719), - [anon_sym_thread] = ACTIONS(2719), - [anon_sym_atomic] = ACTIONS(2719), - [anon_sym_assert] = ACTIONS(2719), - [anon_sym_defer] = ACTIONS(2719), - [anon_sym_goto] = ACTIONS(2719), - [anon_sym_break] = ACTIONS(2719), - [anon_sym_continue] = ACTIONS(2719), - [anon_sym_return] = ACTIONS(2719), - [anon_sym_DOLLARfor] = ACTIONS(2719), - [anon_sym_for] = ACTIONS(2719), - [anon_sym_POUND] = ACTIONS(2719), - [anon_sym_asm] = ACTIONS(2719), - [anon_sym_AT_LBRACK] = ACTIONS(2719), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_as] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_COMMA] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym___global] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_fn] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_PERCENT] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_GT] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ] = ACTIONS(2191), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_union] = ACTIONS(2191), + [anon_sym_pub] = ACTIONS(2191), + [anon_sym_mut] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_QMARK] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_go] = ACTIONS(2191), + [anon_sym_spawn] = ACTIONS(2191), + [anon_sym_json_DOTdecode] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_LBRACK2] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_LT_DASH] = ACTIONS(2191), + [anon_sym_LT_LT] = ACTIONS(2191), + [anon_sym_GT_GT] = ACTIONS(2191), + [anon_sym_GT_GT_GT] = ACTIONS(2191), + [anon_sym_AMP_CARET] = ACTIONS(2191), + [anon_sym_AMP_AMP] = ACTIONS(2191), + [anon_sym_PIPE_PIPE] = ACTIONS(2191), + [anon_sym_or] = ACTIONS(2191), + [sym_none] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_nil] = ACTIONS(2191), + [anon_sym_QMARK_DOT] = ACTIONS(2191), + [anon_sym_POUND_LBRACK] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_DOLLARif] = ACTIONS(2191), + [anon_sym_is] = ACTIONS(2191), + [anon_sym_BANGis] = ACTIONS(2191), + [anon_sym_in] = ACTIONS(2191), + [anon_sym_BANGin] = ACTIONS(2191), + [anon_sym_match] = ACTIONS(2191), + [anon_sym_select] = ACTIONS(2191), + [anon_sym_lock] = ACTIONS(2191), + [anon_sym_rlock] = ACTIONS(2191), + [anon_sym_unsafe] = ACTIONS(2191), + [anon_sym_sql] = ACTIONS(2191), + [sym_int_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), + [sym_rune_literal] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_c_SQUOTE] = ACTIONS(2191), + [anon_sym_c_DQUOTE] = ACTIONS(2191), + [anon_sym_r_SQUOTE] = ACTIONS(2191), + [anon_sym_r_DQUOTE] = ACTIONS(2191), + [sym_pseudo_compile_time_identifier] = ACTIONS(2191), + [anon_sym_shared] = ACTIONS(2191), + [anon_sym_map_LBRACK] = ACTIONS(2191), + [anon_sym_chan] = ACTIONS(2191), + [anon_sym_thread] = ACTIONS(2191), + [anon_sym_atomic] = ACTIONS(2191), + [anon_sym_assert] = ACTIONS(2191), + [anon_sym_defer] = ACTIONS(2191), + [anon_sym_goto] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_DOLLARfor] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_POUND] = ACTIONS(2191), + [anon_sym_asm] = ACTIONS(2191), + [anon_sym_AT_LBRACK] = ACTIONS(2191), }, [1032] = { [sym_line_comment] = STATE(1032), [sym_block_comment] = STATE(1032), - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_LF] = ACTIONS(1809), - [anon_sym_CR] = ACTIONS(1809), - [anon_sym_CR_LF] = ACTIONS(1809), + [ts_builtin_sym_end] = ACTIONS(3040), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LF] = ACTIONS(3042), + [anon_sym_CR] = ACTIONS(3042), + [anon_sym_CR_LF] = ACTIONS(3042), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_as] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym___global] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_fn] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_PERCENT] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_EQ_EQ] = ACTIONS(1809), - [anon_sym_BANG_EQ] = ACTIONS(1809), - [anon_sym_LT_EQ] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_pub] = ACTIONS(1809), - [anon_sym_mut] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_interface] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1809), - [anon_sym_json_DOTdecode] = ACTIONS(1809), - [anon_sym_LBRACK2] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_LT_DASH] = ACTIONS(1809), - [anon_sym_LT_LT] = ACTIONS(1809), - [anon_sym_GT_GT] = ACTIONS(1809), - [anon_sym_GT_GT_GT] = ACTIONS(1809), - [anon_sym_AMP_CARET] = ACTIONS(1809), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [anon_sym_PIPE_PIPE] = ACTIONS(1809), - [anon_sym_or] = ACTIONS(1809), - [sym_none] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_nil] = ACTIONS(1809), - [anon_sym_QMARK_DOT] = ACTIONS(1809), - [anon_sym_POUND_LBRACK] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_DOLLARif] = ACTIONS(1809), - [anon_sym_is] = ACTIONS(1809), - [anon_sym_BANGis] = ACTIONS(1809), - [anon_sym_in] = ACTIONS(1809), - [anon_sym_BANGin] = ACTIONS(1809), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_select] = ACTIONS(1809), - [anon_sym_lock] = ACTIONS(1809), - [anon_sym_rlock] = ACTIONS(1809), - [anon_sym_unsafe] = ACTIONS(1809), - [anon_sym_sql] = ACTIONS(1809), - [sym_int_literal] = ACTIONS(1809), - [sym_float_literal] = ACTIONS(1809), - [sym_rune_literal] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1809), - [anon_sym_c_SQUOTE] = ACTIONS(1809), - [anon_sym_c_DQUOTE] = ACTIONS(1809), - [anon_sym_r_SQUOTE] = ACTIONS(1809), - [anon_sym_r_DQUOTE] = ACTIONS(1809), - [sym_pseudo_compile_time_identifier] = ACTIONS(1809), - [anon_sym_shared] = ACTIONS(1809), - [anon_sym_map_LBRACK] = ACTIONS(1809), - [anon_sym_chan] = ACTIONS(1809), - [anon_sym_thread] = ACTIONS(1809), - [anon_sym_atomic] = ACTIONS(1809), - [anon_sym_assert] = ACTIONS(1809), - [anon_sym_defer] = ACTIONS(1809), - [anon_sym_goto] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_DOLLARfor] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_POUND] = ACTIONS(1809), - [anon_sym_asm] = ACTIONS(1809), - [anon_sym_AT_LBRACK] = ACTIONS(1809), + [anon_sym_DOT] = ACTIONS(3042), + [anon_sym_as] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(3042), + [anon_sym_const] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym___global] = ACTIONS(3042), + [anon_sym_type] = ACTIONS(3042), + [anon_sym_fn] = ACTIONS(3042), + [anon_sym_PLUS] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_SLASH] = ACTIONS(3042), + [anon_sym_PERCENT] = ACTIONS(3042), + [anon_sym_LT] = ACTIONS(3042), + [anon_sym_GT] = ACTIONS(3042), + [anon_sym_EQ_EQ] = ACTIONS(3042), + [anon_sym_BANG_EQ] = ACTIONS(3042), + [anon_sym_LT_EQ] = ACTIONS(3042), + [anon_sym_GT_EQ] = ACTIONS(3042), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_struct] = ACTIONS(3042), + [anon_sym_union] = ACTIONS(3042), + [anon_sym_pub] = ACTIONS(3042), + [anon_sym_mut] = ACTIONS(3042), + [anon_sym_enum] = ACTIONS(3042), + [anon_sym_interface] = ACTIONS(3042), + [anon_sym_PLUS_PLUS] = ACTIONS(3042), + [anon_sym_DASH_DASH] = ACTIONS(3042), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(3042), + [anon_sym_go] = ACTIONS(3042), + [anon_sym_spawn] = ACTIONS(3042), + [anon_sym_json_DOTdecode] = ACTIONS(3042), + [anon_sym_PIPE] = ACTIONS(3042), + [anon_sym_LBRACK2] = ACTIONS(3042), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_CARET] = ACTIONS(3042), + [anon_sym_AMP] = ACTIONS(3042), + [anon_sym_LT_DASH] = ACTIONS(3042), + [anon_sym_LT_LT] = ACTIONS(3042), + [anon_sym_GT_GT] = ACTIONS(3042), + [anon_sym_GT_GT_GT] = ACTIONS(3042), + [anon_sym_AMP_CARET] = ACTIONS(3042), + [anon_sym_AMP_AMP] = ACTIONS(3042), + [anon_sym_PIPE_PIPE] = ACTIONS(3042), + [anon_sym_or] = ACTIONS(3042), + [sym_none] = ACTIONS(3042), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_nil] = ACTIONS(3042), + [anon_sym_QMARK_DOT] = ACTIONS(3042), + [anon_sym_POUND_LBRACK] = ACTIONS(3042), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_DOLLARif] = ACTIONS(3042), + [anon_sym_is] = ACTIONS(3042), + [anon_sym_BANGis] = ACTIONS(3042), + [anon_sym_in] = ACTIONS(3042), + [anon_sym_BANGin] = ACTIONS(3042), + [anon_sym_match] = ACTIONS(3042), + [anon_sym_select] = ACTIONS(3042), + [anon_sym_lock] = ACTIONS(3042), + [anon_sym_rlock] = ACTIONS(3042), + [anon_sym_unsafe] = ACTIONS(3042), + [anon_sym_sql] = ACTIONS(3042), + [sym_int_literal] = ACTIONS(3042), + [sym_float_literal] = ACTIONS(3042), + [sym_rune_literal] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3042), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_c_SQUOTE] = ACTIONS(3042), + [anon_sym_c_DQUOTE] = ACTIONS(3042), + [anon_sym_r_SQUOTE] = ACTIONS(3042), + [anon_sym_r_DQUOTE] = ACTIONS(3042), + [sym_pseudo_compile_time_identifier] = ACTIONS(3042), + [anon_sym_shared] = ACTIONS(3042), + [anon_sym_map_LBRACK] = ACTIONS(3042), + [anon_sym_chan] = ACTIONS(3042), + [anon_sym_thread] = ACTIONS(3042), + [anon_sym_atomic] = ACTIONS(3042), + [anon_sym_assert] = ACTIONS(3042), + [anon_sym_defer] = ACTIONS(3042), + [anon_sym_goto] = ACTIONS(3042), + [anon_sym_break] = ACTIONS(3042), + [anon_sym_continue] = ACTIONS(3042), + [anon_sym_return] = ACTIONS(3042), + [anon_sym_DOLLARfor] = ACTIONS(3042), + [anon_sym_for] = ACTIONS(3042), + [anon_sym_POUND] = ACTIONS(3042), + [anon_sym_asm] = ACTIONS(3042), + [anon_sym_AT_LBRACK] = ACTIONS(3042), }, [1033] = { [sym_line_comment] = STATE(1033), [sym_block_comment] = STATE(1033), - [ts_builtin_sym_end] = ACTIONS(2169), - [sym_identifier] = ACTIONS(2171), - [anon_sym_LF] = ACTIONS(2171), - [anon_sym_CR] = ACTIONS(2171), - [anon_sym_CR_LF] = ACTIONS(2171), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_as] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_COMMA] = ACTIONS(2171), - [anon_sym_const] = ACTIONS(2171), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym___global] = ACTIONS(2171), - [anon_sym_type] = ACTIONS(2171), - [anon_sym_PIPE] = ACTIONS(2171), - [anon_sym_fn] = ACTIONS(2171), - [anon_sym_PLUS] = ACTIONS(2171), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_STAR] = ACTIONS(2171), - [anon_sym_SLASH] = ACTIONS(2171), - [anon_sym_PERCENT] = ACTIONS(2171), - [anon_sym_LT] = ACTIONS(2171), - [anon_sym_GT] = ACTIONS(2171), - [anon_sym_EQ_EQ] = ACTIONS(2171), - [anon_sym_BANG_EQ] = ACTIONS(2171), - [anon_sym_LT_EQ] = ACTIONS(2171), - [anon_sym_GT_EQ] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_struct] = ACTIONS(2171), - [anon_sym_union] = ACTIONS(2171), - [anon_sym_pub] = ACTIONS(2171), - [anon_sym_mut] = ACTIONS(2171), - [anon_sym_enum] = ACTIONS(2171), - [anon_sym_interface] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_QMARK] = ACTIONS(2171), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_go] = ACTIONS(2171), - [anon_sym_spawn] = ACTIONS(2171), - [anon_sym_json_DOTdecode] = ACTIONS(2171), - [anon_sym_LBRACK2] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_LT_DASH] = ACTIONS(2171), - [anon_sym_LT_LT] = ACTIONS(2171), - [anon_sym_GT_GT] = ACTIONS(2171), - [anon_sym_GT_GT_GT] = ACTIONS(2171), - [anon_sym_AMP_CARET] = ACTIONS(2171), - [anon_sym_AMP_AMP] = ACTIONS(2171), - [anon_sym_PIPE_PIPE] = ACTIONS(2171), - [anon_sym_or] = ACTIONS(2171), - [sym_none] = ACTIONS(2171), - [sym_true] = ACTIONS(2171), - [sym_false] = ACTIONS(2171), - [sym_nil] = ACTIONS(2171), - [anon_sym_QMARK_DOT] = ACTIONS(2171), - [anon_sym_POUND_LBRACK] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(2171), - [anon_sym_DOLLARif] = ACTIONS(2171), - [anon_sym_is] = ACTIONS(2171), - [anon_sym_BANGis] = ACTIONS(2171), - [anon_sym_in] = ACTIONS(2171), - [anon_sym_BANGin] = ACTIONS(2171), - [anon_sym_match] = ACTIONS(2171), - [anon_sym_select] = ACTIONS(2171), - [anon_sym_lock] = ACTIONS(2171), - [anon_sym_rlock] = ACTIONS(2171), - [anon_sym_unsafe] = ACTIONS(2171), - [anon_sym_sql] = ACTIONS(2171), - [sym_int_literal] = ACTIONS(2171), - [sym_float_literal] = ACTIONS(2171), - [sym_rune_literal] = ACTIONS(2171), - [anon_sym_SQUOTE] = ACTIONS(2171), - [anon_sym_DQUOTE] = ACTIONS(2171), - [anon_sym_c_SQUOTE] = ACTIONS(2171), - [anon_sym_c_DQUOTE] = ACTIONS(2171), - [anon_sym_r_SQUOTE] = ACTIONS(2171), - [anon_sym_r_DQUOTE] = ACTIONS(2171), - [sym_pseudo_compile_time_identifier] = ACTIONS(2171), - [anon_sym_shared] = ACTIONS(2171), - [anon_sym_map_LBRACK] = ACTIONS(2171), - [anon_sym_chan] = ACTIONS(2171), - [anon_sym_thread] = ACTIONS(2171), - [anon_sym_atomic] = ACTIONS(2171), - [anon_sym_assert] = ACTIONS(2171), - [anon_sym_defer] = ACTIONS(2171), - [anon_sym_goto] = ACTIONS(2171), - [anon_sym_break] = ACTIONS(2171), - [anon_sym_continue] = ACTIONS(2171), - [anon_sym_return] = ACTIONS(2171), - [anon_sym_DOLLARfor] = ACTIONS(2171), - [anon_sym_for] = ACTIONS(2171), - [anon_sym_POUND] = ACTIONS(2171), - [anon_sym_asm] = ACTIONS(2171), - [anon_sym_AT_LBRACK] = ACTIONS(2171), - }, - [1034] = { - [sym_line_comment] = STATE(1034), - [sym_block_comment] = STATE(1034), - [ts_builtin_sym_end] = ACTIONS(2165), - [sym_identifier] = ACTIONS(2167), - [anon_sym_LF] = ACTIONS(2167), - [anon_sym_CR] = ACTIONS(2167), - [anon_sym_CR_LF] = ACTIONS(2167), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2167), - [anon_sym_as] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_COMMA] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym___global] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_PIPE] = ACTIONS(2167), - [anon_sym_fn] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_STAR] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_PERCENT] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_GT] = ACTIONS(2167), - [anon_sym_EQ_EQ] = ACTIONS(2167), - [anon_sym_BANG_EQ] = ACTIONS(2167), - [anon_sym_LT_EQ] = ACTIONS(2167), - [anon_sym_GT_EQ] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_struct] = ACTIONS(2167), - [anon_sym_union] = ACTIONS(2167), - [anon_sym_pub] = ACTIONS(2167), - [anon_sym_mut] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [anon_sym_QMARK] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_go] = ACTIONS(2167), - [anon_sym_spawn] = ACTIONS(2167), - [anon_sym_json_DOTdecode] = ACTIONS(2167), - [anon_sym_LBRACK2] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_CARET] = ACTIONS(2167), - [anon_sym_AMP] = ACTIONS(2167), - [anon_sym_LT_DASH] = ACTIONS(2167), - [anon_sym_LT_LT] = ACTIONS(2167), - [anon_sym_GT_GT] = ACTIONS(2167), - [anon_sym_GT_GT_GT] = ACTIONS(2167), - [anon_sym_AMP_CARET] = ACTIONS(2167), - [anon_sym_AMP_AMP] = ACTIONS(2167), - [anon_sym_PIPE_PIPE] = ACTIONS(2167), - [anon_sym_or] = ACTIONS(2167), - [sym_none] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_nil] = ACTIONS(2167), - [anon_sym_QMARK_DOT] = ACTIONS(2167), - [anon_sym_POUND_LBRACK] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_DOLLARif] = ACTIONS(2167), - [anon_sym_is] = ACTIONS(2167), - [anon_sym_BANGis] = ACTIONS(2167), - [anon_sym_in] = ACTIONS(2167), - [anon_sym_BANGin] = ACTIONS(2167), - [anon_sym_match] = ACTIONS(2167), - [anon_sym_select] = ACTIONS(2167), - [anon_sym_lock] = ACTIONS(2167), - [anon_sym_rlock] = ACTIONS(2167), - [anon_sym_unsafe] = ACTIONS(2167), - [anon_sym_sql] = ACTIONS(2167), - [sym_int_literal] = ACTIONS(2167), - [sym_float_literal] = ACTIONS(2167), - [sym_rune_literal] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_c_SQUOTE] = ACTIONS(2167), - [anon_sym_c_DQUOTE] = ACTIONS(2167), - [anon_sym_r_SQUOTE] = ACTIONS(2167), - [anon_sym_r_DQUOTE] = ACTIONS(2167), - [sym_pseudo_compile_time_identifier] = ACTIONS(2167), - [anon_sym_shared] = ACTIONS(2167), - [anon_sym_map_LBRACK] = ACTIONS(2167), - [anon_sym_chan] = ACTIONS(2167), - [anon_sym_thread] = ACTIONS(2167), - [anon_sym_atomic] = ACTIONS(2167), - [anon_sym_assert] = ACTIONS(2167), - [anon_sym_defer] = ACTIONS(2167), - [anon_sym_goto] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_DOLLARfor] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_POUND] = ACTIONS(2167), - [anon_sym_asm] = ACTIONS(2167), - [anon_sym_AT_LBRACK] = ACTIONS(2167), - }, - [1035] = { - [sym_line_comment] = STATE(1035), - [sym_block_comment] = STATE(1035), - [ts_builtin_sym_end] = ACTIONS(2803), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LF] = ACTIONS(2805), - [anon_sym_CR] = ACTIONS(2805), - [anon_sym_CR_LF] = ACTIONS(2805), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2805), - [anon_sym_as] = ACTIONS(2805), - [anon_sym_LBRACE] = ACTIONS(2805), - [anon_sym_COMMA] = ACTIONS(2805), - [anon_sym_const] = ACTIONS(2805), - [anon_sym_LPAREN] = ACTIONS(2805), - [anon_sym___global] = ACTIONS(2805), - [anon_sym_type] = ACTIONS(2805), - [anon_sym_PIPE] = ACTIONS(2805), - [anon_sym_fn] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2805), - [anon_sym_DASH] = ACTIONS(2805), - [anon_sym_STAR] = ACTIONS(2805), - [anon_sym_SLASH] = ACTIONS(2805), - [anon_sym_PERCENT] = ACTIONS(2805), - [anon_sym_LT] = ACTIONS(2805), - [anon_sym_GT] = ACTIONS(2805), - [anon_sym_EQ_EQ] = ACTIONS(2805), - [anon_sym_BANG_EQ] = ACTIONS(2805), - [anon_sym_LT_EQ] = ACTIONS(2805), - [anon_sym_GT_EQ] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2805), - [anon_sym_union] = ACTIONS(2805), - [anon_sym_pub] = ACTIONS(2805), - [anon_sym_mut] = ACTIONS(2805), - [anon_sym_enum] = ACTIONS(2805), - [anon_sym_interface] = ACTIONS(2805), - [anon_sym_PLUS_PLUS] = ACTIONS(2805), - [anon_sym_DASH_DASH] = ACTIONS(2805), - [anon_sym_QMARK] = ACTIONS(2805), - [anon_sym_BANG] = ACTIONS(2805), - [anon_sym_go] = ACTIONS(2805), - [anon_sym_spawn] = ACTIONS(2805), - [anon_sym_json_DOTdecode] = ACTIONS(2805), - [anon_sym_LBRACK2] = ACTIONS(2805), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_CARET] = ACTIONS(2805), - [anon_sym_AMP] = ACTIONS(2805), - [anon_sym_LT_DASH] = ACTIONS(2805), - [anon_sym_LT_LT] = ACTIONS(2805), - [anon_sym_GT_GT] = ACTIONS(2805), - [anon_sym_GT_GT_GT] = ACTIONS(2805), - [anon_sym_AMP_CARET] = ACTIONS(2805), - [anon_sym_AMP_AMP] = ACTIONS(2805), - [anon_sym_PIPE_PIPE] = ACTIONS(2805), - [anon_sym_or] = ACTIONS(2805), - [sym_none] = ACTIONS(2805), - [sym_true] = ACTIONS(2805), - [sym_false] = ACTIONS(2805), - [sym_nil] = ACTIONS(2805), - [anon_sym_QMARK_DOT] = ACTIONS(2805), - [anon_sym_POUND_LBRACK] = ACTIONS(2805), - [anon_sym_if] = ACTIONS(2805), - [anon_sym_DOLLARif] = ACTIONS(2805), - [anon_sym_is] = ACTIONS(2805), - [anon_sym_BANGis] = ACTIONS(2805), - [anon_sym_in] = ACTIONS(2805), - [anon_sym_BANGin] = ACTIONS(2805), - [anon_sym_match] = ACTIONS(2805), - [anon_sym_select] = ACTIONS(2805), - [anon_sym_lock] = ACTIONS(2805), - [anon_sym_rlock] = ACTIONS(2805), - [anon_sym_unsafe] = ACTIONS(2805), - [anon_sym_sql] = ACTIONS(2805), - [sym_int_literal] = ACTIONS(2805), - [sym_float_literal] = ACTIONS(2805), - [sym_rune_literal] = ACTIONS(2805), - [anon_sym_SQUOTE] = ACTIONS(2805), - [anon_sym_DQUOTE] = ACTIONS(2805), - [anon_sym_c_SQUOTE] = ACTIONS(2805), - [anon_sym_c_DQUOTE] = ACTIONS(2805), - [anon_sym_r_SQUOTE] = ACTIONS(2805), - [anon_sym_r_DQUOTE] = ACTIONS(2805), - [sym_pseudo_compile_time_identifier] = ACTIONS(2805), - [anon_sym_shared] = ACTIONS(2805), - [anon_sym_map_LBRACK] = ACTIONS(2805), - [anon_sym_chan] = ACTIONS(2805), - [anon_sym_thread] = ACTIONS(2805), - [anon_sym_atomic] = ACTIONS(2805), - [anon_sym_assert] = ACTIONS(2805), - [anon_sym_defer] = ACTIONS(2805), - [anon_sym_goto] = ACTIONS(2805), - [anon_sym_break] = ACTIONS(2805), - [anon_sym_continue] = ACTIONS(2805), - [anon_sym_return] = ACTIONS(2805), - [anon_sym_DOLLARfor] = ACTIONS(2805), - [anon_sym_for] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(2805), - [anon_sym_asm] = ACTIONS(2805), - [anon_sym_AT_LBRACK] = ACTIONS(2805), - }, - [1036] = { - [sym_line_comment] = STATE(1036), - [sym_block_comment] = STATE(1036), - [ts_builtin_sym_end] = ACTIONS(2223), - [sym_identifier] = ACTIONS(2225), - [anon_sym_LF] = ACTIONS(2225), - [anon_sym_CR] = ACTIONS(2225), - [anon_sym_CR_LF] = ACTIONS(2225), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2225), - [anon_sym_as] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym___global] = ACTIONS(2225), - [anon_sym_type] = ACTIONS(2225), - [anon_sym_PIPE] = ACTIONS(2225), - [anon_sym_fn] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_STAR] = ACTIONS(2225), - [anon_sym_SLASH] = ACTIONS(2225), - [anon_sym_PERCENT] = ACTIONS(2225), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_GT] = ACTIONS(2225), - [anon_sym_EQ_EQ] = ACTIONS(2225), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_LT_EQ] = ACTIONS(2225), - [anon_sym_GT_EQ] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_struct] = ACTIONS(2225), - [anon_sym_union] = ACTIONS(2225), - [anon_sym_pub] = ACTIONS(2225), - [anon_sym_mut] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), - [anon_sym_interface] = ACTIONS(2225), - [anon_sym_PLUS_PLUS] = ACTIONS(2225), - [anon_sym_DASH_DASH] = ACTIONS(2225), - [anon_sym_QMARK] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_go] = ACTIONS(2225), - [anon_sym_spawn] = ACTIONS(2225), - [anon_sym_json_DOTdecode] = ACTIONS(2225), - [anon_sym_LBRACK2] = ACTIONS(2225), - [anon_sym_TILDE] = ACTIONS(2225), - [anon_sym_CARET] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2225), - [anon_sym_LT_DASH] = ACTIONS(2225), - [anon_sym_LT_LT] = ACTIONS(2225), - [anon_sym_GT_GT] = ACTIONS(2225), - [anon_sym_GT_GT_GT] = ACTIONS(2225), - [anon_sym_AMP_CARET] = ACTIONS(2225), - [anon_sym_AMP_AMP] = ACTIONS(2225), - [anon_sym_PIPE_PIPE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2225), - [sym_none] = ACTIONS(2225), - [sym_true] = ACTIONS(2225), - [sym_false] = ACTIONS(2225), - [sym_nil] = ACTIONS(2225), - [anon_sym_QMARK_DOT] = ACTIONS(2225), - [anon_sym_POUND_LBRACK] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_DOLLARif] = ACTIONS(2225), - [anon_sym_is] = ACTIONS(2225), - [anon_sym_BANGis] = ACTIONS(2225), - [anon_sym_in] = ACTIONS(2225), - [anon_sym_BANGin] = ACTIONS(2225), - [anon_sym_match] = ACTIONS(2225), - [anon_sym_select] = ACTIONS(2225), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(2225), - [anon_sym_sql] = ACTIONS(2225), - [sym_int_literal] = ACTIONS(2225), - [sym_float_literal] = ACTIONS(2225), - [sym_rune_literal] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE] = ACTIONS(2225), - [anon_sym_c_SQUOTE] = ACTIONS(2225), - [anon_sym_c_DQUOTE] = ACTIONS(2225), - [anon_sym_r_SQUOTE] = ACTIONS(2225), - [anon_sym_r_DQUOTE] = ACTIONS(2225), - [sym_pseudo_compile_time_identifier] = ACTIONS(2225), - [anon_sym_shared] = ACTIONS(2225), - [anon_sym_map_LBRACK] = ACTIONS(2225), - [anon_sym_chan] = ACTIONS(2225), - [anon_sym_thread] = ACTIONS(2225), - [anon_sym_atomic] = ACTIONS(2225), - [anon_sym_assert] = ACTIONS(2225), - [anon_sym_defer] = ACTIONS(2225), - [anon_sym_goto] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_DOLLARfor] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_POUND] = ACTIONS(2225), - [anon_sym_asm] = ACTIONS(2225), - [anon_sym_AT_LBRACK] = ACTIONS(2225), - }, - [1037] = { - [sym_line_comment] = STATE(1037), - [sym_block_comment] = STATE(1037), - [ts_builtin_sym_end] = ACTIONS(2227), - [sym_identifier] = ACTIONS(2229), - [anon_sym_LF] = ACTIONS(2229), - [anon_sym_CR] = ACTIONS(2229), - [anon_sym_CR_LF] = ACTIONS(2229), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2229), - [anon_sym_as] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2229), - [anon_sym_COMMA] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym___global] = ACTIONS(2229), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_PIPE] = ACTIONS(2229), - [anon_sym_fn] = ACTIONS(2229), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_STAR] = ACTIONS(2229), - [anon_sym_SLASH] = ACTIONS(2229), - [anon_sym_PERCENT] = ACTIONS(2229), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_GT] = ACTIONS(2229), - [anon_sym_EQ_EQ] = ACTIONS(2229), - [anon_sym_BANG_EQ] = ACTIONS(2229), - [anon_sym_LT_EQ] = ACTIONS(2229), - [anon_sym_GT_EQ] = ACTIONS(2229), - [anon_sym_LBRACK] = ACTIONS(2227), - [anon_sym_struct] = ACTIONS(2229), - [anon_sym_union] = ACTIONS(2229), - [anon_sym_pub] = ACTIONS(2229), - [anon_sym_mut] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [anon_sym_interface] = ACTIONS(2229), - [anon_sym_PLUS_PLUS] = ACTIONS(2229), - [anon_sym_DASH_DASH] = ACTIONS(2229), - [anon_sym_QMARK] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2229), - [anon_sym_go] = ACTIONS(2229), - [anon_sym_spawn] = ACTIONS(2229), - [anon_sym_json_DOTdecode] = ACTIONS(2229), - [anon_sym_LBRACK2] = ACTIONS(2229), - [anon_sym_TILDE] = ACTIONS(2229), - [anon_sym_CARET] = ACTIONS(2229), - [anon_sym_AMP] = ACTIONS(2229), - [anon_sym_LT_DASH] = ACTIONS(2229), - [anon_sym_LT_LT] = ACTIONS(2229), - [anon_sym_GT_GT] = ACTIONS(2229), - [anon_sym_GT_GT_GT] = ACTIONS(2229), - [anon_sym_AMP_CARET] = ACTIONS(2229), - [anon_sym_AMP_AMP] = ACTIONS(2229), - [anon_sym_PIPE_PIPE] = ACTIONS(2229), - [anon_sym_or] = ACTIONS(2229), - [sym_none] = ACTIONS(2229), - [sym_true] = ACTIONS(2229), - [sym_false] = ACTIONS(2229), - [sym_nil] = ACTIONS(2229), - [anon_sym_QMARK_DOT] = ACTIONS(2229), - [anon_sym_POUND_LBRACK] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_DOLLARif] = ACTIONS(2229), - [anon_sym_is] = ACTIONS(2229), - [anon_sym_BANGis] = ACTIONS(2229), - [anon_sym_in] = ACTIONS(2229), - [anon_sym_BANGin] = ACTIONS(2229), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_select] = ACTIONS(2229), - [anon_sym_lock] = ACTIONS(2229), - [anon_sym_rlock] = ACTIONS(2229), - [anon_sym_unsafe] = ACTIONS(2229), - [anon_sym_sql] = ACTIONS(2229), - [sym_int_literal] = ACTIONS(2229), - [sym_float_literal] = ACTIONS(2229), - [sym_rune_literal] = ACTIONS(2229), - [anon_sym_SQUOTE] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2229), - [anon_sym_c_SQUOTE] = ACTIONS(2229), - [anon_sym_c_DQUOTE] = ACTIONS(2229), - [anon_sym_r_SQUOTE] = ACTIONS(2229), - [anon_sym_r_DQUOTE] = ACTIONS(2229), - [sym_pseudo_compile_time_identifier] = ACTIONS(2229), - [anon_sym_shared] = ACTIONS(2229), - [anon_sym_map_LBRACK] = ACTIONS(2229), - [anon_sym_chan] = ACTIONS(2229), - [anon_sym_thread] = ACTIONS(2229), - [anon_sym_atomic] = ACTIONS(2229), - [anon_sym_assert] = ACTIONS(2229), - [anon_sym_defer] = ACTIONS(2229), - [anon_sym_goto] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_DOLLARfor] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_POUND] = ACTIONS(2229), - [anon_sym_asm] = ACTIONS(2229), - [anon_sym_AT_LBRACK] = ACTIONS(2229), - }, - [1038] = { - [sym_line_comment] = STATE(1038), - [sym_block_comment] = STATE(1038), - [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), + [ts_builtin_sym_end] = ACTIONS(3064), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LF] = ACTIONS(3066), + [anon_sym_CR] = ACTIONS(3066), + [anon_sym_CR_LF] = ACTIONS(3066), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2715), - [anon_sym_as] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(2715), - [anon_sym_COMMA] = ACTIONS(2029), - [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), - [anon_sym_SQUOTE] = ACTIONS(2715), - [anon_sym_DQUOTE] = ACTIONS(2715), - [anon_sym_c_SQUOTE] = ACTIONS(2715), - [anon_sym_c_DQUOTE] = ACTIONS(2715), - [anon_sym_r_SQUOTE] = ACTIONS(2715), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(3066), + [anon_sym_as] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3066), + [anon_sym_COMMA] = ACTIONS(3066), + [anon_sym_const] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym___global] = ACTIONS(3066), + [anon_sym_type] = ACTIONS(3066), + [anon_sym_fn] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3066), + [anon_sym_STAR] = ACTIONS(3066), + [anon_sym_SLASH] = ACTIONS(3066), + [anon_sym_PERCENT] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_GT] = ACTIONS(3066), + [anon_sym_EQ_EQ] = ACTIONS(3066), + [anon_sym_BANG_EQ] = ACTIONS(3066), + [anon_sym_LT_EQ] = ACTIONS(3066), + [anon_sym_GT_EQ] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(3066), + [anon_sym_pub] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(3066), + [anon_sym_enum] = ACTIONS(3066), + [anon_sym_interface] = ACTIONS(3066), + [anon_sym_PLUS_PLUS] = ACTIONS(3066), + [anon_sym_DASH_DASH] = ACTIONS(3066), + [anon_sym_QMARK] = ACTIONS(3066), + [anon_sym_BANG] = ACTIONS(3066), + [anon_sym_go] = ACTIONS(3066), + [anon_sym_spawn] = ACTIONS(3066), + [anon_sym_json_DOTdecode] = ACTIONS(3066), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_LBRACK2] = ACTIONS(3066), + [anon_sym_TILDE] = ACTIONS(3066), + [anon_sym_CARET] = ACTIONS(3066), + [anon_sym_AMP] = ACTIONS(3066), + [anon_sym_LT_DASH] = ACTIONS(3066), + [anon_sym_LT_LT] = ACTIONS(3066), + [anon_sym_GT_GT] = ACTIONS(3066), + [anon_sym_GT_GT_GT] = ACTIONS(3066), + [anon_sym_AMP_CARET] = ACTIONS(3066), + [anon_sym_AMP_AMP] = ACTIONS(3066), + [anon_sym_PIPE_PIPE] = ACTIONS(3066), + [anon_sym_or] = ACTIONS(3066), + [sym_none] = ACTIONS(3066), + [sym_true] = ACTIONS(3066), + [sym_false] = ACTIONS(3066), + [sym_nil] = ACTIONS(3066), + [anon_sym_QMARK_DOT] = ACTIONS(3066), + [anon_sym_POUND_LBRACK] = ACTIONS(3066), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_DOLLARif] = ACTIONS(3066), + [anon_sym_is] = ACTIONS(3066), + [anon_sym_BANGis] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(3066), + [anon_sym_BANGin] = ACTIONS(3066), + [anon_sym_match] = ACTIONS(3066), + [anon_sym_select] = ACTIONS(3066), + [anon_sym_lock] = ACTIONS(3066), + [anon_sym_rlock] = ACTIONS(3066), + [anon_sym_unsafe] = ACTIONS(3066), + [anon_sym_sql] = ACTIONS(3066), + [sym_int_literal] = ACTIONS(3066), + [sym_float_literal] = ACTIONS(3066), + [sym_rune_literal] = ACTIONS(3066), + [anon_sym_SQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3066), + [anon_sym_c_SQUOTE] = ACTIONS(3066), + [anon_sym_c_DQUOTE] = ACTIONS(3066), + [anon_sym_r_SQUOTE] = ACTIONS(3066), + [anon_sym_r_DQUOTE] = ACTIONS(3066), + [sym_pseudo_compile_time_identifier] = ACTIONS(3066), + [anon_sym_shared] = ACTIONS(3066), + [anon_sym_map_LBRACK] = ACTIONS(3066), + [anon_sym_chan] = ACTIONS(3066), + [anon_sym_thread] = ACTIONS(3066), + [anon_sym_atomic] = ACTIONS(3066), + [anon_sym_assert] = ACTIONS(3066), + [anon_sym_defer] = ACTIONS(3066), + [anon_sym_goto] = ACTIONS(3066), + [anon_sym_break] = ACTIONS(3066), + [anon_sym_continue] = ACTIONS(3066), + [anon_sym_return] = ACTIONS(3066), + [anon_sym_DOLLARfor] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(3066), + [anon_sym_POUND] = ACTIONS(3066), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym_AT_LBRACK] = ACTIONS(3066), + }, + [1034] = { + [sym_line_comment] = STATE(1034), + [sym_block_comment] = STATE(1034), + [ts_builtin_sym_end] = ACTIONS(3052), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LF] = ACTIONS(3054), + [anon_sym_CR] = ACTIONS(3054), + [anon_sym_CR_LF] = ACTIONS(3054), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_as] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_COMMA] = ACTIONS(3054), + [anon_sym_const] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym___global] = ACTIONS(3054), + [anon_sym_type] = ACTIONS(3054), + [anon_sym_fn] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(3054), + [anon_sym_SLASH] = ACTIONS(3054), + [anon_sym_PERCENT] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3054), + [anon_sym_EQ_EQ] = ACTIONS(3054), + [anon_sym_BANG_EQ] = ACTIONS(3054), + [anon_sym_LT_EQ] = ACTIONS(3054), + [anon_sym_GT_EQ] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_struct] = ACTIONS(3054), + [anon_sym_union] = ACTIONS(3054), + [anon_sym_pub] = ACTIONS(3054), + [anon_sym_mut] = ACTIONS(3054), + [anon_sym_enum] = ACTIONS(3054), + [anon_sym_interface] = ACTIONS(3054), + [anon_sym_PLUS_PLUS] = ACTIONS(3054), + [anon_sym_DASH_DASH] = ACTIONS(3054), + [anon_sym_QMARK] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(3054), + [anon_sym_go] = ACTIONS(3054), + [anon_sym_spawn] = ACTIONS(3054), + [anon_sym_json_DOTdecode] = ACTIONS(3054), + [anon_sym_PIPE] = ACTIONS(3054), + [anon_sym_LBRACK2] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3054), + [anon_sym_CARET] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT_DASH] = ACTIONS(3054), + [anon_sym_LT_LT] = ACTIONS(3054), + [anon_sym_GT_GT] = ACTIONS(3054), + [anon_sym_GT_GT_GT] = ACTIONS(3054), + [anon_sym_AMP_CARET] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_PIPE_PIPE] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3054), + [sym_none] = ACTIONS(3054), + [sym_true] = ACTIONS(3054), + [sym_false] = ACTIONS(3054), + [sym_nil] = ACTIONS(3054), + [anon_sym_QMARK_DOT] = ACTIONS(3054), + [anon_sym_POUND_LBRACK] = ACTIONS(3054), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_DOLLARif] = ACTIONS(3054), + [anon_sym_is] = ACTIONS(3054), + [anon_sym_BANGis] = ACTIONS(3054), + [anon_sym_in] = ACTIONS(3054), + [anon_sym_BANGin] = ACTIONS(3054), + [anon_sym_match] = ACTIONS(3054), + [anon_sym_select] = ACTIONS(3054), + [anon_sym_lock] = ACTIONS(3054), + [anon_sym_rlock] = ACTIONS(3054), + [anon_sym_unsafe] = ACTIONS(3054), + [anon_sym_sql] = ACTIONS(3054), + [sym_int_literal] = ACTIONS(3054), + [sym_float_literal] = ACTIONS(3054), + [sym_rune_literal] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_c_SQUOTE] = ACTIONS(3054), + [anon_sym_c_DQUOTE] = ACTIONS(3054), + [anon_sym_r_SQUOTE] = ACTIONS(3054), + [anon_sym_r_DQUOTE] = ACTIONS(3054), + [sym_pseudo_compile_time_identifier] = ACTIONS(3054), + [anon_sym_shared] = ACTIONS(3054), + [anon_sym_map_LBRACK] = ACTIONS(3054), + [anon_sym_chan] = ACTIONS(3054), + [anon_sym_thread] = ACTIONS(3054), + [anon_sym_atomic] = ACTIONS(3054), + [anon_sym_assert] = ACTIONS(3054), + [anon_sym_defer] = ACTIONS(3054), + [anon_sym_goto] = ACTIONS(3054), + [anon_sym_break] = ACTIONS(3054), + [anon_sym_continue] = ACTIONS(3054), + [anon_sym_return] = ACTIONS(3054), + [anon_sym_DOLLARfor] = ACTIONS(3054), + [anon_sym_for] = ACTIONS(3054), + [anon_sym_POUND] = ACTIONS(3054), + [anon_sym_asm] = ACTIONS(3054), + [anon_sym_AT_LBRACK] = ACTIONS(3054), + }, + [1035] = { + [sym_line_comment] = STATE(1035), + [sym_block_comment] = STATE(1035), + [ts_builtin_sym_end] = ACTIONS(2109), + [sym_identifier] = ACTIONS(2111), + [anon_sym_LF] = ACTIONS(2111), + [anon_sym_CR] = ACTIONS(2111), + [anon_sym_CR_LF] = ACTIONS(2111), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2111), + [anon_sym_as] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_COMMA] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym___global] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_fn] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_PERCENT] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_GT] = ACTIONS(2111), + [anon_sym_EQ_EQ] = ACTIONS(2111), + [anon_sym_BANG_EQ] = ACTIONS(2111), + [anon_sym_LT_EQ] = ACTIONS(2111), + [anon_sym_GT_EQ] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_struct] = ACTIONS(2111), + [anon_sym_union] = ACTIONS(2111), + [anon_sym_pub] = ACTIONS(2111), + [anon_sym_mut] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [anon_sym_QMARK] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_go] = ACTIONS(2111), + [anon_sym_spawn] = ACTIONS(2111), + [anon_sym_json_DOTdecode] = ACTIONS(2111), + [anon_sym_PIPE] = ACTIONS(2111), + [anon_sym_LBRACK2] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_CARET] = ACTIONS(2111), + [anon_sym_AMP] = ACTIONS(2111), + [anon_sym_LT_DASH] = ACTIONS(2111), + [anon_sym_LT_LT] = ACTIONS(2111), + [anon_sym_GT_GT] = ACTIONS(2111), + [anon_sym_GT_GT_GT] = ACTIONS(2111), + [anon_sym_AMP_CARET] = ACTIONS(2111), + [anon_sym_AMP_AMP] = ACTIONS(2111), + [anon_sym_PIPE_PIPE] = ACTIONS(2111), + [anon_sym_or] = ACTIONS(2111), + [sym_none] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_nil] = ACTIONS(2111), + [anon_sym_QMARK_DOT] = ACTIONS(2111), + [anon_sym_POUND_LBRACK] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_DOLLARif] = ACTIONS(2111), + [anon_sym_is] = ACTIONS(2111), + [anon_sym_BANGis] = ACTIONS(2111), + [anon_sym_in] = ACTIONS(2111), + [anon_sym_BANGin] = ACTIONS(2111), + [anon_sym_match] = ACTIONS(2111), + [anon_sym_select] = ACTIONS(2111), + [anon_sym_lock] = ACTIONS(2111), + [anon_sym_rlock] = ACTIONS(2111), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(2111), + [sym_int_literal] = ACTIONS(2111), + [sym_float_literal] = ACTIONS(2111), + [sym_rune_literal] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_c_SQUOTE] = ACTIONS(2111), + [anon_sym_c_DQUOTE] = ACTIONS(2111), + [anon_sym_r_SQUOTE] = ACTIONS(2111), + [anon_sym_r_DQUOTE] = ACTIONS(2111), + [sym_pseudo_compile_time_identifier] = ACTIONS(2111), + [anon_sym_shared] = ACTIONS(2111), + [anon_sym_map_LBRACK] = ACTIONS(2111), + [anon_sym_chan] = ACTIONS(2111), + [anon_sym_thread] = ACTIONS(2111), + [anon_sym_atomic] = ACTIONS(2111), + [anon_sym_assert] = ACTIONS(2111), + [anon_sym_defer] = ACTIONS(2111), + [anon_sym_goto] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_DOLLARfor] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_POUND] = ACTIONS(2111), + [anon_sym_asm] = ACTIONS(2111), + [anon_sym_AT_LBRACK] = ACTIONS(2111), + }, + [1036] = { + [sym_line_comment] = STATE(1036), + [sym_block_comment] = STATE(1036), + [ts_builtin_sym_end] = ACTIONS(2743), + [sym_identifier] = ACTIONS(2745), + [anon_sym_LF] = ACTIONS(2745), + [anon_sym_CR] = ACTIONS(2745), + [anon_sym_CR_LF] = ACTIONS(2745), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2745), + [anon_sym_as] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2745), + [anon_sym_COMMA] = ACTIONS(2745), + [anon_sym_const] = ACTIONS(2745), + [anon_sym_LPAREN] = ACTIONS(2745), + [anon_sym___global] = ACTIONS(2745), + [anon_sym_type] = ACTIONS(2745), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_SLASH] = ACTIONS(2745), + [anon_sym_PERCENT] = ACTIONS(2745), + [anon_sym_LT] = ACTIONS(2745), + [anon_sym_GT] = ACTIONS(2745), + [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(2743), + [anon_sym_struct] = ACTIONS(2745), + [anon_sym_union] = ACTIONS(2745), + [anon_sym_pub] = ACTIONS(2745), + [anon_sym_mut] = ACTIONS(2745), + [anon_sym_enum] = ACTIONS(2745), + [anon_sym_interface] = ACTIONS(2745), + [anon_sym_PLUS_PLUS] = ACTIONS(2745), + [anon_sym_DASH_DASH] = ACTIONS(2745), + [anon_sym_QMARK] = ACTIONS(2745), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_go] = ACTIONS(2745), + [anon_sym_spawn] = ACTIONS(2745), + [anon_sym_json_DOTdecode] = ACTIONS(2745), + [anon_sym_PIPE] = ACTIONS(2745), + [anon_sym_LBRACK2] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_CARET] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2745), + [anon_sym_LT_DASH] = ACTIONS(2745), + [anon_sym_LT_LT] = ACTIONS(2745), + [anon_sym_GT_GT] = ACTIONS(2745), + [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(2745), + [sym_none] = ACTIONS(2745), + [sym_true] = ACTIONS(2745), + [sym_false] = ACTIONS(2745), + [sym_nil] = ACTIONS(2745), + [anon_sym_QMARK_DOT] = ACTIONS(2745), + [anon_sym_POUND_LBRACK] = ACTIONS(2745), + [anon_sym_if] = ACTIONS(2745), + [anon_sym_DOLLARif] = ACTIONS(2745), + [anon_sym_is] = ACTIONS(2745), + [anon_sym_BANGis] = ACTIONS(2745), + [anon_sym_in] = ACTIONS(2745), + [anon_sym_BANGin] = ACTIONS(2745), + [anon_sym_match] = ACTIONS(2745), + [anon_sym_select] = ACTIONS(2745), + [anon_sym_lock] = ACTIONS(2745), + [anon_sym_rlock] = ACTIONS(2745), + [anon_sym_unsafe] = ACTIONS(2745), + [anon_sym_sql] = ACTIONS(2745), + [sym_int_literal] = ACTIONS(2745), + [sym_float_literal] = ACTIONS(2745), + [sym_rune_literal] = ACTIONS(2745), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2745), + [anon_sym_c_SQUOTE] = ACTIONS(2745), + [anon_sym_c_DQUOTE] = ACTIONS(2745), + [anon_sym_r_SQUOTE] = ACTIONS(2745), + [anon_sym_r_DQUOTE] = ACTIONS(2745), + [sym_pseudo_compile_time_identifier] = ACTIONS(2745), + [anon_sym_shared] = ACTIONS(2745), + [anon_sym_map_LBRACK] = ACTIONS(2745), + [anon_sym_chan] = ACTIONS(2745), + [anon_sym_thread] = ACTIONS(2745), + [anon_sym_atomic] = ACTIONS(2745), + [anon_sym_assert] = ACTIONS(2745), + [anon_sym_defer] = ACTIONS(2745), + [anon_sym_goto] = ACTIONS(2745), + [anon_sym_break] = ACTIONS(2745), + [anon_sym_continue] = ACTIONS(2745), + [anon_sym_return] = ACTIONS(2745), + [anon_sym_DOLLARfor] = ACTIONS(2745), + [anon_sym_for] = ACTIONS(2745), + [anon_sym_POUND] = ACTIONS(2745), + [anon_sym_asm] = ACTIONS(2745), + [anon_sym_AT_LBRACK] = ACTIONS(2745), + }, + [1037] = { + [sym_line_comment] = STATE(1037), + [sym_block_comment] = STATE(1037), + [ts_builtin_sym_end] = ACTIONS(3044), + [sym_identifier] = ACTIONS(3046), + [anon_sym_LF] = ACTIONS(3046), + [anon_sym_CR] = ACTIONS(3046), + [anon_sym_CR_LF] = ACTIONS(3046), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3046), + [anon_sym_as] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(3046), + [anon_sym_const] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym___global] = ACTIONS(3046), + [anon_sym_type] = ACTIONS(3046), + [anon_sym_fn] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_SLASH] = ACTIONS(3046), + [anon_sym_PERCENT] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(3046), + [anon_sym_GT] = ACTIONS(3046), + [anon_sym_EQ_EQ] = ACTIONS(3046), + [anon_sym_BANG_EQ] = ACTIONS(3046), + [anon_sym_LT_EQ] = ACTIONS(3046), + [anon_sym_GT_EQ] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_struct] = ACTIONS(3046), + [anon_sym_union] = ACTIONS(3046), + [anon_sym_pub] = ACTIONS(3046), + [anon_sym_mut] = ACTIONS(3046), + [anon_sym_enum] = ACTIONS(3046), + [anon_sym_interface] = ACTIONS(3046), + [anon_sym_PLUS_PLUS] = ACTIONS(3046), + [anon_sym_DASH_DASH] = ACTIONS(3046), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_go] = ACTIONS(3046), + [anon_sym_spawn] = ACTIONS(3046), + [anon_sym_json_DOTdecode] = ACTIONS(3046), + [anon_sym_PIPE] = ACTIONS(3046), + [anon_sym_LBRACK2] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_CARET] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_LT_DASH] = ACTIONS(3046), + [anon_sym_LT_LT] = ACTIONS(3046), + [anon_sym_GT_GT] = ACTIONS(3046), + [anon_sym_GT_GT_GT] = ACTIONS(3046), + [anon_sym_AMP_CARET] = ACTIONS(3046), + [anon_sym_AMP_AMP] = ACTIONS(3046), + [anon_sym_PIPE_PIPE] = ACTIONS(3046), + [anon_sym_or] = ACTIONS(3046), + [sym_none] = ACTIONS(3046), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_nil] = ACTIONS(3046), + [anon_sym_QMARK_DOT] = ACTIONS(3046), + [anon_sym_POUND_LBRACK] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_DOLLARif] = ACTIONS(3046), + [anon_sym_is] = ACTIONS(3046), + [anon_sym_BANGis] = ACTIONS(3046), + [anon_sym_in] = ACTIONS(3046), + [anon_sym_BANGin] = ACTIONS(3046), + [anon_sym_match] = ACTIONS(3046), + [anon_sym_select] = ACTIONS(3046), + [anon_sym_lock] = ACTIONS(3046), + [anon_sym_rlock] = ACTIONS(3046), + [anon_sym_unsafe] = ACTIONS(3046), + [anon_sym_sql] = ACTIONS(3046), + [sym_int_literal] = ACTIONS(3046), + [sym_float_literal] = ACTIONS(3046), + [sym_rune_literal] = ACTIONS(3046), + [anon_sym_SQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_c_SQUOTE] = ACTIONS(3046), + [anon_sym_c_DQUOTE] = ACTIONS(3046), + [anon_sym_r_SQUOTE] = ACTIONS(3046), + [anon_sym_r_DQUOTE] = ACTIONS(3046), + [sym_pseudo_compile_time_identifier] = ACTIONS(3046), + [anon_sym_shared] = ACTIONS(3046), + [anon_sym_map_LBRACK] = ACTIONS(3046), + [anon_sym_chan] = ACTIONS(3046), + [anon_sym_thread] = ACTIONS(3046), + [anon_sym_atomic] = ACTIONS(3046), + [anon_sym_assert] = ACTIONS(3046), + [anon_sym_defer] = ACTIONS(3046), + [anon_sym_goto] = ACTIONS(3046), + [anon_sym_break] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_DOLLARfor] = ACTIONS(3046), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_POUND] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3046), + [anon_sym_AT_LBRACK] = ACTIONS(3046), + }, + [1038] = { + [sym_line_comment] = STATE(1038), + [sym_block_comment] = STATE(1038), + [ts_builtin_sym_end] = ACTIONS(2325), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LF] = ACTIONS(2327), + [anon_sym_CR] = ACTIONS(2327), + [anon_sym_CR_LF] = ACTIONS(2327), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2327), + [anon_sym_as] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_COMMA] = ACTIONS(2327), + [anon_sym_const] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym___global] = ACTIONS(2327), + [anon_sym_type] = ACTIONS(2327), + [anon_sym_fn] = ACTIONS(2327), + [anon_sym_PLUS] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2327), + [anon_sym_SLASH] = ACTIONS(2327), + [anon_sym_PERCENT] = ACTIONS(2327), + [anon_sym_LT] = ACTIONS(2327), + [anon_sym_GT] = ACTIONS(2327), + [anon_sym_EQ_EQ] = ACTIONS(2327), + [anon_sym_BANG_EQ] = ACTIONS(2327), + [anon_sym_LT_EQ] = ACTIONS(2327), + [anon_sym_GT_EQ] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2325), + [anon_sym_struct] = ACTIONS(2327), + [anon_sym_union] = ACTIONS(2327), + [anon_sym_pub] = ACTIONS(2327), + [anon_sym_mut] = ACTIONS(2327), + [anon_sym_enum] = ACTIONS(2327), + [anon_sym_interface] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [anon_sym_QMARK] = ACTIONS(2327), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_go] = ACTIONS(2327), + [anon_sym_spawn] = ACTIONS(2327), + [anon_sym_json_DOTdecode] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_LBRACK2] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_CARET] = ACTIONS(2327), + [anon_sym_AMP] = ACTIONS(2327), + [anon_sym_LT_DASH] = ACTIONS(2327), + [anon_sym_LT_LT] = ACTIONS(2327), + [anon_sym_GT_GT] = ACTIONS(2327), + [anon_sym_GT_GT_GT] = ACTIONS(2327), + [anon_sym_AMP_CARET] = ACTIONS(2327), + [anon_sym_AMP_AMP] = ACTIONS(2327), + [anon_sym_PIPE_PIPE] = ACTIONS(2327), + [anon_sym_or] = ACTIONS(2327), + [sym_none] = ACTIONS(2327), + [sym_true] = ACTIONS(2327), + [sym_false] = ACTIONS(2327), + [sym_nil] = ACTIONS(2327), + [anon_sym_QMARK_DOT] = ACTIONS(2327), + [anon_sym_POUND_LBRACK] = ACTIONS(2327), + [anon_sym_if] = ACTIONS(2327), + [anon_sym_DOLLARif] = ACTIONS(2327), + [anon_sym_is] = ACTIONS(2327), + [anon_sym_BANGis] = ACTIONS(2327), + [anon_sym_in] = ACTIONS(2327), + [anon_sym_BANGin] = ACTIONS(2327), + [anon_sym_match] = ACTIONS(2327), + [anon_sym_select] = ACTIONS(2327), + [anon_sym_lock] = ACTIONS(2327), + [anon_sym_rlock] = ACTIONS(2327), + [anon_sym_unsafe] = ACTIONS(2327), + [anon_sym_sql] = ACTIONS(2327), + [sym_int_literal] = ACTIONS(2327), + [sym_float_literal] = ACTIONS(2327), + [sym_rune_literal] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [anon_sym_c_SQUOTE] = ACTIONS(2327), + [anon_sym_c_DQUOTE] = ACTIONS(2327), + [anon_sym_r_SQUOTE] = ACTIONS(2327), + [anon_sym_r_DQUOTE] = ACTIONS(2327), + [sym_pseudo_compile_time_identifier] = ACTIONS(2327), + [anon_sym_shared] = ACTIONS(2327), + [anon_sym_map_LBRACK] = ACTIONS(2327), + [anon_sym_chan] = ACTIONS(2327), + [anon_sym_thread] = ACTIONS(2327), + [anon_sym_atomic] = ACTIONS(2327), + [anon_sym_assert] = ACTIONS(2327), + [anon_sym_defer] = ACTIONS(2327), + [anon_sym_goto] = ACTIONS(2327), + [anon_sym_break] = ACTIONS(2327), + [anon_sym_continue] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(2327), + [anon_sym_DOLLARfor] = ACTIONS(2327), + [anon_sym_for] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(2327), + [anon_sym_asm] = ACTIONS(2327), + [anon_sym_AT_LBRACK] = ACTIONS(2327), }, [1039] = { [sym_line_comment] = STATE(1039), [sym_block_comment] = STATE(1039), - [ts_builtin_sym_end] = ACTIONS(3050), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LF] = ACTIONS(3052), - [anon_sym_CR] = ACTIONS(3052), - [anon_sym_CR_LF] = ACTIONS(3052), + [ts_builtin_sym_end] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1845), + [anon_sym_LF] = ACTIONS(1845), + [anon_sym_CR] = ACTIONS(1845), + [anon_sym_CR_LF] = ACTIONS(1845), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3052), - [anon_sym_as] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_COMMA] = ACTIONS(3052), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym___global] = ACTIONS(3052), - [anon_sym_type] = ACTIONS(3052), - [anon_sym_PIPE] = ACTIONS(3052), - [anon_sym_fn] = ACTIONS(3052), - [anon_sym_PLUS] = ACTIONS(3052), - [anon_sym_DASH] = ACTIONS(3052), - [anon_sym_STAR] = ACTIONS(3052), - [anon_sym_SLASH] = ACTIONS(3052), - [anon_sym_PERCENT] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3052), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_LT_EQ] = ACTIONS(3052), - [anon_sym_GT_EQ] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3050), - [anon_sym_struct] = ACTIONS(3052), - [anon_sym_union] = ACTIONS(3052), - [anon_sym_pub] = ACTIONS(3052), - [anon_sym_mut] = ACTIONS(3052), - [anon_sym_enum] = ACTIONS(3052), - [anon_sym_interface] = ACTIONS(3052), - [anon_sym_PLUS_PLUS] = ACTIONS(3052), - [anon_sym_DASH_DASH] = ACTIONS(3052), - [anon_sym_QMARK] = ACTIONS(3052), - [anon_sym_BANG] = ACTIONS(3052), - [anon_sym_go] = ACTIONS(3052), - [anon_sym_spawn] = ACTIONS(3052), - [anon_sym_json_DOTdecode] = ACTIONS(3052), - [anon_sym_LBRACK2] = ACTIONS(3052), - [anon_sym_TILDE] = ACTIONS(3052), - [anon_sym_CARET] = ACTIONS(3052), - [anon_sym_AMP] = ACTIONS(3052), - [anon_sym_LT_DASH] = ACTIONS(3052), - [anon_sym_LT_LT] = ACTIONS(3052), - [anon_sym_GT_GT] = ACTIONS(3052), - [anon_sym_GT_GT_GT] = ACTIONS(3052), - [anon_sym_AMP_CARET] = ACTIONS(3052), - [anon_sym_AMP_AMP] = ACTIONS(3052), - [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_or] = ACTIONS(3052), - [sym_none] = ACTIONS(3052), - [sym_true] = ACTIONS(3052), - [sym_false] = ACTIONS(3052), - [sym_nil] = ACTIONS(3052), - [anon_sym_QMARK_DOT] = ACTIONS(3052), - [anon_sym_POUND_LBRACK] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_DOLLARif] = ACTIONS(3052), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3052), - [anon_sym_in] = ACTIONS(3052), - [anon_sym_BANGin] = ACTIONS(3052), - [anon_sym_match] = ACTIONS(3052), - [anon_sym_select] = ACTIONS(3052), - [anon_sym_lock] = ACTIONS(3052), - [anon_sym_rlock] = ACTIONS(3052), - [anon_sym_unsafe] = ACTIONS(3052), - [anon_sym_sql] = ACTIONS(3052), - [sym_int_literal] = ACTIONS(3052), - [sym_float_literal] = ACTIONS(3052), - [sym_rune_literal] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3052), - [anon_sym_DQUOTE] = ACTIONS(3052), - [anon_sym_c_SQUOTE] = ACTIONS(3052), - [anon_sym_c_DQUOTE] = ACTIONS(3052), - [anon_sym_r_SQUOTE] = ACTIONS(3052), - [anon_sym_r_DQUOTE] = ACTIONS(3052), - [sym_pseudo_compile_time_identifier] = ACTIONS(3052), - [anon_sym_shared] = ACTIONS(3052), - [anon_sym_map_LBRACK] = ACTIONS(3052), - [anon_sym_chan] = ACTIONS(3052), - [anon_sym_thread] = ACTIONS(3052), - [anon_sym_atomic] = ACTIONS(3052), - [anon_sym_assert] = ACTIONS(3052), - [anon_sym_defer] = ACTIONS(3052), - [anon_sym_goto] = ACTIONS(3052), - [anon_sym_break] = ACTIONS(3052), - [anon_sym_continue] = ACTIONS(3052), - [anon_sym_return] = ACTIONS(3052), - [anon_sym_DOLLARfor] = ACTIONS(3052), - [anon_sym_for] = ACTIONS(3052), - [anon_sym_POUND] = ACTIONS(3052), - [anon_sym_asm] = ACTIONS(3052), - [anon_sym_AT_LBRACK] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(1845), + [anon_sym_as] = ACTIONS(1845), + [anon_sym_LBRACE] = ACTIONS(1845), + [anon_sym_COMMA] = ACTIONS(1845), + [anon_sym_const] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym___global] = ACTIONS(1845), + [anon_sym_type] = ACTIONS(1845), + [anon_sym_fn] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1845), + [anon_sym_SLASH] = ACTIONS(1845), + [anon_sym_PERCENT] = ACTIONS(1845), + [anon_sym_LT] = ACTIONS(1845), + [anon_sym_GT] = ACTIONS(1845), + [anon_sym_EQ_EQ] = ACTIONS(1845), + [anon_sym_BANG_EQ] = ACTIONS(1845), + [anon_sym_LT_EQ] = ACTIONS(1845), + [anon_sym_GT_EQ] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(1847), + [anon_sym_struct] = ACTIONS(1845), + [anon_sym_union] = ACTIONS(1845), + [anon_sym_pub] = ACTIONS(1845), + [anon_sym_mut] = ACTIONS(1845), + [anon_sym_enum] = ACTIONS(1845), + [anon_sym_interface] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_QMARK] = ACTIONS(1845), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_go] = ACTIONS(1845), + [anon_sym_spawn] = ACTIONS(1845), + [anon_sym_json_DOTdecode] = ACTIONS(1845), + [anon_sym_PIPE] = ACTIONS(1845), + [anon_sym_LBRACK2] = ACTIONS(1845), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_LT_DASH] = ACTIONS(1845), + [anon_sym_LT_LT] = ACTIONS(1845), + [anon_sym_GT_GT] = ACTIONS(1845), + [anon_sym_GT_GT_GT] = ACTIONS(1845), + [anon_sym_AMP_CARET] = ACTIONS(1845), + [anon_sym_AMP_AMP] = ACTIONS(1845), + [anon_sym_PIPE_PIPE] = ACTIONS(1845), + [anon_sym_or] = ACTIONS(1845), + [sym_none] = ACTIONS(1845), + [sym_true] = ACTIONS(1845), + [sym_false] = ACTIONS(1845), + [sym_nil] = ACTIONS(1845), + [anon_sym_QMARK_DOT] = ACTIONS(1845), + [anon_sym_POUND_LBRACK] = ACTIONS(1845), + [anon_sym_if] = ACTIONS(1845), + [anon_sym_DOLLARif] = ACTIONS(1845), + [anon_sym_is] = ACTIONS(1845), + [anon_sym_BANGis] = ACTIONS(1845), + [anon_sym_in] = ACTIONS(1845), + [anon_sym_BANGin] = ACTIONS(1845), + [anon_sym_match] = ACTIONS(1845), + [anon_sym_select] = ACTIONS(1845), + [anon_sym_lock] = ACTIONS(1845), + [anon_sym_rlock] = ACTIONS(1845), + [anon_sym_unsafe] = ACTIONS(1845), + [anon_sym_sql] = ACTIONS(1845), + [sym_int_literal] = ACTIONS(1845), + [sym_float_literal] = ACTIONS(1845), + [sym_rune_literal] = ACTIONS(1845), + [anon_sym_SQUOTE] = ACTIONS(1845), + [anon_sym_DQUOTE] = ACTIONS(1845), + [anon_sym_c_SQUOTE] = ACTIONS(1845), + [anon_sym_c_DQUOTE] = ACTIONS(1845), + [anon_sym_r_SQUOTE] = ACTIONS(1845), + [anon_sym_r_DQUOTE] = ACTIONS(1845), + [sym_pseudo_compile_time_identifier] = ACTIONS(1845), + [anon_sym_shared] = ACTIONS(1845), + [anon_sym_map_LBRACK] = ACTIONS(1845), + [anon_sym_chan] = ACTIONS(1845), + [anon_sym_thread] = ACTIONS(1845), + [anon_sym_atomic] = ACTIONS(1845), + [anon_sym_assert] = ACTIONS(1845), + [anon_sym_defer] = ACTIONS(1845), + [anon_sym_goto] = ACTIONS(1845), + [anon_sym_break] = ACTIONS(1845), + [anon_sym_continue] = ACTIONS(1845), + [anon_sym_return] = ACTIONS(1845), + [anon_sym_DOLLARfor] = ACTIONS(1845), + [anon_sym_for] = ACTIONS(1845), + [anon_sym_POUND] = ACTIONS(1845), + [anon_sym_asm] = ACTIONS(1845), + [anon_sym_AT_LBRACK] = ACTIONS(1845), }, [1040] = { [sym_line_comment] = STATE(1040), [sym_block_comment] = STATE(1040), - [ts_builtin_sym_end] = ACTIONS(2875), - [sym_identifier] = ACTIONS(2877), - [anon_sym_LF] = ACTIONS(2877), - [anon_sym_CR] = ACTIONS(2877), - [anon_sym_CR_LF] = ACTIONS(2877), + [ts_builtin_sym_end] = ACTIONS(2987), + [sym_identifier] = ACTIONS(2989), + [anon_sym_LF] = ACTIONS(2989), + [anon_sym_CR] = ACTIONS(2989), + [anon_sym_CR_LF] = ACTIONS(2989), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2877), - [anon_sym_as] = ACTIONS(2877), - [anon_sym_LBRACE] = ACTIONS(2877), - [anon_sym_COMMA] = ACTIONS(2877), - [anon_sym_const] = ACTIONS(2877), - [anon_sym_LPAREN] = ACTIONS(2877), - [anon_sym___global] = ACTIONS(2877), - [anon_sym_type] = ACTIONS(2877), - [anon_sym_PIPE] = ACTIONS(2877), - [anon_sym_fn] = ACTIONS(2877), - [anon_sym_PLUS] = ACTIONS(2877), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_STAR] = ACTIONS(2877), - [anon_sym_SLASH] = ACTIONS(2877), - [anon_sym_PERCENT] = ACTIONS(2877), - [anon_sym_LT] = ACTIONS(2877), - [anon_sym_GT] = ACTIONS(2877), - [anon_sym_EQ_EQ] = ACTIONS(2877), - [anon_sym_BANG_EQ] = ACTIONS(2877), - [anon_sym_LT_EQ] = ACTIONS(2877), - [anon_sym_GT_EQ] = ACTIONS(2877), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_struct] = ACTIONS(2877), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_pub] = ACTIONS(2877), - [anon_sym_mut] = ACTIONS(2877), - [anon_sym_enum] = ACTIONS(2877), - [anon_sym_interface] = ACTIONS(2877), - [anon_sym_PLUS_PLUS] = ACTIONS(2877), - [anon_sym_DASH_DASH] = ACTIONS(2877), - [anon_sym_QMARK] = ACTIONS(2877), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_go] = ACTIONS(2877), - [anon_sym_spawn] = ACTIONS(2877), - [anon_sym_json_DOTdecode] = ACTIONS(2877), - [anon_sym_LBRACK2] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_CARET] = ACTIONS(2877), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_LT_DASH] = ACTIONS(2877), - [anon_sym_LT_LT] = ACTIONS(2877), - [anon_sym_GT_GT] = ACTIONS(2877), - [anon_sym_GT_GT_GT] = ACTIONS(2877), - [anon_sym_AMP_CARET] = ACTIONS(2877), - [anon_sym_AMP_AMP] = ACTIONS(2877), - [anon_sym_PIPE_PIPE] = ACTIONS(2877), - [anon_sym_or] = ACTIONS(2877), - [sym_none] = ACTIONS(2877), - [sym_true] = ACTIONS(2877), - [sym_false] = ACTIONS(2877), - [sym_nil] = ACTIONS(2877), - [anon_sym_QMARK_DOT] = ACTIONS(2877), - [anon_sym_POUND_LBRACK] = ACTIONS(2877), - [anon_sym_if] = ACTIONS(2877), - [anon_sym_DOLLARif] = ACTIONS(2877), - [anon_sym_is] = ACTIONS(2877), - [anon_sym_BANGis] = ACTIONS(2877), - [anon_sym_in] = ACTIONS(2877), - [anon_sym_BANGin] = ACTIONS(2877), - [anon_sym_match] = ACTIONS(2877), - [anon_sym_select] = ACTIONS(2877), - [anon_sym_lock] = ACTIONS(2877), - [anon_sym_rlock] = ACTIONS(2877), - [anon_sym_unsafe] = ACTIONS(2877), - [anon_sym_sql] = ACTIONS(2877), - [sym_int_literal] = ACTIONS(2877), - [sym_float_literal] = ACTIONS(2877), - [sym_rune_literal] = ACTIONS(2877), - [anon_sym_SQUOTE] = ACTIONS(2877), - [anon_sym_DQUOTE] = ACTIONS(2877), - [anon_sym_c_SQUOTE] = ACTIONS(2877), - [anon_sym_c_DQUOTE] = ACTIONS(2877), - [anon_sym_r_SQUOTE] = ACTIONS(2877), - [anon_sym_r_DQUOTE] = ACTIONS(2877), - [sym_pseudo_compile_time_identifier] = ACTIONS(2877), - [anon_sym_shared] = ACTIONS(2877), - [anon_sym_map_LBRACK] = ACTIONS(2877), - [anon_sym_chan] = ACTIONS(2877), - [anon_sym_thread] = ACTIONS(2877), - [anon_sym_atomic] = ACTIONS(2877), - [anon_sym_assert] = ACTIONS(2877), - [anon_sym_defer] = ACTIONS(2877), - [anon_sym_goto] = ACTIONS(2877), - [anon_sym_break] = ACTIONS(2877), - [anon_sym_continue] = ACTIONS(2877), - [anon_sym_return] = ACTIONS(2877), - [anon_sym_DOLLARfor] = ACTIONS(2877), - [anon_sym_for] = ACTIONS(2877), - [anon_sym_POUND] = ACTIONS(2877), - [anon_sym_asm] = ACTIONS(2877), - [anon_sym_AT_LBRACK] = ACTIONS(2877), + [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_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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2989), + [anon_sym_DQUOTE] = ACTIONS(2989), + [anon_sym_c_SQUOTE] = ACTIONS(2989), + [anon_sym_c_DQUOTE] = ACTIONS(2989), + [anon_sym_r_SQUOTE] = ACTIONS(2989), + [anon_sym_r_DQUOTE] = 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), }, [1041] = { [sym_line_comment] = STATE(1041), [sym_block_comment] = STATE(1041), - [ts_builtin_sym_end] = ACTIONS(2091), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LF] = ACTIONS(2093), - [anon_sym_CR] = ACTIONS(2093), - [anon_sym_CR_LF] = ACTIONS(2093), + [ts_builtin_sym_end] = ACTIONS(2451), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LF] = ACTIONS(2453), + [anon_sym_CR] = ACTIONS(2453), + [anon_sym_CR_LF] = ACTIONS(2453), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_COMMA] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym___global] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ] = ACTIONS(2093), - [anon_sym_LT_EQ] = ACTIONS(2093), - [anon_sym_GT_EQ] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_union] = ACTIONS(2093), - [anon_sym_pub] = ACTIONS(2093), - [anon_sym_mut] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [anon_sym_QMARK] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_go] = ACTIONS(2093), - [anon_sym_spawn] = ACTIONS(2093), - [anon_sym_json_DOTdecode] = ACTIONS(2093), - [anon_sym_LBRACK2] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_LT_DASH] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2093), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2093), - [anon_sym_AMP_CARET] = ACTIONS(2093), - [anon_sym_AMP_AMP] = ACTIONS(2093), - [anon_sym_PIPE_PIPE] = ACTIONS(2093), - [anon_sym_or] = ACTIONS(2093), - [sym_none] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_nil] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2093), - [anon_sym_POUND_LBRACK] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_DOLLARif] = ACTIONS(2093), - [anon_sym_is] = ACTIONS(2093), - [anon_sym_BANGis] = ACTIONS(2093), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_BANGin] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_select] = ACTIONS(2093), - [anon_sym_lock] = ACTIONS(2093), - [anon_sym_rlock] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_sql] = ACTIONS(2093), - [sym_int_literal] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2093), - [sym_rune_literal] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_c_SQUOTE] = ACTIONS(2093), - [anon_sym_c_DQUOTE] = ACTIONS(2093), - [anon_sym_r_SQUOTE] = ACTIONS(2093), - [anon_sym_r_DQUOTE] = ACTIONS(2093), - [sym_pseudo_compile_time_identifier] = ACTIONS(2093), - [anon_sym_shared] = ACTIONS(2093), - [anon_sym_map_LBRACK] = ACTIONS(2093), - [anon_sym_chan] = ACTIONS(2093), - [anon_sym_thread] = ACTIONS(2093), - [anon_sym_atomic] = ACTIONS(2093), - [anon_sym_assert] = ACTIONS(2093), - [anon_sym_defer] = ACTIONS(2093), - [anon_sym_goto] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_DOLLARfor] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(2093), - [anon_sym_asm] = ACTIONS(2093), - [anon_sym_AT_LBRACK] = ACTIONS(2093), + [anon_sym_DOT] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_COMMA] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym___global] = ACTIONS(2453), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_fn] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(2453), + [anon_sym_SLASH] = ACTIONS(2453), + [anon_sym_PERCENT] = ACTIONS(2453), + [anon_sym_LT] = ACTIONS(2453), + [anon_sym_GT] = ACTIONS(2453), + [anon_sym_EQ_EQ] = ACTIONS(2453), + [anon_sym_BANG_EQ] = ACTIONS(2453), + [anon_sym_LT_EQ] = ACTIONS(2453), + [anon_sym_GT_EQ] = ACTIONS(2453), + [anon_sym_LBRACK] = ACTIONS(2451), + [anon_sym_struct] = ACTIONS(2453), + [anon_sym_union] = ACTIONS(2453), + [anon_sym_pub] = ACTIONS(2453), + [anon_sym_mut] = ACTIONS(2453), + [anon_sym_enum] = ACTIONS(2453), + [anon_sym_interface] = ACTIONS(2453), + [anon_sym_PLUS_PLUS] = ACTIONS(2453), + [anon_sym_DASH_DASH] = ACTIONS(2453), + [anon_sym_QMARK] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2453), + [anon_sym_go] = ACTIONS(2453), + [anon_sym_spawn] = ACTIONS(2453), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_PIPE] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2453), + [anon_sym_TILDE] = ACTIONS(2453), + [anon_sym_CARET] = ACTIONS(2453), + [anon_sym_AMP] = ACTIONS(2453), + [anon_sym_LT_DASH] = ACTIONS(2453), + [anon_sym_LT_LT] = ACTIONS(2453), + [anon_sym_GT_GT] = ACTIONS(2453), + [anon_sym_GT_GT_GT] = ACTIONS(2453), + [anon_sym_AMP_CARET] = ACTIONS(2453), + [anon_sym_AMP_AMP] = ACTIONS(2453), + [anon_sym_PIPE_PIPE] = ACTIONS(2453), + [anon_sym_or] = ACTIONS(2453), + [sym_none] = ACTIONS(2453), + [sym_true] = ACTIONS(2453), + [sym_false] = ACTIONS(2453), + [sym_nil] = ACTIONS(2453), + [anon_sym_QMARK_DOT] = ACTIONS(2453), + [anon_sym_POUND_LBRACK] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_DOLLARif] = ACTIONS(2453), + [anon_sym_is] = ACTIONS(2453), + [anon_sym_BANGis] = ACTIONS(2453), + [anon_sym_in] = ACTIONS(2453), + [anon_sym_BANGin] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_select] = ACTIONS(2453), + [anon_sym_lock] = ACTIONS(2453), + [anon_sym_rlock] = ACTIONS(2453), + [anon_sym_unsafe] = ACTIONS(2453), + [anon_sym_sql] = ACTIONS(2453), + [sym_int_literal] = ACTIONS(2453), + [sym_float_literal] = ACTIONS(2453), + [sym_rune_literal] = ACTIONS(2453), + [anon_sym_SQUOTE] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2453), + [anon_sym_c_SQUOTE] = ACTIONS(2453), + [anon_sym_c_DQUOTE] = ACTIONS(2453), + [anon_sym_r_SQUOTE] = ACTIONS(2453), + [anon_sym_r_DQUOTE] = ACTIONS(2453), + [sym_pseudo_compile_time_identifier] = ACTIONS(2453), + [anon_sym_shared] = ACTIONS(2453), + [anon_sym_map_LBRACK] = ACTIONS(2453), + [anon_sym_chan] = ACTIONS(2453), + [anon_sym_thread] = ACTIONS(2453), + [anon_sym_atomic] = ACTIONS(2453), + [anon_sym_assert] = ACTIONS(2453), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_goto] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_DOLLARfor] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_POUND] = ACTIONS(2453), + [anon_sym_asm] = ACTIONS(2453), + [anon_sym_AT_LBRACK] = ACTIONS(2453), }, [1042] = { [sym_line_comment] = STATE(1042), [sym_block_comment] = STATE(1042), - [ts_builtin_sym_end] = ACTIONS(2849), - [sym_identifier] = ACTIONS(2851), - [anon_sym_LF] = ACTIONS(2851), - [anon_sym_CR] = ACTIONS(2851), - [anon_sym_CR_LF] = ACTIONS(2851), + [ts_builtin_sym_end] = ACTIONS(2093), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LF] = ACTIONS(2095), + [anon_sym_CR] = ACTIONS(2095), + [anon_sym_CR_LF] = ACTIONS(2095), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2851), - [anon_sym_as] = ACTIONS(2851), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_COMMA] = ACTIONS(2851), - [anon_sym_const] = ACTIONS(2851), - [anon_sym_LPAREN] = ACTIONS(2851), - [anon_sym___global] = ACTIONS(2851), - [anon_sym_type] = ACTIONS(2851), - [anon_sym_PIPE] = ACTIONS(2851), - [anon_sym_fn] = ACTIONS(2851), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2851), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_SLASH] = ACTIONS(2851), - [anon_sym_PERCENT] = ACTIONS(2851), - [anon_sym_LT] = ACTIONS(2851), - [anon_sym_GT] = ACTIONS(2851), - [anon_sym_EQ_EQ] = ACTIONS(2851), - [anon_sym_BANG_EQ] = ACTIONS(2851), - [anon_sym_LT_EQ] = ACTIONS(2851), - [anon_sym_GT_EQ] = ACTIONS(2851), - [anon_sym_LBRACK] = ACTIONS(2849), - [anon_sym_struct] = ACTIONS(2851), - [anon_sym_union] = ACTIONS(2851), - [anon_sym_pub] = ACTIONS(2851), - [anon_sym_mut] = ACTIONS(2851), - [anon_sym_enum] = ACTIONS(2851), - [anon_sym_interface] = ACTIONS(2851), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_DASH_DASH] = ACTIONS(2851), - [anon_sym_QMARK] = ACTIONS(2851), - [anon_sym_BANG] = ACTIONS(2851), - [anon_sym_go] = ACTIONS(2851), - [anon_sym_spawn] = ACTIONS(2851), - [anon_sym_json_DOTdecode] = ACTIONS(2851), - [anon_sym_LBRACK2] = ACTIONS(2851), - [anon_sym_TILDE] = ACTIONS(2851), - [anon_sym_CARET] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2851), - [anon_sym_LT_DASH] = ACTIONS(2851), - [anon_sym_LT_LT] = ACTIONS(2851), - [anon_sym_GT_GT] = ACTIONS(2851), - [anon_sym_GT_GT_GT] = ACTIONS(2851), - [anon_sym_AMP_CARET] = ACTIONS(2851), - [anon_sym_AMP_AMP] = ACTIONS(2851), - [anon_sym_PIPE_PIPE] = ACTIONS(2851), - [anon_sym_or] = ACTIONS(2851), - [sym_none] = ACTIONS(2851), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [sym_nil] = ACTIONS(2851), - [anon_sym_QMARK_DOT] = ACTIONS(2851), - [anon_sym_POUND_LBRACK] = ACTIONS(2851), - [anon_sym_if] = ACTIONS(2851), - [anon_sym_DOLLARif] = ACTIONS(2851), - [anon_sym_is] = ACTIONS(2851), - [anon_sym_BANGis] = ACTIONS(2851), - [anon_sym_in] = ACTIONS(2851), - [anon_sym_BANGin] = ACTIONS(2851), - [anon_sym_match] = ACTIONS(2851), - [anon_sym_select] = ACTIONS(2851), - [anon_sym_lock] = ACTIONS(2851), - [anon_sym_rlock] = ACTIONS(2851), - [anon_sym_unsafe] = ACTIONS(2851), - [anon_sym_sql] = ACTIONS(2851), - [sym_int_literal] = ACTIONS(2851), - [sym_float_literal] = ACTIONS(2851), - [sym_rune_literal] = ACTIONS(2851), - [anon_sym_SQUOTE] = ACTIONS(2851), - [anon_sym_DQUOTE] = ACTIONS(2851), - [anon_sym_c_SQUOTE] = ACTIONS(2851), - [anon_sym_c_DQUOTE] = ACTIONS(2851), - [anon_sym_r_SQUOTE] = ACTIONS(2851), - [anon_sym_r_DQUOTE] = ACTIONS(2851), - [sym_pseudo_compile_time_identifier] = ACTIONS(2851), - [anon_sym_shared] = ACTIONS(2851), - [anon_sym_map_LBRACK] = ACTIONS(2851), - [anon_sym_chan] = ACTIONS(2851), - [anon_sym_thread] = ACTIONS(2851), - [anon_sym_atomic] = ACTIONS(2851), - [anon_sym_assert] = ACTIONS(2851), - [anon_sym_defer] = ACTIONS(2851), - [anon_sym_goto] = ACTIONS(2851), - [anon_sym_break] = ACTIONS(2851), - [anon_sym_continue] = ACTIONS(2851), - [anon_sym_return] = ACTIONS(2851), - [anon_sym_DOLLARfor] = ACTIONS(2851), - [anon_sym_for] = ACTIONS(2851), - [anon_sym_POUND] = ACTIONS(2851), - [anon_sym_asm] = ACTIONS(2851), - [anon_sym_AT_LBRACK] = ACTIONS(2851), + [anon_sym_DOT] = ACTIONS(2095), + [anon_sym_as] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_COMMA] = ACTIONS(2095), + [anon_sym_const] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym___global] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2095), + [anon_sym_fn] = ACTIONS(2095), + [anon_sym_PLUS] = ACTIONS(2095), + [anon_sym_DASH] = ACTIONS(2095), + [anon_sym_STAR] = ACTIONS(2095), + [anon_sym_SLASH] = ACTIONS(2095), + [anon_sym_PERCENT] = ACTIONS(2095), + [anon_sym_LT] = ACTIONS(2095), + [anon_sym_GT] = ACTIONS(2095), + [anon_sym_EQ_EQ] = ACTIONS(2095), + [anon_sym_BANG_EQ] = ACTIONS(2095), + [anon_sym_LT_EQ] = ACTIONS(2095), + [anon_sym_GT_EQ] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2095), + [anon_sym_union] = ACTIONS(2095), + [anon_sym_pub] = ACTIONS(2095), + [anon_sym_mut] = ACTIONS(2095), + [anon_sym_enum] = ACTIONS(2095), + [anon_sym_interface] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_QMARK] = ACTIONS(2095), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_go] = ACTIONS(2095), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(2095), + [anon_sym_PIPE] = ACTIONS(2095), + [anon_sym_LBRACK2] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_LT_DASH] = ACTIONS(2095), + [anon_sym_LT_LT] = ACTIONS(2095), + [anon_sym_GT_GT] = ACTIONS(2095), + [anon_sym_GT_GT_GT] = ACTIONS(2095), + [anon_sym_AMP_CARET] = ACTIONS(2095), + [anon_sym_AMP_AMP] = ACTIONS(2095), + [anon_sym_PIPE_PIPE] = ACTIONS(2095), + [anon_sym_or] = ACTIONS(2095), + [sym_none] = ACTIONS(2095), + [sym_true] = ACTIONS(2095), + [sym_false] = ACTIONS(2095), + [sym_nil] = ACTIONS(2095), + [anon_sym_QMARK_DOT] = ACTIONS(2095), + [anon_sym_POUND_LBRACK] = ACTIONS(2095), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_DOLLARif] = ACTIONS(2095), + [anon_sym_is] = ACTIONS(2095), + [anon_sym_BANGis] = ACTIONS(2095), + [anon_sym_in] = ACTIONS(2095), + [anon_sym_BANGin] = ACTIONS(2095), + [anon_sym_match] = ACTIONS(2095), + [anon_sym_select] = ACTIONS(2095), + [anon_sym_lock] = ACTIONS(2095), + [anon_sym_rlock] = ACTIONS(2095), + [anon_sym_unsafe] = ACTIONS(2095), + [anon_sym_sql] = ACTIONS(2095), + [sym_int_literal] = ACTIONS(2095), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [anon_sym_SQUOTE] = ACTIONS(2095), + [anon_sym_DQUOTE] = ACTIONS(2095), + [anon_sym_c_SQUOTE] = ACTIONS(2095), + [anon_sym_c_DQUOTE] = ACTIONS(2095), + [anon_sym_r_SQUOTE] = ACTIONS(2095), + [anon_sym_r_DQUOTE] = ACTIONS(2095), + [sym_pseudo_compile_time_identifier] = ACTIONS(2095), + [anon_sym_shared] = ACTIONS(2095), + [anon_sym_map_LBRACK] = ACTIONS(2095), + [anon_sym_chan] = ACTIONS(2095), + [anon_sym_thread] = ACTIONS(2095), + [anon_sym_atomic] = ACTIONS(2095), + [anon_sym_assert] = ACTIONS(2095), + [anon_sym_defer] = ACTIONS(2095), + [anon_sym_goto] = ACTIONS(2095), + [anon_sym_break] = ACTIONS(2095), + [anon_sym_continue] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2095), + [anon_sym_DOLLARfor] = ACTIONS(2095), + [anon_sym_for] = ACTIONS(2095), + [anon_sym_POUND] = ACTIONS(2095), + [anon_sym_asm] = ACTIONS(2095), + [anon_sym_AT_LBRACK] = ACTIONS(2095), }, [1043] = { [sym_line_comment] = STATE(1043), [sym_block_comment] = STATE(1043), - [ts_builtin_sym_end] = ACTIONS(2845), - [sym_identifier] = ACTIONS(2847), - [anon_sym_LF] = ACTIONS(2847), - [anon_sym_CR] = ACTIONS(2847), - [anon_sym_CR_LF] = ACTIONS(2847), + [ts_builtin_sym_end] = ACTIONS(2381), + [sym_identifier] = ACTIONS(2383), + [anon_sym_LF] = ACTIONS(2383), + [anon_sym_CR] = ACTIONS(2383), + [anon_sym_CR_LF] = ACTIONS(2383), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2847), - [anon_sym_as] = ACTIONS(2847), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_COMMA] = ACTIONS(2847), - [anon_sym_const] = ACTIONS(2847), - [anon_sym_LPAREN] = ACTIONS(2847), - [anon_sym___global] = ACTIONS(2847), - [anon_sym_type] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2847), - [anon_sym_fn] = ACTIONS(2847), - [anon_sym_PLUS] = ACTIONS(2847), - [anon_sym_DASH] = ACTIONS(2847), - [anon_sym_STAR] = ACTIONS(2847), - [anon_sym_SLASH] = ACTIONS(2847), - [anon_sym_PERCENT] = ACTIONS(2847), - [anon_sym_LT] = ACTIONS(2847), - [anon_sym_GT] = ACTIONS(2847), - [anon_sym_EQ_EQ] = ACTIONS(2847), - [anon_sym_BANG_EQ] = ACTIONS(2847), - [anon_sym_LT_EQ] = ACTIONS(2847), - [anon_sym_GT_EQ] = ACTIONS(2847), - [anon_sym_LBRACK] = ACTIONS(2845), - [anon_sym_struct] = ACTIONS(2847), - [anon_sym_union] = ACTIONS(2847), - [anon_sym_pub] = ACTIONS(2847), - [anon_sym_mut] = ACTIONS(2847), - [anon_sym_enum] = ACTIONS(2847), - [anon_sym_interface] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_QMARK] = ACTIONS(2847), - [anon_sym_BANG] = ACTIONS(2847), - [anon_sym_go] = ACTIONS(2847), - [anon_sym_spawn] = ACTIONS(2847), - [anon_sym_json_DOTdecode] = ACTIONS(2847), - [anon_sym_LBRACK2] = ACTIONS(2847), - [anon_sym_TILDE] = ACTIONS(2847), - [anon_sym_CARET] = ACTIONS(2847), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_LT_DASH] = ACTIONS(2847), - [anon_sym_LT_LT] = ACTIONS(2847), - [anon_sym_GT_GT] = ACTIONS(2847), - [anon_sym_GT_GT_GT] = ACTIONS(2847), - [anon_sym_AMP_CARET] = ACTIONS(2847), - [anon_sym_AMP_AMP] = ACTIONS(2847), - [anon_sym_PIPE_PIPE] = ACTIONS(2847), - [anon_sym_or] = ACTIONS(2847), - [sym_none] = ACTIONS(2847), - [sym_true] = ACTIONS(2847), - [sym_false] = ACTIONS(2847), - [sym_nil] = ACTIONS(2847), - [anon_sym_QMARK_DOT] = ACTIONS(2847), - [anon_sym_POUND_LBRACK] = ACTIONS(2847), - [anon_sym_if] = ACTIONS(2847), - [anon_sym_DOLLARif] = ACTIONS(2847), - [anon_sym_is] = ACTIONS(2847), - [anon_sym_BANGis] = ACTIONS(2847), - [anon_sym_in] = ACTIONS(2847), - [anon_sym_BANGin] = ACTIONS(2847), - [anon_sym_match] = ACTIONS(2847), - [anon_sym_select] = ACTIONS(2847), - [anon_sym_lock] = ACTIONS(2847), - [anon_sym_rlock] = ACTIONS(2847), - [anon_sym_unsafe] = ACTIONS(2847), - [anon_sym_sql] = ACTIONS(2847), - [sym_int_literal] = ACTIONS(2847), - [sym_float_literal] = ACTIONS(2847), - [sym_rune_literal] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2847), - [anon_sym_c_SQUOTE] = ACTIONS(2847), - [anon_sym_c_DQUOTE] = ACTIONS(2847), - [anon_sym_r_SQUOTE] = ACTIONS(2847), - [anon_sym_r_DQUOTE] = ACTIONS(2847), - [sym_pseudo_compile_time_identifier] = ACTIONS(2847), - [anon_sym_shared] = ACTIONS(2847), - [anon_sym_map_LBRACK] = ACTIONS(2847), - [anon_sym_chan] = ACTIONS(2847), - [anon_sym_thread] = ACTIONS(2847), - [anon_sym_atomic] = ACTIONS(2847), - [anon_sym_assert] = ACTIONS(2847), - [anon_sym_defer] = ACTIONS(2847), - [anon_sym_goto] = ACTIONS(2847), - [anon_sym_break] = ACTIONS(2847), - [anon_sym_continue] = ACTIONS(2847), - [anon_sym_return] = ACTIONS(2847), - [anon_sym_DOLLARfor] = ACTIONS(2847), - [anon_sym_for] = ACTIONS(2847), - [anon_sym_POUND] = ACTIONS(2847), - [anon_sym_asm] = ACTIONS(2847), - [anon_sym_AT_LBRACK] = ACTIONS(2847), + [anon_sym_DOT] = ACTIONS(2383), + [anon_sym_as] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_COMMA] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym___global] = ACTIONS(2383), + [anon_sym_type] = ACTIONS(2383), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_PLUS] = ACTIONS(2383), + [anon_sym_DASH] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(2383), + [anon_sym_SLASH] = ACTIONS(2383), + [anon_sym_PERCENT] = ACTIONS(2383), + [anon_sym_LT] = ACTIONS(2383), + [anon_sym_GT] = ACTIONS(2383), + [anon_sym_EQ_EQ] = ACTIONS(2383), + [anon_sym_BANG_EQ] = ACTIONS(2383), + [anon_sym_LT_EQ] = ACTIONS(2383), + [anon_sym_GT_EQ] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2381), + [anon_sym_struct] = ACTIONS(2383), + [anon_sym_union] = ACTIONS(2383), + [anon_sym_pub] = ACTIONS(2383), + [anon_sym_mut] = ACTIONS(2383), + [anon_sym_enum] = ACTIONS(2383), + [anon_sym_interface] = ACTIONS(2383), + [anon_sym_PLUS_PLUS] = ACTIONS(2383), + [anon_sym_DASH_DASH] = ACTIONS(2383), + [anon_sym_QMARK] = ACTIONS(2383), + [anon_sym_BANG] = ACTIONS(2383), + [anon_sym_go] = ACTIONS(2383), + [anon_sym_spawn] = ACTIONS(2383), + [anon_sym_json_DOTdecode] = ACTIONS(2383), + [anon_sym_PIPE] = ACTIONS(2383), + [anon_sym_LBRACK2] = ACTIONS(2383), + [anon_sym_TILDE] = ACTIONS(2383), + [anon_sym_CARET] = ACTIONS(2383), + [anon_sym_AMP] = ACTIONS(2383), + [anon_sym_LT_DASH] = ACTIONS(2383), + [anon_sym_LT_LT] = ACTIONS(2383), + [anon_sym_GT_GT] = ACTIONS(2383), + [anon_sym_GT_GT_GT] = ACTIONS(2383), + [anon_sym_AMP_CARET] = ACTIONS(2383), + [anon_sym_AMP_AMP] = ACTIONS(2383), + [anon_sym_PIPE_PIPE] = ACTIONS(2383), + [anon_sym_or] = ACTIONS(2383), + [sym_none] = ACTIONS(2383), + [sym_true] = ACTIONS(2383), + [sym_false] = ACTIONS(2383), + [sym_nil] = ACTIONS(2383), + [anon_sym_QMARK_DOT] = ACTIONS(2383), + [anon_sym_POUND_LBRACK] = ACTIONS(2383), + [anon_sym_if] = ACTIONS(2383), + [anon_sym_DOLLARif] = ACTIONS(2383), + [anon_sym_is] = ACTIONS(2383), + [anon_sym_BANGis] = ACTIONS(2383), + [anon_sym_in] = ACTIONS(2383), + [anon_sym_BANGin] = ACTIONS(2383), + [anon_sym_match] = ACTIONS(2383), + [anon_sym_select] = ACTIONS(2383), + [anon_sym_lock] = ACTIONS(2383), + [anon_sym_rlock] = ACTIONS(2383), + [anon_sym_unsafe] = ACTIONS(2383), + [anon_sym_sql] = ACTIONS(2383), + [sym_int_literal] = ACTIONS(2383), + [sym_float_literal] = ACTIONS(2383), + [sym_rune_literal] = ACTIONS(2383), + [anon_sym_SQUOTE] = ACTIONS(2383), + [anon_sym_DQUOTE] = ACTIONS(2383), + [anon_sym_c_SQUOTE] = ACTIONS(2383), + [anon_sym_c_DQUOTE] = ACTIONS(2383), + [anon_sym_r_SQUOTE] = ACTIONS(2383), + [anon_sym_r_DQUOTE] = ACTIONS(2383), + [sym_pseudo_compile_time_identifier] = ACTIONS(2383), + [anon_sym_shared] = ACTIONS(2383), + [anon_sym_map_LBRACK] = ACTIONS(2383), + [anon_sym_chan] = ACTIONS(2383), + [anon_sym_thread] = ACTIONS(2383), + [anon_sym_atomic] = ACTIONS(2383), + [anon_sym_assert] = ACTIONS(2383), + [anon_sym_defer] = ACTIONS(2383), + [anon_sym_goto] = ACTIONS(2383), + [anon_sym_break] = ACTIONS(2383), + [anon_sym_continue] = ACTIONS(2383), + [anon_sym_return] = ACTIONS(2383), + [anon_sym_DOLLARfor] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(2383), + [anon_sym_POUND] = ACTIONS(2383), + [anon_sym_asm] = ACTIONS(2383), + [anon_sym_AT_LBRACK] = ACTIONS(2383), }, [1044] = { [sym_line_comment] = STATE(1044), [sym_block_comment] = STATE(1044), - [ts_builtin_sym_end] = ACTIONS(2769), - [sym_identifier] = ACTIONS(2771), - [anon_sym_LF] = ACTIONS(2771), - [anon_sym_CR] = ACTIONS(2771), - [anon_sym_CR_LF] = ACTIONS(2771), + [ts_builtin_sym_end] = ACTIONS(2385), + [sym_identifier] = ACTIONS(2387), + [anon_sym_LF] = ACTIONS(2387), + [anon_sym_CR] = ACTIONS(2387), + [anon_sym_CR_LF] = ACTIONS(2387), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2771), - [anon_sym_as] = ACTIONS(2771), - [anon_sym_LBRACE] = ACTIONS(2771), - [anon_sym_COMMA] = ACTIONS(2771), - [anon_sym_const] = ACTIONS(2771), - [anon_sym_LPAREN] = ACTIONS(2771), - [anon_sym___global] = ACTIONS(2771), - [anon_sym_type] = ACTIONS(2771), - [anon_sym_PIPE] = ACTIONS(2771), - [anon_sym_fn] = ACTIONS(2771), - [anon_sym_PLUS] = ACTIONS(2771), - [anon_sym_DASH] = ACTIONS(2771), - [anon_sym_STAR] = ACTIONS(2771), - [anon_sym_SLASH] = ACTIONS(2771), - [anon_sym_PERCENT] = ACTIONS(2771), - [anon_sym_LT] = ACTIONS(2771), - [anon_sym_GT] = ACTIONS(2771), - [anon_sym_EQ_EQ] = ACTIONS(2771), - [anon_sym_BANG_EQ] = ACTIONS(2771), - [anon_sym_LT_EQ] = ACTIONS(2771), - [anon_sym_GT_EQ] = ACTIONS(2771), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(2771), - [anon_sym_union] = ACTIONS(2771), - [anon_sym_pub] = ACTIONS(2771), - [anon_sym_mut] = ACTIONS(2771), - [anon_sym_enum] = ACTIONS(2771), - [anon_sym_interface] = ACTIONS(2771), - [anon_sym_PLUS_PLUS] = ACTIONS(2771), - [anon_sym_DASH_DASH] = ACTIONS(2771), - [anon_sym_QMARK] = ACTIONS(2771), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_go] = ACTIONS(2771), - [anon_sym_spawn] = ACTIONS(2771), - [anon_sym_json_DOTdecode] = ACTIONS(2771), - [anon_sym_LBRACK2] = ACTIONS(2771), - [anon_sym_TILDE] = ACTIONS(2771), - [anon_sym_CARET] = ACTIONS(2771), - [anon_sym_AMP] = ACTIONS(2771), - [anon_sym_LT_DASH] = ACTIONS(2771), - [anon_sym_LT_LT] = ACTIONS(2771), - [anon_sym_GT_GT] = ACTIONS(2771), - [anon_sym_GT_GT_GT] = ACTIONS(2771), - [anon_sym_AMP_CARET] = ACTIONS(2771), - [anon_sym_AMP_AMP] = ACTIONS(2771), - [anon_sym_PIPE_PIPE] = ACTIONS(2771), - [anon_sym_or] = ACTIONS(2771), - [sym_none] = ACTIONS(2771), - [sym_true] = ACTIONS(2771), - [sym_false] = ACTIONS(2771), - [sym_nil] = ACTIONS(2771), - [anon_sym_QMARK_DOT] = ACTIONS(2771), - [anon_sym_POUND_LBRACK] = ACTIONS(2771), - [anon_sym_if] = ACTIONS(2771), - [anon_sym_DOLLARif] = ACTIONS(2771), - [anon_sym_is] = ACTIONS(2771), - [anon_sym_BANGis] = ACTIONS(2771), - [anon_sym_in] = ACTIONS(2771), - [anon_sym_BANGin] = ACTIONS(2771), - [anon_sym_match] = ACTIONS(2771), - [anon_sym_select] = ACTIONS(2771), - [anon_sym_lock] = ACTIONS(2771), - [anon_sym_rlock] = ACTIONS(2771), - [anon_sym_unsafe] = ACTIONS(2771), - [anon_sym_sql] = ACTIONS(2771), - [sym_int_literal] = ACTIONS(2771), - [sym_float_literal] = ACTIONS(2771), - [sym_rune_literal] = ACTIONS(2771), - [anon_sym_SQUOTE] = ACTIONS(2771), - [anon_sym_DQUOTE] = ACTIONS(2771), - [anon_sym_c_SQUOTE] = ACTIONS(2771), - [anon_sym_c_DQUOTE] = ACTIONS(2771), - [anon_sym_r_SQUOTE] = ACTIONS(2771), - [anon_sym_r_DQUOTE] = ACTIONS(2771), - [sym_pseudo_compile_time_identifier] = ACTIONS(2771), - [anon_sym_shared] = ACTIONS(2771), - [anon_sym_map_LBRACK] = ACTIONS(2771), - [anon_sym_chan] = ACTIONS(2771), - [anon_sym_thread] = ACTIONS(2771), - [anon_sym_atomic] = ACTIONS(2771), - [anon_sym_assert] = ACTIONS(2771), - [anon_sym_defer] = ACTIONS(2771), - [anon_sym_goto] = ACTIONS(2771), - [anon_sym_break] = ACTIONS(2771), - [anon_sym_continue] = ACTIONS(2771), - [anon_sym_return] = ACTIONS(2771), - [anon_sym_DOLLARfor] = ACTIONS(2771), - [anon_sym_for] = ACTIONS(2771), - [anon_sym_POUND] = ACTIONS(2771), - [anon_sym_asm] = ACTIONS(2771), - [anon_sym_AT_LBRACK] = ACTIONS(2771), + [anon_sym_DOT] = ACTIONS(2387), + [anon_sym_as] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2387), + [anon_sym_COMMA] = ACTIONS(2387), + [anon_sym_const] = ACTIONS(2387), + [anon_sym_LPAREN] = ACTIONS(2387), + [anon_sym___global] = ACTIONS(2387), + [anon_sym_type] = ACTIONS(2387), + [anon_sym_fn] = ACTIONS(2387), + [anon_sym_PLUS] = ACTIONS(2387), + [anon_sym_DASH] = ACTIONS(2387), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_SLASH] = ACTIONS(2387), + [anon_sym_PERCENT] = ACTIONS(2387), + [anon_sym_LT] = ACTIONS(2387), + [anon_sym_GT] = ACTIONS(2387), + [anon_sym_EQ_EQ] = ACTIONS(2387), + [anon_sym_BANG_EQ] = ACTIONS(2387), + [anon_sym_LT_EQ] = ACTIONS(2387), + [anon_sym_GT_EQ] = ACTIONS(2387), + [anon_sym_LBRACK] = ACTIONS(2385), + [anon_sym_struct] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_pub] = ACTIONS(2387), + [anon_sym_mut] = ACTIONS(2387), + [anon_sym_enum] = ACTIONS(2387), + [anon_sym_interface] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2387), + [anon_sym_DASH_DASH] = ACTIONS(2387), + [anon_sym_QMARK] = ACTIONS(2387), + [anon_sym_BANG] = ACTIONS(2387), + [anon_sym_go] = ACTIONS(2387), + [anon_sym_spawn] = ACTIONS(2387), + [anon_sym_json_DOTdecode] = ACTIONS(2387), + [anon_sym_PIPE] = ACTIONS(2387), + [anon_sym_LBRACK2] = ACTIONS(2387), + [anon_sym_TILDE] = ACTIONS(2387), + [anon_sym_CARET] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2387), + [anon_sym_LT_DASH] = ACTIONS(2387), + [anon_sym_LT_LT] = ACTIONS(2387), + [anon_sym_GT_GT] = ACTIONS(2387), + [anon_sym_GT_GT_GT] = ACTIONS(2387), + [anon_sym_AMP_CARET] = ACTIONS(2387), + [anon_sym_AMP_AMP] = ACTIONS(2387), + [anon_sym_PIPE_PIPE] = ACTIONS(2387), + [anon_sym_or] = ACTIONS(2387), + [sym_none] = ACTIONS(2387), + [sym_true] = ACTIONS(2387), + [sym_false] = ACTIONS(2387), + [sym_nil] = ACTIONS(2387), + [anon_sym_QMARK_DOT] = ACTIONS(2387), + [anon_sym_POUND_LBRACK] = ACTIONS(2387), + [anon_sym_if] = ACTIONS(2387), + [anon_sym_DOLLARif] = ACTIONS(2387), + [anon_sym_is] = ACTIONS(2387), + [anon_sym_BANGis] = ACTIONS(2387), + [anon_sym_in] = ACTIONS(2387), + [anon_sym_BANGin] = ACTIONS(2387), + [anon_sym_match] = ACTIONS(2387), + [anon_sym_select] = ACTIONS(2387), + [anon_sym_lock] = ACTIONS(2387), + [anon_sym_rlock] = ACTIONS(2387), + [anon_sym_unsafe] = ACTIONS(2387), + [anon_sym_sql] = ACTIONS(2387), + [sym_int_literal] = ACTIONS(2387), + [sym_float_literal] = ACTIONS(2387), + [sym_rune_literal] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [anon_sym_DQUOTE] = ACTIONS(2387), + [anon_sym_c_SQUOTE] = ACTIONS(2387), + [anon_sym_c_DQUOTE] = ACTIONS(2387), + [anon_sym_r_SQUOTE] = ACTIONS(2387), + [anon_sym_r_DQUOTE] = ACTIONS(2387), + [sym_pseudo_compile_time_identifier] = ACTIONS(2387), + [anon_sym_shared] = ACTIONS(2387), + [anon_sym_map_LBRACK] = ACTIONS(2387), + [anon_sym_chan] = ACTIONS(2387), + [anon_sym_thread] = ACTIONS(2387), + [anon_sym_atomic] = ACTIONS(2387), + [anon_sym_assert] = ACTIONS(2387), + [anon_sym_defer] = ACTIONS(2387), + [anon_sym_goto] = ACTIONS(2387), + [anon_sym_break] = ACTIONS(2387), + [anon_sym_continue] = ACTIONS(2387), + [anon_sym_return] = ACTIONS(2387), + [anon_sym_DOLLARfor] = ACTIONS(2387), + [anon_sym_for] = ACTIONS(2387), + [anon_sym_POUND] = ACTIONS(2387), + [anon_sym_asm] = ACTIONS(2387), + [anon_sym_AT_LBRACK] = ACTIONS(2387), }, [1045] = { [sym_line_comment] = STATE(1045), [sym_block_comment] = STATE(1045), - [ts_builtin_sym_end] = ACTIONS(3054), - [sym_identifier] = ACTIONS(3056), - [anon_sym_LF] = ACTIONS(3056), - [anon_sym_CR] = ACTIONS(3056), - [anon_sym_CR_LF] = ACTIONS(3056), + [ts_builtin_sym_end] = ACTIONS(3012), + [sym_identifier] = ACTIONS(3014), + [anon_sym_LF] = ACTIONS(3014), + [anon_sym_CR] = ACTIONS(3014), + [anon_sym_CR_LF] = ACTIONS(3014), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3056), - [anon_sym_as] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_const] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym___global] = ACTIONS(3056), - [anon_sym_type] = ACTIONS(3056), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_fn] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3056), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_SLASH] = ACTIONS(3056), - [anon_sym_PERCENT] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_EQ_EQ] = ACTIONS(3056), - [anon_sym_BANG_EQ] = ACTIONS(3056), - [anon_sym_LT_EQ] = ACTIONS(3056), - [anon_sym_GT_EQ] = ACTIONS(3056), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_struct] = ACTIONS(3056), - [anon_sym_union] = ACTIONS(3056), - [anon_sym_pub] = ACTIONS(3056), - [anon_sym_mut] = ACTIONS(3056), - [anon_sym_enum] = ACTIONS(3056), - [anon_sym_interface] = ACTIONS(3056), - [anon_sym_PLUS_PLUS] = ACTIONS(3056), - [anon_sym_DASH_DASH] = ACTIONS(3056), - [anon_sym_QMARK] = ACTIONS(3056), - [anon_sym_BANG] = ACTIONS(3056), - [anon_sym_go] = ACTIONS(3056), - [anon_sym_spawn] = ACTIONS(3056), - [anon_sym_json_DOTdecode] = ACTIONS(3056), - [anon_sym_LBRACK2] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3056), - [anon_sym_CARET] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3056), - [anon_sym_LT_DASH] = ACTIONS(3056), - [anon_sym_LT_LT] = ACTIONS(3056), - [anon_sym_GT_GT] = ACTIONS(3056), - [anon_sym_GT_GT_GT] = ACTIONS(3056), - [anon_sym_AMP_CARET] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_PIPE_PIPE] = ACTIONS(3056), - [anon_sym_or] = ACTIONS(3056), - [sym_none] = ACTIONS(3056), - [sym_true] = ACTIONS(3056), - [sym_false] = ACTIONS(3056), - [sym_nil] = ACTIONS(3056), - [anon_sym_QMARK_DOT] = ACTIONS(3056), - [anon_sym_POUND_LBRACK] = ACTIONS(3056), - [anon_sym_if] = ACTIONS(3056), - [anon_sym_DOLLARif] = ACTIONS(3056), - [anon_sym_is] = ACTIONS(3056), - [anon_sym_BANGis] = ACTIONS(3056), - [anon_sym_in] = ACTIONS(3056), - [anon_sym_BANGin] = ACTIONS(3056), - [anon_sym_match] = ACTIONS(3056), - [anon_sym_select] = ACTIONS(3056), - [anon_sym_lock] = ACTIONS(3056), - [anon_sym_rlock] = ACTIONS(3056), - [anon_sym_unsafe] = ACTIONS(3056), - [anon_sym_sql] = ACTIONS(3056), - [sym_int_literal] = ACTIONS(3056), - [sym_float_literal] = ACTIONS(3056), - [sym_rune_literal] = ACTIONS(3056), - [anon_sym_SQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3056), - [anon_sym_c_SQUOTE] = ACTIONS(3056), - [anon_sym_c_DQUOTE] = ACTIONS(3056), - [anon_sym_r_SQUOTE] = ACTIONS(3056), - [anon_sym_r_DQUOTE] = ACTIONS(3056), - [sym_pseudo_compile_time_identifier] = ACTIONS(3056), - [anon_sym_shared] = ACTIONS(3056), - [anon_sym_map_LBRACK] = ACTIONS(3056), - [anon_sym_chan] = ACTIONS(3056), - [anon_sym_thread] = ACTIONS(3056), - [anon_sym_atomic] = ACTIONS(3056), - [anon_sym_assert] = ACTIONS(3056), - [anon_sym_defer] = ACTIONS(3056), - [anon_sym_goto] = ACTIONS(3056), - [anon_sym_break] = ACTIONS(3056), - [anon_sym_continue] = ACTIONS(3056), - [anon_sym_return] = ACTIONS(3056), - [anon_sym_DOLLARfor] = ACTIONS(3056), - [anon_sym_for] = ACTIONS(3056), - [anon_sym_POUND] = ACTIONS(3056), - [anon_sym_asm] = ACTIONS(3056), - [anon_sym_AT_LBRACK] = ACTIONS(3056), + [anon_sym_DOT] = ACTIONS(3014), + [anon_sym_as] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3014), + [anon_sym_COMMA] = ACTIONS(3014), + [anon_sym_const] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(3014), + [anon_sym___global] = ACTIONS(3014), + [anon_sym_type] = ACTIONS(3014), + [anon_sym_fn] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_SLASH] = ACTIONS(3014), + [anon_sym_PERCENT] = ACTIONS(3014), + [anon_sym_LT] = ACTIONS(3014), + [anon_sym_GT] = ACTIONS(3014), + [anon_sym_EQ_EQ] = ACTIONS(3014), + [anon_sym_BANG_EQ] = ACTIONS(3014), + [anon_sym_LT_EQ] = ACTIONS(3014), + [anon_sym_GT_EQ] = ACTIONS(3014), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_struct] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3014), + [anon_sym_pub] = ACTIONS(3014), + [anon_sym_mut] = ACTIONS(3014), + [anon_sym_enum] = ACTIONS(3014), + [anon_sym_interface] = ACTIONS(3014), + [anon_sym_PLUS_PLUS] = ACTIONS(3014), + [anon_sym_DASH_DASH] = ACTIONS(3014), + [anon_sym_QMARK] = ACTIONS(3014), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_go] = ACTIONS(3014), + [anon_sym_spawn] = ACTIONS(3014), + [anon_sym_json_DOTdecode] = ACTIONS(3014), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_LBRACK2] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_CARET] = ACTIONS(3014), + [anon_sym_AMP] = ACTIONS(3014), + [anon_sym_LT_DASH] = ACTIONS(3014), + [anon_sym_LT_LT] = ACTIONS(3014), + [anon_sym_GT_GT] = ACTIONS(3014), + [anon_sym_GT_GT_GT] = ACTIONS(3014), + [anon_sym_AMP_CARET] = ACTIONS(3014), + [anon_sym_AMP_AMP] = ACTIONS(3014), + [anon_sym_PIPE_PIPE] = ACTIONS(3014), + [anon_sym_or] = ACTIONS(3014), + [sym_none] = ACTIONS(3014), + [sym_true] = ACTIONS(3014), + [sym_false] = ACTIONS(3014), + [sym_nil] = ACTIONS(3014), + [anon_sym_QMARK_DOT] = ACTIONS(3014), + [anon_sym_POUND_LBRACK] = ACTIONS(3014), + [anon_sym_if] = ACTIONS(3014), + [anon_sym_DOLLARif] = ACTIONS(3014), + [anon_sym_is] = ACTIONS(3014), + [anon_sym_BANGis] = ACTIONS(3014), + [anon_sym_in] = ACTIONS(3014), + [anon_sym_BANGin] = ACTIONS(3014), + [anon_sym_match] = ACTIONS(3014), + [anon_sym_select] = ACTIONS(3014), + [anon_sym_lock] = ACTIONS(3014), + [anon_sym_rlock] = ACTIONS(3014), + [anon_sym_unsafe] = ACTIONS(3014), + [anon_sym_sql] = ACTIONS(3014), + [sym_int_literal] = ACTIONS(3014), + [sym_float_literal] = ACTIONS(3014), + [sym_rune_literal] = ACTIONS(3014), + [anon_sym_SQUOTE] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(3014), + [anon_sym_c_SQUOTE] = ACTIONS(3014), + [anon_sym_c_DQUOTE] = ACTIONS(3014), + [anon_sym_r_SQUOTE] = ACTIONS(3014), + [anon_sym_r_DQUOTE] = ACTIONS(3014), + [sym_pseudo_compile_time_identifier] = ACTIONS(3014), + [anon_sym_shared] = ACTIONS(3014), + [anon_sym_map_LBRACK] = ACTIONS(3014), + [anon_sym_chan] = ACTIONS(3014), + [anon_sym_thread] = ACTIONS(3014), + [anon_sym_atomic] = ACTIONS(3014), + [anon_sym_assert] = ACTIONS(3014), + [anon_sym_defer] = ACTIONS(3014), + [anon_sym_goto] = ACTIONS(3014), + [anon_sym_break] = ACTIONS(3014), + [anon_sym_continue] = ACTIONS(3014), + [anon_sym_return] = ACTIONS(3014), + [anon_sym_DOLLARfor] = ACTIONS(3014), + [anon_sym_for] = ACTIONS(3014), + [anon_sym_POUND] = ACTIONS(3014), + [anon_sym_asm] = ACTIONS(3014), + [anon_sym_AT_LBRACK] = ACTIONS(3014), }, [1046] = { [sym_line_comment] = STATE(1046), [sym_block_comment] = STATE(1046), - [ts_builtin_sym_end] = ACTIONS(2765), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LF] = ACTIONS(2767), - [anon_sym_CR] = ACTIONS(2767), - [anon_sym_CR_LF] = ACTIONS(2767), + [ts_builtin_sym_end] = ACTIONS(2632), + [sym_identifier] = ACTIONS(2629), + [anon_sym_LF] = ACTIONS(2629), + [anon_sym_CR] = ACTIONS(2629), + [anon_sym_CR_LF] = ACTIONS(2629), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2767), - [anon_sym_as] = ACTIONS(2767), - [anon_sym_LBRACE] = ACTIONS(2767), - [anon_sym_COMMA] = ACTIONS(2767), - [anon_sym_const] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2767), - [anon_sym___global] = ACTIONS(2767), - [anon_sym_type] = ACTIONS(2767), - [anon_sym_PIPE] = ACTIONS(2767), - [anon_sym_fn] = ACTIONS(2767), - [anon_sym_PLUS] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2767), - [anon_sym_SLASH] = ACTIONS(2767), - [anon_sym_PERCENT] = ACTIONS(2767), - [anon_sym_LT] = ACTIONS(2767), - [anon_sym_GT] = ACTIONS(2767), - [anon_sym_EQ_EQ] = ACTIONS(2767), - [anon_sym_BANG_EQ] = ACTIONS(2767), - [anon_sym_LT_EQ] = ACTIONS(2767), - [anon_sym_GT_EQ] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2765), - [anon_sym_struct] = ACTIONS(2767), - [anon_sym_union] = ACTIONS(2767), - [anon_sym_pub] = ACTIONS(2767), - [anon_sym_mut] = ACTIONS(2767), - [anon_sym_enum] = ACTIONS(2767), - [anon_sym_interface] = ACTIONS(2767), - [anon_sym_PLUS_PLUS] = ACTIONS(2767), - [anon_sym_DASH_DASH] = ACTIONS(2767), - [anon_sym_QMARK] = ACTIONS(2767), - [anon_sym_BANG] = ACTIONS(2767), - [anon_sym_go] = ACTIONS(2767), - [anon_sym_spawn] = ACTIONS(2767), - [anon_sym_json_DOTdecode] = ACTIONS(2767), - [anon_sym_LBRACK2] = ACTIONS(2767), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_LT_DASH] = ACTIONS(2767), - [anon_sym_LT_LT] = ACTIONS(2767), - [anon_sym_GT_GT] = ACTIONS(2767), - [anon_sym_GT_GT_GT] = ACTIONS(2767), - [anon_sym_AMP_CARET] = ACTIONS(2767), - [anon_sym_AMP_AMP] = ACTIONS(2767), - [anon_sym_PIPE_PIPE] = ACTIONS(2767), - [anon_sym_or] = ACTIONS(2767), - [sym_none] = ACTIONS(2767), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [sym_nil] = ACTIONS(2767), - [anon_sym_QMARK_DOT] = ACTIONS(2767), - [anon_sym_POUND_LBRACK] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2767), - [anon_sym_DOLLARif] = ACTIONS(2767), - [anon_sym_is] = ACTIONS(2767), - [anon_sym_BANGis] = ACTIONS(2767), - [anon_sym_in] = ACTIONS(2767), - [anon_sym_BANGin] = ACTIONS(2767), - [anon_sym_match] = ACTIONS(2767), - [anon_sym_select] = ACTIONS(2767), - [anon_sym_lock] = ACTIONS(2767), - [anon_sym_rlock] = ACTIONS(2767), - [anon_sym_unsafe] = ACTIONS(2767), - [anon_sym_sql] = ACTIONS(2767), - [sym_int_literal] = ACTIONS(2767), - [sym_float_literal] = ACTIONS(2767), - [sym_rune_literal] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2767), - [anon_sym_DQUOTE] = ACTIONS(2767), - [anon_sym_c_SQUOTE] = ACTIONS(2767), - [anon_sym_c_DQUOTE] = ACTIONS(2767), - [anon_sym_r_SQUOTE] = ACTIONS(2767), - [anon_sym_r_DQUOTE] = ACTIONS(2767), - [sym_pseudo_compile_time_identifier] = ACTIONS(2767), - [anon_sym_shared] = ACTIONS(2767), - [anon_sym_map_LBRACK] = ACTIONS(2767), - [anon_sym_chan] = ACTIONS(2767), - [anon_sym_thread] = ACTIONS(2767), - [anon_sym_atomic] = ACTIONS(2767), - [anon_sym_assert] = ACTIONS(2767), - [anon_sym_defer] = ACTIONS(2767), - [anon_sym_goto] = ACTIONS(2767), - [anon_sym_break] = ACTIONS(2767), - [anon_sym_continue] = ACTIONS(2767), - [anon_sym_return] = ACTIONS(2767), - [anon_sym_DOLLARfor] = ACTIONS(2767), - [anon_sym_for] = ACTIONS(2767), - [anon_sym_POUND] = ACTIONS(2767), - [anon_sym_asm] = ACTIONS(2767), - [anon_sym_AT_LBRACK] = ACTIONS(2767), + [anon_sym_DOT] = ACTIONS(2629), + [anon_sym_as] = ACTIONS(2629), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_COMMA] = ACTIONS(2629), + [anon_sym_const] = ACTIONS(2629), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym___global] = ACTIONS(2629), + [anon_sym_type] = ACTIONS(2629), + [anon_sym_fn] = ACTIONS(2629), + [anon_sym_PLUS] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2629), + [anon_sym_union] = ACTIONS(2629), + [anon_sym_pub] = ACTIONS(2629), + [anon_sym_mut] = ACTIONS(2629), + [anon_sym_enum] = ACTIONS(2629), + [anon_sym_interface] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_QMARK] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_go] = ACTIONS(2629), + [anon_sym_spawn] = ACTIONS(2629), + [anon_sym_json_DOTdecode] = ACTIONS(2629), + [anon_sym_PIPE] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2629), + [anon_sym_LT_DASH] = ACTIONS(2629), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT] = ACTIONS(2629), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_AMP_CARET] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_or] = ACTIONS(2629), + [sym_none] = ACTIONS(2629), + [sym_true] = ACTIONS(2629), + [sym_false] = ACTIONS(2629), + [sym_nil] = ACTIONS(2629), + [anon_sym_QMARK_DOT] = ACTIONS(2629), + [anon_sym_POUND_LBRACK] = ACTIONS(2629), + [anon_sym_if] = ACTIONS(2629), + [anon_sym_DOLLARif] = ACTIONS(2629), + [anon_sym_is] = ACTIONS(2629), + [anon_sym_BANGis] = ACTIONS(2629), + [anon_sym_in] = ACTIONS(2629), + [anon_sym_BANGin] = ACTIONS(2629), + [anon_sym_match] = ACTIONS(2629), + [anon_sym_select] = ACTIONS(2629), + [anon_sym_lock] = ACTIONS(2629), + [anon_sym_rlock] = ACTIONS(2629), + [anon_sym_unsafe] = ACTIONS(2629), + [anon_sym_sql] = ACTIONS(2629), + [sym_int_literal] = ACTIONS(2629), + [sym_float_literal] = ACTIONS(2629), + [sym_rune_literal] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [anon_sym_c_SQUOTE] = ACTIONS(2629), + [anon_sym_c_DQUOTE] = ACTIONS(2629), + [anon_sym_r_SQUOTE] = ACTIONS(2629), + [anon_sym_r_DQUOTE] = ACTIONS(2629), + [sym_pseudo_compile_time_identifier] = ACTIONS(2629), + [anon_sym_shared] = ACTIONS(2629), + [anon_sym_map_LBRACK] = ACTIONS(2629), + [anon_sym_chan] = ACTIONS(2629), + [anon_sym_thread] = ACTIONS(2629), + [anon_sym_atomic] = ACTIONS(2629), + [anon_sym_assert] = ACTIONS(2629), + [anon_sym_defer] = ACTIONS(2629), + [anon_sym_goto] = ACTIONS(2629), + [anon_sym_break] = ACTIONS(2629), + [anon_sym_continue] = ACTIONS(2629), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_DOLLARfor] = ACTIONS(2629), + [anon_sym_for] = ACTIONS(2629), + [anon_sym_POUND] = ACTIONS(2629), + [anon_sym_asm] = ACTIONS(2629), + [anon_sym_AT_LBRACK] = ACTIONS(2629), }, [1047] = { [sym_line_comment] = STATE(1047), [sym_block_comment] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(2857), - [sym_identifier] = ACTIONS(2859), - [anon_sym_LF] = ACTIONS(2859), - [anon_sym_CR] = ACTIONS(2859), - [anon_sym_CR_LF] = ACTIONS(2859), + [ts_builtin_sym_end] = ACTIONS(2717), + [sym_identifier] = ACTIONS(2719), + [anon_sym_LF] = ACTIONS(2719), + [anon_sym_CR] = ACTIONS(2719), + [anon_sym_CR_LF] = ACTIONS(2719), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2859), - [anon_sym_as] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2859), - [anon_sym_COMMA] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_LPAREN] = ACTIONS(2859), - [anon_sym___global] = ACTIONS(2859), - [anon_sym_type] = ACTIONS(2859), - [anon_sym_PIPE] = ACTIONS(2859), - [anon_sym_fn] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2859), - [anon_sym_SLASH] = ACTIONS(2859), - [anon_sym_PERCENT] = ACTIONS(2859), - [anon_sym_LT] = ACTIONS(2859), - [anon_sym_GT] = ACTIONS(2859), - [anon_sym_EQ_EQ] = ACTIONS(2859), - [anon_sym_BANG_EQ] = ACTIONS(2859), - [anon_sym_LT_EQ] = ACTIONS(2859), - [anon_sym_GT_EQ] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2857), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_pub] = ACTIONS(2859), - [anon_sym_mut] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_interface] = ACTIONS(2859), - [anon_sym_PLUS_PLUS] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2859), - [anon_sym_QMARK] = ACTIONS(2859), - [anon_sym_BANG] = ACTIONS(2859), - [anon_sym_go] = ACTIONS(2859), - [anon_sym_spawn] = ACTIONS(2859), - [anon_sym_json_DOTdecode] = ACTIONS(2859), - [anon_sym_LBRACK2] = ACTIONS(2859), - [anon_sym_TILDE] = ACTIONS(2859), - [anon_sym_CARET] = ACTIONS(2859), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_LT_DASH] = ACTIONS(2859), - [anon_sym_LT_LT] = ACTIONS(2859), - [anon_sym_GT_GT] = ACTIONS(2859), - [anon_sym_GT_GT_GT] = ACTIONS(2859), - [anon_sym_AMP_CARET] = ACTIONS(2859), - [anon_sym_AMP_AMP] = ACTIONS(2859), - [anon_sym_PIPE_PIPE] = ACTIONS(2859), - [anon_sym_or] = ACTIONS(2859), - [sym_none] = ACTIONS(2859), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [sym_nil] = ACTIONS(2859), - [anon_sym_QMARK_DOT] = ACTIONS(2859), - [anon_sym_POUND_LBRACK] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_DOLLARif] = ACTIONS(2859), - [anon_sym_is] = ACTIONS(2859), - [anon_sym_BANGis] = ACTIONS(2859), - [anon_sym_in] = ACTIONS(2859), - [anon_sym_BANGin] = ACTIONS(2859), - [anon_sym_match] = ACTIONS(2859), - [anon_sym_select] = ACTIONS(2859), - [anon_sym_lock] = ACTIONS(2859), - [anon_sym_rlock] = ACTIONS(2859), - [anon_sym_unsafe] = ACTIONS(2859), - [anon_sym_sql] = ACTIONS(2859), - [sym_int_literal] = ACTIONS(2859), - [sym_float_literal] = ACTIONS(2859), - [sym_rune_literal] = ACTIONS(2859), - [anon_sym_SQUOTE] = ACTIONS(2859), - [anon_sym_DQUOTE] = ACTIONS(2859), - [anon_sym_c_SQUOTE] = ACTIONS(2859), - [anon_sym_c_DQUOTE] = ACTIONS(2859), - [anon_sym_r_SQUOTE] = ACTIONS(2859), - [anon_sym_r_DQUOTE] = ACTIONS(2859), - [sym_pseudo_compile_time_identifier] = ACTIONS(2859), - [anon_sym_shared] = ACTIONS(2859), - [anon_sym_map_LBRACK] = ACTIONS(2859), - [anon_sym_chan] = ACTIONS(2859), - [anon_sym_thread] = ACTIONS(2859), - [anon_sym_atomic] = ACTIONS(2859), - [anon_sym_assert] = ACTIONS(2859), - [anon_sym_defer] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_DOLLARfor] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_POUND] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym_AT_LBRACK] = ACTIONS(2859), + [anon_sym_DOT] = ACTIONS(2719), + [anon_sym_as] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_COMMA] = ACTIONS(2719), + [anon_sym_const] = ACTIONS(2719), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym___global] = ACTIONS(2719), + [anon_sym_type] = ACTIONS(2719), + [anon_sym_fn] = ACTIONS(2719), + [anon_sym_PLUS] = ACTIONS(2719), + [anon_sym_DASH] = ACTIONS(2719), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_SLASH] = ACTIONS(2719), + [anon_sym_PERCENT] = ACTIONS(2719), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_GT] = ACTIONS(2719), + [anon_sym_EQ_EQ] = ACTIONS(2719), + [anon_sym_BANG_EQ] = ACTIONS(2719), + [anon_sym_LT_EQ] = ACTIONS(2719), + [anon_sym_GT_EQ] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(2719), + [anon_sym_union] = ACTIONS(2719), + [anon_sym_pub] = ACTIONS(2719), + [anon_sym_mut] = ACTIONS(2719), + [anon_sym_enum] = ACTIONS(2719), + [anon_sym_interface] = ACTIONS(2719), + [anon_sym_PLUS_PLUS] = ACTIONS(2719), + [anon_sym_DASH_DASH] = ACTIONS(2719), + [anon_sym_QMARK] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_go] = ACTIONS(2719), + [anon_sym_spawn] = ACTIONS(2719), + [anon_sym_json_DOTdecode] = ACTIONS(2719), + [anon_sym_PIPE] = ACTIONS(2719), + [anon_sym_LBRACK2] = ACTIONS(2719), + [anon_sym_TILDE] = ACTIONS(2719), + [anon_sym_CARET] = ACTIONS(2719), + [anon_sym_AMP] = ACTIONS(2719), + [anon_sym_LT_DASH] = ACTIONS(2719), + [anon_sym_LT_LT] = ACTIONS(2719), + [anon_sym_GT_GT] = ACTIONS(2719), + [anon_sym_GT_GT_GT] = ACTIONS(2719), + [anon_sym_AMP_CARET] = ACTIONS(2719), + [anon_sym_AMP_AMP] = ACTIONS(2719), + [anon_sym_PIPE_PIPE] = ACTIONS(2719), + [anon_sym_or] = ACTIONS(2719), + [sym_none] = ACTIONS(2719), + [sym_true] = ACTIONS(2719), + [sym_false] = ACTIONS(2719), + [sym_nil] = ACTIONS(2719), + [anon_sym_QMARK_DOT] = ACTIONS(2719), + [anon_sym_POUND_LBRACK] = ACTIONS(2719), + [anon_sym_if] = ACTIONS(2719), + [anon_sym_DOLLARif] = ACTIONS(2719), + [anon_sym_is] = ACTIONS(2719), + [anon_sym_BANGis] = ACTIONS(2719), + [anon_sym_in] = ACTIONS(2719), + [anon_sym_BANGin] = ACTIONS(2719), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_select] = ACTIONS(2719), + [anon_sym_lock] = ACTIONS(2719), + [anon_sym_rlock] = ACTIONS(2719), + [anon_sym_unsafe] = ACTIONS(2719), + [anon_sym_sql] = ACTIONS(2719), + [sym_int_literal] = ACTIONS(2719), + [sym_float_literal] = ACTIONS(2719), + [sym_rune_literal] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2719), + [anon_sym_DQUOTE] = ACTIONS(2719), + [anon_sym_c_SQUOTE] = ACTIONS(2719), + [anon_sym_c_DQUOTE] = ACTIONS(2719), + [anon_sym_r_SQUOTE] = ACTIONS(2719), + [anon_sym_r_DQUOTE] = ACTIONS(2719), + [sym_pseudo_compile_time_identifier] = ACTIONS(2719), + [anon_sym_shared] = ACTIONS(2719), + [anon_sym_map_LBRACK] = ACTIONS(2719), + [anon_sym_chan] = ACTIONS(2719), + [anon_sym_thread] = ACTIONS(2719), + [anon_sym_atomic] = ACTIONS(2719), + [anon_sym_assert] = ACTIONS(2719), + [anon_sym_defer] = ACTIONS(2719), + [anon_sym_goto] = ACTIONS(2719), + [anon_sym_break] = ACTIONS(2719), + [anon_sym_continue] = ACTIONS(2719), + [anon_sym_return] = ACTIONS(2719), + [anon_sym_DOLLARfor] = ACTIONS(2719), + [anon_sym_for] = ACTIONS(2719), + [anon_sym_POUND] = ACTIONS(2719), + [anon_sym_asm] = ACTIONS(2719), + [anon_sym_AT_LBRACK] = ACTIONS(2719), }, [1048] = { [sym_line_comment] = STATE(1048), [sym_block_comment] = STATE(1048), - [ts_builtin_sym_end] = ACTIONS(2179), - [sym_identifier] = ACTIONS(2181), - [anon_sym_LF] = ACTIONS(2181), - [anon_sym_CR] = ACTIONS(2181), - [anon_sym_CR_LF] = ACTIONS(2181), + [ts_builtin_sym_end] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1837), + [anon_sym_LF] = ACTIONS(1837), + [anon_sym_CR] = ACTIONS(1837), + [anon_sym_CR_LF] = ACTIONS(1837), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2181), - [anon_sym_as] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_COMMA] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym___global] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_PIPE] = ACTIONS(2181), - [anon_sym_fn] = ACTIONS(2181), - [anon_sym_PLUS] = ACTIONS(2181), - [anon_sym_DASH] = ACTIONS(2181), - [anon_sym_STAR] = ACTIONS(2181), - [anon_sym_SLASH] = ACTIONS(2181), - [anon_sym_PERCENT] = ACTIONS(2181), - [anon_sym_LT] = ACTIONS(2181), - [anon_sym_GT] = ACTIONS(2181), - [anon_sym_EQ_EQ] = ACTIONS(2181), - [anon_sym_BANG_EQ] = ACTIONS(2181), - [anon_sym_LT_EQ] = ACTIONS(2181), - [anon_sym_GT_EQ] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2179), - [anon_sym_struct] = ACTIONS(2181), - [anon_sym_union] = ACTIONS(2181), - [anon_sym_pub] = ACTIONS(2181), - [anon_sym_mut] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [anon_sym_interface] = ACTIONS(2181), - [anon_sym_PLUS_PLUS] = ACTIONS(2181), - [anon_sym_DASH_DASH] = ACTIONS(2181), - [anon_sym_QMARK] = ACTIONS(2181), - [anon_sym_BANG] = ACTIONS(2181), - [anon_sym_go] = ACTIONS(2181), - [anon_sym_spawn] = ACTIONS(2181), - [anon_sym_json_DOTdecode] = ACTIONS(2181), - [anon_sym_LBRACK2] = ACTIONS(2181), - [anon_sym_TILDE] = ACTIONS(2181), - [anon_sym_CARET] = ACTIONS(2181), - [anon_sym_AMP] = ACTIONS(2181), - [anon_sym_LT_DASH] = ACTIONS(2181), - [anon_sym_LT_LT] = ACTIONS(2181), - [anon_sym_GT_GT] = ACTIONS(2181), - [anon_sym_GT_GT_GT] = ACTIONS(2181), - [anon_sym_AMP_CARET] = ACTIONS(2181), - [anon_sym_AMP_AMP] = ACTIONS(2181), - [anon_sym_PIPE_PIPE] = ACTIONS(2181), - [anon_sym_or] = ACTIONS(2181), - [sym_none] = ACTIONS(2181), - [sym_true] = ACTIONS(2181), - [sym_false] = ACTIONS(2181), - [sym_nil] = ACTIONS(2181), - [anon_sym_QMARK_DOT] = ACTIONS(2181), - [anon_sym_POUND_LBRACK] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_DOLLARif] = ACTIONS(2181), - [anon_sym_is] = ACTIONS(2181), - [anon_sym_BANGis] = ACTIONS(2181), - [anon_sym_in] = ACTIONS(2181), - [anon_sym_BANGin] = ACTIONS(2181), - [anon_sym_match] = ACTIONS(2181), - [anon_sym_select] = ACTIONS(2181), - [anon_sym_lock] = ACTIONS(2181), - [anon_sym_rlock] = ACTIONS(2181), - [anon_sym_unsafe] = ACTIONS(2181), - [anon_sym_sql] = ACTIONS(2181), - [sym_int_literal] = ACTIONS(2181), - [sym_float_literal] = ACTIONS(2181), - [sym_rune_literal] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_DQUOTE] = ACTIONS(2181), - [anon_sym_c_SQUOTE] = ACTIONS(2181), - [anon_sym_c_DQUOTE] = ACTIONS(2181), - [anon_sym_r_SQUOTE] = ACTIONS(2181), - [anon_sym_r_DQUOTE] = ACTIONS(2181), - [sym_pseudo_compile_time_identifier] = ACTIONS(2181), - [anon_sym_shared] = ACTIONS(2181), - [anon_sym_map_LBRACK] = ACTIONS(2181), - [anon_sym_chan] = ACTIONS(2181), - [anon_sym_thread] = ACTIONS(2181), - [anon_sym_atomic] = ACTIONS(2181), - [anon_sym_assert] = ACTIONS(2181), - [anon_sym_defer] = ACTIONS(2181), - [anon_sym_goto] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_DOLLARfor] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_POUND] = ACTIONS(2181), - [anon_sym_asm] = ACTIONS(2181), - [anon_sym_AT_LBRACK] = ACTIONS(2181), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_as] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_const] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym___global] = ACTIONS(1837), + [anon_sym_type] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_struct] = ACTIONS(1837), + [anon_sym_union] = ACTIONS(1837), + [anon_sym_pub] = ACTIONS(1837), + [anon_sym_mut] = ACTIONS(1837), + [anon_sym_enum] = ACTIONS(1837), + [anon_sym_interface] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_QMARK] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_go] = ACTIONS(1837), + [anon_sym_spawn] = ACTIONS(1837), + [anon_sym_json_DOTdecode] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_LBRACK2] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_AMP_CARET] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [sym_none] = ACTIONS(1837), + [sym_true] = ACTIONS(1837), + [sym_false] = ACTIONS(1837), + [sym_nil] = ACTIONS(1837), + [anon_sym_QMARK_DOT] = ACTIONS(1837), + [anon_sym_POUND_LBRACK] = ACTIONS(1837), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_DOLLARif] = ACTIONS(1837), + [anon_sym_is] = ACTIONS(1837), + [anon_sym_BANGis] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_BANGin] = ACTIONS(1837), + [anon_sym_match] = ACTIONS(1837), + [anon_sym_select] = ACTIONS(1837), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1837), + [anon_sym_sql] = ACTIONS(1837), + [sym_int_literal] = ACTIONS(1837), + [sym_float_literal] = ACTIONS(1837), + [sym_rune_literal] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_c_SQUOTE] = ACTIONS(1837), + [anon_sym_c_DQUOTE] = ACTIONS(1837), + [anon_sym_r_SQUOTE] = ACTIONS(1837), + [anon_sym_r_DQUOTE] = ACTIONS(1837), + [sym_pseudo_compile_time_identifier] = ACTIONS(1837), + [anon_sym_shared] = ACTIONS(1837), + [anon_sym_map_LBRACK] = ACTIONS(1837), + [anon_sym_chan] = ACTIONS(1837), + [anon_sym_thread] = ACTIONS(1837), + [anon_sym_atomic] = ACTIONS(1837), + [anon_sym_assert] = ACTIONS(1837), + [anon_sym_defer] = ACTIONS(1837), + [anon_sym_goto] = ACTIONS(1837), + [anon_sym_break] = ACTIONS(1837), + [anon_sym_continue] = ACTIONS(1837), + [anon_sym_return] = ACTIONS(1837), + [anon_sym_DOLLARfor] = ACTIONS(1837), + [anon_sym_for] = ACTIONS(1837), + [anon_sym_POUND] = ACTIONS(1837), + [anon_sym_asm] = ACTIONS(1837), + [anon_sym_AT_LBRACK] = ACTIONS(1837), }, [1049] = { [sym_line_comment] = STATE(1049), [sym_block_comment] = STATE(1049), - [ts_builtin_sym_end] = ACTIONS(2191), - [sym_identifier] = ACTIONS(2193), - [anon_sym_LF] = ACTIONS(2193), - [anon_sym_CR] = ACTIONS(2193), - [anon_sym_CR_LF] = ACTIONS(2193), + [ts_builtin_sym_end] = ACTIONS(2655), + [sym_identifier] = ACTIONS(2657), + [anon_sym_LF] = ACTIONS(2657), + [anon_sym_CR] = ACTIONS(2657), + [anon_sym_CR_LF] = ACTIONS(2657), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2193), - [anon_sym_as] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2193), - [anon_sym_COMMA] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2193), - [anon_sym___global] = ACTIONS(2193), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_PIPE] = ACTIONS(2193), - [anon_sym_fn] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_PERCENT] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_GT] = ACTIONS(2193), - [anon_sym_EQ_EQ] = ACTIONS(2193), - [anon_sym_BANG_EQ] = ACTIONS(2193), - [anon_sym_LT_EQ] = ACTIONS(2193), - [anon_sym_GT_EQ] = ACTIONS(2193), - [anon_sym_LBRACK] = ACTIONS(2191), - [anon_sym_struct] = ACTIONS(2193), - [anon_sym_union] = ACTIONS(2193), - [anon_sym_pub] = ACTIONS(2193), - [anon_sym_mut] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), - [anon_sym_interface] = ACTIONS(2193), - [anon_sym_PLUS_PLUS] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2193), - [anon_sym_QMARK] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2193), - [anon_sym_go] = ACTIONS(2193), - [anon_sym_spawn] = ACTIONS(2193), - [anon_sym_json_DOTdecode] = ACTIONS(2193), - [anon_sym_LBRACK2] = ACTIONS(2193), - [anon_sym_TILDE] = ACTIONS(2193), - [anon_sym_CARET] = ACTIONS(2193), - [anon_sym_AMP] = ACTIONS(2193), - [anon_sym_LT_DASH] = ACTIONS(2193), - [anon_sym_LT_LT] = ACTIONS(2193), - [anon_sym_GT_GT] = ACTIONS(2193), - [anon_sym_GT_GT_GT] = ACTIONS(2193), - [anon_sym_AMP_CARET] = ACTIONS(2193), - [anon_sym_AMP_AMP] = ACTIONS(2193), - [anon_sym_PIPE_PIPE] = ACTIONS(2193), - [anon_sym_or] = ACTIONS(2193), - [sym_none] = ACTIONS(2193), - [sym_true] = ACTIONS(2193), - [sym_false] = ACTIONS(2193), - [sym_nil] = ACTIONS(2193), - [anon_sym_QMARK_DOT] = ACTIONS(2193), - [anon_sym_POUND_LBRACK] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_DOLLARif] = ACTIONS(2193), - [anon_sym_is] = ACTIONS(2193), - [anon_sym_BANGis] = ACTIONS(2193), - [anon_sym_in] = ACTIONS(2193), - [anon_sym_BANGin] = ACTIONS(2193), - [anon_sym_match] = ACTIONS(2193), - [anon_sym_select] = ACTIONS(2193), - [anon_sym_lock] = ACTIONS(2193), - [anon_sym_rlock] = ACTIONS(2193), - [anon_sym_unsafe] = ACTIONS(2193), - [anon_sym_sql] = ACTIONS(2193), - [sym_int_literal] = ACTIONS(2193), - [sym_float_literal] = ACTIONS(2193), - [sym_rune_literal] = ACTIONS(2193), - [anon_sym_SQUOTE] = ACTIONS(2193), - [anon_sym_DQUOTE] = ACTIONS(2193), - [anon_sym_c_SQUOTE] = ACTIONS(2193), - [anon_sym_c_DQUOTE] = ACTIONS(2193), - [anon_sym_r_SQUOTE] = ACTIONS(2193), - [anon_sym_r_DQUOTE] = ACTIONS(2193), - [sym_pseudo_compile_time_identifier] = ACTIONS(2193), - [anon_sym_shared] = ACTIONS(2193), - [anon_sym_map_LBRACK] = ACTIONS(2193), - [anon_sym_chan] = ACTIONS(2193), - [anon_sym_thread] = ACTIONS(2193), - [anon_sym_atomic] = ACTIONS(2193), - [anon_sym_assert] = ACTIONS(2193), - [anon_sym_defer] = ACTIONS(2193), - [anon_sym_goto] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_DOLLARfor] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_POUND] = ACTIONS(2193), - [anon_sym_asm] = ACTIONS(2193), - [anon_sym_AT_LBRACK] = ACTIONS(2193), + [anon_sym_DOT] = ACTIONS(2657), + [anon_sym_as] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_COMMA] = ACTIONS(2657), + [anon_sym_const] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym___global] = ACTIONS(2657), + [anon_sym_type] = ACTIONS(2657), + [anon_sym_fn] = ACTIONS(2657), + [anon_sym_PLUS] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2657), + [anon_sym_SLASH] = ACTIONS(2657), + [anon_sym_PERCENT] = ACTIONS(2657), + [anon_sym_LT] = ACTIONS(2657), + [anon_sym_GT] = ACTIONS(2657), + [anon_sym_EQ_EQ] = ACTIONS(2657), + [anon_sym_BANG_EQ] = ACTIONS(2657), + [anon_sym_LT_EQ] = ACTIONS(2657), + [anon_sym_GT_EQ] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2655), + [anon_sym_struct] = ACTIONS(2657), + [anon_sym_union] = ACTIONS(2657), + [anon_sym_pub] = ACTIONS(2657), + [anon_sym_mut] = ACTIONS(2657), + [anon_sym_enum] = ACTIONS(2657), + [anon_sym_interface] = ACTIONS(2657), + [anon_sym_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_DASH_DASH] = ACTIONS(2657), + [anon_sym_QMARK] = ACTIONS(2657), + [anon_sym_BANG] = ACTIONS(2657), + [anon_sym_go] = ACTIONS(2657), + [anon_sym_spawn] = ACTIONS(2657), + [anon_sym_json_DOTdecode] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(2657), + [anon_sym_LBRACK2] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2657), + [anon_sym_CARET] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2657), + [anon_sym_LT_DASH] = ACTIONS(2657), + [anon_sym_LT_LT] = ACTIONS(2657), + [anon_sym_GT_GT] = ACTIONS(2657), + [anon_sym_GT_GT_GT] = ACTIONS(2657), + [anon_sym_AMP_CARET] = ACTIONS(2657), + [anon_sym_AMP_AMP] = ACTIONS(2657), + [anon_sym_PIPE_PIPE] = ACTIONS(2657), + [anon_sym_or] = ACTIONS(2657), + [sym_none] = ACTIONS(2657), + [sym_true] = ACTIONS(2657), + [sym_false] = ACTIONS(2657), + [sym_nil] = ACTIONS(2657), + [anon_sym_QMARK_DOT] = ACTIONS(2657), + [anon_sym_POUND_LBRACK] = ACTIONS(2657), + [anon_sym_if] = ACTIONS(2657), + [anon_sym_DOLLARif] = ACTIONS(2657), + [anon_sym_is] = ACTIONS(2657), + [anon_sym_BANGis] = ACTIONS(2657), + [anon_sym_in] = ACTIONS(2657), + [anon_sym_BANGin] = ACTIONS(2657), + [anon_sym_match] = ACTIONS(2657), + [anon_sym_select] = ACTIONS(2657), + [anon_sym_lock] = ACTIONS(2657), + [anon_sym_rlock] = ACTIONS(2657), + [anon_sym_unsafe] = ACTIONS(2657), + [anon_sym_sql] = ACTIONS(2657), + [sym_int_literal] = ACTIONS(2657), + [sym_float_literal] = ACTIONS(2657), + [sym_rune_literal] = ACTIONS(2657), + [anon_sym_SQUOTE] = ACTIONS(2657), + [anon_sym_DQUOTE] = ACTIONS(2657), + [anon_sym_c_SQUOTE] = ACTIONS(2657), + [anon_sym_c_DQUOTE] = ACTIONS(2657), + [anon_sym_r_SQUOTE] = ACTIONS(2657), + [anon_sym_r_DQUOTE] = ACTIONS(2657), + [sym_pseudo_compile_time_identifier] = ACTIONS(2657), + [anon_sym_shared] = ACTIONS(2657), + [anon_sym_map_LBRACK] = ACTIONS(2657), + [anon_sym_chan] = ACTIONS(2657), + [anon_sym_thread] = ACTIONS(2657), + [anon_sym_atomic] = ACTIONS(2657), + [anon_sym_assert] = ACTIONS(2657), + [anon_sym_defer] = ACTIONS(2657), + [anon_sym_goto] = ACTIONS(2657), + [anon_sym_break] = ACTIONS(2657), + [anon_sym_continue] = ACTIONS(2657), + [anon_sym_return] = ACTIONS(2657), + [anon_sym_DOLLARfor] = ACTIONS(2657), + [anon_sym_for] = ACTIONS(2657), + [anon_sym_POUND] = ACTIONS(2657), + [anon_sym_asm] = ACTIONS(2657), + [anon_sym_AT_LBRACK] = ACTIONS(2657), }, [1050] = { [sym_line_comment] = STATE(1050), [sym_block_comment] = STATE(1050), - [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), + [ts_builtin_sym_end] = ACTIONS(2369), + [sym_identifier] = ACTIONS(2371), + [anon_sym_LF] = ACTIONS(2371), + [anon_sym_CR] = ACTIONS(2371), + [anon_sym_CR_LF] = ACTIONS(2371), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3011), - [anon_sym_as] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(3011), - [anon_sym_COMMA] = ACTIONS(3011), - [anon_sym_const] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3011), - [anon_sym___global] = ACTIONS(3011), - [anon_sym_type] = ACTIONS(3011), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_fn] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3011), - [anon_sym_LT] = ACTIONS(3011), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_EQ] = ACTIONS(3011), - [anon_sym_LBRACK] = ACTIONS(3009), - [anon_sym_struct] = ACTIONS(3011), - [anon_sym_union] = ACTIONS(3011), - [anon_sym_pub] = ACTIONS(3011), - [anon_sym_mut] = ACTIONS(3011), - [anon_sym_enum] = ACTIONS(3011), - [anon_sym_interface] = ACTIONS(3011), - [anon_sym_PLUS_PLUS] = ACTIONS(3011), - [anon_sym_DASH_DASH] = ACTIONS(3011), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_go] = ACTIONS(3011), - [anon_sym_spawn] = ACTIONS(3011), - [anon_sym_json_DOTdecode] = ACTIONS(3011), - [anon_sym_LBRACK2] = ACTIONS(3011), - [anon_sym_TILDE] = ACTIONS(3011), - [anon_sym_CARET] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(3011), - [anon_sym_LT_DASH] = ACTIONS(3011), - [anon_sym_LT_LT] = ACTIONS(3011), - [anon_sym_GT_GT] = ACTIONS(3011), - [anon_sym_GT_GT_GT] = ACTIONS(3011), - [anon_sym_AMP_CARET] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3011), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_or] = ACTIONS(3011), - [sym_none] = ACTIONS(3011), - [sym_true] = ACTIONS(3011), - [sym_false] = ACTIONS(3011), - [sym_nil] = ACTIONS(3011), - [anon_sym_QMARK_DOT] = ACTIONS(3011), - [anon_sym_POUND_LBRACK] = ACTIONS(3011), - [anon_sym_if] = ACTIONS(3011), - [anon_sym_DOLLARif] = ACTIONS(3011), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3011), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_BANGin] = ACTIONS(3011), - [anon_sym_match] = ACTIONS(3011), - [anon_sym_select] = ACTIONS(3011), - [anon_sym_lock] = ACTIONS(3011), - [anon_sym_rlock] = ACTIONS(3011), - [anon_sym_unsafe] = ACTIONS(3011), - [anon_sym_sql] = ACTIONS(3011), - [sym_int_literal] = ACTIONS(3011), - [sym_float_literal] = ACTIONS(3011), - [sym_rune_literal] = ACTIONS(3011), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_DQUOTE] = ACTIONS(3011), - [anon_sym_c_SQUOTE] = ACTIONS(3011), - [anon_sym_c_DQUOTE] = ACTIONS(3011), - [anon_sym_r_SQUOTE] = ACTIONS(3011), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(2371), + [anon_sym_as] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_COMMA] = ACTIONS(2371), + [anon_sym_const] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym___global] = ACTIONS(2371), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_fn] = ACTIONS(2371), + [anon_sym_PLUS] = ACTIONS(2371), + [anon_sym_DASH] = ACTIONS(2371), + [anon_sym_STAR] = ACTIONS(2371), + [anon_sym_SLASH] = ACTIONS(2371), + [anon_sym_PERCENT] = ACTIONS(2371), + [anon_sym_LT] = ACTIONS(2371), + [anon_sym_GT] = ACTIONS(2371), + [anon_sym_EQ_EQ] = ACTIONS(2371), + [anon_sym_BANG_EQ] = ACTIONS(2371), + [anon_sym_LT_EQ] = ACTIONS(2371), + [anon_sym_GT_EQ] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2369), + [anon_sym_struct] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), + [anon_sym_pub] = ACTIONS(2371), + [anon_sym_mut] = ACTIONS(2371), + [anon_sym_enum] = ACTIONS(2371), + [anon_sym_interface] = ACTIONS(2371), + [anon_sym_PLUS_PLUS] = ACTIONS(2371), + [anon_sym_DASH_DASH] = ACTIONS(2371), + [anon_sym_QMARK] = ACTIONS(2371), + [anon_sym_BANG] = ACTIONS(2371), + [anon_sym_go] = ACTIONS(2371), + [anon_sym_spawn] = ACTIONS(2371), + [anon_sym_json_DOTdecode] = ACTIONS(2371), + [anon_sym_PIPE] = ACTIONS(2371), + [anon_sym_LBRACK2] = ACTIONS(2371), + [anon_sym_TILDE] = ACTIONS(2371), + [anon_sym_CARET] = ACTIONS(2371), + [anon_sym_AMP] = ACTIONS(2371), + [anon_sym_LT_DASH] = ACTIONS(2371), + [anon_sym_LT_LT] = ACTIONS(2371), + [anon_sym_GT_GT] = ACTIONS(2371), + [anon_sym_GT_GT_GT] = ACTIONS(2371), + [anon_sym_AMP_CARET] = ACTIONS(2371), + [anon_sym_AMP_AMP] = ACTIONS(2371), + [anon_sym_PIPE_PIPE] = ACTIONS(2371), + [anon_sym_or] = ACTIONS(2371), + [sym_none] = ACTIONS(2371), + [sym_true] = ACTIONS(2371), + [sym_false] = ACTIONS(2371), + [sym_nil] = ACTIONS(2371), + [anon_sym_QMARK_DOT] = ACTIONS(2371), + [anon_sym_POUND_LBRACK] = ACTIONS(2371), + [anon_sym_if] = ACTIONS(2371), + [anon_sym_DOLLARif] = ACTIONS(2371), + [anon_sym_is] = ACTIONS(2371), + [anon_sym_BANGis] = ACTIONS(2371), + [anon_sym_in] = ACTIONS(2371), + [anon_sym_BANGin] = ACTIONS(2371), + [anon_sym_match] = ACTIONS(2371), + [anon_sym_select] = ACTIONS(2371), + [anon_sym_lock] = ACTIONS(2371), + [anon_sym_rlock] = ACTIONS(2371), + [anon_sym_unsafe] = ACTIONS(2371), + [anon_sym_sql] = ACTIONS(2371), + [sym_int_literal] = ACTIONS(2371), + [sym_float_literal] = ACTIONS(2371), + [sym_rune_literal] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2371), + [anon_sym_DQUOTE] = ACTIONS(2371), + [anon_sym_c_SQUOTE] = ACTIONS(2371), + [anon_sym_c_DQUOTE] = ACTIONS(2371), + [anon_sym_r_SQUOTE] = ACTIONS(2371), + [anon_sym_r_DQUOTE] = ACTIONS(2371), + [sym_pseudo_compile_time_identifier] = ACTIONS(2371), + [anon_sym_shared] = ACTIONS(2371), + [anon_sym_map_LBRACK] = ACTIONS(2371), + [anon_sym_chan] = ACTIONS(2371), + [anon_sym_thread] = ACTIONS(2371), + [anon_sym_atomic] = ACTIONS(2371), + [anon_sym_assert] = ACTIONS(2371), + [anon_sym_defer] = ACTIONS(2371), + [anon_sym_goto] = ACTIONS(2371), + [anon_sym_break] = ACTIONS(2371), + [anon_sym_continue] = ACTIONS(2371), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_DOLLARfor] = ACTIONS(2371), + [anon_sym_for] = ACTIONS(2371), + [anon_sym_POUND] = ACTIONS(2371), + [anon_sym_asm] = ACTIONS(2371), + [anon_sym_AT_LBRACK] = ACTIONS(2371), }, [1051] = { [sym_line_comment] = STATE(1051), [sym_block_comment] = STATE(1051), - [ts_builtin_sym_end] = ACTIONS(2099), - [sym_identifier] = ACTIONS(2101), - [anon_sym_LF] = ACTIONS(2101), - [anon_sym_CR] = ACTIONS(2101), - [anon_sym_CR_LF] = ACTIONS(2101), + [ts_builtin_sym_end] = ACTIONS(2419), + [sym_identifier] = ACTIONS(2421), + [anon_sym_LF] = ACTIONS(2421), + [anon_sym_CR] = ACTIONS(2421), + [anon_sym_CR_LF] = ACTIONS(2421), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2101), - [anon_sym_as] = ACTIONS(2101), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_COMMA] = ACTIONS(2101), - [anon_sym_const] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2101), - [anon_sym___global] = ACTIONS(2101), - [anon_sym_type] = ACTIONS(2101), - [anon_sym_PIPE] = ACTIONS(2101), - [anon_sym_fn] = ACTIONS(2101), - [anon_sym_PLUS] = ACTIONS(2101), - [anon_sym_DASH] = ACTIONS(2101), - [anon_sym_STAR] = ACTIONS(2101), - [anon_sym_SLASH] = ACTIONS(2101), - [anon_sym_PERCENT] = ACTIONS(2101), - [anon_sym_LT] = ACTIONS(2101), - [anon_sym_GT] = ACTIONS(2101), - [anon_sym_EQ_EQ] = ACTIONS(2101), - [anon_sym_BANG_EQ] = ACTIONS(2101), - [anon_sym_LT_EQ] = ACTIONS(2101), - [anon_sym_GT_EQ] = ACTIONS(2101), - [anon_sym_LBRACK] = ACTIONS(2099), - [anon_sym_struct] = ACTIONS(2101), - [anon_sym_union] = ACTIONS(2101), - [anon_sym_pub] = ACTIONS(2101), - [anon_sym_mut] = ACTIONS(2101), - [anon_sym_enum] = ACTIONS(2101), - [anon_sym_interface] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_QMARK] = ACTIONS(2101), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_go] = ACTIONS(2101), - [anon_sym_spawn] = ACTIONS(2101), - [anon_sym_json_DOTdecode] = ACTIONS(2101), - [anon_sym_LBRACK2] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_LT_DASH] = ACTIONS(2101), - [anon_sym_LT_LT] = ACTIONS(2101), - [anon_sym_GT_GT] = ACTIONS(2101), - [anon_sym_GT_GT_GT] = ACTIONS(2101), - [anon_sym_AMP_CARET] = ACTIONS(2101), - [anon_sym_AMP_AMP] = ACTIONS(2101), - [anon_sym_PIPE_PIPE] = ACTIONS(2101), - [anon_sym_or] = ACTIONS(2101), - [sym_none] = ACTIONS(2101), - [sym_true] = ACTIONS(2101), - [sym_false] = ACTIONS(2101), - [sym_nil] = ACTIONS(2101), - [anon_sym_QMARK_DOT] = ACTIONS(2101), - [anon_sym_POUND_LBRACK] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_DOLLARif] = ACTIONS(2101), - [anon_sym_is] = ACTIONS(2101), - [anon_sym_BANGis] = ACTIONS(2101), - [anon_sym_in] = ACTIONS(2101), - [anon_sym_BANGin] = ACTIONS(2101), - [anon_sym_match] = ACTIONS(2101), - [anon_sym_select] = ACTIONS(2101), - [anon_sym_lock] = ACTIONS(2101), - [anon_sym_rlock] = ACTIONS(2101), - [anon_sym_unsafe] = ACTIONS(2101), - [anon_sym_sql] = ACTIONS(2101), - [sym_int_literal] = ACTIONS(2101), - [sym_float_literal] = ACTIONS(2101), - [sym_rune_literal] = ACTIONS(2101), - [anon_sym_SQUOTE] = ACTIONS(2101), - [anon_sym_DQUOTE] = ACTIONS(2101), - [anon_sym_c_SQUOTE] = ACTIONS(2101), - [anon_sym_c_DQUOTE] = ACTIONS(2101), - [anon_sym_r_SQUOTE] = ACTIONS(2101), - [anon_sym_r_DQUOTE] = ACTIONS(2101), - [sym_pseudo_compile_time_identifier] = ACTIONS(2101), - [anon_sym_shared] = ACTIONS(2101), - [anon_sym_map_LBRACK] = ACTIONS(2101), - [anon_sym_chan] = ACTIONS(2101), - [anon_sym_thread] = ACTIONS(2101), - [anon_sym_atomic] = ACTIONS(2101), - [anon_sym_assert] = ACTIONS(2101), - [anon_sym_defer] = ACTIONS(2101), - [anon_sym_goto] = ACTIONS(2101), - [anon_sym_break] = ACTIONS(2101), - [anon_sym_continue] = ACTIONS(2101), - [anon_sym_return] = ACTIONS(2101), - [anon_sym_DOLLARfor] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2101), - [anon_sym_POUND] = ACTIONS(2101), - [anon_sym_asm] = ACTIONS(2101), - [anon_sym_AT_LBRACK] = ACTIONS(2101), + [anon_sym_DOT] = ACTIONS(2421), + [anon_sym_as] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_COMMA] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2421), + [anon_sym_LPAREN] = ACTIONS(2421), + [anon_sym___global] = ACTIONS(2421), + [anon_sym_type] = ACTIONS(2421), + [anon_sym_fn] = ACTIONS(2421), + [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_SLASH] = ACTIONS(2421), + [anon_sym_PERCENT] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2421), + [anon_sym_GT] = ACTIONS(2421), + [anon_sym_EQ_EQ] = ACTIONS(2421), + [anon_sym_BANG_EQ] = ACTIONS(2421), + [anon_sym_LT_EQ] = ACTIONS(2421), + [anon_sym_GT_EQ] = ACTIONS(2421), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_struct] = ACTIONS(2421), + [anon_sym_union] = ACTIONS(2421), + [anon_sym_pub] = ACTIONS(2421), + [anon_sym_mut] = ACTIONS(2421), + [anon_sym_enum] = ACTIONS(2421), + [anon_sym_interface] = ACTIONS(2421), + [anon_sym_PLUS_PLUS] = ACTIONS(2421), + [anon_sym_DASH_DASH] = ACTIONS(2421), + [anon_sym_QMARK] = ACTIONS(2421), + [anon_sym_BANG] = ACTIONS(2421), + [anon_sym_go] = ACTIONS(2421), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(2421), + [anon_sym_PIPE] = ACTIONS(2421), + [anon_sym_LBRACK2] = ACTIONS(2421), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_CARET] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2421), + [anon_sym_LT_DASH] = ACTIONS(2421), + [anon_sym_LT_LT] = ACTIONS(2421), + [anon_sym_GT_GT] = ACTIONS(2421), + [anon_sym_GT_GT_GT] = ACTIONS(2421), + [anon_sym_AMP_CARET] = ACTIONS(2421), + [anon_sym_AMP_AMP] = ACTIONS(2421), + [anon_sym_PIPE_PIPE] = ACTIONS(2421), + [anon_sym_or] = ACTIONS(2421), + [sym_none] = ACTIONS(2421), + [sym_true] = ACTIONS(2421), + [sym_false] = ACTIONS(2421), + [sym_nil] = ACTIONS(2421), + [anon_sym_QMARK_DOT] = ACTIONS(2421), + [anon_sym_POUND_LBRACK] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_DOLLARif] = ACTIONS(2421), + [anon_sym_is] = ACTIONS(2421), + [anon_sym_BANGis] = ACTIONS(2421), + [anon_sym_in] = ACTIONS(2421), + [anon_sym_BANGin] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(2421), + [anon_sym_select] = ACTIONS(2421), + [anon_sym_lock] = ACTIONS(2421), + [anon_sym_rlock] = ACTIONS(2421), + [anon_sym_unsafe] = ACTIONS(2421), + [anon_sym_sql] = ACTIONS(2421), + [sym_int_literal] = ACTIONS(2421), + [sym_float_literal] = ACTIONS(2421), + [sym_rune_literal] = ACTIONS(2421), + [anon_sym_SQUOTE] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(2421), + [anon_sym_c_SQUOTE] = ACTIONS(2421), + [anon_sym_c_DQUOTE] = ACTIONS(2421), + [anon_sym_r_SQUOTE] = ACTIONS(2421), + [anon_sym_r_DQUOTE] = ACTIONS(2421), + [sym_pseudo_compile_time_identifier] = ACTIONS(2421), + [anon_sym_shared] = ACTIONS(2421), + [anon_sym_map_LBRACK] = ACTIONS(2421), + [anon_sym_chan] = ACTIONS(2421), + [anon_sym_thread] = ACTIONS(2421), + [anon_sym_atomic] = ACTIONS(2421), + [anon_sym_assert] = ACTIONS(2421), + [anon_sym_defer] = ACTIONS(2421), + [anon_sym_goto] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_DOLLARfor] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_POUND] = ACTIONS(2421), + [anon_sym_asm] = ACTIONS(2421), + [anon_sym_AT_LBRACK] = ACTIONS(2421), }, [1052] = { [sym_line_comment] = STATE(1052), [sym_block_comment] = STATE(1052), - [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), + [ts_builtin_sym_end] = ACTIONS(2423), + [sym_identifier] = ACTIONS(2425), + [anon_sym_LF] = ACTIONS(2425), + [anon_sym_CR] = ACTIONS(2425), + [anon_sym_CR_LF] = ACTIONS(2425), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3015), - [anon_sym_as] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3015), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_const] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3015), - [anon_sym___global] = ACTIONS(3015), - [anon_sym_type] = ACTIONS(3015), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_fn] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3015), - [anon_sym_DASH] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_SLASH] = ACTIONS(3015), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3015), - [anon_sym_EQ_EQ] = ACTIONS(3015), - [anon_sym_BANG_EQ] = ACTIONS(3015), - [anon_sym_LT_EQ] = ACTIONS(3015), - [anon_sym_GT_EQ] = ACTIONS(3015), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_struct] = ACTIONS(3015), - [anon_sym_union] = ACTIONS(3015), - [anon_sym_pub] = ACTIONS(3015), - [anon_sym_mut] = ACTIONS(3015), - [anon_sym_enum] = ACTIONS(3015), - [anon_sym_interface] = ACTIONS(3015), - [anon_sym_PLUS_PLUS] = ACTIONS(3015), - [anon_sym_DASH_DASH] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(3015), - [anon_sym_BANG] = ACTIONS(3015), - [anon_sym_go] = ACTIONS(3015), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3015), - [anon_sym_LBRACK2] = ACTIONS(3015), - [anon_sym_TILDE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3015), - [anon_sym_LT_DASH] = ACTIONS(3015), - [anon_sym_LT_LT] = ACTIONS(3015), - [anon_sym_GT_GT] = ACTIONS(3015), - [anon_sym_GT_GT_GT] = ACTIONS(3015), - [anon_sym_AMP_CARET] = ACTIONS(3015), - [anon_sym_AMP_AMP] = ACTIONS(3015), - [anon_sym_PIPE_PIPE] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3015), - [sym_none] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [sym_nil] = ACTIONS(3015), - [anon_sym_QMARK_DOT] = ACTIONS(3015), - [anon_sym_POUND_LBRACK] = ACTIONS(3015), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_DOLLARif] = ACTIONS(3015), - [anon_sym_is] = ACTIONS(3015), - [anon_sym_BANGis] = ACTIONS(3015), - [anon_sym_in] = ACTIONS(3015), - [anon_sym_BANGin] = ACTIONS(3015), - [anon_sym_match] = ACTIONS(3015), - [anon_sym_select] = ACTIONS(3015), - [anon_sym_lock] = ACTIONS(3015), - [anon_sym_rlock] = ACTIONS(3015), - [anon_sym_unsafe] = ACTIONS(3015), - [anon_sym_sql] = ACTIONS(3015), - [sym_int_literal] = ACTIONS(3015), - [sym_float_literal] = ACTIONS(3015), - [sym_rune_literal] = ACTIONS(3015), - [anon_sym_SQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE] = ACTIONS(3015), - [anon_sym_c_SQUOTE] = ACTIONS(3015), - [anon_sym_c_DQUOTE] = ACTIONS(3015), - [anon_sym_r_SQUOTE] = ACTIONS(3015), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(2425), + [anon_sym_as] = ACTIONS(2425), + [anon_sym_LBRACE] = ACTIONS(2425), + [anon_sym_COMMA] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2425), + [anon_sym___global] = ACTIONS(2425), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_fn] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2425), + [anon_sym_DASH] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_SLASH] = ACTIONS(2425), + [anon_sym_PERCENT] = ACTIONS(2425), + [anon_sym_LT] = ACTIONS(2425), + [anon_sym_GT] = ACTIONS(2425), + [anon_sym_EQ_EQ] = ACTIONS(2425), + [anon_sym_BANG_EQ] = ACTIONS(2425), + [anon_sym_LT_EQ] = ACTIONS(2425), + [anon_sym_GT_EQ] = ACTIONS(2425), + [anon_sym_LBRACK] = ACTIONS(2423), + [anon_sym_struct] = ACTIONS(2425), + [anon_sym_union] = ACTIONS(2425), + [anon_sym_pub] = ACTIONS(2425), + [anon_sym_mut] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_interface] = ACTIONS(2425), + [anon_sym_PLUS_PLUS] = ACTIONS(2425), + [anon_sym_DASH_DASH] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2425), + [anon_sym_BANG] = ACTIONS(2425), + [anon_sym_go] = ACTIONS(2425), + [anon_sym_spawn] = ACTIONS(2425), + [anon_sym_json_DOTdecode] = ACTIONS(2425), + [anon_sym_PIPE] = ACTIONS(2425), + [anon_sym_LBRACK2] = ACTIONS(2425), + [anon_sym_TILDE] = ACTIONS(2425), + [anon_sym_CARET] = ACTIONS(2425), + [anon_sym_AMP] = ACTIONS(2425), + [anon_sym_LT_DASH] = ACTIONS(2425), + [anon_sym_LT_LT] = ACTIONS(2425), + [anon_sym_GT_GT] = ACTIONS(2425), + [anon_sym_GT_GT_GT] = ACTIONS(2425), + [anon_sym_AMP_CARET] = ACTIONS(2425), + [anon_sym_AMP_AMP] = ACTIONS(2425), + [anon_sym_PIPE_PIPE] = ACTIONS(2425), + [anon_sym_or] = ACTIONS(2425), + [sym_none] = ACTIONS(2425), + [sym_true] = ACTIONS(2425), + [sym_false] = ACTIONS(2425), + [sym_nil] = ACTIONS(2425), + [anon_sym_QMARK_DOT] = ACTIONS(2425), + [anon_sym_POUND_LBRACK] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_DOLLARif] = ACTIONS(2425), + [anon_sym_is] = ACTIONS(2425), + [anon_sym_BANGis] = ACTIONS(2425), + [anon_sym_in] = ACTIONS(2425), + [anon_sym_BANGin] = ACTIONS(2425), + [anon_sym_match] = ACTIONS(2425), + [anon_sym_select] = ACTIONS(2425), + [anon_sym_lock] = ACTIONS(2425), + [anon_sym_rlock] = ACTIONS(2425), + [anon_sym_unsafe] = ACTIONS(2425), + [anon_sym_sql] = ACTIONS(2425), + [sym_int_literal] = ACTIONS(2425), + [sym_float_literal] = ACTIONS(2425), + [sym_rune_literal] = ACTIONS(2425), + [anon_sym_SQUOTE] = ACTIONS(2425), + [anon_sym_DQUOTE] = ACTIONS(2425), + [anon_sym_c_SQUOTE] = ACTIONS(2425), + [anon_sym_c_DQUOTE] = ACTIONS(2425), + [anon_sym_r_SQUOTE] = ACTIONS(2425), + [anon_sym_r_DQUOTE] = ACTIONS(2425), + [sym_pseudo_compile_time_identifier] = ACTIONS(2425), + [anon_sym_shared] = ACTIONS(2425), + [anon_sym_map_LBRACK] = ACTIONS(2425), + [anon_sym_chan] = ACTIONS(2425), + [anon_sym_thread] = ACTIONS(2425), + [anon_sym_atomic] = ACTIONS(2425), + [anon_sym_assert] = ACTIONS(2425), + [anon_sym_defer] = ACTIONS(2425), + [anon_sym_goto] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_DOLLARfor] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_POUND] = ACTIONS(2425), + [anon_sym_asm] = ACTIONS(2425), + [anon_sym_AT_LBRACK] = ACTIONS(2425), }, [1053] = { [sym_line_comment] = STATE(1053), [sym_block_comment] = STATE(1053), - [ts_builtin_sym_end] = ACTIONS(3019), - [sym_identifier] = ACTIONS(3021), - [anon_sym_LF] = ACTIONS(3021), - [anon_sym_CR] = ACTIONS(3021), - [anon_sym_CR_LF] = ACTIONS(3021), + [ts_builtin_sym_end] = ACTIONS(2431), + [sym_identifier] = ACTIONS(2433), + [anon_sym_LF] = ACTIONS(2433), + [anon_sym_CR] = ACTIONS(2433), + [anon_sym_CR_LF] = ACTIONS(2433), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3021), - [anon_sym_as] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_COMMA] = ACTIONS(3021), - [anon_sym_const] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3021), - [anon_sym___global] = ACTIONS(3021), - [anon_sym_type] = ACTIONS(3021), - [anon_sym_PIPE] = ACTIONS(3021), - [anon_sym_fn] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [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(3019), - [anon_sym_struct] = ACTIONS(3021), - [anon_sym_union] = ACTIONS(3021), - [anon_sym_pub] = ACTIONS(3021), - [anon_sym_mut] = ACTIONS(3021), - [anon_sym_enum] = ACTIONS(3021), - [anon_sym_interface] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(3021), - [anon_sym_DASH_DASH] = ACTIONS(3021), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_go] = ACTIONS(3021), - [anon_sym_spawn] = ACTIONS(3021), - [anon_sym_json_DOTdecode] = ACTIONS(3021), - [anon_sym_LBRACK2] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3021), - [anon_sym_LT_LT] = ACTIONS(3021), - [anon_sym_GT_GT] = ACTIONS(3021), - [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(3021), - [sym_none] = ACTIONS(3021), - [sym_true] = ACTIONS(3021), - [sym_false] = ACTIONS(3021), - [sym_nil] = ACTIONS(3021), - [anon_sym_QMARK_DOT] = ACTIONS(3021), - [anon_sym_POUND_LBRACK] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_DOLLARif] = ACTIONS(3021), - [anon_sym_is] = ACTIONS(3021), - [anon_sym_BANGis] = ACTIONS(3021), - [anon_sym_in] = ACTIONS(3021), - [anon_sym_BANGin] = ACTIONS(3021), - [anon_sym_match] = ACTIONS(3021), - [anon_sym_select] = ACTIONS(3021), - [anon_sym_lock] = ACTIONS(3021), - [anon_sym_rlock] = ACTIONS(3021), - [anon_sym_unsafe] = ACTIONS(3021), - [anon_sym_sql] = ACTIONS(3021), - [sym_int_literal] = ACTIONS(3021), - [sym_float_literal] = ACTIONS(3021), - [sym_rune_literal] = ACTIONS(3021), - [anon_sym_SQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [anon_sym_c_SQUOTE] = ACTIONS(3021), - [anon_sym_c_DQUOTE] = ACTIONS(3021), - [anon_sym_r_SQUOTE] = ACTIONS(3021), - [anon_sym_r_DQUOTE] = ACTIONS(3021), - [sym_pseudo_compile_time_identifier] = ACTIONS(3021), - [anon_sym_shared] = ACTIONS(3021), - [anon_sym_map_LBRACK] = ACTIONS(3021), - [anon_sym_chan] = ACTIONS(3021), - [anon_sym_thread] = ACTIONS(3021), - [anon_sym_atomic] = ACTIONS(3021), - [anon_sym_assert] = ACTIONS(3021), - [anon_sym_defer] = ACTIONS(3021), - [anon_sym_goto] = ACTIONS(3021), - [anon_sym_break] = ACTIONS(3021), - [anon_sym_continue] = ACTIONS(3021), - [anon_sym_return] = ACTIONS(3021), - [anon_sym_DOLLARfor] = ACTIONS(3021), - [anon_sym_for] = ACTIONS(3021), - [anon_sym_POUND] = ACTIONS(3021), - [anon_sym_asm] = ACTIONS(3021), - [anon_sym_AT_LBRACK] = ACTIONS(3021), + [anon_sym_DOT] = ACTIONS(2433), + [anon_sym_as] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(2433), + [anon_sym_COMMA] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [anon_sym_LPAREN] = ACTIONS(2433), + [anon_sym___global] = ACTIONS(2433), + [anon_sym_type] = ACTIONS(2433), + [anon_sym_fn] = ACTIONS(2433), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2433), + [anon_sym_SLASH] = ACTIONS(2433), + [anon_sym_PERCENT] = ACTIONS(2433), + [anon_sym_LT] = ACTIONS(2433), + [anon_sym_GT] = ACTIONS(2433), + [anon_sym_EQ_EQ] = ACTIONS(2433), + [anon_sym_BANG_EQ] = ACTIONS(2433), + [anon_sym_LT_EQ] = ACTIONS(2433), + [anon_sym_GT_EQ] = ACTIONS(2433), + [anon_sym_LBRACK] = ACTIONS(2431), + [anon_sym_struct] = ACTIONS(2433), + [anon_sym_union] = ACTIONS(2433), + [anon_sym_pub] = ACTIONS(2433), + [anon_sym_mut] = ACTIONS(2433), + [anon_sym_enum] = ACTIONS(2433), + [anon_sym_interface] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_QMARK] = ACTIONS(2433), + [anon_sym_BANG] = ACTIONS(2433), + [anon_sym_go] = ACTIONS(2433), + [anon_sym_spawn] = ACTIONS(2433), + [anon_sym_json_DOTdecode] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2433), + [anon_sym_LBRACK2] = ACTIONS(2433), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2433), + [anon_sym_LT_DASH] = ACTIONS(2433), + [anon_sym_LT_LT] = ACTIONS(2433), + [anon_sym_GT_GT] = ACTIONS(2433), + [anon_sym_GT_GT_GT] = ACTIONS(2433), + [anon_sym_AMP_CARET] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2433), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_or] = ACTIONS(2433), + [sym_none] = ACTIONS(2433), + [sym_true] = ACTIONS(2433), + [sym_false] = ACTIONS(2433), + [sym_nil] = ACTIONS(2433), + [anon_sym_QMARK_DOT] = ACTIONS(2433), + [anon_sym_POUND_LBRACK] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_DOLLARif] = ACTIONS(2433), + [anon_sym_is] = ACTIONS(2433), + [anon_sym_BANGis] = ACTIONS(2433), + [anon_sym_in] = ACTIONS(2433), + [anon_sym_BANGin] = ACTIONS(2433), + [anon_sym_match] = ACTIONS(2433), + [anon_sym_select] = ACTIONS(2433), + [anon_sym_lock] = ACTIONS(2433), + [anon_sym_rlock] = ACTIONS(2433), + [anon_sym_unsafe] = ACTIONS(2433), + [anon_sym_sql] = ACTIONS(2433), + [sym_int_literal] = ACTIONS(2433), + [sym_float_literal] = ACTIONS(2433), + [sym_rune_literal] = ACTIONS(2433), + [anon_sym_SQUOTE] = ACTIONS(2433), + [anon_sym_DQUOTE] = ACTIONS(2433), + [anon_sym_c_SQUOTE] = ACTIONS(2433), + [anon_sym_c_DQUOTE] = ACTIONS(2433), + [anon_sym_r_SQUOTE] = ACTIONS(2433), + [anon_sym_r_DQUOTE] = ACTIONS(2433), + [sym_pseudo_compile_time_identifier] = ACTIONS(2433), + [anon_sym_shared] = ACTIONS(2433), + [anon_sym_map_LBRACK] = ACTIONS(2433), + [anon_sym_chan] = ACTIONS(2433), + [anon_sym_thread] = ACTIONS(2433), + [anon_sym_atomic] = ACTIONS(2433), + [anon_sym_assert] = ACTIONS(2433), + [anon_sym_defer] = ACTIONS(2433), + [anon_sym_goto] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_DOLLARfor] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_POUND] = ACTIONS(2433), + [anon_sym_asm] = ACTIONS(2433), + [anon_sym_AT_LBRACK] = ACTIONS(2433), }, [1054] = { [sym_line_comment] = STATE(1054), [sym_block_comment] = STATE(1054), - [ts_builtin_sym_end] = ACTIONS(2243), - [sym_identifier] = ACTIONS(2245), - [anon_sym_LF] = ACTIONS(2245), - [anon_sym_CR] = ACTIONS(2245), - [anon_sym_CR_LF] = ACTIONS(2245), + [ts_builtin_sym_end] = ACTIONS(2439), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LF] = ACTIONS(2441), + [anon_sym_CR] = ACTIONS(2441), + [anon_sym_CR_LF] = ACTIONS(2441), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2245), - [anon_sym_as] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_COMMA] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym___global] = ACTIONS(2245), - [anon_sym_type] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_fn] = ACTIONS(2245), - [anon_sym_PLUS] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_STAR] = ACTIONS(2245), - [anon_sym_SLASH] = ACTIONS(2245), - [anon_sym_PERCENT] = ACTIONS(2245), - [anon_sym_LT] = ACTIONS(2245), - [anon_sym_GT] = ACTIONS(2245), - [anon_sym_EQ_EQ] = ACTIONS(2245), - [anon_sym_BANG_EQ] = ACTIONS(2245), - [anon_sym_LT_EQ] = ACTIONS(2245), - [anon_sym_GT_EQ] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2243), - [anon_sym_struct] = ACTIONS(2245), - [anon_sym_union] = ACTIONS(2245), - [anon_sym_pub] = ACTIONS(2245), - [anon_sym_mut] = ACTIONS(2245), - [anon_sym_enum] = ACTIONS(2245), - [anon_sym_interface] = ACTIONS(2245), - [anon_sym_PLUS_PLUS] = ACTIONS(2245), - [anon_sym_DASH_DASH] = ACTIONS(2245), - [anon_sym_QMARK] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(2245), - [anon_sym_go] = ACTIONS(2245), - [anon_sym_spawn] = ACTIONS(2245), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2245), - [anon_sym_TILDE] = ACTIONS(2245), - [anon_sym_CARET] = ACTIONS(2245), - [anon_sym_AMP] = ACTIONS(2245), - [anon_sym_LT_DASH] = ACTIONS(2245), - [anon_sym_LT_LT] = ACTIONS(2245), - [anon_sym_GT_GT] = ACTIONS(2245), - [anon_sym_GT_GT_GT] = ACTIONS(2245), - [anon_sym_AMP_CARET] = ACTIONS(2245), - [anon_sym_AMP_AMP] = ACTIONS(2245), - [anon_sym_PIPE_PIPE] = ACTIONS(2245), - [anon_sym_or] = ACTIONS(2245), - [sym_none] = ACTIONS(2245), - [sym_true] = ACTIONS(2245), - [sym_false] = ACTIONS(2245), - [sym_nil] = ACTIONS(2245), - [anon_sym_QMARK_DOT] = ACTIONS(2245), - [anon_sym_POUND_LBRACK] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_DOLLARif] = ACTIONS(2245), - [anon_sym_is] = ACTIONS(2245), - [anon_sym_BANGis] = ACTIONS(2245), - [anon_sym_in] = ACTIONS(2245), - [anon_sym_BANGin] = ACTIONS(2245), - [anon_sym_match] = ACTIONS(2245), - [anon_sym_select] = ACTIONS(2245), - [anon_sym_lock] = ACTIONS(2245), - [anon_sym_rlock] = ACTIONS(2245), - [anon_sym_unsafe] = ACTIONS(2245), - [anon_sym_sql] = ACTIONS(2245), - [sym_int_literal] = ACTIONS(2245), - [sym_float_literal] = ACTIONS(2245), - [sym_rune_literal] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(2245), - [anon_sym_c_SQUOTE] = ACTIONS(2245), - [anon_sym_c_DQUOTE] = ACTIONS(2245), - [anon_sym_r_SQUOTE] = ACTIONS(2245), - [anon_sym_r_DQUOTE] = ACTIONS(2245), - [sym_pseudo_compile_time_identifier] = ACTIONS(2245), - [anon_sym_shared] = ACTIONS(2245), - [anon_sym_map_LBRACK] = ACTIONS(2245), - [anon_sym_chan] = ACTIONS(2245), - [anon_sym_thread] = ACTIONS(2245), - [anon_sym_atomic] = ACTIONS(2245), - [anon_sym_assert] = ACTIONS(2245), - [anon_sym_defer] = ACTIONS(2245), - [anon_sym_goto] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_DOLLARfor] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_POUND] = ACTIONS(2245), - [anon_sym_asm] = ACTIONS(2245), - [anon_sym_AT_LBRACK] = ACTIONS(2245), + [anon_sym_DOT] = ACTIONS(2441), + [anon_sym_as] = ACTIONS(2441), + [anon_sym_LBRACE] = ACTIONS(2441), + [anon_sym_COMMA] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym___global] = ACTIONS(2441), + [anon_sym_type] = ACTIONS(2441), + [anon_sym_fn] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2441), + [anon_sym_DASH] = ACTIONS(2441), + [anon_sym_STAR] = ACTIONS(2441), + [anon_sym_SLASH] = ACTIONS(2441), + [anon_sym_PERCENT] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2441), + [anon_sym_GT] = ACTIONS(2441), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT_EQ] = ACTIONS(2441), + [anon_sym_GT_EQ] = ACTIONS(2441), + [anon_sym_LBRACK] = ACTIONS(2439), + [anon_sym_struct] = ACTIONS(2441), + [anon_sym_union] = ACTIONS(2441), + [anon_sym_pub] = ACTIONS(2441), + [anon_sym_mut] = ACTIONS(2441), + [anon_sym_enum] = ACTIONS(2441), + [anon_sym_interface] = ACTIONS(2441), + [anon_sym_PLUS_PLUS] = ACTIONS(2441), + [anon_sym_DASH_DASH] = ACTIONS(2441), + [anon_sym_QMARK] = ACTIONS(2441), + [anon_sym_BANG] = ACTIONS(2441), + [anon_sym_go] = ACTIONS(2441), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(2441), + [anon_sym_PIPE] = ACTIONS(2441), + [anon_sym_LBRACK2] = ACTIONS(2441), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_CARET] = ACTIONS(2441), + [anon_sym_AMP] = ACTIONS(2441), + [anon_sym_LT_DASH] = ACTIONS(2441), + [anon_sym_LT_LT] = ACTIONS(2441), + [anon_sym_GT_GT] = ACTIONS(2441), + [anon_sym_GT_GT_GT] = ACTIONS(2441), + [anon_sym_AMP_CARET] = ACTIONS(2441), + [anon_sym_AMP_AMP] = ACTIONS(2441), + [anon_sym_PIPE_PIPE] = ACTIONS(2441), + [anon_sym_or] = ACTIONS(2441), + [sym_none] = ACTIONS(2441), + [sym_true] = ACTIONS(2441), + [sym_false] = ACTIONS(2441), + [sym_nil] = ACTIONS(2441), + [anon_sym_QMARK_DOT] = ACTIONS(2441), + [anon_sym_POUND_LBRACK] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_DOLLARif] = ACTIONS(2441), + [anon_sym_is] = ACTIONS(2441), + [anon_sym_BANGis] = ACTIONS(2441), + [anon_sym_in] = ACTIONS(2441), + [anon_sym_BANGin] = ACTIONS(2441), + [anon_sym_match] = ACTIONS(2441), + [anon_sym_select] = ACTIONS(2441), + [anon_sym_lock] = ACTIONS(2441), + [anon_sym_rlock] = ACTIONS(2441), + [anon_sym_unsafe] = ACTIONS(2441), + [anon_sym_sql] = ACTIONS(2441), + [sym_int_literal] = ACTIONS(2441), + [sym_float_literal] = ACTIONS(2441), + [sym_rune_literal] = ACTIONS(2441), + [anon_sym_SQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [anon_sym_c_SQUOTE] = ACTIONS(2441), + [anon_sym_c_DQUOTE] = ACTIONS(2441), + [anon_sym_r_SQUOTE] = ACTIONS(2441), + [anon_sym_r_DQUOTE] = ACTIONS(2441), + [sym_pseudo_compile_time_identifier] = ACTIONS(2441), + [anon_sym_shared] = ACTIONS(2441), + [anon_sym_map_LBRACK] = ACTIONS(2441), + [anon_sym_chan] = ACTIONS(2441), + [anon_sym_thread] = ACTIONS(2441), + [anon_sym_atomic] = ACTIONS(2441), + [anon_sym_assert] = ACTIONS(2441), + [anon_sym_defer] = ACTIONS(2441), + [anon_sym_goto] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_DOLLARfor] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_POUND] = ACTIONS(2441), + [anon_sym_asm] = ACTIONS(2441), + [anon_sym_AT_LBRACK] = ACTIONS(2441), }, [1055] = { [sym_line_comment] = STATE(1055), [sym_block_comment] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(2235), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LF] = ACTIONS(2237), - [anon_sym_CR] = ACTIONS(2237), - [anon_sym_CR_LF] = ACTIONS(2237), + [ts_builtin_sym_end] = ACTIONS(2651), + [sym_identifier] = ACTIONS(2653), + [anon_sym_LF] = ACTIONS(2653), + [anon_sym_CR] = ACTIONS(2653), + [anon_sym_CR_LF] = ACTIONS(2653), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2237), - [anon_sym_as] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_COMMA] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym___global] = ACTIONS(2237), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_PIPE] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_PERCENT] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_GT] = ACTIONS(2237), - [anon_sym_EQ_EQ] = ACTIONS(2237), - [anon_sym_BANG_EQ] = ACTIONS(2237), - [anon_sym_LT_EQ] = ACTIONS(2237), - [anon_sym_GT_EQ] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2237), - [anon_sym_union] = ACTIONS(2237), - [anon_sym_pub] = ACTIONS(2237), - [anon_sym_mut] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [anon_sym_QMARK] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_go] = ACTIONS(2237), - [anon_sym_spawn] = ACTIONS(2237), - [anon_sym_json_DOTdecode] = ACTIONS(2237), - [anon_sym_LBRACK2] = ACTIONS(2237), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_CARET] = ACTIONS(2237), - [anon_sym_AMP] = ACTIONS(2237), - [anon_sym_LT_DASH] = ACTIONS(2237), - [anon_sym_LT_LT] = ACTIONS(2237), - [anon_sym_GT_GT] = ACTIONS(2237), - [anon_sym_GT_GT_GT] = ACTIONS(2237), - [anon_sym_AMP_CARET] = ACTIONS(2237), - [anon_sym_AMP_AMP] = ACTIONS(2237), - [anon_sym_PIPE_PIPE] = ACTIONS(2237), - [anon_sym_or] = ACTIONS(2237), - [sym_none] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_nil] = ACTIONS(2237), - [anon_sym_QMARK_DOT] = ACTIONS(2237), - [anon_sym_POUND_LBRACK] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_DOLLARif] = ACTIONS(2237), - [anon_sym_is] = ACTIONS(2237), - [anon_sym_BANGis] = ACTIONS(2237), - [anon_sym_in] = ACTIONS(2237), - [anon_sym_BANGin] = ACTIONS(2237), - [anon_sym_match] = ACTIONS(2237), - [anon_sym_select] = ACTIONS(2237), - [anon_sym_lock] = ACTIONS(2237), - [anon_sym_rlock] = ACTIONS(2237), - [anon_sym_unsafe] = ACTIONS(2237), - [anon_sym_sql] = ACTIONS(2237), - [sym_int_literal] = ACTIONS(2237), - [sym_float_literal] = ACTIONS(2237), - [sym_rune_literal] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2237), - [anon_sym_c_SQUOTE] = ACTIONS(2237), - [anon_sym_c_DQUOTE] = ACTIONS(2237), - [anon_sym_r_SQUOTE] = ACTIONS(2237), - [anon_sym_r_DQUOTE] = ACTIONS(2237), - [sym_pseudo_compile_time_identifier] = ACTIONS(2237), - [anon_sym_shared] = ACTIONS(2237), - [anon_sym_map_LBRACK] = ACTIONS(2237), - [anon_sym_chan] = ACTIONS(2237), - [anon_sym_thread] = ACTIONS(2237), - [anon_sym_atomic] = ACTIONS(2237), - [anon_sym_assert] = ACTIONS(2237), - [anon_sym_defer] = ACTIONS(2237), - [anon_sym_goto] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_DOLLARfor] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_POUND] = ACTIONS(2237), - [anon_sym_asm] = ACTIONS(2237), - [anon_sym_AT_LBRACK] = ACTIONS(2237), + [anon_sym_DOT] = ACTIONS(2653), + [anon_sym_as] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_COMMA] = ACTIONS(2653), + [anon_sym_const] = ACTIONS(2653), + [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym___global] = ACTIONS(2653), + [anon_sym_type] = ACTIONS(2653), + [anon_sym_fn] = ACTIONS(2653), + [anon_sym_PLUS] = ACTIONS(2653), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_STAR] = ACTIONS(2653), + [anon_sym_SLASH] = ACTIONS(2653), + [anon_sym_PERCENT] = ACTIONS(2653), + [anon_sym_LT] = ACTIONS(2653), + [anon_sym_GT] = ACTIONS(2653), + [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(2651), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_union] = ACTIONS(2653), + [anon_sym_pub] = ACTIONS(2653), + [anon_sym_mut] = ACTIONS(2653), + [anon_sym_enum] = ACTIONS(2653), + [anon_sym_interface] = ACTIONS(2653), + [anon_sym_PLUS_PLUS] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2653), + [anon_sym_QMARK] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2653), + [anon_sym_go] = ACTIONS(2653), + [anon_sym_spawn] = ACTIONS(2653), + [anon_sym_json_DOTdecode] = ACTIONS(2653), + [anon_sym_PIPE] = ACTIONS(2653), + [anon_sym_LBRACK2] = ACTIONS(2653), + [anon_sym_TILDE] = ACTIONS(2653), + [anon_sym_CARET] = ACTIONS(2653), + [anon_sym_AMP] = ACTIONS(2653), + [anon_sym_LT_DASH] = ACTIONS(2653), + [anon_sym_LT_LT] = ACTIONS(2653), + [anon_sym_GT_GT] = ACTIONS(2653), + [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(2653), + [sym_none] = ACTIONS(2653), + [sym_true] = ACTIONS(2653), + [sym_false] = ACTIONS(2653), + [sym_nil] = ACTIONS(2653), + [anon_sym_QMARK_DOT] = ACTIONS(2653), + [anon_sym_POUND_LBRACK] = ACTIONS(2653), + [anon_sym_if] = ACTIONS(2653), + [anon_sym_DOLLARif] = ACTIONS(2653), + [anon_sym_is] = ACTIONS(2653), + [anon_sym_BANGis] = ACTIONS(2653), + [anon_sym_in] = ACTIONS(2653), + [anon_sym_BANGin] = ACTIONS(2653), + [anon_sym_match] = ACTIONS(2653), + [anon_sym_select] = ACTIONS(2653), + [anon_sym_lock] = ACTIONS(2653), + [anon_sym_rlock] = ACTIONS(2653), + [anon_sym_unsafe] = ACTIONS(2653), + [anon_sym_sql] = ACTIONS(2653), + [sym_int_literal] = ACTIONS(2653), + [sym_float_literal] = ACTIONS(2653), + [sym_rune_literal] = ACTIONS(2653), + [anon_sym_SQUOTE] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2653), + [anon_sym_c_SQUOTE] = ACTIONS(2653), + [anon_sym_c_DQUOTE] = ACTIONS(2653), + [anon_sym_r_SQUOTE] = ACTIONS(2653), + [anon_sym_r_DQUOTE] = ACTIONS(2653), + [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_shared] = ACTIONS(2653), + [anon_sym_map_LBRACK] = ACTIONS(2653), + [anon_sym_chan] = ACTIONS(2653), + [anon_sym_thread] = ACTIONS(2653), + [anon_sym_atomic] = ACTIONS(2653), + [anon_sym_assert] = ACTIONS(2653), + [anon_sym_defer] = ACTIONS(2653), + [anon_sym_goto] = ACTIONS(2653), + [anon_sym_break] = ACTIONS(2653), + [anon_sym_continue] = ACTIONS(2653), + [anon_sym_return] = ACTIONS(2653), + [anon_sym_DOLLARfor] = ACTIONS(2653), + [anon_sym_for] = ACTIONS(2653), + [anon_sym_POUND] = ACTIONS(2653), + [anon_sym_asm] = ACTIONS(2653), + [anon_sym_AT_LBRACK] = ACTIONS(2653), }, [1056] = { [sym_line_comment] = STATE(1056), [sym_block_comment] = STATE(1056), - [ts_builtin_sym_end] = ACTIONS(3027), - [sym_identifier] = ACTIONS(3029), - [anon_sym_LF] = ACTIONS(3029), - [anon_sym_CR] = ACTIONS(3029), - [anon_sym_CR_LF] = ACTIONS(3029), + [ts_builtin_sym_end] = ACTIONS(2645), + [sym_identifier] = ACTIONS(2647), + [anon_sym_LF] = ACTIONS(2647), + [anon_sym_CR] = ACTIONS(2647), + [anon_sym_CR_LF] = ACTIONS(2647), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_as] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(3029), - [anon_sym_const] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym___global] = ACTIONS(3029), - [anon_sym_type] = ACTIONS(3029), - [anon_sym_PIPE] = ACTIONS(3029), - [anon_sym_fn] = ACTIONS(3029), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_SLASH] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(3029), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_LT_EQ] = ACTIONS(3029), - [anon_sym_GT_EQ] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3027), - [anon_sym_struct] = ACTIONS(3029), - [anon_sym_union] = ACTIONS(3029), - [anon_sym_pub] = ACTIONS(3029), - [anon_sym_mut] = ACTIONS(3029), - [anon_sym_enum] = ACTIONS(3029), - [anon_sym_interface] = ACTIONS(3029), - [anon_sym_PLUS_PLUS] = ACTIONS(3029), - [anon_sym_DASH_DASH] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3029), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_go] = ACTIONS(3029), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(3029), - [anon_sym_LBRACK2] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LT_DASH] = ACTIONS(3029), - [anon_sym_LT_LT] = ACTIONS(3029), - [anon_sym_GT_GT] = ACTIONS(3029), - [anon_sym_GT_GT_GT] = ACTIONS(3029), - [anon_sym_AMP_CARET] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_PIPE_PIPE] = ACTIONS(3029), - [anon_sym_or] = ACTIONS(3029), - [sym_none] = ACTIONS(3029), - [sym_true] = ACTIONS(3029), - [sym_false] = ACTIONS(3029), - [sym_nil] = ACTIONS(3029), - [anon_sym_QMARK_DOT] = ACTIONS(3029), - [anon_sym_POUND_LBRACK] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3029), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_BANGin] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_select] = ACTIONS(3029), - [anon_sym_lock] = ACTIONS(3029), - [anon_sym_rlock] = ACTIONS(3029), - [anon_sym_unsafe] = ACTIONS(3029), - [anon_sym_sql] = ACTIONS(3029), - [sym_int_literal] = ACTIONS(3029), - [sym_float_literal] = ACTIONS(3029), - [sym_rune_literal] = ACTIONS(3029), - [anon_sym_SQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [anon_sym_c_SQUOTE] = ACTIONS(3029), - [anon_sym_c_DQUOTE] = ACTIONS(3029), - [anon_sym_r_SQUOTE] = ACTIONS(3029), - [anon_sym_r_DQUOTE] = ACTIONS(3029), - [sym_pseudo_compile_time_identifier] = ACTIONS(3029), - [anon_sym_shared] = ACTIONS(3029), - [anon_sym_map_LBRACK] = ACTIONS(3029), - [anon_sym_chan] = ACTIONS(3029), - [anon_sym_thread] = ACTIONS(3029), - [anon_sym_atomic] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_defer] = ACTIONS(3029), - [anon_sym_goto] = ACTIONS(3029), - [anon_sym_break] = ACTIONS(3029), - [anon_sym_continue] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_DOLLARfor] = ACTIONS(3029), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_POUND] = ACTIONS(3029), - [anon_sym_asm] = ACTIONS(3029), - [anon_sym_AT_LBRACK] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(2647), + [anon_sym_as] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_COMMA] = ACTIONS(2647), + [anon_sym_const] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym___global] = ACTIONS(2647), + [anon_sym_type] = ACTIONS(2647), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_PERCENT] = ACTIONS(2647), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_GT] = ACTIONS(2647), + [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(2645), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_union] = ACTIONS(2647), + [anon_sym_pub] = ACTIONS(2647), + [anon_sym_mut] = ACTIONS(2647), + [anon_sym_enum] = ACTIONS(2647), + [anon_sym_interface] = ACTIONS(2647), + [anon_sym_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_DASH_DASH] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_go] = ACTIONS(2647), + [anon_sym_spawn] = ACTIONS(2647), + [anon_sym_json_DOTdecode] = ACTIONS(2647), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_LBRACK2] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_LT_DASH] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [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(2647), + [sym_none] = ACTIONS(2647), + [sym_true] = ACTIONS(2647), + [sym_false] = ACTIONS(2647), + [sym_nil] = ACTIONS(2647), + [anon_sym_QMARK_DOT] = ACTIONS(2647), + [anon_sym_POUND_LBRACK] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_DOLLARif] = ACTIONS(2647), + [anon_sym_is] = ACTIONS(2647), + [anon_sym_BANGis] = ACTIONS(2647), + [anon_sym_in] = ACTIONS(2647), + [anon_sym_BANGin] = ACTIONS(2647), + [anon_sym_match] = ACTIONS(2647), + [anon_sym_select] = ACTIONS(2647), + [anon_sym_lock] = ACTIONS(2647), + [anon_sym_rlock] = ACTIONS(2647), + [anon_sym_unsafe] = ACTIONS(2647), + [anon_sym_sql] = ACTIONS(2647), + [sym_int_literal] = ACTIONS(2647), + [sym_float_literal] = ACTIONS(2647), + [sym_rune_literal] = ACTIONS(2647), + [anon_sym_SQUOTE] = ACTIONS(2647), + [anon_sym_DQUOTE] = ACTIONS(2647), + [anon_sym_c_SQUOTE] = ACTIONS(2647), + [anon_sym_c_DQUOTE] = ACTIONS(2647), + [anon_sym_r_SQUOTE] = ACTIONS(2647), + [anon_sym_r_DQUOTE] = ACTIONS(2647), + [sym_pseudo_compile_time_identifier] = ACTIONS(2647), + [anon_sym_shared] = ACTIONS(2647), + [anon_sym_map_LBRACK] = ACTIONS(2647), + [anon_sym_chan] = ACTIONS(2647), + [anon_sym_thread] = ACTIONS(2647), + [anon_sym_atomic] = ACTIONS(2647), + [anon_sym_assert] = ACTIONS(2647), + [anon_sym_defer] = ACTIONS(2647), + [anon_sym_goto] = ACTIONS(2647), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_DOLLARfor] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_POUND] = ACTIONS(2647), + [anon_sym_asm] = ACTIONS(2647), + [anon_sym_AT_LBRACK] = ACTIONS(2647), }, [1057] = { [sym_line_comment] = STATE(1057), [sym_block_comment] = STATE(1057), - [ts_builtin_sym_end] = ACTIONS(2135), - [sym_identifier] = ACTIONS(2137), - [anon_sym_LF] = ACTIONS(2137), - [anon_sym_CR] = ACTIONS(2137), - [anon_sym_CR_LF] = ACTIONS(2137), + [ts_builtin_sym_end] = ACTIONS(2489), + [sym_identifier] = ACTIONS(2491), + [anon_sym_LF] = ACTIONS(2491), + [anon_sym_CR] = ACTIONS(2491), + [anon_sym_CR_LF] = ACTIONS(2491), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_as] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_COMMA] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym___global] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_PIPE] = ACTIONS(2139), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_SLASH] = ACTIONS(2139), - [anon_sym_PERCENT] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_GT] = ACTIONS(2139), - [anon_sym_EQ_EQ] = ACTIONS(2139), - [anon_sym_BANG_EQ] = ACTIONS(2139), - [anon_sym_LT_EQ] = ACTIONS(2139), - [anon_sym_GT_EQ] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_union] = ACTIONS(2137), - [anon_sym_pub] = ACTIONS(2137), - [anon_sym_mut] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_interface] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_QMARK] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(2137), - [anon_sym_spawn] = ACTIONS(2137), - [anon_sym_json_DOTdecode] = ACTIONS(2137), - [anon_sym_LBRACK2] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_LT_DASH] = ACTIONS(2137), - [anon_sym_LT_LT] = ACTIONS(2139), - [anon_sym_GT_GT] = ACTIONS(2139), - [anon_sym_GT_GT_GT] = ACTIONS(2139), - [anon_sym_AMP_CARET] = ACTIONS(2139), - [anon_sym_AMP_AMP] = ACTIONS(2139), - [anon_sym_PIPE_PIPE] = ACTIONS(2139), - [anon_sym_or] = ACTIONS(2139), - [sym_none] = ACTIONS(2137), - [sym_true] = ACTIONS(2137), - [sym_false] = ACTIONS(2137), - [sym_nil] = ACTIONS(2137), - [anon_sym_QMARK_DOT] = ACTIONS(2139), - [anon_sym_POUND_LBRACK] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_DOLLARif] = ACTIONS(2137), - [anon_sym_is] = ACTIONS(2139), - [anon_sym_BANGis] = ACTIONS(2139), - [anon_sym_in] = ACTIONS(2139), - [anon_sym_BANGin] = ACTIONS(2139), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_select] = ACTIONS(2137), - [anon_sym_lock] = ACTIONS(2137), - [anon_sym_rlock] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_sql] = ACTIONS(2137), - [sym_int_literal] = ACTIONS(2137), - [sym_float_literal] = ACTIONS(2137), - [sym_rune_literal] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_DQUOTE] = ACTIONS(2137), - [anon_sym_c_SQUOTE] = ACTIONS(2137), - [anon_sym_c_DQUOTE] = ACTIONS(2137), - [anon_sym_r_SQUOTE] = ACTIONS(2137), - [anon_sym_r_DQUOTE] = ACTIONS(2137), - [sym_pseudo_compile_time_identifier] = ACTIONS(2137), - [anon_sym_shared] = ACTIONS(2137), - [anon_sym_map_LBRACK] = ACTIONS(2137), - [anon_sym_chan] = ACTIONS(2137), - [anon_sym_thread] = ACTIONS(2137), - [anon_sym_atomic] = ACTIONS(2137), - [anon_sym_assert] = ACTIONS(2137), - [anon_sym_defer] = ACTIONS(2137), - [anon_sym_goto] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_DOLLARfor] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_POUND] = ACTIONS(2137), - [anon_sym_asm] = ACTIONS(2137), - [anon_sym_AT_LBRACK] = ACTIONS(2137), + [anon_sym_DOT] = ACTIONS(2491), + [anon_sym_as] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_COMMA] = ACTIONS(2491), + [anon_sym_const] = ACTIONS(2491), + [anon_sym_LPAREN] = ACTIONS(2491), + [anon_sym___global] = ACTIONS(2491), + [anon_sym_type] = ACTIONS(2491), + [anon_sym_fn] = ACTIONS(2491), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_STAR] = ACTIONS(2491), + [anon_sym_SLASH] = ACTIONS(2491), + [anon_sym_PERCENT] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2491), + [anon_sym_GT] = ACTIONS(2491), + [anon_sym_EQ_EQ] = ACTIONS(2491), + [anon_sym_BANG_EQ] = ACTIONS(2491), + [anon_sym_LT_EQ] = ACTIONS(2491), + [anon_sym_GT_EQ] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(2491), + [anon_sym_union] = ACTIONS(2491), + [anon_sym_pub] = ACTIONS(2491), + [anon_sym_mut] = ACTIONS(2491), + [anon_sym_enum] = ACTIONS(2491), + [anon_sym_interface] = ACTIONS(2491), + [anon_sym_PLUS_PLUS] = ACTIONS(2491), + [anon_sym_DASH_DASH] = ACTIONS(2491), + [anon_sym_QMARK] = ACTIONS(2491), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2491), + [anon_sym_spawn] = ACTIONS(2491), + [anon_sym_json_DOTdecode] = ACTIONS(2491), + [anon_sym_PIPE] = ACTIONS(2491), + [anon_sym_LBRACK2] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_CARET] = ACTIONS(2491), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2491), + [anon_sym_LT_LT] = ACTIONS(2491), + [anon_sym_GT_GT] = ACTIONS(2491), + [anon_sym_GT_GT_GT] = ACTIONS(2491), + [anon_sym_AMP_CARET] = ACTIONS(2491), + [anon_sym_AMP_AMP] = ACTIONS(2491), + [anon_sym_PIPE_PIPE] = ACTIONS(2491), + [anon_sym_or] = ACTIONS(2491), + [sym_none] = ACTIONS(2491), + [sym_true] = ACTIONS(2491), + [sym_false] = ACTIONS(2491), + [sym_nil] = ACTIONS(2491), + [anon_sym_QMARK_DOT] = ACTIONS(2491), + [anon_sym_POUND_LBRACK] = ACTIONS(2491), + [anon_sym_if] = ACTIONS(2491), + [anon_sym_DOLLARif] = ACTIONS(2491), + [anon_sym_is] = ACTIONS(2491), + [anon_sym_BANGis] = ACTIONS(2491), + [anon_sym_in] = ACTIONS(2491), + [anon_sym_BANGin] = ACTIONS(2491), + [anon_sym_match] = ACTIONS(2491), + [anon_sym_select] = ACTIONS(2491), + [anon_sym_lock] = ACTIONS(2491), + [anon_sym_rlock] = ACTIONS(2491), + [anon_sym_unsafe] = ACTIONS(2491), + [anon_sym_sql] = ACTIONS(2491), + [sym_int_literal] = ACTIONS(2491), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2491), + [anon_sym_DQUOTE] = ACTIONS(2491), + [anon_sym_c_SQUOTE] = ACTIONS(2491), + [anon_sym_c_DQUOTE] = ACTIONS(2491), + [anon_sym_r_SQUOTE] = ACTIONS(2491), + [anon_sym_r_DQUOTE] = ACTIONS(2491), + [sym_pseudo_compile_time_identifier] = ACTIONS(2491), + [anon_sym_shared] = ACTIONS(2491), + [anon_sym_map_LBRACK] = ACTIONS(2491), + [anon_sym_chan] = ACTIONS(2491), + [anon_sym_thread] = ACTIONS(2491), + [anon_sym_atomic] = ACTIONS(2491), + [anon_sym_assert] = ACTIONS(2491), + [anon_sym_defer] = ACTIONS(2491), + [anon_sym_goto] = ACTIONS(2491), + [anon_sym_break] = ACTIONS(2491), + [anon_sym_continue] = ACTIONS(2491), + [anon_sym_return] = ACTIONS(2491), + [anon_sym_DOLLARfor] = ACTIONS(2491), + [anon_sym_for] = ACTIONS(2491), + [anon_sym_POUND] = ACTIONS(2491), + [anon_sym_asm] = ACTIONS(2491), + [anon_sym_AT_LBRACK] = ACTIONS(2491), }, [1058] = { [sym_line_comment] = STATE(1058), [sym_block_comment] = STATE(1058), - [ts_builtin_sym_end] = ACTIONS(2173), - [sym_identifier] = ACTIONS(2175), - [anon_sym_LF] = ACTIONS(2175), - [anon_sym_CR] = ACTIONS(2175), - [anon_sym_CR_LF] = ACTIONS(2175), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(2479), + [anon_sym_LF] = ACTIONS(2479), + [anon_sym_CR] = ACTIONS(2479), + [anon_sym_CR_LF] = ACTIONS(2479), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym___global] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2175), - [anon_sym_PIPE] = ACTIONS(2175), - [anon_sym_fn] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2175), - [anon_sym_PERCENT] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_GT] = ACTIONS(2175), - [anon_sym_EQ_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ] = ACTIONS(2175), - [anon_sym_LT_EQ] = ACTIONS(2175), - [anon_sym_GT_EQ] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_struct] = ACTIONS(2175), - [anon_sym_union] = ACTIONS(2175), - [anon_sym_pub] = ACTIONS(2175), - [anon_sym_mut] = ACTIONS(2175), - [anon_sym_enum] = ACTIONS(2175), - [anon_sym_interface] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [anon_sym_QMARK] = ACTIONS(2175), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_go] = ACTIONS(2175), - [anon_sym_spawn] = ACTIONS(2175), - [anon_sym_json_DOTdecode] = ACTIONS(2175), - [anon_sym_LBRACK2] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_CARET] = ACTIONS(2175), - [anon_sym_AMP] = ACTIONS(2175), - [anon_sym_LT_DASH] = ACTIONS(2175), - [anon_sym_LT_LT] = ACTIONS(2175), - [anon_sym_GT_GT] = ACTIONS(2175), - [anon_sym_GT_GT_GT] = ACTIONS(2175), - [anon_sym_AMP_CARET] = ACTIONS(2175), - [anon_sym_AMP_AMP] = ACTIONS(2175), - [anon_sym_PIPE_PIPE] = ACTIONS(2175), - [anon_sym_or] = ACTIONS(2175), - [sym_none] = ACTIONS(2175), - [sym_true] = ACTIONS(2175), - [sym_false] = ACTIONS(2175), - [sym_nil] = ACTIONS(2175), - [anon_sym_QMARK_DOT] = ACTIONS(2175), - [anon_sym_POUND_LBRACK] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_DOLLARif] = ACTIONS(2175), - [anon_sym_is] = ACTIONS(2175), - [anon_sym_BANGis] = ACTIONS(2175), - [anon_sym_in] = ACTIONS(2175), - [anon_sym_BANGin] = ACTIONS(2175), - [anon_sym_match] = ACTIONS(2175), - [anon_sym_select] = ACTIONS(2175), - [anon_sym_lock] = ACTIONS(2175), - [anon_sym_rlock] = ACTIONS(2175), - [anon_sym_unsafe] = ACTIONS(2175), - [anon_sym_sql] = ACTIONS(2175), - [sym_int_literal] = ACTIONS(2175), - [sym_float_literal] = ACTIONS(2175), - [sym_rune_literal] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_c_SQUOTE] = ACTIONS(2175), - [anon_sym_c_DQUOTE] = ACTIONS(2175), - [anon_sym_r_SQUOTE] = ACTIONS(2175), - [anon_sym_r_DQUOTE] = ACTIONS(2175), - [sym_pseudo_compile_time_identifier] = ACTIONS(2175), - [anon_sym_shared] = ACTIONS(2175), - [anon_sym_map_LBRACK] = ACTIONS(2175), - [anon_sym_chan] = ACTIONS(2175), - [anon_sym_thread] = ACTIONS(2175), - [anon_sym_atomic] = ACTIONS(2175), - [anon_sym_assert] = ACTIONS(2175), - [anon_sym_defer] = ACTIONS(2175), - [anon_sym_goto] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_DOLLARfor] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_POUND] = ACTIONS(2175), - [anon_sym_asm] = ACTIONS(2175), - [anon_sym_AT_LBRACK] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2479), + [anon_sym_as] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2479), + [anon_sym_COMMA] = ACTIONS(2479), + [anon_sym_const] = ACTIONS(2479), + [anon_sym_LPAREN] = ACTIONS(2479), + [anon_sym___global] = ACTIONS(2479), + [anon_sym_type] = ACTIONS(2479), + [anon_sym_fn] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2479), + [anon_sym_SLASH] = ACTIONS(2479), + [anon_sym_PERCENT] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_EQ_EQ] = ACTIONS(2479), + [anon_sym_BANG_EQ] = ACTIONS(2479), + [anon_sym_LT_EQ] = ACTIONS(2479), + [anon_sym_GT_EQ] = ACTIONS(2479), + [anon_sym_LBRACK] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(2479), + [anon_sym_union] = ACTIONS(2479), + [anon_sym_pub] = ACTIONS(2479), + [anon_sym_mut] = ACTIONS(2479), + [anon_sym_enum] = ACTIONS(2479), + [anon_sym_interface] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_QMARK] = ACTIONS(2479), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_go] = ACTIONS(2479), + [anon_sym_spawn] = ACTIONS(2479), + [anon_sym_json_DOTdecode] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(2479), + [anon_sym_LBRACK2] = ACTIONS(2479), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_LT_DASH] = ACTIONS(2479), + [anon_sym_LT_LT] = ACTIONS(2479), + [anon_sym_GT_GT] = ACTIONS(2479), + [anon_sym_GT_GT_GT] = ACTIONS(2479), + [anon_sym_AMP_CARET] = ACTIONS(2479), + [anon_sym_AMP_AMP] = ACTIONS(2479), + [anon_sym_PIPE_PIPE] = ACTIONS(2479), + [anon_sym_or] = ACTIONS(2479), + [sym_none] = ACTIONS(2479), + [sym_true] = ACTIONS(2479), + [sym_false] = ACTIONS(2479), + [sym_nil] = ACTIONS(2479), + [anon_sym_QMARK_DOT] = ACTIONS(2479), + [anon_sym_POUND_LBRACK] = ACTIONS(2479), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_DOLLARif] = ACTIONS(2479), + [anon_sym_is] = ACTIONS(2479), + [anon_sym_BANGis] = ACTIONS(2479), + [anon_sym_in] = ACTIONS(2479), + [anon_sym_BANGin] = ACTIONS(2479), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_select] = ACTIONS(2479), + [anon_sym_lock] = ACTIONS(2479), + [anon_sym_rlock] = ACTIONS(2479), + [anon_sym_unsafe] = ACTIONS(2479), + [anon_sym_sql] = ACTIONS(2479), + [sym_int_literal] = ACTIONS(2479), + [sym_float_literal] = ACTIONS(2479), + [sym_rune_literal] = ACTIONS(2479), + [anon_sym_SQUOTE] = ACTIONS(2479), + [anon_sym_DQUOTE] = ACTIONS(2479), + [anon_sym_c_SQUOTE] = ACTIONS(2479), + [anon_sym_c_DQUOTE] = ACTIONS(2479), + [anon_sym_r_SQUOTE] = ACTIONS(2479), + [anon_sym_r_DQUOTE] = ACTIONS(2479), + [sym_pseudo_compile_time_identifier] = ACTIONS(2479), + [anon_sym_shared] = ACTIONS(2479), + [anon_sym_map_LBRACK] = ACTIONS(2479), + [anon_sym_chan] = ACTIONS(2479), + [anon_sym_thread] = ACTIONS(2479), + [anon_sym_atomic] = ACTIONS(2479), + [anon_sym_assert] = ACTIONS(2479), + [anon_sym_defer] = ACTIONS(2479), + [anon_sym_goto] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2479), + [anon_sym_continue] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2479), + [anon_sym_DOLLARfor] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_POUND] = ACTIONS(2479), + [anon_sym_asm] = ACTIONS(2479), + [anon_sym_AT_LBRACK] = ACTIONS(2479), }, [1059] = { [sym_line_comment] = STATE(1059), [sym_block_comment] = STATE(1059), - [ts_builtin_sym_end] = ACTIONS(2131), - [sym_identifier] = ACTIONS(2133), - [anon_sym_LF] = ACTIONS(2133), - [anon_sym_CR] = ACTIONS(2133), - [anon_sym_CR_LF] = ACTIONS(2133), + [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), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2133), - [anon_sym_as] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(2133), - [anon_sym_COMMA] = ACTIONS(2133), - [anon_sym_const] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym___global] = ACTIONS(2133), - [anon_sym_type] = ACTIONS(2133), - [anon_sym_PIPE] = ACTIONS(2133), - [anon_sym_fn] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(2133), - [anon_sym_DASH] = ACTIONS(2133), - [anon_sym_STAR] = ACTIONS(2133), - [anon_sym_SLASH] = ACTIONS(2133), - [anon_sym_PERCENT] = ACTIONS(2133), - [anon_sym_LT] = ACTIONS(2133), - [anon_sym_GT] = ACTIONS(2133), - [anon_sym_EQ_EQ] = ACTIONS(2133), - [anon_sym_BANG_EQ] = ACTIONS(2133), - [anon_sym_LT_EQ] = ACTIONS(2133), - [anon_sym_GT_EQ] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(2131), - [anon_sym_struct] = ACTIONS(2133), - [anon_sym_union] = ACTIONS(2133), - [anon_sym_pub] = ACTIONS(2133), - [anon_sym_mut] = ACTIONS(2133), - [anon_sym_enum] = ACTIONS(2133), - [anon_sym_interface] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2133), - [anon_sym_DASH_DASH] = ACTIONS(2133), - [anon_sym_QMARK] = ACTIONS(2133), - [anon_sym_BANG] = ACTIONS(2133), - [anon_sym_go] = ACTIONS(2133), - [anon_sym_spawn] = ACTIONS(2133), - [anon_sym_json_DOTdecode] = ACTIONS(2133), - [anon_sym_LBRACK2] = ACTIONS(2133), - [anon_sym_TILDE] = ACTIONS(2133), - [anon_sym_CARET] = ACTIONS(2133), - [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_LT_DASH] = ACTIONS(2133), - [anon_sym_LT_LT] = ACTIONS(2133), - [anon_sym_GT_GT] = ACTIONS(2133), - [anon_sym_GT_GT_GT] = ACTIONS(2133), - [anon_sym_AMP_CARET] = ACTIONS(2133), - [anon_sym_AMP_AMP] = ACTIONS(2133), - [anon_sym_PIPE_PIPE] = ACTIONS(2133), - [anon_sym_or] = ACTIONS(2133), - [sym_none] = ACTIONS(2133), - [sym_true] = ACTIONS(2133), - [sym_false] = ACTIONS(2133), - [sym_nil] = ACTIONS(2133), - [anon_sym_QMARK_DOT] = ACTIONS(2133), - [anon_sym_POUND_LBRACK] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_DOLLARif] = ACTIONS(2133), - [anon_sym_is] = ACTIONS(2133), - [anon_sym_BANGis] = ACTIONS(2133), - [anon_sym_in] = ACTIONS(2133), - [anon_sym_BANGin] = ACTIONS(2133), - [anon_sym_match] = ACTIONS(2133), - [anon_sym_select] = ACTIONS(2133), - [anon_sym_lock] = ACTIONS(2133), - [anon_sym_rlock] = ACTIONS(2133), - [anon_sym_unsafe] = ACTIONS(2133), - [anon_sym_sql] = ACTIONS(2133), - [sym_int_literal] = ACTIONS(2133), - [sym_float_literal] = ACTIONS(2133), - [sym_rune_literal] = ACTIONS(2133), - [anon_sym_SQUOTE] = ACTIONS(2133), - [anon_sym_DQUOTE] = ACTIONS(2133), - [anon_sym_c_SQUOTE] = ACTIONS(2133), - [anon_sym_c_DQUOTE] = ACTIONS(2133), - [anon_sym_r_SQUOTE] = ACTIONS(2133), - [anon_sym_r_DQUOTE] = ACTIONS(2133), - [sym_pseudo_compile_time_identifier] = ACTIONS(2133), - [anon_sym_shared] = ACTIONS(2133), - [anon_sym_map_LBRACK] = ACTIONS(2133), - [anon_sym_chan] = ACTIONS(2133), - [anon_sym_thread] = ACTIONS(2133), - [anon_sym_atomic] = ACTIONS(2133), - [anon_sym_assert] = ACTIONS(2133), - [anon_sym_defer] = ACTIONS(2133), - [anon_sym_goto] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_DOLLARfor] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_POUND] = ACTIONS(2133), - [anon_sym_asm] = ACTIONS(2133), - [anon_sym_AT_LBRACK] = ACTIONS(2133), + [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_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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2899), + [anon_sym_DQUOTE] = ACTIONS(2899), + [anon_sym_c_SQUOTE] = ACTIONS(2899), + [anon_sym_c_DQUOTE] = ACTIONS(2899), + [anon_sym_r_SQUOTE] = ACTIONS(2899), + [anon_sym_r_DQUOTE] = 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), }, [1060] = { [sym_line_comment] = STATE(1060), [sym_block_comment] = STATE(1060), - [ts_builtin_sym_end] = ACTIONS(2145), - [sym_identifier] = ACTIONS(2147), - [anon_sym_LF] = ACTIONS(2147), - [anon_sym_CR] = ACTIONS(2147), - [anon_sym_CR_LF] = ACTIONS(2147), + [ts_builtin_sym_end] = ACTIONS(2443), + [sym_identifier] = ACTIONS(2445), + [anon_sym_LF] = ACTIONS(2445), + [anon_sym_CR] = ACTIONS(2445), + [anon_sym_CR_LF] = ACTIONS(2445), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2147), - [anon_sym_as] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_COMMA] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym___global] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2147), - [anon_sym_PIPE] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(2147), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2147), - [anon_sym_SLASH] = ACTIONS(2147), - [anon_sym_PERCENT] = ACTIONS(2147), - [anon_sym_LT] = ACTIONS(2147), - [anon_sym_GT] = ACTIONS(2147), - [anon_sym_EQ_EQ] = ACTIONS(2147), - [anon_sym_BANG_EQ] = ACTIONS(2147), - [anon_sym_LT_EQ] = ACTIONS(2147), - [anon_sym_GT_EQ] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_struct] = ACTIONS(2147), - [anon_sym_union] = ACTIONS(2147), - [anon_sym_pub] = ACTIONS(2147), - [anon_sym_mut] = ACTIONS(2147), - [anon_sym_enum] = ACTIONS(2147), - [anon_sym_interface] = ACTIONS(2147), - [anon_sym_PLUS_PLUS] = ACTIONS(2147), - [anon_sym_DASH_DASH] = ACTIONS(2147), - [anon_sym_QMARK] = ACTIONS(2147), - [anon_sym_BANG] = ACTIONS(2147), - [anon_sym_go] = ACTIONS(2147), - [anon_sym_spawn] = ACTIONS(2147), - [anon_sym_json_DOTdecode] = ACTIONS(2147), - [anon_sym_LBRACK2] = ACTIONS(2147), - [anon_sym_TILDE] = ACTIONS(2147), - [anon_sym_CARET] = ACTIONS(2147), - [anon_sym_AMP] = ACTIONS(2147), - [anon_sym_LT_DASH] = ACTIONS(2147), - [anon_sym_LT_LT] = ACTIONS(2147), - [anon_sym_GT_GT] = ACTIONS(2147), - [anon_sym_GT_GT_GT] = ACTIONS(2147), - [anon_sym_AMP_CARET] = ACTIONS(2147), - [anon_sym_AMP_AMP] = ACTIONS(2147), - [anon_sym_PIPE_PIPE] = ACTIONS(2147), - [anon_sym_or] = ACTIONS(2147), - [sym_none] = ACTIONS(2147), - [sym_true] = ACTIONS(2147), - [sym_false] = ACTIONS(2147), - [sym_nil] = ACTIONS(2147), - [anon_sym_QMARK_DOT] = ACTIONS(2147), - [anon_sym_POUND_LBRACK] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_DOLLARif] = ACTIONS(2147), - [anon_sym_is] = ACTIONS(2147), - [anon_sym_BANGis] = ACTIONS(2147), - [anon_sym_in] = ACTIONS(2147), - [anon_sym_BANGin] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_select] = ACTIONS(2147), - [anon_sym_lock] = ACTIONS(2147), - [anon_sym_rlock] = ACTIONS(2147), - [anon_sym_unsafe] = ACTIONS(2147), - [anon_sym_sql] = ACTIONS(2147), - [sym_int_literal] = ACTIONS(2147), - [sym_float_literal] = ACTIONS(2147), - [sym_rune_literal] = ACTIONS(2147), - [anon_sym_SQUOTE] = ACTIONS(2147), - [anon_sym_DQUOTE] = ACTIONS(2147), - [anon_sym_c_SQUOTE] = ACTIONS(2147), - [anon_sym_c_DQUOTE] = ACTIONS(2147), - [anon_sym_r_SQUOTE] = ACTIONS(2147), - [anon_sym_r_DQUOTE] = ACTIONS(2147), - [sym_pseudo_compile_time_identifier] = ACTIONS(2147), - [anon_sym_shared] = ACTIONS(2147), - [anon_sym_map_LBRACK] = ACTIONS(2147), - [anon_sym_chan] = ACTIONS(2147), - [anon_sym_thread] = ACTIONS(2147), - [anon_sym_atomic] = ACTIONS(2147), - [anon_sym_assert] = ACTIONS(2147), - [anon_sym_defer] = ACTIONS(2147), - [anon_sym_goto] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_DOLLARfor] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_POUND] = ACTIONS(2147), - [anon_sym_asm] = ACTIONS(2147), - [anon_sym_AT_LBRACK] = ACTIONS(2147), + [anon_sym_DOT] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_COMMA] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym___global] = ACTIONS(2445), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_PERCENT] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_GT] = ACTIONS(2445), + [anon_sym_EQ_EQ] = ACTIONS(2445), + [anon_sym_BANG_EQ] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_struct] = ACTIONS(2445), + [anon_sym_union] = ACTIONS(2445), + [anon_sym_pub] = ACTIONS(2445), + [anon_sym_mut] = ACTIONS(2445), + [anon_sym_enum] = ACTIONS(2445), + [anon_sym_interface] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_QMARK] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2445), + [anon_sym_go] = ACTIONS(2445), + [anon_sym_spawn] = ACTIONS(2445), + [anon_sym_json_DOTdecode] = ACTIONS(2445), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_LBRACK2] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2445), + [anon_sym_CARET] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_LT_DASH] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2445), + [anon_sym_GT_GT] = ACTIONS(2445), + [anon_sym_GT_GT_GT] = ACTIONS(2445), + [anon_sym_AMP_CARET] = ACTIONS(2445), + [anon_sym_AMP_AMP] = ACTIONS(2445), + [anon_sym_PIPE_PIPE] = ACTIONS(2445), + [anon_sym_or] = ACTIONS(2445), + [sym_none] = ACTIONS(2445), + [sym_true] = ACTIONS(2445), + [sym_false] = ACTIONS(2445), + [sym_nil] = ACTIONS(2445), + [anon_sym_QMARK_DOT] = ACTIONS(2445), + [anon_sym_POUND_LBRACK] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_DOLLARif] = ACTIONS(2445), + [anon_sym_is] = ACTIONS(2445), + [anon_sym_BANGis] = ACTIONS(2445), + [anon_sym_in] = ACTIONS(2445), + [anon_sym_BANGin] = ACTIONS(2445), + [anon_sym_match] = ACTIONS(2445), + [anon_sym_select] = ACTIONS(2445), + [anon_sym_lock] = ACTIONS(2445), + [anon_sym_rlock] = ACTIONS(2445), + [anon_sym_unsafe] = ACTIONS(2445), + [anon_sym_sql] = ACTIONS(2445), + [sym_int_literal] = ACTIONS(2445), + [sym_float_literal] = ACTIONS(2445), + [sym_rune_literal] = ACTIONS(2445), + [anon_sym_SQUOTE] = ACTIONS(2445), + [anon_sym_DQUOTE] = ACTIONS(2445), + [anon_sym_c_SQUOTE] = ACTIONS(2445), + [anon_sym_c_DQUOTE] = ACTIONS(2445), + [anon_sym_r_SQUOTE] = ACTIONS(2445), + [anon_sym_r_DQUOTE] = ACTIONS(2445), + [sym_pseudo_compile_time_identifier] = ACTIONS(2445), + [anon_sym_shared] = ACTIONS(2445), + [anon_sym_map_LBRACK] = ACTIONS(2445), + [anon_sym_chan] = ACTIONS(2445), + [anon_sym_thread] = ACTIONS(2445), + [anon_sym_atomic] = ACTIONS(2445), + [anon_sym_assert] = ACTIONS(2445), + [anon_sym_defer] = ACTIONS(2445), + [anon_sym_goto] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_DOLLARfor] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_POUND] = ACTIONS(2445), + [anon_sym_asm] = ACTIONS(2445), + [anon_sym_AT_LBRACK] = ACTIONS(2445), }, [1061] = { [sym_line_comment] = STATE(1061), [sym_block_comment] = STATE(1061), - [ts_builtin_sym_end] = ACTIONS(2053), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [ts_builtin_sym_end] = ACTIONS(2931), + [sym_identifier] = ACTIONS(2933), + [anon_sym_LF] = ACTIONS(2933), + [anon_sym_CR] = ACTIONS(2933), + [anon_sym_CR_LF] = ACTIONS(2933), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym___global] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2053), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_union] = ACTIONS(2055), - [anon_sym_pub] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_QMARK] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_LBRACK2] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_AMP_CARET] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(2055), - [anon_sym_POUND_LBRACK] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), - [anon_sym_AT_LBRACK] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(2933), + [anon_sym_as] = ACTIONS(2933), + [anon_sym_LBRACE] = ACTIONS(2933), + [anon_sym_COMMA] = ACTIONS(2933), + [anon_sym_const] = ACTIONS(2933), + [anon_sym_LPAREN] = ACTIONS(2933), + [anon_sym___global] = ACTIONS(2933), + [anon_sym_type] = ACTIONS(2933), + [anon_sym_fn] = ACTIONS(2933), + [anon_sym_PLUS] = ACTIONS(2933), + [anon_sym_DASH] = ACTIONS(2933), + [anon_sym_STAR] = ACTIONS(2933), + [anon_sym_SLASH] = ACTIONS(2933), + [anon_sym_PERCENT] = ACTIONS(2933), + [anon_sym_LT] = ACTIONS(2933), + [anon_sym_GT] = ACTIONS(2933), + [anon_sym_EQ_EQ] = ACTIONS(2933), + [anon_sym_BANG_EQ] = ACTIONS(2933), + [anon_sym_LT_EQ] = ACTIONS(2933), + [anon_sym_GT_EQ] = ACTIONS(2933), + [anon_sym_LBRACK] = ACTIONS(2931), + [anon_sym_struct] = ACTIONS(2933), + [anon_sym_union] = ACTIONS(2933), + [anon_sym_pub] = ACTIONS(2933), + [anon_sym_mut] = ACTIONS(2933), + [anon_sym_enum] = ACTIONS(2933), + [anon_sym_interface] = ACTIONS(2933), + [anon_sym_PLUS_PLUS] = ACTIONS(2933), + [anon_sym_DASH_DASH] = ACTIONS(2933), + [anon_sym_QMARK] = ACTIONS(2933), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_go] = ACTIONS(2933), + [anon_sym_spawn] = ACTIONS(2933), + [anon_sym_json_DOTdecode] = ACTIONS(2933), + [anon_sym_PIPE] = ACTIONS(2933), + [anon_sym_LBRACK2] = ACTIONS(2933), + [anon_sym_TILDE] = ACTIONS(2933), + [anon_sym_CARET] = ACTIONS(2933), + [anon_sym_AMP] = ACTIONS(2933), + [anon_sym_LT_DASH] = ACTIONS(2933), + [anon_sym_LT_LT] = ACTIONS(2933), + [anon_sym_GT_GT] = ACTIONS(2933), + [anon_sym_GT_GT_GT] = ACTIONS(2933), + [anon_sym_AMP_CARET] = ACTIONS(2933), + [anon_sym_AMP_AMP] = ACTIONS(2933), + [anon_sym_PIPE_PIPE] = ACTIONS(2933), + [anon_sym_or] = ACTIONS(2933), + [sym_none] = ACTIONS(2933), + [sym_true] = ACTIONS(2933), + [sym_false] = ACTIONS(2933), + [sym_nil] = ACTIONS(2933), + [anon_sym_QMARK_DOT] = ACTIONS(2933), + [anon_sym_POUND_LBRACK] = ACTIONS(2933), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_DOLLARif] = ACTIONS(2933), + [anon_sym_is] = ACTIONS(2933), + [anon_sym_BANGis] = ACTIONS(2933), + [anon_sym_in] = ACTIONS(2933), + [anon_sym_BANGin] = ACTIONS(2933), + [anon_sym_match] = ACTIONS(2933), + [anon_sym_select] = ACTIONS(2933), + [anon_sym_lock] = ACTIONS(2933), + [anon_sym_rlock] = ACTIONS(2933), + [anon_sym_unsafe] = ACTIONS(2933), + [anon_sym_sql] = ACTIONS(2933), + [sym_int_literal] = ACTIONS(2933), + [sym_float_literal] = ACTIONS(2933), + [sym_rune_literal] = ACTIONS(2933), + [anon_sym_SQUOTE] = ACTIONS(2933), + [anon_sym_DQUOTE] = ACTIONS(2933), + [anon_sym_c_SQUOTE] = ACTIONS(2933), + [anon_sym_c_DQUOTE] = ACTIONS(2933), + [anon_sym_r_SQUOTE] = ACTIONS(2933), + [anon_sym_r_DQUOTE] = ACTIONS(2933), + [sym_pseudo_compile_time_identifier] = ACTIONS(2933), + [anon_sym_shared] = ACTIONS(2933), + [anon_sym_map_LBRACK] = ACTIONS(2933), + [anon_sym_chan] = ACTIONS(2933), + [anon_sym_thread] = ACTIONS(2933), + [anon_sym_atomic] = ACTIONS(2933), + [anon_sym_assert] = ACTIONS(2933), + [anon_sym_defer] = ACTIONS(2933), + [anon_sym_goto] = ACTIONS(2933), + [anon_sym_break] = ACTIONS(2933), + [anon_sym_continue] = ACTIONS(2933), + [anon_sym_return] = ACTIONS(2933), + [anon_sym_DOLLARfor] = ACTIONS(2933), + [anon_sym_for] = ACTIONS(2933), + [anon_sym_POUND] = ACTIONS(2933), + [anon_sym_asm] = ACTIONS(2933), + [anon_sym_AT_LBRACK] = ACTIONS(2933), }, [1062] = { [sym_line_comment] = STATE(1062), [sym_block_comment] = STATE(1062), - [ts_builtin_sym_end] = ACTIONS(2161), - [sym_identifier] = ACTIONS(2163), - [anon_sym_LF] = ACTIONS(2163), - [anon_sym_CR] = ACTIONS(2163), - [anon_sym_CR_LF] = ACTIONS(2163), + [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(2163), - [anon_sym_as] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_COMMA] = ACTIONS(2163), - [anon_sym_const] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym___global] = ACTIONS(2163), - [anon_sym_type] = ACTIONS(2163), - [anon_sym_PIPE] = ACTIONS(2163), - [anon_sym_fn] = ACTIONS(2163), - [anon_sym_PLUS] = ACTIONS(2163), - [anon_sym_DASH] = ACTIONS(2163), - [anon_sym_STAR] = ACTIONS(2163), - [anon_sym_SLASH] = ACTIONS(2163), - [anon_sym_PERCENT] = ACTIONS(2163), - [anon_sym_LT] = ACTIONS(2163), - [anon_sym_GT] = ACTIONS(2163), - [anon_sym_EQ_EQ] = ACTIONS(2163), - [anon_sym_BANG_EQ] = ACTIONS(2163), - [anon_sym_LT_EQ] = ACTIONS(2163), - [anon_sym_GT_EQ] = ACTIONS(2163), - [anon_sym_LBRACK] = ACTIONS(2161), - [anon_sym_struct] = ACTIONS(2163), - [anon_sym_union] = ACTIONS(2163), - [anon_sym_pub] = ACTIONS(2163), - [anon_sym_mut] = ACTIONS(2163), - [anon_sym_enum] = ACTIONS(2163), - [anon_sym_interface] = ACTIONS(2163), - [anon_sym_PLUS_PLUS] = ACTIONS(2163), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [anon_sym_QMARK] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(2163), - [anon_sym_go] = ACTIONS(2163), - [anon_sym_spawn] = ACTIONS(2163), - [anon_sym_json_DOTdecode] = ACTIONS(2163), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2163), - [anon_sym_CARET] = ACTIONS(2163), - [anon_sym_AMP] = ACTIONS(2163), - [anon_sym_LT_DASH] = ACTIONS(2163), - [anon_sym_LT_LT] = ACTIONS(2163), - [anon_sym_GT_GT] = ACTIONS(2163), - [anon_sym_GT_GT_GT] = ACTIONS(2163), - [anon_sym_AMP_CARET] = ACTIONS(2163), - [anon_sym_AMP_AMP] = ACTIONS(2163), - [anon_sym_PIPE_PIPE] = ACTIONS(2163), - [anon_sym_or] = ACTIONS(2163), - [sym_none] = ACTIONS(2163), - [sym_true] = ACTIONS(2163), - [sym_false] = ACTIONS(2163), - [sym_nil] = ACTIONS(2163), - [anon_sym_QMARK_DOT] = ACTIONS(2163), - [anon_sym_POUND_LBRACK] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2163), - [anon_sym_DOLLARif] = ACTIONS(2163), - [anon_sym_is] = ACTIONS(2163), - [anon_sym_BANGis] = ACTIONS(2163), - [anon_sym_in] = ACTIONS(2163), - [anon_sym_BANGin] = ACTIONS(2163), - [anon_sym_match] = ACTIONS(2163), - [anon_sym_select] = ACTIONS(2163), - [anon_sym_lock] = ACTIONS(2163), - [anon_sym_rlock] = ACTIONS(2163), - [anon_sym_unsafe] = ACTIONS(2163), - [anon_sym_sql] = ACTIONS(2163), - [sym_int_literal] = ACTIONS(2163), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(2163), - [anon_sym_c_SQUOTE] = ACTIONS(2163), - [anon_sym_c_DQUOTE] = ACTIONS(2163), - [anon_sym_r_SQUOTE] = ACTIONS(2163), - [anon_sym_r_DQUOTE] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(2163), - [anon_sym_shared] = ACTIONS(2163), - [anon_sym_map_LBRACK] = ACTIONS(2163), - [anon_sym_chan] = ACTIONS(2163), - [anon_sym_thread] = ACTIONS(2163), - [anon_sym_atomic] = ACTIONS(2163), - [anon_sym_assert] = ACTIONS(2163), - [anon_sym_defer] = ACTIONS(2163), - [anon_sym_goto] = ACTIONS(2163), - [anon_sym_break] = ACTIONS(2163), - [anon_sym_continue] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2163), - [anon_sym_DOLLARfor] = ACTIONS(2163), - [anon_sym_for] = ACTIONS(2163), - [anon_sym_POUND] = ACTIONS(2163), - [anon_sym_asm] = ACTIONS(2163), - [anon_sym_AT_LBRACK] = ACTIONS(2163), + [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_fn] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2949), + [anon_sym_SLASH] = 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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [anon_sym_c_SQUOTE] = ACTIONS(2949), + [anon_sym_c_DQUOTE] = ACTIONS(2949), + [anon_sym_r_SQUOTE] = ACTIONS(2949), + [anon_sym_r_DQUOTE] = 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), }, [1063] = { [sym_line_comment] = STATE(1063), [sym_block_comment] = STATE(1063), - [ts_builtin_sym_end] = ACTIONS(2885), - [sym_identifier] = ACTIONS(2887), - [anon_sym_LF] = ACTIONS(2887), - [anon_sym_CR] = ACTIONS(2887), - [anon_sym_CR_LF] = ACTIONS(2887), + [ts_builtin_sym_end] = ACTIONS(2955), + [sym_identifier] = ACTIONS(2957), + [anon_sym_LF] = ACTIONS(2957), + [anon_sym_CR] = ACTIONS(2957), + [anon_sym_CR_LF] = ACTIONS(2957), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3039), - [anon_sym_as] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_COMMA] = ACTIONS(2887), - [anon_sym_const] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(2887), - [anon_sym___global] = ACTIONS(2887), - [anon_sym_type] = ACTIONS(2887), - [anon_sym_PIPE] = ACTIONS(2887), - [anon_sym_fn] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2887), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_EQ_EQ] = ACTIONS(2887), - [anon_sym_BANG_EQ] = ACTIONS(2887), - [anon_sym_LT_EQ] = ACTIONS(2887), - [anon_sym_GT_EQ] = ACTIONS(2887), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2887), - [anon_sym_union] = ACTIONS(2887), - [anon_sym_pub] = ACTIONS(2887), - [anon_sym_mut] = ACTIONS(2887), - [anon_sym_enum] = ACTIONS(2887), - [anon_sym_interface] = ACTIONS(2887), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [anon_sym_QMARK] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_go] = ACTIONS(2887), - [anon_sym_spawn] = ACTIONS(2887), - [anon_sym_json_DOTdecode] = ACTIONS(2887), - [anon_sym_LBRACK2] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_CARET] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2887), - [anon_sym_LT_LT] = ACTIONS(2887), - [anon_sym_GT_GT] = ACTIONS(2887), - [anon_sym_GT_GT_GT] = ACTIONS(2887), - [anon_sym_AMP_CARET] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_PIPE_PIPE] = ACTIONS(2887), - [anon_sym_or] = ACTIONS(2887), - [sym_none] = ACTIONS(2887), - [sym_true] = ACTIONS(2887), - [sym_false] = ACTIONS(2887), - [sym_nil] = ACTIONS(2887), - [anon_sym_QMARK_DOT] = ACTIONS(2887), - [anon_sym_POUND_LBRACK] = ACTIONS(2887), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_DOLLARif] = ACTIONS(2887), - [anon_sym_is] = ACTIONS(2887), - [anon_sym_BANGis] = ACTIONS(2887), - [anon_sym_in] = ACTIONS(2887), - [anon_sym_BANGin] = ACTIONS(2887), - [anon_sym_match] = ACTIONS(2887), - [anon_sym_select] = ACTIONS(2887), - [anon_sym_lock] = ACTIONS(2887), - [anon_sym_rlock] = ACTIONS(2887), - [anon_sym_unsafe] = ACTIONS(2887), - [anon_sym_sql] = ACTIONS(2887), - [sym_int_literal] = ACTIONS(2887), - [sym_float_literal] = ACTIONS(2887), - [sym_rune_literal] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [anon_sym_c_SQUOTE] = ACTIONS(2887), - [anon_sym_c_DQUOTE] = ACTIONS(2887), - [anon_sym_r_SQUOTE] = ACTIONS(2887), - [anon_sym_r_DQUOTE] = ACTIONS(2887), - [sym_pseudo_compile_time_identifier] = ACTIONS(2887), - [anon_sym_shared] = ACTIONS(2887), - [anon_sym_map_LBRACK] = ACTIONS(2887), - [anon_sym_chan] = ACTIONS(2887), - [anon_sym_thread] = ACTIONS(2887), - [anon_sym_atomic] = ACTIONS(2887), - [anon_sym_assert] = ACTIONS(2887), - [anon_sym_defer] = ACTIONS(2887), - [anon_sym_goto] = ACTIONS(2887), - [anon_sym_break] = ACTIONS(2887), - [anon_sym_continue] = ACTIONS(2887), - [anon_sym_return] = ACTIONS(2887), - [anon_sym_DOLLARfor] = ACTIONS(2887), - [anon_sym_for] = ACTIONS(2887), - [anon_sym_POUND] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2887), - [anon_sym_AT_LBRACK] = ACTIONS(2887), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_as] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_COMMA] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym___global] = ACTIONS(2957), + [anon_sym_type] = ACTIONS(2957), + [anon_sym_fn] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_SLASH] = ACTIONS(2957), + [anon_sym_PERCENT] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2957), + [anon_sym_GT] = ACTIONS(2957), + [anon_sym_EQ_EQ] = ACTIONS(2957), + [anon_sym_BANG_EQ] = ACTIONS(2957), + [anon_sym_LT_EQ] = ACTIONS(2957), + [anon_sym_GT_EQ] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2955), + [anon_sym_struct] = ACTIONS(2957), + [anon_sym_union] = ACTIONS(2957), + [anon_sym_pub] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2957), + [anon_sym_interface] = ACTIONS(2957), + [anon_sym_PLUS_PLUS] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2957), + [anon_sym_QMARK] = ACTIONS(2957), + [anon_sym_BANG] = ACTIONS(2957), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2957), + [anon_sym_json_DOTdecode] = ACTIONS(2957), + [anon_sym_PIPE] = ACTIONS(2957), + [anon_sym_LBRACK2] = ACTIONS(2957), + [anon_sym_TILDE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2957), + [anon_sym_AMP] = ACTIONS(2957), + [anon_sym_LT_DASH] = ACTIONS(2957), + [anon_sym_LT_LT] = ACTIONS(2957), + [anon_sym_GT_GT] = ACTIONS(2957), + [anon_sym_GT_GT_GT] = ACTIONS(2957), + [anon_sym_AMP_CARET] = ACTIONS(2957), + [anon_sym_AMP_AMP] = ACTIONS(2957), + [anon_sym_PIPE_PIPE] = ACTIONS(2957), + [anon_sym_or] = ACTIONS(2957), + [sym_none] = ACTIONS(2957), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_nil] = ACTIONS(2957), + [anon_sym_QMARK_DOT] = ACTIONS(2957), + [anon_sym_POUND_LBRACK] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_DOLLARif] = ACTIONS(2957), + [anon_sym_is] = ACTIONS(2957), + [anon_sym_BANGis] = ACTIONS(2957), + [anon_sym_in] = ACTIONS(2957), + [anon_sym_BANGin] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_select] = ACTIONS(2957), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_rlock] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2957), + [anon_sym_sql] = ACTIONS(2957), + [sym_int_literal] = ACTIONS(2957), + [sym_float_literal] = ACTIONS(2957), + [sym_rune_literal] = ACTIONS(2957), + [anon_sym_SQUOTE] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [anon_sym_c_SQUOTE] = ACTIONS(2957), + [anon_sym_c_DQUOTE] = ACTIONS(2957), + [anon_sym_r_SQUOTE] = ACTIONS(2957), + [anon_sym_r_DQUOTE] = ACTIONS(2957), + [sym_pseudo_compile_time_identifier] = ACTIONS(2957), + [anon_sym_shared] = ACTIONS(2957), + [anon_sym_map_LBRACK] = ACTIONS(2957), + [anon_sym_chan] = ACTIONS(2957), + [anon_sym_thread] = ACTIONS(2957), + [anon_sym_atomic] = ACTIONS(2957), + [anon_sym_assert] = ACTIONS(2957), + [anon_sym_defer] = ACTIONS(2957), + [anon_sym_goto] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_DOLLARfor] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_POUND] = ACTIONS(2957), + [anon_sym_asm] = ACTIONS(2957), + [anon_sym_AT_LBRACK] = ACTIONS(2957), }, [1064] = { [sym_line_comment] = STATE(1064), [sym_block_comment] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(2747), - [sym_identifier] = ACTIONS(2749), - [anon_sym_LF] = ACTIONS(2749), - [anon_sym_CR] = ACTIONS(2749), - [anon_sym_CR_LF] = ACTIONS(2749), + [ts_builtin_sym_end] = ACTIONS(2355), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LF] = ACTIONS(2357), + [anon_sym_CR] = ACTIONS(2357), + [anon_sym_CR_LF] = ACTIONS(2357), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2749), - [anon_sym_as] = ACTIONS(2749), - [anon_sym_LBRACE] = ACTIONS(2749), - [anon_sym_COMMA] = ACTIONS(2749), - [anon_sym_const] = ACTIONS(2749), - [anon_sym_LPAREN] = ACTIONS(2749), - [anon_sym___global] = ACTIONS(2749), - [anon_sym_type] = ACTIONS(2749), - [anon_sym_PIPE] = ACTIONS(2749), - [anon_sym_fn] = ACTIONS(2749), - [anon_sym_PLUS] = ACTIONS(2749), - [anon_sym_DASH] = ACTIONS(2749), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_SLASH] = ACTIONS(2749), - [anon_sym_PERCENT] = ACTIONS(2749), - [anon_sym_LT] = ACTIONS(2749), - [anon_sym_GT] = ACTIONS(2749), - [anon_sym_EQ_EQ] = ACTIONS(2749), - [anon_sym_BANG_EQ] = ACTIONS(2749), - [anon_sym_LT_EQ] = ACTIONS(2749), - [anon_sym_GT_EQ] = ACTIONS(2749), - [anon_sym_LBRACK] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2749), - [anon_sym_union] = ACTIONS(2749), - [anon_sym_pub] = ACTIONS(2749), - [anon_sym_mut] = ACTIONS(2749), - [anon_sym_enum] = ACTIONS(2749), - [anon_sym_interface] = ACTIONS(2749), - [anon_sym_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_DASH_DASH] = ACTIONS(2749), - [anon_sym_QMARK] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2749), - [anon_sym_go] = ACTIONS(2749), - [anon_sym_spawn] = ACTIONS(2749), - [anon_sym_json_DOTdecode] = ACTIONS(2749), - [anon_sym_LBRACK2] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2749), - [anon_sym_CARET] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2749), - [anon_sym_LT_DASH] = ACTIONS(2749), - [anon_sym_LT_LT] = ACTIONS(2749), - [anon_sym_GT_GT] = ACTIONS(2749), - [anon_sym_GT_GT_GT] = ACTIONS(2749), - [anon_sym_AMP_CARET] = ACTIONS(2749), - [anon_sym_AMP_AMP] = ACTIONS(2749), - [anon_sym_PIPE_PIPE] = ACTIONS(2749), - [anon_sym_or] = ACTIONS(2749), - [sym_none] = ACTIONS(2749), - [sym_true] = ACTIONS(2749), - [sym_false] = ACTIONS(2749), - [sym_nil] = ACTIONS(2749), - [anon_sym_QMARK_DOT] = ACTIONS(2749), - [anon_sym_POUND_LBRACK] = ACTIONS(2749), - [anon_sym_if] = ACTIONS(2749), - [anon_sym_DOLLARif] = ACTIONS(2749), - [anon_sym_is] = ACTIONS(2749), - [anon_sym_BANGis] = ACTIONS(2749), - [anon_sym_in] = ACTIONS(2749), - [anon_sym_BANGin] = ACTIONS(2749), - [anon_sym_match] = ACTIONS(2749), - [anon_sym_select] = ACTIONS(2749), - [anon_sym_lock] = ACTIONS(2749), - [anon_sym_rlock] = ACTIONS(2749), - [anon_sym_unsafe] = ACTIONS(2749), - [anon_sym_sql] = ACTIONS(2749), - [sym_int_literal] = ACTIONS(2749), - [sym_float_literal] = ACTIONS(2749), - [sym_rune_literal] = ACTIONS(2749), - [anon_sym_SQUOTE] = ACTIONS(2749), - [anon_sym_DQUOTE] = ACTIONS(2749), - [anon_sym_c_SQUOTE] = ACTIONS(2749), - [anon_sym_c_DQUOTE] = ACTIONS(2749), - [anon_sym_r_SQUOTE] = ACTIONS(2749), - [anon_sym_r_DQUOTE] = ACTIONS(2749), - [sym_pseudo_compile_time_identifier] = ACTIONS(2749), - [anon_sym_shared] = ACTIONS(2749), - [anon_sym_map_LBRACK] = ACTIONS(2749), - [anon_sym_chan] = ACTIONS(2749), - [anon_sym_thread] = ACTIONS(2749), - [anon_sym_atomic] = ACTIONS(2749), - [anon_sym_assert] = ACTIONS(2749), - [anon_sym_defer] = ACTIONS(2749), - [anon_sym_goto] = ACTIONS(2749), - [anon_sym_break] = ACTIONS(2749), - [anon_sym_continue] = ACTIONS(2749), - [anon_sym_return] = ACTIONS(2749), - [anon_sym_DOLLARfor] = ACTIONS(2749), - [anon_sym_for] = ACTIONS(2749), - [anon_sym_POUND] = ACTIONS(2749), - [anon_sym_asm] = ACTIONS(2749), - [anon_sym_AT_LBRACK] = ACTIONS(2749), + [anon_sym_DOT] = ACTIONS(2357), + [anon_sym_as] = ACTIONS(2357), + [anon_sym_LBRACE] = ACTIONS(2357), + [anon_sym_COMMA] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2357), + [anon_sym___global] = ACTIONS(2357), + [anon_sym_type] = ACTIONS(2357), + [anon_sym_fn] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2357), + [anon_sym_DASH] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_SLASH] = ACTIONS(2357), + [anon_sym_PERCENT] = ACTIONS(2357), + [anon_sym_LT] = ACTIONS(2357), + [anon_sym_GT] = ACTIONS(2357), + [anon_sym_EQ_EQ] = ACTIONS(2357), + [anon_sym_BANG_EQ] = ACTIONS(2357), + [anon_sym_LT_EQ] = ACTIONS(2357), + [anon_sym_GT_EQ] = ACTIONS(2357), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_struct] = ACTIONS(2357), + [anon_sym_union] = ACTIONS(2357), + [anon_sym_pub] = ACTIONS(2357), + [anon_sym_mut] = ACTIONS(2357), + [anon_sym_enum] = ACTIONS(2357), + [anon_sym_interface] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_QMARK] = ACTIONS(2357), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_go] = ACTIONS(2357), + [anon_sym_spawn] = ACTIONS(2357), + [anon_sym_json_DOTdecode] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2357), + [anon_sym_LBRACK2] = ACTIONS(2357), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_CARET] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_LT_DASH] = ACTIONS(2357), + [anon_sym_LT_LT] = ACTIONS(2357), + [anon_sym_GT_GT] = ACTIONS(2357), + [anon_sym_GT_GT_GT] = ACTIONS(2357), + [anon_sym_AMP_CARET] = ACTIONS(2357), + [anon_sym_AMP_AMP] = ACTIONS(2357), + [anon_sym_PIPE_PIPE] = ACTIONS(2357), + [anon_sym_or] = ACTIONS(2357), + [sym_none] = ACTIONS(2357), + [sym_true] = ACTIONS(2357), + [sym_false] = ACTIONS(2357), + [sym_nil] = ACTIONS(2357), + [anon_sym_QMARK_DOT] = ACTIONS(2357), + [anon_sym_POUND_LBRACK] = ACTIONS(2357), + [anon_sym_if] = ACTIONS(2357), + [anon_sym_DOLLARif] = ACTIONS(2357), + [anon_sym_is] = ACTIONS(2357), + [anon_sym_BANGis] = ACTIONS(2357), + [anon_sym_in] = ACTIONS(2357), + [anon_sym_BANGin] = ACTIONS(2357), + [anon_sym_match] = ACTIONS(2357), + [anon_sym_select] = ACTIONS(2357), + [anon_sym_lock] = ACTIONS(2357), + [anon_sym_rlock] = ACTIONS(2357), + [anon_sym_unsafe] = ACTIONS(2357), + [anon_sym_sql] = ACTIONS(2357), + [sym_int_literal] = ACTIONS(2357), + [sym_float_literal] = ACTIONS(2357), + [sym_rune_literal] = ACTIONS(2357), + [anon_sym_SQUOTE] = ACTIONS(2357), + [anon_sym_DQUOTE] = ACTIONS(2357), + [anon_sym_c_SQUOTE] = ACTIONS(2357), + [anon_sym_c_DQUOTE] = ACTIONS(2357), + [anon_sym_r_SQUOTE] = ACTIONS(2357), + [anon_sym_r_DQUOTE] = ACTIONS(2357), + [sym_pseudo_compile_time_identifier] = ACTIONS(2357), + [anon_sym_shared] = ACTIONS(2357), + [anon_sym_map_LBRACK] = ACTIONS(2357), + [anon_sym_chan] = ACTIONS(2357), + [anon_sym_thread] = ACTIONS(2357), + [anon_sym_atomic] = ACTIONS(2357), + [anon_sym_assert] = ACTIONS(2357), + [anon_sym_defer] = ACTIONS(2357), + [anon_sym_goto] = ACTIONS(2357), + [anon_sym_break] = ACTIONS(2357), + [anon_sym_continue] = ACTIONS(2357), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_DOLLARfor] = ACTIONS(2357), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_POUND] = ACTIONS(2357), + [anon_sym_asm] = ACTIONS(2357), + [anon_sym_AT_LBRACK] = ACTIONS(2357), }, [1065] = { [sym_line_comment] = STATE(1065), [sym_block_comment] = STATE(1065), - [ts_builtin_sym_end] = ACTIONS(2031), - [sym_identifier] = ACTIONS(2029), - [anon_sym_LF] = ACTIONS(2029), - [anon_sym_CR] = ACTIONS(2029), - [anon_sym_CR_LF] = ACTIONS(2029), + [ts_builtin_sym_end] = ACTIONS(2349), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LF] = ACTIONS(2351), + [anon_sym_CR] = ACTIONS(2351), + [anon_sym_CR_LF] = ACTIONS(2351), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2029), - [anon_sym_as] = ACTIONS(2029), - [anon_sym_LBRACE] = ACTIONS(2029), - [anon_sym_COMMA] = ACTIONS(2029), - [anon_sym_const] = ACTIONS(2029), - [anon_sym_LPAREN] = ACTIONS(2029), - [anon_sym___global] = ACTIONS(2029), - [anon_sym_type] = ACTIONS(2029), - [anon_sym_PIPE] = ACTIONS(2029), - [anon_sym_fn] = ACTIONS(2029), - [anon_sym_PLUS] = ACTIONS(2029), - [anon_sym_DASH] = ACTIONS(2029), - [anon_sym_STAR] = ACTIONS(2029), - [anon_sym_SLASH] = ACTIONS(2029), - [anon_sym_PERCENT] = ACTIONS(2029), - [anon_sym_LT] = ACTIONS(2029), - [anon_sym_GT] = ACTIONS(2029), - [anon_sym_EQ_EQ] = ACTIONS(2029), - [anon_sym_BANG_EQ] = ACTIONS(2029), - [anon_sym_LT_EQ] = ACTIONS(2029), - [anon_sym_GT_EQ] = ACTIONS(2029), - [anon_sym_LBRACK] = ACTIONS(2031), - [anon_sym_struct] = ACTIONS(2029), - [anon_sym_union] = ACTIONS(2029), - [anon_sym_pub] = ACTIONS(2029), - [anon_sym_mut] = ACTIONS(2029), - [anon_sym_enum] = ACTIONS(2029), - [anon_sym_interface] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_QMARK] = ACTIONS(2029), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_go] = ACTIONS(2029), - [anon_sym_spawn] = ACTIONS(2029), - [anon_sym_json_DOTdecode] = ACTIONS(2029), - [anon_sym_LBRACK2] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_LT_DASH] = ACTIONS(2029), - [anon_sym_LT_LT] = ACTIONS(2029), - [anon_sym_GT_GT] = ACTIONS(2029), - [anon_sym_GT_GT_GT] = ACTIONS(2029), - [anon_sym_AMP_CARET] = ACTIONS(2029), - [anon_sym_AMP_AMP] = ACTIONS(2029), - [anon_sym_PIPE_PIPE] = ACTIONS(2029), - [anon_sym_or] = ACTIONS(2029), - [sym_none] = ACTIONS(2029), - [sym_true] = ACTIONS(2029), - [sym_false] = ACTIONS(2029), - [sym_nil] = ACTIONS(2029), - [anon_sym_QMARK_DOT] = ACTIONS(2029), - [anon_sym_POUND_LBRACK] = ACTIONS(2029), - [anon_sym_if] = ACTIONS(2029), - [anon_sym_DOLLARif] = ACTIONS(2029), - [anon_sym_is] = ACTIONS(2029), - [anon_sym_BANGis] = ACTIONS(2029), - [anon_sym_in] = ACTIONS(2029), - [anon_sym_BANGin] = ACTIONS(2029), - [anon_sym_match] = ACTIONS(2029), - [anon_sym_select] = ACTIONS(2029), - [anon_sym_lock] = ACTIONS(2029), - [anon_sym_rlock] = ACTIONS(2029), - [anon_sym_unsafe] = ACTIONS(2029), - [anon_sym_sql] = ACTIONS(2029), - [sym_int_literal] = ACTIONS(2029), - [sym_float_literal] = ACTIONS(2029), - [sym_rune_literal] = ACTIONS(2029), - [anon_sym_SQUOTE] = ACTIONS(2029), - [anon_sym_DQUOTE] = ACTIONS(2029), - [anon_sym_c_SQUOTE] = ACTIONS(2029), - [anon_sym_c_DQUOTE] = ACTIONS(2029), - [anon_sym_r_SQUOTE] = ACTIONS(2029), - [anon_sym_r_DQUOTE] = ACTIONS(2029), - [sym_pseudo_compile_time_identifier] = ACTIONS(2029), - [anon_sym_shared] = ACTIONS(2029), - [anon_sym_map_LBRACK] = ACTIONS(2029), - [anon_sym_chan] = ACTIONS(2029), - [anon_sym_thread] = ACTIONS(2029), - [anon_sym_atomic] = ACTIONS(2029), - [anon_sym_assert] = ACTIONS(2029), - [anon_sym_defer] = ACTIONS(2029), - [anon_sym_goto] = ACTIONS(2029), - [anon_sym_break] = ACTIONS(2029), - [anon_sym_continue] = ACTIONS(2029), - [anon_sym_return] = ACTIONS(2029), - [anon_sym_DOLLARfor] = ACTIONS(2029), - [anon_sym_for] = ACTIONS(2029), - [anon_sym_POUND] = ACTIONS(2029), - [anon_sym_asm] = ACTIONS(2029), - [anon_sym_AT_LBRACK] = ACTIONS(2029), + [anon_sym_DOT] = ACTIONS(2351), + [anon_sym_as] = ACTIONS(2351), + [anon_sym_LBRACE] = ACTIONS(2351), + [anon_sym_COMMA] = ACTIONS(2351), + [anon_sym_const] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym___global] = ACTIONS(2351), + [anon_sym_type] = ACTIONS(2351), + [anon_sym_fn] = ACTIONS(2351), + [anon_sym_PLUS] = ACTIONS(2351), + [anon_sym_DASH] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(2351), + [anon_sym_SLASH] = ACTIONS(2351), + [anon_sym_PERCENT] = ACTIONS(2351), + [anon_sym_LT] = ACTIONS(2351), + [anon_sym_GT] = ACTIONS(2351), + [anon_sym_EQ_EQ] = ACTIONS(2351), + [anon_sym_BANG_EQ] = ACTIONS(2351), + [anon_sym_LT_EQ] = ACTIONS(2351), + [anon_sym_GT_EQ] = ACTIONS(2351), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_struct] = ACTIONS(2351), + [anon_sym_union] = ACTIONS(2351), + [anon_sym_pub] = ACTIONS(2351), + [anon_sym_mut] = ACTIONS(2351), + [anon_sym_enum] = ACTIONS(2351), + [anon_sym_interface] = ACTIONS(2351), + [anon_sym_PLUS_PLUS] = ACTIONS(2351), + [anon_sym_DASH_DASH] = ACTIONS(2351), + [anon_sym_QMARK] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(2351), + [anon_sym_go] = ACTIONS(2351), + [anon_sym_spawn] = ACTIONS(2351), + [anon_sym_json_DOTdecode] = ACTIONS(2351), + [anon_sym_PIPE] = ACTIONS(2351), + [anon_sym_LBRACK2] = ACTIONS(2351), + [anon_sym_TILDE] = ACTIONS(2351), + [anon_sym_CARET] = ACTIONS(2351), + [anon_sym_AMP] = ACTIONS(2351), + [anon_sym_LT_DASH] = ACTIONS(2351), + [anon_sym_LT_LT] = ACTIONS(2351), + [anon_sym_GT_GT] = ACTIONS(2351), + [anon_sym_GT_GT_GT] = ACTIONS(2351), + [anon_sym_AMP_CARET] = ACTIONS(2351), + [anon_sym_AMP_AMP] = ACTIONS(2351), + [anon_sym_PIPE_PIPE] = ACTIONS(2351), + [anon_sym_or] = ACTIONS(2351), + [sym_none] = ACTIONS(2351), + [sym_true] = ACTIONS(2351), + [sym_false] = ACTIONS(2351), + [sym_nil] = ACTIONS(2351), + [anon_sym_QMARK_DOT] = ACTIONS(2351), + [anon_sym_POUND_LBRACK] = ACTIONS(2351), + [anon_sym_if] = ACTIONS(2351), + [anon_sym_DOLLARif] = ACTIONS(2351), + [anon_sym_is] = ACTIONS(2351), + [anon_sym_BANGis] = ACTIONS(2351), + [anon_sym_in] = ACTIONS(2351), + [anon_sym_BANGin] = ACTIONS(2351), + [anon_sym_match] = ACTIONS(2351), + [anon_sym_select] = ACTIONS(2351), + [anon_sym_lock] = ACTIONS(2351), + [anon_sym_rlock] = ACTIONS(2351), + [anon_sym_unsafe] = ACTIONS(2351), + [anon_sym_sql] = ACTIONS(2351), + [sym_int_literal] = ACTIONS(2351), + [sym_float_literal] = ACTIONS(2351), + [sym_rune_literal] = ACTIONS(2351), + [anon_sym_SQUOTE] = ACTIONS(2351), + [anon_sym_DQUOTE] = ACTIONS(2351), + [anon_sym_c_SQUOTE] = ACTIONS(2351), + [anon_sym_c_DQUOTE] = ACTIONS(2351), + [anon_sym_r_SQUOTE] = ACTIONS(2351), + [anon_sym_r_DQUOTE] = ACTIONS(2351), + [sym_pseudo_compile_time_identifier] = ACTIONS(2351), + [anon_sym_shared] = ACTIONS(2351), + [anon_sym_map_LBRACK] = ACTIONS(2351), + [anon_sym_chan] = ACTIONS(2351), + [anon_sym_thread] = ACTIONS(2351), + [anon_sym_atomic] = ACTIONS(2351), + [anon_sym_assert] = ACTIONS(2351), + [anon_sym_defer] = ACTIONS(2351), + [anon_sym_goto] = ACTIONS(2351), + [anon_sym_break] = ACTIONS(2351), + [anon_sym_continue] = ACTIONS(2351), + [anon_sym_return] = ACTIONS(2351), + [anon_sym_DOLLARfor] = ACTIONS(2351), + [anon_sym_for] = ACTIONS(2351), + [anon_sym_POUND] = ACTIONS(2351), + [anon_sym_asm] = ACTIONS(2351), + [anon_sym_AT_LBRACK] = ACTIONS(2351), }, [1066] = { [sym_line_comment] = STATE(1066), [sym_block_comment] = STATE(1066), - [ts_builtin_sym_end] = ACTIONS(2743), - [sym_identifier] = ACTIONS(2745), - [anon_sym_LF] = ACTIONS(2745), - [anon_sym_CR] = ACTIONS(2745), - [anon_sym_CR_LF] = ACTIONS(2745), + [ts_builtin_sym_end] = ACTIONS(2343), + [sym_identifier] = ACTIONS(2345), + [anon_sym_LF] = ACTIONS(2345), + [anon_sym_CR] = ACTIONS(2345), + [anon_sym_CR_LF] = ACTIONS(2345), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2745), - [anon_sym_as] = ACTIONS(2745), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_COMMA] = ACTIONS(2745), - [anon_sym_const] = ACTIONS(2745), - [anon_sym_LPAREN] = ACTIONS(2745), - [anon_sym___global] = ACTIONS(2745), - [anon_sym_type] = ACTIONS(2745), - [anon_sym_PIPE] = ACTIONS(2745), - [anon_sym_fn] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2745), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_SLASH] = ACTIONS(2745), - [anon_sym_PERCENT] = ACTIONS(2745), - [anon_sym_LT] = ACTIONS(2745), - [anon_sym_GT] = ACTIONS(2745), - [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(2743), - [anon_sym_struct] = ACTIONS(2745), - [anon_sym_union] = ACTIONS(2745), - [anon_sym_pub] = ACTIONS(2745), - [anon_sym_mut] = ACTIONS(2745), - [anon_sym_enum] = ACTIONS(2745), - [anon_sym_interface] = ACTIONS(2745), - [anon_sym_PLUS_PLUS] = ACTIONS(2745), - [anon_sym_DASH_DASH] = ACTIONS(2745), - [anon_sym_QMARK] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_go] = ACTIONS(2745), - [anon_sym_spawn] = ACTIONS(2745), - [anon_sym_json_DOTdecode] = ACTIONS(2745), - [anon_sym_LBRACK2] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_CARET] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2745), - [anon_sym_LT_DASH] = ACTIONS(2745), - [anon_sym_LT_LT] = ACTIONS(2745), - [anon_sym_GT_GT] = ACTIONS(2745), - [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(2745), - [sym_none] = ACTIONS(2745), - [sym_true] = ACTIONS(2745), - [sym_false] = ACTIONS(2745), - [sym_nil] = ACTIONS(2745), - [anon_sym_QMARK_DOT] = ACTIONS(2745), - [anon_sym_POUND_LBRACK] = ACTIONS(2745), - [anon_sym_if] = ACTIONS(2745), - [anon_sym_DOLLARif] = ACTIONS(2745), - [anon_sym_is] = ACTIONS(2745), - [anon_sym_BANGis] = ACTIONS(2745), - [anon_sym_in] = ACTIONS(2745), - [anon_sym_BANGin] = ACTIONS(2745), - [anon_sym_match] = ACTIONS(2745), - [anon_sym_select] = ACTIONS(2745), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), - [anon_sym_unsafe] = ACTIONS(2745), - [anon_sym_sql] = ACTIONS(2745), - [sym_int_literal] = ACTIONS(2745), - [sym_float_literal] = ACTIONS(2745), - [sym_rune_literal] = ACTIONS(2745), - [anon_sym_SQUOTE] = ACTIONS(2745), - [anon_sym_DQUOTE] = ACTIONS(2745), - [anon_sym_c_SQUOTE] = ACTIONS(2745), - [anon_sym_c_DQUOTE] = ACTIONS(2745), - [anon_sym_r_SQUOTE] = ACTIONS(2745), - [anon_sym_r_DQUOTE] = ACTIONS(2745), - [sym_pseudo_compile_time_identifier] = ACTIONS(2745), - [anon_sym_shared] = ACTIONS(2745), - [anon_sym_map_LBRACK] = ACTIONS(2745), - [anon_sym_chan] = ACTIONS(2745), - [anon_sym_thread] = ACTIONS(2745), - [anon_sym_atomic] = ACTIONS(2745), - [anon_sym_assert] = ACTIONS(2745), - [anon_sym_defer] = ACTIONS(2745), - [anon_sym_goto] = ACTIONS(2745), - [anon_sym_break] = ACTIONS(2745), - [anon_sym_continue] = ACTIONS(2745), - [anon_sym_return] = ACTIONS(2745), - [anon_sym_DOLLARfor] = ACTIONS(2745), - [anon_sym_for] = ACTIONS(2745), - [anon_sym_POUND] = ACTIONS(2745), - [anon_sym_asm] = ACTIONS(2745), - [anon_sym_AT_LBRACK] = ACTIONS(2745), + [anon_sym_DOT] = ACTIONS(2345), + [anon_sym_as] = ACTIONS(2345), + [anon_sym_LBRACE] = ACTIONS(2345), + [anon_sym_COMMA] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_LPAREN] = ACTIONS(2345), + [anon_sym___global] = ACTIONS(2345), + [anon_sym_type] = ACTIONS(2345), + [anon_sym_fn] = ACTIONS(2345), + [anon_sym_PLUS] = ACTIONS(2345), + [anon_sym_DASH] = ACTIONS(2345), + [anon_sym_STAR] = ACTIONS(2345), + [anon_sym_SLASH] = ACTIONS(2345), + [anon_sym_PERCENT] = ACTIONS(2345), + [anon_sym_LT] = ACTIONS(2345), + [anon_sym_GT] = ACTIONS(2345), + [anon_sym_EQ_EQ] = ACTIONS(2345), + [anon_sym_BANG_EQ] = ACTIONS(2345), + [anon_sym_LT_EQ] = ACTIONS(2345), + [anon_sym_GT_EQ] = ACTIONS(2345), + [anon_sym_LBRACK] = ACTIONS(2343), + [anon_sym_struct] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [anon_sym_pub] = ACTIONS(2345), + [anon_sym_mut] = ACTIONS(2345), + [anon_sym_enum] = ACTIONS(2345), + [anon_sym_interface] = ACTIONS(2345), + [anon_sym_PLUS_PLUS] = ACTIONS(2345), + [anon_sym_DASH_DASH] = ACTIONS(2345), + [anon_sym_QMARK] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(2345), + [anon_sym_go] = ACTIONS(2345), + [anon_sym_spawn] = ACTIONS(2345), + [anon_sym_json_DOTdecode] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(2345), + [anon_sym_LBRACK2] = ACTIONS(2345), + [anon_sym_TILDE] = ACTIONS(2345), + [anon_sym_CARET] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(2345), + [anon_sym_LT_DASH] = ACTIONS(2345), + [anon_sym_LT_LT] = ACTIONS(2345), + [anon_sym_GT_GT] = ACTIONS(2345), + [anon_sym_GT_GT_GT] = ACTIONS(2345), + [anon_sym_AMP_CARET] = ACTIONS(2345), + [anon_sym_AMP_AMP] = ACTIONS(2345), + [anon_sym_PIPE_PIPE] = ACTIONS(2345), + [anon_sym_or] = ACTIONS(2345), + [sym_none] = ACTIONS(2345), + [sym_true] = ACTIONS(2345), + [sym_false] = ACTIONS(2345), + [sym_nil] = ACTIONS(2345), + [anon_sym_QMARK_DOT] = ACTIONS(2345), + [anon_sym_POUND_LBRACK] = ACTIONS(2345), + [anon_sym_if] = ACTIONS(2345), + [anon_sym_DOLLARif] = ACTIONS(2345), + [anon_sym_is] = ACTIONS(2345), + [anon_sym_BANGis] = ACTIONS(2345), + [anon_sym_in] = ACTIONS(2345), + [anon_sym_BANGin] = ACTIONS(2345), + [anon_sym_match] = ACTIONS(2345), + [anon_sym_select] = ACTIONS(2345), + [anon_sym_lock] = ACTIONS(2345), + [anon_sym_rlock] = ACTIONS(2345), + [anon_sym_unsafe] = ACTIONS(2345), + [anon_sym_sql] = ACTIONS(2345), + [sym_int_literal] = ACTIONS(2345), + [sym_float_literal] = ACTIONS(2345), + [sym_rune_literal] = ACTIONS(2345), + [anon_sym_SQUOTE] = ACTIONS(2345), + [anon_sym_DQUOTE] = ACTIONS(2345), + [anon_sym_c_SQUOTE] = ACTIONS(2345), + [anon_sym_c_DQUOTE] = ACTIONS(2345), + [anon_sym_r_SQUOTE] = ACTIONS(2345), + [anon_sym_r_DQUOTE] = ACTIONS(2345), + [sym_pseudo_compile_time_identifier] = ACTIONS(2345), + [anon_sym_shared] = ACTIONS(2345), + [anon_sym_map_LBRACK] = ACTIONS(2345), + [anon_sym_chan] = ACTIONS(2345), + [anon_sym_thread] = ACTIONS(2345), + [anon_sym_atomic] = ACTIONS(2345), + [anon_sym_assert] = ACTIONS(2345), + [anon_sym_defer] = ACTIONS(2345), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_break] = ACTIONS(2345), + [anon_sym_continue] = ACTIONS(2345), + [anon_sym_return] = ACTIONS(2345), + [anon_sym_DOLLARfor] = ACTIONS(2345), + [anon_sym_for] = ACTIONS(2345), + [anon_sym_POUND] = ACTIONS(2345), + [anon_sym_asm] = ACTIONS(2345), + [anon_sym_AT_LBRACK] = ACTIONS(2345), }, [1067] = { [sym_line_comment] = STATE(1067), [sym_block_comment] = STATE(1067), - [ts_builtin_sym_end] = ACTIONS(2835), - [sym_identifier] = ACTIONS(2837), - [anon_sym_LF] = ACTIONS(2837), - [anon_sym_CR] = ACTIONS(2837), - [anon_sym_CR_LF] = ACTIONS(2837), + [ts_builtin_sym_end] = ACTIONS(3048), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LF] = ACTIONS(3050), + [anon_sym_CR] = ACTIONS(3050), + [anon_sym_CR_LF] = ACTIONS(3050), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2837), - [anon_sym_as] = ACTIONS(2837), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_COMMA] = ACTIONS(2837), - [anon_sym_const] = ACTIONS(2837), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym___global] = ACTIONS(2837), - [anon_sym_type] = ACTIONS(2837), - [anon_sym_PIPE] = ACTIONS(2837), - [anon_sym_fn] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2837), - [anon_sym_STAR] = ACTIONS(2837), - [anon_sym_SLASH] = ACTIONS(2837), - [anon_sym_PERCENT] = ACTIONS(2837), - [anon_sym_LT] = ACTIONS(2837), - [anon_sym_GT] = ACTIONS(2837), - [anon_sym_EQ_EQ] = ACTIONS(2837), - [anon_sym_BANG_EQ] = ACTIONS(2837), - [anon_sym_LT_EQ] = ACTIONS(2837), - [anon_sym_GT_EQ] = ACTIONS(2837), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_struct] = ACTIONS(2837), - [anon_sym_union] = ACTIONS(2837), - [anon_sym_pub] = ACTIONS(2837), - [anon_sym_mut] = ACTIONS(2837), - [anon_sym_enum] = ACTIONS(2837), - [anon_sym_interface] = ACTIONS(2837), - [anon_sym_PLUS_PLUS] = ACTIONS(2837), - [anon_sym_DASH_DASH] = ACTIONS(2837), - [anon_sym_QMARK] = ACTIONS(2837), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_go] = ACTIONS(2837), - [anon_sym_spawn] = ACTIONS(2837), - [anon_sym_json_DOTdecode] = ACTIONS(2837), - [anon_sym_LBRACK2] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_CARET] = ACTIONS(2837), - [anon_sym_AMP] = ACTIONS(2837), - [anon_sym_LT_DASH] = ACTIONS(2837), - [anon_sym_LT_LT] = ACTIONS(2837), - [anon_sym_GT_GT] = ACTIONS(2837), - [anon_sym_GT_GT_GT] = ACTIONS(2837), - [anon_sym_AMP_CARET] = ACTIONS(2837), - [anon_sym_AMP_AMP] = ACTIONS(2837), - [anon_sym_PIPE_PIPE] = ACTIONS(2837), - [anon_sym_or] = ACTIONS(2837), - [sym_none] = ACTIONS(2837), - [sym_true] = ACTIONS(2837), - [sym_false] = ACTIONS(2837), - [sym_nil] = ACTIONS(2837), - [anon_sym_QMARK_DOT] = ACTIONS(2837), - [anon_sym_POUND_LBRACK] = ACTIONS(2837), - [anon_sym_if] = ACTIONS(2837), - [anon_sym_DOLLARif] = ACTIONS(2837), - [anon_sym_is] = ACTIONS(2837), - [anon_sym_BANGis] = ACTIONS(2837), - [anon_sym_in] = ACTIONS(2837), - [anon_sym_BANGin] = ACTIONS(2837), - [anon_sym_match] = ACTIONS(2837), - [anon_sym_select] = ACTIONS(2837), - [anon_sym_lock] = ACTIONS(2837), - [anon_sym_rlock] = ACTIONS(2837), - [anon_sym_unsafe] = ACTIONS(2837), - [anon_sym_sql] = ACTIONS(2837), - [sym_int_literal] = ACTIONS(2837), - [sym_float_literal] = ACTIONS(2837), - [sym_rune_literal] = ACTIONS(2837), - [anon_sym_SQUOTE] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2837), - [anon_sym_c_SQUOTE] = ACTIONS(2837), - [anon_sym_c_DQUOTE] = ACTIONS(2837), - [anon_sym_r_SQUOTE] = ACTIONS(2837), - [anon_sym_r_DQUOTE] = ACTIONS(2837), - [sym_pseudo_compile_time_identifier] = ACTIONS(2837), - [anon_sym_shared] = ACTIONS(2837), - [anon_sym_map_LBRACK] = ACTIONS(2837), - [anon_sym_chan] = ACTIONS(2837), - [anon_sym_thread] = ACTIONS(2837), - [anon_sym_atomic] = ACTIONS(2837), - [anon_sym_assert] = ACTIONS(2837), - [anon_sym_defer] = ACTIONS(2837), - [anon_sym_goto] = ACTIONS(2837), - [anon_sym_break] = ACTIONS(2837), - [anon_sym_continue] = ACTIONS(2837), - [anon_sym_return] = ACTIONS(2837), - [anon_sym_DOLLARfor] = ACTIONS(2837), - [anon_sym_for] = ACTIONS(2837), - [anon_sym_POUND] = ACTIONS(2837), - [anon_sym_asm] = ACTIONS(2837), - [anon_sym_AT_LBRACK] = ACTIONS(2837), + [anon_sym_DOT] = ACTIONS(3050), + [anon_sym_as] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_const] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym___global] = ACTIONS(3050), + [anon_sym_type] = ACTIONS(3050), + [anon_sym_fn] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_SLASH] = ACTIONS(3050), + [anon_sym_PERCENT] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_LT_EQ] = ACTIONS(3050), + [anon_sym_GT_EQ] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3050), + [anon_sym_union] = ACTIONS(3050), + [anon_sym_pub] = ACTIONS(3050), + [anon_sym_mut] = ACTIONS(3050), + [anon_sym_enum] = ACTIONS(3050), + [anon_sym_interface] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_go] = ACTIONS(3050), + [anon_sym_spawn] = ACTIONS(3050), + [anon_sym_json_DOTdecode] = ACTIONS(3050), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_LBRACK2] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_CARET] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_LT_DASH] = ACTIONS(3050), + [anon_sym_LT_LT] = ACTIONS(3050), + [anon_sym_GT_GT] = ACTIONS(3050), + [anon_sym_GT_GT_GT] = ACTIONS(3050), + [anon_sym_AMP_CARET] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_PIPE_PIPE] = ACTIONS(3050), + [anon_sym_or] = ACTIONS(3050), + [sym_none] = ACTIONS(3050), + [sym_true] = ACTIONS(3050), + [sym_false] = ACTIONS(3050), + [sym_nil] = ACTIONS(3050), + [anon_sym_QMARK_DOT] = ACTIONS(3050), + [anon_sym_POUND_LBRACK] = ACTIONS(3050), + [anon_sym_if] = ACTIONS(3050), + [anon_sym_DOLLARif] = ACTIONS(3050), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3050), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_BANGin] = ACTIONS(3050), + [anon_sym_match] = ACTIONS(3050), + [anon_sym_select] = ACTIONS(3050), + [anon_sym_lock] = ACTIONS(3050), + [anon_sym_rlock] = ACTIONS(3050), + [anon_sym_unsafe] = ACTIONS(3050), + [anon_sym_sql] = ACTIONS(3050), + [sym_int_literal] = ACTIONS(3050), + [sym_float_literal] = ACTIONS(3050), + [sym_rune_literal] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [anon_sym_c_SQUOTE] = ACTIONS(3050), + [anon_sym_c_DQUOTE] = ACTIONS(3050), + [anon_sym_r_SQUOTE] = ACTIONS(3050), + [anon_sym_r_DQUOTE] = ACTIONS(3050), + [sym_pseudo_compile_time_identifier] = ACTIONS(3050), + [anon_sym_shared] = ACTIONS(3050), + [anon_sym_map_LBRACK] = ACTIONS(3050), + [anon_sym_chan] = ACTIONS(3050), + [anon_sym_thread] = ACTIONS(3050), + [anon_sym_atomic] = ACTIONS(3050), + [anon_sym_assert] = ACTIONS(3050), + [anon_sym_defer] = ACTIONS(3050), + [anon_sym_goto] = ACTIONS(3050), + [anon_sym_break] = ACTIONS(3050), + [anon_sym_continue] = ACTIONS(3050), + [anon_sym_return] = ACTIONS(3050), + [anon_sym_DOLLARfor] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3050), + [anon_sym_POUND] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3050), + [anon_sym_AT_LBRACK] = ACTIONS(3050), }, [1068] = { [sym_line_comment] = STATE(1068), [sym_block_comment] = STATE(1068), - [ts_builtin_sym_end] = ACTIONS(3064), - [sym_identifier] = ACTIONS(3066), - [anon_sym_LF] = ACTIONS(3066), - [anon_sym_CR] = ACTIONS(3066), - [anon_sym_CR_LF] = ACTIONS(3066), + [ts_builtin_sym_end] = ACTIONS(2971), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LF] = ACTIONS(2973), + [anon_sym_CR] = ACTIONS(2973), + [anon_sym_CR_LF] = ACTIONS(2973), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_as] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_COMMA] = ACTIONS(3066), - [anon_sym_const] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym___global] = ACTIONS(3066), - [anon_sym_type] = ACTIONS(3066), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_fn] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_SLASH] = ACTIONS(3066), - [anon_sym_PERCENT] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_GT] = ACTIONS(3066), - [anon_sym_EQ_EQ] = ACTIONS(3066), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_LT_EQ] = ACTIONS(3066), - [anon_sym_GT_EQ] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_struct] = ACTIONS(3066), - [anon_sym_union] = ACTIONS(3066), - [anon_sym_pub] = ACTIONS(3066), - [anon_sym_mut] = ACTIONS(3066), - [anon_sym_enum] = ACTIONS(3066), - [anon_sym_interface] = ACTIONS(3066), - [anon_sym_PLUS_PLUS] = ACTIONS(3066), - [anon_sym_DASH_DASH] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_BANG] = ACTIONS(3066), - [anon_sym_go] = ACTIONS(3066), - [anon_sym_spawn] = ACTIONS(3066), - [anon_sym_json_DOTdecode] = ACTIONS(3066), - [anon_sym_LBRACK2] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3066), - [anon_sym_CARET] = ACTIONS(3066), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_LT_DASH] = ACTIONS(3066), - [anon_sym_LT_LT] = ACTIONS(3066), - [anon_sym_GT_GT] = ACTIONS(3066), - [anon_sym_GT_GT_GT] = ACTIONS(3066), - [anon_sym_AMP_CARET] = ACTIONS(3066), - [anon_sym_AMP_AMP] = ACTIONS(3066), - [anon_sym_PIPE_PIPE] = ACTIONS(3066), - [anon_sym_or] = ACTIONS(3066), - [sym_none] = ACTIONS(3066), - [sym_true] = ACTIONS(3066), - [sym_false] = ACTIONS(3066), - [sym_nil] = ACTIONS(3066), - [anon_sym_QMARK_DOT] = ACTIONS(3066), - [anon_sym_POUND_LBRACK] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_DOLLARif] = ACTIONS(3066), - [anon_sym_is] = ACTIONS(3066), - [anon_sym_BANGis] = ACTIONS(3066), - [anon_sym_in] = ACTIONS(3066), - [anon_sym_BANGin] = ACTIONS(3066), - [anon_sym_match] = ACTIONS(3066), - [anon_sym_select] = ACTIONS(3066), - [anon_sym_lock] = ACTIONS(3066), - [anon_sym_rlock] = ACTIONS(3066), - [anon_sym_unsafe] = ACTIONS(3066), - [anon_sym_sql] = ACTIONS(3066), - [sym_int_literal] = ACTIONS(3066), - [sym_float_literal] = ACTIONS(3066), - [sym_rune_literal] = ACTIONS(3066), - [anon_sym_SQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3066), - [anon_sym_c_SQUOTE] = ACTIONS(3066), - [anon_sym_c_DQUOTE] = ACTIONS(3066), - [anon_sym_r_SQUOTE] = ACTIONS(3066), - [anon_sym_r_DQUOTE] = ACTIONS(3066), - [sym_pseudo_compile_time_identifier] = ACTIONS(3066), - [anon_sym_shared] = ACTIONS(3066), - [anon_sym_map_LBRACK] = ACTIONS(3066), - [anon_sym_chan] = ACTIONS(3066), - [anon_sym_thread] = ACTIONS(3066), - [anon_sym_atomic] = ACTIONS(3066), - [anon_sym_assert] = ACTIONS(3066), - [anon_sym_defer] = ACTIONS(3066), - [anon_sym_goto] = ACTIONS(3066), - [anon_sym_break] = ACTIONS(3066), - [anon_sym_continue] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_DOLLARfor] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_POUND] = ACTIONS(3066), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym_AT_LBRACK] = ACTIONS(3066), + [anon_sym_DOT] = ACTIONS(2973), + [anon_sym_as] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(2973), + [anon_sym_const] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2973), + [anon_sym___global] = ACTIONS(2973), + [anon_sym_type] = ACTIONS(2973), + [anon_sym_fn] = ACTIONS(2973), + [anon_sym_PLUS] = ACTIONS(2973), + [anon_sym_DASH] = ACTIONS(2973), + [anon_sym_STAR] = ACTIONS(2973), + [anon_sym_SLASH] = ACTIONS(2973), + [anon_sym_PERCENT] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_GT] = ACTIONS(2973), + [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(2971), + [anon_sym_struct] = ACTIONS(2973), + [anon_sym_union] = ACTIONS(2973), + [anon_sym_pub] = ACTIONS(2973), + [anon_sym_mut] = ACTIONS(2973), + [anon_sym_enum] = ACTIONS(2973), + [anon_sym_interface] = ACTIONS(2973), + [anon_sym_PLUS_PLUS] = ACTIONS(2973), + [anon_sym_DASH_DASH] = ACTIONS(2973), + [anon_sym_QMARK] = ACTIONS(2973), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_go] = ACTIONS(2973), + [anon_sym_spawn] = ACTIONS(2973), + [anon_sym_json_DOTdecode] = ACTIONS(2973), + [anon_sym_PIPE] = ACTIONS(2973), + [anon_sym_LBRACK2] = ACTIONS(2973), + [anon_sym_TILDE] = ACTIONS(2973), + [anon_sym_CARET] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2973), + [anon_sym_LT_DASH] = ACTIONS(2973), + [anon_sym_LT_LT] = ACTIONS(2973), + [anon_sym_GT_GT] = ACTIONS(2973), + [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(2973), + [sym_none] = ACTIONS(2973), + [sym_true] = ACTIONS(2973), + [sym_false] = ACTIONS(2973), + [sym_nil] = ACTIONS(2973), + [anon_sym_QMARK_DOT] = ACTIONS(2973), + [anon_sym_POUND_LBRACK] = ACTIONS(2973), + [anon_sym_if] = ACTIONS(2973), + [anon_sym_DOLLARif] = ACTIONS(2973), + [anon_sym_is] = ACTIONS(2973), + [anon_sym_BANGis] = ACTIONS(2973), + [anon_sym_in] = ACTIONS(2973), + [anon_sym_BANGin] = ACTIONS(2973), + [anon_sym_match] = ACTIONS(2973), + [anon_sym_select] = ACTIONS(2973), + [anon_sym_lock] = ACTIONS(2973), + [anon_sym_rlock] = ACTIONS(2973), + [anon_sym_unsafe] = ACTIONS(2973), + [anon_sym_sql] = ACTIONS(2973), + [sym_int_literal] = ACTIONS(2973), + [sym_float_literal] = ACTIONS(2973), + [sym_rune_literal] = ACTIONS(2973), + [anon_sym_SQUOTE] = ACTIONS(2973), + [anon_sym_DQUOTE] = ACTIONS(2973), + [anon_sym_c_SQUOTE] = ACTIONS(2973), + [anon_sym_c_DQUOTE] = ACTIONS(2973), + [anon_sym_r_SQUOTE] = ACTIONS(2973), + [anon_sym_r_DQUOTE] = ACTIONS(2973), + [sym_pseudo_compile_time_identifier] = ACTIONS(2973), + [anon_sym_shared] = ACTIONS(2973), + [anon_sym_map_LBRACK] = ACTIONS(2973), + [anon_sym_chan] = ACTIONS(2973), + [anon_sym_thread] = ACTIONS(2973), + [anon_sym_atomic] = ACTIONS(2973), + [anon_sym_assert] = ACTIONS(2973), + [anon_sym_defer] = ACTIONS(2973), + [anon_sym_goto] = ACTIONS(2973), + [anon_sym_break] = ACTIONS(2973), + [anon_sym_continue] = ACTIONS(2973), + [anon_sym_return] = ACTIONS(2973), + [anon_sym_DOLLARfor] = ACTIONS(2973), + [anon_sym_for] = ACTIONS(2973), + [anon_sym_POUND] = ACTIONS(2973), + [anon_sym_asm] = ACTIONS(2973), + [anon_sym_AT_LBRACK] = ACTIONS(2973), }, [1069] = { [sym_line_comment] = STATE(1069), [sym_block_comment] = STATE(1069), - [ts_builtin_sym_end] = ACTIONS(2247), - [sym_identifier] = ACTIONS(2249), - [anon_sym_LF] = ACTIONS(2249), - [anon_sym_CR] = ACTIONS(2249), - [anon_sym_CR_LF] = ACTIONS(2249), + [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), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2249), - [anon_sym_as] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_COMMA] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2249), - [anon_sym___global] = ACTIONS(2249), - [anon_sym_type] = ACTIONS(2249), - [anon_sym_PIPE] = ACTIONS(2249), - [anon_sym_fn] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2249), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_GT] = ACTIONS(2249), - [anon_sym_EQ_EQ] = ACTIONS(2249), - [anon_sym_BANG_EQ] = ACTIONS(2249), - [anon_sym_LT_EQ] = ACTIONS(2249), - [anon_sym_GT_EQ] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2247), - [anon_sym_struct] = ACTIONS(2249), - [anon_sym_union] = ACTIONS(2249), - [anon_sym_pub] = ACTIONS(2249), - [anon_sym_mut] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), - [anon_sym_interface] = ACTIONS(2249), - [anon_sym_PLUS_PLUS] = ACTIONS(2249), - [anon_sym_DASH_DASH] = ACTIONS(2249), - [anon_sym_QMARK] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(2249), - [anon_sym_go] = ACTIONS(2249), - [anon_sym_spawn] = ACTIONS(2249), - [anon_sym_json_DOTdecode] = ACTIONS(2249), - [anon_sym_LBRACK2] = ACTIONS(2249), - [anon_sym_TILDE] = ACTIONS(2249), - [anon_sym_CARET] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_DASH] = ACTIONS(2249), - [anon_sym_LT_LT] = ACTIONS(2249), - [anon_sym_GT_GT] = ACTIONS(2249), - [anon_sym_GT_GT_GT] = ACTIONS(2249), - [anon_sym_AMP_CARET] = ACTIONS(2249), - [anon_sym_AMP_AMP] = ACTIONS(2249), - [anon_sym_PIPE_PIPE] = ACTIONS(2249), - [anon_sym_or] = ACTIONS(2249), - [sym_none] = ACTIONS(2249), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [sym_nil] = ACTIONS(2249), - [anon_sym_QMARK_DOT] = ACTIONS(2249), - [anon_sym_POUND_LBRACK] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_DOLLARif] = ACTIONS(2249), - [anon_sym_is] = ACTIONS(2249), - [anon_sym_BANGis] = ACTIONS(2249), - [anon_sym_in] = ACTIONS(2249), - [anon_sym_BANGin] = ACTIONS(2249), - [anon_sym_match] = ACTIONS(2249), - [anon_sym_select] = ACTIONS(2249), - [anon_sym_lock] = ACTIONS(2249), - [anon_sym_rlock] = ACTIONS(2249), - [anon_sym_unsafe] = ACTIONS(2249), - [anon_sym_sql] = ACTIONS(2249), - [sym_int_literal] = ACTIONS(2249), - [sym_float_literal] = ACTIONS(2249), - [sym_rune_literal] = ACTIONS(2249), - [anon_sym_SQUOTE] = ACTIONS(2249), - [anon_sym_DQUOTE] = ACTIONS(2249), - [anon_sym_c_SQUOTE] = ACTIONS(2249), - [anon_sym_c_DQUOTE] = ACTIONS(2249), - [anon_sym_r_SQUOTE] = ACTIONS(2249), - [anon_sym_r_DQUOTE] = ACTIONS(2249), - [sym_pseudo_compile_time_identifier] = ACTIONS(2249), - [anon_sym_shared] = ACTIONS(2249), - [anon_sym_map_LBRACK] = ACTIONS(2249), - [anon_sym_chan] = ACTIONS(2249), - [anon_sym_thread] = ACTIONS(2249), - [anon_sym_atomic] = ACTIONS(2249), - [anon_sym_assert] = ACTIONS(2249), - [anon_sym_defer] = ACTIONS(2249), - [anon_sym_goto] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_DOLLARfor] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_POUND] = ACTIONS(2249), - [anon_sym_asm] = ACTIONS(2249), - [anon_sym_AT_LBRACK] = ACTIONS(2249), + [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_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_PIPE] = 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_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), + [anon_sym_SQUOTE] = ACTIONS(2643), + [anon_sym_DQUOTE] = ACTIONS(2643), + [anon_sym_c_SQUOTE] = ACTIONS(2643), + [anon_sym_c_DQUOTE] = ACTIONS(2643), + [anon_sym_r_SQUOTE] = ACTIONS(2643), + [anon_sym_r_DQUOTE] = 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), }, [1070] = { [sym_line_comment] = STATE(1070), [sym_block_comment] = STATE(1070), - [ts_builtin_sym_end] = ACTIONS(2251), - [sym_identifier] = ACTIONS(2253), - [anon_sym_LF] = ACTIONS(2253), - [anon_sym_CR] = ACTIONS(2253), - [anon_sym_CR_LF] = ACTIONS(2253), + [ts_builtin_sym_end] = ACTIONS(2377), + [sym_identifier] = ACTIONS(2379), + [anon_sym_LF] = ACTIONS(2379), + [anon_sym_CR] = ACTIONS(2379), + [anon_sym_CR_LF] = ACTIONS(2379), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2253), - [anon_sym_as] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(2253), - [anon_sym_COMMA] = ACTIONS(2253), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(2253), - [anon_sym___global] = ACTIONS(2253), - [anon_sym_type] = ACTIONS(2253), - [anon_sym_PIPE] = ACTIONS(2253), - [anon_sym_fn] = ACTIONS(2253), - [anon_sym_PLUS] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_SLASH] = ACTIONS(2253), - [anon_sym_PERCENT] = ACTIONS(2253), - [anon_sym_LT] = ACTIONS(2253), - [anon_sym_GT] = ACTIONS(2253), - [anon_sym_EQ_EQ] = ACTIONS(2253), - [anon_sym_BANG_EQ] = ACTIONS(2253), - [anon_sym_LT_EQ] = ACTIONS(2253), - [anon_sym_GT_EQ] = ACTIONS(2253), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_struct] = ACTIONS(2253), - [anon_sym_union] = ACTIONS(2253), - [anon_sym_pub] = ACTIONS(2253), - [anon_sym_mut] = ACTIONS(2253), - [anon_sym_enum] = ACTIONS(2253), - [anon_sym_interface] = ACTIONS(2253), - [anon_sym_PLUS_PLUS] = ACTIONS(2253), - [anon_sym_DASH_DASH] = ACTIONS(2253), - [anon_sym_QMARK] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(2253), - [anon_sym_go] = ACTIONS(2253), - [anon_sym_spawn] = ACTIONS(2253), - [anon_sym_json_DOTdecode] = ACTIONS(2253), - [anon_sym_LBRACK2] = ACTIONS(2253), - [anon_sym_TILDE] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2253), - [anon_sym_AMP] = ACTIONS(2253), - [anon_sym_LT_DASH] = ACTIONS(2253), - [anon_sym_LT_LT] = ACTIONS(2253), - [anon_sym_GT_GT] = ACTIONS(2253), - [anon_sym_GT_GT_GT] = ACTIONS(2253), - [anon_sym_AMP_CARET] = ACTIONS(2253), - [anon_sym_AMP_AMP] = ACTIONS(2253), - [anon_sym_PIPE_PIPE] = ACTIONS(2253), - [anon_sym_or] = ACTIONS(2253), - [sym_none] = ACTIONS(2253), - [sym_true] = ACTIONS(2253), - [sym_false] = ACTIONS(2253), - [sym_nil] = ACTIONS(2253), - [anon_sym_QMARK_DOT] = ACTIONS(2253), - [anon_sym_POUND_LBRACK] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2253), - [anon_sym_DOLLARif] = ACTIONS(2253), - [anon_sym_is] = ACTIONS(2253), - [anon_sym_BANGis] = ACTIONS(2253), - [anon_sym_in] = ACTIONS(2253), - [anon_sym_BANGin] = ACTIONS(2253), - [anon_sym_match] = ACTIONS(2253), - [anon_sym_select] = ACTIONS(2253), - [anon_sym_lock] = ACTIONS(2253), - [anon_sym_rlock] = ACTIONS(2253), - [anon_sym_unsafe] = ACTIONS(2253), - [anon_sym_sql] = ACTIONS(2253), - [sym_int_literal] = ACTIONS(2253), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [anon_sym_SQUOTE] = ACTIONS(2253), - [anon_sym_DQUOTE] = ACTIONS(2253), - [anon_sym_c_SQUOTE] = ACTIONS(2253), - [anon_sym_c_DQUOTE] = ACTIONS(2253), - [anon_sym_r_SQUOTE] = ACTIONS(2253), - [anon_sym_r_DQUOTE] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(2253), - [anon_sym_shared] = ACTIONS(2253), - [anon_sym_map_LBRACK] = ACTIONS(2253), - [anon_sym_chan] = ACTIONS(2253), - [anon_sym_thread] = ACTIONS(2253), - [anon_sym_atomic] = ACTIONS(2253), - [anon_sym_assert] = ACTIONS(2253), - [anon_sym_defer] = ACTIONS(2253), - [anon_sym_goto] = ACTIONS(2253), - [anon_sym_break] = ACTIONS(2253), - [anon_sym_continue] = ACTIONS(2253), - [anon_sym_return] = ACTIONS(2253), - [anon_sym_DOLLARfor] = ACTIONS(2253), - [anon_sym_for] = ACTIONS(2253), - [anon_sym_POUND] = ACTIONS(2253), - [anon_sym_asm] = ACTIONS(2253), - [anon_sym_AT_LBRACK] = ACTIONS(2253), + [anon_sym_DOT] = ACTIONS(2379), + [anon_sym_as] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_COMMA] = ACTIONS(2379), + [anon_sym_const] = ACTIONS(2379), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym___global] = ACTIONS(2379), + [anon_sym_type] = ACTIONS(2379), + [anon_sym_fn] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_STAR] = ACTIONS(2379), + [anon_sym_SLASH] = ACTIONS(2379), + [anon_sym_PERCENT] = ACTIONS(2379), + [anon_sym_LT] = ACTIONS(2379), + [anon_sym_GT] = ACTIONS(2379), + [anon_sym_EQ_EQ] = ACTIONS(2379), + [anon_sym_BANG_EQ] = ACTIONS(2379), + [anon_sym_LT_EQ] = ACTIONS(2379), + [anon_sym_GT_EQ] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(2377), + [anon_sym_struct] = ACTIONS(2379), + [anon_sym_union] = ACTIONS(2379), + [anon_sym_pub] = ACTIONS(2379), + [anon_sym_mut] = ACTIONS(2379), + [anon_sym_enum] = ACTIONS(2379), + [anon_sym_interface] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_QMARK] = ACTIONS(2379), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_go] = ACTIONS(2379), + [anon_sym_spawn] = ACTIONS(2379), + [anon_sym_json_DOTdecode] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(2379), + [anon_sym_LBRACK2] = ACTIONS(2379), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_LT_DASH] = ACTIONS(2379), + [anon_sym_LT_LT] = ACTIONS(2379), + [anon_sym_GT_GT] = ACTIONS(2379), + [anon_sym_GT_GT_GT] = ACTIONS(2379), + [anon_sym_AMP_CARET] = ACTIONS(2379), + [anon_sym_AMP_AMP] = ACTIONS(2379), + [anon_sym_PIPE_PIPE] = ACTIONS(2379), + [anon_sym_or] = ACTIONS(2379), + [sym_none] = ACTIONS(2379), + [sym_true] = ACTIONS(2379), + [sym_false] = ACTIONS(2379), + [sym_nil] = ACTIONS(2379), + [anon_sym_QMARK_DOT] = ACTIONS(2379), + [anon_sym_POUND_LBRACK] = ACTIONS(2379), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_DOLLARif] = ACTIONS(2379), + [anon_sym_is] = ACTIONS(2379), + [anon_sym_BANGis] = ACTIONS(2379), + [anon_sym_in] = ACTIONS(2379), + [anon_sym_BANGin] = ACTIONS(2379), + [anon_sym_match] = ACTIONS(2379), + [anon_sym_select] = ACTIONS(2379), + [anon_sym_lock] = ACTIONS(2379), + [anon_sym_rlock] = ACTIONS(2379), + [anon_sym_unsafe] = ACTIONS(2379), + [anon_sym_sql] = ACTIONS(2379), + [sym_int_literal] = ACTIONS(2379), + [sym_float_literal] = ACTIONS(2379), + [sym_rune_literal] = ACTIONS(2379), + [anon_sym_SQUOTE] = ACTIONS(2379), + [anon_sym_DQUOTE] = ACTIONS(2379), + [anon_sym_c_SQUOTE] = ACTIONS(2379), + [anon_sym_c_DQUOTE] = ACTIONS(2379), + [anon_sym_r_SQUOTE] = ACTIONS(2379), + [anon_sym_r_DQUOTE] = ACTIONS(2379), + [sym_pseudo_compile_time_identifier] = ACTIONS(2379), + [anon_sym_shared] = ACTIONS(2379), + [anon_sym_map_LBRACK] = ACTIONS(2379), + [anon_sym_chan] = ACTIONS(2379), + [anon_sym_thread] = ACTIONS(2379), + [anon_sym_atomic] = ACTIONS(2379), + [anon_sym_assert] = ACTIONS(2379), + [anon_sym_defer] = ACTIONS(2379), + [anon_sym_goto] = ACTIONS(2379), + [anon_sym_break] = ACTIONS(2379), + [anon_sym_continue] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2379), + [anon_sym_DOLLARfor] = ACTIONS(2379), + [anon_sym_for] = ACTIONS(2379), + [anon_sym_POUND] = ACTIONS(2379), + [anon_sym_asm] = ACTIONS(2379), + [anon_sym_AT_LBRACK] = ACTIONS(2379), }, [1071] = { [sym_line_comment] = STATE(1071), [sym_block_comment] = STATE(1071), - [ts_builtin_sym_end] = ACTIONS(2259), - [sym_identifier] = ACTIONS(2261), - [anon_sym_LF] = ACTIONS(2261), - [anon_sym_CR] = ACTIONS(2261), - [anon_sym_CR_LF] = ACTIONS(2261), + [ts_builtin_sym_end] = ACTIONS(1943), + [sym_identifier] = ACTIONS(1945), + [anon_sym_LF] = ACTIONS(1945), + [anon_sym_CR] = ACTIONS(1945), + [anon_sym_CR_LF] = ACTIONS(1945), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2261), - [anon_sym_as] = ACTIONS(2261), - [anon_sym_LBRACE] = ACTIONS(2261), - [anon_sym_COMMA] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(2261), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym___global] = ACTIONS(2261), - [anon_sym_type] = ACTIONS(2261), - [anon_sym_PIPE] = ACTIONS(2261), - [anon_sym_fn] = ACTIONS(2261), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2261), - [anon_sym_SLASH] = ACTIONS(2261), - [anon_sym_PERCENT] = ACTIONS(2261), - [anon_sym_LT] = ACTIONS(2261), - [anon_sym_GT] = ACTIONS(2261), - [anon_sym_EQ_EQ] = ACTIONS(2261), - [anon_sym_BANG_EQ] = ACTIONS(2261), - [anon_sym_LT_EQ] = ACTIONS(2261), - [anon_sym_GT_EQ] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(2259), - [anon_sym_struct] = ACTIONS(2261), - [anon_sym_union] = ACTIONS(2261), - [anon_sym_pub] = ACTIONS(2261), - [anon_sym_mut] = ACTIONS(2261), - [anon_sym_enum] = ACTIONS(2261), - [anon_sym_interface] = ACTIONS(2261), - [anon_sym_PLUS_PLUS] = ACTIONS(2261), - [anon_sym_DASH_DASH] = ACTIONS(2261), - [anon_sym_QMARK] = ACTIONS(2261), - [anon_sym_BANG] = ACTIONS(2261), - [anon_sym_go] = ACTIONS(2261), - [anon_sym_spawn] = ACTIONS(2261), - [anon_sym_json_DOTdecode] = ACTIONS(2261), - [anon_sym_LBRACK2] = ACTIONS(2261), - [anon_sym_TILDE] = ACTIONS(2261), - [anon_sym_CARET] = ACTIONS(2261), - [anon_sym_AMP] = ACTIONS(2261), - [anon_sym_LT_DASH] = ACTIONS(2261), - [anon_sym_LT_LT] = ACTIONS(2261), - [anon_sym_GT_GT] = ACTIONS(2261), - [anon_sym_GT_GT_GT] = ACTIONS(2261), - [anon_sym_AMP_CARET] = ACTIONS(2261), - [anon_sym_AMP_AMP] = ACTIONS(2261), - [anon_sym_PIPE_PIPE] = ACTIONS(2261), - [anon_sym_or] = ACTIONS(2261), - [sym_none] = ACTIONS(2261), - [sym_true] = ACTIONS(2261), - [sym_false] = ACTIONS(2261), - [sym_nil] = ACTIONS(2261), - [anon_sym_QMARK_DOT] = ACTIONS(2261), - [anon_sym_POUND_LBRACK] = ACTIONS(2261), - [anon_sym_if] = ACTIONS(2261), - [anon_sym_DOLLARif] = ACTIONS(2261), - [anon_sym_is] = ACTIONS(2261), - [anon_sym_BANGis] = ACTIONS(2261), - [anon_sym_in] = ACTIONS(2261), - [anon_sym_BANGin] = ACTIONS(2261), - [anon_sym_match] = ACTIONS(2261), - [anon_sym_select] = ACTIONS(2261), - [anon_sym_lock] = ACTIONS(2261), - [anon_sym_rlock] = ACTIONS(2261), - [anon_sym_unsafe] = ACTIONS(2261), - [anon_sym_sql] = ACTIONS(2261), - [sym_int_literal] = ACTIONS(2261), - [sym_float_literal] = ACTIONS(2261), - [sym_rune_literal] = ACTIONS(2261), - [anon_sym_SQUOTE] = ACTIONS(2261), - [anon_sym_DQUOTE] = ACTIONS(2261), - [anon_sym_c_SQUOTE] = ACTIONS(2261), - [anon_sym_c_DQUOTE] = ACTIONS(2261), - [anon_sym_r_SQUOTE] = ACTIONS(2261), - [anon_sym_r_DQUOTE] = ACTIONS(2261), - [sym_pseudo_compile_time_identifier] = ACTIONS(2261), - [anon_sym_shared] = ACTIONS(2261), - [anon_sym_map_LBRACK] = ACTIONS(2261), - [anon_sym_chan] = ACTIONS(2261), - [anon_sym_thread] = ACTIONS(2261), - [anon_sym_atomic] = ACTIONS(2261), - [anon_sym_assert] = ACTIONS(2261), - [anon_sym_defer] = ACTIONS(2261), - [anon_sym_goto] = ACTIONS(2261), - [anon_sym_break] = ACTIONS(2261), - [anon_sym_continue] = ACTIONS(2261), - [anon_sym_return] = ACTIONS(2261), - [anon_sym_DOLLARfor] = ACTIONS(2261), - [anon_sym_for] = ACTIONS(2261), - [anon_sym_POUND] = ACTIONS(2261), - [anon_sym_asm] = ACTIONS(2261), - [anon_sym_AT_LBRACK] = ACTIONS(2261), + [anon_sym_DOT] = ACTIONS(1945), + [anon_sym_as] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1945), + [anon_sym_COMMA] = ACTIONS(1945), + [anon_sym_const] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym___global] = ACTIONS(1945), + [anon_sym_type] = ACTIONS(1945), + [anon_sym_fn] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1945), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_SLASH] = ACTIONS(1945), + [anon_sym_PERCENT] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1945), + [anon_sym_GT] = ACTIONS(1945), + [anon_sym_EQ_EQ] = ACTIONS(1945), + [anon_sym_BANG_EQ] = ACTIONS(1945), + [anon_sym_LT_EQ] = ACTIONS(1945), + [anon_sym_GT_EQ] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1943), + [anon_sym_struct] = ACTIONS(1945), + [anon_sym_union] = ACTIONS(1945), + [anon_sym_pub] = ACTIONS(1945), + [anon_sym_mut] = ACTIONS(1945), + [anon_sym_enum] = ACTIONS(1945), + [anon_sym_interface] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), + [anon_sym_QMARK] = ACTIONS(1945), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_go] = ACTIONS(1945), + [anon_sym_spawn] = ACTIONS(1945), + [anon_sym_json_DOTdecode] = ACTIONS(1945), + [anon_sym_PIPE] = ACTIONS(1945), + [anon_sym_LBRACK2] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), + [anon_sym_LT_DASH] = ACTIONS(1945), + [anon_sym_LT_LT] = ACTIONS(1945), + [anon_sym_GT_GT] = ACTIONS(1945), + [anon_sym_GT_GT_GT] = ACTIONS(1945), + [anon_sym_AMP_CARET] = ACTIONS(1945), + [anon_sym_AMP_AMP] = ACTIONS(1945), + [anon_sym_PIPE_PIPE] = ACTIONS(1945), + [anon_sym_or] = ACTIONS(1945), + [sym_none] = ACTIONS(1945), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_nil] = ACTIONS(1945), + [anon_sym_QMARK_DOT] = ACTIONS(1945), + [anon_sym_POUND_LBRACK] = ACTIONS(1945), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_DOLLARif] = ACTIONS(1945), + [anon_sym_is] = ACTIONS(1945), + [anon_sym_BANGis] = ACTIONS(1945), + [anon_sym_in] = ACTIONS(1945), + [anon_sym_BANGin] = ACTIONS(1945), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_select] = ACTIONS(1945), + [anon_sym_lock] = ACTIONS(1945), + [anon_sym_rlock] = ACTIONS(1945), + [anon_sym_unsafe] = ACTIONS(1945), + [anon_sym_sql] = ACTIONS(1945), + [sym_int_literal] = ACTIONS(1945), + [sym_float_literal] = ACTIONS(1945), + [sym_rune_literal] = ACTIONS(1945), + [anon_sym_SQUOTE] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(1945), + [anon_sym_c_SQUOTE] = ACTIONS(1945), + [anon_sym_c_DQUOTE] = ACTIONS(1945), + [anon_sym_r_SQUOTE] = ACTIONS(1945), + [anon_sym_r_DQUOTE] = ACTIONS(1945), + [sym_pseudo_compile_time_identifier] = ACTIONS(1945), + [anon_sym_shared] = ACTIONS(1945), + [anon_sym_map_LBRACK] = ACTIONS(1945), + [anon_sym_chan] = ACTIONS(1945), + [anon_sym_thread] = ACTIONS(1945), + [anon_sym_atomic] = ACTIONS(1945), + [anon_sym_assert] = ACTIONS(1945), + [anon_sym_defer] = ACTIONS(1945), + [anon_sym_goto] = ACTIONS(1945), + [anon_sym_break] = ACTIONS(1945), + [anon_sym_continue] = ACTIONS(1945), + [anon_sym_return] = ACTIONS(1945), + [anon_sym_DOLLARfor] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1945), + [anon_sym_POUND] = ACTIONS(1945), + [anon_sym_asm] = ACTIONS(1945), + [anon_sym_AT_LBRACK] = ACTIONS(1945), }, [1072] = { [sym_line_comment] = STATE(1072), [sym_block_comment] = STATE(1072), - [ts_builtin_sym_end] = ACTIONS(2267), - [sym_identifier] = ACTIONS(2269), - [anon_sym_LF] = ACTIONS(2269), - [anon_sym_CR] = ACTIONS(2269), - [anon_sym_CR_LF] = ACTIONS(2269), + [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), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2269), - [anon_sym_as] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(2269), - [anon_sym_COMMA] = ACTIONS(2269), - [anon_sym_const] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(2269), - [anon_sym___global] = ACTIONS(2269), - [anon_sym_type] = ACTIONS(2269), - [anon_sym_PIPE] = ACTIONS(2269), - [anon_sym_fn] = ACTIONS(2269), - [anon_sym_PLUS] = ACTIONS(2269), - [anon_sym_DASH] = ACTIONS(2269), - [anon_sym_STAR] = ACTIONS(2269), - [anon_sym_SLASH] = ACTIONS(2269), - [anon_sym_PERCENT] = ACTIONS(2269), - [anon_sym_LT] = ACTIONS(2269), - [anon_sym_GT] = ACTIONS(2269), - [anon_sym_EQ_EQ] = ACTIONS(2269), - [anon_sym_BANG_EQ] = ACTIONS(2269), - [anon_sym_LT_EQ] = ACTIONS(2269), - [anon_sym_GT_EQ] = ACTIONS(2269), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_struct] = ACTIONS(2269), - [anon_sym_union] = ACTIONS(2269), - [anon_sym_pub] = ACTIONS(2269), - [anon_sym_mut] = ACTIONS(2269), - [anon_sym_enum] = ACTIONS(2269), - [anon_sym_interface] = ACTIONS(2269), - [anon_sym_PLUS_PLUS] = ACTIONS(2269), - [anon_sym_DASH_DASH] = ACTIONS(2269), - [anon_sym_QMARK] = ACTIONS(2269), - [anon_sym_BANG] = ACTIONS(2269), - [anon_sym_go] = ACTIONS(2269), - [anon_sym_spawn] = ACTIONS(2269), - [anon_sym_json_DOTdecode] = ACTIONS(2269), - [anon_sym_LBRACK2] = ACTIONS(2269), - [anon_sym_TILDE] = ACTIONS(2269), - [anon_sym_CARET] = ACTIONS(2269), - [anon_sym_AMP] = ACTIONS(2269), - [anon_sym_LT_DASH] = ACTIONS(2269), - [anon_sym_LT_LT] = ACTIONS(2269), - [anon_sym_GT_GT] = ACTIONS(2269), - [anon_sym_GT_GT_GT] = ACTIONS(2269), - [anon_sym_AMP_CARET] = ACTIONS(2269), - [anon_sym_AMP_AMP] = ACTIONS(2269), - [anon_sym_PIPE_PIPE] = ACTIONS(2269), - [anon_sym_or] = ACTIONS(2269), - [sym_none] = ACTIONS(2269), - [sym_true] = ACTIONS(2269), - [sym_false] = ACTIONS(2269), - [sym_nil] = ACTIONS(2269), - [anon_sym_QMARK_DOT] = ACTIONS(2269), - [anon_sym_POUND_LBRACK] = ACTIONS(2269), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_DOLLARif] = ACTIONS(2269), - [anon_sym_is] = ACTIONS(2269), - [anon_sym_BANGis] = ACTIONS(2269), - [anon_sym_in] = ACTIONS(2269), - [anon_sym_BANGin] = ACTIONS(2269), - [anon_sym_match] = ACTIONS(2269), - [anon_sym_select] = ACTIONS(2269), - [anon_sym_lock] = ACTIONS(2269), - [anon_sym_rlock] = ACTIONS(2269), - [anon_sym_unsafe] = ACTIONS(2269), - [anon_sym_sql] = ACTIONS(2269), - [sym_int_literal] = ACTIONS(2269), - [sym_float_literal] = ACTIONS(2269), - [sym_rune_literal] = ACTIONS(2269), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_DQUOTE] = ACTIONS(2269), - [anon_sym_c_SQUOTE] = ACTIONS(2269), - [anon_sym_c_DQUOTE] = ACTIONS(2269), - [anon_sym_r_SQUOTE] = ACTIONS(2269), - [anon_sym_r_DQUOTE] = ACTIONS(2269), - [sym_pseudo_compile_time_identifier] = ACTIONS(2269), - [anon_sym_shared] = ACTIONS(2269), - [anon_sym_map_LBRACK] = ACTIONS(2269), - [anon_sym_chan] = ACTIONS(2269), - [anon_sym_thread] = ACTIONS(2269), - [anon_sym_atomic] = ACTIONS(2269), - [anon_sym_assert] = ACTIONS(2269), - [anon_sym_defer] = ACTIONS(2269), - [anon_sym_goto] = ACTIONS(2269), - [anon_sym_break] = ACTIONS(2269), - [anon_sym_continue] = ACTIONS(2269), - [anon_sym_return] = ACTIONS(2269), - [anon_sym_DOLLARfor] = ACTIONS(2269), - [anon_sym_for] = ACTIONS(2269), - [anon_sym_POUND] = ACTIONS(2269), - [anon_sym_asm] = ACTIONS(2269), - [anon_sym_AT_LBRACK] = ACTIONS(2269), + [anon_sym_DOT] = ACTIONS(2643), + [anon_sym_as] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_COMMA] = ACTIONS(1845), + [anon_sym_const] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2643), + [anon_sym___global] = ACTIONS(2643), + [anon_sym_type] = 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_PIPE] = 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_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), + [anon_sym_SQUOTE] = ACTIONS(2643), + [anon_sym_DQUOTE] = ACTIONS(2643), + [anon_sym_c_SQUOTE] = ACTIONS(2643), + [anon_sym_c_DQUOTE] = ACTIONS(2643), + [anon_sym_r_SQUOTE] = ACTIONS(2643), + [anon_sym_r_DQUOTE] = 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), }, [1073] = { [sym_line_comment] = STATE(1073), [sym_block_comment] = STATE(1073), - [ts_builtin_sym_end] = ACTIONS(2199), - [sym_identifier] = ACTIONS(2201), - [anon_sym_LF] = ACTIONS(2201), - [anon_sym_CR] = ACTIONS(2201), - [anon_sym_CR_LF] = ACTIONS(2201), + [ts_builtin_sym_end] = ACTIONS(3056), + [sym_identifier] = ACTIONS(3058), + [anon_sym_LF] = ACTIONS(3058), + [anon_sym_CR] = ACTIONS(3058), + [anon_sym_CR_LF] = ACTIONS(3058), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2201), - [anon_sym_as] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(2201), - [anon_sym_COMMA] = ACTIONS(2201), - [anon_sym_const] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2201), - [anon_sym___global] = ACTIONS(2201), - [anon_sym_type] = ACTIONS(2201), - [anon_sym_PIPE] = ACTIONS(2201), - [anon_sym_fn] = ACTIONS(2201), - [anon_sym_PLUS] = ACTIONS(2201), - [anon_sym_DASH] = ACTIONS(2201), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_SLASH] = ACTIONS(2201), - [anon_sym_PERCENT] = ACTIONS(2201), - [anon_sym_LT] = ACTIONS(2201), - [anon_sym_GT] = ACTIONS(2201), - [anon_sym_EQ_EQ] = ACTIONS(2201), - [anon_sym_BANG_EQ] = ACTIONS(2201), - [anon_sym_LT_EQ] = ACTIONS(2201), - [anon_sym_GT_EQ] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2199), - [anon_sym_struct] = ACTIONS(2201), - [anon_sym_union] = ACTIONS(2201), - [anon_sym_pub] = ACTIONS(2201), - [anon_sym_mut] = ACTIONS(2201), - [anon_sym_enum] = ACTIONS(2201), - [anon_sym_interface] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_QMARK] = ACTIONS(2201), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_go] = ACTIONS(2201), - [anon_sym_spawn] = ACTIONS(2201), - [anon_sym_json_DOTdecode] = ACTIONS(2201), - [anon_sym_LBRACK2] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_LT_DASH] = ACTIONS(2201), - [anon_sym_LT_LT] = ACTIONS(2201), - [anon_sym_GT_GT] = ACTIONS(2201), - [anon_sym_GT_GT_GT] = ACTIONS(2201), - [anon_sym_AMP_CARET] = ACTIONS(2201), - [anon_sym_AMP_AMP] = ACTIONS(2201), - [anon_sym_PIPE_PIPE] = ACTIONS(2201), - [anon_sym_or] = ACTIONS(2201), - [sym_none] = ACTIONS(2201), - [sym_true] = ACTIONS(2201), - [sym_false] = ACTIONS(2201), - [sym_nil] = ACTIONS(2201), - [anon_sym_QMARK_DOT] = ACTIONS(2201), - [anon_sym_POUND_LBRACK] = ACTIONS(2201), - [anon_sym_if] = ACTIONS(2201), - [anon_sym_DOLLARif] = ACTIONS(2201), - [anon_sym_is] = ACTIONS(2201), - [anon_sym_BANGis] = ACTIONS(2201), - [anon_sym_in] = ACTIONS(2201), - [anon_sym_BANGin] = ACTIONS(2201), - [anon_sym_match] = ACTIONS(2201), - [anon_sym_select] = ACTIONS(2201), - [anon_sym_lock] = ACTIONS(2201), - [anon_sym_rlock] = ACTIONS(2201), - [anon_sym_unsafe] = ACTIONS(2201), - [anon_sym_sql] = ACTIONS(2201), - [sym_int_literal] = ACTIONS(2201), - [sym_float_literal] = ACTIONS(2201), - [sym_rune_literal] = ACTIONS(2201), - [anon_sym_SQUOTE] = ACTIONS(2201), - [anon_sym_DQUOTE] = ACTIONS(2201), - [anon_sym_c_SQUOTE] = ACTIONS(2201), - [anon_sym_c_DQUOTE] = ACTIONS(2201), - [anon_sym_r_SQUOTE] = ACTIONS(2201), - [anon_sym_r_DQUOTE] = ACTIONS(2201), - [sym_pseudo_compile_time_identifier] = ACTIONS(2201), - [anon_sym_shared] = ACTIONS(2201), - [anon_sym_map_LBRACK] = ACTIONS(2201), - [anon_sym_chan] = ACTIONS(2201), - [anon_sym_thread] = ACTIONS(2201), - [anon_sym_atomic] = ACTIONS(2201), - [anon_sym_assert] = ACTIONS(2201), - [anon_sym_defer] = ACTIONS(2201), - [anon_sym_goto] = ACTIONS(2201), - [anon_sym_break] = ACTIONS(2201), - [anon_sym_continue] = ACTIONS(2201), - [anon_sym_return] = ACTIONS(2201), - [anon_sym_DOLLARfor] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(2201), - [anon_sym_POUND] = ACTIONS(2201), - [anon_sym_asm] = ACTIONS(2201), - [anon_sym_AT_LBRACK] = ACTIONS(2201), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_as] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_const] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym___global] = ACTIONS(3058), + [anon_sym_type] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_LT_EQ] = ACTIONS(3058), + [anon_sym_GT_EQ] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_struct] = ACTIONS(3058), + [anon_sym_union] = ACTIONS(3058), + [anon_sym_pub] = ACTIONS(3058), + [anon_sym_mut] = ACTIONS(3058), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_interface] = ACTIONS(3058), + [anon_sym_PLUS_PLUS] = ACTIONS(3058), + [anon_sym_DASH_DASH] = ACTIONS(3058), + [anon_sym_QMARK] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_go] = ACTIONS(3058), + [anon_sym_spawn] = ACTIONS(3058), + [anon_sym_json_DOTdecode] = ACTIONS(3058), + [anon_sym_PIPE] = ACTIONS(3058), + [anon_sym_LBRACK2] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [anon_sym_CARET] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT_DASH] = ACTIONS(3058), + [anon_sym_LT_LT] = ACTIONS(3058), + [anon_sym_GT_GT] = ACTIONS(3058), + [anon_sym_GT_GT_GT] = ACTIONS(3058), + [anon_sym_AMP_CARET] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_PIPE_PIPE] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3058), + [sym_none] = ACTIONS(3058), + [sym_true] = ACTIONS(3058), + [sym_false] = ACTIONS(3058), + [sym_nil] = ACTIONS(3058), + [anon_sym_QMARK_DOT] = ACTIONS(3058), + [anon_sym_POUND_LBRACK] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_DOLLARif] = ACTIONS(3058), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3058), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_BANGin] = ACTIONS(3058), + [anon_sym_match] = ACTIONS(3058), + [anon_sym_select] = ACTIONS(3058), + [anon_sym_lock] = ACTIONS(3058), + [anon_sym_rlock] = ACTIONS(3058), + [anon_sym_unsafe] = ACTIONS(3058), + [anon_sym_sql] = ACTIONS(3058), + [sym_int_literal] = ACTIONS(3058), + [sym_float_literal] = ACTIONS(3058), + [sym_rune_literal] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_c_SQUOTE] = ACTIONS(3058), + [anon_sym_c_DQUOTE] = ACTIONS(3058), + [anon_sym_r_SQUOTE] = ACTIONS(3058), + [anon_sym_r_DQUOTE] = ACTIONS(3058), + [sym_pseudo_compile_time_identifier] = ACTIONS(3058), + [anon_sym_shared] = ACTIONS(3058), + [anon_sym_map_LBRACK] = ACTIONS(3058), + [anon_sym_chan] = ACTIONS(3058), + [anon_sym_thread] = ACTIONS(3058), + [anon_sym_atomic] = ACTIONS(3058), + [anon_sym_assert] = ACTIONS(3058), + [anon_sym_defer] = ACTIONS(3058), + [anon_sym_goto] = ACTIONS(3058), + [anon_sym_break] = ACTIONS(3058), + [anon_sym_continue] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_DOLLARfor] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3058), + [anon_sym_POUND] = ACTIONS(3058), + [anon_sym_asm] = ACTIONS(3058), + [anon_sym_AT_LBRACK] = ACTIONS(3058), }, [1074] = { [sym_line_comment] = STATE(1074), [sym_block_comment] = STATE(1074), - [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), + [ts_builtin_sym_end] = ACTIONS(2637), + [sym_identifier] = ACTIONS(2639), + [anon_sym_LF] = ACTIONS(2639), + [anon_sym_CR] = ACTIONS(2639), + [anon_sym_CR_LF] = ACTIONS(2639), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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), - [anon_sym_SQUOTE] = ACTIONS(2715), - [anon_sym_DQUOTE] = ACTIONS(2715), - [anon_sym_c_SQUOTE] = ACTIONS(2715), - [anon_sym_c_DQUOTE] = ACTIONS(2715), - [anon_sym_r_SQUOTE] = ACTIONS(2715), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(2639), + [anon_sym_as] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_COMMA] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2639), + [anon_sym___global] = ACTIONS(2639), + [anon_sym_type] = ACTIONS(2639), + [anon_sym_fn] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_SLASH] = ACTIONS(2639), + [anon_sym_PERCENT] = ACTIONS(2639), + [anon_sym_LT] = ACTIONS(2639), + [anon_sym_GT] = ACTIONS(2639), + [anon_sym_EQ_EQ] = ACTIONS(2639), + [anon_sym_BANG_EQ] = ACTIONS(2639), + [anon_sym_LT_EQ] = ACTIONS(2639), + [anon_sym_GT_EQ] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_union] = ACTIONS(2639), + [anon_sym_pub] = ACTIONS(2639), + [anon_sym_mut] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), + [anon_sym_interface] = ACTIONS(2639), + [anon_sym_PLUS_PLUS] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2639), + [anon_sym_QMARK] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_go] = ACTIONS(2639), + [anon_sym_spawn] = ACTIONS(2639), + [anon_sym_json_DOTdecode] = ACTIONS(2639), + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_LBRACK2] = ACTIONS(2639), + [anon_sym_TILDE] = ACTIONS(2639), + [anon_sym_CARET] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_LT_DASH] = ACTIONS(2639), + [anon_sym_LT_LT] = ACTIONS(2639), + [anon_sym_GT_GT] = ACTIONS(2639), + [anon_sym_GT_GT_GT] = ACTIONS(2639), + [anon_sym_AMP_CARET] = ACTIONS(2639), + [anon_sym_AMP_AMP] = ACTIONS(2639), + [anon_sym_PIPE_PIPE] = ACTIONS(2639), + [anon_sym_or] = ACTIONS(2639), + [sym_none] = ACTIONS(2639), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [sym_nil] = ACTIONS(2639), + [anon_sym_QMARK_DOT] = ACTIONS(2639), + [anon_sym_POUND_LBRACK] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_DOLLARif] = ACTIONS(2639), + [anon_sym_is] = ACTIONS(2639), + [anon_sym_BANGis] = ACTIONS(2639), + [anon_sym_in] = ACTIONS(2639), + [anon_sym_BANGin] = ACTIONS(2639), + [anon_sym_match] = ACTIONS(2639), + [anon_sym_select] = ACTIONS(2639), + [anon_sym_lock] = ACTIONS(2639), + [anon_sym_rlock] = ACTIONS(2639), + [anon_sym_unsafe] = ACTIONS(2639), + [anon_sym_sql] = ACTIONS(2639), + [sym_int_literal] = ACTIONS(2639), + [sym_float_literal] = ACTIONS(2639), + [sym_rune_literal] = ACTIONS(2639), + [anon_sym_SQUOTE] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2639), + [anon_sym_c_SQUOTE] = ACTIONS(2639), + [anon_sym_c_DQUOTE] = ACTIONS(2639), + [anon_sym_r_SQUOTE] = ACTIONS(2639), + [anon_sym_r_DQUOTE] = ACTIONS(2639), + [sym_pseudo_compile_time_identifier] = ACTIONS(2639), + [anon_sym_shared] = ACTIONS(2639), + [anon_sym_map_LBRACK] = ACTIONS(2639), + [anon_sym_chan] = ACTIONS(2639), + [anon_sym_thread] = ACTIONS(2639), + [anon_sym_atomic] = ACTIONS(2639), + [anon_sym_assert] = ACTIONS(2639), + [anon_sym_defer] = ACTIONS(2639), + [anon_sym_goto] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_DOLLARfor] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_POUND] = ACTIONS(2639), + [anon_sym_asm] = ACTIONS(2639), + [anon_sym_AT_LBRACK] = ACTIONS(2639), }, [1075] = { [sym_line_comment] = STATE(1075), [sym_block_comment] = STATE(1075), - [ts_builtin_sym_end] = ACTIONS(2271), - [sym_identifier] = ACTIONS(2273), - [anon_sym_LF] = ACTIONS(2273), - [anon_sym_CR] = ACTIONS(2273), - [anon_sym_CR_LF] = ACTIONS(2273), + [ts_builtin_sym_end] = ACTIONS(2967), + [sym_identifier] = ACTIONS(2969), + [anon_sym_LF] = ACTIONS(2969), + [anon_sym_CR] = ACTIONS(2969), + [anon_sym_CR_LF] = ACTIONS(2969), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2273), - [anon_sym_as] = ACTIONS(2273), - [anon_sym_LBRACE] = ACTIONS(2273), - [anon_sym_COMMA] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2273), - [anon_sym___global] = ACTIONS(2273), - [anon_sym_type] = ACTIONS(2273), - [anon_sym_PIPE] = ACTIONS(2273), - [anon_sym_fn] = ACTIONS(2273), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_SLASH] = ACTIONS(2273), - [anon_sym_PERCENT] = ACTIONS(2273), - [anon_sym_LT] = ACTIONS(2273), - [anon_sym_GT] = ACTIONS(2273), - [anon_sym_EQ_EQ] = ACTIONS(2273), - [anon_sym_BANG_EQ] = ACTIONS(2273), - [anon_sym_LT_EQ] = ACTIONS(2273), - [anon_sym_GT_EQ] = ACTIONS(2273), - [anon_sym_LBRACK] = ACTIONS(2271), - [anon_sym_struct] = ACTIONS(2273), - [anon_sym_union] = ACTIONS(2273), - [anon_sym_pub] = ACTIONS(2273), - [anon_sym_mut] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2273), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_PLUS_PLUS] = ACTIONS(2273), - [anon_sym_DASH_DASH] = ACTIONS(2273), - [anon_sym_QMARK] = ACTIONS(2273), - [anon_sym_BANG] = ACTIONS(2273), - [anon_sym_go] = ACTIONS(2273), - [anon_sym_spawn] = ACTIONS(2273), - [anon_sym_json_DOTdecode] = ACTIONS(2273), - [anon_sym_LBRACK2] = ACTIONS(2273), - [anon_sym_TILDE] = ACTIONS(2273), - [anon_sym_CARET] = ACTIONS(2273), - [anon_sym_AMP] = ACTIONS(2273), - [anon_sym_LT_DASH] = ACTIONS(2273), - [anon_sym_LT_LT] = ACTIONS(2273), - [anon_sym_GT_GT] = ACTIONS(2273), - [anon_sym_GT_GT_GT] = ACTIONS(2273), - [anon_sym_AMP_CARET] = ACTIONS(2273), - [anon_sym_AMP_AMP] = ACTIONS(2273), - [anon_sym_PIPE_PIPE] = ACTIONS(2273), - [anon_sym_or] = ACTIONS(2273), - [sym_none] = ACTIONS(2273), - [sym_true] = ACTIONS(2273), - [sym_false] = ACTIONS(2273), - [sym_nil] = ACTIONS(2273), - [anon_sym_QMARK_DOT] = ACTIONS(2273), - [anon_sym_POUND_LBRACK] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_DOLLARif] = ACTIONS(2273), - [anon_sym_is] = ACTIONS(2273), - [anon_sym_BANGis] = ACTIONS(2273), - [anon_sym_in] = ACTIONS(2273), - [anon_sym_BANGin] = ACTIONS(2273), - [anon_sym_match] = ACTIONS(2273), - [anon_sym_select] = ACTIONS(2273), - [anon_sym_lock] = ACTIONS(2273), - [anon_sym_rlock] = ACTIONS(2273), - [anon_sym_unsafe] = ACTIONS(2273), - [anon_sym_sql] = ACTIONS(2273), - [sym_int_literal] = ACTIONS(2273), - [sym_float_literal] = ACTIONS(2273), - [sym_rune_literal] = ACTIONS(2273), - [anon_sym_SQUOTE] = ACTIONS(2273), - [anon_sym_DQUOTE] = ACTIONS(2273), - [anon_sym_c_SQUOTE] = ACTIONS(2273), - [anon_sym_c_DQUOTE] = ACTIONS(2273), - [anon_sym_r_SQUOTE] = ACTIONS(2273), - [anon_sym_r_DQUOTE] = ACTIONS(2273), - [sym_pseudo_compile_time_identifier] = ACTIONS(2273), - [anon_sym_shared] = ACTIONS(2273), - [anon_sym_map_LBRACK] = ACTIONS(2273), - [anon_sym_chan] = ACTIONS(2273), - [anon_sym_thread] = ACTIONS(2273), - [anon_sym_atomic] = ACTIONS(2273), - [anon_sym_assert] = ACTIONS(2273), - [anon_sym_defer] = ACTIONS(2273), - [anon_sym_goto] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_DOLLARfor] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_POUND] = ACTIONS(2273), - [anon_sym_asm] = ACTIONS(2273), - [anon_sym_AT_LBRACK] = ACTIONS(2273), + [anon_sym_DOT] = ACTIONS(2969), + [anon_sym_as] = ACTIONS(2969), + [anon_sym_LBRACE] = ACTIONS(2969), + [anon_sym_COMMA] = ACTIONS(2969), + [anon_sym_const] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2969), + [anon_sym___global] = ACTIONS(2969), + [anon_sym_type] = ACTIONS(2969), + [anon_sym_fn] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(2969), + [anon_sym_SLASH] = ACTIONS(2969), + [anon_sym_PERCENT] = ACTIONS(2969), + [anon_sym_LT] = ACTIONS(2969), + [anon_sym_GT] = ACTIONS(2969), + [anon_sym_EQ_EQ] = ACTIONS(2969), + [anon_sym_BANG_EQ] = ACTIONS(2969), + [anon_sym_LT_EQ] = ACTIONS(2969), + [anon_sym_GT_EQ] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(2967), + [anon_sym_struct] = ACTIONS(2969), + [anon_sym_union] = ACTIONS(2969), + [anon_sym_pub] = ACTIONS(2969), + [anon_sym_mut] = ACTIONS(2969), + [anon_sym_enum] = ACTIONS(2969), + [anon_sym_interface] = ACTIONS(2969), + [anon_sym_PLUS_PLUS] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(2969), + [anon_sym_QMARK] = ACTIONS(2969), + [anon_sym_BANG] = ACTIONS(2969), + [anon_sym_go] = ACTIONS(2969), + [anon_sym_spawn] = ACTIONS(2969), + [anon_sym_json_DOTdecode] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2969), + [anon_sym_LBRACK2] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2969), + [anon_sym_CARET] = ACTIONS(2969), + [anon_sym_AMP] = ACTIONS(2969), + [anon_sym_LT_DASH] = ACTIONS(2969), + [anon_sym_LT_LT] = ACTIONS(2969), + [anon_sym_GT_GT] = ACTIONS(2969), + [anon_sym_GT_GT_GT] = ACTIONS(2969), + [anon_sym_AMP_CARET] = ACTIONS(2969), + [anon_sym_AMP_AMP] = ACTIONS(2969), + [anon_sym_PIPE_PIPE] = ACTIONS(2969), + [anon_sym_or] = ACTIONS(2969), + [sym_none] = ACTIONS(2969), + [sym_true] = ACTIONS(2969), + [sym_false] = ACTIONS(2969), + [sym_nil] = ACTIONS(2969), + [anon_sym_QMARK_DOT] = ACTIONS(2969), + [anon_sym_POUND_LBRACK] = ACTIONS(2969), + [anon_sym_if] = ACTIONS(2969), + [anon_sym_DOLLARif] = ACTIONS(2969), + [anon_sym_is] = ACTIONS(2969), + [anon_sym_BANGis] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(2969), + [anon_sym_BANGin] = ACTIONS(2969), + [anon_sym_match] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), + [anon_sym_lock] = ACTIONS(2969), + [anon_sym_rlock] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(2969), + [anon_sym_sql] = ACTIONS(2969), + [sym_int_literal] = ACTIONS(2969), + [sym_float_literal] = ACTIONS(2969), + [sym_rune_literal] = ACTIONS(2969), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_DQUOTE] = ACTIONS(2969), + [anon_sym_c_SQUOTE] = ACTIONS(2969), + [anon_sym_c_DQUOTE] = ACTIONS(2969), + [anon_sym_r_SQUOTE] = ACTIONS(2969), + [anon_sym_r_DQUOTE] = ACTIONS(2969), + [sym_pseudo_compile_time_identifier] = ACTIONS(2969), + [anon_sym_shared] = ACTIONS(2969), + [anon_sym_map_LBRACK] = ACTIONS(2969), + [anon_sym_chan] = ACTIONS(2969), + [anon_sym_thread] = ACTIONS(2969), + [anon_sym_atomic] = ACTIONS(2969), + [anon_sym_assert] = ACTIONS(2969), + [anon_sym_defer] = ACTIONS(2969), + [anon_sym_goto] = ACTIONS(2969), + [anon_sym_break] = ACTIONS(2969), + [anon_sym_continue] = ACTIONS(2969), + [anon_sym_return] = ACTIONS(2969), + [anon_sym_DOLLARfor] = ACTIONS(2969), + [anon_sym_for] = ACTIONS(2969), + [anon_sym_POUND] = ACTIONS(2969), + [anon_sym_asm] = ACTIONS(2969), + [anon_sym_AT_LBRACK] = ACTIONS(2969), }, [1076] = { [sym_line_comment] = STATE(1076), [sym_block_comment] = STATE(1076), - [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), + [ts_builtin_sym_end] = ACTIONS(3008), + [sym_identifier] = ACTIONS(3010), + [anon_sym_LF] = ACTIONS(3010), + [anon_sym_CR] = ACTIONS(3010), + [anon_sym_CR_LF] = ACTIONS(3010), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2891), - [anon_sym_as] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2891), - [anon_sym_COMMA] = ACTIONS(2891), - [anon_sym_const] = ACTIONS(2891), - [anon_sym_LPAREN] = ACTIONS(2891), - [anon_sym___global] = ACTIONS(2891), - [anon_sym_type] = ACTIONS(2891), - [anon_sym_PIPE] = ACTIONS(2891), - [anon_sym_fn] = ACTIONS(2891), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_SLASH] = ACTIONS(2891), - [anon_sym_PERCENT] = ACTIONS(2891), - [anon_sym_LT] = ACTIONS(2891), - [anon_sym_GT] = ACTIONS(2891), - [anon_sym_EQ_EQ] = ACTIONS(2891), - [anon_sym_BANG_EQ] = ACTIONS(2891), - [anon_sym_LT_EQ] = ACTIONS(2891), - [anon_sym_GT_EQ] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_struct] = ACTIONS(2891), - [anon_sym_union] = ACTIONS(2891), - [anon_sym_pub] = ACTIONS(2891), - [anon_sym_mut] = ACTIONS(2891), - [anon_sym_enum] = ACTIONS(2891), - [anon_sym_interface] = ACTIONS(2891), - [anon_sym_PLUS_PLUS] = ACTIONS(2891), - [anon_sym_DASH_DASH] = ACTIONS(2891), - [anon_sym_QMARK] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2891), - [anon_sym_go] = ACTIONS(2891), - [anon_sym_spawn] = ACTIONS(2891), - [anon_sym_json_DOTdecode] = ACTIONS(2891), - [anon_sym_LBRACK2] = ACTIONS(2891), - [anon_sym_TILDE] = ACTIONS(2891), - [anon_sym_CARET] = ACTIONS(2891), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_LT_DASH] = ACTIONS(2891), - [anon_sym_LT_LT] = ACTIONS(2891), - [anon_sym_GT_GT] = ACTIONS(2891), - [anon_sym_GT_GT_GT] = ACTIONS(2891), - [anon_sym_AMP_CARET] = ACTIONS(2891), - [anon_sym_AMP_AMP] = ACTIONS(2891), - [anon_sym_PIPE_PIPE] = ACTIONS(2891), - [anon_sym_or] = ACTIONS(2891), - [sym_none] = ACTIONS(2891), - [sym_true] = ACTIONS(2891), - [sym_false] = ACTIONS(2891), - [sym_nil] = ACTIONS(2891), - [anon_sym_QMARK_DOT] = ACTIONS(2891), - [anon_sym_POUND_LBRACK] = ACTIONS(2891), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_DOLLARif] = ACTIONS(2891), - [anon_sym_is] = ACTIONS(2891), - [anon_sym_BANGis] = ACTIONS(2891), - [anon_sym_in] = ACTIONS(2891), - [anon_sym_BANGin] = ACTIONS(2891), - [anon_sym_match] = ACTIONS(2891), - [anon_sym_select] = ACTIONS(2891), - [anon_sym_lock] = ACTIONS(2891), - [anon_sym_rlock] = ACTIONS(2891), - [anon_sym_unsafe] = ACTIONS(2891), - [anon_sym_sql] = ACTIONS(2891), - [sym_int_literal] = ACTIONS(2891), - [sym_float_literal] = ACTIONS(2891), - [sym_rune_literal] = ACTIONS(2891), - [anon_sym_SQUOTE] = ACTIONS(2891), - [anon_sym_DQUOTE] = ACTIONS(2891), - [anon_sym_c_SQUOTE] = ACTIONS(2891), - [anon_sym_c_DQUOTE] = ACTIONS(2891), - [anon_sym_r_SQUOTE] = ACTIONS(2891), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(3010), + [anon_sym_as] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3010), + [anon_sym_COMMA] = ACTIONS(3010), + [anon_sym_const] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3010), + [anon_sym___global] = ACTIONS(3010), + [anon_sym_type] = ACTIONS(3010), + [anon_sym_fn] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_SLASH] = ACTIONS(3010), + [anon_sym_PERCENT] = ACTIONS(3010), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3010), + [anon_sym_EQ_EQ] = ACTIONS(3010), + [anon_sym_BANG_EQ] = ACTIONS(3010), + [anon_sym_LT_EQ] = ACTIONS(3010), + [anon_sym_GT_EQ] = ACTIONS(3010), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_struct] = ACTIONS(3010), + [anon_sym_union] = ACTIONS(3010), + [anon_sym_pub] = ACTIONS(3010), + [anon_sym_mut] = ACTIONS(3010), + [anon_sym_enum] = ACTIONS(3010), + [anon_sym_interface] = ACTIONS(3010), + [anon_sym_PLUS_PLUS] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(3010), + [anon_sym_QMARK] = ACTIONS(3010), + [anon_sym_BANG] = ACTIONS(3010), + [anon_sym_go] = ACTIONS(3010), + [anon_sym_spawn] = ACTIONS(3010), + [anon_sym_json_DOTdecode] = ACTIONS(3010), + [anon_sym_PIPE] = ACTIONS(3010), + [anon_sym_LBRACK2] = ACTIONS(3010), + [anon_sym_TILDE] = ACTIONS(3010), + [anon_sym_CARET] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3010), + [anon_sym_LT_DASH] = ACTIONS(3010), + [anon_sym_LT_LT] = ACTIONS(3010), + [anon_sym_GT_GT] = ACTIONS(3010), + [anon_sym_GT_GT_GT] = ACTIONS(3010), + [anon_sym_AMP_CARET] = ACTIONS(3010), + [anon_sym_AMP_AMP] = ACTIONS(3010), + [anon_sym_PIPE_PIPE] = ACTIONS(3010), + [anon_sym_or] = ACTIONS(3010), + [sym_none] = ACTIONS(3010), + [sym_true] = ACTIONS(3010), + [sym_false] = ACTIONS(3010), + [sym_nil] = ACTIONS(3010), + [anon_sym_QMARK_DOT] = ACTIONS(3010), + [anon_sym_POUND_LBRACK] = ACTIONS(3010), + [anon_sym_if] = ACTIONS(3010), + [anon_sym_DOLLARif] = ACTIONS(3010), + [anon_sym_is] = ACTIONS(3010), + [anon_sym_BANGis] = ACTIONS(3010), + [anon_sym_in] = ACTIONS(3010), + [anon_sym_BANGin] = ACTIONS(3010), + [anon_sym_match] = ACTIONS(3010), + [anon_sym_select] = ACTIONS(3010), + [anon_sym_lock] = ACTIONS(3010), + [anon_sym_rlock] = ACTIONS(3010), + [anon_sym_unsafe] = ACTIONS(3010), + [anon_sym_sql] = ACTIONS(3010), + [sym_int_literal] = ACTIONS(3010), + [sym_float_literal] = ACTIONS(3010), + [sym_rune_literal] = ACTIONS(3010), + [anon_sym_SQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE] = ACTIONS(3010), + [anon_sym_c_SQUOTE] = ACTIONS(3010), + [anon_sym_c_DQUOTE] = ACTIONS(3010), + [anon_sym_r_SQUOTE] = ACTIONS(3010), + [anon_sym_r_DQUOTE] = ACTIONS(3010), + [sym_pseudo_compile_time_identifier] = ACTIONS(3010), + [anon_sym_shared] = ACTIONS(3010), + [anon_sym_map_LBRACK] = ACTIONS(3010), + [anon_sym_chan] = ACTIONS(3010), + [anon_sym_thread] = ACTIONS(3010), + [anon_sym_atomic] = ACTIONS(3010), + [anon_sym_assert] = ACTIONS(3010), + [anon_sym_defer] = ACTIONS(3010), + [anon_sym_goto] = ACTIONS(3010), + [anon_sym_break] = ACTIONS(3010), + [anon_sym_continue] = ACTIONS(3010), + [anon_sym_return] = ACTIONS(3010), + [anon_sym_DOLLARfor] = ACTIONS(3010), + [anon_sym_for] = ACTIONS(3010), + [anon_sym_POUND] = ACTIONS(3010), + [anon_sym_asm] = ACTIONS(3010), + [anon_sym_AT_LBRACK] = ACTIONS(3010), }, [1077] = { [sym_line_comment] = STATE(1077), [sym_block_comment] = STATE(1077), - [ts_builtin_sym_end] = ACTIONS(2142), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LF] = ACTIONS(2139), - [anon_sym_CR] = ACTIONS(2139), - [anon_sym_CR_LF] = ACTIONS(2139), + [ts_builtin_sym_end] = ACTIONS(2393), + [sym_identifier] = ACTIONS(2395), + [anon_sym_LF] = ACTIONS(2395), + [anon_sym_CR] = ACTIONS(2395), + [anon_sym_CR_LF] = ACTIONS(2395), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_as] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_COMMA] = ACTIONS(2139), - [anon_sym_const] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym___global] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(2139), - [anon_sym_fn] = ACTIONS(2139), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_SLASH] = ACTIONS(2139), - [anon_sym_PERCENT] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_GT] = ACTIONS(2139), - [anon_sym_EQ_EQ] = ACTIONS(2139), - [anon_sym_BANG_EQ] = ACTIONS(2139), - [anon_sym_LT_EQ] = ACTIONS(2139), - [anon_sym_GT_EQ] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2139), - [anon_sym_union] = ACTIONS(2139), - [anon_sym_pub] = ACTIONS(2139), - [anon_sym_mut] = ACTIONS(2139), - [anon_sym_enum] = ACTIONS(2139), - [anon_sym_interface] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_QMARK] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(2139), - [anon_sym_spawn] = ACTIONS(2139), - [anon_sym_json_DOTdecode] = ACTIONS(2139), - [anon_sym_LBRACK2] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_LT_DASH] = ACTIONS(2139), - [anon_sym_LT_LT] = ACTIONS(2139), - [anon_sym_GT_GT] = ACTIONS(2139), - [anon_sym_GT_GT_GT] = ACTIONS(2139), - [anon_sym_AMP_CARET] = ACTIONS(2139), - [anon_sym_AMP_AMP] = ACTIONS(2139), - [anon_sym_PIPE_PIPE] = ACTIONS(2139), - [anon_sym_or] = ACTIONS(2139), - [sym_none] = ACTIONS(2139), - [sym_true] = ACTIONS(2139), - [sym_false] = ACTIONS(2139), - [sym_nil] = ACTIONS(2139), - [anon_sym_QMARK_DOT] = ACTIONS(2139), - [anon_sym_POUND_LBRACK] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2139), - [anon_sym_DOLLARif] = ACTIONS(2139), - [anon_sym_is] = ACTIONS(2139), - [anon_sym_BANGis] = ACTIONS(2139), - [anon_sym_in] = ACTIONS(2139), - [anon_sym_BANGin] = ACTIONS(2139), - [anon_sym_match] = ACTIONS(2139), - [anon_sym_select] = ACTIONS(2139), - [anon_sym_lock] = ACTIONS(2139), - [anon_sym_rlock] = ACTIONS(2139), - [anon_sym_unsafe] = ACTIONS(2139), - [anon_sym_sql] = ACTIONS(2139), - [sym_int_literal] = ACTIONS(2139), - [sym_float_literal] = ACTIONS(2139), - [sym_rune_literal] = ACTIONS(2139), - [anon_sym_SQUOTE] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2139), - [anon_sym_c_SQUOTE] = ACTIONS(2139), - [anon_sym_c_DQUOTE] = ACTIONS(2139), - [anon_sym_r_SQUOTE] = ACTIONS(2139), - [anon_sym_r_DQUOTE] = ACTIONS(2139), - [sym_pseudo_compile_time_identifier] = ACTIONS(2139), - [anon_sym_shared] = ACTIONS(2139), - [anon_sym_map_LBRACK] = ACTIONS(2139), - [anon_sym_chan] = ACTIONS(2139), - [anon_sym_thread] = ACTIONS(2139), - [anon_sym_atomic] = ACTIONS(2139), - [anon_sym_assert] = ACTIONS(2139), - [anon_sym_defer] = ACTIONS(2139), - [anon_sym_goto] = ACTIONS(2139), - [anon_sym_break] = ACTIONS(2139), - [anon_sym_continue] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2139), - [anon_sym_DOLLARfor] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(2139), - [anon_sym_POUND] = ACTIONS(2139), - [anon_sym_asm] = ACTIONS(2139), - [anon_sym_AT_LBRACK] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(2395), + [anon_sym_as] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_COMMA] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym___global] = ACTIONS(2395), + [anon_sym_type] = ACTIONS(2395), + [anon_sym_fn] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_SLASH] = ACTIONS(2395), + [anon_sym_PERCENT] = ACTIONS(2395), + [anon_sym_LT] = ACTIONS(2395), + [anon_sym_GT] = ACTIONS(2395), + [anon_sym_EQ_EQ] = ACTIONS(2395), + [anon_sym_BANG_EQ] = ACTIONS(2395), + [anon_sym_LT_EQ] = ACTIONS(2395), + [anon_sym_GT_EQ] = ACTIONS(2395), + [anon_sym_LBRACK] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_pub] = ACTIONS(2395), + [anon_sym_mut] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_interface] = ACTIONS(2395), + [anon_sym_PLUS_PLUS] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2395), + [anon_sym_QMARK] = ACTIONS(2395), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_go] = ACTIONS(2395), + [anon_sym_spawn] = ACTIONS(2395), + [anon_sym_json_DOTdecode] = ACTIONS(2395), + [anon_sym_PIPE] = ACTIONS(2395), + [anon_sym_LBRACK2] = ACTIONS(2395), + [anon_sym_TILDE] = ACTIONS(2395), + [anon_sym_CARET] = ACTIONS(2395), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_LT_DASH] = ACTIONS(2395), + [anon_sym_LT_LT] = ACTIONS(2395), + [anon_sym_GT_GT] = ACTIONS(2395), + [anon_sym_GT_GT_GT] = ACTIONS(2395), + [anon_sym_AMP_CARET] = ACTIONS(2395), + [anon_sym_AMP_AMP] = ACTIONS(2395), + [anon_sym_PIPE_PIPE] = ACTIONS(2395), + [anon_sym_or] = ACTIONS(2395), + [sym_none] = ACTIONS(2395), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_nil] = ACTIONS(2395), + [anon_sym_QMARK_DOT] = ACTIONS(2395), + [anon_sym_POUND_LBRACK] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_DOLLARif] = ACTIONS(2395), + [anon_sym_is] = ACTIONS(2395), + [anon_sym_BANGis] = ACTIONS(2395), + [anon_sym_in] = ACTIONS(2395), + [anon_sym_BANGin] = ACTIONS(2395), + [anon_sym_match] = ACTIONS(2395), + [anon_sym_select] = ACTIONS(2395), + [anon_sym_lock] = ACTIONS(2395), + [anon_sym_rlock] = ACTIONS(2395), + [anon_sym_unsafe] = ACTIONS(2395), + [anon_sym_sql] = ACTIONS(2395), + [sym_int_literal] = ACTIONS(2395), + [sym_float_literal] = ACTIONS(2395), + [sym_rune_literal] = ACTIONS(2395), + [anon_sym_SQUOTE] = ACTIONS(2395), + [anon_sym_DQUOTE] = ACTIONS(2395), + [anon_sym_c_SQUOTE] = ACTIONS(2395), + [anon_sym_c_DQUOTE] = ACTIONS(2395), + [anon_sym_r_SQUOTE] = ACTIONS(2395), + [anon_sym_r_DQUOTE] = ACTIONS(2395), + [sym_pseudo_compile_time_identifier] = ACTIONS(2395), + [anon_sym_shared] = ACTIONS(2395), + [anon_sym_map_LBRACK] = ACTIONS(2395), + [anon_sym_chan] = ACTIONS(2395), + [anon_sym_thread] = ACTIONS(2395), + [anon_sym_atomic] = ACTIONS(2395), + [anon_sym_assert] = ACTIONS(2395), + [anon_sym_defer] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_DOLLARfor] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_POUND] = ACTIONS(2395), + [anon_sym_asm] = ACTIONS(2395), + [anon_sym_AT_LBRACK] = ACTIONS(2395), }, [1078] = { [sym_line_comment] = STATE(1078), [sym_block_comment] = STATE(1078), - [ts_builtin_sym_end] = ACTIONS(2421), - [sym_identifier] = ACTIONS(2423), - [anon_sym_LF] = ACTIONS(2423), - [anon_sym_CR] = ACTIONS(2423), - [anon_sym_CR_LF] = ACTIONS(2423), + [ts_builtin_sym_end] = ACTIONS(1885), + [sym_identifier] = ACTIONS(1887), + [anon_sym_LF] = ACTIONS(1887), + [anon_sym_CR] = ACTIONS(1887), + [anon_sym_CR_LF] = ACTIONS(1887), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2423), - [anon_sym_as] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_COMMA] = ACTIONS(2423), - [anon_sym_const] = ACTIONS(2423), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym___global] = ACTIONS(2423), - [anon_sym_type] = ACTIONS(2423), - [anon_sym_PIPE] = ACTIONS(2423), - [anon_sym_fn] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2423), - [anon_sym_DASH] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_SLASH] = ACTIONS(2423), - [anon_sym_PERCENT] = ACTIONS(2423), - [anon_sym_LT] = ACTIONS(2423), - [anon_sym_GT] = ACTIONS(2423), - [anon_sym_EQ_EQ] = ACTIONS(2423), - [anon_sym_BANG_EQ] = ACTIONS(2423), - [anon_sym_LT_EQ] = ACTIONS(2423), - [anon_sym_GT_EQ] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(2423), - [anon_sym_union] = ACTIONS(2423), - [anon_sym_pub] = ACTIONS(2423), - [anon_sym_mut] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2423), - [anon_sym_interface] = ACTIONS(2423), - [anon_sym_PLUS_PLUS] = ACTIONS(2423), - [anon_sym_DASH_DASH] = ACTIONS(2423), - [anon_sym_QMARK] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2423), - [anon_sym_spawn] = ACTIONS(2423), - [anon_sym_json_DOTdecode] = ACTIONS(2423), - [anon_sym_LBRACK2] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2423), - [anon_sym_CARET] = ACTIONS(2423), - [anon_sym_AMP] = ACTIONS(2423), - [anon_sym_LT_DASH] = ACTIONS(2423), - [anon_sym_LT_LT] = ACTIONS(2423), - [anon_sym_GT_GT] = ACTIONS(2423), - [anon_sym_GT_GT_GT] = ACTIONS(2423), - [anon_sym_AMP_CARET] = ACTIONS(2423), - [anon_sym_AMP_AMP] = ACTIONS(2423), - [anon_sym_PIPE_PIPE] = ACTIONS(2423), - [anon_sym_or] = ACTIONS(2423), - [sym_none] = ACTIONS(2423), - [sym_true] = ACTIONS(2423), - [sym_false] = ACTIONS(2423), - [sym_nil] = ACTIONS(2423), - [anon_sym_QMARK_DOT] = ACTIONS(2423), - [anon_sym_POUND_LBRACK] = ACTIONS(2423), - [anon_sym_if] = ACTIONS(2423), - [anon_sym_DOLLARif] = ACTIONS(2423), - [anon_sym_is] = ACTIONS(2423), - [anon_sym_BANGis] = ACTIONS(2423), - [anon_sym_in] = ACTIONS(2423), - [anon_sym_BANGin] = ACTIONS(2423), - [anon_sym_match] = ACTIONS(2423), - [anon_sym_select] = ACTIONS(2423), - [anon_sym_lock] = ACTIONS(2423), - [anon_sym_rlock] = ACTIONS(2423), - [anon_sym_unsafe] = ACTIONS(2423), - [anon_sym_sql] = ACTIONS(2423), - [sym_int_literal] = ACTIONS(2423), - [sym_float_literal] = ACTIONS(2423), - [sym_rune_literal] = ACTIONS(2423), - [anon_sym_SQUOTE] = ACTIONS(2423), - [anon_sym_DQUOTE] = ACTIONS(2423), - [anon_sym_c_SQUOTE] = ACTIONS(2423), - [anon_sym_c_DQUOTE] = ACTIONS(2423), - [anon_sym_r_SQUOTE] = ACTIONS(2423), - [anon_sym_r_DQUOTE] = ACTIONS(2423), - [sym_pseudo_compile_time_identifier] = ACTIONS(2423), - [anon_sym_shared] = ACTIONS(2423), - [anon_sym_map_LBRACK] = ACTIONS(2423), - [anon_sym_chan] = ACTIONS(2423), - [anon_sym_thread] = ACTIONS(2423), - [anon_sym_atomic] = ACTIONS(2423), - [anon_sym_assert] = ACTIONS(2423), - [anon_sym_defer] = ACTIONS(2423), - [anon_sym_goto] = ACTIONS(2423), - [anon_sym_break] = ACTIONS(2423), - [anon_sym_continue] = ACTIONS(2423), - [anon_sym_return] = ACTIONS(2423), - [anon_sym_DOLLARfor] = ACTIONS(2423), - [anon_sym_for] = ACTIONS(2423), - [anon_sym_POUND] = ACTIONS(2423), - [anon_sym_asm] = ACTIONS(2423), - [anon_sym_AT_LBRACK] = ACTIONS(2423), + [anon_sym_DOT] = ACTIONS(1887), + [anon_sym_as] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_COMMA] = ACTIONS(1887), + [anon_sym_const] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym___global] = ACTIONS(1887), + [anon_sym_type] = ACTIONS(1887), + [anon_sym_fn] = ACTIONS(1887), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1887), + [anon_sym_SLASH] = ACTIONS(1887), + [anon_sym_PERCENT] = ACTIONS(1887), + [anon_sym_LT] = ACTIONS(1887), + [anon_sym_GT] = ACTIONS(1887), + [anon_sym_EQ_EQ] = ACTIONS(1887), + [anon_sym_BANG_EQ] = ACTIONS(1887), + [anon_sym_LT_EQ] = ACTIONS(1887), + [anon_sym_GT_EQ] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1885), + [anon_sym_struct] = ACTIONS(1887), + [anon_sym_union] = ACTIONS(1887), + [anon_sym_pub] = ACTIONS(1887), + [anon_sym_mut] = ACTIONS(1887), + [anon_sym_enum] = ACTIONS(1887), + [anon_sym_interface] = ACTIONS(1887), + [anon_sym_PLUS_PLUS] = ACTIONS(1887), + [anon_sym_DASH_DASH] = ACTIONS(1887), + [anon_sym_QMARK] = ACTIONS(1887), + [anon_sym_BANG] = ACTIONS(1887), + [anon_sym_go] = ACTIONS(1887), + [anon_sym_spawn] = ACTIONS(1887), + [anon_sym_json_DOTdecode] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1887), + [anon_sym_LBRACK2] = ACTIONS(1887), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_CARET] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(1887), + [anon_sym_LT_DASH] = ACTIONS(1887), + [anon_sym_LT_LT] = ACTIONS(1887), + [anon_sym_GT_GT] = ACTIONS(1887), + [anon_sym_GT_GT_GT] = ACTIONS(1887), + [anon_sym_AMP_CARET] = ACTIONS(1887), + [anon_sym_AMP_AMP] = ACTIONS(1887), + [anon_sym_PIPE_PIPE] = ACTIONS(1887), + [anon_sym_or] = ACTIONS(1887), + [sym_none] = ACTIONS(1887), + [sym_true] = ACTIONS(1887), + [sym_false] = ACTIONS(1887), + [sym_nil] = ACTIONS(1887), + [anon_sym_QMARK_DOT] = ACTIONS(1887), + [anon_sym_POUND_LBRACK] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_DOLLARif] = ACTIONS(1887), + [anon_sym_is] = ACTIONS(1887), + [anon_sym_BANGis] = ACTIONS(1887), + [anon_sym_in] = ACTIONS(1887), + [anon_sym_BANGin] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_select] = ACTIONS(1887), + [anon_sym_lock] = ACTIONS(1887), + [anon_sym_rlock] = ACTIONS(1887), + [anon_sym_unsafe] = ACTIONS(1887), + [anon_sym_sql] = ACTIONS(1887), + [sym_int_literal] = ACTIONS(1887), + [sym_float_literal] = ACTIONS(1887), + [sym_rune_literal] = ACTIONS(1887), + [anon_sym_SQUOTE] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(1887), + [anon_sym_c_SQUOTE] = ACTIONS(1887), + [anon_sym_c_DQUOTE] = ACTIONS(1887), + [anon_sym_r_SQUOTE] = ACTIONS(1887), + [anon_sym_r_DQUOTE] = ACTIONS(1887), + [sym_pseudo_compile_time_identifier] = ACTIONS(1887), + [anon_sym_shared] = ACTIONS(1887), + [anon_sym_map_LBRACK] = ACTIONS(1887), + [anon_sym_chan] = ACTIONS(1887), + [anon_sym_thread] = ACTIONS(1887), + [anon_sym_atomic] = ACTIONS(1887), + [anon_sym_assert] = ACTIONS(1887), + [anon_sym_defer] = ACTIONS(1887), + [anon_sym_goto] = ACTIONS(1887), + [anon_sym_break] = ACTIONS(1887), + [anon_sym_continue] = ACTIONS(1887), + [anon_sym_return] = ACTIONS(1887), + [anon_sym_DOLLARfor] = ACTIONS(1887), + [anon_sym_for] = ACTIONS(1887), + [anon_sym_POUND] = ACTIONS(1887), + [anon_sym_asm] = ACTIONS(1887), + [anon_sym_AT_LBRACK] = ACTIONS(1887), }, [1079] = { [sym_line_comment] = STATE(1079), [sym_block_comment] = STATE(1079), - [ts_builtin_sym_end] = ACTIONS(2885), - [sym_identifier] = ACTIONS(2887), - [anon_sym_LF] = ACTIONS(2887), - [anon_sym_CR] = ACTIONS(2887), - [anon_sym_CR_LF] = ACTIONS(2887), + [ts_builtin_sym_end] = ACTIONS(3028), + [sym_identifier] = ACTIONS(3030), + [anon_sym_LF] = ACTIONS(3030), + [anon_sym_CR] = ACTIONS(3030), + [anon_sym_CR_LF] = ACTIONS(3030), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2887), - [anon_sym_as] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_COMMA] = ACTIONS(2887), - [anon_sym_const] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(2887), - [anon_sym___global] = ACTIONS(2887), - [anon_sym_type] = ACTIONS(2887), - [anon_sym_PIPE] = ACTIONS(2887), - [anon_sym_fn] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2887), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_EQ_EQ] = ACTIONS(2887), - [anon_sym_BANG_EQ] = ACTIONS(2887), - [anon_sym_LT_EQ] = ACTIONS(2887), - [anon_sym_GT_EQ] = ACTIONS(2887), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2887), - [anon_sym_union] = ACTIONS(2887), - [anon_sym_pub] = ACTIONS(2887), - [anon_sym_mut] = ACTIONS(2887), - [anon_sym_enum] = ACTIONS(2887), - [anon_sym_interface] = ACTIONS(2887), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [anon_sym_QMARK] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_go] = ACTIONS(2887), - [anon_sym_spawn] = ACTIONS(2887), - [anon_sym_json_DOTdecode] = ACTIONS(2887), - [anon_sym_LBRACK2] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_CARET] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2887), - [anon_sym_LT_LT] = ACTIONS(2887), - [anon_sym_GT_GT] = ACTIONS(2887), - [anon_sym_GT_GT_GT] = ACTIONS(2887), - [anon_sym_AMP_CARET] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_PIPE_PIPE] = ACTIONS(2887), - [anon_sym_or] = ACTIONS(2887), - [sym_none] = ACTIONS(2887), - [sym_true] = ACTIONS(2887), - [sym_false] = ACTIONS(2887), - [sym_nil] = ACTIONS(2887), - [anon_sym_QMARK_DOT] = ACTIONS(2887), - [anon_sym_POUND_LBRACK] = ACTIONS(2887), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_DOLLARif] = ACTIONS(2887), - [anon_sym_is] = ACTIONS(2887), - [anon_sym_BANGis] = ACTIONS(2887), - [anon_sym_in] = ACTIONS(2887), - [anon_sym_BANGin] = ACTIONS(2887), - [anon_sym_match] = ACTIONS(2887), - [anon_sym_select] = ACTIONS(2887), - [anon_sym_lock] = ACTIONS(2887), - [anon_sym_rlock] = ACTIONS(2887), - [anon_sym_unsafe] = ACTIONS(2887), - [anon_sym_sql] = ACTIONS(2887), - [sym_int_literal] = ACTIONS(2887), - [sym_float_literal] = ACTIONS(2887), - [sym_rune_literal] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [anon_sym_c_SQUOTE] = ACTIONS(2887), - [anon_sym_c_DQUOTE] = ACTIONS(2887), - [anon_sym_r_SQUOTE] = ACTIONS(2887), - [anon_sym_r_DQUOTE] = ACTIONS(2887), - [sym_pseudo_compile_time_identifier] = ACTIONS(2887), - [anon_sym_shared] = ACTIONS(2887), - [anon_sym_map_LBRACK] = ACTIONS(2887), - [anon_sym_chan] = ACTIONS(2887), - [anon_sym_thread] = ACTIONS(2887), - [anon_sym_atomic] = ACTIONS(2887), - [anon_sym_assert] = ACTIONS(2887), - [anon_sym_defer] = ACTIONS(2887), - [anon_sym_goto] = ACTIONS(2887), - [anon_sym_break] = ACTIONS(2887), - [anon_sym_continue] = ACTIONS(2887), - [anon_sym_return] = ACTIONS(2887), - [anon_sym_DOLLARfor] = ACTIONS(2887), - [anon_sym_for] = ACTIONS(2887), - [anon_sym_POUND] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2887), - [anon_sym_AT_LBRACK] = ACTIONS(2887), + [anon_sym_DOT] = ACTIONS(3030), + [anon_sym_as] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_const] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3030), + [anon_sym___global] = ACTIONS(3030), + [anon_sym_type] = ACTIONS(3030), + [anon_sym_fn] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_SLASH] = ACTIONS(3030), + [anon_sym_PERCENT] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_GT] = ACTIONS(3030), + [anon_sym_EQ_EQ] = ACTIONS(3030), + [anon_sym_BANG_EQ] = ACTIONS(3030), + [anon_sym_LT_EQ] = ACTIONS(3030), + [anon_sym_GT_EQ] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3030), + [anon_sym_union] = ACTIONS(3030), + [anon_sym_pub] = ACTIONS(3030), + [anon_sym_mut] = ACTIONS(3030), + [anon_sym_enum] = ACTIONS(3030), + [anon_sym_interface] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_QMARK] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_go] = ACTIONS(3030), + [anon_sym_spawn] = ACTIONS(3030), + [anon_sym_json_DOTdecode] = ACTIONS(3030), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_LBRACK2] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_CARET] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_LT_DASH] = ACTIONS(3030), + [anon_sym_LT_LT] = ACTIONS(3030), + [anon_sym_GT_GT] = ACTIONS(3030), + [anon_sym_GT_GT_GT] = ACTIONS(3030), + [anon_sym_AMP_CARET] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_PIPE_PIPE] = ACTIONS(3030), + [anon_sym_or] = ACTIONS(3030), + [sym_none] = ACTIONS(3030), + [sym_true] = ACTIONS(3030), + [sym_false] = ACTIONS(3030), + [sym_nil] = ACTIONS(3030), + [anon_sym_QMARK_DOT] = ACTIONS(3030), + [anon_sym_POUND_LBRACK] = ACTIONS(3030), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_DOLLARif] = ACTIONS(3030), + [anon_sym_is] = ACTIONS(3030), + [anon_sym_BANGis] = ACTIONS(3030), + [anon_sym_in] = ACTIONS(3030), + [anon_sym_BANGin] = ACTIONS(3030), + [anon_sym_match] = ACTIONS(3030), + [anon_sym_select] = ACTIONS(3030), + [anon_sym_lock] = ACTIONS(3030), + [anon_sym_rlock] = ACTIONS(3030), + [anon_sym_unsafe] = ACTIONS(3030), + [anon_sym_sql] = ACTIONS(3030), + [sym_int_literal] = ACTIONS(3030), + [sym_float_literal] = ACTIONS(3030), + [sym_rune_literal] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [anon_sym_c_SQUOTE] = ACTIONS(3030), + [anon_sym_c_DQUOTE] = ACTIONS(3030), + [anon_sym_r_SQUOTE] = ACTIONS(3030), + [anon_sym_r_DQUOTE] = ACTIONS(3030), + [sym_pseudo_compile_time_identifier] = ACTIONS(3030), + [anon_sym_shared] = ACTIONS(3030), + [anon_sym_map_LBRACK] = ACTIONS(3030), + [anon_sym_chan] = ACTIONS(3030), + [anon_sym_thread] = ACTIONS(3030), + [anon_sym_atomic] = ACTIONS(3030), + [anon_sym_assert] = ACTIONS(3030), + [anon_sym_defer] = ACTIONS(3030), + [anon_sym_goto] = ACTIONS(3030), + [anon_sym_break] = ACTIONS(3030), + [anon_sym_continue] = ACTIONS(3030), + [anon_sym_return] = ACTIONS(3030), + [anon_sym_DOLLARfor] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3030), + [anon_sym_POUND] = ACTIONS(3030), + [anon_sym_asm] = ACTIONS(3030), + [anon_sym_AT_LBRACK] = ACTIONS(3030), }, [1080] = { [sym_line_comment] = STATE(1080), [sym_block_comment] = STATE(1080), - [ts_builtin_sym_end] = ACTIONS(2117), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LF] = ACTIONS(2119), - [anon_sym_CR] = ACTIONS(2119), - [anon_sym_CR_LF] = ACTIONS(2119), + [ts_builtin_sym_end] = ACTIONS(2935), + [sym_identifier] = ACTIONS(2937), + [anon_sym_LF] = ACTIONS(2937), + [anon_sym_CR] = ACTIONS(2937), + [anon_sym_CR_LF] = ACTIONS(2937), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2119), - [anon_sym_as] = ACTIONS(2119), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_const] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym___global] = ACTIONS(2119), - [anon_sym_type] = ACTIONS(2119), - [anon_sym_PIPE] = ACTIONS(2119), - [anon_sym_fn] = ACTIONS(2119), - [anon_sym_PLUS] = ACTIONS(2119), - [anon_sym_DASH] = ACTIONS(2119), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_SLASH] = ACTIONS(2119), - [anon_sym_PERCENT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2119), - [anon_sym_GT] = ACTIONS(2119), - [anon_sym_EQ_EQ] = ACTIONS(2119), - [anon_sym_BANG_EQ] = ACTIONS(2119), - [anon_sym_LT_EQ] = ACTIONS(2119), - [anon_sym_GT_EQ] = ACTIONS(2119), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_struct] = ACTIONS(2119), - [anon_sym_union] = ACTIONS(2119), - [anon_sym_pub] = ACTIONS(2119), - [anon_sym_mut] = ACTIONS(2119), - [anon_sym_enum] = ACTIONS(2119), - [anon_sym_interface] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_QMARK] = ACTIONS(2119), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_go] = ACTIONS(2119), - [anon_sym_spawn] = ACTIONS(2119), - [anon_sym_json_DOTdecode] = ACTIONS(2119), - [anon_sym_LBRACK2] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_LT_DASH] = ACTIONS(2119), - [anon_sym_LT_LT] = ACTIONS(2119), - [anon_sym_GT_GT] = ACTIONS(2119), - [anon_sym_GT_GT_GT] = ACTIONS(2119), - [anon_sym_AMP_CARET] = ACTIONS(2119), - [anon_sym_AMP_AMP] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2119), - [anon_sym_or] = ACTIONS(2119), - [sym_none] = ACTIONS(2119), - [sym_true] = ACTIONS(2119), - [sym_false] = ACTIONS(2119), - [sym_nil] = ACTIONS(2119), - [anon_sym_QMARK_DOT] = ACTIONS(2119), - [anon_sym_POUND_LBRACK] = ACTIONS(2119), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(2119), - [anon_sym_is] = ACTIONS(2119), - [anon_sym_BANGis] = ACTIONS(2119), - [anon_sym_in] = ACTIONS(2119), - [anon_sym_BANGin] = ACTIONS(2119), - [anon_sym_match] = ACTIONS(2119), - [anon_sym_select] = ACTIONS(2119), - [anon_sym_lock] = ACTIONS(2119), - [anon_sym_rlock] = ACTIONS(2119), - [anon_sym_unsafe] = ACTIONS(2119), - [anon_sym_sql] = ACTIONS(2119), - [sym_int_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), - [sym_rune_literal] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_c_SQUOTE] = ACTIONS(2119), - [anon_sym_c_DQUOTE] = ACTIONS(2119), - [anon_sym_r_SQUOTE] = ACTIONS(2119), - [anon_sym_r_DQUOTE] = ACTIONS(2119), - [sym_pseudo_compile_time_identifier] = ACTIONS(2119), - [anon_sym_shared] = ACTIONS(2119), - [anon_sym_map_LBRACK] = ACTIONS(2119), - [anon_sym_chan] = ACTIONS(2119), - [anon_sym_thread] = ACTIONS(2119), - [anon_sym_atomic] = ACTIONS(2119), - [anon_sym_assert] = ACTIONS(2119), - [anon_sym_defer] = ACTIONS(2119), - [anon_sym_goto] = ACTIONS(2119), - [anon_sym_break] = ACTIONS(2119), - [anon_sym_continue] = ACTIONS(2119), - [anon_sym_return] = ACTIONS(2119), - [anon_sym_DOLLARfor] = ACTIONS(2119), - [anon_sym_for] = ACTIONS(2119), - [anon_sym_POUND] = ACTIONS(2119), - [anon_sym_asm] = ACTIONS(2119), - [anon_sym_AT_LBRACK] = ACTIONS(2119), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_as] = ACTIONS(2937), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(2937), + [anon_sym_const] = ACTIONS(2937), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym___global] = ACTIONS(2937), + [anon_sym_type] = ACTIONS(2937), + [anon_sym_fn] = ACTIONS(2937), + [anon_sym_PLUS] = ACTIONS(2937), + [anon_sym_DASH] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2937), + [anon_sym_SLASH] = ACTIONS(2937), + [anon_sym_PERCENT] = ACTIONS(2937), + [anon_sym_LT] = ACTIONS(2937), + [anon_sym_GT] = ACTIONS(2937), + [anon_sym_EQ_EQ] = ACTIONS(2937), + [anon_sym_BANG_EQ] = ACTIONS(2937), + [anon_sym_LT_EQ] = ACTIONS(2937), + [anon_sym_GT_EQ] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2935), + [anon_sym_struct] = ACTIONS(2937), + [anon_sym_union] = ACTIONS(2937), + [anon_sym_pub] = ACTIONS(2937), + [anon_sym_mut] = ACTIONS(2937), + [anon_sym_enum] = ACTIONS(2937), + [anon_sym_interface] = ACTIONS(2937), + [anon_sym_PLUS_PLUS] = ACTIONS(2937), + [anon_sym_DASH_DASH] = ACTIONS(2937), + [anon_sym_QMARK] = ACTIONS(2937), + [anon_sym_BANG] = ACTIONS(2937), + [anon_sym_go] = ACTIONS(2937), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2937), + [anon_sym_PIPE] = ACTIONS(2937), + [anon_sym_LBRACK2] = ACTIONS(2937), + [anon_sym_TILDE] = ACTIONS(2937), + [anon_sym_CARET] = ACTIONS(2937), + [anon_sym_AMP] = ACTIONS(2937), + [anon_sym_LT_DASH] = ACTIONS(2937), + [anon_sym_LT_LT] = ACTIONS(2937), + [anon_sym_GT_GT] = ACTIONS(2937), + [anon_sym_GT_GT_GT] = ACTIONS(2937), + [anon_sym_AMP_CARET] = ACTIONS(2937), + [anon_sym_AMP_AMP] = ACTIONS(2937), + [anon_sym_PIPE_PIPE] = ACTIONS(2937), + [anon_sym_or] = ACTIONS(2937), + [sym_none] = ACTIONS(2937), + [sym_true] = ACTIONS(2937), + [sym_false] = ACTIONS(2937), + [sym_nil] = ACTIONS(2937), + [anon_sym_QMARK_DOT] = ACTIONS(2937), + [anon_sym_POUND_LBRACK] = ACTIONS(2937), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_DOLLARif] = ACTIONS(2937), + [anon_sym_is] = ACTIONS(2937), + [anon_sym_BANGis] = ACTIONS(2937), + [anon_sym_in] = ACTIONS(2937), + [anon_sym_BANGin] = ACTIONS(2937), + [anon_sym_match] = ACTIONS(2937), + [anon_sym_select] = ACTIONS(2937), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(2937), + [anon_sym_sql] = ACTIONS(2937), + [sym_int_literal] = ACTIONS(2937), + [sym_float_literal] = ACTIONS(2937), + [sym_rune_literal] = ACTIONS(2937), + [anon_sym_SQUOTE] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2937), + [anon_sym_c_SQUOTE] = ACTIONS(2937), + [anon_sym_c_DQUOTE] = ACTIONS(2937), + [anon_sym_r_SQUOTE] = ACTIONS(2937), + [anon_sym_r_DQUOTE] = ACTIONS(2937), + [sym_pseudo_compile_time_identifier] = ACTIONS(2937), + [anon_sym_shared] = ACTIONS(2937), + [anon_sym_map_LBRACK] = ACTIONS(2937), + [anon_sym_chan] = ACTIONS(2937), + [anon_sym_thread] = ACTIONS(2937), + [anon_sym_atomic] = ACTIONS(2937), + [anon_sym_assert] = ACTIONS(2937), + [anon_sym_defer] = ACTIONS(2937), + [anon_sym_goto] = ACTIONS(2937), + [anon_sym_break] = ACTIONS(2937), + [anon_sym_continue] = ACTIONS(2937), + [anon_sym_return] = ACTIONS(2937), + [anon_sym_DOLLARfor] = ACTIONS(2937), + [anon_sym_for] = ACTIONS(2937), + [anon_sym_POUND] = ACTIONS(2937), + [anon_sym_asm] = ACTIONS(2937), + [anon_sym_AT_LBRACK] = ACTIONS(2937), }, [1081] = { [sym_line_comment] = STATE(1081), [sym_block_comment] = STATE(1081), - [ts_builtin_sym_end] = ACTIONS(2881), - [sym_identifier] = ACTIONS(2883), - [anon_sym_LF] = ACTIONS(2883), - [anon_sym_CR] = ACTIONS(2883), - [anon_sym_CR_LF] = ACTIONS(2883), + [ts_builtin_sym_end] = ACTIONS(3068), + [sym_identifier] = ACTIONS(3070), + [anon_sym_LF] = ACTIONS(3070), + [anon_sym_CR] = ACTIONS(3070), + [anon_sym_CR_LF] = ACTIONS(3070), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2883), - [anon_sym_as] = ACTIONS(2883), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2883), - [anon_sym_const] = ACTIONS(2883), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym___global] = ACTIONS(2883), - [anon_sym_type] = ACTIONS(2883), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_fn] = ACTIONS(2883), - [anon_sym_PLUS] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2883), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_PERCENT] = ACTIONS(2883), - [anon_sym_LT] = ACTIONS(2883), - [anon_sym_GT] = ACTIONS(2883), - [anon_sym_EQ_EQ] = ACTIONS(2883), - [anon_sym_BANG_EQ] = ACTIONS(2883), - [anon_sym_LT_EQ] = ACTIONS(2883), - [anon_sym_GT_EQ] = ACTIONS(2883), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2883), - [anon_sym_union] = ACTIONS(2883), - [anon_sym_pub] = ACTIONS(2883), - [anon_sym_mut] = ACTIONS(2883), - [anon_sym_enum] = ACTIONS(2883), - [anon_sym_interface] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2883), - [anon_sym_DASH_DASH] = ACTIONS(2883), - [anon_sym_QMARK] = ACTIONS(2883), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_go] = ACTIONS(2883), - [anon_sym_spawn] = ACTIONS(2883), - [anon_sym_json_DOTdecode] = ACTIONS(2883), - [anon_sym_LBRACK2] = ACTIONS(2883), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_CARET] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2883), - [anon_sym_LT_DASH] = ACTIONS(2883), - [anon_sym_LT_LT] = ACTIONS(2883), - [anon_sym_GT_GT] = ACTIONS(2883), - [anon_sym_GT_GT_GT] = ACTIONS(2883), - [anon_sym_AMP_CARET] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_PIPE_PIPE] = ACTIONS(2883), - [anon_sym_or] = ACTIONS(2883), - [sym_none] = ACTIONS(2883), - [sym_true] = ACTIONS(2883), - [sym_false] = ACTIONS(2883), - [sym_nil] = ACTIONS(2883), - [anon_sym_QMARK_DOT] = ACTIONS(2883), - [anon_sym_POUND_LBRACK] = ACTIONS(2883), - [anon_sym_if] = ACTIONS(2883), - [anon_sym_DOLLARif] = ACTIONS(2883), - [anon_sym_is] = ACTIONS(2883), - [anon_sym_BANGis] = ACTIONS(2883), - [anon_sym_in] = ACTIONS(2883), - [anon_sym_BANGin] = ACTIONS(2883), - [anon_sym_match] = ACTIONS(2883), - [anon_sym_select] = ACTIONS(2883), - [anon_sym_lock] = ACTIONS(2883), - [anon_sym_rlock] = ACTIONS(2883), - [anon_sym_unsafe] = ACTIONS(2883), - [anon_sym_sql] = ACTIONS(2883), - [sym_int_literal] = ACTIONS(2883), - [sym_float_literal] = ACTIONS(2883), - [sym_rune_literal] = ACTIONS(2883), - [anon_sym_SQUOTE] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [anon_sym_c_SQUOTE] = ACTIONS(2883), - [anon_sym_c_DQUOTE] = ACTIONS(2883), - [anon_sym_r_SQUOTE] = ACTIONS(2883), - [anon_sym_r_DQUOTE] = ACTIONS(2883), - [sym_pseudo_compile_time_identifier] = ACTIONS(2883), - [anon_sym_shared] = ACTIONS(2883), - [anon_sym_map_LBRACK] = ACTIONS(2883), - [anon_sym_chan] = ACTIONS(2883), - [anon_sym_thread] = ACTIONS(2883), - [anon_sym_atomic] = ACTIONS(2883), - [anon_sym_assert] = ACTIONS(2883), - [anon_sym_defer] = ACTIONS(2883), - [anon_sym_goto] = ACTIONS(2883), - [anon_sym_break] = ACTIONS(2883), - [anon_sym_continue] = ACTIONS(2883), - [anon_sym_return] = ACTIONS(2883), - [anon_sym_DOLLARfor] = ACTIONS(2883), - [anon_sym_for] = ACTIONS(2883), - [anon_sym_POUND] = ACTIONS(2883), - [anon_sym_asm] = ACTIONS(2883), - [anon_sym_AT_LBRACK] = ACTIONS(2883), + [anon_sym_DOT] = ACTIONS(3070), + [anon_sym_as] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(3070), + [anon_sym_COMMA] = ACTIONS(3070), + [anon_sym_const] = ACTIONS(3070), + [anon_sym_LPAREN] = ACTIONS(3070), + [anon_sym___global] = ACTIONS(3070), + [anon_sym_type] = ACTIONS(3070), + [anon_sym_fn] = ACTIONS(3070), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(3070), + [anon_sym_SLASH] = ACTIONS(3070), + [anon_sym_PERCENT] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(3070), + [anon_sym_GT] = ACTIONS(3070), + [anon_sym_EQ_EQ] = ACTIONS(3070), + [anon_sym_BANG_EQ] = ACTIONS(3070), + [anon_sym_LT_EQ] = ACTIONS(3070), + [anon_sym_GT_EQ] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_struct] = ACTIONS(3070), + [anon_sym_union] = ACTIONS(3070), + [anon_sym_pub] = ACTIONS(3070), + [anon_sym_mut] = ACTIONS(3070), + [anon_sym_enum] = ACTIONS(3070), + [anon_sym_interface] = ACTIONS(3070), + [anon_sym_PLUS_PLUS] = ACTIONS(3070), + [anon_sym_DASH_DASH] = ACTIONS(3070), + [anon_sym_QMARK] = ACTIONS(3070), + [anon_sym_BANG] = ACTIONS(3070), + [anon_sym_go] = ACTIONS(3070), + [anon_sym_spawn] = ACTIONS(3070), + [anon_sym_json_DOTdecode] = ACTIONS(3070), + [anon_sym_PIPE] = ACTIONS(3070), + [anon_sym_LBRACK2] = ACTIONS(3070), + [anon_sym_TILDE] = ACTIONS(3070), + [anon_sym_CARET] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT_DASH] = ACTIONS(3070), + [anon_sym_LT_LT] = ACTIONS(3070), + [anon_sym_GT_GT] = ACTIONS(3070), + [anon_sym_GT_GT_GT] = ACTIONS(3070), + [anon_sym_AMP_CARET] = ACTIONS(3070), + [anon_sym_AMP_AMP] = ACTIONS(3070), + [anon_sym_PIPE_PIPE] = ACTIONS(3070), + [anon_sym_or] = ACTIONS(3070), + [sym_none] = ACTIONS(3070), + [sym_true] = ACTIONS(3070), + [sym_false] = ACTIONS(3070), + [sym_nil] = ACTIONS(3070), + [anon_sym_QMARK_DOT] = ACTIONS(3070), + [anon_sym_POUND_LBRACK] = ACTIONS(3070), + [anon_sym_if] = ACTIONS(3070), + [anon_sym_DOLLARif] = ACTIONS(3070), + [anon_sym_is] = ACTIONS(3070), + [anon_sym_BANGis] = ACTIONS(3070), + [anon_sym_in] = ACTIONS(3070), + [anon_sym_BANGin] = ACTIONS(3070), + [anon_sym_match] = ACTIONS(3070), + [anon_sym_select] = ACTIONS(3070), + [anon_sym_lock] = ACTIONS(3070), + [anon_sym_rlock] = ACTIONS(3070), + [anon_sym_unsafe] = ACTIONS(3070), + [anon_sym_sql] = ACTIONS(3070), + [sym_int_literal] = ACTIONS(3070), + [sym_float_literal] = ACTIONS(3070), + [sym_rune_literal] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_c_SQUOTE] = ACTIONS(3070), + [anon_sym_c_DQUOTE] = ACTIONS(3070), + [anon_sym_r_SQUOTE] = ACTIONS(3070), + [anon_sym_r_DQUOTE] = ACTIONS(3070), + [sym_pseudo_compile_time_identifier] = ACTIONS(3070), + [anon_sym_shared] = ACTIONS(3070), + [anon_sym_map_LBRACK] = ACTIONS(3070), + [anon_sym_chan] = ACTIONS(3070), + [anon_sym_thread] = ACTIONS(3070), + [anon_sym_atomic] = ACTIONS(3070), + [anon_sym_assert] = ACTIONS(3070), + [anon_sym_defer] = ACTIONS(3070), + [anon_sym_goto] = ACTIONS(3070), + [anon_sym_break] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(3070), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_DOLLARfor] = ACTIONS(3070), + [anon_sym_for] = ACTIONS(3070), + [anon_sym_POUND] = ACTIONS(3070), + [anon_sym_asm] = ACTIONS(3070), + [anon_sym_AT_LBRACK] = ACTIONS(3070), }, [1082] = { [sym_line_comment] = STATE(1082), [sym_block_comment] = STATE(1082), - [ts_builtin_sym_end] = ACTIONS(2231), - [sym_identifier] = ACTIONS(2233), - [anon_sym_LF] = ACTIONS(2233), - [anon_sym_CR] = ACTIONS(2233), - [anon_sym_CR_LF] = ACTIONS(2233), + [ts_builtin_sym_end] = ACTIONS(2739), + [sym_identifier] = ACTIONS(2741), + [anon_sym_LF] = ACTIONS(2741), + [anon_sym_CR] = ACTIONS(2741), + [anon_sym_CR_LF] = ACTIONS(2741), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_as] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_COMMA] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym___global] = ACTIONS(2233), - [anon_sym_type] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2233), - [anon_sym_fn] = ACTIONS(2233), - [anon_sym_PLUS] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2233), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_SLASH] = ACTIONS(2233), - [anon_sym_PERCENT] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2233), - [anon_sym_GT] = ACTIONS(2233), - [anon_sym_EQ_EQ] = ACTIONS(2233), - [anon_sym_BANG_EQ] = ACTIONS(2233), - [anon_sym_LT_EQ] = ACTIONS(2233), - [anon_sym_GT_EQ] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2231), - [anon_sym_struct] = ACTIONS(2233), - [anon_sym_union] = ACTIONS(2233), - [anon_sym_pub] = ACTIONS(2233), - [anon_sym_mut] = ACTIONS(2233), - [anon_sym_enum] = ACTIONS(2233), - [anon_sym_interface] = ACTIONS(2233), - [anon_sym_PLUS_PLUS] = ACTIONS(2233), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [anon_sym_QMARK] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2233), - [anon_sym_go] = ACTIONS(2233), - [anon_sym_spawn] = ACTIONS(2233), - [anon_sym_json_DOTdecode] = ACTIONS(2233), - [anon_sym_LBRACK2] = ACTIONS(2233), - [anon_sym_TILDE] = ACTIONS(2233), - [anon_sym_CARET] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_LT_DASH] = ACTIONS(2233), - [anon_sym_LT_LT] = ACTIONS(2233), - [anon_sym_GT_GT] = ACTIONS(2233), - [anon_sym_GT_GT_GT] = ACTIONS(2233), - [anon_sym_AMP_CARET] = ACTIONS(2233), - [anon_sym_AMP_AMP] = ACTIONS(2233), - [anon_sym_PIPE_PIPE] = ACTIONS(2233), - [anon_sym_or] = ACTIONS(2233), - [sym_none] = ACTIONS(2233), - [sym_true] = ACTIONS(2233), - [sym_false] = ACTIONS(2233), - [sym_nil] = ACTIONS(2233), - [anon_sym_QMARK_DOT] = ACTIONS(2233), - [anon_sym_POUND_LBRACK] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_DOLLARif] = ACTIONS(2233), - [anon_sym_is] = ACTIONS(2233), - [anon_sym_BANGis] = ACTIONS(2233), - [anon_sym_in] = ACTIONS(2233), - [anon_sym_BANGin] = ACTIONS(2233), - [anon_sym_match] = ACTIONS(2233), - [anon_sym_select] = ACTIONS(2233), - [anon_sym_lock] = ACTIONS(2233), - [anon_sym_rlock] = ACTIONS(2233), - [anon_sym_unsafe] = ACTIONS(2233), - [anon_sym_sql] = ACTIONS(2233), - [sym_int_literal] = ACTIONS(2233), - [sym_float_literal] = ACTIONS(2233), - [sym_rune_literal] = ACTIONS(2233), - [anon_sym_SQUOTE] = ACTIONS(2233), - [anon_sym_DQUOTE] = ACTIONS(2233), - [anon_sym_c_SQUOTE] = ACTIONS(2233), - [anon_sym_c_DQUOTE] = ACTIONS(2233), - [anon_sym_r_SQUOTE] = ACTIONS(2233), - [anon_sym_r_DQUOTE] = ACTIONS(2233), - [sym_pseudo_compile_time_identifier] = ACTIONS(2233), - [anon_sym_shared] = ACTIONS(2233), - [anon_sym_map_LBRACK] = ACTIONS(2233), - [anon_sym_chan] = ACTIONS(2233), - [anon_sym_thread] = ACTIONS(2233), - [anon_sym_atomic] = ACTIONS(2233), - [anon_sym_assert] = ACTIONS(2233), - [anon_sym_defer] = ACTIONS(2233), - [anon_sym_goto] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_DOLLARfor] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_POUND] = ACTIONS(2233), - [anon_sym_asm] = ACTIONS(2233), - [anon_sym_AT_LBRACK] = ACTIONS(2233), + [anon_sym_DOT] = ACTIONS(2741), + [anon_sym_as] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_COMMA] = ACTIONS(2741), + [anon_sym_const] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2741), + [anon_sym___global] = ACTIONS(2741), + [anon_sym_type] = ACTIONS(2741), + [anon_sym_fn] = ACTIONS(2741), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_STAR] = ACTIONS(2741), + [anon_sym_SLASH] = ACTIONS(2741), + [anon_sym_PERCENT] = ACTIONS(2741), + [anon_sym_LT] = ACTIONS(2741), + [anon_sym_GT] = ACTIONS(2741), + [anon_sym_EQ_EQ] = ACTIONS(2741), + [anon_sym_BANG_EQ] = ACTIONS(2741), + [anon_sym_LT_EQ] = ACTIONS(2741), + [anon_sym_GT_EQ] = ACTIONS(2741), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_struct] = ACTIONS(2741), + [anon_sym_union] = ACTIONS(2741), + [anon_sym_pub] = ACTIONS(2741), + [anon_sym_mut] = ACTIONS(2741), + [anon_sym_enum] = ACTIONS(2741), + [anon_sym_interface] = ACTIONS(2741), + [anon_sym_PLUS_PLUS] = ACTIONS(2741), + [anon_sym_DASH_DASH] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(2741), + [anon_sym_BANG] = ACTIONS(2741), + [anon_sym_go] = ACTIONS(2741), + [anon_sym_spawn] = ACTIONS(2741), + [anon_sym_json_DOTdecode] = ACTIONS(2741), + [anon_sym_PIPE] = ACTIONS(2741), + [anon_sym_LBRACK2] = ACTIONS(2741), + [anon_sym_TILDE] = ACTIONS(2741), + [anon_sym_CARET] = ACTIONS(2741), + [anon_sym_AMP] = ACTIONS(2741), + [anon_sym_LT_DASH] = ACTIONS(2741), + [anon_sym_LT_LT] = ACTIONS(2741), + [anon_sym_GT_GT] = ACTIONS(2741), + [anon_sym_GT_GT_GT] = ACTIONS(2741), + [anon_sym_AMP_CARET] = ACTIONS(2741), + [anon_sym_AMP_AMP] = ACTIONS(2741), + [anon_sym_PIPE_PIPE] = ACTIONS(2741), + [anon_sym_or] = ACTIONS(2741), + [sym_none] = ACTIONS(2741), + [sym_true] = ACTIONS(2741), + [sym_false] = ACTIONS(2741), + [sym_nil] = ACTIONS(2741), + [anon_sym_QMARK_DOT] = ACTIONS(2741), + [anon_sym_POUND_LBRACK] = ACTIONS(2741), + [anon_sym_if] = ACTIONS(2741), + [anon_sym_DOLLARif] = ACTIONS(2741), + [anon_sym_is] = ACTIONS(2741), + [anon_sym_BANGis] = ACTIONS(2741), + [anon_sym_in] = ACTIONS(2741), + [anon_sym_BANGin] = ACTIONS(2741), + [anon_sym_match] = ACTIONS(2741), + [anon_sym_select] = ACTIONS(2741), + [anon_sym_lock] = ACTIONS(2741), + [anon_sym_rlock] = ACTIONS(2741), + [anon_sym_unsafe] = ACTIONS(2741), + [anon_sym_sql] = ACTIONS(2741), + [sym_int_literal] = ACTIONS(2741), + [sym_float_literal] = ACTIONS(2741), + [sym_rune_literal] = ACTIONS(2741), + [anon_sym_SQUOTE] = ACTIONS(2741), + [anon_sym_DQUOTE] = ACTIONS(2741), + [anon_sym_c_SQUOTE] = ACTIONS(2741), + [anon_sym_c_DQUOTE] = ACTIONS(2741), + [anon_sym_r_SQUOTE] = ACTIONS(2741), + [anon_sym_r_DQUOTE] = ACTIONS(2741), + [sym_pseudo_compile_time_identifier] = ACTIONS(2741), + [anon_sym_shared] = ACTIONS(2741), + [anon_sym_map_LBRACK] = ACTIONS(2741), + [anon_sym_chan] = ACTIONS(2741), + [anon_sym_thread] = ACTIONS(2741), + [anon_sym_atomic] = ACTIONS(2741), + [anon_sym_assert] = ACTIONS(2741), + [anon_sym_defer] = ACTIONS(2741), + [anon_sym_goto] = ACTIONS(2741), + [anon_sym_break] = ACTIONS(2741), + [anon_sym_continue] = ACTIONS(2741), + [anon_sym_return] = ACTIONS(2741), + [anon_sym_DOLLARfor] = ACTIONS(2741), + [anon_sym_for] = ACTIONS(2741), + [anon_sym_POUND] = ACTIONS(2741), + [anon_sym_asm] = ACTIONS(2741), + [anon_sym_AT_LBRACK] = ACTIONS(2741), }, [1083] = { [sym_line_comment] = STATE(1083), [sym_block_comment] = STATE(1083), - [ts_builtin_sym_end] = ACTIONS(2239), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LF] = ACTIONS(2241), - [anon_sym_CR] = ACTIONS(2241), - [anon_sym_CR_LF] = ACTIONS(2241), + [ts_builtin_sym_end] = ACTIONS(2361), + [sym_identifier] = ACTIONS(2363), + [anon_sym_LF] = ACTIONS(2363), + [anon_sym_CR] = ACTIONS(2363), + [anon_sym_CR_LF] = ACTIONS(2363), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2241), - [anon_sym_as] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_COMMA] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym___global] = ACTIONS(2241), - [anon_sym_type] = ACTIONS(2241), - [anon_sym_PIPE] = ACTIONS(2241), - [anon_sym_fn] = ACTIONS(2241), - [anon_sym_PLUS] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_STAR] = ACTIONS(2241), - [anon_sym_SLASH] = ACTIONS(2241), - [anon_sym_PERCENT] = ACTIONS(2241), - [anon_sym_LT] = ACTIONS(2241), - [anon_sym_GT] = ACTIONS(2241), - [anon_sym_EQ_EQ] = ACTIONS(2241), - [anon_sym_BANG_EQ] = ACTIONS(2241), - [anon_sym_LT_EQ] = ACTIONS(2241), - [anon_sym_GT_EQ] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2239), - [anon_sym_struct] = ACTIONS(2241), - [anon_sym_union] = ACTIONS(2241), - [anon_sym_pub] = ACTIONS(2241), - [anon_sym_mut] = ACTIONS(2241), - [anon_sym_enum] = ACTIONS(2241), - [anon_sym_interface] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_QMARK] = ACTIONS(2241), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_go] = ACTIONS(2241), - [anon_sym_spawn] = ACTIONS(2241), - [anon_sym_json_DOTdecode] = ACTIONS(2241), - [anon_sym_LBRACK2] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2241), - [anon_sym_LT_DASH] = ACTIONS(2241), - [anon_sym_LT_LT] = ACTIONS(2241), - [anon_sym_GT_GT] = ACTIONS(2241), - [anon_sym_GT_GT_GT] = ACTIONS(2241), - [anon_sym_AMP_CARET] = ACTIONS(2241), - [anon_sym_AMP_AMP] = ACTIONS(2241), - [anon_sym_PIPE_PIPE] = ACTIONS(2241), - [anon_sym_or] = ACTIONS(2241), - [sym_none] = ACTIONS(2241), - [sym_true] = ACTIONS(2241), - [sym_false] = ACTIONS(2241), - [sym_nil] = ACTIONS(2241), - [anon_sym_QMARK_DOT] = ACTIONS(2241), - [anon_sym_POUND_LBRACK] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_DOLLARif] = ACTIONS(2241), - [anon_sym_is] = ACTIONS(2241), - [anon_sym_BANGis] = ACTIONS(2241), - [anon_sym_in] = ACTIONS(2241), - [anon_sym_BANGin] = ACTIONS(2241), - [anon_sym_match] = ACTIONS(2241), - [anon_sym_select] = ACTIONS(2241), - [anon_sym_lock] = ACTIONS(2241), - [anon_sym_rlock] = ACTIONS(2241), - [anon_sym_unsafe] = ACTIONS(2241), - [anon_sym_sql] = ACTIONS(2241), - [sym_int_literal] = ACTIONS(2241), - [sym_float_literal] = ACTIONS(2241), - [sym_rune_literal] = ACTIONS(2241), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_DQUOTE] = ACTIONS(2241), - [anon_sym_c_SQUOTE] = ACTIONS(2241), - [anon_sym_c_DQUOTE] = ACTIONS(2241), - [anon_sym_r_SQUOTE] = ACTIONS(2241), - [anon_sym_r_DQUOTE] = ACTIONS(2241), - [sym_pseudo_compile_time_identifier] = ACTIONS(2241), - [anon_sym_shared] = ACTIONS(2241), - [anon_sym_map_LBRACK] = ACTIONS(2241), - [anon_sym_chan] = ACTIONS(2241), - [anon_sym_thread] = ACTIONS(2241), - [anon_sym_atomic] = ACTIONS(2241), - [anon_sym_assert] = ACTIONS(2241), - [anon_sym_defer] = ACTIONS(2241), - [anon_sym_goto] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_DOLLARfor] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_POUND] = ACTIONS(2241), - [anon_sym_asm] = ACTIONS(2241), - [anon_sym_AT_LBRACK] = ACTIONS(2241), + [anon_sym_DOT] = ACTIONS(2363), + [anon_sym_as] = ACTIONS(2363), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_COMMA] = ACTIONS(2363), + [anon_sym_const] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym___global] = ACTIONS(2363), + [anon_sym_type] = ACTIONS(2363), + [anon_sym_fn] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(2363), + [anon_sym_SLASH] = ACTIONS(2363), + [anon_sym_PERCENT] = ACTIONS(2363), + [anon_sym_LT] = ACTIONS(2363), + [anon_sym_GT] = ACTIONS(2363), + [anon_sym_EQ_EQ] = ACTIONS(2363), + [anon_sym_BANG_EQ] = ACTIONS(2363), + [anon_sym_LT_EQ] = ACTIONS(2363), + [anon_sym_GT_EQ] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_struct] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), + [anon_sym_pub] = ACTIONS(2363), + [anon_sym_mut] = ACTIONS(2363), + [anon_sym_enum] = ACTIONS(2363), + [anon_sym_interface] = ACTIONS(2363), + [anon_sym_PLUS_PLUS] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(2363), + [anon_sym_QMARK] = ACTIONS(2363), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_go] = ACTIONS(2363), + [anon_sym_spawn] = ACTIONS(2363), + [anon_sym_json_DOTdecode] = ACTIONS(2363), + [anon_sym_PIPE] = ACTIONS(2363), + [anon_sym_LBRACK2] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2363), + [anon_sym_CARET] = ACTIONS(2363), + [anon_sym_AMP] = ACTIONS(2363), + [anon_sym_LT_DASH] = ACTIONS(2363), + [anon_sym_LT_LT] = ACTIONS(2363), + [anon_sym_GT_GT] = ACTIONS(2363), + [anon_sym_GT_GT_GT] = ACTIONS(2363), + [anon_sym_AMP_CARET] = ACTIONS(2363), + [anon_sym_AMP_AMP] = ACTIONS(2363), + [anon_sym_PIPE_PIPE] = ACTIONS(2363), + [anon_sym_or] = ACTIONS(2363), + [sym_none] = ACTIONS(2363), + [sym_true] = ACTIONS(2363), + [sym_false] = ACTIONS(2363), + [sym_nil] = ACTIONS(2363), + [anon_sym_QMARK_DOT] = ACTIONS(2363), + [anon_sym_POUND_LBRACK] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_DOLLARif] = ACTIONS(2363), + [anon_sym_is] = ACTIONS(2363), + [anon_sym_BANGis] = ACTIONS(2363), + [anon_sym_in] = ACTIONS(2363), + [anon_sym_BANGin] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), + [anon_sym_select] = ACTIONS(2363), + [anon_sym_lock] = ACTIONS(2363), + [anon_sym_rlock] = ACTIONS(2363), + [anon_sym_unsafe] = ACTIONS(2363), + [anon_sym_sql] = ACTIONS(2363), + [sym_int_literal] = ACTIONS(2363), + [sym_float_literal] = ACTIONS(2363), + [sym_rune_literal] = ACTIONS(2363), + [anon_sym_SQUOTE] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), + [anon_sym_c_SQUOTE] = ACTIONS(2363), + [anon_sym_c_DQUOTE] = ACTIONS(2363), + [anon_sym_r_SQUOTE] = ACTIONS(2363), + [anon_sym_r_DQUOTE] = ACTIONS(2363), + [sym_pseudo_compile_time_identifier] = ACTIONS(2363), + [anon_sym_shared] = ACTIONS(2363), + [anon_sym_map_LBRACK] = ACTIONS(2363), + [anon_sym_chan] = ACTIONS(2363), + [anon_sym_thread] = ACTIONS(2363), + [anon_sym_atomic] = ACTIONS(2363), + [anon_sym_assert] = ACTIONS(2363), + [anon_sym_defer] = ACTIONS(2363), + [anon_sym_goto] = ACTIONS(2363), + [anon_sym_break] = ACTIONS(2363), + [anon_sym_continue] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_DOLLARfor] = ACTIONS(2363), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_POUND] = ACTIONS(2363), + [anon_sym_asm] = ACTIONS(2363), + [anon_sym_AT_LBRACK] = ACTIONS(2363), }, [1084] = { [sym_line_comment] = STATE(1084), [sym_block_comment] = STATE(1084), - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2863), - [anon_sym_LF] = ACTIONS(2863), - [anon_sym_CR] = ACTIONS(2863), - [anon_sym_CR_LF] = ACTIONS(2863), + [ts_builtin_sym_end] = ACTIONS(2687), + [sym_identifier] = ACTIONS(2689), + [anon_sym_LF] = ACTIONS(2689), + [anon_sym_CR] = ACTIONS(2689), + [anon_sym_CR_LF] = ACTIONS(2689), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2863), - [anon_sym_as] = ACTIONS(2863), - [anon_sym_LBRACE] = ACTIONS(2863), - [anon_sym_COMMA] = ACTIONS(2863), - [anon_sym_const] = ACTIONS(2863), - [anon_sym_LPAREN] = ACTIONS(2863), - [anon_sym___global] = ACTIONS(2863), - [anon_sym_type] = ACTIONS(2863), - [anon_sym_PIPE] = ACTIONS(2863), - [anon_sym_fn] = ACTIONS(2863), - [anon_sym_PLUS] = ACTIONS(2863), - [anon_sym_DASH] = ACTIONS(2863), - [anon_sym_STAR] = ACTIONS(2863), - [anon_sym_SLASH] = ACTIONS(2863), - [anon_sym_PERCENT] = ACTIONS(2863), - [anon_sym_LT] = ACTIONS(2863), - [anon_sym_GT] = ACTIONS(2863), - [anon_sym_EQ_EQ] = ACTIONS(2863), - [anon_sym_BANG_EQ] = ACTIONS(2863), - [anon_sym_LT_EQ] = ACTIONS(2863), - [anon_sym_GT_EQ] = ACTIONS(2863), - [anon_sym_LBRACK] = ACTIONS(2861), - [anon_sym_struct] = ACTIONS(2863), - [anon_sym_union] = ACTIONS(2863), - [anon_sym_pub] = ACTIONS(2863), - [anon_sym_mut] = ACTIONS(2863), - [anon_sym_enum] = ACTIONS(2863), - [anon_sym_interface] = ACTIONS(2863), - [anon_sym_PLUS_PLUS] = ACTIONS(2863), - [anon_sym_DASH_DASH] = ACTIONS(2863), - [anon_sym_QMARK] = ACTIONS(2863), - [anon_sym_BANG] = ACTIONS(2863), - [anon_sym_go] = ACTIONS(2863), - [anon_sym_spawn] = ACTIONS(2863), - [anon_sym_json_DOTdecode] = ACTIONS(2863), - [anon_sym_LBRACK2] = ACTIONS(2863), - [anon_sym_TILDE] = ACTIONS(2863), - [anon_sym_CARET] = ACTIONS(2863), - [anon_sym_AMP] = ACTIONS(2863), - [anon_sym_LT_DASH] = ACTIONS(2863), - [anon_sym_LT_LT] = ACTIONS(2863), - [anon_sym_GT_GT] = ACTIONS(2863), - [anon_sym_GT_GT_GT] = ACTIONS(2863), - [anon_sym_AMP_CARET] = ACTIONS(2863), - [anon_sym_AMP_AMP] = ACTIONS(2863), - [anon_sym_PIPE_PIPE] = ACTIONS(2863), - [anon_sym_or] = ACTIONS(2863), - [sym_none] = ACTIONS(2863), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [sym_nil] = ACTIONS(2863), - [anon_sym_QMARK_DOT] = ACTIONS(2863), - [anon_sym_POUND_LBRACK] = ACTIONS(2863), - [anon_sym_if] = ACTIONS(2863), - [anon_sym_DOLLARif] = ACTIONS(2863), - [anon_sym_is] = ACTIONS(2863), - [anon_sym_BANGis] = ACTIONS(2863), - [anon_sym_in] = ACTIONS(2863), - [anon_sym_BANGin] = ACTIONS(2863), - [anon_sym_match] = ACTIONS(2863), - [anon_sym_select] = ACTIONS(2863), - [anon_sym_lock] = ACTIONS(2863), - [anon_sym_rlock] = ACTIONS(2863), - [anon_sym_unsafe] = ACTIONS(2863), - [anon_sym_sql] = ACTIONS(2863), - [sym_int_literal] = ACTIONS(2863), - [sym_float_literal] = ACTIONS(2863), - [sym_rune_literal] = ACTIONS(2863), - [anon_sym_SQUOTE] = ACTIONS(2863), - [anon_sym_DQUOTE] = ACTIONS(2863), - [anon_sym_c_SQUOTE] = ACTIONS(2863), - [anon_sym_c_DQUOTE] = ACTIONS(2863), - [anon_sym_r_SQUOTE] = ACTIONS(2863), - [anon_sym_r_DQUOTE] = ACTIONS(2863), - [sym_pseudo_compile_time_identifier] = ACTIONS(2863), - [anon_sym_shared] = ACTIONS(2863), - [anon_sym_map_LBRACK] = ACTIONS(2863), - [anon_sym_chan] = ACTIONS(2863), - [anon_sym_thread] = ACTIONS(2863), - [anon_sym_atomic] = ACTIONS(2863), - [anon_sym_assert] = ACTIONS(2863), - [anon_sym_defer] = ACTIONS(2863), - [anon_sym_goto] = ACTIONS(2863), - [anon_sym_break] = ACTIONS(2863), - [anon_sym_continue] = ACTIONS(2863), - [anon_sym_return] = ACTIONS(2863), - [anon_sym_DOLLARfor] = ACTIONS(2863), - [anon_sym_for] = ACTIONS(2863), - [anon_sym_POUND] = ACTIONS(2863), - [anon_sym_asm] = ACTIONS(2863), - [anon_sym_AT_LBRACK] = ACTIONS(2863), + [anon_sym_DOT] = ACTIONS(2689), + [anon_sym_as] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2689), + [anon_sym_COMMA] = ACTIONS(2689), + [anon_sym_const] = ACTIONS(2689), + [anon_sym_LPAREN] = ACTIONS(2689), + [anon_sym___global] = ACTIONS(2689), + [anon_sym_type] = ACTIONS(2689), + [anon_sym_fn] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_SLASH] = ACTIONS(2689), + [anon_sym_PERCENT] = ACTIONS(2689), + [anon_sym_LT] = ACTIONS(2689), + [anon_sym_GT] = ACTIONS(2689), + [anon_sym_EQ_EQ] = ACTIONS(2689), + [anon_sym_BANG_EQ] = ACTIONS(2689), + [anon_sym_LT_EQ] = ACTIONS(2689), + [anon_sym_GT_EQ] = ACTIONS(2689), + [anon_sym_LBRACK] = ACTIONS(2687), + [anon_sym_struct] = ACTIONS(2689), + [anon_sym_union] = ACTIONS(2689), + [anon_sym_pub] = ACTIONS(2689), + [anon_sym_mut] = ACTIONS(2689), + [anon_sym_enum] = ACTIONS(2689), + [anon_sym_interface] = ACTIONS(2689), + [anon_sym_PLUS_PLUS] = ACTIONS(2689), + [anon_sym_DASH_DASH] = ACTIONS(2689), + [anon_sym_QMARK] = ACTIONS(2689), + [anon_sym_BANG] = ACTIONS(2689), + [anon_sym_go] = ACTIONS(2689), + [anon_sym_spawn] = ACTIONS(2689), + [anon_sym_json_DOTdecode] = ACTIONS(2689), + [anon_sym_PIPE] = ACTIONS(2689), + [anon_sym_LBRACK2] = ACTIONS(2689), + [anon_sym_TILDE] = ACTIONS(2689), + [anon_sym_CARET] = ACTIONS(2689), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_LT_DASH] = ACTIONS(2689), + [anon_sym_LT_LT] = ACTIONS(2689), + [anon_sym_GT_GT] = ACTIONS(2689), + [anon_sym_GT_GT_GT] = ACTIONS(2689), + [anon_sym_AMP_CARET] = ACTIONS(2689), + [anon_sym_AMP_AMP] = ACTIONS(2689), + [anon_sym_PIPE_PIPE] = ACTIONS(2689), + [anon_sym_or] = ACTIONS(2689), + [sym_none] = ACTIONS(2689), + [sym_true] = ACTIONS(2689), + [sym_false] = ACTIONS(2689), + [sym_nil] = ACTIONS(2689), + [anon_sym_QMARK_DOT] = ACTIONS(2689), + [anon_sym_POUND_LBRACK] = ACTIONS(2689), + [anon_sym_if] = ACTIONS(2689), + [anon_sym_DOLLARif] = ACTIONS(2689), + [anon_sym_is] = ACTIONS(2689), + [anon_sym_BANGis] = ACTIONS(2689), + [anon_sym_in] = ACTIONS(2689), + [anon_sym_BANGin] = ACTIONS(2689), + [anon_sym_match] = ACTIONS(2689), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2689), + [anon_sym_rlock] = ACTIONS(2689), + [anon_sym_unsafe] = ACTIONS(2689), + [anon_sym_sql] = ACTIONS(2689), + [sym_int_literal] = ACTIONS(2689), + [sym_float_literal] = ACTIONS(2689), + [sym_rune_literal] = ACTIONS(2689), + [anon_sym_SQUOTE] = ACTIONS(2689), + [anon_sym_DQUOTE] = ACTIONS(2689), + [anon_sym_c_SQUOTE] = ACTIONS(2689), + [anon_sym_c_DQUOTE] = ACTIONS(2689), + [anon_sym_r_SQUOTE] = ACTIONS(2689), + [anon_sym_r_DQUOTE] = ACTIONS(2689), + [sym_pseudo_compile_time_identifier] = ACTIONS(2689), + [anon_sym_shared] = ACTIONS(2689), + [anon_sym_map_LBRACK] = ACTIONS(2689), + [anon_sym_chan] = ACTIONS(2689), + [anon_sym_thread] = ACTIONS(2689), + [anon_sym_atomic] = ACTIONS(2689), + [anon_sym_assert] = ACTIONS(2689), + [anon_sym_defer] = ACTIONS(2689), + [anon_sym_goto] = ACTIONS(2689), + [anon_sym_break] = ACTIONS(2689), + [anon_sym_continue] = ACTIONS(2689), + [anon_sym_return] = ACTIONS(2689), + [anon_sym_DOLLARfor] = ACTIONS(2689), + [anon_sym_for] = ACTIONS(2689), + [anon_sym_POUND] = ACTIONS(2689), + [anon_sym_asm] = ACTIONS(2689), + [anon_sym_AT_LBRACK] = ACTIONS(2689), }, [1085] = { [sym_line_comment] = STATE(1085), [sym_block_comment] = STATE(1085), - [ts_builtin_sym_end] = ACTIONS(2505), - [sym_identifier] = ACTIONS(2507), - [anon_sym_LF] = ACTIONS(2507), - [anon_sym_CR] = ACTIONS(2507), - [anon_sym_CR_LF] = ACTIONS(2507), + [ts_builtin_sym_end] = ACTIONS(2093), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LF] = ACTIONS(2095), + [anon_sym_CR] = ACTIONS(2095), + [anon_sym_CR_LF] = ACTIONS(2095), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2507), - [anon_sym_as] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_COMMA] = ACTIONS(2507), - [anon_sym_const] = ACTIONS(2507), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym___global] = ACTIONS(2507), - [anon_sym_type] = ACTIONS(2507), - [anon_sym_PIPE] = ACTIONS(2507), - [anon_sym_fn] = ACTIONS(2507), - [anon_sym_PLUS] = ACTIONS(2507), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_STAR] = ACTIONS(2507), - [anon_sym_SLASH] = ACTIONS(2507), - [anon_sym_PERCENT] = ACTIONS(2507), - [anon_sym_LT] = ACTIONS(2507), - [anon_sym_GT] = ACTIONS(2507), - [anon_sym_EQ_EQ] = ACTIONS(2507), - [anon_sym_BANG_EQ] = ACTIONS(2507), - [anon_sym_LT_EQ] = ACTIONS(2507), - [anon_sym_GT_EQ] = ACTIONS(2507), - [anon_sym_LBRACK] = ACTIONS(2505), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_union] = ACTIONS(2507), - [anon_sym_pub] = ACTIONS(2507), - [anon_sym_mut] = ACTIONS(2507), - [anon_sym_enum] = ACTIONS(2507), - [anon_sym_interface] = ACTIONS(2507), - [anon_sym_PLUS_PLUS] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2507), - [anon_sym_QMARK] = ACTIONS(2507), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_go] = ACTIONS(2507), - [anon_sym_spawn] = ACTIONS(2507), - [anon_sym_json_DOTdecode] = ACTIONS(2507), - [anon_sym_LBRACK2] = ACTIONS(2507), - [anon_sym_TILDE] = ACTIONS(2507), - [anon_sym_CARET] = ACTIONS(2507), - [anon_sym_AMP] = ACTIONS(2507), - [anon_sym_LT_DASH] = ACTIONS(2507), - [anon_sym_LT_LT] = ACTIONS(2507), - [anon_sym_GT_GT] = ACTIONS(2507), - [anon_sym_GT_GT_GT] = ACTIONS(2507), - [anon_sym_AMP_CARET] = ACTIONS(2507), - [anon_sym_AMP_AMP] = ACTIONS(2507), - [anon_sym_PIPE_PIPE] = ACTIONS(2507), - [anon_sym_or] = ACTIONS(2507), - [sym_none] = ACTIONS(2507), - [sym_true] = ACTIONS(2507), - [sym_false] = ACTIONS(2507), - [sym_nil] = ACTIONS(2507), - [anon_sym_QMARK_DOT] = ACTIONS(2507), - [anon_sym_POUND_LBRACK] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_DOLLARif] = ACTIONS(2507), - [anon_sym_is] = ACTIONS(2507), - [anon_sym_BANGis] = ACTIONS(2507), - [anon_sym_in] = ACTIONS(2507), - [anon_sym_BANGin] = ACTIONS(2507), - [anon_sym_match] = ACTIONS(2507), - [anon_sym_select] = ACTIONS(2507), - [anon_sym_lock] = ACTIONS(2507), - [anon_sym_rlock] = ACTIONS(2507), - [anon_sym_unsafe] = ACTIONS(2507), - [anon_sym_sql] = ACTIONS(2507), - [sym_int_literal] = ACTIONS(2507), - [sym_float_literal] = ACTIONS(2507), - [sym_rune_literal] = ACTIONS(2507), - [anon_sym_SQUOTE] = ACTIONS(2507), - [anon_sym_DQUOTE] = ACTIONS(2507), - [anon_sym_c_SQUOTE] = ACTIONS(2507), - [anon_sym_c_DQUOTE] = ACTIONS(2507), - [anon_sym_r_SQUOTE] = ACTIONS(2507), - [anon_sym_r_DQUOTE] = ACTIONS(2507), - [sym_pseudo_compile_time_identifier] = ACTIONS(2507), - [anon_sym_shared] = ACTIONS(2507), - [anon_sym_map_LBRACK] = ACTIONS(2507), - [anon_sym_chan] = ACTIONS(2507), - [anon_sym_thread] = ACTIONS(2507), - [anon_sym_atomic] = ACTIONS(2507), - [anon_sym_assert] = ACTIONS(2507), - [anon_sym_defer] = ACTIONS(2507), - [anon_sym_goto] = ACTIONS(2507), - [anon_sym_break] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2507), - [anon_sym_DOLLARfor] = ACTIONS(2507), - [anon_sym_for] = ACTIONS(2507), - [anon_sym_POUND] = ACTIONS(2507), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym_AT_LBRACK] = ACTIONS(2507), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_COMMA] = ACTIONS(2095), + [anon_sym_const] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym___global] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2095), + [anon_sym_fn] = ACTIONS(2095), + [anon_sym_PLUS] = ACTIONS(2095), + [anon_sym_DASH] = ACTIONS(2095), + [anon_sym_STAR] = ACTIONS(2095), + [anon_sym_SLASH] = ACTIONS(2095), + [anon_sym_PERCENT] = ACTIONS(2095), + [anon_sym_LT] = ACTIONS(2095), + [anon_sym_GT] = ACTIONS(2095), + [anon_sym_EQ_EQ] = ACTIONS(2095), + [anon_sym_BANG_EQ] = ACTIONS(2095), + [anon_sym_LT_EQ] = ACTIONS(2095), + [anon_sym_GT_EQ] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2095), + [anon_sym_union] = ACTIONS(2095), + [anon_sym_pub] = ACTIONS(2095), + [anon_sym_mut] = ACTIONS(2095), + [anon_sym_enum] = ACTIONS(2095), + [anon_sym_interface] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_QMARK] = ACTIONS(2095), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_go] = ACTIONS(2095), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(2095), + [anon_sym_PIPE] = ACTIONS(2095), + [anon_sym_LBRACK2] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_LT_DASH] = ACTIONS(2095), + [anon_sym_LT_LT] = ACTIONS(2095), + [anon_sym_GT_GT] = ACTIONS(2095), + [anon_sym_GT_GT_GT] = ACTIONS(2095), + [anon_sym_AMP_CARET] = ACTIONS(2095), + [anon_sym_AMP_AMP] = ACTIONS(2095), + [anon_sym_PIPE_PIPE] = ACTIONS(2095), + [anon_sym_or] = ACTIONS(2095), + [sym_none] = ACTIONS(2095), + [sym_true] = ACTIONS(2095), + [sym_false] = ACTIONS(2095), + [sym_nil] = ACTIONS(2095), + [anon_sym_QMARK_DOT] = ACTIONS(2095), + [anon_sym_POUND_LBRACK] = ACTIONS(2095), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_DOLLARif] = ACTIONS(2095), + [anon_sym_is] = ACTIONS(2095), + [anon_sym_BANGis] = ACTIONS(2095), + [anon_sym_in] = ACTIONS(2095), + [anon_sym_BANGin] = ACTIONS(2095), + [anon_sym_match] = ACTIONS(2095), + [anon_sym_select] = ACTIONS(2095), + [anon_sym_lock] = ACTIONS(2095), + [anon_sym_rlock] = ACTIONS(2095), + [anon_sym_unsafe] = ACTIONS(2095), + [anon_sym_sql] = ACTIONS(2095), + [sym_int_literal] = ACTIONS(2095), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [anon_sym_SQUOTE] = ACTIONS(2095), + [anon_sym_DQUOTE] = ACTIONS(2095), + [anon_sym_c_SQUOTE] = ACTIONS(2095), + [anon_sym_c_DQUOTE] = ACTIONS(2095), + [anon_sym_r_SQUOTE] = ACTIONS(2095), + [anon_sym_r_DQUOTE] = ACTIONS(2095), + [sym_pseudo_compile_time_identifier] = ACTIONS(2095), + [anon_sym_shared] = ACTIONS(2095), + [anon_sym_map_LBRACK] = ACTIONS(2095), + [anon_sym_chan] = ACTIONS(2095), + [anon_sym_thread] = ACTIONS(2095), + [anon_sym_atomic] = ACTIONS(2095), + [anon_sym_assert] = ACTIONS(2095), + [anon_sym_defer] = ACTIONS(2095), + [anon_sym_goto] = ACTIONS(2095), + [anon_sym_break] = ACTIONS(2095), + [anon_sym_continue] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2095), + [anon_sym_DOLLARfor] = ACTIONS(2095), + [anon_sym_for] = ACTIONS(2095), + [anon_sym_POUND] = ACTIONS(2095), + [anon_sym_asm] = ACTIONS(2095), + [anon_sym_AT_LBRACK] = ACTIONS(2095), }, [1086] = { [sym_line_comment] = STATE(1086), [sym_block_comment] = STATE(1086), - [ts_builtin_sym_end] = ACTIONS(2255), - [sym_identifier] = ACTIONS(2257), - [anon_sym_LF] = ACTIONS(2257), - [anon_sym_CR] = ACTIONS(2257), - [anon_sym_CR_LF] = ACTIONS(2257), + [ts_builtin_sym_end] = ACTIONS(2983), + [sym_identifier] = ACTIONS(2985), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_CR] = ACTIONS(2985), + [anon_sym_CR_LF] = ACTIONS(2985), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2257), - [anon_sym_as] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2257), - [anon_sym_COMMA] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(2257), - [anon_sym___global] = ACTIONS(2257), - [anon_sym_type] = ACTIONS(2257), - [anon_sym_PIPE] = ACTIONS(2257), - [anon_sym_fn] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2257), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_STAR] = ACTIONS(2257), - [anon_sym_SLASH] = ACTIONS(2257), - [anon_sym_PERCENT] = ACTIONS(2257), - [anon_sym_LT] = ACTIONS(2257), - [anon_sym_GT] = ACTIONS(2257), - [anon_sym_EQ_EQ] = ACTIONS(2257), - [anon_sym_BANG_EQ] = ACTIONS(2257), - [anon_sym_LT_EQ] = ACTIONS(2257), - [anon_sym_GT_EQ] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2255), - [anon_sym_struct] = ACTIONS(2257), - [anon_sym_union] = ACTIONS(2257), - [anon_sym_pub] = ACTIONS(2257), - [anon_sym_mut] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), - [anon_sym_interface] = ACTIONS(2257), - [anon_sym_PLUS_PLUS] = ACTIONS(2257), - [anon_sym_DASH_DASH] = ACTIONS(2257), - [anon_sym_QMARK] = ACTIONS(2257), - [anon_sym_BANG] = ACTIONS(2257), - [anon_sym_go] = ACTIONS(2257), - [anon_sym_spawn] = ACTIONS(2257), - [anon_sym_json_DOTdecode] = ACTIONS(2257), - [anon_sym_LBRACK2] = ACTIONS(2257), - [anon_sym_TILDE] = ACTIONS(2257), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), - [anon_sym_LT_DASH] = ACTIONS(2257), - [anon_sym_LT_LT] = ACTIONS(2257), - [anon_sym_GT_GT] = ACTIONS(2257), - [anon_sym_GT_GT_GT] = ACTIONS(2257), - [anon_sym_AMP_CARET] = ACTIONS(2257), - [anon_sym_AMP_AMP] = ACTIONS(2257), - [anon_sym_PIPE_PIPE] = ACTIONS(2257), - [anon_sym_or] = ACTIONS(2257), - [sym_none] = ACTIONS(2257), - [sym_true] = ACTIONS(2257), - [sym_false] = ACTIONS(2257), - [sym_nil] = ACTIONS(2257), - [anon_sym_QMARK_DOT] = ACTIONS(2257), - [anon_sym_POUND_LBRACK] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_DOLLARif] = ACTIONS(2257), - [anon_sym_is] = ACTIONS(2257), - [anon_sym_BANGis] = ACTIONS(2257), - [anon_sym_in] = ACTIONS(2257), - [anon_sym_BANGin] = ACTIONS(2257), - [anon_sym_match] = ACTIONS(2257), - [anon_sym_select] = ACTIONS(2257), - [anon_sym_lock] = ACTIONS(2257), - [anon_sym_rlock] = ACTIONS(2257), - [anon_sym_unsafe] = ACTIONS(2257), - [anon_sym_sql] = ACTIONS(2257), - [sym_int_literal] = ACTIONS(2257), - [sym_float_literal] = ACTIONS(2257), - [sym_rune_literal] = ACTIONS(2257), - [anon_sym_SQUOTE] = ACTIONS(2257), - [anon_sym_DQUOTE] = ACTIONS(2257), - [anon_sym_c_SQUOTE] = ACTIONS(2257), - [anon_sym_c_DQUOTE] = ACTIONS(2257), - [anon_sym_r_SQUOTE] = ACTIONS(2257), - [anon_sym_r_DQUOTE] = ACTIONS(2257), - [sym_pseudo_compile_time_identifier] = ACTIONS(2257), - [anon_sym_shared] = ACTIONS(2257), - [anon_sym_map_LBRACK] = ACTIONS(2257), - [anon_sym_chan] = ACTIONS(2257), - [anon_sym_thread] = ACTIONS(2257), - [anon_sym_atomic] = ACTIONS(2257), - [anon_sym_assert] = ACTIONS(2257), - [anon_sym_defer] = ACTIONS(2257), - [anon_sym_goto] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_DOLLARfor] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_POUND] = ACTIONS(2257), - [anon_sym_asm] = ACTIONS(2257), - [anon_sym_AT_LBRACK] = ACTIONS(2257), + [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_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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(2985), + [anon_sym_c_SQUOTE] = ACTIONS(2985), + [anon_sym_c_DQUOTE] = ACTIONS(2985), + [anon_sym_r_SQUOTE] = ACTIONS(2985), + [anon_sym_r_DQUOTE] = 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), }, [1087] = { [sym_line_comment] = STATE(1087), [sym_block_comment] = STATE(1087), - [ts_builtin_sym_end] = ACTIONS(2053), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [ts_builtin_sym_end] = ACTIONS(2753), + [sym_identifier] = ACTIONS(2755), + [anon_sym_LF] = ACTIONS(2755), + [anon_sym_CR] = ACTIONS(2755), + [anon_sym_CR_LF] = ACTIONS(2755), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym___global] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_union] = ACTIONS(2055), - [anon_sym_pub] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_QMARK] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_LBRACK2] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_AMP_CARET] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(2055), - [anon_sym_POUND_LBRACK] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - [anon_sym_assert] = ACTIONS(2055), - [anon_sym_defer] = ACTIONS(2055), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_DOLLARfor] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_asm] = ACTIONS(2055), - [anon_sym_AT_LBRACK] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(2755), + [anon_sym_as] = ACTIONS(2755), + [anon_sym_LBRACE] = ACTIONS(2755), + [anon_sym_COMMA] = ACTIONS(2755), + [anon_sym_const] = ACTIONS(2755), + [anon_sym_LPAREN] = ACTIONS(2755), + [anon_sym___global] = ACTIONS(2755), + [anon_sym_type] = ACTIONS(2755), + [anon_sym_fn] = ACTIONS(2755), + [anon_sym_PLUS] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_SLASH] = ACTIONS(2755), + [anon_sym_PERCENT] = ACTIONS(2755), + [anon_sym_LT] = ACTIONS(2755), + [anon_sym_GT] = ACTIONS(2755), + [anon_sym_EQ_EQ] = ACTIONS(2755), + [anon_sym_BANG_EQ] = ACTIONS(2755), + [anon_sym_LT_EQ] = ACTIONS(2755), + [anon_sym_GT_EQ] = ACTIONS(2755), + [anon_sym_LBRACK] = ACTIONS(2753), + [anon_sym_struct] = ACTIONS(2755), + [anon_sym_union] = ACTIONS(2755), + [anon_sym_pub] = ACTIONS(2755), + [anon_sym_mut] = ACTIONS(2755), + [anon_sym_enum] = ACTIONS(2755), + [anon_sym_interface] = ACTIONS(2755), + [anon_sym_PLUS_PLUS] = ACTIONS(2755), + [anon_sym_DASH_DASH] = ACTIONS(2755), + [anon_sym_QMARK] = ACTIONS(2755), + [anon_sym_BANG] = ACTIONS(2755), + [anon_sym_go] = ACTIONS(2755), + [anon_sym_spawn] = ACTIONS(2755), + [anon_sym_json_DOTdecode] = ACTIONS(2755), + [anon_sym_PIPE] = ACTIONS(2755), + [anon_sym_LBRACK2] = ACTIONS(2755), + [anon_sym_TILDE] = ACTIONS(2755), + [anon_sym_CARET] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(2755), + [anon_sym_LT_DASH] = ACTIONS(2755), + [anon_sym_LT_LT] = ACTIONS(2755), + [anon_sym_GT_GT] = ACTIONS(2755), + [anon_sym_GT_GT_GT] = ACTIONS(2755), + [anon_sym_AMP_CARET] = ACTIONS(2755), + [anon_sym_AMP_AMP] = ACTIONS(2755), + [anon_sym_PIPE_PIPE] = ACTIONS(2755), + [anon_sym_or] = ACTIONS(2755), + [sym_none] = ACTIONS(2755), + [sym_true] = ACTIONS(2755), + [sym_false] = ACTIONS(2755), + [sym_nil] = ACTIONS(2755), + [anon_sym_QMARK_DOT] = ACTIONS(2755), + [anon_sym_POUND_LBRACK] = ACTIONS(2755), + [anon_sym_if] = ACTIONS(2755), + [anon_sym_DOLLARif] = ACTIONS(2755), + [anon_sym_is] = ACTIONS(2755), + [anon_sym_BANGis] = ACTIONS(2755), + [anon_sym_in] = ACTIONS(2755), + [anon_sym_BANGin] = ACTIONS(2755), + [anon_sym_match] = ACTIONS(2755), + [anon_sym_select] = ACTIONS(2755), + [anon_sym_lock] = ACTIONS(2755), + [anon_sym_rlock] = ACTIONS(2755), + [anon_sym_unsafe] = ACTIONS(2755), + [anon_sym_sql] = ACTIONS(2755), + [sym_int_literal] = ACTIONS(2755), + [sym_float_literal] = ACTIONS(2755), + [sym_rune_literal] = ACTIONS(2755), + [anon_sym_SQUOTE] = ACTIONS(2755), + [anon_sym_DQUOTE] = ACTIONS(2755), + [anon_sym_c_SQUOTE] = ACTIONS(2755), + [anon_sym_c_DQUOTE] = ACTIONS(2755), + [anon_sym_r_SQUOTE] = ACTIONS(2755), + [anon_sym_r_DQUOTE] = ACTIONS(2755), + [sym_pseudo_compile_time_identifier] = ACTIONS(2755), + [anon_sym_shared] = ACTIONS(2755), + [anon_sym_map_LBRACK] = ACTIONS(2755), + [anon_sym_chan] = ACTIONS(2755), + [anon_sym_thread] = ACTIONS(2755), + [anon_sym_atomic] = ACTIONS(2755), + [anon_sym_assert] = ACTIONS(2755), + [anon_sym_defer] = ACTIONS(2755), + [anon_sym_goto] = ACTIONS(2755), + [anon_sym_break] = ACTIONS(2755), + [anon_sym_continue] = ACTIONS(2755), + [anon_sym_return] = ACTIONS(2755), + [anon_sym_DOLLARfor] = ACTIONS(2755), + [anon_sym_for] = ACTIONS(2755), + [anon_sym_POUND] = ACTIONS(2755), + [anon_sym_asm] = ACTIONS(2755), + [anon_sym_AT_LBRACK] = ACTIONS(2755), }, [1088] = { [sym_line_comment] = STATE(1088), [sym_block_comment] = STATE(1088), - [ts_builtin_sym_end] = ACTIONS(2437), - [sym_identifier] = ACTIONS(2439), - [anon_sym_LF] = ACTIONS(2439), - [anon_sym_CR] = ACTIONS(2439), - [anon_sym_CR_LF] = ACTIONS(2439), + [ts_builtin_sym_end] = ACTIONS(2625), + [sym_identifier] = ACTIONS(2627), + [anon_sym_LF] = ACTIONS(2627), + [anon_sym_CR] = ACTIONS(2627), + [anon_sym_CR_LF] = ACTIONS(2627), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2439), - [anon_sym_as] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_COMMA] = ACTIONS(2439), - [anon_sym_const] = ACTIONS(2439), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym___global] = ACTIONS(2439), - [anon_sym_type] = ACTIONS(2439), - [anon_sym_PIPE] = ACTIONS(2439), - [anon_sym_fn] = ACTIONS(2439), - [anon_sym_PLUS] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2439), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_SLASH] = ACTIONS(2439), - [anon_sym_PERCENT] = ACTIONS(2439), - [anon_sym_LT] = ACTIONS(2439), - [anon_sym_GT] = ACTIONS(2439), - [anon_sym_EQ_EQ] = ACTIONS(2439), - [anon_sym_BANG_EQ] = ACTIONS(2439), - [anon_sym_LT_EQ] = ACTIONS(2439), - [anon_sym_GT_EQ] = ACTIONS(2439), - [anon_sym_LBRACK] = ACTIONS(2437), - [anon_sym_struct] = ACTIONS(2439), - [anon_sym_union] = ACTIONS(2439), - [anon_sym_pub] = ACTIONS(2439), - [anon_sym_mut] = ACTIONS(2439), - [anon_sym_enum] = ACTIONS(2439), - [anon_sym_interface] = ACTIONS(2439), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [anon_sym_QMARK] = ACTIONS(2439), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_go] = ACTIONS(2439), - [anon_sym_spawn] = ACTIONS(2439), - [anon_sym_json_DOTdecode] = ACTIONS(2439), - [anon_sym_LBRACK2] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2439), - [anon_sym_CARET] = ACTIONS(2439), - [anon_sym_AMP] = ACTIONS(2439), - [anon_sym_LT_DASH] = ACTIONS(2439), - [anon_sym_LT_LT] = ACTIONS(2439), - [anon_sym_GT_GT] = ACTIONS(2439), - [anon_sym_GT_GT_GT] = ACTIONS(2439), - [anon_sym_AMP_CARET] = ACTIONS(2439), - [anon_sym_AMP_AMP] = ACTIONS(2439), - [anon_sym_PIPE_PIPE] = ACTIONS(2439), - [anon_sym_or] = ACTIONS(2439), - [sym_none] = ACTIONS(2439), - [sym_true] = ACTIONS(2439), - [sym_false] = ACTIONS(2439), - [sym_nil] = ACTIONS(2439), - [anon_sym_QMARK_DOT] = ACTIONS(2439), - [anon_sym_POUND_LBRACK] = ACTIONS(2439), - [anon_sym_if] = ACTIONS(2439), - [anon_sym_DOLLARif] = ACTIONS(2439), - [anon_sym_is] = ACTIONS(2439), - [anon_sym_BANGis] = ACTIONS(2439), - [anon_sym_in] = ACTIONS(2439), - [anon_sym_BANGin] = ACTIONS(2439), - [anon_sym_match] = ACTIONS(2439), - [anon_sym_select] = ACTIONS(2439), - [anon_sym_lock] = ACTIONS(2439), - [anon_sym_rlock] = ACTIONS(2439), - [anon_sym_unsafe] = ACTIONS(2439), - [anon_sym_sql] = ACTIONS(2439), - [sym_int_literal] = ACTIONS(2439), - [sym_float_literal] = ACTIONS(2439), - [sym_rune_literal] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_DQUOTE] = ACTIONS(2439), - [anon_sym_c_SQUOTE] = ACTIONS(2439), - [anon_sym_c_DQUOTE] = ACTIONS(2439), - [anon_sym_r_SQUOTE] = ACTIONS(2439), - [anon_sym_r_DQUOTE] = ACTIONS(2439), - [sym_pseudo_compile_time_identifier] = ACTIONS(2439), - [anon_sym_shared] = ACTIONS(2439), - [anon_sym_map_LBRACK] = ACTIONS(2439), - [anon_sym_chan] = ACTIONS(2439), - [anon_sym_thread] = ACTIONS(2439), - [anon_sym_atomic] = ACTIONS(2439), - [anon_sym_assert] = ACTIONS(2439), - [anon_sym_defer] = ACTIONS(2439), - [anon_sym_goto] = ACTIONS(2439), - [anon_sym_break] = ACTIONS(2439), - [anon_sym_continue] = ACTIONS(2439), - [anon_sym_return] = ACTIONS(2439), - [anon_sym_DOLLARfor] = ACTIONS(2439), - [anon_sym_for] = ACTIONS(2439), - [anon_sym_POUND] = ACTIONS(2439), - [anon_sym_asm] = ACTIONS(2439), - [anon_sym_AT_LBRACK] = ACTIONS(2439), + [anon_sym_DOT] = ACTIONS(2629), + [anon_sym_as] = ACTIONS(2629), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_COMMA] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym___global] = ACTIONS(2627), + [anon_sym_type] = ACTIONS(2627), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), + [anon_sym_pub] = ACTIONS(2627), + [anon_sym_mut] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_interface] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_QMARK] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_go] = ACTIONS(2627), + [anon_sym_spawn] = ACTIONS(2627), + [anon_sym_json_DOTdecode] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2629), + [anon_sym_LT_DASH] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT] = ACTIONS(2629), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_AMP_CARET] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_or] = ACTIONS(2629), + [sym_none] = ACTIONS(2627), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [sym_nil] = ACTIONS(2627), + [anon_sym_QMARK_DOT] = ACTIONS(2629), + [anon_sym_POUND_LBRACK] = ACTIONS(2629), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_DOLLARif] = ACTIONS(2627), + [anon_sym_is] = ACTIONS(2629), + [anon_sym_BANGis] = ACTIONS(2629), + [anon_sym_in] = ACTIONS(2629), + [anon_sym_BANGin] = ACTIONS(2629), + [anon_sym_match] = ACTIONS(2627), + [anon_sym_select] = ACTIONS(2627), + [anon_sym_lock] = ACTIONS(2627), + [anon_sym_rlock] = ACTIONS(2627), + [anon_sym_unsafe] = ACTIONS(2627), + [anon_sym_sql] = ACTIONS(2627), + [sym_int_literal] = ACTIONS(2627), + [sym_float_literal] = ACTIONS(2627), + [sym_rune_literal] = ACTIONS(2627), + [anon_sym_SQUOTE] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [anon_sym_c_SQUOTE] = ACTIONS(2627), + [anon_sym_c_DQUOTE] = ACTIONS(2627), + [anon_sym_r_SQUOTE] = ACTIONS(2627), + [anon_sym_r_DQUOTE] = ACTIONS(2627), + [sym_pseudo_compile_time_identifier] = ACTIONS(2627), + [anon_sym_shared] = ACTIONS(2627), + [anon_sym_map_LBRACK] = ACTIONS(2627), + [anon_sym_chan] = ACTIONS(2627), + [anon_sym_thread] = ACTIONS(2627), + [anon_sym_atomic] = ACTIONS(2627), + [anon_sym_assert] = ACTIONS(2627), + [anon_sym_defer] = ACTIONS(2627), + [anon_sym_goto] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_DOLLARfor] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_POUND] = ACTIONS(2627), + [anon_sym_asm] = ACTIONS(2627), + [anon_sym_AT_LBRACK] = ACTIONS(2627), }, [1089] = { [sym_line_comment] = STATE(1089), [sym_block_comment] = STATE(1089), - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [anon_sym_LF] = ACTIONS(1899), - [anon_sym_CR] = ACTIONS(1899), - [anon_sym_CR_LF] = ACTIONS(1899), + [ts_builtin_sym_end] = ACTIONS(2935), + [sym_identifier] = ACTIONS(2937), + [anon_sym_LF] = ACTIONS(2937), + [anon_sym_CR] = ACTIONS(2937), + [anon_sym_CR_LF] = ACTIONS(2937), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1899), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym___global] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_fn] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_union] = ACTIONS(1899), - [anon_sym_pub] = ACTIONS(1899), - [anon_sym_mut] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [anon_sym_interface] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [anon_sym_QMARK] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_go] = ACTIONS(1899), - [anon_sym_spawn] = ACTIONS(1899), - [anon_sym_json_DOTdecode] = ACTIONS(1899), - [anon_sym_LBRACK2] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_LT_DASH] = ACTIONS(1899), - [anon_sym_LT_LT] = ACTIONS(1899), - [anon_sym_GT_GT] = ACTIONS(1899), - [anon_sym_GT_GT_GT] = ACTIONS(1899), - [anon_sym_AMP_CARET] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_or] = ACTIONS(1899), - [sym_none] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_nil] = ACTIONS(1899), - [anon_sym_QMARK_DOT] = ACTIONS(1899), - [anon_sym_POUND_LBRACK] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_DOLLARif] = ACTIONS(1899), - [anon_sym_is] = ACTIONS(1899), - [anon_sym_BANGis] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_BANGin] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_select] = ACTIONS(1899), - [anon_sym_lock] = ACTIONS(1899), - [anon_sym_rlock] = ACTIONS(1899), - [anon_sym_unsafe] = ACTIONS(1899), - [anon_sym_sql] = ACTIONS(1899), - [sym_int_literal] = ACTIONS(1899), - [sym_float_literal] = ACTIONS(1899), - [sym_rune_literal] = ACTIONS(1899), - [anon_sym_SQUOTE] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1899), - [anon_sym_c_SQUOTE] = ACTIONS(1899), - [anon_sym_c_DQUOTE] = ACTIONS(1899), - [anon_sym_r_SQUOTE] = ACTIONS(1899), - [anon_sym_r_DQUOTE] = ACTIONS(1899), - [sym_pseudo_compile_time_identifier] = ACTIONS(1899), - [anon_sym_shared] = ACTIONS(1899), - [anon_sym_map_LBRACK] = ACTIONS(1899), - [anon_sym_chan] = ACTIONS(1899), - [anon_sym_thread] = ACTIONS(1899), - [anon_sym_atomic] = ACTIONS(1899), - [anon_sym_assert] = ACTIONS(1899), - [anon_sym_defer] = ACTIONS(1899), - [anon_sym_goto] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_DOLLARfor] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_POUND] = ACTIONS(1899), - [anon_sym_asm] = ACTIONS(1899), - [anon_sym_AT_LBRACK] = ACTIONS(1899), + [anon_sym_DOT] = ACTIONS(2937), + [anon_sym_as] = ACTIONS(2937), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(2937), + [anon_sym_const] = ACTIONS(2937), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym___global] = ACTIONS(2937), + [anon_sym_type] = ACTIONS(2937), + [anon_sym_fn] = ACTIONS(2937), + [anon_sym_PLUS] = ACTIONS(2937), + [anon_sym_DASH] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2937), + [anon_sym_SLASH] = ACTIONS(2937), + [anon_sym_PERCENT] = ACTIONS(2937), + [anon_sym_LT] = ACTIONS(2937), + [anon_sym_GT] = ACTIONS(2937), + [anon_sym_EQ_EQ] = ACTIONS(2937), + [anon_sym_BANG_EQ] = ACTIONS(2937), + [anon_sym_LT_EQ] = ACTIONS(2937), + [anon_sym_GT_EQ] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2935), + [anon_sym_struct] = ACTIONS(2937), + [anon_sym_union] = ACTIONS(2937), + [anon_sym_pub] = ACTIONS(2937), + [anon_sym_mut] = ACTIONS(2937), + [anon_sym_enum] = ACTIONS(2937), + [anon_sym_interface] = ACTIONS(2937), + [anon_sym_PLUS_PLUS] = ACTIONS(2937), + [anon_sym_DASH_DASH] = ACTIONS(2937), + [anon_sym_QMARK] = ACTIONS(2937), + [anon_sym_BANG] = ACTIONS(2937), + [anon_sym_go] = ACTIONS(2937), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2937), + [anon_sym_PIPE] = ACTIONS(2937), + [anon_sym_LBRACK2] = ACTIONS(2937), + [anon_sym_TILDE] = ACTIONS(2937), + [anon_sym_CARET] = ACTIONS(2937), + [anon_sym_AMP] = ACTIONS(2937), + [anon_sym_LT_DASH] = ACTIONS(2937), + [anon_sym_LT_LT] = ACTIONS(2937), + [anon_sym_GT_GT] = ACTIONS(2937), + [anon_sym_GT_GT_GT] = ACTIONS(2937), + [anon_sym_AMP_CARET] = ACTIONS(2937), + [anon_sym_AMP_AMP] = ACTIONS(2937), + [anon_sym_PIPE_PIPE] = ACTIONS(2937), + [anon_sym_or] = ACTIONS(2937), + [sym_none] = ACTIONS(2937), + [sym_true] = ACTIONS(2937), + [sym_false] = ACTIONS(2937), + [sym_nil] = ACTIONS(2937), + [anon_sym_QMARK_DOT] = ACTIONS(2937), + [anon_sym_POUND_LBRACK] = ACTIONS(2937), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_DOLLARif] = ACTIONS(2937), + [anon_sym_is] = ACTIONS(2937), + [anon_sym_BANGis] = ACTIONS(2937), + [anon_sym_in] = ACTIONS(2937), + [anon_sym_BANGin] = ACTIONS(2937), + [anon_sym_match] = ACTIONS(2937), + [anon_sym_select] = ACTIONS(2937), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(2937), + [anon_sym_sql] = ACTIONS(2937), + [sym_int_literal] = ACTIONS(2937), + [sym_float_literal] = ACTIONS(2937), + [sym_rune_literal] = ACTIONS(2937), + [anon_sym_SQUOTE] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2937), + [anon_sym_c_SQUOTE] = ACTIONS(2937), + [anon_sym_c_DQUOTE] = ACTIONS(2937), + [anon_sym_r_SQUOTE] = ACTIONS(2937), + [anon_sym_r_DQUOTE] = ACTIONS(2937), + [sym_pseudo_compile_time_identifier] = ACTIONS(2937), + [anon_sym_shared] = ACTIONS(2937), + [anon_sym_map_LBRACK] = ACTIONS(2937), + [anon_sym_chan] = ACTIONS(2937), + [anon_sym_thread] = ACTIONS(2937), + [anon_sym_atomic] = ACTIONS(2937), + [anon_sym_assert] = ACTIONS(2937), + [anon_sym_defer] = ACTIONS(2937), + [anon_sym_goto] = ACTIONS(2937), + [anon_sym_break] = ACTIONS(2937), + [anon_sym_continue] = ACTIONS(2937), + [anon_sym_return] = ACTIONS(2937), + [anon_sym_DOLLARfor] = ACTIONS(2937), + [anon_sym_for] = ACTIONS(2937), + [anon_sym_POUND] = ACTIONS(2937), + [anon_sym_asm] = ACTIONS(2937), + [anon_sym_AT_LBRACK] = ACTIONS(2937), }, [1090] = { [sym_line_comment] = STATE(1090), [sym_block_comment] = STATE(1090), - [ts_builtin_sym_end] = ACTIONS(2451), - [sym_identifier] = ACTIONS(2453), - [anon_sym_LF] = ACTIONS(2453), - [anon_sym_CR] = ACTIONS(2453), - [anon_sym_CR_LF] = ACTIONS(2453), + [ts_builtin_sym_end] = ACTIONS(2319), + [sym_identifier] = ACTIONS(2321), + [anon_sym_LF] = ACTIONS(2321), + [anon_sym_CR] = ACTIONS(2321), + [anon_sym_CR_LF] = ACTIONS(2321), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2453), - [anon_sym_as] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_COMMA] = ACTIONS(2453), - [anon_sym_const] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2453), - [anon_sym___global] = ACTIONS(2453), - [anon_sym_type] = ACTIONS(2453), - [anon_sym_PIPE] = ACTIONS(2453), - [anon_sym_fn] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2453), - [anon_sym_DASH] = ACTIONS(2453), - [anon_sym_STAR] = ACTIONS(2453), - [anon_sym_SLASH] = ACTIONS(2453), - [anon_sym_PERCENT] = ACTIONS(2453), - [anon_sym_LT] = ACTIONS(2453), - [anon_sym_GT] = ACTIONS(2453), - [anon_sym_EQ_EQ] = ACTIONS(2453), - [anon_sym_BANG_EQ] = ACTIONS(2453), - [anon_sym_LT_EQ] = ACTIONS(2453), - [anon_sym_GT_EQ] = ACTIONS(2453), - [anon_sym_LBRACK] = ACTIONS(2451), - [anon_sym_struct] = ACTIONS(2453), - [anon_sym_union] = ACTIONS(2453), - [anon_sym_pub] = ACTIONS(2453), - [anon_sym_mut] = ACTIONS(2453), - [anon_sym_enum] = ACTIONS(2453), - [anon_sym_interface] = ACTIONS(2453), - [anon_sym_PLUS_PLUS] = ACTIONS(2453), - [anon_sym_DASH_DASH] = ACTIONS(2453), - [anon_sym_QMARK] = ACTIONS(2453), - [anon_sym_BANG] = ACTIONS(2453), - [anon_sym_go] = ACTIONS(2453), - [anon_sym_spawn] = ACTIONS(2453), - [anon_sym_json_DOTdecode] = ACTIONS(2453), - [anon_sym_LBRACK2] = ACTIONS(2453), - [anon_sym_TILDE] = ACTIONS(2453), - [anon_sym_CARET] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(2453), - [anon_sym_LT_DASH] = ACTIONS(2453), - [anon_sym_LT_LT] = ACTIONS(2453), - [anon_sym_GT_GT] = ACTIONS(2453), - [anon_sym_GT_GT_GT] = ACTIONS(2453), - [anon_sym_AMP_CARET] = ACTIONS(2453), - [anon_sym_AMP_AMP] = ACTIONS(2453), - [anon_sym_PIPE_PIPE] = ACTIONS(2453), - [anon_sym_or] = ACTIONS(2453), - [sym_none] = ACTIONS(2453), - [sym_true] = ACTIONS(2453), - [sym_false] = ACTIONS(2453), - [sym_nil] = ACTIONS(2453), - [anon_sym_QMARK_DOT] = ACTIONS(2453), - [anon_sym_POUND_LBRACK] = ACTIONS(2453), - [anon_sym_if] = ACTIONS(2453), - [anon_sym_DOLLARif] = ACTIONS(2453), - [anon_sym_is] = ACTIONS(2453), - [anon_sym_BANGis] = ACTIONS(2453), - [anon_sym_in] = ACTIONS(2453), - [anon_sym_BANGin] = ACTIONS(2453), - [anon_sym_match] = ACTIONS(2453), - [anon_sym_select] = ACTIONS(2453), - [anon_sym_lock] = ACTIONS(2453), - [anon_sym_rlock] = ACTIONS(2453), - [anon_sym_unsafe] = ACTIONS(2453), - [anon_sym_sql] = ACTIONS(2453), - [sym_int_literal] = ACTIONS(2453), - [sym_float_literal] = ACTIONS(2453), - [sym_rune_literal] = ACTIONS(2453), - [anon_sym_SQUOTE] = ACTIONS(2453), - [anon_sym_DQUOTE] = ACTIONS(2453), - [anon_sym_c_SQUOTE] = ACTIONS(2453), - [anon_sym_c_DQUOTE] = ACTIONS(2453), - [anon_sym_r_SQUOTE] = ACTIONS(2453), - [anon_sym_r_DQUOTE] = ACTIONS(2453), - [sym_pseudo_compile_time_identifier] = ACTIONS(2453), - [anon_sym_shared] = ACTIONS(2453), - [anon_sym_map_LBRACK] = ACTIONS(2453), - [anon_sym_chan] = ACTIONS(2453), - [anon_sym_thread] = ACTIONS(2453), - [anon_sym_atomic] = ACTIONS(2453), - [anon_sym_assert] = ACTIONS(2453), - [anon_sym_defer] = ACTIONS(2453), - [anon_sym_goto] = ACTIONS(2453), - [anon_sym_break] = ACTIONS(2453), - [anon_sym_continue] = ACTIONS(2453), - [anon_sym_return] = ACTIONS(2453), - [anon_sym_DOLLARfor] = ACTIONS(2453), - [anon_sym_for] = ACTIONS(2453), - [anon_sym_POUND] = ACTIONS(2453), - [anon_sym_asm] = ACTIONS(2453), - [anon_sym_AT_LBRACK] = ACTIONS(2453), + [anon_sym_DOT] = ACTIONS(2321), + [anon_sym_as] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2321), + [anon_sym_COMMA] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_LPAREN] = ACTIONS(2321), + [anon_sym___global] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2321), + [anon_sym_fn] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(2321), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_SLASH] = ACTIONS(2321), + [anon_sym_PERCENT] = ACTIONS(2321), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_GT] = ACTIONS(2321), + [anon_sym_EQ_EQ] = ACTIONS(2321), + [anon_sym_BANG_EQ] = ACTIONS(2321), + [anon_sym_LT_EQ] = ACTIONS(2321), + [anon_sym_GT_EQ] = ACTIONS(2321), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_struct] = ACTIONS(2321), + [anon_sym_union] = ACTIONS(2321), + [anon_sym_pub] = ACTIONS(2321), + [anon_sym_mut] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), + [anon_sym_interface] = ACTIONS(2321), + [anon_sym_PLUS_PLUS] = ACTIONS(2321), + [anon_sym_DASH_DASH] = ACTIONS(2321), + [anon_sym_QMARK] = ACTIONS(2321), + [anon_sym_BANG] = ACTIONS(2321), + [anon_sym_go] = ACTIONS(2321), + [anon_sym_spawn] = ACTIONS(2321), + [anon_sym_json_DOTdecode] = ACTIONS(2321), + [anon_sym_PIPE] = ACTIONS(2321), + [anon_sym_LBRACK2] = ACTIONS(2321), + [anon_sym_TILDE] = ACTIONS(2321), + [anon_sym_CARET] = ACTIONS(2321), + [anon_sym_AMP] = ACTIONS(2321), + [anon_sym_LT_DASH] = ACTIONS(2321), + [anon_sym_LT_LT] = ACTIONS(2321), + [anon_sym_GT_GT] = ACTIONS(2321), + [anon_sym_GT_GT_GT] = ACTIONS(2321), + [anon_sym_AMP_CARET] = ACTIONS(2321), + [anon_sym_AMP_AMP] = ACTIONS(2321), + [anon_sym_PIPE_PIPE] = ACTIONS(2321), + [anon_sym_or] = ACTIONS(2321), + [sym_none] = ACTIONS(2321), + [sym_true] = ACTIONS(2321), + [sym_false] = ACTIONS(2321), + [sym_nil] = ACTIONS(2321), + [anon_sym_QMARK_DOT] = ACTIONS(2321), + [anon_sym_POUND_LBRACK] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_DOLLARif] = ACTIONS(2321), + [anon_sym_is] = ACTIONS(2321), + [anon_sym_BANGis] = ACTIONS(2321), + [anon_sym_in] = ACTIONS(2321), + [anon_sym_BANGin] = ACTIONS(2321), + [anon_sym_match] = ACTIONS(2321), + [anon_sym_select] = ACTIONS(2321), + [anon_sym_lock] = ACTIONS(2321), + [anon_sym_rlock] = ACTIONS(2321), + [anon_sym_unsafe] = ACTIONS(2321), + [anon_sym_sql] = ACTIONS(2321), + [sym_int_literal] = ACTIONS(2321), + [sym_float_literal] = ACTIONS(2321), + [sym_rune_literal] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE] = ACTIONS(2321), + [anon_sym_c_SQUOTE] = ACTIONS(2321), + [anon_sym_c_DQUOTE] = ACTIONS(2321), + [anon_sym_r_SQUOTE] = ACTIONS(2321), + [anon_sym_r_DQUOTE] = ACTIONS(2321), + [sym_pseudo_compile_time_identifier] = ACTIONS(2321), + [anon_sym_shared] = ACTIONS(2321), + [anon_sym_map_LBRACK] = ACTIONS(2321), + [anon_sym_chan] = ACTIONS(2321), + [anon_sym_thread] = ACTIONS(2321), + [anon_sym_atomic] = ACTIONS(2321), + [anon_sym_assert] = ACTIONS(2321), + [anon_sym_defer] = ACTIONS(2321), + [anon_sym_goto] = ACTIONS(2321), + [anon_sym_break] = ACTIONS(2321), + [anon_sym_continue] = ACTIONS(2321), + [anon_sym_return] = ACTIONS(2321), + [anon_sym_DOLLARfor] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_POUND] = ACTIONS(2321), + [anon_sym_asm] = ACTIONS(2321), + [anon_sym_AT_LBRACK] = ACTIONS(2321), }, [1091] = { [sym_line_comment] = STATE(1091), [sym_block_comment] = STATE(1091), - [ts_builtin_sym_end] = ACTIONS(2425), - [sym_identifier] = ACTIONS(2427), - [anon_sym_LF] = ACTIONS(2427), - [anon_sym_CR] = ACTIONS(2427), - [anon_sym_CR_LF] = ACTIONS(2427), + [ts_builtin_sym_end] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2705), + [anon_sym_LF] = ACTIONS(2705), + [anon_sym_CR] = ACTIONS(2705), + [anon_sym_CR_LF] = ACTIONS(2705), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2427), - [anon_sym_as] = ACTIONS(2427), - [anon_sym_LBRACE] = ACTIONS(2427), - [anon_sym_COMMA] = ACTIONS(2427), - [anon_sym_const] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym___global] = ACTIONS(2427), - [anon_sym_type] = ACTIONS(2427), - [anon_sym_PIPE] = ACTIONS(2427), - [anon_sym_fn] = ACTIONS(2427), - [anon_sym_PLUS] = ACTIONS(2427), - [anon_sym_DASH] = ACTIONS(2427), - [anon_sym_STAR] = ACTIONS(2427), - [anon_sym_SLASH] = ACTIONS(2427), - [anon_sym_PERCENT] = ACTIONS(2427), - [anon_sym_LT] = ACTIONS(2427), - [anon_sym_GT] = ACTIONS(2427), - [anon_sym_EQ_EQ] = ACTIONS(2427), - [anon_sym_BANG_EQ] = ACTIONS(2427), - [anon_sym_LT_EQ] = ACTIONS(2427), - [anon_sym_GT_EQ] = ACTIONS(2427), - [anon_sym_LBRACK] = ACTIONS(2425), - [anon_sym_struct] = ACTIONS(2427), - [anon_sym_union] = ACTIONS(2427), - [anon_sym_pub] = ACTIONS(2427), - [anon_sym_mut] = ACTIONS(2427), - [anon_sym_enum] = ACTIONS(2427), - [anon_sym_interface] = ACTIONS(2427), - [anon_sym_PLUS_PLUS] = ACTIONS(2427), - [anon_sym_DASH_DASH] = ACTIONS(2427), - [anon_sym_QMARK] = ACTIONS(2427), - [anon_sym_BANG] = ACTIONS(2427), - [anon_sym_go] = ACTIONS(2427), - [anon_sym_spawn] = ACTIONS(2427), - [anon_sym_json_DOTdecode] = ACTIONS(2427), - [anon_sym_LBRACK2] = ACTIONS(2427), - [anon_sym_TILDE] = ACTIONS(2427), - [anon_sym_CARET] = ACTIONS(2427), - [anon_sym_AMP] = ACTIONS(2427), - [anon_sym_LT_DASH] = ACTIONS(2427), - [anon_sym_LT_LT] = ACTIONS(2427), - [anon_sym_GT_GT] = ACTIONS(2427), - [anon_sym_GT_GT_GT] = ACTIONS(2427), - [anon_sym_AMP_CARET] = ACTIONS(2427), - [anon_sym_AMP_AMP] = ACTIONS(2427), - [anon_sym_PIPE_PIPE] = ACTIONS(2427), - [anon_sym_or] = ACTIONS(2427), - [sym_none] = ACTIONS(2427), - [sym_true] = ACTIONS(2427), - [sym_false] = ACTIONS(2427), - [sym_nil] = ACTIONS(2427), - [anon_sym_QMARK_DOT] = ACTIONS(2427), - [anon_sym_POUND_LBRACK] = ACTIONS(2427), - [anon_sym_if] = ACTIONS(2427), - [anon_sym_DOLLARif] = ACTIONS(2427), - [anon_sym_is] = ACTIONS(2427), - [anon_sym_BANGis] = ACTIONS(2427), - [anon_sym_in] = ACTIONS(2427), - [anon_sym_BANGin] = ACTIONS(2427), - [anon_sym_match] = ACTIONS(2427), - [anon_sym_select] = ACTIONS(2427), - [anon_sym_lock] = ACTIONS(2427), - [anon_sym_rlock] = ACTIONS(2427), - [anon_sym_unsafe] = ACTIONS(2427), - [anon_sym_sql] = ACTIONS(2427), - [sym_int_literal] = ACTIONS(2427), - [sym_float_literal] = ACTIONS(2427), - [sym_rune_literal] = ACTIONS(2427), - [anon_sym_SQUOTE] = ACTIONS(2427), - [anon_sym_DQUOTE] = ACTIONS(2427), - [anon_sym_c_SQUOTE] = ACTIONS(2427), - [anon_sym_c_DQUOTE] = ACTIONS(2427), - [anon_sym_r_SQUOTE] = ACTIONS(2427), - [anon_sym_r_DQUOTE] = ACTIONS(2427), - [sym_pseudo_compile_time_identifier] = ACTIONS(2427), - [anon_sym_shared] = ACTIONS(2427), - [anon_sym_map_LBRACK] = ACTIONS(2427), - [anon_sym_chan] = ACTIONS(2427), - [anon_sym_thread] = ACTIONS(2427), - [anon_sym_atomic] = ACTIONS(2427), - [anon_sym_assert] = ACTIONS(2427), - [anon_sym_defer] = ACTIONS(2427), - [anon_sym_goto] = ACTIONS(2427), - [anon_sym_break] = ACTIONS(2427), - [anon_sym_continue] = ACTIONS(2427), - [anon_sym_return] = ACTIONS(2427), - [anon_sym_DOLLARfor] = ACTIONS(2427), - [anon_sym_for] = ACTIONS(2427), - [anon_sym_POUND] = ACTIONS(2427), - [anon_sym_asm] = ACTIONS(2427), - [anon_sym_AT_LBRACK] = ACTIONS(2427), + [anon_sym_DOT] = ACTIONS(2705), + [anon_sym_as] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_COMMA] = ACTIONS(2705), + [anon_sym_const] = ACTIONS(2705), + [anon_sym_LPAREN] = ACTIONS(2705), + [anon_sym___global] = ACTIONS(2705), + [anon_sym_type] = ACTIONS(2705), + [anon_sym_fn] = ACTIONS(2705), + [anon_sym_PLUS] = ACTIONS(2705), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2705), + [anon_sym_SLASH] = ACTIONS(2705), + [anon_sym_PERCENT] = ACTIONS(2705), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_GT] = ACTIONS(2705), + [anon_sym_EQ_EQ] = ACTIONS(2705), + [anon_sym_BANG_EQ] = ACTIONS(2705), + [anon_sym_LT_EQ] = ACTIONS(2705), + [anon_sym_GT_EQ] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_struct] = ACTIONS(2705), + [anon_sym_union] = ACTIONS(2705), + [anon_sym_pub] = ACTIONS(2705), + [anon_sym_mut] = ACTIONS(2705), + [anon_sym_enum] = ACTIONS(2705), + [anon_sym_interface] = ACTIONS(2705), + [anon_sym_PLUS_PLUS] = ACTIONS(2705), + [anon_sym_DASH_DASH] = ACTIONS(2705), + [anon_sym_QMARK] = ACTIONS(2705), + [anon_sym_BANG] = ACTIONS(2705), + [anon_sym_go] = ACTIONS(2705), + [anon_sym_spawn] = ACTIONS(2705), + [anon_sym_json_DOTdecode] = ACTIONS(2705), + [anon_sym_PIPE] = ACTIONS(2705), + [anon_sym_LBRACK2] = ACTIONS(2705), + [anon_sym_TILDE] = ACTIONS(2705), + [anon_sym_CARET] = ACTIONS(2705), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_LT_DASH] = ACTIONS(2705), + [anon_sym_LT_LT] = ACTIONS(2705), + [anon_sym_GT_GT] = ACTIONS(2705), + [anon_sym_GT_GT_GT] = ACTIONS(2705), + [anon_sym_AMP_CARET] = ACTIONS(2705), + [anon_sym_AMP_AMP] = ACTIONS(2705), + [anon_sym_PIPE_PIPE] = ACTIONS(2705), + [anon_sym_or] = ACTIONS(2705), + [sym_none] = ACTIONS(2705), + [sym_true] = ACTIONS(2705), + [sym_false] = ACTIONS(2705), + [sym_nil] = ACTIONS(2705), + [anon_sym_QMARK_DOT] = ACTIONS(2705), + [anon_sym_POUND_LBRACK] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_DOLLARif] = ACTIONS(2705), + [anon_sym_is] = ACTIONS(2705), + [anon_sym_BANGis] = ACTIONS(2705), + [anon_sym_in] = ACTIONS(2705), + [anon_sym_BANGin] = ACTIONS(2705), + [anon_sym_match] = ACTIONS(2705), + [anon_sym_select] = ACTIONS(2705), + [anon_sym_lock] = ACTIONS(2705), + [anon_sym_rlock] = ACTIONS(2705), + [anon_sym_unsafe] = ACTIONS(2705), + [anon_sym_sql] = ACTIONS(2705), + [sym_int_literal] = ACTIONS(2705), + [sym_float_literal] = ACTIONS(2705), + [sym_rune_literal] = ACTIONS(2705), + [anon_sym_SQUOTE] = ACTIONS(2705), + [anon_sym_DQUOTE] = ACTIONS(2705), + [anon_sym_c_SQUOTE] = ACTIONS(2705), + [anon_sym_c_DQUOTE] = ACTIONS(2705), + [anon_sym_r_SQUOTE] = ACTIONS(2705), + [anon_sym_r_DQUOTE] = ACTIONS(2705), + [sym_pseudo_compile_time_identifier] = ACTIONS(2705), + [anon_sym_shared] = ACTIONS(2705), + [anon_sym_map_LBRACK] = ACTIONS(2705), + [anon_sym_chan] = ACTIONS(2705), + [anon_sym_thread] = ACTIONS(2705), + [anon_sym_atomic] = ACTIONS(2705), + [anon_sym_assert] = ACTIONS(2705), + [anon_sym_defer] = ACTIONS(2705), + [anon_sym_goto] = ACTIONS(2705), + [anon_sym_break] = ACTIONS(2705), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_return] = ACTIONS(2705), + [anon_sym_DOLLARfor] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_POUND] = ACTIONS(2705), + [anon_sym_asm] = ACTIONS(2705), + [anon_sym_AT_LBRACK] = ACTIONS(2705), }, [1092] = { [sym_line_comment] = STATE(1092), [sym_block_comment] = STATE(1092), - [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), + [ts_builtin_sym_end] = ACTIONS(2467), + [sym_identifier] = ACTIONS(2469), + [anon_sym_LF] = ACTIONS(2469), + [anon_sym_CR] = ACTIONS(2469), + [anon_sym_CR_LF] = ACTIONS(2469), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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_SLASH] = 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_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), - [anon_sym_SQUOTE] = ACTIONS(2457), - [anon_sym_DQUOTE] = ACTIONS(2457), - [anon_sym_c_SQUOTE] = ACTIONS(2457), - [anon_sym_c_DQUOTE] = ACTIONS(2457), - [anon_sym_r_SQUOTE] = ACTIONS(2457), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(2469), + [anon_sym_as] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2469), + [anon_sym_COMMA] = ACTIONS(2469), + [anon_sym_const] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2469), + [anon_sym___global] = ACTIONS(2469), + [anon_sym_type] = ACTIONS(2469), + [anon_sym_fn] = ACTIONS(2469), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_STAR] = ACTIONS(2469), + [anon_sym_SLASH] = ACTIONS(2469), + [anon_sym_PERCENT] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2469), + [anon_sym_GT] = ACTIONS(2469), + [anon_sym_EQ_EQ] = ACTIONS(2469), + [anon_sym_BANG_EQ] = ACTIONS(2469), + [anon_sym_LT_EQ] = ACTIONS(2469), + [anon_sym_GT_EQ] = ACTIONS(2469), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_struct] = ACTIONS(2469), + [anon_sym_union] = ACTIONS(2469), + [anon_sym_pub] = ACTIONS(2469), + [anon_sym_mut] = ACTIONS(2469), + [anon_sym_enum] = ACTIONS(2469), + [anon_sym_interface] = ACTIONS(2469), + [anon_sym_PLUS_PLUS] = ACTIONS(2469), + [anon_sym_DASH_DASH] = ACTIONS(2469), + [anon_sym_QMARK] = ACTIONS(2469), + [anon_sym_BANG] = ACTIONS(2469), + [anon_sym_go] = ACTIONS(2469), + [anon_sym_spawn] = ACTIONS(2469), + [anon_sym_json_DOTdecode] = ACTIONS(2469), + [anon_sym_PIPE] = ACTIONS(2469), + [anon_sym_LBRACK2] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_CARET] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_LT_DASH] = ACTIONS(2469), + [anon_sym_LT_LT] = ACTIONS(2469), + [anon_sym_GT_GT] = ACTIONS(2469), + [anon_sym_GT_GT_GT] = ACTIONS(2469), + [anon_sym_AMP_CARET] = ACTIONS(2469), + [anon_sym_AMP_AMP] = ACTIONS(2469), + [anon_sym_PIPE_PIPE] = ACTIONS(2469), + [anon_sym_or] = ACTIONS(2469), + [sym_none] = ACTIONS(2469), + [sym_true] = ACTIONS(2469), + [sym_false] = ACTIONS(2469), + [sym_nil] = ACTIONS(2469), + [anon_sym_QMARK_DOT] = ACTIONS(2469), + [anon_sym_POUND_LBRACK] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_DOLLARif] = ACTIONS(2469), + [anon_sym_is] = ACTIONS(2469), + [anon_sym_BANGis] = ACTIONS(2469), + [anon_sym_in] = ACTIONS(2469), + [anon_sym_BANGin] = ACTIONS(2469), + [anon_sym_match] = ACTIONS(2469), + [anon_sym_select] = ACTIONS(2469), + [anon_sym_lock] = ACTIONS(2469), + [anon_sym_rlock] = ACTIONS(2469), + [anon_sym_unsafe] = ACTIONS(2469), + [anon_sym_sql] = ACTIONS(2469), + [sym_int_literal] = ACTIONS(2469), + [sym_float_literal] = ACTIONS(2469), + [sym_rune_literal] = ACTIONS(2469), + [anon_sym_SQUOTE] = ACTIONS(2469), + [anon_sym_DQUOTE] = ACTIONS(2469), + [anon_sym_c_SQUOTE] = ACTIONS(2469), + [anon_sym_c_DQUOTE] = ACTIONS(2469), + [anon_sym_r_SQUOTE] = ACTIONS(2469), + [anon_sym_r_DQUOTE] = ACTIONS(2469), + [sym_pseudo_compile_time_identifier] = ACTIONS(2469), + [anon_sym_shared] = ACTIONS(2469), + [anon_sym_map_LBRACK] = ACTIONS(2469), + [anon_sym_chan] = ACTIONS(2469), + [anon_sym_thread] = ACTIONS(2469), + [anon_sym_atomic] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2469), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_goto] = ACTIONS(2469), + [anon_sym_break] = ACTIONS(2469), + [anon_sym_continue] = ACTIONS(2469), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_DOLLARfor] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_POUND] = ACTIONS(2469), + [anon_sym_asm] = ACTIONS(2469), + [anon_sym_AT_LBRACK] = ACTIONS(2469), }, [1093] = { [sym_line_comment] = STATE(1093), [sym_block_comment] = STATE(1093), - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2463), - [anon_sym_LF] = ACTIONS(2463), - [anon_sym_CR] = ACTIONS(2463), - [anon_sym_CR_LF] = ACTIONS(2463), + [ts_builtin_sym_end] = ACTIONS(2097), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LF] = ACTIONS(2099), + [anon_sym_CR] = ACTIONS(2099), + [anon_sym_CR_LF] = ACTIONS(2099), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2463), - [anon_sym_as] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(2463), - [anon_sym_COMMA] = ACTIONS(2463), - [anon_sym_const] = ACTIONS(2463), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym___global] = ACTIONS(2463), - [anon_sym_type] = ACTIONS(2463), - [anon_sym_PIPE] = ACTIONS(2463), - [anon_sym_fn] = ACTIONS(2463), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(2463), - [anon_sym_STAR] = ACTIONS(2463), - [anon_sym_SLASH] = ACTIONS(2463), - [anon_sym_PERCENT] = ACTIONS(2463), - [anon_sym_LT] = ACTIONS(2463), - [anon_sym_GT] = ACTIONS(2463), - [anon_sym_EQ_EQ] = ACTIONS(2463), - [anon_sym_BANG_EQ] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(2463), - [anon_sym_GT_EQ] = ACTIONS(2463), - [anon_sym_LBRACK] = ACTIONS(2461), - [anon_sym_struct] = ACTIONS(2463), - [anon_sym_union] = ACTIONS(2463), - [anon_sym_pub] = ACTIONS(2463), - [anon_sym_mut] = ACTIONS(2463), - [anon_sym_enum] = ACTIONS(2463), - [anon_sym_interface] = ACTIONS(2463), - [anon_sym_PLUS_PLUS] = ACTIONS(2463), - [anon_sym_DASH_DASH] = ACTIONS(2463), - [anon_sym_QMARK] = ACTIONS(2463), - [anon_sym_BANG] = ACTIONS(2463), - [anon_sym_go] = ACTIONS(2463), - [anon_sym_spawn] = ACTIONS(2463), - [anon_sym_json_DOTdecode] = ACTIONS(2463), - [anon_sym_LBRACK2] = ACTIONS(2463), - [anon_sym_TILDE] = ACTIONS(2463), - [anon_sym_CARET] = ACTIONS(2463), - [anon_sym_AMP] = ACTIONS(2463), - [anon_sym_LT_DASH] = ACTIONS(2463), - [anon_sym_LT_LT] = ACTIONS(2463), - [anon_sym_GT_GT] = ACTIONS(2463), - [anon_sym_GT_GT_GT] = ACTIONS(2463), - [anon_sym_AMP_CARET] = ACTIONS(2463), - [anon_sym_AMP_AMP] = ACTIONS(2463), - [anon_sym_PIPE_PIPE] = ACTIONS(2463), - [anon_sym_or] = ACTIONS(2463), - [sym_none] = ACTIONS(2463), - [sym_true] = ACTIONS(2463), - [sym_false] = ACTIONS(2463), - [sym_nil] = ACTIONS(2463), - [anon_sym_QMARK_DOT] = ACTIONS(2463), - [anon_sym_POUND_LBRACK] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2463), - [anon_sym_DOLLARif] = ACTIONS(2463), - [anon_sym_is] = ACTIONS(2463), - [anon_sym_BANGis] = ACTIONS(2463), - [anon_sym_in] = ACTIONS(2463), - [anon_sym_BANGin] = ACTIONS(2463), - [anon_sym_match] = ACTIONS(2463), - [anon_sym_select] = ACTIONS(2463), - [anon_sym_lock] = ACTIONS(2463), - [anon_sym_rlock] = ACTIONS(2463), - [anon_sym_unsafe] = ACTIONS(2463), - [anon_sym_sql] = ACTIONS(2463), - [sym_int_literal] = ACTIONS(2463), - [sym_float_literal] = ACTIONS(2463), - [sym_rune_literal] = ACTIONS(2463), - [anon_sym_SQUOTE] = ACTIONS(2463), - [anon_sym_DQUOTE] = ACTIONS(2463), - [anon_sym_c_SQUOTE] = ACTIONS(2463), - [anon_sym_c_DQUOTE] = ACTIONS(2463), - [anon_sym_r_SQUOTE] = ACTIONS(2463), - [anon_sym_r_DQUOTE] = ACTIONS(2463), - [sym_pseudo_compile_time_identifier] = ACTIONS(2463), - [anon_sym_shared] = ACTIONS(2463), - [anon_sym_map_LBRACK] = ACTIONS(2463), - [anon_sym_chan] = ACTIONS(2463), - [anon_sym_thread] = ACTIONS(2463), - [anon_sym_atomic] = ACTIONS(2463), - [anon_sym_assert] = ACTIONS(2463), - [anon_sym_defer] = ACTIONS(2463), - [anon_sym_goto] = ACTIONS(2463), - [anon_sym_break] = ACTIONS(2463), - [anon_sym_continue] = ACTIONS(2463), - [anon_sym_return] = ACTIONS(2463), - [anon_sym_DOLLARfor] = ACTIONS(2463), - [anon_sym_for] = ACTIONS(2463), - [anon_sym_POUND] = ACTIONS(2463), - [anon_sym_asm] = ACTIONS(2463), - [anon_sym_AT_LBRACK] = ACTIONS(2463), + [anon_sym_DOT] = ACTIONS(2099), + [anon_sym_as] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_COMMA] = ACTIONS(2099), + [anon_sym_const] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(2099), + [anon_sym___global] = ACTIONS(2099), + [anon_sym_type] = ACTIONS(2099), + [anon_sym_fn] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(2099), + [anon_sym_DASH] = ACTIONS(2099), + [anon_sym_STAR] = ACTIONS(2099), + [anon_sym_SLASH] = ACTIONS(2099), + [anon_sym_PERCENT] = ACTIONS(2099), + [anon_sym_LT] = ACTIONS(2099), + [anon_sym_GT] = ACTIONS(2099), + [anon_sym_EQ_EQ] = ACTIONS(2099), + [anon_sym_BANG_EQ] = ACTIONS(2099), + [anon_sym_LT_EQ] = ACTIONS(2099), + [anon_sym_GT_EQ] = ACTIONS(2099), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_struct] = ACTIONS(2099), + [anon_sym_union] = ACTIONS(2099), + [anon_sym_pub] = ACTIONS(2099), + [anon_sym_mut] = ACTIONS(2099), + [anon_sym_enum] = ACTIONS(2099), + [anon_sym_interface] = ACTIONS(2099), + [anon_sym_PLUS_PLUS] = ACTIONS(2099), + [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_QMARK] = ACTIONS(2099), + [anon_sym_BANG] = ACTIONS(2099), + [anon_sym_go] = ACTIONS(2099), + [anon_sym_spawn] = ACTIONS(2099), + [anon_sym_json_DOTdecode] = ACTIONS(2099), + [anon_sym_PIPE] = ACTIONS(2099), + [anon_sym_LBRACK2] = ACTIONS(2099), + [anon_sym_TILDE] = ACTIONS(2099), + [anon_sym_CARET] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_LT_DASH] = ACTIONS(2099), + [anon_sym_LT_LT] = ACTIONS(2099), + [anon_sym_GT_GT] = ACTIONS(2099), + [anon_sym_GT_GT_GT] = ACTIONS(2099), + [anon_sym_AMP_CARET] = ACTIONS(2099), + [anon_sym_AMP_AMP] = ACTIONS(2099), + [anon_sym_PIPE_PIPE] = ACTIONS(2099), + [anon_sym_or] = ACTIONS(2099), + [sym_none] = ACTIONS(2099), + [sym_true] = ACTIONS(2099), + [sym_false] = ACTIONS(2099), + [sym_nil] = ACTIONS(2099), + [anon_sym_QMARK_DOT] = ACTIONS(2099), + [anon_sym_POUND_LBRACK] = ACTIONS(2099), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(2099), + [anon_sym_is] = ACTIONS(2099), + [anon_sym_BANGis] = ACTIONS(2099), + [anon_sym_in] = ACTIONS(2099), + [anon_sym_BANGin] = ACTIONS(2099), + [anon_sym_match] = ACTIONS(2099), + [anon_sym_select] = ACTIONS(2099), + [anon_sym_lock] = ACTIONS(2099), + [anon_sym_rlock] = ACTIONS(2099), + [anon_sym_unsafe] = ACTIONS(2099), + [anon_sym_sql] = ACTIONS(2099), + [sym_int_literal] = ACTIONS(2099), + [sym_float_literal] = ACTIONS(2099), + [sym_rune_literal] = ACTIONS(2099), + [anon_sym_SQUOTE] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(2099), + [anon_sym_c_SQUOTE] = ACTIONS(2099), + [anon_sym_c_DQUOTE] = ACTIONS(2099), + [anon_sym_r_SQUOTE] = ACTIONS(2099), + [anon_sym_r_DQUOTE] = ACTIONS(2099), + [sym_pseudo_compile_time_identifier] = ACTIONS(2099), + [anon_sym_shared] = ACTIONS(2099), + [anon_sym_map_LBRACK] = ACTIONS(2099), + [anon_sym_chan] = ACTIONS(2099), + [anon_sym_thread] = ACTIONS(2099), + [anon_sym_atomic] = ACTIONS(2099), + [anon_sym_assert] = ACTIONS(2099), + [anon_sym_defer] = ACTIONS(2099), + [anon_sym_goto] = ACTIONS(2099), + [anon_sym_break] = ACTIONS(2099), + [anon_sym_continue] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2099), + [anon_sym_DOLLARfor] = ACTIONS(2099), + [anon_sym_for] = ACTIONS(2099), + [anon_sym_POUND] = ACTIONS(2099), + [anon_sym_asm] = ACTIONS(2099), + [anon_sym_AT_LBRACK] = ACTIONS(2099), }, [1094] = { [sym_line_comment] = STATE(1094), [sym_block_comment] = STATE(1094), - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(2475), - [anon_sym_LF] = ACTIONS(2475), - [anon_sym_CR] = ACTIONS(2475), - [anon_sym_CR_LF] = ACTIONS(2475), + [ts_builtin_sym_end] = ACTIONS(2399), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LF] = ACTIONS(2401), + [anon_sym_CR] = ACTIONS(2401), + [anon_sym_CR_LF] = ACTIONS(2401), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2475), - [anon_sym_as] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_COMMA] = ACTIONS(2475), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym___global] = ACTIONS(2475), - [anon_sym_type] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(2475), - [anon_sym_fn] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2475), - [anon_sym_SLASH] = ACTIONS(2475), - [anon_sym_PERCENT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_EQ_EQ] = ACTIONS(2475), - [anon_sym_BANG_EQ] = ACTIONS(2475), - [anon_sym_LT_EQ] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2475), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_union] = ACTIONS(2475), - [anon_sym_pub] = ACTIONS(2475), - [anon_sym_mut] = ACTIONS(2475), - [anon_sym_enum] = ACTIONS(2475), - [anon_sym_interface] = ACTIONS(2475), - [anon_sym_PLUS_PLUS] = ACTIONS(2475), - [anon_sym_DASH_DASH] = ACTIONS(2475), - [anon_sym_QMARK] = ACTIONS(2475), - [anon_sym_BANG] = ACTIONS(2475), - [anon_sym_go] = ACTIONS(2475), - [anon_sym_spawn] = ACTIONS(2475), - [anon_sym_json_DOTdecode] = ACTIONS(2475), - [anon_sym_LBRACK2] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2475), - [anon_sym_LT_DASH] = ACTIONS(2475), - [anon_sym_LT_LT] = ACTIONS(2475), - [anon_sym_GT_GT] = ACTIONS(2475), - [anon_sym_GT_GT_GT] = ACTIONS(2475), - [anon_sym_AMP_CARET] = ACTIONS(2475), - [anon_sym_AMP_AMP] = ACTIONS(2475), - [anon_sym_PIPE_PIPE] = ACTIONS(2475), - [anon_sym_or] = ACTIONS(2475), - [sym_none] = ACTIONS(2475), - [sym_true] = ACTIONS(2475), - [sym_false] = ACTIONS(2475), - [sym_nil] = ACTIONS(2475), - [anon_sym_QMARK_DOT] = ACTIONS(2475), - [anon_sym_POUND_LBRACK] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_DOLLARif] = ACTIONS(2475), - [anon_sym_is] = ACTIONS(2475), - [anon_sym_BANGis] = ACTIONS(2475), - [anon_sym_in] = ACTIONS(2475), - [anon_sym_BANGin] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_lock] = ACTIONS(2475), - [anon_sym_rlock] = ACTIONS(2475), - [anon_sym_unsafe] = ACTIONS(2475), - [anon_sym_sql] = ACTIONS(2475), - [sym_int_literal] = ACTIONS(2475), - [sym_float_literal] = ACTIONS(2475), - [sym_rune_literal] = ACTIONS(2475), - [anon_sym_SQUOTE] = ACTIONS(2475), - [anon_sym_DQUOTE] = ACTIONS(2475), - [anon_sym_c_SQUOTE] = ACTIONS(2475), - [anon_sym_c_DQUOTE] = ACTIONS(2475), - [anon_sym_r_SQUOTE] = ACTIONS(2475), - [anon_sym_r_DQUOTE] = ACTIONS(2475), - [sym_pseudo_compile_time_identifier] = ACTIONS(2475), - [anon_sym_shared] = ACTIONS(2475), - [anon_sym_map_LBRACK] = ACTIONS(2475), - [anon_sym_chan] = ACTIONS(2475), - [anon_sym_thread] = ACTIONS(2475), - [anon_sym_atomic] = ACTIONS(2475), - [anon_sym_assert] = ACTIONS(2475), - [anon_sym_defer] = ACTIONS(2475), - [anon_sym_goto] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_DOLLARfor] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_POUND] = ACTIONS(2475), - [anon_sym_asm] = ACTIONS(2475), - [anon_sym_AT_LBRACK] = ACTIONS(2475), + [anon_sym_DOT] = ACTIONS(2401), + [anon_sym_as] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_COMMA] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2401), + [anon_sym___global] = ACTIONS(2401), + [anon_sym_type] = ACTIONS(2401), + [anon_sym_fn] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2401), + [anon_sym_SLASH] = ACTIONS(2401), + [anon_sym_PERCENT] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_GT] = ACTIONS(2401), + [anon_sym_EQ_EQ] = ACTIONS(2401), + [anon_sym_BANG_EQ] = ACTIONS(2401), + [anon_sym_LT_EQ] = ACTIONS(2401), + [anon_sym_GT_EQ] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_struct] = ACTIONS(2401), + [anon_sym_union] = ACTIONS(2401), + [anon_sym_pub] = ACTIONS(2401), + [anon_sym_mut] = ACTIONS(2401), + [anon_sym_enum] = ACTIONS(2401), + [anon_sym_interface] = ACTIONS(2401), + [anon_sym_PLUS_PLUS] = ACTIONS(2401), + [anon_sym_DASH_DASH] = ACTIONS(2401), + [anon_sym_QMARK] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2401), + [anon_sym_go] = ACTIONS(2401), + [anon_sym_spawn] = ACTIONS(2401), + [anon_sym_json_DOTdecode] = ACTIONS(2401), + [anon_sym_PIPE] = ACTIONS(2401), + [anon_sym_LBRACK2] = ACTIONS(2401), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2401), + [anon_sym_LT_DASH] = ACTIONS(2401), + [anon_sym_LT_LT] = ACTIONS(2401), + [anon_sym_GT_GT] = ACTIONS(2401), + [anon_sym_GT_GT_GT] = ACTIONS(2401), + [anon_sym_AMP_CARET] = ACTIONS(2401), + [anon_sym_AMP_AMP] = ACTIONS(2401), + [anon_sym_PIPE_PIPE] = ACTIONS(2401), + [anon_sym_or] = ACTIONS(2401), + [sym_none] = ACTIONS(2401), + [sym_true] = ACTIONS(2401), + [sym_false] = ACTIONS(2401), + [sym_nil] = ACTIONS(2401), + [anon_sym_QMARK_DOT] = ACTIONS(2401), + [anon_sym_POUND_LBRACK] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_DOLLARif] = ACTIONS(2401), + [anon_sym_is] = ACTIONS(2401), + [anon_sym_BANGis] = ACTIONS(2401), + [anon_sym_in] = ACTIONS(2401), + [anon_sym_BANGin] = ACTIONS(2401), + [anon_sym_match] = ACTIONS(2401), + [anon_sym_select] = ACTIONS(2401), + [anon_sym_lock] = ACTIONS(2401), + [anon_sym_rlock] = ACTIONS(2401), + [anon_sym_unsafe] = ACTIONS(2401), + [anon_sym_sql] = ACTIONS(2401), + [sym_int_literal] = ACTIONS(2401), + [sym_float_literal] = ACTIONS(2401), + [sym_rune_literal] = ACTIONS(2401), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(2401), + [anon_sym_c_SQUOTE] = ACTIONS(2401), + [anon_sym_c_DQUOTE] = ACTIONS(2401), + [anon_sym_r_SQUOTE] = ACTIONS(2401), + [anon_sym_r_DQUOTE] = ACTIONS(2401), + [sym_pseudo_compile_time_identifier] = ACTIONS(2401), + [anon_sym_shared] = ACTIONS(2401), + [anon_sym_map_LBRACK] = ACTIONS(2401), + [anon_sym_chan] = ACTIONS(2401), + [anon_sym_thread] = ACTIONS(2401), + [anon_sym_atomic] = ACTIONS(2401), + [anon_sym_assert] = ACTIONS(2401), + [anon_sym_defer] = ACTIONS(2401), + [anon_sym_goto] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_DOLLARfor] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_POUND] = ACTIONS(2401), + [anon_sym_asm] = ACTIONS(2401), + [anon_sym_AT_LBRACK] = ACTIONS(2401), }, [1095] = { [sym_line_comment] = STATE(1095), [sym_block_comment] = STATE(1095), - [ts_builtin_sym_end] = ACTIONS(2705), - [sym_identifier] = ACTIONS(2707), - [anon_sym_LF] = ACTIONS(2707), - [anon_sym_CR] = ACTIONS(2707), - [anon_sym_CR_LF] = ACTIONS(2707), + [ts_builtin_sym_end] = ACTIONS(2103), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(2105), + [anon_sym_CR] = ACTIONS(2105), + [anon_sym_CR_LF] = ACTIONS(2105), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2707), - [anon_sym_as] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2707), - [anon_sym_COMMA] = ACTIONS(2707), - [anon_sym_const] = ACTIONS(2707), - [anon_sym_LPAREN] = ACTIONS(2707), - [anon_sym___global] = ACTIONS(2707), - [anon_sym_type] = ACTIONS(2707), - [anon_sym_PIPE] = ACTIONS(2707), - [anon_sym_fn] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_SLASH] = ACTIONS(2707), - [anon_sym_PERCENT] = ACTIONS(2707), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_GT] = ACTIONS(2707), - [anon_sym_EQ_EQ] = ACTIONS(2707), - [anon_sym_BANG_EQ] = ACTIONS(2707), - [anon_sym_LT_EQ] = ACTIONS(2707), - [anon_sym_GT_EQ] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2705), - [anon_sym_struct] = ACTIONS(2707), - [anon_sym_union] = ACTIONS(2707), - [anon_sym_pub] = ACTIONS(2707), - [anon_sym_mut] = ACTIONS(2707), - [anon_sym_enum] = ACTIONS(2707), - [anon_sym_interface] = ACTIONS(2707), - [anon_sym_PLUS_PLUS] = ACTIONS(2707), - [anon_sym_DASH_DASH] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(2707), - [anon_sym_BANG] = ACTIONS(2707), - [anon_sym_go] = ACTIONS(2707), - [anon_sym_spawn] = ACTIONS(2707), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2707), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2707), - [anon_sym_LT_DASH] = ACTIONS(2707), - [anon_sym_LT_LT] = ACTIONS(2707), - [anon_sym_GT_GT] = ACTIONS(2707), - [anon_sym_GT_GT_GT] = ACTIONS(2707), - [anon_sym_AMP_CARET] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(2707), - [anon_sym_PIPE_PIPE] = ACTIONS(2707), - [anon_sym_or] = ACTIONS(2707), - [sym_none] = ACTIONS(2707), - [sym_true] = ACTIONS(2707), - [sym_false] = ACTIONS(2707), - [sym_nil] = ACTIONS(2707), - [anon_sym_QMARK_DOT] = ACTIONS(2707), - [anon_sym_POUND_LBRACK] = ACTIONS(2707), - [anon_sym_if] = ACTIONS(2707), - [anon_sym_DOLLARif] = ACTIONS(2707), - [anon_sym_is] = ACTIONS(2707), - [anon_sym_BANGis] = ACTIONS(2707), - [anon_sym_in] = ACTIONS(2707), - [anon_sym_BANGin] = ACTIONS(2707), - [anon_sym_match] = ACTIONS(2707), - [anon_sym_select] = ACTIONS(2707), - [anon_sym_lock] = ACTIONS(2707), - [anon_sym_rlock] = ACTIONS(2707), - [anon_sym_unsafe] = ACTIONS(2707), - [anon_sym_sql] = ACTIONS(2707), - [sym_int_literal] = ACTIONS(2707), - [sym_float_literal] = ACTIONS(2707), - [sym_rune_literal] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2707), - [anon_sym_c_SQUOTE] = ACTIONS(2707), - [anon_sym_c_DQUOTE] = ACTIONS(2707), - [anon_sym_r_SQUOTE] = ACTIONS(2707), - [anon_sym_r_DQUOTE] = ACTIONS(2707), - [sym_pseudo_compile_time_identifier] = ACTIONS(2707), - [anon_sym_shared] = ACTIONS(2707), - [anon_sym_map_LBRACK] = ACTIONS(2707), - [anon_sym_chan] = ACTIONS(2707), - [anon_sym_thread] = ACTIONS(2707), - [anon_sym_atomic] = ACTIONS(2707), - [anon_sym_assert] = ACTIONS(2707), - [anon_sym_defer] = ACTIONS(2707), - [anon_sym_goto] = ACTIONS(2707), - [anon_sym_break] = ACTIONS(2707), - [anon_sym_continue] = ACTIONS(2707), - [anon_sym_return] = ACTIONS(2707), - [anon_sym_DOLLARfor] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(2707), - [anon_sym_POUND] = ACTIONS(2707), - [anon_sym_asm] = ACTIONS(2707), - [anon_sym_AT_LBRACK] = ACTIONS(2707), - }, - [1096] = { - [sym_line_comment] = STATE(1096), - [sym_block_comment] = STATE(1096), - [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_DOT] = ACTIONS(2105), + [anon_sym_as] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_COMMA] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym___global] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_fn] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_PERCENT] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_GT] = ACTIONS(2105), + [anon_sym_EQ_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ] = ACTIONS(2105), + [anon_sym_LT_EQ] = ACTIONS(2105), + [anon_sym_GT_EQ] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_struct] = ACTIONS(2105), + [anon_sym_union] = ACTIONS(2105), + [anon_sym_pub] = ACTIONS(2105), + [anon_sym_mut] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [anon_sym_QMARK] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_go] = ACTIONS(2105), + [anon_sym_spawn] = ACTIONS(2105), + [anon_sym_json_DOTdecode] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_LBRACK2] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_LT_DASH] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2105), + [anon_sym_AMP_CARET] = ACTIONS(2105), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [anon_sym_or] = ACTIONS(2105), + [sym_none] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_nil] = ACTIONS(2105), + [anon_sym_QMARK_DOT] = ACTIONS(2105), + [anon_sym_POUND_LBRACK] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_DOLLARif] = ACTIONS(2105), + [anon_sym_is] = ACTIONS(2105), + [anon_sym_BANGis] = ACTIONS(2105), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_BANGin] = ACTIONS(2105), + [anon_sym_match] = ACTIONS(2105), + [anon_sym_select] = ACTIONS(2105), + [anon_sym_lock] = ACTIONS(2105), + [anon_sym_rlock] = ACTIONS(2105), + [anon_sym_unsafe] = ACTIONS(2105), + [anon_sym_sql] = ACTIONS(2105), + [sym_int_literal] = ACTIONS(2105), + [sym_float_literal] = ACTIONS(2105), + [sym_rune_literal] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_c_SQUOTE] = ACTIONS(2105), + [anon_sym_c_DQUOTE] = ACTIONS(2105), + [anon_sym_r_SQUOTE] = ACTIONS(2105), + [anon_sym_r_DQUOTE] = ACTIONS(2105), + [sym_pseudo_compile_time_identifier] = ACTIONS(2105), + [anon_sym_shared] = ACTIONS(2105), + [anon_sym_map_LBRACK] = ACTIONS(2105), + [anon_sym_chan] = ACTIONS(2105), + [anon_sym_thread] = ACTIONS(2105), + [anon_sym_atomic] = ACTIONS(2105), + [anon_sym_assert] = ACTIONS(2105), + [anon_sym_defer] = ACTIONS(2105), + [anon_sym_goto] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_DOLLARfor] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_POUND] = ACTIONS(2105), + [anon_sym_asm] = ACTIONS(2105), + [anon_sym_AT_LBRACK] = ACTIONS(2105), + }, + [1096] = { + [sym_line_comment] = STATE(1096), + [sym_block_comment] = STATE(1096), + [ts_builtin_sym_end] = ACTIONS(1885), + [sym_identifier] = ACTIONS(1887), + [anon_sym_LF] = ACTIONS(1887), + [anon_sym_CR] = ACTIONS(1887), + [anon_sym_CR_LF] = ACTIONS(1887), + [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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_SLASH] = 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_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), - [anon_sym_SQUOTE] = ACTIONS(2821), - [anon_sym_DQUOTE] = ACTIONS(2821), - [anon_sym_c_SQUOTE] = ACTIONS(2821), - [anon_sym_c_DQUOTE] = ACTIONS(2821), - [anon_sym_r_SQUOTE] = ACTIONS(2821), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(1887), + [anon_sym_as] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_COMMA] = ACTIONS(1887), + [anon_sym_const] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym___global] = ACTIONS(1887), + [anon_sym_type] = ACTIONS(1887), + [anon_sym_fn] = ACTIONS(1887), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1887), + [anon_sym_SLASH] = ACTIONS(1887), + [anon_sym_PERCENT] = ACTIONS(1887), + [anon_sym_LT] = ACTIONS(1887), + [anon_sym_GT] = ACTIONS(1887), + [anon_sym_EQ_EQ] = ACTIONS(1887), + [anon_sym_BANG_EQ] = ACTIONS(1887), + [anon_sym_LT_EQ] = ACTIONS(1887), + [anon_sym_GT_EQ] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_struct] = ACTIONS(1887), + [anon_sym_union] = ACTIONS(1887), + [anon_sym_pub] = ACTIONS(1887), + [anon_sym_mut] = ACTIONS(1887), + [anon_sym_enum] = ACTIONS(1887), + [anon_sym_interface] = ACTIONS(1887), + [anon_sym_PLUS_PLUS] = ACTIONS(1887), + [anon_sym_DASH_DASH] = ACTIONS(1887), + [anon_sym_QMARK] = ACTIONS(1887), + [anon_sym_BANG] = ACTIONS(1887), + [anon_sym_go] = ACTIONS(1887), + [anon_sym_spawn] = ACTIONS(1887), + [anon_sym_json_DOTdecode] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1887), + [anon_sym_LBRACK2] = ACTIONS(1887), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_CARET] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(1887), + [anon_sym_LT_DASH] = ACTIONS(1887), + [anon_sym_LT_LT] = ACTIONS(1887), + [anon_sym_GT_GT] = ACTIONS(1887), + [anon_sym_GT_GT_GT] = ACTIONS(1887), + [anon_sym_AMP_CARET] = ACTIONS(1887), + [anon_sym_AMP_AMP] = ACTIONS(1887), + [anon_sym_PIPE_PIPE] = ACTIONS(1887), + [anon_sym_or] = ACTIONS(1887), + [sym_none] = ACTIONS(1887), + [sym_true] = ACTIONS(1887), + [sym_false] = ACTIONS(1887), + [sym_nil] = ACTIONS(1887), + [anon_sym_QMARK_DOT] = ACTIONS(1887), + [anon_sym_POUND_LBRACK] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_DOLLARif] = ACTIONS(1887), + [anon_sym_is] = ACTIONS(1887), + [anon_sym_BANGis] = ACTIONS(1887), + [anon_sym_in] = ACTIONS(1887), + [anon_sym_BANGin] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_select] = ACTIONS(1887), + [anon_sym_lock] = ACTIONS(1887), + [anon_sym_rlock] = ACTIONS(1887), + [anon_sym_unsafe] = ACTIONS(1887), + [anon_sym_sql] = ACTIONS(1887), + [sym_int_literal] = ACTIONS(1887), + [sym_float_literal] = ACTIONS(1887), + [sym_rune_literal] = ACTIONS(1887), + [anon_sym_SQUOTE] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(1887), + [anon_sym_c_SQUOTE] = ACTIONS(1887), + [anon_sym_c_DQUOTE] = ACTIONS(1887), + [anon_sym_r_SQUOTE] = ACTIONS(1887), + [anon_sym_r_DQUOTE] = ACTIONS(1887), + [sym_pseudo_compile_time_identifier] = ACTIONS(1887), + [anon_sym_shared] = ACTIONS(1887), + [anon_sym_map_LBRACK] = ACTIONS(1887), + [anon_sym_chan] = ACTIONS(1887), + [anon_sym_thread] = ACTIONS(1887), + [anon_sym_atomic] = ACTIONS(1887), + [anon_sym_assert] = ACTIONS(1887), + [anon_sym_defer] = ACTIONS(1887), + [anon_sym_goto] = ACTIONS(1887), + [anon_sym_break] = ACTIONS(1887), + [anon_sym_continue] = ACTIONS(1887), + [anon_sym_return] = ACTIONS(1887), + [anon_sym_DOLLARfor] = ACTIONS(1887), + [anon_sym_for] = ACTIONS(1887), + [anon_sym_POUND] = ACTIONS(1887), + [anon_sym_asm] = ACTIONS(1887), + [anon_sym_AT_LBRACK] = ACTIONS(1887), }, [1097] = { [sym_line_comment] = STATE(1097), [sym_block_comment] = STATE(1097), - [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), + [ts_builtin_sym_end] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1837), + [anon_sym_LF] = ACTIONS(1837), + [anon_sym_CR] = ACTIONS(1837), + [anon_sym_CR_LF] = ACTIONS(1837), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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_SLASH] = 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), - [anon_sym_SQUOTE] = ACTIONS(2833), - [anon_sym_DQUOTE] = ACTIONS(2833), - [anon_sym_c_SQUOTE] = ACTIONS(2833), - [anon_sym_c_DQUOTE] = ACTIONS(2833), - [anon_sym_r_SQUOTE] = ACTIONS(2833), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_as] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1845), + [anon_sym_const] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym___global] = ACTIONS(1837), + [anon_sym_type] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_struct] = ACTIONS(1837), + [anon_sym_union] = ACTIONS(1837), + [anon_sym_pub] = ACTIONS(1837), + [anon_sym_mut] = ACTIONS(1837), + [anon_sym_enum] = ACTIONS(1837), + [anon_sym_interface] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_QMARK] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_go] = ACTIONS(1837), + [anon_sym_spawn] = ACTIONS(1837), + [anon_sym_json_DOTdecode] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_LBRACK2] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_AMP_CARET] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [sym_none] = ACTIONS(1837), + [sym_true] = ACTIONS(1837), + [sym_false] = ACTIONS(1837), + [sym_nil] = ACTIONS(1837), + [anon_sym_QMARK_DOT] = ACTIONS(1837), + [anon_sym_POUND_LBRACK] = ACTIONS(1837), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_DOLLARif] = ACTIONS(1837), + [anon_sym_is] = ACTIONS(1837), + [anon_sym_BANGis] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_BANGin] = ACTIONS(1837), + [anon_sym_match] = ACTIONS(1837), + [anon_sym_select] = ACTIONS(1837), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1837), + [anon_sym_sql] = ACTIONS(1837), + [sym_int_literal] = ACTIONS(1837), + [sym_float_literal] = ACTIONS(1837), + [sym_rune_literal] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_c_SQUOTE] = ACTIONS(1837), + [anon_sym_c_DQUOTE] = ACTIONS(1837), + [anon_sym_r_SQUOTE] = ACTIONS(1837), + [anon_sym_r_DQUOTE] = ACTIONS(1837), + [sym_pseudo_compile_time_identifier] = ACTIONS(1837), + [anon_sym_shared] = ACTIONS(1837), + [anon_sym_map_LBRACK] = ACTIONS(1837), + [anon_sym_chan] = ACTIONS(1837), + [anon_sym_thread] = ACTIONS(1837), + [anon_sym_atomic] = ACTIONS(1837), + [anon_sym_assert] = ACTIONS(1837), + [anon_sym_defer] = ACTIONS(1837), + [anon_sym_goto] = ACTIONS(1837), + [anon_sym_break] = ACTIONS(1837), + [anon_sym_continue] = ACTIONS(1837), + [anon_sym_return] = ACTIONS(1837), + [anon_sym_DOLLARfor] = ACTIONS(1837), + [anon_sym_for] = ACTIONS(1837), + [anon_sym_POUND] = ACTIONS(1837), + [anon_sym_asm] = ACTIONS(1837), + [anon_sym_AT_LBRACK] = ACTIONS(1837), }, [1098] = { [sym_line_comment] = STATE(1098), [sym_block_comment] = STATE(1098), - [sym_reference_expression] = STATE(4472), - [sym_type_reference_expression] = STATE(1404), - [sym_plain_type] = STATE(1444), + [ts_builtin_sym_end] = ACTIONS(2777), + [sym_identifier] = ACTIONS(2779), + [anon_sym_LF] = ACTIONS(2779), + [anon_sym_CR] = ACTIONS(2779), + [anon_sym_CR_LF] = ACTIONS(2779), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2779), + [anon_sym_as] = ACTIONS(2779), + [anon_sym_LBRACE] = ACTIONS(2779), + [anon_sym_COMMA] = ACTIONS(2779), + [anon_sym_const] = ACTIONS(2779), + [anon_sym_LPAREN] = ACTIONS(2779), + [anon_sym___global] = ACTIONS(2779), + [anon_sym_type] = ACTIONS(2779), + [anon_sym_fn] = ACTIONS(2779), + [anon_sym_PLUS] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_STAR] = ACTIONS(2779), + [anon_sym_SLASH] = ACTIONS(2779), + [anon_sym_PERCENT] = ACTIONS(2779), + [anon_sym_LT] = ACTIONS(2779), + [anon_sym_GT] = ACTIONS(2779), + [anon_sym_EQ_EQ] = ACTIONS(2779), + [anon_sym_BANG_EQ] = ACTIONS(2779), + [anon_sym_LT_EQ] = ACTIONS(2779), + [anon_sym_GT_EQ] = ACTIONS(2779), + [anon_sym_LBRACK] = ACTIONS(2777), + [anon_sym_struct] = ACTIONS(2779), + [anon_sym_union] = ACTIONS(2779), + [anon_sym_pub] = ACTIONS(2779), + [anon_sym_mut] = ACTIONS(2779), + [anon_sym_enum] = ACTIONS(2779), + [anon_sym_interface] = ACTIONS(2779), + [anon_sym_PLUS_PLUS] = ACTIONS(2779), + [anon_sym_DASH_DASH] = ACTIONS(2779), + [anon_sym_QMARK] = ACTIONS(2779), + [anon_sym_BANG] = ACTIONS(2779), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2779), + [anon_sym_json_DOTdecode] = ACTIONS(2779), + [anon_sym_PIPE] = ACTIONS(2779), + [anon_sym_LBRACK2] = ACTIONS(2779), + [anon_sym_TILDE] = ACTIONS(2779), + [anon_sym_CARET] = ACTIONS(2779), + [anon_sym_AMP] = ACTIONS(2779), + [anon_sym_LT_DASH] = ACTIONS(2779), + [anon_sym_LT_LT] = ACTIONS(2779), + [anon_sym_GT_GT] = ACTIONS(2779), + [anon_sym_GT_GT_GT] = ACTIONS(2779), + [anon_sym_AMP_CARET] = ACTIONS(2779), + [anon_sym_AMP_AMP] = ACTIONS(2779), + [anon_sym_PIPE_PIPE] = ACTIONS(2779), + [anon_sym_or] = ACTIONS(2779), + [sym_none] = ACTIONS(2779), + [sym_true] = ACTIONS(2779), + [sym_false] = ACTIONS(2779), + [sym_nil] = ACTIONS(2779), + [anon_sym_QMARK_DOT] = ACTIONS(2779), + [anon_sym_POUND_LBRACK] = ACTIONS(2779), + [anon_sym_if] = ACTIONS(2779), + [anon_sym_DOLLARif] = ACTIONS(2779), + [anon_sym_is] = ACTIONS(2779), + [anon_sym_BANGis] = ACTIONS(2779), + [anon_sym_in] = ACTIONS(2779), + [anon_sym_BANGin] = ACTIONS(2779), + [anon_sym_match] = ACTIONS(2779), + [anon_sym_select] = ACTIONS(2779), + [anon_sym_lock] = ACTIONS(2779), + [anon_sym_rlock] = ACTIONS(2779), + [anon_sym_unsafe] = ACTIONS(2779), + [anon_sym_sql] = ACTIONS(2779), + [sym_int_literal] = ACTIONS(2779), + [sym_float_literal] = ACTIONS(2779), + [sym_rune_literal] = ACTIONS(2779), + [anon_sym_SQUOTE] = ACTIONS(2779), + [anon_sym_DQUOTE] = ACTIONS(2779), + [anon_sym_c_SQUOTE] = ACTIONS(2779), + [anon_sym_c_DQUOTE] = ACTIONS(2779), + [anon_sym_r_SQUOTE] = ACTIONS(2779), + [anon_sym_r_DQUOTE] = ACTIONS(2779), + [sym_pseudo_compile_time_identifier] = ACTIONS(2779), + [anon_sym_shared] = ACTIONS(2779), + [anon_sym_map_LBRACK] = ACTIONS(2779), + [anon_sym_chan] = ACTIONS(2779), + [anon_sym_thread] = ACTIONS(2779), + [anon_sym_atomic] = ACTIONS(2779), + [anon_sym_assert] = ACTIONS(2779), + [anon_sym_defer] = ACTIONS(2779), + [anon_sym_goto] = ACTIONS(2779), + [anon_sym_break] = ACTIONS(2779), + [anon_sym_continue] = ACTIONS(2779), + [anon_sym_return] = ACTIONS(2779), + [anon_sym_DOLLARfor] = ACTIONS(2779), + [anon_sym_for] = ACTIONS(2779), + [anon_sym_POUND] = ACTIONS(2779), + [anon_sym_asm] = ACTIONS(2779), + [anon_sym_AT_LBRACK] = ACTIONS(2779), + }, + [1099] = { + [sym_line_comment] = STATE(1099), + [sym_block_comment] = STATE(1099), + [sym_reference_expression] = STATE(4415), + [sym_type_reference_expression] = STATE(1405), + [sym_plain_type] = STATE(1420), [sym__plain_type_without_special] = STATE(1437), - [sym_anon_struct_type] = STATE(1440), + [sym_anon_struct_type] = STATE(1454), [sym_multi_return_type] = STATE(1437), [sym_result_type] = STATE(1437), [sym_option_type] = STATE(1437), - [sym_qualified_type] = STATE(1404), - [sym_fixed_array_type] = STATE(1440), - [sym_array_type] = STATE(1440), - [sym_pointer_type] = STATE(1440), - [sym_wrong_pointer_type] = STATE(1440), - [sym_map_type] = STATE(1440), - [sym_channel_type] = STATE(1440), - [sym_shared_type] = STATE(1440), - [sym_thread_type] = STATE(1440), - [sym_atomic_type] = STATE(1440), - [sym_generic_type] = STATE(1440), - [sym_function_type] = STATE(1440), + [sym_qualified_type] = STATE(1405), + [sym_fixed_array_type] = STATE(1454), + [sym_array_type] = STATE(1454), + [sym_pointer_type] = STATE(1454), + [sym_wrong_pointer_type] = STATE(1454), + [sym_map_type] = STATE(1454), + [sym_channel_type] = STATE(1454), + [sym_shared_type] = STATE(1454), + [sym_thread_type] = STATE(1454), + [sym_atomic_type] = STATE(1454), + [sym_generic_type] = STATE(1454), + [sym_function_type] = STATE(1454), [ts_builtin_sym_end] = ACTIONS(599), - [sym_identifier] = ACTIONS(3606), + [sym_identifier] = ACTIONS(3610), [anon_sym_LF] = ACTIONS(601), [anon_sym_CR] = ACTIONS(601), [anon_sym_CR_LF] = ACTIONS(601), @@ -147355,29 +147765,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(601), [anon_sym_LBRACE] = ACTIONS(601), [anon_sym_const] = ACTIONS(601), - [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(3612), [anon_sym___global] = ACTIONS(601), [anon_sym_type] = ACTIONS(601), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(3610), + [anon_sym_fn] = ACTIONS(3614), [anon_sym_PLUS] = ACTIONS(601), [anon_sym_DASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(3612), - [anon_sym_struct] = ACTIONS(3614), + [anon_sym_STAR] = ACTIONS(3616), + [anon_sym_struct] = ACTIONS(3618), [anon_sym_union] = ACTIONS(601), [anon_sym_pub] = ACTIONS(601), [anon_sym_mut] = ACTIONS(601), [anon_sym_enum] = ACTIONS(601), [anon_sym_interface] = ACTIONS(601), - [anon_sym_QMARK] = ACTIONS(3616), - [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_QMARK] = ACTIONS(3620), + [anon_sym_BANG] = ACTIONS(3622), [anon_sym_go] = ACTIONS(601), [anon_sym_spawn] = ACTIONS(601), [anon_sym_json_DOTdecode] = ACTIONS(601), - [anon_sym_LBRACK2] = ACTIONS(3620), + [anon_sym_LBRACK2] = ACTIONS(3624), [anon_sym_TILDE] = ACTIONS(601), [anon_sym_CARET] = ACTIONS(601), - [anon_sym_AMP] = ACTIONS(3622), + [anon_sym_AMP] = ACTIONS(3626), [anon_sym_LT_DASH] = ACTIONS(601), [sym_none] = ACTIONS(601), [sym_true] = ACTIONS(601), @@ -147401,11 +147810,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r_SQUOTE] = ACTIONS(601), [anon_sym_r_DQUOTE] = ACTIONS(601), [sym_pseudo_compile_time_identifier] = ACTIONS(601), - [anon_sym_shared] = ACTIONS(3624), - [anon_sym_map_LBRACK] = ACTIONS(3626), - [anon_sym_chan] = ACTIONS(3628), - [anon_sym_thread] = ACTIONS(3630), - [anon_sym_atomic] = ACTIONS(3632), + [anon_sym_shared] = ACTIONS(3628), + [aux_sym_sum_type_token1] = ACTIONS(601), + [anon_sym_PIPE2] = ACTIONS(599), + [anon_sym_map_LBRACK] = ACTIONS(3630), + [anon_sym_chan] = ACTIONS(3632), + [anon_sym_thread] = ACTIONS(3634), + [anon_sym_atomic] = ACTIONS(3636), [anon_sym_assert] = ACTIONS(601), [anon_sym_defer] = ACTIONS(601), [anon_sym_goto] = ACTIONS(601), @@ -147418,31 +147829,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(601), [anon_sym_AT_LBRACK] = ACTIONS(601), }, - [1099] = { - [sym_line_comment] = STATE(1099), - [sym_block_comment] = STATE(1099), - [sym_reference_expression] = STATE(4472), - [sym_type_reference_expression] = STATE(1404), - [sym_plain_type] = STATE(1469), + [1100] = { + [sym_line_comment] = STATE(1100), + [sym_block_comment] = STATE(1100), + [sym_reference_expression] = STATE(4415), + [sym_type_reference_expression] = STATE(1405), + [sym_plain_type] = STATE(1432), + [sym__plain_type_without_special] = STATE(1437), + [sym_anon_struct_type] = STATE(1454), + [sym_multi_return_type] = STATE(1437), + [sym_result_type] = STATE(1437), + [sym_option_type] = STATE(1437), + [sym_qualified_type] = STATE(1405), + [sym_fixed_array_type] = STATE(1454), + [sym_array_type] = STATE(1454), + [sym_pointer_type] = STATE(1454), + [sym_wrong_pointer_type] = STATE(1454), + [sym_map_type] = STATE(1454), + [sym_channel_type] = STATE(1454), + [sym_shared_type] = STATE(1454), + [sym_thread_type] = STATE(1454), + [sym_atomic_type] = STATE(1454), + [sym_generic_type] = STATE(1454), + [sym_function_type] = STATE(1454), + [ts_builtin_sym_end] = ACTIONS(603), + [sym_identifier] = ACTIONS(3610), + [anon_sym_LF] = ACTIONS(605), + [anon_sym_CR] = ACTIONS(605), + [anon_sym_CR_LF] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(605), + [anon_sym_const] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym___global] = ACTIONS(605), + [anon_sym_type] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(3616), + [anon_sym_struct] = ACTIONS(3618), + [anon_sym_union] = ACTIONS(605), + [anon_sym_pub] = ACTIONS(605), + [anon_sym_mut] = ACTIONS(605), + [anon_sym_enum] = ACTIONS(605), + [anon_sym_interface] = ACTIONS(605), + [anon_sym_QMARK] = ACTIONS(3620), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_go] = ACTIONS(605), + [anon_sym_spawn] = ACTIONS(605), + [anon_sym_json_DOTdecode] = ACTIONS(605), + [anon_sym_LBRACK2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_LT_DASH] = ACTIONS(605), + [sym_none] = ACTIONS(605), + [sym_true] = ACTIONS(605), + [sym_false] = ACTIONS(605), + [sym_nil] = ACTIONS(605), + [anon_sym_if] = ACTIONS(605), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_match] = ACTIONS(605), + [anon_sym_select] = ACTIONS(605), + [anon_sym_lock] = ACTIONS(605), + [anon_sym_rlock] = ACTIONS(605), + [anon_sym_unsafe] = ACTIONS(605), + [anon_sym_sql] = ACTIONS(605), + [sym_int_literal] = ACTIONS(605), + [sym_float_literal] = ACTIONS(605), + [sym_rune_literal] = ACTIONS(605), + [anon_sym_SQUOTE] = ACTIONS(605), + [anon_sym_DQUOTE] = ACTIONS(605), + [anon_sym_c_SQUOTE] = ACTIONS(605), + [anon_sym_c_DQUOTE] = ACTIONS(605), + [anon_sym_r_SQUOTE] = ACTIONS(605), + [anon_sym_r_DQUOTE] = ACTIONS(605), + [sym_pseudo_compile_time_identifier] = ACTIONS(605), + [anon_sym_shared] = ACTIONS(3628), + [aux_sym_sum_type_token1] = ACTIONS(605), + [anon_sym_PIPE2] = ACTIONS(603), + [anon_sym_map_LBRACK] = ACTIONS(3630), + [anon_sym_chan] = ACTIONS(3632), + [anon_sym_thread] = ACTIONS(3634), + [anon_sym_atomic] = ACTIONS(3636), + [anon_sym_assert] = ACTIONS(605), + [anon_sym_defer] = ACTIONS(605), + [anon_sym_goto] = ACTIONS(605), + [anon_sym_break] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(605), + [anon_sym_return] = ACTIONS(605), + [anon_sym_DOLLARfor] = ACTIONS(605), + [anon_sym_for] = ACTIONS(605), + [anon_sym_POUND] = ACTIONS(605), + [anon_sym_asm] = ACTIONS(605), + [anon_sym_AT_LBRACK] = ACTIONS(605), + }, + [1101] = { + [sym_line_comment] = STATE(1101), + [sym_block_comment] = STATE(1101), + [sym_reference_expression] = STATE(4415), + [sym_type_reference_expression] = STATE(1405), + [sym_plain_type] = STATE(1438), [sym__plain_type_without_special] = STATE(1437), - [sym_anon_struct_type] = STATE(1440), + [sym_anon_struct_type] = STATE(1454), [sym_multi_return_type] = STATE(1437), [sym_result_type] = STATE(1437), [sym_option_type] = STATE(1437), - [sym_qualified_type] = STATE(1404), - [sym_fixed_array_type] = STATE(1440), - [sym_array_type] = STATE(1440), - [sym_pointer_type] = STATE(1440), - [sym_wrong_pointer_type] = STATE(1440), - [sym_map_type] = STATE(1440), - [sym_channel_type] = STATE(1440), - [sym_shared_type] = STATE(1440), - [sym_thread_type] = STATE(1440), - [sym_atomic_type] = STATE(1440), - [sym_generic_type] = STATE(1440), - [sym_function_type] = STATE(1440), + [sym_qualified_type] = STATE(1405), + [sym_fixed_array_type] = STATE(1454), + [sym_array_type] = STATE(1454), + [sym_pointer_type] = STATE(1454), + [sym_wrong_pointer_type] = STATE(1454), + [sym_map_type] = STATE(1454), + [sym_channel_type] = STATE(1454), + [sym_shared_type] = STATE(1454), + [sym_thread_type] = STATE(1454), + [sym_atomic_type] = STATE(1454), + [sym_generic_type] = STATE(1454), + [sym_function_type] = STATE(1454), [ts_builtin_sym_end] = ACTIONS(563), - [sym_identifier] = ACTIONS(3606), + [sym_identifier] = ACTIONS(3610), [anon_sym_LF] = ACTIONS(567), [anon_sym_CR] = ACTIONS(567), [anon_sym_CR_LF] = ACTIONS(567), @@ -147451,29 +147959,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(567), [anon_sym_LBRACE] = ACTIONS(567), [anon_sym_const] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(3612), [anon_sym___global] = ACTIONS(567), [anon_sym_type] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(3610), + [anon_sym_fn] = ACTIONS(3614), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3612), - [anon_sym_struct] = ACTIONS(3614), + [anon_sym_STAR] = ACTIONS(3616), + [anon_sym_struct] = ACTIONS(3618), [anon_sym_union] = ACTIONS(567), [anon_sym_pub] = ACTIONS(567), [anon_sym_mut] = ACTIONS(567), [anon_sym_enum] = ACTIONS(567), [anon_sym_interface] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(3616), - [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_QMARK] = ACTIONS(3620), + [anon_sym_BANG] = ACTIONS(3622), [anon_sym_go] = ACTIONS(567), [anon_sym_spawn] = ACTIONS(567), [anon_sym_json_DOTdecode] = ACTIONS(567), - [anon_sym_LBRACK2] = ACTIONS(3620), + [anon_sym_LBRACK2] = ACTIONS(3624), [anon_sym_TILDE] = ACTIONS(567), [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(3622), + [anon_sym_AMP] = ACTIONS(3626), [anon_sym_LT_DASH] = ACTIONS(567), [sym_none] = ACTIONS(567), [sym_true] = ACTIONS(567), @@ -147497,11 +148004,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r_SQUOTE] = ACTIONS(567), [anon_sym_r_DQUOTE] = ACTIONS(567), [sym_pseudo_compile_time_identifier] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(3624), - [anon_sym_map_LBRACK] = ACTIONS(3626), - [anon_sym_chan] = ACTIONS(3628), - [anon_sym_thread] = ACTIONS(3630), - [anon_sym_atomic] = ACTIONS(3632), + [anon_sym_shared] = ACTIONS(3628), + [aux_sym_sum_type_token1] = ACTIONS(567), + [anon_sym_PIPE2] = ACTIONS(563), + [anon_sym_map_LBRACK] = ACTIONS(3630), + [anon_sym_chan] = ACTIONS(3632), + [anon_sym_thread] = ACTIONS(3634), + [anon_sym_atomic] = ACTIONS(3636), [anon_sym_assert] = ACTIONS(567), [anon_sym_defer] = ACTIONS(567), [anon_sym_goto] = ACTIONS(567), @@ -147514,400 +148023,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(567), [anon_sym_AT_LBRACK] = ACTIONS(567), }, - [1100] = { - [sym_line_comment] = STATE(1100), - [sym_block_comment] = STATE(1100), - [sym_reference_expression] = STATE(4472), - [sym_type_reference_expression] = STATE(1404), - [sym_plain_type] = STATE(1473), - [sym__plain_type_without_special] = STATE(1437), - [sym_anon_struct_type] = STATE(1440), - [sym_multi_return_type] = STATE(1437), - [sym_result_type] = STATE(1437), - [sym_option_type] = STATE(1437), - [sym_qualified_type] = STATE(1404), - [sym_fixed_array_type] = STATE(1440), - [sym_array_type] = STATE(1440), - [sym_pointer_type] = STATE(1440), - [sym_wrong_pointer_type] = STATE(1440), - [sym_map_type] = STATE(1440), - [sym_channel_type] = STATE(1440), - [sym_shared_type] = STATE(1440), - [sym_thread_type] = STATE(1440), - [sym_atomic_type] = STATE(1440), - [sym_generic_type] = STATE(1440), - [sym_function_type] = STATE(1440), - [ts_builtin_sym_end] = ACTIONS(595), - [sym_identifier] = ACTIONS(3606), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_CR] = ACTIONS(597), - [anon_sym_CR_LF] = ACTIONS(597), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(597), - [anon_sym_const] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym___global] = ACTIONS(597), - [anon_sym_type] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(3612), - [anon_sym_struct] = ACTIONS(3614), - [anon_sym_union] = ACTIONS(597), - [anon_sym_pub] = ACTIONS(597), - [anon_sym_mut] = ACTIONS(597), - [anon_sym_enum] = ACTIONS(597), - [anon_sym_interface] = ACTIONS(597), - [anon_sym_QMARK] = ACTIONS(3616), - [anon_sym_BANG] = ACTIONS(3618), - [anon_sym_go] = ACTIONS(597), - [anon_sym_spawn] = ACTIONS(597), - [anon_sym_json_DOTdecode] = ACTIONS(597), - [anon_sym_LBRACK2] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(597), - [anon_sym_CARET] = ACTIONS(597), - [anon_sym_AMP] = ACTIONS(3622), - [anon_sym_LT_DASH] = ACTIONS(597), - [sym_none] = ACTIONS(597), - [sym_true] = ACTIONS(597), - [sym_false] = ACTIONS(597), - [sym_nil] = ACTIONS(597), - [anon_sym_if] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(597), - [anon_sym_match] = ACTIONS(597), - [anon_sym_select] = ACTIONS(597), - [anon_sym_lock] = ACTIONS(597), - [anon_sym_rlock] = ACTIONS(597), - [anon_sym_unsafe] = ACTIONS(597), - [anon_sym_sql] = ACTIONS(597), - [sym_int_literal] = ACTIONS(597), - [sym_float_literal] = ACTIONS(597), - [sym_rune_literal] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(597), - [anon_sym_DQUOTE] = ACTIONS(597), - [anon_sym_c_SQUOTE] = ACTIONS(597), - [anon_sym_c_DQUOTE] = ACTIONS(597), - [anon_sym_r_SQUOTE] = ACTIONS(597), - [anon_sym_r_DQUOTE] = ACTIONS(597), - [sym_pseudo_compile_time_identifier] = ACTIONS(597), - [anon_sym_shared] = ACTIONS(3624), - [anon_sym_map_LBRACK] = ACTIONS(3626), - [anon_sym_chan] = ACTIONS(3628), - [anon_sym_thread] = ACTIONS(3630), - [anon_sym_atomic] = ACTIONS(3632), - [anon_sym_assert] = ACTIONS(597), - [anon_sym_defer] = ACTIONS(597), - [anon_sym_goto] = ACTIONS(597), - [anon_sym_break] = ACTIONS(597), - [anon_sym_continue] = ACTIONS(597), - [anon_sym_return] = ACTIONS(597), - [anon_sym_DOLLARfor] = ACTIONS(597), - [anon_sym_for] = ACTIONS(597), - [anon_sym_POUND] = ACTIONS(597), - [anon_sym_asm] = ACTIONS(597), - [anon_sym_AT_LBRACK] = ACTIONS(597), - }, - [1101] = { - [sym_line_comment] = STATE(1101), - [sym_block_comment] = STATE(1101), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2311), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(605), - [anon_sym_LF] = ACTIONS(627), - [anon_sym_CR] = ACTIONS(627), - [anon_sym_CR_LF] = ACTIONS(627), + [1102] = { + [sym_line_comment] = STATE(1102), + [sym_block_comment] = STATE(1102), + [sym_reference_expression] = STATE(4554), + [sym_type_reference_expression] = STATE(1447), + [sym_plain_type] = STATE(1555), + [sym__plain_type_without_special] = STATE(1565), + [sym_anon_struct_type] = STATE(1522), + [sym_multi_return_type] = STATE(1565), + [sym_result_type] = STATE(1565), + [sym_option_type] = STATE(1565), + [sym_qualified_type] = STATE(1447), + [sym_fixed_array_type] = STATE(1522), + [sym_array_type] = STATE(1522), + [sym_pointer_type] = STATE(1522), + [sym_wrong_pointer_type] = STATE(1522), + [sym_map_type] = STATE(1522), + [sym_channel_type] = STATE(1522), + [sym_shared_type] = STATE(1522), + [sym_thread_type] = STATE(1522), + [sym_atomic_type] = STATE(1522), + [sym_generic_type] = STATE(1522), + [sym_function_type] = STATE(1522), + [ts_builtin_sym_end] = ACTIONS(563), + [sym_identifier] = ACTIONS(3638), + [anon_sym_LF] = ACTIONS(567), + [anon_sym_CR] = ACTIONS(567), + [anon_sym_CR_LF] = ACTIONS(567), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_as] = ACTIONS(627), + [anon_sym_DOT] = ACTIONS(567), [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(627), - [anon_sym_EQ] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(627), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(627), - [anon_sym_BANG_EQ] = ACTIONS(627), - [anon_sym_LT_EQ] = ACTIONS(627), - [anon_sym_GT_EQ] = ACTIONS(627), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(627), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_QMARK] = ACTIONS(627), - [anon_sym_BANG] = ACTIONS(627), - [anon_sym_LBRACK2] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(627), - [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(623), - [anon_sym_map_LBRACK] = ACTIONS(561), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [anon_sym_const] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym___global] = ACTIONS(567), + [anon_sym_type] = ACTIONS(567), + [anon_sym_fn] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_STAR] = ACTIONS(3644), + [anon_sym_struct] = ACTIONS(3646), + [anon_sym_union] = ACTIONS(567), + [anon_sym_pub] = ACTIONS(567), + [anon_sym_mut] = ACTIONS(567), + [anon_sym_enum] = ACTIONS(567), + [anon_sym_interface] = ACTIONS(567), + [anon_sym_QMARK] = ACTIONS(3648), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_go] = ACTIONS(567), + [anon_sym_spawn] = ACTIONS(567), + [anon_sym_json_DOTdecode] = ACTIONS(567), + [anon_sym_LBRACK2] = ACTIONS(3652), + [anon_sym_TILDE] = ACTIONS(567), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(3654), + [anon_sym_LT_DASH] = ACTIONS(567), + [sym_none] = ACTIONS(567), + [sym_true] = ACTIONS(567), + [sym_false] = ACTIONS(567), + [sym_nil] = ACTIONS(567), + [anon_sym_if] = ACTIONS(567), + [anon_sym_DOLLARif] = ACTIONS(567), + [anon_sym_match] = ACTIONS(567), + [anon_sym_select] = ACTIONS(567), + [anon_sym_lock] = ACTIONS(567), + [anon_sym_rlock] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(567), + [anon_sym_sql] = ACTIONS(567), + [sym_int_literal] = ACTIONS(567), + [sym_float_literal] = ACTIONS(567), + [sym_rune_literal] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(567), + [anon_sym_c_SQUOTE] = ACTIONS(567), + [anon_sym_c_DQUOTE] = ACTIONS(567), + [anon_sym_r_SQUOTE] = ACTIONS(567), + [anon_sym_r_DQUOTE] = ACTIONS(567), + [sym_pseudo_compile_time_identifier] = ACTIONS(567), + [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(567), + [anon_sym_defer] = ACTIONS(567), + [anon_sym_goto] = ACTIONS(567), + [anon_sym_break] = ACTIONS(567), + [anon_sym_continue] = ACTIONS(567), + [anon_sym_return] = ACTIONS(567), + [anon_sym_DOLLARfor] = ACTIONS(567), + [anon_sym_for] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_asm] = ACTIONS(567), + [anon_sym_AT_LBRACK] = ACTIONS(567), }, - [1102] = { - [sym_line_comment] = STATE(1102), - [sym_block_comment] = STATE(1102), - [sym_reference_expression] = STATE(4375), - [sym_type_reference_expression] = STATE(1659), - [sym_plain_type] = STATE(1654), - [sym__plain_type_without_special] = STATE(1658), - [sym_anon_struct_type] = STATE(1657), - [sym_multi_return_type] = STATE(1658), - [sym_result_type] = STATE(1658), - [sym_option_type] = STATE(1658), - [sym_qualified_type] = STATE(1659), - [sym_fixed_array_type] = STATE(1657), - [sym_array_type] = STATE(1657), - [sym_pointer_type] = STATE(1657), - [sym_wrong_pointer_type] = STATE(1657), - [sym_map_type] = STATE(1657), - [sym_channel_type] = STATE(1657), - [sym_shared_type] = STATE(1657), - [sym_thread_type] = STATE(1657), - [sym_atomic_type] = STATE(1657), - [sym_generic_type] = STATE(1657), - [sym_function_type] = STATE(1657), - [sym_identifier] = ACTIONS(3634), + [1103] = { + [sym_line_comment] = STATE(1103), + [sym_block_comment] = STATE(1103), + [sym_reference_expression] = STATE(4554), + [sym_type_reference_expression] = STATE(1447), + [sym_plain_type] = STATE(1512), + [sym__plain_type_without_special] = STATE(1565), + [sym_anon_struct_type] = STATE(1522), + [sym_multi_return_type] = STATE(1565), + [sym_result_type] = STATE(1565), + [sym_option_type] = STATE(1565), + [sym_qualified_type] = STATE(1447), + [sym_fixed_array_type] = STATE(1522), + [sym_array_type] = STATE(1522), + [sym_pointer_type] = STATE(1522), + [sym_wrong_pointer_type] = STATE(1522), + [sym_map_type] = STATE(1522), + [sym_channel_type] = STATE(1522), + [sym_shared_type] = STATE(1522), + [sym_thread_type] = STATE(1522), + [sym_atomic_type] = STATE(1522), + [sym_generic_type] = STATE(1522), + [sym_function_type] = STATE(1522), + [ts_builtin_sym_end] = ACTIONS(599), + [sym_identifier] = ACTIONS(3638), [anon_sym_LF] = ACTIONS(601), [anon_sym_CR] = ACTIONS(601), [anon_sym_CR_LF] = ACTIONS(601), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(601), - [anon_sym_as] = ACTIONS(601), - [anon_sym_COMMA] = ACTIONS(601), - [anon_sym_RBRACE] = ACTIONS(601), - [anon_sym_LPAREN] = ACTIONS(3636), - [anon_sym_EQ] = ACTIONS(601), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(3638), + [anon_sym_LBRACE] = ACTIONS(601), + [anon_sym_const] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym___global] = ACTIONS(601), + [anon_sym_type] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(3642), [anon_sym_PLUS] = ACTIONS(601), [anon_sym_DASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(3640), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(601), - [anon_sym_BANG_EQ] = ACTIONS(601), - [anon_sym_LT_EQ] = ACTIONS(601), - [anon_sym_GT_EQ] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_struct] = ACTIONS(3642), - [anon_sym_COLON] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_QMARK] = ACTIONS(3644), - [anon_sym_BANG] = ACTIONS(3646), - [anon_sym_LBRACK2] = ACTIONS(3648), + [anon_sym_STAR] = ACTIONS(3644), + [anon_sym_struct] = ACTIONS(3646), + [anon_sym_union] = ACTIONS(601), + [anon_sym_pub] = ACTIONS(601), + [anon_sym_mut] = ACTIONS(601), + [anon_sym_enum] = ACTIONS(601), + [anon_sym_interface] = ACTIONS(601), + [anon_sym_QMARK] = ACTIONS(3648), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_go] = ACTIONS(601), + [anon_sym_spawn] = ACTIONS(601), + [anon_sym_json_DOTdecode] = ACTIONS(601), + [anon_sym_LBRACK2] = ACTIONS(3652), + [anon_sym_TILDE] = ACTIONS(601), [anon_sym_CARET] = ACTIONS(601), - [anon_sym_AMP] = ACTIONS(3650), + [anon_sym_AMP] = ACTIONS(3654), [anon_sym_LT_DASH] = ACTIONS(601), - [anon_sym_LT_LT] = ACTIONS(601), - [anon_sym_GT_GT] = ACTIONS(601), - [anon_sym_GT_GT_GT] = ACTIONS(601), - [anon_sym_AMP_CARET] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(601), - [anon_sym_PIPE_PIPE] = ACTIONS(601), - [anon_sym_or] = ACTIONS(601), - [anon_sym_QMARK_DOT] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(601), - [anon_sym_is] = ACTIONS(601), - [anon_sym_BANGis] = ACTIONS(601), - [anon_sym_in] = ACTIONS(601), - [anon_sym_BANGin] = ACTIONS(601), - [anon_sym_STAR_EQ] = ACTIONS(601), - [anon_sym_SLASH_EQ] = ACTIONS(601), - [anon_sym_PERCENT_EQ] = ACTIONS(601), - [anon_sym_LT_LT_EQ] = ACTIONS(601), - [anon_sym_GT_GT_EQ] = ACTIONS(601), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(601), - [anon_sym_AMP_EQ] = ACTIONS(601), - [anon_sym_AMP_CARET_EQ] = ACTIONS(601), - [anon_sym_PLUS_EQ] = ACTIONS(601), - [anon_sym_DASH_EQ] = ACTIONS(601), - [anon_sym_PIPE_EQ] = ACTIONS(601), - [anon_sym_CARET_EQ] = ACTIONS(601), - [anon_sym_COLON_EQ] = ACTIONS(601), - [anon_sym_shared] = ACTIONS(3652), - [anon_sym_map_LBRACK] = ACTIONS(3654), - [anon_sym_chan] = ACTIONS(3656), - [anon_sym_thread] = ACTIONS(3658), - [anon_sym_atomic] = ACTIONS(3660), - }, - [1103] = { - [sym_line_comment] = STATE(1103), - [sym_block_comment] = STATE(1103), - [aux_sym_strictly_expression_list_repeat1] = STATE(1416), - [ts_builtin_sym_end] = ACTIONS(1755), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LF] = ACTIONS(1757), - [anon_sym_CR] = ACTIONS(1757), - [anon_sym_CR_LF] = ACTIONS(1757), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_COMMA] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_EQ] = ACTIONS(1759), - [anon_sym___global] = ACTIONS(1757), - [anon_sym_type] = ACTIONS(1757), - [anon_sym_fn] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1757), - [anon_sym_STAR] = ACTIONS(1757), - [anon_sym_struct] = ACTIONS(1757), - [anon_sym_union] = ACTIONS(1757), - [anon_sym_pub] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_enum] = ACTIONS(1757), - [anon_sym_interface] = ACTIONS(1757), - [anon_sym_QMARK] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_go] = ACTIONS(1757), - [anon_sym_spawn] = ACTIONS(1757), - [anon_sym_json_DOTdecode] = ACTIONS(1757), - [anon_sym_LBRACK2] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_LT_DASH] = ACTIONS(1757), - [sym_none] = ACTIONS(1757), - [sym_true] = ACTIONS(1757), - [sym_false] = ACTIONS(1757), - [sym_nil] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_DOLLARif] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_select] = ACTIONS(1757), - [anon_sym_STAR_EQ] = ACTIONS(1759), - [anon_sym_SLASH_EQ] = ACTIONS(1759), - [anon_sym_PERCENT_EQ] = ACTIONS(1759), - [anon_sym_LT_LT_EQ] = ACTIONS(1759), - [anon_sym_GT_GT_EQ] = ACTIONS(1759), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1759), - [anon_sym_AMP_EQ] = ACTIONS(1759), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1759), - [anon_sym_PLUS_EQ] = ACTIONS(1759), - [anon_sym_DASH_EQ] = ACTIONS(1759), - [anon_sym_PIPE_EQ] = ACTIONS(1759), - [anon_sym_CARET_EQ] = ACTIONS(1759), - [anon_sym_COLON_EQ] = ACTIONS(1759), - [anon_sym_lock] = ACTIONS(1757), - [anon_sym_rlock] = ACTIONS(1757), - [anon_sym_unsafe] = ACTIONS(1757), - [anon_sym_sql] = ACTIONS(1757), - [sym_int_literal] = ACTIONS(1757), - [sym_float_literal] = ACTIONS(1757), - [sym_rune_literal] = ACTIONS(1757), - [anon_sym_SQUOTE] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [anon_sym_c_SQUOTE] = ACTIONS(1757), - [anon_sym_c_DQUOTE] = ACTIONS(1757), - [anon_sym_r_SQUOTE] = ACTIONS(1757), - [anon_sym_r_DQUOTE] = ACTIONS(1757), - [sym_pseudo_compile_time_identifier] = ACTIONS(1757), - [anon_sym_shared] = ACTIONS(1757), - [anon_sym_map_LBRACK] = ACTIONS(1757), - [anon_sym_chan] = ACTIONS(1757), - [anon_sym_thread] = ACTIONS(1757), - [anon_sym_atomic] = ACTIONS(1757), - [anon_sym_assert] = ACTIONS(1757), - [anon_sym_defer] = ACTIONS(1757), - [anon_sym_goto] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_DOLLARfor] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(1757), - [anon_sym_asm] = ACTIONS(1757), - [anon_sym_AT_LBRACK] = ACTIONS(1757), + [sym_none] = ACTIONS(601), + [sym_true] = ACTIONS(601), + [sym_false] = ACTIONS(601), + [sym_nil] = ACTIONS(601), + [anon_sym_if] = ACTIONS(601), + [anon_sym_DOLLARif] = ACTIONS(601), + [anon_sym_match] = ACTIONS(601), + [anon_sym_select] = ACTIONS(601), + [anon_sym_lock] = ACTIONS(601), + [anon_sym_rlock] = ACTIONS(601), + [anon_sym_unsafe] = ACTIONS(601), + [anon_sym_sql] = ACTIONS(601), + [sym_int_literal] = ACTIONS(601), + [sym_float_literal] = ACTIONS(601), + [sym_rune_literal] = ACTIONS(601), + [anon_sym_SQUOTE] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(601), + [anon_sym_c_SQUOTE] = ACTIONS(601), + [anon_sym_c_DQUOTE] = ACTIONS(601), + [anon_sym_r_SQUOTE] = ACTIONS(601), + [anon_sym_r_DQUOTE] = ACTIONS(601), + [sym_pseudo_compile_time_identifier] = ACTIONS(601), + [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(601), + [anon_sym_defer] = ACTIONS(601), + [anon_sym_goto] = ACTIONS(601), + [anon_sym_break] = ACTIONS(601), + [anon_sym_continue] = ACTIONS(601), + [anon_sym_return] = ACTIONS(601), + [anon_sym_DOLLARfor] = ACTIONS(601), + [anon_sym_for] = ACTIONS(601), + [anon_sym_POUND] = ACTIONS(601), + [anon_sym_asm] = ACTIONS(601), + [anon_sym_AT_LBRACK] = ACTIONS(601), }, [1104] = { [sym_line_comment] = STATE(1104), [sym_block_comment] = STATE(1104), - [sym_reference_expression] = STATE(4375), - [sym_type_reference_expression] = STATE(1659), - [sym_plain_type] = STATE(1641), - [sym__plain_type_without_special] = STATE(1658), - [sym_anon_struct_type] = STATE(1657), - [sym_multi_return_type] = STATE(1658), - [sym_result_type] = STATE(1658), - [sym_option_type] = STATE(1658), - [sym_qualified_type] = STATE(1659), - [sym_fixed_array_type] = STATE(1657), - [sym_array_type] = STATE(1657), - [sym_pointer_type] = STATE(1657), - [sym_wrong_pointer_type] = STATE(1657), - [sym_map_type] = STATE(1657), - [sym_channel_type] = STATE(1657), - [sym_shared_type] = STATE(1657), - [sym_thread_type] = STATE(1657), - [sym_atomic_type] = STATE(1657), - [sym_generic_type] = STATE(1657), - [sym_function_type] = STATE(1657), - [sym_identifier] = ACTIONS(3634), + [sym_reference_expression] = STATE(4554), + [sym_type_reference_expression] = STATE(1447), + [sym_plain_type] = STATE(1518), + [sym__plain_type_without_special] = STATE(1565), + [sym_anon_struct_type] = STATE(1522), + [sym_multi_return_type] = STATE(1565), + [sym_result_type] = STATE(1565), + [sym_option_type] = STATE(1565), + [sym_qualified_type] = STATE(1447), + [sym_fixed_array_type] = STATE(1522), + [sym_array_type] = STATE(1522), + [sym_pointer_type] = STATE(1522), + [sym_wrong_pointer_type] = STATE(1522), + [sym_map_type] = STATE(1522), + [sym_channel_type] = STATE(1522), + [sym_shared_type] = STATE(1522), + [sym_thread_type] = STATE(1522), + [sym_atomic_type] = STATE(1522), + [sym_generic_type] = STATE(1522), + [sym_function_type] = STATE(1522), + [ts_builtin_sym_end] = ACTIONS(603), + [sym_identifier] = ACTIONS(3638), + [anon_sym_LF] = ACTIONS(605), + [anon_sym_CR] = ACTIONS(605), + [anon_sym_CR_LF] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(605), + [anon_sym_const] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym___global] = ACTIONS(605), + [anon_sym_type] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(3644), + [anon_sym_struct] = ACTIONS(3646), + [anon_sym_union] = ACTIONS(605), + [anon_sym_pub] = ACTIONS(605), + [anon_sym_mut] = ACTIONS(605), + [anon_sym_enum] = ACTIONS(605), + [anon_sym_interface] = ACTIONS(605), + [anon_sym_QMARK] = ACTIONS(3648), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_go] = ACTIONS(605), + [anon_sym_spawn] = ACTIONS(605), + [anon_sym_json_DOTdecode] = ACTIONS(605), + [anon_sym_LBRACK2] = ACTIONS(3652), + [anon_sym_TILDE] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(3654), + [anon_sym_LT_DASH] = ACTIONS(605), + [sym_none] = ACTIONS(605), + [sym_true] = ACTIONS(605), + [sym_false] = ACTIONS(605), + [sym_nil] = ACTIONS(605), + [anon_sym_if] = ACTIONS(605), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_match] = ACTIONS(605), + [anon_sym_select] = ACTIONS(605), + [anon_sym_lock] = ACTIONS(605), + [anon_sym_rlock] = ACTIONS(605), + [anon_sym_unsafe] = ACTIONS(605), + [anon_sym_sql] = ACTIONS(605), + [sym_int_literal] = ACTIONS(605), + [sym_float_literal] = ACTIONS(605), + [sym_rune_literal] = ACTIONS(605), + [anon_sym_SQUOTE] = ACTIONS(605), + [anon_sym_DQUOTE] = ACTIONS(605), + [anon_sym_c_SQUOTE] = ACTIONS(605), + [anon_sym_c_DQUOTE] = ACTIONS(605), + [anon_sym_r_SQUOTE] = ACTIONS(605), + [anon_sym_r_DQUOTE] = ACTIONS(605), + [sym_pseudo_compile_time_identifier] = ACTIONS(605), + [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(605), + [anon_sym_defer] = ACTIONS(605), + [anon_sym_goto] = ACTIONS(605), + [anon_sym_break] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(605), + [anon_sym_return] = ACTIONS(605), + [anon_sym_DOLLARfor] = ACTIONS(605), + [anon_sym_for] = ACTIONS(605), + [anon_sym_POUND] = ACTIONS(605), + [anon_sym_asm] = ACTIONS(605), + [anon_sym_AT_LBRACK] = ACTIONS(605), + }, + [1105] = { + [sym_line_comment] = STATE(1105), + [sym_block_comment] = STATE(1105), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2418), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(609), [anon_sym_LF] = ACTIONS(597), [anon_sym_CR] = ACTIONS(597), [anon_sym_CR_LF] = ACTIONS(597), @@ -147915,15 +148339,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(597), [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(601), [anon_sym_COMMA] = ACTIONS(597), [anon_sym_RBRACE] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(597), [anon_sym_EQ] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(3638), + [anon_sym_fn] = ACTIONS(615), [anon_sym_PLUS] = ACTIONS(597), [anon_sym_DASH] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_STAR] = ACTIONS(597), [anon_sym_SLASH] = ACTIONS(597), [anon_sym_PERCENT] = ACTIONS(597), [anon_sym_LT] = ACTIONS(597), @@ -147933,15 +148357,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(597), [anon_sym_GT_EQ] = ACTIONS(597), [anon_sym_LBRACK] = ACTIONS(595), - [anon_sym_struct] = ACTIONS(3642), + [anon_sym_struct] = ACTIONS(619), [anon_sym_COLON] = ACTIONS(597), [anon_sym_PLUS_PLUS] = ACTIONS(597), [anon_sym_DASH_DASH] = ACTIONS(597), - [anon_sym_QMARK] = ACTIONS(3644), - [anon_sym_BANG] = ACTIONS(3646), - [anon_sym_LBRACK2] = ACTIONS(3648), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), [anon_sym_CARET] = ACTIONS(597), - [anon_sym_AMP] = ACTIONS(3650), + [anon_sym_AMP] = ACTIONS(597), [anon_sym_LT_DASH] = ACTIONS(597), [anon_sym_LT_LT] = ACTIONS(597), [anon_sym_GT_GT] = ACTIONS(597), @@ -147969,36 +148394,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(597), [anon_sym_CARET_EQ] = ACTIONS(597), [anon_sym_COLON_EQ] = ACTIONS(597), - [anon_sym_shared] = ACTIONS(3652), - [anon_sym_map_LBRACK] = ACTIONS(3654), - [anon_sym_chan] = ACTIONS(3656), - [anon_sym_thread] = ACTIONS(3658), - [anon_sym_atomic] = ACTIONS(3660), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(561), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [1105] = { - [sym_line_comment] = STATE(1105), - [sym_block_comment] = STATE(1105), - [sym_reference_expression] = STATE(4375), - [sym_type_reference_expression] = STATE(1659), - [sym_plain_type] = STATE(1637), - [sym__plain_type_without_special] = STATE(1658), - [sym_anon_struct_type] = STATE(1657), - [sym_multi_return_type] = STATE(1658), - [sym_result_type] = STATE(1658), - [sym_option_type] = STATE(1658), - [sym_qualified_type] = STATE(1659), - [sym_fixed_array_type] = STATE(1657), - [sym_array_type] = STATE(1657), - [sym_pointer_type] = STATE(1657), - [sym_wrong_pointer_type] = STATE(1657), - [sym_map_type] = STATE(1657), - [sym_channel_type] = STATE(1657), - [sym_shared_type] = STATE(1657), - [sym_thread_type] = STATE(1657), - [sym_atomic_type] = STATE(1657), - [sym_generic_type] = STATE(1657), - [sym_function_type] = STATE(1657), - [sym_identifier] = ACTIONS(3634), + [1106] = { + [sym_line_comment] = STATE(1106), + [sym_block_comment] = STATE(1106), + [sym_reference_expression] = STATE(4397), + [sym_type_reference_expression] = STATE(1669), + [sym_plain_type] = STATE(1691), + [sym__plain_type_without_special] = STATE(1670), + [sym_anon_struct_type] = STATE(1671), + [sym_multi_return_type] = STATE(1670), + [sym_result_type] = STATE(1670), + [sym_option_type] = STATE(1670), + [sym_qualified_type] = STATE(1669), + [sym_fixed_array_type] = STATE(1671), + [sym_array_type] = STATE(1671), + [sym_pointer_type] = STATE(1671), + [sym_wrong_pointer_type] = STATE(1671), + [sym_map_type] = STATE(1671), + [sym_channel_type] = STATE(1671), + [sym_shared_type] = STATE(1671), + [sym_thread_type] = STATE(1671), + [sym_atomic_type] = STATE(1671), + [sym_generic_type] = STATE(1671), + [sym_function_type] = STATE(1671), + [sym_identifier] = ACTIONS(3666), + [anon_sym_LF] = ACTIONS(601), + [anon_sym_CR] = ACTIONS(601), + [anon_sym_CR_LF] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_COMMA] = ACTIONS(601), + [anon_sym_RBRACE] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_EQ] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(3672), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ] = ACTIONS(601), + [anon_sym_LT_EQ] = ACTIONS(601), + [anon_sym_GT_EQ] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(3674), + [anon_sym_COLON] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_QMARK] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_LBRACK2] = ACTIONS(3680), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_LT_DASH] = ACTIONS(601), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(601), + [anon_sym_AMP_CARET] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(601), + [anon_sym_or] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(601), + [anon_sym_POUND_LBRACK] = ACTIONS(601), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(601), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(601), + [anon_sym_STAR_EQ] = ACTIONS(601), + [anon_sym_SLASH_EQ] = ACTIONS(601), + [anon_sym_PERCENT_EQ] = ACTIONS(601), + [anon_sym_LT_LT_EQ] = ACTIONS(601), + [anon_sym_GT_GT_EQ] = ACTIONS(601), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(601), + [anon_sym_AMP_EQ] = ACTIONS(601), + [anon_sym_AMP_CARET_EQ] = ACTIONS(601), + [anon_sym_PLUS_EQ] = ACTIONS(601), + [anon_sym_DASH_EQ] = ACTIONS(601), + [anon_sym_PIPE_EQ] = ACTIONS(601), + [anon_sym_CARET_EQ] = ACTIONS(601), + [anon_sym_COLON_EQ] = ACTIONS(601), + [anon_sym_shared] = ACTIONS(3684), + [anon_sym_map_LBRACK] = ACTIONS(3686), + [anon_sym_chan] = ACTIONS(3688), + [anon_sym_thread] = ACTIONS(3690), + [anon_sym_atomic] = ACTIONS(3692), + }, + [1107] = { + [sym_line_comment] = STATE(1107), + [sym_block_comment] = STATE(1107), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2421), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(611), + [anon_sym_CR] = ACTIONS(611), + [anon_sym_CR_LF] = ACTIONS(611), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_as] = ACTIONS(611), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_RBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_EQ] = ACTIONS(611), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(611), + [anon_sym_BANG_EQ] = ACTIONS(611), + [anon_sym_LT_EQ] = ACTIONS(611), + [anon_sym_GT_EQ] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3694), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_DASH] = ACTIONS(611), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(611), + [anon_sym_AMP_CARET] = ACTIONS(611), + [anon_sym_AMP_AMP] = ACTIONS(611), + [anon_sym_PIPE_PIPE] = ACTIONS(611), + [anon_sym_or] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(611), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(611), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(611), + [anon_sym_STAR_EQ] = ACTIONS(611), + [anon_sym_SLASH_EQ] = ACTIONS(611), + [anon_sym_PERCENT_EQ] = ACTIONS(611), + [anon_sym_LT_LT_EQ] = ACTIONS(611), + [anon_sym_GT_GT_EQ] = ACTIONS(611), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(611), + [anon_sym_AMP_EQ] = ACTIONS(611), + [anon_sym_AMP_CARET_EQ] = ACTIONS(611), + [anon_sym_PLUS_EQ] = ACTIONS(611), + [anon_sym_DASH_EQ] = ACTIONS(611), + [anon_sym_PIPE_EQ] = ACTIONS(611), + [anon_sym_CARET_EQ] = ACTIONS(611), + [anon_sym_COLON_EQ] = ACTIONS(611), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(561), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [1108] = { + [sym_line_comment] = STATE(1108), + [sym_block_comment] = STATE(1108), + [sym_reference_expression] = STATE(4397), + [sym_type_reference_expression] = STATE(1669), + [sym_plain_type] = STATE(1676), + [sym__plain_type_without_special] = STATE(1670), + [sym_anon_struct_type] = STATE(1671), + [sym_multi_return_type] = STATE(1670), + [sym_result_type] = STATE(1670), + [sym_option_type] = STATE(1670), + [sym_qualified_type] = STATE(1669), + [sym_fixed_array_type] = STATE(1671), + [sym_array_type] = STATE(1671), + [sym_pointer_type] = STATE(1671), + [sym_wrong_pointer_type] = STATE(1671), + [sym_map_type] = STATE(1671), + [sym_channel_type] = STATE(1671), + [sym_shared_type] = STATE(1671), + [sym_thread_type] = STATE(1671), + [sym_atomic_type] = STATE(1671), + [sym_generic_type] = STATE(1671), + [sym_function_type] = STATE(1671), + [sym_identifier] = ACTIONS(3666), [anon_sym_LF] = ACTIONS(567), [anon_sym_CR] = ACTIONS(567), [anon_sym_CR_LF] = ACTIONS(567), @@ -148008,13 +148615,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(567), [anon_sym_COMMA] = ACTIONS(567), [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3668), [anon_sym_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(3638), + [anon_sym_fn] = ACTIONS(3670), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_STAR] = ACTIONS(3672), [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(567), [anon_sym_LT] = ACTIONS(567), @@ -148024,15 +148630,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(567), [anon_sym_GT_EQ] = ACTIONS(567), [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(3642), + [anon_sym_struct] = ACTIONS(3674), [anon_sym_COLON] = ACTIONS(567), [anon_sym_PLUS_PLUS] = ACTIONS(567), [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(3644), - [anon_sym_BANG] = ACTIONS(3646), - [anon_sym_LBRACK2] = ACTIONS(3648), + [anon_sym_QMARK] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_LBRACK2] = ACTIONS(3680), [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(3650), + [anon_sym_AMP] = ACTIONS(3682), [anon_sym_LT_DASH] = ACTIONS(567), [anon_sym_LT_LT] = ACTIONS(567), [anon_sym_GT_GT] = ACTIONS(567), @@ -148060,199 +148667,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(567), [anon_sym_CARET_EQ] = ACTIONS(567), [anon_sym_COLON_EQ] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(3652), - [anon_sym_map_LBRACK] = ACTIONS(3654), - [anon_sym_chan] = ACTIONS(3656), - [anon_sym_thread] = ACTIONS(3658), - [anon_sym_atomic] = ACTIONS(3660), + [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), }, - [1106] = { - [sym_line_comment] = STATE(1106), - [sym_block_comment] = STATE(1106), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(605), - [anon_sym_LF] = ACTIONS(607), - [anon_sym_CR] = ACTIONS(607), - [anon_sym_CR_LF] = ACTIONS(607), + [1109] = { + [sym_line_comment] = STATE(1109), + [sym_block_comment] = STATE(1109), + [aux_sym_strictly_expression_list_repeat1] = STATE(1452), + [ts_builtin_sym_end] = ACTIONS(1649), + [sym_identifier] = ACTIONS(1651), + [anon_sym_LF] = ACTIONS(1651), + [anon_sym_CR] = ACTIONS(1651), + [anon_sym_CR_LF] = ACTIONS(1651), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(607), - [anon_sym_RBRACE] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_BANG_EQ] = ACTIONS(607), - [anon_sym_LT_EQ] = ACTIONS(607), - [anon_sym_GT_EQ] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(607), - [anon_sym_PLUS_PLUS] = ACTIONS(607), - [anon_sym_DASH_DASH] = ACTIONS(607), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_DASH] = ACTIONS(607), - [anon_sym_LT_LT] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_GT_GT_GT] = ACTIONS(607), - [anon_sym_AMP_CARET] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [anon_sym_or] = ACTIONS(607), - [anon_sym_QMARK_DOT] = ACTIONS(607), - [anon_sym_POUND_LBRACK] = ACTIONS(607), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(607), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(607), - [anon_sym_SLASH_EQ] = ACTIONS(607), - [anon_sym_PERCENT_EQ] = ACTIONS(607), - [anon_sym_LT_LT_EQ] = ACTIONS(607), - [anon_sym_GT_GT_EQ] = ACTIONS(607), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(607), - [anon_sym_AMP_EQ] = ACTIONS(607), - [anon_sym_AMP_CARET_EQ] = ACTIONS(607), - [anon_sym_PLUS_EQ] = ACTIONS(607), - [anon_sym_DASH_EQ] = ACTIONS(607), - [anon_sym_PIPE_EQ] = ACTIONS(607), - [anon_sym_CARET_EQ] = ACTIONS(607), - [anon_sym_COLON_EQ] = ACTIONS(607), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(561), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT] = ACTIONS(1651), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_COMMA] = ACTIONS(1657), + [anon_sym_const] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_EQ] = ACTIONS(1657), + [anon_sym___global] = ACTIONS(1651), + [anon_sym_type] = ACTIONS(1651), + [anon_sym_fn] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_struct] = ACTIONS(1651), + [anon_sym_union] = ACTIONS(1651), + [anon_sym_pub] = ACTIONS(1651), + [anon_sym_mut] = ACTIONS(1651), + [anon_sym_enum] = ACTIONS(1651), + [anon_sym_interface] = ACTIONS(1651), + [anon_sym_QMARK] = ACTIONS(1651), + [anon_sym_BANG] = ACTIONS(1651), + [anon_sym_go] = ACTIONS(1651), + [anon_sym_spawn] = ACTIONS(1651), + [anon_sym_json_DOTdecode] = ACTIONS(1651), + [anon_sym_LBRACK2] = ACTIONS(1651), + [anon_sym_TILDE] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1651), + [anon_sym_AMP] = ACTIONS(1651), + [anon_sym_LT_DASH] = ACTIONS(1651), + [sym_none] = ACTIONS(1651), + [sym_true] = ACTIONS(1651), + [sym_false] = ACTIONS(1651), + [sym_nil] = ACTIONS(1651), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_DOLLARif] = ACTIONS(1651), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_select] = ACTIONS(1651), + [anon_sym_STAR_EQ] = ACTIONS(1657), + [anon_sym_SLASH_EQ] = ACTIONS(1657), + [anon_sym_PERCENT_EQ] = ACTIONS(1657), + [anon_sym_LT_LT_EQ] = ACTIONS(1657), + [anon_sym_GT_GT_EQ] = ACTIONS(1657), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1657), + [anon_sym_AMP_EQ] = ACTIONS(1657), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1657), + [anon_sym_PLUS_EQ] = ACTIONS(1657), + [anon_sym_DASH_EQ] = ACTIONS(1657), + [anon_sym_PIPE_EQ] = ACTIONS(1657), + [anon_sym_CARET_EQ] = ACTIONS(1657), + [anon_sym_COLON_EQ] = ACTIONS(1657), + [anon_sym_lock] = ACTIONS(1651), + [anon_sym_rlock] = ACTIONS(1651), + [anon_sym_unsafe] = ACTIONS(1651), + [anon_sym_sql] = ACTIONS(1651), + [sym_int_literal] = ACTIONS(1651), + [sym_float_literal] = ACTIONS(1651), + [sym_rune_literal] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1651), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_c_SQUOTE] = ACTIONS(1651), + [anon_sym_c_DQUOTE] = ACTIONS(1651), + [anon_sym_r_SQUOTE] = ACTIONS(1651), + [anon_sym_r_DQUOTE] = ACTIONS(1651), + [sym_pseudo_compile_time_identifier] = ACTIONS(1651), + [anon_sym_shared] = ACTIONS(1651), + [anon_sym_map_LBRACK] = ACTIONS(1651), + [anon_sym_chan] = ACTIONS(1651), + [anon_sym_thread] = ACTIONS(1651), + [anon_sym_atomic] = ACTIONS(1651), + [anon_sym_assert] = ACTIONS(1651), + [anon_sym_defer] = ACTIONS(1651), + [anon_sym_goto] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_DOLLARfor] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_POUND] = ACTIONS(1651), + [anon_sym_asm] = ACTIONS(1651), + [anon_sym_AT_LBRACK] = ACTIONS(1651), }, - [1107] = { - [sym_line_comment] = STATE(1107), - [sym_block_comment] = STATE(1107), - [sym_type_parameters] = STATE(4009), - [sym_argument_list] = STATE(1153), - [sym_or_block] = STATE(1238), - [sym_identifier] = ACTIONS(1791), - [anon_sym_LF] = ACTIONS(1791), - [anon_sym_CR] = ACTIONS(1791), - [anon_sym_CR_LF] = ACTIONS(1791), + [1110] = { + [sym_line_comment] = STATE(1110), + [sym_block_comment] = STATE(1110), + [sym_reference_expression] = STATE(4397), + [sym_type_reference_expression] = STATE(1669), + [sym_plain_type] = STATE(1688), + [sym__plain_type_without_special] = STATE(1670), + [sym_anon_struct_type] = STATE(1671), + [sym_multi_return_type] = STATE(1670), + [sym_result_type] = STATE(1670), + [sym_option_type] = STATE(1670), + [sym_qualified_type] = STATE(1669), + [sym_fixed_array_type] = STATE(1671), + [sym_array_type] = STATE(1671), + [sym_pointer_type] = STATE(1671), + [sym_wrong_pointer_type] = STATE(1671), + [sym_map_type] = STATE(1671), + [sym_channel_type] = STATE(1671), + [sym_shared_type] = STATE(1671), + [sym_thread_type] = STATE(1671), + [sym_atomic_type] = STATE(1671), + [sym_generic_type] = STATE(1671), + [sym_function_type] = STATE(1671), + [sym_identifier] = ACTIONS(3666), + [anon_sym_LF] = ACTIONS(605), + [anon_sym_CR] = ACTIONS(605), + [anon_sym_CR_LF] = ACTIONS(605), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1791), - [anon_sym_DOT] = ACTIONS(3664), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_RBRACE] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(3666), - [anon_sym_RPAREN] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(3668), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(3672), - [anon_sym_GT] = ACTIONS(3672), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(3674), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), + [anon_sym_DOT] = ACTIONS(605), + [anon_sym_as] = ACTIONS(605), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_RBRACE] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_EQ] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(3672), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [anon_sym_LT_EQ] = ACTIONS(605), + [anon_sym_GT_EQ] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(3674), + [anon_sym_COLON] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), [anon_sym_QMARK] = ACTIONS(3676), [anon_sym_BANG] = ACTIONS(3678), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(605), [anon_sym_LBRACK2] = ACTIONS(3680), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_DASH] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_AMP_CARET] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(3664), - [anon_sym_POUND_LBRACK] = ACTIONS(3680), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1791), - [anon_sym_in] = ACTIONS(3684), - [anon_sym_BANGin] = ACTIONS(3684), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1791), - [sym_rune_literal] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(1791), - [anon_sym_c_SQUOTE] = ACTIONS(1791), - [anon_sym_c_DQUOTE] = ACTIONS(1791), - [anon_sym_r_SQUOTE] = ACTIONS(1791), - [anon_sym_r_DQUOTE] = ACTIONS(1791), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1791), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_LT_DASH] = ACTIONS(605), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_GT_GT_GT] = ACTIONS(605), + [anon_sym_AMP_CARET] = ACTIONS(605), + [anon_sym_AMP_AMP] = ACTIONS(605), + [anon_sym_PIPE_PIPE] = ACTIONS(605), + [anon_sym_or] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(605), + [anon_sym_POUND_LBRACK] = ACTIONS(605), + [anon_sym_is] = ACTIONS(605), + [anon_sym_BANGis] = ACTIONS(605), + [anon_sym_in] = ACTIONS(605), + [anon_sym_BANGin] = ACTIONS(605), + [anon_sym_STAR_EQ] = ACTIONS(605), + [anon_sym_SLASH_EQ] = ACTIONS(605), + [anon_sym_PERCENT_EQ] = ACTIONS(605), + [anon_sym_LT_LT_EQ] = ACTIONS(605), + [anon_sym_GT_GT_EQ] = ACTIONS(605), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(605), + [anon_sym_AMP_EQ] = ACTIONS(605), + [anon_sym_AMP_CARET_EQ] = ACTIONS(605), + [anon_sym_PLUS_EQ] = ACTIONS(605), + [anon_sym_DASH_EQ] = ACTIONS(605), + [anon_sym_PIPE_EQ] = ACTIONS(605), + [anon_sym_CARET_EQ] = ACTIONS(605), + [anon_sym_COLON_EQ] = ACTIONS(605), + [anon_sym_shared] = ACTIONS(3684), + [anon_sym_map_LBRACK] = ACTIONS(3686), + [anon_sym_chan] = ACTIONS(3688), + [anon_sym_thread] = ACTIONS(3690), + [anon_sym_atomic] = ACTIONS(3692), }, - [1108] = { - [sym_line_comment] = STATE(1108), - [sym_block_comment] = STATE(1108), - [sym_type_parameters] = STATE(4009), - [sym_argument_list] = STATE(1153), - [sym_or_block] = STATE(1238), + [1111] = { + [sym_line_comment] = STATE(1111), + [sym_block_comment] = STATE(1111), + [sym_type_parameters] = STATE(4073), + [sym_argument_list] = STATE(1157), + [sym_or_block] = STATE(1167), [sym_identifier] = ACTIONS(1779), [anon_sym_LF] = ACTIONS(1779), [anon_sym_CR] = ACTIONS(1779), @@ -148260,61 +148868,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_SEMI] = ACTIONS(1779), - [anon_sym_DOT] = ACTIONS(3664), - [anon_sym_as] = ACTIONS(3686), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3698), [anon_sym_LBRACE] = ACTIONS(1779), [anon_sym_COMMA] = ACTIONS(1779), [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_LPAREN] = ACTIONS(3700), [anon_sym_RPAREN] = ACTIONS(1779), - [anon_sym_PIPE] = ACTIONS(3668), [anon_sym_fn] = ACTIONS(1779), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(3672), - [anon_sym_GT] = ACTIONS(3672), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3706), + [anon_sym_BANG_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3706), + [anon_sym_GT_EQ] = ACTIONS(3706), [anon_sym_DOT_DOT_DOT] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_LBRACK] = ACTIONS(3708), [anon_sym_struct] = ACTIONS(1779), [anon_sym_mut] = ACTIONS(1779), - [anon_sym_PLUS_PLUS] = ACTIONS(3688), - [anon_sym_DASH_DASH] = ACTIONS(3690), - [anon_sym_QMARK] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3716), [anon_sym_go] = ACTIONS(1779), [anon_sym_spawn] = ACTIONS(1779), [anon_sym_json_DOTdecode] = ACTIONS(1779), - [anon_sym_LBRACK2] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(3702), + [anon_sym_LBRACK2] = ACTIONS(3718), [anon_sym_TILDE] = ACTIONS(1779), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_CARET] = ACTIONS(3702), + [anon_sym_AMP] = ACTIONS(3704), [anon_sym_LT_DASH] = ACTIONS(1779), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_AMP_CARET] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3692), - [anon_sym_or] = ACTIONS(3694), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_AMP_CARET] = ACTIONS(3704), + [anon_sym_AMP_AMP] = ACTIONS(3720), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_or] = ACTIONS(3724), [sym_none] = ACTIONS(1779), [sym_true] = ACTIONS(1779), [sym_false] = ACTIONS(1779), [sym_nil] = ACTIONS(1779), - [anon_sym_QMARK_DOT] = ACTIONS(3664), - [anon_sym_POUND_LBRACK] = ACTIONS(3680), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3718), [anon_sym_if] = ACTIONS(1779), [anon_sym_DOLLARif] = ACTIONS(1779), - [anon_sym_is] = ACTIONS(3696), - [anon_sym_BANGis] = ACTIONS(3696), - [anon_sym_in] = ACTIONS(3684), - [anon_sym_BANGin] = ACTIONS(3684), + [anon_sym_is] = ACTIONS(3726), + [anon_sym_BANGis] = ACTIONS(3726), + [anon_sym_in] = ACTIONS(3728), + [anon_sym_BANGin] = ACTIONS(3728), [anon_sym_match] = ACTIONS(1779), [anon_sym_select] = ACTIONS(1779), [anon_sym_lock] = ACTIONS(1779), @@ -148337,1285 +148945,570 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(1779), [anon_sym_atomic] = ACTIONS(1779), }, - [1109] = { - [sym_line_comment] = STATE(1109), - [sym_block_comment] = STATE(1109), - [sym_type_parameters] = STATE(4009), - [sym_argument_list] = STATE(1153), - [sym_or_block] = STATE(1238), - [sym_identifier] = ACTIONS(1791), - [anon_sym_LF] = ACTIONS(1791), - [anon_sym_CR] = ACTIONS(1791), - [anon_sym_CR_LF] = ACTIONS(1791), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1791), - [anon_sym_DOT] = ACTIONS(3664), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_RBRACE] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(3666), - [anon_sym_RPAREN] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1791), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_STAR] = ACTIONS(1791), - [anon_sym_SLASH] = ACTIONS(1791), - [anon_sym_PERCENT] = ACTIONS(1791), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_LT_EQ] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1791), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(3674), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_QMARK] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3678), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1791), - [anon_sym_LBRACK2] = ACTIONS(3680), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_LT_DASH] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(1791), - [anon_sym_GT_GT] = ACTIONS(1791), - [anon_sym_GT_GT_GT] = ACTIONS(1791), - [anon_sym_AMP_CARET] = ACTIONS(1791), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(3664), - [anon_sym_POUND_LBRACK] = ACTIONS(3680), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1791), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_BANGin] = ACTIONS(1791), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1791), - [sym_rune_literal] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(1791), - [anon_sym_c_SQUOTE] = ACTIONS(1791), - [anon_sym_c_DQUOTE] = ACTIONS(1791), - [anon_sym_r_SQUOTE] = ACTIONS(1791), - [anon_sym_r_DQUOTE] = ACTIONS(1791), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1791), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), - }, - [1110] = { - [sym_line_comment] = STATE(1110), - [sym_block_comment] = STATE(1110), - [sym_type_parameters] = STATE(4009), - [sym_argument_list] = STATE(1153), - [sym_or_block] = STATE(1238), - [sym_identifier] = ACTIONS(1791), - [anon_sym_LF] = ACTIONS(1791), - [anon_sym_CR] = ACTIONS(1791), - [anon_sym_CR_LF] = ACTIONS(1791), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1791), - [anon_sym_DOT] = ACTIONS(3664), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_RBRACE] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(3666), - [anon_sym_RPAREN] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(3668), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_LT_EQ] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1791), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(3674), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_QMARK] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3678), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1791), - [anon_sym_LBRACK2] = ACTIONS(3680), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_DASH] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_AMP_CARET] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(3664), - [anon_sym_POUND_LBRACK] = ACTIONS(3680), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1791), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_BANGin] = ACTIONS(1791), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1791), - [sym_rune_literal] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(1791), - [anon_sym_c_SQUOTE] = ACTIONS(1791), - [anon_sym_c_DQUOTE] = ACTIONS(1791), - [anon_sym_r_SQUOTE] = ACTIONS(1791), - [anon_sym_r_DQUOTE] = ACTIONS(1791), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1791), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), - }, - [1111] = { - [sym_line_comment] = STATE(1111), - [sym_block_comment] = STATE(1111), - [sym_type_parameters] = STATE(4009), - [sym_argument_list] = STATE(1153), - [sym_or_block] = STATE(1238), - [sym_identifier] = ACTIONS(1791), - [anon_sym_LF] = ACTIONS(1791), - [anon_sym_CR] = ACTIONS(1791), - [anon_sym_CR_LF] = ACTIONS(1791), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1791), - [anon_sym_DOT] = ACTIONS(3664), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_RBRACE] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(3666), - [anon_sym_RPAREN] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(3668), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(3672), - [anon_sym_GT] = ACTIONS(3672), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(3674), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_QMARK] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3678), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1791), - [anon_sym_LBRACK2] = ACTIONS(3680), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_DASH] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_AMP_CARET] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(3664), - [anon_sym_POUND_LBRACK] = ACTIONS(3680), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1791), - [anon_sym_in] = ACTIONS(3684), - [anon_sym_BANGin] = ACTIONS(3684), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1791), - [sym_rune_literal] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(1791), - [anon_sym_c_SQUOTE] = ACTIONS(1791), - [anon_sym_c_DQUOTE] = ACTIONS(1791), - [anon_sym_r_SQUOTE] = ACTIONS(1791), - [anon_sym_r_DQUOTE] = ACTIONS(1791), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1791), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), - }, [1112] = { [sym_line_comment] = STATE(1112), [sym_block_comment] = STATE(1112), - [sym_type_parameters] = STATE(4009), - [sym_argument_list] = STATE(1153), - [sym_or_block] = STATE(1238), - [sym_identifier] = ACTIONS(1787), - [anon_sym_LF] = ACTIONS(1787), - [anon_sym_CR] = ACTIONS(1787), - [anon_sym_CR_LF] = ACTIONS(1787), + [sym_type_parameters] = STATE(4073), + [sym_argument_list] = STATE(1157), + [sym_or_block] = STATE(1167), + [sym_identifier] = ACTIONS(1793), + [anon_sym_LF] = ACTIONS(1793), + [anon_sym_CR] = ACTIONS(1793), + [anon_sym_CR_LF] = ACTIONS(1793), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_DOT] = ACTIONS(3664), - [anon_sym_as] = ACTIONS(1787), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_COMMA] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(3666), - [anon_sym_RPAREN] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(3668), - [anon_sym_fn] = ACTIONS(1787), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(1787), - [anon_sym_GT] = ACTIONS(1787), - [anon_sym_EQ_EQ] = ACTIONS(1787), - [anon_sym_BANG_EQ] = ACTIONS(1787), - [anon_sym_LT_EQ] = ACTIONS(1787), - [anon_sym_GT_EQ] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(3674), - [anon_sym_struct] = ACTIONS(1787), - [anon_sym_mut] = ACTIONS(1787), - [anon_sym_PLUS_PLUS] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_QMARK] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3678), - [anon_sym_go] = ACTIONS(1787), - [anon_sym_spawn] = ACTIONS(1787), - [anon_sym_json_DOTdecode] = ACTIONS(1787), - [anon_sym_LBRACK2] = ACTIONS(3680), - [anon_sym_TILDE] = ACTIONS(1787), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_DASH] = ACTIONS(1787), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_AMP_CARET] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(1787), - [anon_sym_PIPE_PIPE] = ACTIONS(1787), - [anon_sym_or] = ACTIONS(1787), - [sym_none] = ACTIONS(1787), - [sym_true] = ACTIONS(1787), - [sym_false] = ACTIONS(1787), - [sym_nil] = ACTIONS(1787), - [anon_sym_QMARK_DOT] = ACTIONS(3664), - [anon_sym_POUND_LBRACK] = ACTIONS(3680), - [anon_sym_if] = ACTIONS(1787), - [anon_sym_DOLLARif] = ACTIONS(1787), - [anon_sym_is] = ACTIONS(1787), - [anon_sym_BANGis] = ACTIONS(1787), - [anon_sym_in] = ACTIONS(1787), - [anon_sym_BANGin] = ACTIONS(1787), - [anon_sym_match] = ACTIONS(1787), - [anon_sym_select] = ACTIONS(1787), - [anon_sym_lock] = ACTIONS(1787), - [anon_sym_rlock] = ACTIONS(1787), - [anon_sym_unsafe] = ACTIONS(1787), - [anon_sym_sql] = ACTIONS(1787), - [sym_int_literal] = ACTIONS(1787), - [sym_float_literal] = ACTIONS(1787), - [sym_rune_literal] = ACTIONS(1787), - [anon_sym_SQUOTE] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [anon_sym_c_SQUOTE] = ACTIONS(1787), - [anon_sym_c_DQUOTE] = ACTIONS(1787), - [anon_sym_r_SQUOTE] = ACTIONS(1787), - [anon_sym_r_DQUOTE] = ACTIONS(1787), - [sym_pseudo_compile_time_identifier] = ACTIONS(1787), - [anon_sym_shared] = ACTIONS(1787), - [anon_sym_map_LBRACK] = ACTIONS(1787), - [anon_sym_chan] = ACTIONS(1787), - [anon_sym_thread] = ACTIONS(1787), - [anon_sym_atomic] = ACTIONS(1787), + [anon_sym_SEMI] = ACTIONS(1793), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_COMMA] = ACTIONS(1793), + [anon_sym_RBRACE] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(3700), + [anon_sym_RPAREN] = ACTIONS(1793), + [anon_sym_fn] = ACTIONS(1793), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_LT] = ACTIONS(1793), + [anon_sym_GT] = ACTIONS(1793), + [anon_sym_EQ_EQ] = ACTIONS(1793), + [anon_sym_BANG_EQ] = ACTIONS(1793), + [anon_sym_LT_EQ] = ACTIONS(1793), + [anon_sym_GT_EQ] = ACTIONS(1793), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(1793), + [anon_sym_mut] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_go] = ACTIONS(1793), + [anon_sym_spawn] = ACTIONS(1793), + [anon_sym_json_DOTdecode] = ACTIONS(1793), + [anon_sym_PIPE] = ACTIONS(3702), + [anon_sym_LBRACK2] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_CARET] = ACTIONS(3702), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_LT_DASH] = ACTIONS(1793), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_AMP_CARET] = ACTIONS(3704), + [anon_sym_AMP_AMP] = ACTIONS(1793), + [anon_sym_PIPE_PIPE] = ACTIONS(1793), + [anon_sym_or] = ACTIONS(1793), + [sym_none] = ACTIONS(1793), + [sym_true] = ACTIONS(1793), + [sym_false] = ACTIONS(1793), + [sym_nil] = ACTIONS(1793), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1793), + [anon_sym_is] = ACTIONS(1793), + [anon_sym_BANGis] = ACTIONS(1793), + [anon_sym_in] = ACTIONS(1793), + [anon_sym_BANGin] = ACTIONS(1793), + [anon_sym_match] = ACTIONS(1793), + [anon_sym_select] = ACTIONS(1793), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1793), + [anon_sym_sql] = ACTIONS(1793), + [sym_int_literal] = ACTIONS(1793), + [sym_float_literal] = ACTIONS(1793), + [sym_rune_literal] = ACTIONS(1793), + [anon_sym_SQUOTE] = ACTIONS(1793), + [anon_sym_DQUOTE] = ACTIONS(1793), + [anon_sym_c_SQUOTE] = ACTIONS(1793), + [anon_sym_c_DQUOTE] = ACTIONS(1793), + [anon_sym_r_SQUOTE] = ACTIONS(1793), + [anon_sym_r_DQUOTE] = ACTIONS(1793), + [sym_pseudo_compile_time_identifier] = ACTIONS(1793), + [anon_sym_shared] = ACTIONS(1793), + [anon_sym_map_LBRACK] = ACTIONS(1793), + [anon_sym_chan] = ACTIONS(1793), + [anon_sym_thread] = ACTIONS(1793), + [anon_sym_atomic] = ACTIONS(1793), }, [1113] = { [sym_line_comment] = STATE(1113), [sym_block_comment] = STATE(1113), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2311), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(605), - [anon_sym_LF] = ACTIONS(627), - [anon_sym_CR] = ACTIONS(627), - [anon_sym_CR_LF] = ACTIONS(627), + [sym_type_parameters] = STATE(4073), + [sym_argument_list] = STATE(1157), + [sym_or_block] = STATE(1167), + [sym_identifier] = ACTIONS(1767), + [anon_sym_LF] = ACTIONS(1767), + [anon_sym_CR] = ACTIONS(1767), + [anon_sym_CR_LF] = ACTIONS(1767), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(627), - [anon_sym_EQ] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(627), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(627), - [anon_sym_BANG_EQ] = ACTIONS(627), - [anon_sym_LT_EQ] = ACTIONS(627), - [anon_sym_GT_EQ] = ACTIONS(627), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_QMARK] = ACTIONS(627), - [anon_sym_BANG] = ACTIONS(627), - [anon_sym_LBRACK2] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = 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(623), - [anon_sym_map_LBRACK] = ACTIONS(561), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_COMMA] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(3700), + [anon_sym_RPAREN] = ACTIONS(1767), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3706), + [anon_sym_BANG_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3706), + [anon_sym_GT_EQ] = ACTIONS(3706), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(3702), + [anon_sym_LBRACK2] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_CARET] = ACTIONS(3702), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_LT_DASH] = ACTIONS(1767), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_AMP_CARET] = ACTIONS(3704), + [anon_sym_AMP_AMP] = ACTIONS(3720), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1767), + [anon_sym_in] = ACTIONS(3728), + [anon_sym_BANGin] = ACTIONS(3728), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1767), + [sym_rune_literal] = ACTIONS(1767), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_c_SQUOTE] = ACTIONS(1767), + [anon_sym_c_DQUOTE] = ACTIONS(1767), + [anon_sym_r_SQUOTE] = ACTIONS(1767), + [anon_sym_r_DQUOTE] = ACTIONS(1767), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1767), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), }, [1114] = { [sym_line_comment] = STATE(1114), [sym_block_comment] = STATE(1114), - [sym_type_parameters] = STATE(4009), - [sym_argument_list] = STATE(1153), - [sym_or_block] = STATE(1238), - [sym_identifier] = ACTIONS(1783), - [anon_sym_LF] = ACTIONS(1783), - [anon_sym_CR] = ACTIONS(1783), - [anon_sym_CR_LF] = ACTIONS(1783), + [sym_type_parameters] = STATE(4073), + [sym_argument_list] = STATE(1157), + [sym_or_block] = STATE(1167), + [sym_identifier] = ACTIONS(1767), + [anon_sym_LF] = ACTIONS(1767), + [anon_sym_CR] = ACTIONS(1767), + [anon_sym_CR_LF] = ACTIONS(1767), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1783), - [anon_sym_DOT] = ACTIONS(3664), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_COMMA] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(3666), - [anon_sym_RPAREN] = ACTIONS(1783), - [anon_sym_PIPE] = ACTIONS(1783), - [anon_sym_fn] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1783), - [anon_sym_SLASH] = ACTIONS(1783), - [anon_sym_PERCENT] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1783), - [anon_sym_GT] = ACTIONS(1783), - [anon_sym_EQ_EQ] = ACTIONS(1783), - [anon_sym_BANG_EQ] = ACTIONS(1783), - [anon_sym_LT_EQ] = ACTIONS(1783), - [anon_sym_GT_EQ] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(3674), - [anon_sym_struct] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_QMARK] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3678), - [anon_sym_go] = ACTIONS(1783), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1783), - [anon_sym_LBRACK2] = ACTIONS(3680), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_LT_DASH] = ACTIONS(1783), - [anon_sym_LT_LT] = ACTIONS(1783), - [anon_sym_GT_GT] = ACTIONS(1783), - [anon_sym_GT_GT_GT] = ACTIONS(1783), - [anon_sym_AMP_CARET] = ACTIONS(1783), - [anon_sym_AMP_AMP] = ACTIONS(1783), - [anon_sym_PIPE_PIPE] = ACTIONS(1783), - [anon_sym_or] = ACTIONS(1783), - [sym_none] = ACTIONS(1783), - [sym_true] = ACTIONS(1783), - [sym_false] = ACTIONS(1783), - [sym_nil] = ACTIONS(1783), - [anon_sym_QMARK_DOT] = ACTIONS(3664), - [anon_sym_POUND_LBRACK] = ACTIONS(3680), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_DOLLARif] = ACTIONS(1783), - [anon_sym_is] = ACTIONS(1783), - [anon_sym_BANGis] = ACTIONS(1783), - [anon_sym_in] = ACTIONS(1783), - [anon_sym_BANGin] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_select] = ACTIONS(1783), - [anon_sym_lock] = ACTIONS(1783), - [anon_sym_rlock] = ACTIONS(1783), - [anon_sym_unsafe] = ACTIONS(1783), - [anon_sym_sql] = ACTIONS(1783), - [sym_int_literal] = ACTIONS(1783), - [sym_float_literal] = ACTIONS(1783), - [sym_rune_literal] = ACTIONS(1783), - [anon_sym_SQUOTE] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1783), - [anon_sym_c_SQUOTE] = ACTIONS(1783), - [anon_sym_c_DQUOTE] = ACTIONS(1783), - [anon_sym_r_SQUOTE] = ACTIONS(1783), - [anon_sym_r_DQUOTE] = ACTIONS(1783), - [sym_pseudo_compile_time_identifier] = ACTIONS(1783), - [anon_sym_shared] = ACTIONS(1783), - [anon_sym_map_LBRACK] = ACTIONS(1783), - [anon_sym_chan] = ACTIONS(1783), - [anon_sym_thread] = ACTIONS(1783), - [anon_sym_atomic] = ACTIONS(1783), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_COMMA] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(3700), + [anon_sym_RPAREN] = ACTIONS(1767), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3706), + [anon_sym_BANG_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3706), + [anon_sym_GT_EQ] = ACTIONS(3706), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(3702), + [anon_sym_LBRACK2] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_CARET] = ACTIONS(3702), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_LT_DASH] = ACTIONS(1767), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_AMP_CARET] = ACTIONS(3704), + [anon_sym_AMP_AMP] = ACTIONS(1767), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1767), + [anon_sym_in] = ACTIONS(3728), + [anon_sym_BANGin] = ACTIONS(3728), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1767), + [sym_rune_literal] = ACTIONS(1767), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_c_SQUOTE] = ACTIONS(1767), + [anon_sym_c_DQUOTE] = ACTIONS(1767), + [anon_sym_r_SQUOTE] = ACTIONS(1767), + [anon_sym_r_DQUOTE] = ACTIONS(1767), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1767), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), }, [1115] = { [sym_line_comment] = STATE(1115), [sym_block_comment] = STATE(1115), - [sym_type_parameters] = STATE(4009), - [sym_argument_list] = STATE(1153), - [sym_or_block] = STATE(1238), - [sym_identifier] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1765), - [anon_sym_CR] = ACTIONS(1765), - [anon_sym_CR_LF] = ACTIONS(1765), + [sym_type_parameters] = STATE(4073), + [sym_argument_list] = STATE(1157), + [sym_or_block] = STATE(1167), + [sym_identifier] = ACTIONS(1767), + [anon_sym_LF] = ACTIONS(1767), + [anon_sym_CR] = ACTIONS(1767), + [anon_sym_CR_LF] = ACTIONS(1767), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_DOT] = ACTIONS(3664), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(3666), - [anon_sym_RPAREN] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(3668), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(3672), - [anon_sym_GT] = ACTIONS(3672), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(3674), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(3688), - [anon_sym_DASH_DASH] = ACTIONS(3690), - [anon_sym_QMARK] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3678), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1765), - [anon_sym_LBRACK2] = ACTIONS(3680), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_DASH] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_AMP_CARET] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3692), - [anon_sym_or] = ACTIONS(3694), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3664), - [anon_sym_POUND_LBRACK] = ACTIONS(3680), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(3696), - [anon_sym_BANGis] = ACTIONS(3696), - [anon_sym_in] = ACTIONS(3684), - [anon_sym_BANGin] = ACTIONS(3684), - [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), - [anon_sym_SQUOTE] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [anon_sym_c_SQUOTE] = ACTIONS(1765), - [anon_sym_c_DQUOTE] = ACTIONS(1765), - [anon_sym_r_SQUOTE] = ACTIONS(1765), - [anon_sym_r_DQUOTE] = 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_SEMI] = ACTIONS(1767), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_COMMA] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(3700), + [anon_sym_RPAREN] = ACTIONS(1767), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_EQ_EQ] = ACTIONS(1767), + [anon_sym_BANG_EQ] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(3702), + [anon_sym_LBRACK2] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_CARET] = ACTIONS(3702), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_LT_DASH] = ACTIONS(1767), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_AMP_CARET] = ACTIONS(3704), + [anon_sym_AMP_AMP] = ACTIONS(1767), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1767), + [anon_sym_in] = ACTIONS(1767), + [anon_sym_BANGin] = ACTIONS(1767), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1767), + [sym_rune_literal] = ACTIONS(1767), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_c_SQUOTE] = ACTIONS(1767), + [anon_sym_c_DQUOTE] = ACTIONS(1767), + [anon_sym_r_SQUOTE] = ACTIONS(1767), + [anon_sym_r_DQUOTE] = ACTIONS(1767), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1767), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), }, [1116] = { [sym_line_comment] = STATE(1116), [sym_block_comment] = STATE(1116), - [sym_type_parameters] = STATE(4009), - [sym_argument_list] = STATE(1153), - [sym_or_block] = STATE(1238), - [sym_identifier] = ACTIONS(1791), - [anon_sym_LF] = ACTIONS(1791), - [anon_sym_CR] = ACTIONS(1791), - [anon_sym_CR_LF] = ACTIONS(1791), + [sym_type_parameters] = STATE(4073), + [sym_argument_list] = STATE(1157), + [sym_or_block] = STATE(1167), + [sym_identifier] = ACTIONS(1771), + [anon_sym_LF] = ACTIONS(1771), + [anon_sym_CR] = ACTIONS(1771), + [anon_sym_CR_LF] = ACTIONS(1771), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1791), - [anon_sym_DOT] = ACTIONS(3664), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_RBRACE] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(3666), - [anon_sym_RPAREN] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1791), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_LT_EQ] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1791), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(3674), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_QMARK] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3678), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1791), - [anon_sym_LBRACK2] = ACTIONS(3680), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_DASH] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_AMP_CARET] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(3664), - [anon_sym_POUND_LBRACK] = ACTIONS(3680), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1791), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_BANGin] = ACTIONS(1791), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1791), - [sym_rune_literal] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(1791), - [anon_sym_c_SQUOTE] = ACTIONS(1791), - [anon_sym_c_DQUOTE] = ACTIONS(1791), - [anon_sym_r_SQUOTE] = ACTIONS(1791), - [anon_sym_r_DQUOTE] = ACTIONS(1791), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1791), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_COMMA] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(3700), + [anon_sym_RPAREN] = ACTIONS(1771), + [anon_sym_fn] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1771), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_SLASH] = ACTIONS(1771), + [anon_sym_PERCENT] = ACTIONS(1771), + [anon_sym_LT] = ACTIONS(1771), + [anon_sym_GT] = ACTIONS(1771), + [anon_sym_EQ_EQ] = ACTIONS(1771), + [anon_sym_BANG_EQ] = ACTIONS(1771), + [anon_sym_LT_EQ] = ACTIONS(1771), + [anon_sym_GT_EQ] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(1771), + [anon_sym_mut] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_QMARK] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_go] = ACTIONS(1771), + [anon_sym_spawn] = ACTIONS(1771), + [anon_sym_json_DOTdecode] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_LBRACK2] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_LT_DASH] = ACTIONS(1771), + [anon_sym_LT_LT] = ACTIONS(1771), + [anon_sym_GT_GT] = ACTIONS(1771), + [anon_sym_GT_GT_GT] = ACTIONS(1771), + [anon_sym_AMP_CARET] = ACTIONS(1771), + [anon_sym_AMP_AMP] = ACTIONS(1771), + [anon_sym_PIPE_PIPE] = ACTIONS(1771), + [anon_sym_or] = ACTIONS(1771), + [sym_none] = ACTIONS(1771), + [sym_true] = ACTIONS(1771), + [sym_false] = ACTIONS(1771), + [sym_nil] = ACTIONS(1771), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_DOLLARif] = ACTIONS(1771), + [anon_sym_is] = ACTIONS(1771), + [anon_sym_BANGis] = ACTIONS(1771), + [anon_sym_in] = ACTIONS(1771), + [anon_sym_BANGin] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_select] = ACTIONS(1771), + [anon_sym_lock] = ACTIONS(1771), + [anon_sym_rlock] = ACTIONS(1771), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1771), + [sym_int_literal] = ACTIONS(1771), + [sym_float_literal] = ACTIONS(1771), + [sym_rune_literal] = ACTIONS(1771), + [anon_sym_SQUOTE] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [anon_sym_c_SQUOTE] = ACTIONS(1771), + [anon_sym_c_DQUOTE] = ACTIONS(1771), + [anon_sym_r_SQUOTE] = ACTIONS(1771), + [anon_sym_r_DQUOTE] = ACTIONS(1771), + [sym_pseudo_compile_time_identifier] = ACTIONS(1771), + [anon_sym_shared] = ACTIONS(1771), + [anon_sym_map_LBRACK] = ACTIONS(1771), + [anon_sym_chan] = ACTIONS(1771), + [anon_sym_thread] = ACTIONS(1771), + [anon_sym_atomic] = ACTIONS(1771), }, [1117] = { [sym_line_comment] = STATE(1117), [sym_block_comment] = STATE(1117), - [sym_type_parameters] = STATE(4009), - [sym_argument_list] = STATE(1153), - [sym_or_block] = STATE(1238), - [sym_identifier] = ACTIONS(1769), - [anon_sym_LF] = ACTIONS(1769), - [anon_sym_CR] = ACTIONS(1769), - [anon_sym_CR_LF] = ACTIONS(1769), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1769), - [anon_sym_DOT] = ACTIONS(3664), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_COMMA] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(3666), - [anon_sym_RPAREN] = ACTIONS(1769), - [anon_sym_PIPE] = ACTIONS(1769), - [anon_sym_fn] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_STAR] = ACTIONS(1769), - [anon_sym_SLASH] = ACTIONS(1769), - [anon_sym_PERCENT] = ACTIONS(1769), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1769), - [anon_sym_EQ_EQ] = ACTIONS(1769), - [anon_sym_BANG_EQ] = ACTIONS(1769), - [anon_sym_LT_EQ] = ACTIONS(1769), - [anon_sym_GT_EQ] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(3674), - [anon_sym_struct] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_QMARK] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3678), - [anon_sym_go] = ACTIONS(1769), - [anon_sym_spawn] = ACTIONS(1769), - [anon_sym_json_DOTdecode] = ACTIONS(1769), - [anon_sym_LBRACK2] = ACTIONS(3680), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_CARET] = ACTIONS(1769), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_LT_DASH] = ACTIONS(1769), - [anon_sym_LT_LT] = ACTIONS(1769), - [anon_sym_GT_GT] = ACTIONS(1769), - [anon_sym_GT_GT_GT] = ACTIONS(1769), - [anon_sym_AMP_CARET] = ACTIONS(1769), - [anon_sym_AMP_AMP] = ACTIONS(1769), - [anon_sym_PIPE_PIPE] = ACTIONS(1769), - [anon_sym_or] = ACTIONS(1769), - [sym_none] = ACTIONS(1769), - [sym_true] = ACTIONS(1769), - [sym_false] = ACTIONS(1769), - [sym_nil] = ACTIONS(1769), - [anon_sym_QMARK_DOT] = ACTIONS(3664), - [anon_sym_POUND_LBRACK] = ACTIONS(3680), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_DOLLARif] = ACTIONS(1769), - [anon_sym_is] = ACTIONS(1769), - [anon_sym_BANGis] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_BANGin] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_select] = ACTIONS(1769), - [anon_sym_lock] = ACTIONS(1769), - [anon_sym_rlock] = ACTIONS(1769), - [anon_sym_unsafe] = ACTIONS(1769), - [anon_sym_sql] = ACTIONS(1769), - [sym_int_literal] = ACTIONS(1769), - [sym_float_literal] = ACTIONS(1769), - [sym_rune_literal] = ACTIONS(1769), - [anon_sym_SQUOTE] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1769), - [anon_sym_c_SQUOTE] = ACTIONS(1769), - [anon_sym_c_DQUOTE] = ACTIONS(1769), - [anon_sym_r_SQUOTE] = ACTIONS(1769), - [anon_sym_r_DQUOTE] = ACTIONS(1769), - [sym_pseudo_compile_time_identifier] = ACTIONS(1769), - [anon_sym_shared] = ACTIONS(1769), - [anon_sym_map_LBRACK] = ACTIONS(1769), - [anon_sym_chan] = ACTIONS(1769), - [anon_sym_thread] = ACTIONS(1769), - [anon_sym_atomic] = ACTIONS(1769), - }, - [1118] = { - [sym_line_comment] = STATE(1118), - [sym_block_comment] = STATE(1118), - [sym_else_branch] = STATE(1186), - [sym_identifier] = ACTIONS(1805), - [anon_sym_LF] = ACTIONS(1805), - [anon_sym_CR] = ACTIONS(1805), - [anon_sym_CR_LF] = ACTIONS(1805), + [sym_type_parameters] = STATE(4073), + [sym_argument_list] = STATE(1157), + [sym_or_block] = STATE(1167), + [sym_identifier] = ACTIONS(1767), + [anon_sym_LF] = ACTIONS(1767), + [anon_sym_CR] = ACTIONS(1767), + [anon_sym_CR_LF] = ACTIONS(1767), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1805), - [anon_sym_DOT] = ACTIONS(1805), - [anon_sym_as] = ACTIONS(1805), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_COMMA] = ACTIONS(1805), - [anon_sym_RBRACE] = ACTIONS(1805), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_PIPE] = ACTIONS(1805), - [anon_sym_fn] = ACTIONS(1805), - [anon_sym_PLUS] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(1805), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_SLASH] = ACTIONS(1805), - [anon_sym_PERCENT] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(1805), - [anon_sym_GT] = ACTIONS(1805), - [anon_sym_EQ_EQ] = ACTIONS(1805), - [anon_sym_BANG_EQ] = ACTIONS(1805), - [anon_sym_LT_EQ] = ACTIONS(1805), - [anon_sym_GT_EQ] = ACTIONS(1805), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1805), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_struct] = ACTIONS(1805), - [anon_sym_mut] = ACTIONS(1805), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_DASH_DASH] = ACTIONS(1805), - [anon_sym_QMARK] = ACTIONS(1805), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_go] = ACTIONS(1805), - [anon_sym_spawn] = ACTIONS(1805), - [anon_sym_json_DOTdecode] = ACTIONS(1805), - [anon_sym_LBRACK2] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_CARET] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(1805), - [anon_sym_LT_DASH] = ACTIONS(1805), - [anon_sym_LT_LT] = ACTIONS(1805), - [anon_sym_GT_GT] = ACTIONS(1805), - [anon_sym_GT_GT_GT] = ACTIONS(1805), - [anon_sym_AMP_CARET] = ACTIONS(1805), - [anon_sym_AMP_AMP] = ACTIONS(1805), - [anon_sym_PIPE_PIPE] = ACTIONS(1805), - [anon_sym_or] = ACTIONS(1805), - [sym_none] = ACTIONS(1805), - [sym_true] = ACTIONS(1805), - [sym_false] = ACTIONS(1805), - [sym_nil] = ACTIONS(1805), - [anon_sym_QMARK_DOT] = ACTIONS(1805), - [anon_sym_POUND_LBRACK] = ACTIONS(1805), - [anon_sym_if] = ACTIONS(1805), - [anon_sym_else] = ACTIONS(3698), - [anon_sym_DOLLARif] = ACTIONS(1805), - [anon_sym_is] = ACTIONS(1805), - [anon_sym_BANGis] = ACTIONS(1805), - [anon_sym_in] = ACTIONS(1805), - [anon_sym_BANGin] = ACTIONS(1805), - [anon_sym_match] = ACTIONS(1805), - [anon_sym_select] = ACTIONS(1805), - [anon_sym_lock] = ACTIONS(1805), - [anon_sym_rlock] = ACTIONS(1805), - [anon_sym_unsafe] = ACTIONS(1805), - [anon_sym_sql] = ACTIONS(1805), - [sym_int_literal] = ACTIONS(1805), - [sym_float_literal] = ACTIONS(1805), - [sym_rune_literal] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(1805), - [anon_sym_DQUOTE] = ACTIONS(1805), - [anon_sym_c_SQUOTE] = ACTIONS(1805), - [anon_sym_c_DQUOTE] = ACTIONS(1805), - [anon_sym_r_SQUOTE] = ACTIONS(1805), - [anon_sym_r_DQUOTE] = ACTIONS(1805), - [sym_pseudo_compile_time_identifier] = ACTIONS(1805), - [anon_sym_shared] = ACTIONS(1805), - [anon_sym_map_LBRACK] = ACTIONS(1805), - [anon_sym_chan] = ACTIONS(1805), - [anon_sym_thread] = ACTIONS(1805), - [anon_sym_atomic] = ACTIONS(1805), - }, - [1119] = { - [sym_line_comment] = STATE(1119), - [sym_block_comment] = STATE(1119), - [sym_reference_expression] = STATE(4449), - [sym_type_reference_expression] = STATE(1760), - [sym_plain_type] = STATE(1825), - [sym__plain_type_without_special] = STATE(1831), - [sym_anon_struct_type] = STATE(1830), - [sym_multi_return_type] = STATE(1831), - [sym_result_type] = STATE(1831), - [sym_option_type] = STATE(1831), - [sym_qualified_type] = STATE(1760), - [sym_fixed_array_type] = STATE(1830), - [sym_array_type] = STATE(1830), - [sym_pointer_type] = STATE(1830), - [sym_wrong_pointer_type] = STATE(1830), - [sym_map_type] = STATE(1830), - [sym_channel_type] = STATE(1830), - [sym_shared_type] = STATE(1830), - [sym_thread_type] = STATE(1830), - [sym_atomic_type] = STATE(1830), - [sym_generic_type] = STATE(1830), - [sym_function_type] = STATE(1830), - [sym_identifier] = ACTIONS(3700), - [anon_sym_LF] = ACTIONS(601), - [anon_sym_CR] = ACTIONS(601), - [anon_sym_CR_LF] = ACTIONS(601), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(601), - [anon_sym_as] = ACTIONS(601), - [anon_sym_COMMA] = ACTIONS(601), - [anon_sym_RBRACE] = ACTIONS(601), - [anon_sym_LPAREN] = ACTIONS(3702), - [anon_sym_EQ] = ACTIONS(601), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(601), - [anon_sym_BANG_EQ] = ACTIONS(601), - [anon_sym_LT_EQ] = ACTIONS(601), - [anon_sym_GT_EQ] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_struct] = ACTIONS(3708), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_QMARK] = ACTIONS(3710), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_LBRACK2] = ACTIONS(3714), - [anon_sym_CARET] = ACTIONS(601), - [anon_sym_AMP] = ACTIONS(3716), - [anon_sym_LT_LT] = ACTIONS(601), - [anon_sym_GT_GT] = ACTIONS(601), - [anon_sym_GT_GT_GT] = ACTIONS(601), - [anon_sym_AMP_CARET] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(601), - [anon_sym_PIPE_PIPE] = ACTIONS(601), - [anon_sym_or] = ACTIONS(601), - [anon_sym_QMARK_DOT] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(601), - [anon_sym_is] = ACTIONS(601), - [anon_sym_BANGis] = ACTIONS(601), - [anon_sym_in] = ACTIONS(601), - [anon_sym_BANGin] = ACTIONS(601), - [anon_sym_STAR_EQ] = ACTIONS(601), - [anon_sym_SLASH_EQ] = ACTIONS(601), - [anon_sym_PERCENT_EQ] = ACTIONS(601), - [anon_sym_LT_LT_EQ] = ACTIONS(601), - [anon_sym_GT_GT_EQ] = ACTIONS(601), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(601), - [anon_sym_AMP_EQ] = ACTIONS(601), - [anon_sym_AMP_CARET_EQ] = ACTIONS(601), - [anon_sym_PLUS_EQ] = ACTIONS(601), - [anon_sym_DASH_EQ] = ACTIONS(601), - [anon_sym_PIPE_EQ] = ACTIONS(601), - [anon_sym_CARET_EQ] = ACTIONS(601), - [anon_sym_COLON_EQ] = ACTIONS(601), - [anon_sym_shared] = ACTIONS(3718), - [anon_sym_map_LBRACK] = ACTIONS(3720), - [anon_sym_chan] = ACTIONS(3722), - [anon_sym_thread] = ACTIONS(3724), - [anon_sym_atomic] = ACTIONS(3726), - }, - [1120] = { - [sym_line_comment] = STATE(1120), - [sym_block_comment] = STATE(1120), - [sym_reference_expression] = STATE(4449), - [sym_type_reference_expression] = STATE(1760), - [sym_plain_type] = STATE(1800), - [sym__plain_type_without_special] = STATE(1831), - [sym_anon_struct_type] = STATE(1830), - [sym_multi_return_type] = STATE(1831), - [sym_result_type] = STATE(1831), - [sym_option_type] = STATE(1831), - [sym_qualified_type] = STATE(1760), - [sym_fixed_array_type] = STATE(1830), - [sym_array_type] = STATE(1830), - [sym_pointer_type] = STATE(1830), - [sym_wrong_pointer_type] = STATE(1830), - [sym_map_type] = STATE(1830), - [sym_channel_type] = STATE(1830), - [sym_shared_type] = STATE(1830), - [sym_thread_type] = STATE(1830), - [sym_atomic_type] = STATE(1830), - [sym_generic_type] = STATE(1830), - [sym_function_type] = STATE(1830), - [sym_identifier] = ACTIONS(3700), - [anon_sym_LF] = ACTIONS(567), - [anon_sym_CR] = ACTIONS(567), - [anon_sym_CR_LF] = ACTIONS(567), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(567), - [anon_sym_as] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(3702), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(3708), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(3710), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_LBRACK2] = ACTIONS(3714), - [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(3716), - [anon_sym_LT_LT] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(567), - [anon_sym_AMP_CARET] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_or] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(567), - [anon_sym_POUND_LBRACK] = ACTIONS(567), - [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(567), - [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(567), - [anon_sym_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(3718), - [anon_sym_map_LBRACK] = ACTIONS(3720), - [anon_sym_chan] = ACTIONS(3722), - [anon_sym_thread] = ACTIONS(3724), - [anon_sym_atomic] = ACTIONS(3726), - }, - [1121] = { - [sym_line_comment] = STATE(1121), - [sym_block_comment] = STATE(1121), - [sym_type_parameters] = STATE(4009), - [sym_argument_list] = STATE(1153), - [sym_or_block] = STATE(1238), - [sym_identifier] = ACTIONS(3728), - [anon_sym_LF] = ACTIONS(3728), - [anon_sym_CR] = ACTIONS(3728), - [anon_sym_CR_LF] = ACTIONS(3728), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3728), - [anon_sym_DOT] = ACTIONS(3664), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(3728), - [anon_sym_COMMA] = ACTIONS(3728), - [anon_sym_LPAREN] = ACTIONS(3666), - [anon_sym_RPAREN] = ACTIONS(3728), - [anon_sym_PIPE] = ACTIONS(3668), - [anon_sym_fn] = ACTIONS(3728), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(3672), - [anon_sym_GT] = ACTIONS(3672), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3728), - [anon_sym_LBRACK] = ACTIONS(3674), - [anon_sym_struct] = ACTIONS(3728), - [anon_sym_mut] = ACTIONS(3728), - [anon_sym_PLUS_PLUS] = ACTIONS(3688), - [anon_sym_DASH_DASH] = ACTIONS(3690), - [anon_sym_QMARK] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3678), - [anon_sym_go] = ACTIONS(3728), - [anon_sym_spawn] = ACTIONS(3728), - [anon_sym_json_DOTdecode] = ACTIONS(3728), - [anon_sym_LBRACK2] = ACTIONS(3680), - [anon_sym_TILDE] = ACTIONS(3728), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_DASH] = ACTIONS(3728), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_AMP_CARET] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3692), - [anon_sym_or] = ACTIONS(3694), - [sym_none] = ACTIONS(3728), - [sym_true] = ACTIONS(3728), - [sym_false] = ACTIONS(3728), - [sym_nil] = ACTIONS(3728), - [anon_sym_QMARK_DOT] = ACTIONS(3664), - [anon_sym_POUND_LBRACK] = ACTIONS(3680), - [anon_sym_if] = ACTIONS(3728), - [anon_sym_DOLLARif] = ACTIONS(3728), - [anon_sym_is] = ACTIONS(3696), - [anon_sym_BANGis] = ACTIONS(3696), - [anon_sym_in] = ACTIONS(3684), - [anon_sym_BANGin] = ACTIONS(3684), - [anon_sym_match] = ACTIONS(3728), - [anon_sym_select] = ACTIONS(3728), - [anon_sym_lock] = ACTIONS(3728), - [anon_sym_rlock] = ACTIONS(3728), - [anon_sym_unsafe] = ACTIONS(3728), - [anon_sym_sql] = ACTIONS(3728), - [sym_int_literal] = ACTIONS(3728), - [sym_float_literal] = ACTIONS(3728), - [sym_rune_literal] = ACTIONS(3728), - [anon_sym_SQUOTE] = ACTIONS(3728), - [anon_sym_DQUOTE] = ACTIONS(3728), - [anon_sym_c_SQUOTE] = ACTIONS(3728), - [anon_sym_c_DQUOTE] = ACTIONS(3728), - [anon_sym_r_SQUOTE] = ACTIONS(3728), - [anon_sym_r_DQUOTE] = ACTIONS(3728), - [sym_pseudo_compile_time_identifier] = ACTIONS(3728), - [anon_sym_shared] = ACTIONS(3728), - [anon_sym_map_LBRACK] = ACTIONS(3728), - [anon_sym_chan] = ACTIONS(3728), - [anon_sym_thread] = ACTIONS(3728), - [anon_sym_atomic] = ACTIONS(3728), - }, - [1122] = { - [sym_line_comment] = STATE(1122), - [sym_block_comment] = STATE(1122), - [sym_type_parameters] = STATE(4009), - [sym_argument_list] = STATE(1153), - [sym_or_block] = STATE(1238), - [sym_identifier] = ACTIONS(3730), - [anon_sym_LF] = ACTIONS(3730), - [anon_sym_CR] = ACTIONS(3730), - [anon_sym_CR_LF] = ACTIONS(3730), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3730), - [anon_sym_DOT] = ACTIONS(3664), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(3730), - [anon_sym_COMMA] = ACTIONS(3730), - [anon_sym_LPAREN] = ACTIONS(3666), - [anon_sym_RPAREN] = ACTIONS(3730), - [anon_sym_PIPE] = ACTIONS(3668), - [anon_sym_fn] = ACTIONS(3730), - [anon_sym_PLUS] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_STAR] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(3672), - [anon_sym_GT] = ACTIONS(3672), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3730), - [anon_sym_LBRACK] = ACTIONS(3674), - [anon_sym_struct] = ACTIONS(3730), - [anon_sym_mut] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3688), - [anon_sym_DASH_DASH] = ACTIONS(3690), - [anon_sym_QMARK] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3678), - [anon_sym_go] = ACTIONS(3730), - [anon_sym_spawn] = ACTIONS(3730), - [anon_sym_json_DOTdecode] = ACTIONS(3730), - [anon_sym_LBRACK2] = ACTIONS(3680), - [anon_sym_TILDE] = ACTIONS(3730), - [anon_sym_CARET] = ACTIONS(3730), - [anon_sym_AMP] = ACTIONS(3730), - [anon_sym_LT_DASH] = ACTIONS(3730), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_AMP_CARET] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3692), - [anon_sym_or] = ACTIONS(3694), - [sym_none] = ACTIONS(3730), - [sym_true] = ACTIONS(3730), - [sym_false] = ACTIONS(3730), - [sym_nil] = ACTIONS(3730), - [anon_sym_QMARK_DOT] = ACTIONS(3664), - [anon_sym_POUND_LBRACK] = ACTIONS(3680), - [anon_sym_if] = ACTIONS(3730), - [anon_sym_DOLLARif] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(3696), - [anon_sym_BANGis] = ACTIONS(3696), - [anon_sym_in] = ACTIONS(3684), - [anon_sym_BANGin] = ACTIONS(3684), - [anon_sym_match] = ACTIONS(3730), - [anon_sym_select] = ACTIONS(3730), - [anon_sym_lock] = ACTIONS(3730), - [anon_sym_rlock] = ACTIONS(3730), - [anon_sym_unsafe] = ACTIONS(3730), - [anon_sym_sql] = ACTIONS(3730), - [sym_int_literal] = ACTIONS(3730), - [sym_float_literal] = ACTIONS(3730), - [sym_rune_literal] = ACTIONS(3730), - [anon_sym_SQUOTE] = ACTIONS(3730), - [anon_sym_DQUOTE] = ACTIONS(3730), - [anon_sym_c_SQUOTE] = ACTIONS(3730), - [anon_sym_c_DQUOTE] = ACTIONS(3730), - [anon_sym_r_SQUOTE] = ACTIONS(3730), - [anon_sym_r_DQUOTE] = ACTIONS(3730), - [sym_pseudo_compile_time_identifier] = ACTIONS(3730), - [anon_sym_shared] = ACTIONS(3730), - [anon_sym_map_LBRACK] = ACTIONS(3730), - [anon_sym_chan] = ACTIONS(3730), - [anon_sym_thread] = ACTIONS(3730), - [anon_sym_atomic] = ACTIONS(3730), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_COMMA] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(3700), + [anon_sym_RPAREN] = ACTIONS(1767), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_EQ_EQ] = ACTIONS(1767), + [anon_sym_BANG_EQ] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK2] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_CARET] = ACTIONS(1767), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_LT_DASH] = ACTIONS(1767), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_AMP_CARET] = ACTIONS(3704), + [anon_sym_AMP_AMP] = ACTIONS(1767), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1767), + [anon_sym_in] = ACTIONS(1767), + [anon_sym_BANGin] = ACTIONS(1767), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1767), + [sym_rune_literal] = ACTIONS(1767), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_c_SQUOTE] = ACTIONS(1767), + [anon_sym_c_DQUOTE] = ACTIONS(1767), + [anon_sym_r_SQUOTE] = ACTIONS(1767), + [anon_sym_r_DQUOTE] = ACTIONS(1767), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1767), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), }, - [1123] = { - [sym_line_comment] = STATE(1123), - [sym_block_comment] = STATE(1123), - [sym_reference_expression] = STATE(4449), - [sym_type_reference_expression] = STATE(1760), - [sym_plain_type] = STATE(1804), - [sym__plain_type_without_special] = STATE(1831), - [sym_anon_struct_type] = STATE(1830), - [sym_multi_return_type] = STATE(1831), - [sym_result_type] = STATE(1831), - [sym_option_type] = STATE(1831), - [sym_qualified_type] = STATE(1760), - [sym_fixed_array_type] = STATE(1830), - [sym_array_type] = STATE(1830), - [sym_pointer_type] = STATE(1830), - [sym_wrong_pointer_type] = STATE(1830), - [sym_map_type] = STATE(1830), - [sym_channel_type] = STATE(1830), - [sym_shared_type] = STATE(1830), - [sym_thread_type] = STATE(1830), - [sym_atomic_type] = STATE(1830), - [sym_generic_type] = STATE(1830), - [sym_function_type] = STATE(1830), - [sym_identifier] = ACTIONS(3700), + [1118] = { + [sym_line_comment] = STATE(1118), + [sym_block_comment] = STATE(1118), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2418), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(609), [anon_sym_LF] = ACTIONS(597), [anon_sym_CR] = ACTIONS(597), [anon_sym_CR_LF] = ACTIONS(597), @@ -149623,15 +149516,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(597), [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(601), [anon_sym_COMMA] = ACTIONS(597), [anon_sym_RBRACE] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(3702), + [anon_sym_LPAREN] = ACTIONS(597), [anon_sym_EQ] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(3704), + [anon_sym_fn] = ACTIONS(615), [anon_sym_PLUS] = ACTIONS(597), [anon_sym_DASH] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(597), [anon_sym_SLASH] = ACTIONS(597), [anon_sym_PERCENT] = ACTIONS(597), [anon_sym_LT] = ACTIONS(597), @@ -149641,14 +149534,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(597), [anon_sym_GT_EQ] = ACTIONS(597), [anon_sym_LBRACK] = ACTIONS(595), - [anon_sym_struct] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(619), [anon_sym_PLUS_PLUS] = ACTIONS(597), [anon_sym_DASH_DASH] = ACTIONS(597), - [anon_sym_QMARK] = ACTIONS(3710), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_LBRACK2] = ACTIONS(3714), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), [anon_sym_CARET] = ACTIONS(597), - [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(597), [anon_sym_LT_LT] = ACTIONS(597), [anon_sym_GT_GT] = ACTIONS(597), [anon_sym_GT_GT_GT] = ACTIONS(597), @@ -149675,18 +149569,377 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(597), [anon_sym_CARET_EQ] = ACTIONS(597), [anon_sym_COLON_EQ] = ACTIONS(597), - [anon_sym_shared] = ACTIONS(3718), - [anon_sym_map_LBRACK] = ACTIONS(3720), - [anon_sym_chan] = ACTIONS(3722), - [anon_sym_thread] = ACTIONS(3724), - [anon_sym_atomic] = ACTIONS(3726), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(561), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [1124] = { - [sym_line_comment] = STATE(1124), - [sym_block_comment] = STATE(1124), - [sym_type_parameters] = STATE(4009), - [sym_argument_list] = STATE(1153), - [sym_or_block] = STATE(1238), + [1119] = { + [sym_line_comment] = STATE(1119), + [sym_block_comment] = STATE(1119), + [sym_type_parameters] = STATE(4073), + [sym_argument_list] = STATE(1157), + [sym_or_block] = STATE(1167), + [sym_identifier] = ACTIONS(1775), + [anon_sym_LF] = ACTIONS(1775), + [anon_sym_CR] = ACTIONS(1775), + [anon_sym_CR_LF] = ACTIONS(1775), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1775), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(1775), + [anon_sym_COMMA] = ACTIONS(1775), + [anon_sym_RBRACE] = ACTIONS(1775), + [anon_sym_LPAREN] = ACTIONS(3700), + [anon_sym_RPAREN] = ACTIONS(1775), + [anon_sym_fn] = ACTIONS(1775), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3706), + [anon_sym_BANG_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3706), + [anon_sym_GT_EQ] = ACTIONS(3706), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1775), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(1775), + [anon_sym_mut] = ACTIONS(1775), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_go] = ACTIONS(1775), + [anon_sym_spawn] = ACTIONS(1775), + [anon_sym_json_DOTdecode] = ACTIONS(1775), + [anon_sym_PIPE] = ACTIONS(3702), + [anon_sym_LBRACK2] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(3702), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_LT_DASH] = ACTIONS(1775), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_AMP_CARET] = ACTIONS(3704), + [anon_sym_AMP_AMP] = ACTIONS(3720), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_or] = ACTIONS(3724), + [sym_none] = ACTIONS(1775), + [sym_true] = ACTIONS(1775), + [sym_false] = ACTIONS(1775), + [sym_nil] = ACTIONS(1775), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(1775), + [anon_sym_DOLLARif] = ACTIONS(1775), + [anon_sym_is] = ACTIONS(3726), + [anon_sym_BANGis] = ACTIONS(3726), + [anon_sym_in] = ACTIONS(3728), + [anon_sym_BANGin] = ACTIONS(3728), + [anon_sym_match] = ACTIONS(1775), + [anon_sym_select] = ACTIONS(1775), + [anon_sym_lock] = ACTIONS(1775), + [anon_sym_rlock] = ACTIONS(1775), + [anon_sym_unsafe] = ACTIONS(1775), + [anon_sym_sql] = ACTIONS(1775), + [sym_int_literal] = ACTIONS(1775), + [sym_float_literal] = ACTIONS(1775), + [sym_rune_literal] = ACTIONS(1775), + [anon_sym_SQUOTE] = ACTIONS(1775), + [anon_sym_DQUOTE] = ACTIONS(1775), + [anon_sym_c_SQUOTE] = ACTIONS(1775), + [anon_sym_c_DQUOTE] = ACTIONS(1775), + [anon_sym_r_SQUOTE] = ACTIONS(1775), + [anon_sym_r_DQUOTE] = ACTIONS(1775), + [sym_pseudo_compile_time_identifier] = ACTIONS(1775), + [anon_sym_shared] = ACTIONS(1775), + [anon_sym_map_LBRACK] = ACTIONS(1775), + [anon_sym_chan] = ACTIONS(1775), + [anon_sym_thread] = ACTIONS(1775), + [anon_sym_atomic] = ACTIONS(1775), + }, + [1120] = { + [sym_line_comment] = STATE(1120), + [sym_block_comment] = STATE(1120), + [sym_type_parameters] = STATE(4073), + [sym_argument_list] = STATE(1157), + [sym_or_block] = STATE(1167), + [sym_identifier] = ACTIONS(1767), + [anon_sym_LF] = ACTIONS(1767), + [anon_sym_CR] = ACTIONS(1767), + [anon_sym_CR_LF] = ACTIONS(1767), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_COMMA] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(3700), + [anon_sym_RPAREN] = ACTIONS(1767), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_PERCENT] = ACTIONS(1767), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_EQ_EQ] = ACTIONS(1767), + [anon_sym_BANG_EQ] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK2] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_CARET] = ACTIONS(1767), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym_LT_DASH] = ACTIONS(1767), + [anon_sym_LT_LT] = ACTIONS(1767), + [anon_sym_GT_GT] = ACTIONS(1767), + [anon_sym_GT_GT_GT] = ACTIONS(1767), + [anon_sym_AMP_CARET] = ACTIONS(1767), + [anon_sym_AMP_AMP] = ACTIONS(1767), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1767), + [anon_sym_in] = ACTIONS(1767), + [anon_sym_BANGin] = ACTIONS(1767), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1767), + [sym_rune_literal] = ACTIONS(1767), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_c_SQUOTE] = ACTIONS(1767), + [anon_sym_c_DQUOTE] = ACTIONS(1767), + [anon_sym_r_SQUOTE] = ACTIONS(1767), + [anon_sym_r_DQUOTE] = ACTIONS(1767), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1767), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), + }, + [1121] = { + [sym_line_comment] = STATE(1121), + [sym_block_comment] = STATE(1121), + [sym_type_parameters] = STATE(4073), + [sym_argument_list] = STATE(1157), + [sym_or_block] = STATE(1167), + [sym_identifier] = ACTIONS(1789), + [anon_sym_LF] = ACTIONS(1789), + [anon_sym_CR] = ACTIONS(1789), + [anon_sym_CR_LF] = ACTIONS(1789), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1789), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_COMMA] = ACTIONS(1789), + [anon_sym_RBRACE] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(3700), + [anon_sym_RPAREN] = ACTIONS(1789), + [anon_sym_fn] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_STAR] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(1789), + [anon_sym_PERCENT] = ACTIONS(1789), + [anon_sym_LT] = ACTIONS(1789), + [anon_sym_GT] = ACTIONS(1789), + [anon_sym_EQ_EQ] = ACTIONS(1789), + [anon_sym_BANG_EQ] = ACTIONS(1789), + [anon_sym_LT_EQ] = ACTIONS(1789), + [anon_sym_GT_EQ] = ACTIONS(1789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1789), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(1789), + [anon_sym_mut] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [anon_sym_QMARK] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_go] = ACTIONS(1789), + [anon_sym_spawn] = ACTIONS(1789), + [anon_sym_json_DOTdecode] = ACTIONS(1789), + [anon_sym_PIPE] = ACTIONS(1789), + [anon_sym_LBRACK2] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_CARET] = ACTIONS(1789), + [anon_sym_AMP] = ACTIONS(1789), + [anon_sym_LT_DASH] = ACTIONS(1789), + [anon_sym_LT_LT] = ACTIONS(1789), + [anon_sym_GT_GT] = ACTIONS(1789), + [anon_sym_GT_GT_GT] = ACTIONS(1789), + [anon_sym_AMP_CARET] = ACTIONS(1789), + [anon_sym_AMP_AMP] = ACTIONS(1789), + [anon_sym_PIPE_PIPE] = ACTIONS(1789), + [anon_sym_or] = ACTIONS(1789), + [sym_none] = ACTIONS(1789), + [sym_true] = ACTIONS(1789), + [sym_false] = ACTIONS(1789), + [sym_nil] = ACTIONS(1789), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1789), + [anon_sym_is] = ACTIONS(1789), + [anon_sym_BANGis] = ACTIONS(1789), + [anon_sym_in] = ACTIONS(1789), + [anon_sym_BANGin] = ACTIONS(1789), + [anon_sym_match] = ACTIONS(1789), + [anon_sym_select] = ACTIONS(1789), + [anon_sym_lock] = ACTIONS(1789), + [anon_sym_rlock] = ACTIONS(1789), + [anon_sym_unsafe] = ACTIONS(1789), + [anon_sym_sql] = ACTIONS(1789), + [sym_int_literal] = ACTIONS(1789), + [sym_float_literal] = ACTIONS(1789), + [sym_rune_literal] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(1789), + [anon_sym_c_SQUOTE] = ACTIONS(1789), + [anon_sym_c_DQUOTE] = ACTIONS(1789), + [anon_sym_r_SQUOTE] = ACTIONS(1789), + [anon_sym_r_DQUOTE] = ACTIONS(1789), + [sym_pseudo_compile_time_identifier] = ACTIONS(1789), + [anon_sym_shared] = ACTIONS(1789), + [anon_sym_map_LBRACK] = ACTIONS(1789), + [anon_sym_chan] = ACTIONS(1789), + [anon_sym_thread] = ACTIONS(1789), + [anon_sym_atomic] = ACTIONS(1789), + }, + [1122] = { + [sym_line_comment] = STATE(1122), + [sym_block_comment] = STATE(1122), + [sym_type_parameters] = STATE(4073), + [sym_argument_list] = STATE(1157), + [sym_or_block] = STATE(1167), + [sym_identifier] = ACTIONS(1783), + [anon_sym_LF] = ACTIONS(1783), + [anon_sym_CR] = ACTIONS(1783), + [anon_sym_CR_LF] = ACTIONS(1783), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_COMMA] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(3700), + [anon_sym_RPAREN] = ACTIONS(1783), + [anon_sym_fn] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3706), + [anon_sym_BANG_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3706), + [anon_sym_GT_EQ] = ACTIONS(3706), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(1783), + [anon_sym_mut] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_go] = ACTIONS(1783), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(3702), + [anon_sym_LBRACK2] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_CARET] = ACTIONS(3702), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_LT_DASH] = ACTIONS(1783), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_AMP_CARET] = ACTIONS(3704), + [anon_sym_AMP_AMP] = ACTIONS(3720), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_or] = ACTIONS(3724), + [sym_none] = ACTIONS(1783), + [sym_true] = ACTIONS(1783), + [sym_false] = ACTIONS(1783), + [sym_nil] = ACTIONS(1783), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_DOLLARif] = ACTIONS(1783), + [anon_sym_is] = ACTIONS(3730), + [anon_sym_BANGis] = ACTIONS(3730), + [anon_sym_in] = ACTIONS(3728), + [anon_sym_BANGin] = ACTIONS(3728), + [anon_sym_match] = ACTIONS(1783), + [anon_sym_select] = ACTIONS(1783), + [anon_sym_lock] = ACTIONS(1783), + [anon_sym_rlock] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1783), + [anon_sym_sql] = ACTIONS(1783), + [sym_int_literal] = ACTIONS(1783), + [sym_float_literal] = ACTIONS(1783), + [sym_rune_literal] = ACTIONS(1783), + [anon_sym_SQUOTE] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(1783), + [anon_sym_c_SQUOTE] = ACTIONS(1783), + [anon_sym_c_DQUOTE] = ACTIONS(1783), + [anon_sym_r_SQUOTE] = ACTIONS(1783), + [anon_sym_r_DQUOTE] = ACTIONS(1783), + [sym_pseudo_compile_time_identifier] = ACTIONS(1783), + [anon_sym_shared] = ACTIONS(1783), + [anon_sym_map_LBRACK] = ACTIONS(1783), + [anon_sym_chan] = ACTIONS(1783), + [anon_sym_thread] = ACTIONS(1783), + [anon_sym_atomic] = ACTIONS(1783), + }, + [1123] = { + [sym_line_comment] = STATE(1123), + [sym_block_comment] = STATE(1123), + [sym_type_parameters] = STATE(4073), + [sym_argument_list] = STATE(1157), + [sym_or_block] = STATE(1167), [sym_identifier] = ACTIONS(3732), [anon_sym_LF] = ACTIONS(3732), [anon_sym_CR] = ACTIONS(3732), @@ -149694,60 +149947,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_SEMI] = ACTIONS(3732), - [anon_sym_DOT] = ACTIONS(3664), - [anon_sym_as] = ACTIONS(3686), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3698), [anon_sym_LBRACE] = ACTIONS(3732), [anon_sym_COMMA] = ACTIONS(3732), - [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_LPAREN] = ACTIONS(3700), [anon_sym_RPAREN] = ACTIONS(3732), - [anon_sym_PIPE] = ACTIONS(3668), [anon_sym_fn] = ACTIONS(3732), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(3672), - [anon_sym_GT] = ACTIONS(3672), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3706), + [anon_sym_BANG_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3706), + [anon_sym_GT_EQ] = ACTIONS(3706), [anon_sym_DOT_DOT_DOT] = ACTIONS(3732), - [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_LBRACK] = ACTIONS(3708), [anon_sym_struct] = ACTIONS(3732), [anon_sym_mut] = ACTIONS(3732), - [anon_sym_PLUS_PLUS] = ACTIONS(3688), - [anon_sym_DASH_DASH] = ACTIONS(3690), - [anon_sym_QMARK] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3716), [anon_sym_go] = ACTIONS(3732), [anon_sym_spawn] = ACTIONS(3732), [anon_sym_json_DOTdecode] = ACTIONS(3732), - [anon_sym_LBRACK2] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(3702), + [anon_sym_LBRACK2] = ACTIONS(3718), [anon_sym_TILDE] = ACTIONS(3732), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_CARET] = ACTIONS(3702), + [anon_sym_AMP] = ACTIONS(3704), [anon_sym_LT_DASH] = ACTIONS(3732), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_AMP_CARET] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3692), - [anon_sym_or] = ACTIONS(3694), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_AMP_CARET] = ACTIONS(3704), + [anon_sym_AMP_AMP] = ACTIONS(3720), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_or] = ACTIONS(3724), [sym_none] = ACTIONS(3732), [sym_true] = ACTIONS(3732), [sym_false] = ACTIONS(3732), [sym_nil] = ACTIONS(3732), - [anon_sym_QMARK_DOT] = ACTIONS(3664), - [anon_sym_POUND_LBRACK] = ACTIONS(3680), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3718), [anon_sym_if] = ACTIONS(3732), [anon_sym_DOLLARif] = ACTIONS(3732), - [anon_sym_is] = ACTIONS(3696), - [anon_sym_BANGis] = ACTIONS(3696), - [anon_sym_in] = ACTIONS(3684), - [anon_sym_BANGin] = ACTIONS(3684), + [anon_sym_is] = ACTIONS(3726), + [anon_sym_BANGis] = ACTIONS(3726), + [anon_sym_in] = ACTIONS(3728), + [anon_sym_BANGin] = ACTIONS(3728), [anon_sym_match] = ACTIONS(3732), [anon_sym_select] = ACTIONS(3732), [anon_sym_lock] = ACTIONS(3732), @@ -149770,188 +150023,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(3732), [anon_sym_atomic] = ACTIONS(3732), }, + [1124] = { + [sym_line_comment] = STATE(1124), + [sym_block_comment] = STATE(1124), + [sym_type_parameters] = STATE(4073), + [sym_argument_list] = STATE(1157), + [sym_or_block] = STATE(1167), + [sym_identifier] = ACTIONS(3734), + [anon_sym_LF] = ACTIONS(3734), + [anon_sym_CR] = ACTIONS(3734), + [anon_sym_CR_LF] = ACTIONS(3734), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3734), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3734), + [anon_sym_LPAREN] = ACTIONS(3700), + [anon_sym_RPAREN] = ACTIONS(3734), + [anon_sym_fn] = ACTIONS(3734), + [anon_sym_PLUS] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(3734), + [anon_sym_STAR] = ACTIONS(3734), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3706), + [anon_sym_BANG_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3706), + [anon_sym_GT_EQ] = ACTIONS(3706), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3734), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(3734), + [anon_sym_mut] = ACTIONS(3734), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_go] = ACTIONS(3734), + [anon_sym_spawn] = ACTIONS(3734), + [anon_sym_json_DOTdecode] = ACTIONS(3734), + [anon_sym_PIPE] = ACTIONS(3702), + [anon_sym_LBRACK2] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3734), + [anon_sym_CARET] = ACTIONS(3734), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_AMP_CARET] = ACTIONS(3704), + [anon_sym_AMP_AMP] = ACTIONS(3720), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_or] = ACTIONS(3724), + [sym_none] = ACTIONS(3734), + [sym_true] = ACTIONS(3734), + [sym_false] = ACTIONS(3734), + [sym_nil] = ACTIONS(3734), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(3734), + [anon_sym_DOLLARif] = ACTIONS(3734), + [anon_sym_is] = ACTIONS(3726), + [anon_sym_BANGis] = ACTIONS(3726), + [anon_sym_in] = ACTIONS(3728), + [anon_sym_BANGin] = ACTIONS(3728), + [anon_sym_match] = ACTIONS(3734), + [anon_sym_select] = ACTIONS(3734), + [anon_sym_lock] = ACTIONS(3734), + [anon_sym_rlock] = ACTIONS(3734), + [anon_sym_unsafe] = ACTIONS(3734), + [anon_sym_sql] = ACTIONS(3734), + [sym_int_literal] = ACTIONS(3734), + [sym_float_literal] = ACTIONS(3734), + [sym_rune_literal] = ACTIONS(3734), + [anon_sym_SQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_c_SQUOTE] = ACTIONS(3734), + [anon_sym_c_DQUOTE] = ACTIONS(3734), + [anon_sym_r_SQUOTE] = ACTIONS(3734), + [anon_sym_r_DQUOTE] = ACTIONS(3734), + [sym_pseudo_compile_time_identifier] = ACTIONS(3734), + [anon_sym_shared] = ACTIONS(3734), + [anon_sym_map_LBRACK] = ACTIONS(3734), + [anon_sym_chan] = ACTIONS(3734), + [anon_sym_thread] = ACTIONS(3734), + [anon_sym_atomic] = ACTIONS(3734), + }, [1125] = { [sym_line_comment] = STATE(1125), [sym_block_comment] = STATE(1125), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(605), - [anon_sym_LF] = ACTIONS(607), - [anon_sym_CR] = ACTIONS(607), - [anon_sym_CR_LF] = ACTIONS(607), + [sym_reference_expression] = STATE(4537), + [sym_type_reference_expression] = STATE(1800), + [sym_plain_type] = STATE(1916), + [sym__plain_type_without_special] = STATE(1920), + [sym_anon_struct_type] = STATE(1919), + [sym_multi_return_type] = STATE(1920), + [sym_result_type] = STATE(1920), + [sym_option_type] = STATE(1920), + [sym_qualified_type] = STATE(1800), + [sym_fixed_array_type] = STATE(1919), + [sym_array_type] = STATE(1919), + [sym_pointer_type] = STATE(1919), + [sym_wrong_pointer_type] = STATE(1919), + [sym_map_type] = STATE(1919), + [sym_channel_type] = STATE(1919), + [sym_shared_type] = STATE(1919), + [sym_thread_type] = STATE(1919), + [sym_atomic_type] = STATE(1919), + [sym_generic_type] = STATE(1919), + [sym_function_type] = STATE(1919), + [sym_identifier] = ACTIONS(3736), + [anon_sym_LF] = ACTIONS(567), + [anon_sym_CR] = ACTIONS(567), + [anon_sym_CR_LF] = ACTIONS(567), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(607), - [anon_sym_RBRACE] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_BANG_EQ] = ACTIONS(607), - [anon_sym_LT_EQ] = ACTIONS(607), - [anon_sym_GT_EQ] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(607), - [anon_sym_DASH_DASH] = ACTIONS(607), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3734), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_GT_GT_GT] = ACTIONS(607), - [anon_sym_AMP_CARET] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [anon_sym_or] = ACTIONS(607), - [anon_sym_QMARK_DOT] = ACTIONS(607), - [anon_sym_POUND_LBRACK] = ACTIONS(607), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(607), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(607), - [anon_sym_SLASH_EQ] = ACTIONS(607), - [anon_sym_PERCENT_EQ] = ACTIONS(607), - [anon_sym_LT_LT_EQ] = ACTIONS(607), - [anon_sym_GT_GT_EQ] = ACTIONS(607), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(607), - [anon_sym_AMP_EQ] = ACTIONS(607), - [anon_sym_AMP_CARET_EQ] = ACTIONS(607), - [anon_sym_PLUS_EQ] = ACTIONS(607), - [anon_sym_DASH_EQ] = ACTIONS(607), - [anon_sym_PIPE_EQ] = ACTIONS(607), - [anon_sym_CARET_EQ] = ACTIONS(607), - [anon_sym_COLON_EQ] = ACTIONS(607), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(561), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT] = ACTIONS(567), + [anon_sym_as] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(3738), + [anon_sym_EQ] = ACTIONS(567), + [anon_sym_fn] = ACTIONS(3740), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_STAR] = ACTIONS(3742), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(567), + [anon_sym_DASH_DASH] = ACTIONS(567), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_LBRACK2] = ACTIONS(3750), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(3752), + [anon_sym_LT_LT] = ACTIONS(567), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_GT_GT_GT] = ACTIONS(567), + [anon_sym_AMP_CARET] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_or] = ACTIONS(567), + [anon_sym_QMARK_DOT] = ACTIONS(567), + [anon_sym_POUND_LBRACK] = ACTIONS(567), + [anon_sym_is] = ACTIONS(567), + [anon_sym_BANGis] = ACTIONS(567), + [anon_sym_in] = ACTIONS(567), + [anon_sym_BANGin] = ACTIONS(567), + [anon_sym_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(3754), + [anon_sym_map_LBRACK] = ACTIONS(3756), + [anon_sym_chan] = ACTIONS(3758), + [anon_sym_thread] = ACTIONS(3760), + [anon_sym_atomic] = ACTIONS(3762), }, [1126] = { [sym_line_comment] = STATE(1126), [sym_block_comment] = STATE(1126), - [sym_type_parameters] = STATE(4009), - [sym_argument_list] = STATE(1153), - [sym_or_block] = STATE(1238), - [sym_identifier] = ACTIONS(1773), - [anon_sym_LF] = ACTIONS(1773), - [anon_sym_CR] = ACTIONS(1773), - [anon_sym_CR_LF] = ACTIONS(1773), + [sym_reference_expression] = STATE(4537), + [sym_type_reference_expression] = STATE(1800), + [sym_plain_type] = STATE(1891), + [sym__plain_type_without_special] = STATE(1920), + [sym_anon_struct_type] = STATE(1919), + [sym_multi_return_type] = STATE(1920), + [sym_result_type] = STATE(1920), + [sym_option_type] = STATE(1920), + [sym_qualified_type] = STATE(1800), + [sym_fixed_array_type] = STATE(1919), + [sym_array_type] = STATE(1919), + [sym_pointer_type] = STATE(1919), + [sym_wrong_pointer_type] = STATE(1919), + [sym_map_type] = STATE(1919), + [sym_channel_type] = STATE(1919), + [sym_shared_type] = STATE(1919), + [sym_thread_type] = STATE(1919), + [sym_atomic_type] = STATE(1919), + [sym_generic_type] = STATE(1919), + [sym_function_type] = STATE(1919), + [sym_identifier] = ACTIONS(3736), + [anon_sym_LF] = ACTIONS(605), + [anon_sym_CR] = ACTIONS(605), + [anon_sym_CR_LF] = ACTIONS(605), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(3664), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_COMMA] = ACTIONS(1773), - [anon_sym_LPAREN] = ACTIONS(3666), - [anon_sym_RPAREN] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(3668), - [anon_sym_fn] = ACTIONS(1773), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(3672), - [anon_sym_GT] = ACTIONS(3672), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), - [anon_sym_LBRACK] = ACTIONS(3674), - [anon_sym_struct] = ACTIONS(1773), - [anon_sym_mut] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(3688), - [anon_sym_DASH_DASH] = ACTIONS(3690), - [anon_sym_QMARK] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3678), - [anon_sym_go] = ACTIONS(1773), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1773), - [anon_sym_LBRACK2] = ACTIONS(3680), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_DASH] = ACTIONS(1773), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_AMP_CARET] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3692), - [anon_sym_or] = ACTIONS(3694), - [sym_none] = ACTIONS(1773), - [sym_true] = ACTIONS(1773), - [sym_false] = ACTIONS(1773), - [sym_nil] = ACTIONS(1773), - [anon_sym_QMARK_DOT] = ACTIONS(3664), - [anon_sym_POUND_LBRACK] = ACTIONS(3680), - [anon_sym_if] = ACTIONS(1773), - [anon_sym_DOLLARif] = ACTIONS(1773), - [anon_sym_is] = ACTIONS(3736), - [anon_sym_BANGis] = ACTIONS(3736), - [anon_sym_in] = ACTIONS(3684), - [anon_sym_BANGin] = ACTIONS(3684), - [anon_sym_match] = ACTIONS(1773), - [anon_sym_select] = ACTIONS(1773), - [anon_sym_lock] = ACTIONS(1773), - [anon_sym_rlock] = ACTIONS(1773), - [anon_sym_unsafe] = ACTIONS(1773), - [anon_sym_sql] = ACTIONS(1773), - [sym_int_literal] = ACTIONS(1773), - [sym_float_literal] = ACTIONS(1773), - [sym_rune_literal] = ACTIONS(1773), - [anon_sym_SQUOTE] = ACTIONS(1773), - [anon_sym_DQUOTE] = ACTIONS(1773), - [anon_sym_c_SQUOTE] = ACTIONS(1773), - [anon_sym_c_DQUOTE] = ACTIONS(1773), - [anon_sym_r_SQUOTE] = ACTIONS(1773), - [anon_sym_r_DQUOTE] = ACTIONS(1773), - [sym_pseudo_compile_time_identifier] = ACTIONS(1773), - [anon_sym_shared] = ACTIONS(1773), - [anon_sym_map_LBRACK] = ACTIONS(1773), - [anon_sym_chan] = ACTIONS(1773), - [anon_sym_thread] = ACTIONS(1773), - [anon_sym_atomic] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(605), + [anon_sym_as] = ACTIONS(605), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_RBRACE] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(3738), + [anon_sym_EQ] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(3740), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(3742), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [anon_sym_LT_EQ] = ACTIONS(605), + [anon_sym_GT_EQ] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_LBRACK2] = ACTIONS(3750), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(3752), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_GT_GT_GT] = ACTIONS(605), + [anon_sym_AMP_CARET] = ACTIONS(605), + [anon_sym_AMP_AMP] = ACTIONS(605), + [anon_sym_PIPE_PIPE] = ACTIONS(605), + [anon_sym_or] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(605), + [anon_sym_POUND_LBRACK] = ACTIONS(605), + [anon_sym_is] = ACTIONS(605), + [anon_sym_BANGis] = ACTIONS(605), + [anon_sym_in] = ACTIONS(605), + [anon_sym_BANGin] = ACTIONS(605), + [anon_sym_STAR_EQ] = ACTIONS(605), + [anon_sym_SLASH_EQ] = ACTIONS(605), + [anon_sym_PERCENT_EQ] = ACTIONS(605), + [anon_sym_LT_LT_EQ] = ACTIONS(605), + [anon_sym_GT_GT_EQ] = ACTIONS(605), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(605), + [anon_sym_AMP_EQ] = ACTIONS(605), + [anon_sym_AMP_CARET_EQ] = ACTIONS(605), + [anon_sym_PLUS_EQ] = ACTIONS(605), + [anon_sym_DASH_EQ] = ACTIONS(605), + [anon_sym_PIPE_EQ] = ACTIONS(605), + [anon_sym_CARET_EQ] = ACTIONS(605), + [anon_sym_COLON_EQ] = ACTIONS(605), + [anon_sym_shared] = ACTIONS(3754), + [anon_sym_map_LBRACK] = ACTIONS(3756), + [anon_sym_chan] = ACTIONS(3758), + [anon_sym_thread] = ACTIONS(3760), + [anon_sym_atomic] = ACTIONS(3762), }, [1127] = { [sym_line_comment] = STATE(1127), [sym_block_comment] = STATE(1127), - [sym_else_branch] = STATE(1183), + [sym_else_branch] = STATE(1144), [sym_identifier] = ACTIONS(1799), [anon_sym_LF] = ACTIONS(1799), [anon_sym_CR] = ACTIONS(1799), @@ -149966,7 +150308,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1799), [anon_sym_LPAREN] = ACTIONS(1799), [anon_sym_RPAREN] = ACTIONS(1799), - [anon_sym_PIPE] = ACTIONS(1799), [anon_sym_fn] = ACTIONS(1799), [anon_sym_PLUS] = ACTIONS(1799), [anon_sym_DASH] = ACTIONS(1799), @@ -149990,6 +150331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(1799), [anon_sym_spawn] = ACTIONS(1799), [anon_sym_json_DOTdecode] = ACTIONS(1799), + [anon_sym_PIPE] = ACTIONS(1799), [anon_sym_LBRACK2] = ACTIONS(1799), [anon_sym_TILDE] = ACTIONS(1799), [anon_sym_CARET] = ACTIONS(1799), @@ -150009,7 +150351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_DOT] = ACTIONS(1799), [anon_sym_POUND_LBRACK] = ACTIONS(1799), [anon_sym_if] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(3698), + [anon_sym_else] = ACTIONS(3764), [anon_sym_DOLLARif] = ACTIONS(1799), [anon_sym_is] = ACTIONS(1799), [anon_sym_BANGis] = ACTIONS(1799), @@ -150040,798 +150382,538 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1128] = { [sym_line_comment] = STATE(1128), [sym_block_comment] = STATE(1128), - [sym_type_parameters] = STATE(4009), - [sym_argument_list] = STATE(1153), - [sym_or_block] = STATE(1238), - [sym_identifier] = ACTIONS(3738), - [anon_sym_LF] = ACTIONS(3738), - [anon_sym_CR] = ACTIONS(3738), - [anon_sym_CR_LF] = ACTIONS(3738), + [sym_reference_expression] = STATE(4537), + [sym_type_reference_expression] = STATE(1800), + [sym_plain_type] = STATE(1887), + [sym__plain_type_without_special] = STATE(1920), + [sym_anon_struct_type] = STATE(1919), + [sym_multi_return_type] = STATE(1920), + [sym_result_type] = STATE(1920), + [sym_option_type] = STATE(1920), + [sym_qualified_type] = STATE(1800), + [sym_fixed_array_type] = STATE(1919), + [sym_array_type] = STATE(1919), + [sym_pointer_type] = STATE(1919), + [sym_wrong_pointer_type] = STATE(1919), + [sym_map_type] = STATE(1919), + [sym_channel_type] = STATE(1919), + [sym_shared_type] = STATE(1919), + [sym_thread_type] = STATE(1919), + [sym_atomic_type] = STATE(1919), + [sym_generic_type] = STATE(1919), + [sym_function_type] = STATE(1919), + [sym_identifier] = ACTIONS(3736), + [anon_sym_LF] = ACTIONS(601), + [anon_sym_CR] = ACTIONS(601), + [anon_sym_CR_LF] = ACTIONS(601), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3738), - [anon_sym_DOT] = ACTIONS(3664), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(3738), - [anon_sym_COMMA] = ACTIONS(3738), - [anon_sym_RBRACE] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(3666), - [anon_sym_PIPE] = ACTIONS(3668), - [anon_sym_fn] = ACTIONS(3738), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(3672), - [anon_sym_GT] = ACTIONS(3672), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_LBRACK] = ACTIONS(3674), - [anon_sym_struct] = ACTIONS(3738), - [anon_sym_mut] = ACTIONS(3738), - [anon_sym_PLUS_PLUS] = ACTIONS(3688), - [anon_sym_DASH_DASH] = ACTIONS(3690), - [anon_sym_QMARK] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3678), - [anon_sym_go] = ACTIONS(3738), - [anon_sym_spawn] = ACTIONS(3738), - [anon_sym_json_DOTdecode] = ACTIONS(3738), - [anon_sym_LBRACK2] = ACTIONS(3680), - [anon_sym_TILDE] = ACTIONS(3738), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_DASH] = ACTIONS(3738), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_AMP_CARET] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3692), - [anon_sym_or] = ACTIONS(3694), - [sym_none] = ACTIONS(3738), - [sym_true] = ACTIONS(3738), - [sym_false] = ACTIONS(3738), - [sym_nil] = ACTIONS(3738), - [anon_sym_QMARK_DOT] = ACTIONS(3664), - [anon_sym_POUND_LBRACK] = ACTIONS(3680), - [anon_sym_if] = ACTIONS(3738), - [anon_sym_DOLLARif] = ACTIONS(3738), - [anon_sym_is] = ACTIONS(3696), - [anon_sym_BANGis] = ACTIONS(3696), - [anon_sym_in] = ACTIONS(3684), - [anon_sym_BANGin] = ACTIONS(3684), - [anon_sym_match] = ACTIONS(3738), - [anon_sym_select] = ACTIONS(3738), - [anon_sym_lock] = ACTIONS(3738), - [anon_sym_rlock] = ACTIONS(3738), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_sql] = ACTIONS(3738), - [sym_int_literal] = ACTIONS(3738), - [sym_float_literal] = ACTIONS(3738), - [sym_rune_literal] = ACTIONS(3738), - [anon_sym_SQUOTE] = ACTIONS(3738), - [anon_sym_DQUOTE] = ACTIONS(3738), - [anon_sym_c_SQUOTE] = ACTIONS(3738), - [anon_sym_c_DQUOTE] = ACTIONS(3738), - [anon_sym_r_SQUOTE] = ACTIONS(3738), - [anon_sym_r_DQUOTE] = ACTIONS(3738), - [sym_pseudo_compile_time_identifier] = ACTIONS(3738), - [anon_sym_shared] = ACTIONS(3738), - [anon_sym_map_LBRACK] = ACTIONS(3738), - [anon_sym_chan] = ACTIONS(3738), - [anon_sym_thread] = ACTIONS(3738), - [anon_sym_atomic] = ACTIONS(3738), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_COMMA] = ACTIONS(601), + [anon_sym_RBRACE] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(3738), + [anon_sym_EQ] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(3740), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(3742), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ] = ACTIONS(601), + [anon_sym_LT_EQ] = ACTIONS(601), + [anon_sym_GT_EQ] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_LBRACK2] = ACTIONS(3750), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(3752), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(601), + [anon_sym_AMP_CARET] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(601), + [anon_sym_or] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(601), + [anon_sym_POUND_LBRACK] = ACTIONS(601), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(601), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(601), + [anon_sym_STAR_EQ] = ACTIONS(601), + [anon_sym_SLASH_EQ] = ACTIONS(601), + [anon_sym_PERCENT_EQ] = ACTIONS(601), + [anon_sym_LT_LT_EQ] = ACTIONS(601), + [anon_sym_GT_GT_EQ] = ACTIONS(601), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(601), + [anon_sym_AMP_EQ] = ACTIONS(601), + [anon_sym_AMP_CARET_EQ] = ACTIONS(601), + [anon_sym_PLUS_EQ] = ACTIONS(601), + [anon_sym_DASH_EQ] = ACTIONS(601), + [anon_sym_PIPE_EQ] = ACTIONS(601), + [anon_sym_CARET_EQ] = ACTIONS(601), + [anon_sym_COLON_EQ] = ACTIONS(601), + [anon_sym_shared] = ACTIONS(3754), + [anon_sym_map_LBRACK] = ACTIONS(3756), + [anon_sym_chan] = ACTIONS(3758), + [anon_sym_thread] = ACTIONS(3760), + [anon_sym_atomic] = ACTIONS(3762), }, [1129] = { [sym_line_comment] = STATE(1129), [sym_block_comment] = STATE(1129), - [sym_identifier] = ACTIONS(1809), - [anon_sym_LF] = ACTIONS(1809), - [anon_sym_CR] = ACTIONS(1809), - [anon_sym_CR_LF] = ACTIONS(1809), + [sym_type_parameters] = STATE(4073), + [sym_argument_list] = STATE(1157), + [sym_or_block] = STATE(1167), + [sym_identifier] = ACTIONS(3766), + [anon_sym_LF] = ACTIONS(3766), + [anon_sym_CR] = ACTIONS(3766), + [anon_sym_CR_LF] = ACTIONS(3766), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1809), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_as] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1809), - [anon_sym_RBRACE] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_RPAREN] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_fn] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_PERCENT] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_EQ_EQ] = ACTIONS(1809), - [anon_sym_BANG_EQ] = ACTIONS(1809), - [anon_sym_LT_EQ] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(1809), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_mut] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1809), - [anon_sym_json_DOTdecode] = ACTIONS(1809), - [anon_sym_LBRACK2] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_LT_DASH] = ACTIONS(1809), - [anon_sym_LT_LT] = ACTIONS(1809), - [anon_sym_GT_GT] = ACTIONS(1809), - [anon_sym_GT_GT_GT] = ACTIONS(1809), - [anon_sym_AMP_CARET] = ACTIONS(1809), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [anon_sym_PIPE_PIPE] = ACTIONS(1809), - [anon_sym_or] = ACTIONS(1809), - [sym_none] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_nil] = ACTIONS(1809), - [anon_sym_QMARK_DOT] = ACTIONS(1809), - [anon_sym_POUND_LBRACK] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_else] = ACTIONS(1809), - [anon_sym_DOLLARif] = ACTIONS(1809), - [anon_sym_is] = ACTIONS(1809), - [anon_sym_BANGis] = ACTIONS(1809), - [anon_sym_in] = ACTIONS(1809), - [anon_sym_BANGin] = ACTIONS(1809), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_select] = ACTIONS(1809), - [anon_sym_lock] = ACTIONS(1809), - [anon_sym_rlock] = ACTIONS(1809), - [anon_sym_unsafe] = ACTIONS(1809), - [anon_sym_sql] = ACTIONS(1809), - [sym_int_literal] = ACTIONS(1809), - [sym_float_literal] = ACTIONS(1809), - [sym_rune_literal] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1809), - [anon_sym_c_SQUOTE] = ACTIONS(1809), - [anon_sym_c_DQUOTE] = ACTIONS(1809), - [anon_sym_r_SQUOTE] = ACTIONS(1809), - [anon_sym_r_DQUOTE] = ACTIONS(1809), - [sym_pseudo_compile_time_identifier] = ACTIONS(1809), - [anon_sym_shared] = ACTIONS(1809), - [anon_sym_map_LBRACK] = ACTIONS(1809), - [anon_sym_chan] = ACTIONS(1809), - [anon_sym_thread] = ACTIONS(1809), - [anon_sym_atomic] = ACTIONS(1809), + [anon_sym_SEMI] = ACTIONS(3766), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3766), + [anon_sym_COMMA] = ACTIONS(3766), + [anon_sym_LPAREN] = ACTIONS(3700), + [anon_sym_RPAREN] = ACTIONS(3766), + [anon_sym_fn] = ACTIONS(3766), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3706), + [anon_sym_BANG_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3706), + [anon_sym_GT_EQ] = ACTIONS(3706), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3766), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(3766), + [anon_sym_mut] = ACTIONS(3766), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_go] = ACTIONS(3766), + [anon_sym_spawn] = ACTIONS(3766), + [anon_sym_json_DOTdecode] = ACTIONS(3766), + [anon_sym_PIPE] = ACTIONS(3702), + [anon_sym_LBRACK2] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3766), + [anon_sym_CARET] = ACTIONS(3702), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_LT_DASH] = ACTIONS(3766), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_AMP_CARET] = ACTIONS(3704), + [anon_sym_AMP_AMP] = ACTIONS(3720), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_or] = ACTIONS(3724), + [sym_none] = ACTIONS(3766), + [sym_true] = ACTIONS(3766), + [sym_false] = ACTIONS(3766), + [sym_nil] = ACTIONS(3766), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(3766), + [anon_sym_DOLLARif] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(3726), + [anon_sym_BANGis] = ACTIONS(3726), + [anon_sym_in] = ACTIONS(3728), + [anon_sym_BANGin] = ACTIONS(3728), + [anon_sym_match] = ACTIONS(3766), + [anon_sym_select] = ACTIONS(3766), + [anon_sym_lock] = ACTIONS(3766), + [anon_sym_rlock] = ACTIONS(3766), + [anon_sym_unsafe] = ACTIONS(3766), + [anon_sym_sql] = ACTIONS(3766), + [sym_int_literal] = ACTIONS(3766), + [sym_float_literal] = ACTIONS(3766), + [sym_rune_literal] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_DQUOTE] = ACTIONS(3766), + [anon_sym_c_SQUOTE] = ACTIONS(3766), + [anon_sym_c_DQUOTE] = ACTIONS(3766), + [anon_sym_r_SQUOTE] = ACTIONS(3766), + [anon_sym_r_DQUOTE] = ACTIONS(3766), + [sym_pseudo_compile_time_identifier] = ACTIONS(3766), + [anon_sym_shared] = ACTIONS(3766), + [anon_sym_map_LBRACK] = ACTIONS(3766), + [anon_sym_chan] = ACTIONS(3766), + [anon_sym_thread] = ACTIONS(3766), + [anon_sym_atomic] = ACTIONS(3766), }, [1130] = { [sym_line_comment] = STATE(1130), [sym_block_comment] = STATE(1130), - [sym_identifier] = ACTIONS(2041), - [anon_sym_LF] = ACTIONS(2041), - [anon_sym_CR] = ACTIONS(2041), - [anon_sym_CR_LF] = ACTIONS(2041), + [sym_else_branch] = STATE(1149), + [sym_identifier] = ACTIONS(1805), + [anon_sym_LF] = ACTIONS(1805), + [anon_sym_CR] = ACTIONS(1805), + [anon_sym_CR_LF] = ACTIONS(1805), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2041), - [anon_sym_DOT] = ACTIONS(2041), - [anon_sym_as] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(2041), - [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_RPAREN] = ACTIONS(2041), - [anon_sym_PIPE] = ACTIONS(2041), - [anon_sym_fn] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2041), - [anon_sym_SLASH] = ACTIONS(2041), - [anon_sym_PERCENT] = ACTIONS(2041), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_GT] = ACTIONS(2041), - [anon_sym_EQ_EQ] = ACTIONS(2041), - [anon_sym_BANG_EQ] = ACTIONS(2041), - [anon_sym_LT_EQ] = ACTIONS(2041), - [anon_sym_GT_EQ] = ACTIONS(2041), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2041), - [anon_sym_LBRACK] = ACTIONS(2039), - [anon_sym_struct] = ACTIONS(2041), - [anon_sym_mut] = ACTIONS(2041), - [anon_sym_PLUS_PLUS] = ACTIONS(2041), - [anon_sym_DASH_DASH] = ACTIONS(2041), - [anon_sym_QMARK] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(2041), - [anon_sym_go] = ACTIONS(2041), - [anon_sym_spawn] = ACTIONS(2041), - [anon_sym_json_DOTdecode] = ACTIONS(2041), - [anon_sym_LBRACK2] = ACTIONS(2041), - [anon_sym_TILDE] = ACTIONS(2041), - [anon_sym_CARET] = ACTIONS(2041), - [anon_sym_AMP] = ACTIONS(2041), - [anon_sym_LT_DASH] = ACTIONS(2041), - [anon_sym_LT_LT] = ACTIONS(2041), - [anon_sym_GT_GT] = ACTIONS(2041), - [anon_sym_GT_GT_GT] = ACTIONS(2041), - [anon_sym_AMP_CARET] = ACTIONS(2041), - [anon_sym_AMP_AMP] = ACTIONS(2041), - [anon_sym_PIPE_PIPE] = ACTIONS(2041), - [anon_sym_or] = ACTIONS(2041), - [sym_none] = ACTIONS(2041), - [sym_true] = ACTIONS(2041), - [sym_false] = ACTIONS(2041), - [sym_nil] = ACTIONS(2041), - [anon_sym_QMARK_DOT] = ACTIONS(2041), - [anon_sym_POUND_LBRACK] = ACTIONS(2041), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_DOLLARif] = ACTIONS(2041), - [anon_sym_DOLLARelse] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(2041), - [anon_sym_BANGis] = ACTIONS(2041), - [anon_sym_in] = ACTIONS(2041), - [anon_sym_BANGin] = ACTIONS(2041), - [anon_sym_match] = ACTIONS(2041), - [anon_sym_select] = ACTIONS(2041), - [anon_sym_lock] = ACTIONS(2041), - [anon_sym_rlock] = ACTIONS(2041), - [anon_sym_unsafe] = ACTIONS(2041), - [anon_sym_sql] = ACTIONS(2041), - [sym_int_literal] = ACTIONS(2041), - [sym_float_literal] = ACTIONS(2041), - [sym_rune_literal] = ACTIONS(2041), - [anon_sym_SQUOTE] = ACTIONS(2041), - [anon_sym_DQUOTE] = ACTIONS(2041), - [anon_sym_c_SQUOTE] = ACTIONS(2041), - [anon_sym_c_DQUOTE] = ACTIONS(2041), - [anon_sym_r_SQUOTE] = ACTIONS(2041), - [anon_sym_r_DQUOTE] = ACTIONS(2041), - [sym_pseudo_compile_time_identifier] = ACTIONS(2041), - [anon_sym_shared] = ACTIONS(2041), - [anon_sym_map_LBRACK] = ACTIONS(2041), - [anon_sym_chan] = ACTIONS(2041), - [anon_sym_thread] = ACTIONS(2041), - [anon_sym_atomic] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(1805), + [anon_sym_DOT] = ACTIONS(1805), + [anon_sym_as] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1805), + [anon_sym_COMMA] = ACTIONS(1805), + [anon_sym_RBRACE] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_RPAREN] = ACTIONS(1805), + [anon_sym_fn] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_SLASH] = ACTIONS(1805), + [anon_sym_PERCENT] = ACTIONS(1805), + [anon_sym_LT] = ACTIONS(1805), + [anon_sym_GT] = ACTIONS(1805), + [anon_sym_EQ_EQ] = ACTIONS(1805), + [anon_sym_BANG_EQ] = ACTIONS(1805), + [anon_sym_LT_EQ] = ACTIONS(1805), + [anon_sym_GT_EQ] = ACTIONS(1805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1805), + [anon_sym_LBRACK] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1805), + [anon_sym_mut] = ACTIONS(1805), + [anon_sym_PLUS_PLUS] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1805), + [anon_sym_QMARK] = ACTIONS(1805), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1805), + [anon_sym_spawn] = ACTIONS(1805), + [anon_sym_json_DOTdecode] = ACTIONS(1805), + [anon_sym_PIPE] = ACTIONS(1805), + [anon_sym_LBRACK2] = ACTIONS(1805), + [anon_sym_TILDE] = ACTIONS(1805), + [anon_sym_CARET] = ACTIONS(1805), + [anon_sym_AMP] = ACTIONS(1805), + [anon_sym_LT_DASH] = ACTIONS(1805), + [anon_sym_LT_LT] = ACTIONS(1805), + [anon_sym_GT_GT] = ACTIONS(1805), + [anon_sym_GT_GT_GT] = ACTIONS(1805), + [anon_sym_AMP_CARET] = ACTIONS(1805), + [anon_sym_AMP_AMP] = ACTIONS(1805), + [anon_sym_PIPE_PIPE] = ACTIONS(1805), + [anon_sym_or] = ACTIONS(1805), + [sym_none] = ACTIONS(1805), + [sym_true] = ACTIONS(1805), + [sym_false] = ACTIONS(1805), + [sym_nil] = ACTIONS(1805), + [anon_sym_QMARK_DOT] = ACTIONS(1805), + [anon_sym_POUND_LBRACK] = ACTIONS(1805), + [anon_sym_if] = ACTIONS(1805), + [anon_sym_else] = ACTIONS(3764), + [anon_sym_DOLLARif] = ACTIONS(1805), + [anon_sym_is] = ACTIONS(1805), + [anon_sym_BANGis] = ACTIONS(1805), + [anon_sym_in] = ACTIONS(1805), + [anon_sym_BANGin] = ACTIONS(1805), + [anon_sym_match] = ACTIONS(1805), + [anon_sym_select] = ACTIONS(1805), + [anon_sym_lock] = ACTIONS(1805), + [anon_sym_rlock] = ACTIONS(1805), + [anon_sym_unsafe] = ACTIONS(1805), + [anon_sym_sql] = ACTIONS(1805), + [sym_int_literal] = ACTIONS(1805), + [sym_float_literal] = ACTIONS(1805), + [sym_rune_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1805), + [anon_sym_c_SQUOTE] = ACTIONS(1805), + [anon_sym_c_DQUOTE] = ACTIONS(1805), + [anon_sym_r_SQUOTE] = ACTIONS(1805), + [anon_sym_r_DQUOTE] = ACTIONS(1805), + [sym_pseudo_compile_time_identifier] = ACTIONS(1805), + [anon_sym_shared] = ACTIONS(1805), + [anon_sym_map_LBRACK] = ACTIONS(1805), + [anon_sym_chan] = ACTIONS(1805), + [anon_sym_thread] = ACTIONS(1805), + [anon_sym_atomic] = ACTIONS(1805), }, [1131] = { [sym_line_comment] = STATE(1131), [sym_block_comment] = STATE(1131), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2421), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(611), + [anon_sym_CR] = ACTIONS(611), + [anon_sym_CR_LF] = ACTIONS(611), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_RPAREN] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_COLON] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_QMARK] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_LBRACK2] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_AMP_CARET] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(2055), - [anon_sym_POUND_LBRACK] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_as] = ACTIONS(611), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_RBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_EQ] = ACTIONS(611), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(611), + [anon_sym_BANG_EQ] = ACTIONS(611), + [anon_sym_LT_EQ] = ACTIONS(611), + [anon_sym_GT_EQ] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3768), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(611), + [anon_sym_AMP_CARET] = ACTIONS(611), + [anon_sym_AMP_AMP] = ACTIONS(611), + [anon_sym_PIPE_PIPE] = ACTIONS(611), + [anon_sym_or] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(611), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(611), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(611), + [anon_sym_STAR_EQ] = ACTIONS(611), + [anon_sym_SLASH_EQ] = ACTIONS(611), + [anon_sym_PERCENT_EQ] = ACTIONS(611), + [anon_sym_LT_LT_EQ] = ACTIONS(611), + [anon_sym_GT_GT_EQ] = ACTIONS(611), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(611), + [anon_sym_AMP_EQ] = ACTIONS(611), + [anon_sym_AMP_CARET_EQ] = ACTIONS(611), + [anon_sym_PLUS_EQ] = ACTIONS(611), + [anon_sym_DASH_EQ] = ACTIONS(611), + [anon_sym_PIPE_EQ] = ACTIONS(611), + [anon_sym_CARET_EQ] = ACTIONS(611), + [anon_sym_COLON_EQ] = ACTIONS(611), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(561), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [1132] = { [sym_line_comment] = STATE(1132), [sym_block_comment] = STATE(1132), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), + [sym_identifier] = ACTIONS(1837), + [anon_sym_LF] = ACTIONS(1837), + [anon_sym_CR] = ACTIONS(1837), + [anon_sym_CR_LF] = ACTIONS(1837), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_DOT] = ACTIONS(1889), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_RPAREN] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_PERCENT] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), - [anon_sym_LBRACK2] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(1889), - [anon_sym_GT_GT] = ACTIONS(1889), - [anon_sym_GT_GT_GT] = ACTIONS(1889), - [anon_sym_AMP_CARET] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(1889), - [anon_sym_POUND_LBRACK] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_else] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [anon_sym_SQUOTE] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1889), - [anon_sym_c_SQUOTE] = ACTIONS(1889), - [anon_sym_c_DQUOTE] = ACTIONS(1889), - [anon_sym_r_SQUOTE] = ACTIONS(1889), - [anon_sym_r_DQUOTE] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_as] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_struct] = ACTIONS(1837), + [anon_sym_mut] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_QMARK] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_go] = ACTIONS(1837), + [anon_sym_spawn] = ACTIONS(1837), + [anon_sym_json_DOTdecode] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_LBRACK2] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_AMP_CARET] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [sym_none] = ACTIONS(1837), + [sym_true] = ACTIONS(1837), + [sym_false] = ACTIONS(1837), + [sym_nil] = ACTIONS(1837), + [anon_sym_QMARK_DOT] = ACTIONS(1837), + [anon_sym_POUND_LBRACK] = ACTIONS(1837), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_DOLLARif] = ACTIONS(1837), + [anon_sym_DOLLARelse] = ACTIONS(1837), + [anon_sym_is] = ACTIONS(1837), + [anon_sym_BANGis] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_BANGin] = ACTIONS(1837), + [anon_sym_match] = ACTIONS(1837), + [anon_sym_select] = ACTIONS(1837), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1837), + [anon_sym_sql] = ACTIONS(1837), + [sym_int_literal] = ACTIONS(1837), + [sym_float_literal] = ACTIONS(1837), + [sym_rune_literal] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_c_SQUOTE] = ACTIONS(1837), + [anon_sym_c_DQUOTE] = ACTIONS(1837), + [anon_sym_r_SQUOTE] = ACTIONS(1837), + [anon_sym_r_DQUOTE] = ACTIONS(1837), + [sym_pseudo_compile_time_identifier] = ACTIONS(1837), + [anon_sym_shared] = ACTIONS(1837), + [anon_sym_map_LBRACK] = ACTIONS(1837), + [anon_sym_chan] = ACTIONS(1837), + [anon_sym_thread] = ACTIONS(1837), + [anon_sym_atomic] = ACTIONS(1837), }, [1133] = { [sym_line_comment] = STATE(1133), [sym_block_comment] = STATE(1133), - [sym_identifier] = ACTIONS(1809), - [anon_sym_LF] = ACTIONS(1809), - [anon_sym_CR] = ACTIONS(1809), - [anon_sym_CR_LF] = ACTIONS(1809), + [sym_type_parameters] = STATE(4073), + [sym_argument_list] = STATE(1157), + [sym_or_block] = STATE(1167), + [sym_identifier] = ACTIONS(3770), + [anon_sym_LF] = ACTIONS(3772), + [anon_sym_CR] = ACTIONS(3772), + [anon_sym_CR_LF] = ACTIONS(3772), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1809), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_as] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1809), - [anon_sym_RBRACE] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_RPAREN] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_fn] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_PERCENT] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_EQ_EQ] = ACTIONS(1809), - [anon_sym_BANG_EQ] = ACTIONS(1809), - [anon_sym_LT_EQ] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(1809), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_mut] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1809), - [anon_sym_json_DOTdecode] = ACTIONS(1809), - [anon_sym_LBRACK2] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_LT_DASH] = ACTIONS(1809), - [anon_sym_LT_LT] = ACTIONS(1809), - [anon_sym_GT_GT] = ACTIONS(1809), - [anon_sym_GT_GT_GT] = ACTIONS(1809), - [anon_sym_AMP_CARET] = ACTIONS(1809), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [anon_sym_PIPE_PIPE] = ACTIONS(1809), - [anon_sym_or] = ACTIONS(1809), - [sym_none] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_nil] = ACTIONS(1809), - [anon_sym_QMARK_DOT] = ACTIONS(1809), - [anon_sym_POUND_LBRACK] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_DOLLARif] = ACTIONS(1809), - [anon_sym_DOLLARelse] = ACTIONS(1809), - [anon_sym_is] = ACTIONS(1809), - [anon_sym_BANGis] = ACTIONS(1809), - [anon_sym_in] = ACTIONS(1809), - [anon_sym_BANGin] = ACTIONS(1809), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_select] = ACTIONS(1809), - [anon_sym_lock] = ACTIONS(1809), - [anon_sym_rlock] = ACTIONS(1809), - [anon_sym_unsafe] = ACTIONS(1809), - [anon_sym_sql] = ACTIONS(1809), - [sym_int_literal] = ACTIONS(1809), - [sym_float_literal] = ACTIONS(1809), - [sym_rune_literal] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1809), - [anon_sym_c_SQUOTE] = ACTIONS(1809), - [anon_sym_c_DQUOTE] = ACTIONS(1809), - [anon_sym_r_SQUOTE] = ACTIONS(1809), - [anon_sym_r_DQUOTE] = ACTIONS(1809), - [sym_pseudo_compile_time_identifier] = ACTIONS(1809), - [anon_sym_shared] = ACTIONS(1809), - [anon_sym_map_LBRACK] = ACTIONS(1809), - [anon_sym_chan] = ACTIONS(1809), - [anon_sym_thread] = ACTIONS(1809), - [anon_sym_atomic] = ACTIONS(1809), + [anon_sym_SEMI] = ACTIONS(3772), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3770), + [anon_sym_COMMA] = ACTIONS(3772), + [anon_sym_RBRACE] = ACTIONS(3770), + [anon_sym_LPAREN] = ACTIONS(3700), + [anon_sym_fn] = ACTIONS(3770), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3706), + [anon_sym_BANG_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3706), + [anon_sym_GT_EQ] = ACTIONS(3706), + [anon_sym_LBRACK] = ACTIONS(3708), + [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(3714), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_go] = ACTIONS(3770), + [anon_sym_spawn] = ACTIONS(3770), + [anon_sym_json_DOTdecode] = ACTIONS(3770), + [anon_sym_PIPE] = ACTIONS(3702), + [anon_sym_LBRACK2] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3770), + [anon_sym_CARET] = ACTIONS(3702), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_LT_DASH] = ACTIONS(3770), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_AMP_CARET] = ACTIONS(3704), + [anon_sym_AMP_AMP] = ACTIONS(3720), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_or] = ACTIONS(3724), + [sym_none] = ACTIONS(3770), + [sym_true] = ACTIONS(3770), + [sym_false] = ACTIONS(3770), + [sym_nil] = ACTIONS(3770), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(3770), + [anon_sym_DOLLARif] = ACTIONS(3770), + [anon_sym_is] = ACTIONS(3726), + [anon_sym_BANGis] = ACTIONS(3726), + [anon_sym_in] = ACTIONS(3728), + [anon_sym_BANGin] = ACTIONS(3728), + [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), + [anon_sym_SQUOTE] = ACTIONS(3770), + [anon_sym_DQUOTE] = ACTIONS(3770), + [anon_sym_c_SQUOTE] = ACTIONS(3770), + [anon_sym_c_DQUOTE] = ACTIONS(3770), + [anon_sym_r_SQUOTE] = ACTIONS(3770), + [anon_sym_r_DQUOTE] = 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), }, [1134] = { [sym_line_comment] = STATE(1134), [sym_block_comment] = STATE(1134), - [sym_type_parameters] = STATE(4009), - [sym_argument_list] = STATE(1153), - [sym_or_block] = STATE(1238), - [sym_identifier] = ACTIONS(3742), - [anon_sym_LF] = ACTIONS(3744), - [anon_sym_CR] = ACTIONS(3744), - [anon_sym_CR_LF] = ACTIONS(3744), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3744), - [anon_sym_DOT] = ACTIONS(3664), - [anon_sym_as] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(3742), - [anon_sym_COMMA] = ACTIONS(3744), - [anon_sym_RBRACE] = ACTIONS(3742), - [anon_sym_LPAREN] = ACTIONS(3666), - [anon_sym_PIPE] = ACTIONS(3668), - [anon_sym_fn] = ACTIONS(3742), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(3672), - [anon_sym_GT] = ACTIONS(3672), - [anon_sym_EQ_EQ] = ACTIONS(3672), - [anon_sym_BANG_EQ] = ACTIONS(3672), - [anon_sym_LT_EQ] = ACTIONS(3672), - [anon_sym_GT_EQ] = ACTIONS(3672), - [anon_sym_LBRACK] = ACTIONS(3674), - [anon_sym_struct] = ACTIONS(3742), - [anon_sym_mut] = ACTIONS(3742), - [anon_sym_PLUS_PLUS] = ACTIONS(3688), - [anon_sym_DASH_DASH] = ACTIONS(3690), - [anon_sym_QMARK] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3678), - [anon_sym_go] = ACTIONS(3742), - [anon_sym_spawn] = ACTIONS(3742), - [anon_sym_json_DOTdecode] = ACTIONS(3742), - [anon_sym_LBRACK2] = ACTIONS(3680), - [anon_sym_TILDE] = ACTIONS(3742), - [anon_sym_CARET] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_DASH] = ACTIONS(3742), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_AMP_CARET] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_PIPE_PIPE] = ACTIONS(3692), - [anon_sym_or] = ACTIONS(3694), - [sym_none] = ACTIONS(3742), - [sym_true] = ACTIONS(3742), - [sym_false] = ACTIONS(3742), - [sym_nil] = ACTIONS(3742), - [anon_sym_QMARK_DOT] = ACTIONS(3664), - [anon_sym_POUND_LBRACK] = ACTIONS(3680), - [anon_sym_if] = ACTIONS(3742), - [anon_sym_DOLLARif] = ACTIONS(3742), - [anon_sym_is] = ACTIONS(3696), - [anon_sym_BANGis] = ACTIONS(3696), - [anon_sym_in] = ACTIONS(3684), - [anon_sym_BANGin] = ACTIONS(3684), - [anon_sym_match] = ACTIONS(3742), - [anon_sym_select] = ACTIONS(3742), - [anon_sym_lock] = ACTIONS(3742), - [anon_sym_rlock] = ACTIONS(3742), - [anon_sym_unsafe] = ACTIONS(3742), - [anon_sym_sql] = ACTIONS(3742), - [sym_int_literal] = ACTIONS(3742), - [sym_float_literal] = ACTIONS(3742), - [sym_rune_literal] = ACTIONS(3742), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_DQUOTE] = ACTIONS(3742), - [anon_sym_c_SQUOTE] = ACTIONS(3742), - [anon_sym_c_DQUOTE] = ACTIONS(3742), - [anon_sym_r_SQUOTE] = ACTIONS(3742), - [anon_sym_r_DQUOTE] = ACTIONS(3742), - [sym_pseudo_compile_time_identifier] = ACTIONS(3742), - [anon_sym_shared] = ACTIONS(3742), - [anon_sym_map_LBRACK] = ACTIONS(3742), - [anon_sym_chan] = ACTIONS(3742), - [anon_sym_thread] = ACTIONS(3742), - [anon_sym_atomic] = ACTIONS(3742), - }, - [1135] = { - [sym_line_comment] = STATE(1135), - [sym_block_comment] = STATE(1135), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_DOT] = ACTIONS(1889), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_RPAREN] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_PERCENT] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), - [anon_sym_LBRACK2] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(1889), - [anon_sym_GT_GT] = ACTIONS(1889), - [anon_sym_GT_GT_GT] = ACTIONS(1889), - [anon_sym_AMP_CARET] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(1889), - [anon_sym_POUND_LBRACK] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_DOLLARelse] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [anon_sym_SQUOTE] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1889), - [anon_sym_c_SQUOTE] = ACTIONS(1889), - [anon_sym_c_DQUOTE] = ACTIONS(1889), - [anon_sym_r_SQUOTE] = ACTIONS(1889), - [anon_sym_r_DQUOTE] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - }, - [1136] = { - [sym_line_comment] = STATE(1136), - [sym_block_comment] = STATE(1136), - [sym_type_parameters] = STATE(1236), - [sym_identifier] = ACTIONS(1899), - [anon_sym_LF] = ACTIONS(1899), - [anon_sym_CR] = ACTIONS(1899), - [anon_sym_CR_LF] = ACTIONS(1899), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(1899), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_fn] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_mut] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [anon_sym_QMARK] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_go] = ACTIONS(1899), - [anon_sym_spawn] = ACTIONS(1899), - [anon_sym_json_DOTdecode] = ACTIONS(1899), - [anon_sym_LBRACK2] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_LT_DASH] = ACTIONS(1899), - [anon_sym_LT_LT] = ACTIONS(1899), - [anon_sym_GT_GT] = ACTIONS(1899), - [anon_sym_GT_GT_GT] = ACTIONS(1899), - [anon_sym_AMP_CARET] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_or] = ACTIONS(1899), - [sym_none] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_nil] = ACTIONS(1899), - [anon_sym_QMARK_DOT] = ACTIONS(1899), - [anon_sym_POUND_LBRACK] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_DOLLARif] = ACTIONS(1899), - [anon_sym_is] = ACTIONS(1899), - [anon_sym_BANGis] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_BANGin] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_select] = ACTIONS(1899), - [anon_sym_lock] = ACTIONS(1899), - [anon_sym_rlock] = ACTIONS(1899), - [anon_sym_unsafe] = ACTIONS(1899), - [anon_sym_sql] = ACTIONS(1899), - [sym_int_literal] = ACTIONS(1899), - [sym_float_literal] = ACTIONS(1899), - [sym_rune_literal] = ACTIONS(1899), - [anon_sym_SQUOTE] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1899), - [anon_sym_c_SQUOTE] = ACTIONS(1899), - [anon_sym_c_DQUOTE] = ACTIONS(1899), - [anon_sym_r_SQUOTE] = ACTIONS(1899), - [anon_sym_r_DQUOTE] = ACTIONS(1899), - [sym_pseudo_compile_time_identifier] = ACTIONS(1899), - [anon_sym_shared] = ACTIONS(1899), - [anon_sym_map_LBRACK] = ACTIONS(1899), - [anon_sym_chan] = ACTIONS(1899), - [anon_sym_thread] = ACTIONS(1899), - [anon_sym_atomic] = ACTIONS(1899), - }, - [1137] = { - [sym_line_comment] = STATE(1137), - [sym_block_comment] = STATE(1137), [sym_identifier] = ACTIONS(2079), [anon_sym_LF] = ACTIONS(2079), [anon_sym_CR] = ACTIONS(2079), @@ -150846,7 +150928,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(2079), [anon_sym_LPAREN] = ACTIONS(2079), [anon_sym_RPAREN] = ACTIONS(2079), - [anon_sym_PIPE] = ACTIONS(2079), [anon_sym_fn] = ACTIONS(2079), [anon_sym_PLUS] = ACTIONS(2079), [anon_sym_DASH] = ACTIONS(2079), @@ -150870,6 +150951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(2079), [anon_sym_spawn] = ACTIONS(2079), [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_PIPE] = ACTIONS(2079), [anon_sym_LBRACK2] = ACTIONS(2079), [anon_sym_TILDE] = ACTIONS(2079), [anon_sym_CARET] = ACTIONS(2079), @@ -150890,7 +150972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_LBRACK] = ACTIONS(2079), [anon_sym_if] = ACTIONS(2079), [anon_sym_DOLLARif] = ACTIONS(2079), - [anon_sym_DOLLARelse] = ACTIONS(3746), + [anon_sym_DOLLARelse] = ACTIONS(3774), [anon_sym_is] = ACTIONS(2079), [anon_sym_BANGis] = ACTIONS(2079), [anon_sym_in] = ACTIONS(2079), @@ -150917,2566 +150999,3008 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(2079), [anon_sym_atomic] = ACTIONS(2079), }, + [1135] = { + [sym_line_comment] = STATE(1135), + [sym_block_comment] = STATE(1135), + [sym_identifier] = ACTIONS(1877), + [anon_sym_LF] = ACTIONS(1877), + [anon_sym_CR] = ACTIONS(1877), + [anon_sym_CR_LF] = ACTIONS(1877), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym_DOT] = ACTIONS(1877), + [anon_sym_as] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_RPAREN] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1877), + [anon_sym_mut] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_QMARK] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_go] = ACTIONS(1877), + [anon_sym_spawn] = ACTIONS(1877), + [anon_sym_json_DOTdecode] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_LBRACK2] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT] = ACTIONS(1877), + [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(1877), + [sym_none] = ACTIONS(1877), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [sym_nil] = ACTIONS(1877), + [anon_sym_QMARK_DOT] = ACTIONS(1877), + [anon_sym_POUND_LBRACK] = ACTIONS(1877), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_DOLLARif] = ACTIONS(1877), + [anon_sym_DOLLARelse] = ACTIONS(1877), + [anon_sym_is] = ACTIONS(1877), + [anon_sym_BANGis] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_BANGin] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1877), + [anon_sym_select] = ACTIONS(1877), + [anon_sym_lock] = ACTIONS(1877), + [anon_sym_rlock] = ACTIONS(1877), + [anon_sym_unsafe] = ACTIONS(1877), + [anon_sym_sql] = ACTIONS(1877), + [sym_int_literal] = ACTIONS(1877), + [sym_float_literal] = ACTIONS(1877), + [sym_rune_literal] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_c_SQUOTE] = ACTIONS(1877), + [anon_sym_c_DQUOTE] = ACTIONS(1877), + [anon_sym_r_SQUOTE] = ACTIONS(1877), + [anon_sym_r_DQUOTE] = ACTIONS(1877), + [sym_pseudo_compile_time_identifier] = ACTIONS(1877), + [anon_sym_shared] = ACTIONS(1877), + [anon_sym_map_LBRACK] = ACTIONS(1877), + [anon_sym_chan] = ACTIONS(1877), + [anon_sym_thread] = ACTIONS(1877), + [anon_sym_atomic] = ACTIONS(1877), + }, + [1136] = { + [sym_line_comment] = STATE(1136), + [sym_block_comment] = STATE(1136), + [sym_type_parameters] = STATE(1175), + [sym_identifier] = ACTIONS(1945), + [anon_sym_LF] = ACTIONS(1945), + [anon_sym_CR] = ACTIONS(1945), + [anon_sym_CR_LF] = ACTIONS(1945), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1945), + [anon_sym_DOT] = ACTIONS(1945), + [anon_sym_as] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1945), + [anon_sym_COMMA] = ACTIONS(1945), + [anon_sym_RBRACE] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_RPAREN] = ACTIONS(1945), + [anon_sym_fn] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1945), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_SLASH] = ACTIONS(1945), + [anon_sym_PERCENT] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1945), + [anon_sym_GT] = ACTIONS(1945), + [anon_sym_EQ_EQ] = ACTIONS(1945), + [anon_sym_BANG_EQ] = ACTIONS(1945), + [anon_sym_LT_EQ] = ACTIONS(1945), + [anon_sym_GT_EQ] = ACTIONS(1945), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1943), + [anon_sym_struct] = ACTIONS(1945), + [anon_sym_mut] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), + [anon_sym_QMARK] = ACTIONS(1945), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_go] = ACTIONS(1945), + [anon_sym_spawn] = ACTIONS(1945), + [anon_sym_json_DOTdecode] = ACTIONS(1945), + [anon_sym_PIPE] = ACTIONS(1945), + [anon_sym_LBRACK2] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), + [anon_sym_LT_DASH] = ACTIONS(1945), + [anon_sym_LT_LT] = ACTIONS(1945), + [anon_sym_GT_GT] = ACTIONS(1945), + [anon_sym_GT_GT_GT] = ACTIONS(1945), + [anon_sym_AMP_CARET] = ACTIONS(1945), + [anon_sym_AMP_AMP] = ACTIONS(1945), + [anon_sym_PIPE_PIPE] = ACTIONS(1945), + [anon_sym_or] = ACTIONS(1945), + [sym_none] = ACTIONS(1945), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_nil] = ACTIONS(1945), + [anon_sym_QMARK_DOT] = ACTIONS(1945), + [anon_sym_POUND_LBRACK] = ACTIONS(1945), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_DOLLARif] = ACTIONS(1945), + [anon_sym_is] = ACTIONS(1945), + [anon_sym_BANGis] = ACTIONS(1945), + [anon_sym_in] = ACTIONS(1945), + [anon_sym_BANGin] = ACTIONS(1945), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_select] = ACTIONS(1945), + [anon_sym_lock] = ACTIONS(1945), + [anon_sym_rlock] = ACTIONS(1945), + [anon_sym_unsafe] = ACTIONS(1945), + [anon_sym_sql] = ACTIONS(1945), + [sym_int_literal] = ACTIONS(1945), + [sym_float_literal] = ACTIONS(1945), + [sym_rune_literal] = ACTIONS(1945), + [anon_sym_SQUOTE] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(1945), + [anon_sym_c_SQUOTE] = ACTIONS(1945), + [anon_sym_c_DQUOTE] = ACTIONS(1945), + [anon_sym_r_SQUOTE] = ACTIONS(1945), + [anon_sym_r_DQUOTE] = ACTIONS(1945), + [sym_pseudo_compile_time_identifier] = ACTIONS(1945), + [anon_sym_shared] = ACTIONS(1945), + [anon_sym_map_LBRACK] = ACTIONS(1945), + [anon_sym_chan] = ACTIONS(1945), + [anon_sym_thread] = ACTIONS(1945), + [anon_sym_atomic] = ACTIONS(1945), + }, + [1137] = { + [sym_line_comment] = STATE(1137), + [sym_block_comment] = STATE(1137), + [sym_identifier] = ACTIONS(1887), + [anon_sym_LF] = ACTIONS(1887), + [anon_sym_CR] = ACTIONS(1887), + [anon_sym_CR_LF] = ACTIONS(1887), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1887), + [anon_sym_DOT] = ACTIONS(1887), + [anon_sym_as] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_COMMA] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_RPAREN] = ACTIONS(1887), + [anon_sym_fn] = ACTIONS(1887), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1887), + [anon_sym_SLASH] = ACTIONS(1887), + [anon_sym_PERCENT] = ACTIONS(1887), + [anon_sym_LT] = ACTIONS(1887), + [anon_sym_GT] = ACTIONS(1887), + [anon_sym_EQ_EQ] = ACTIONS(1887), + [anon_sym_BANG_EQ] = ACTIONS(1887), + [anon_sym_LT_EQ] = ACTIONS(1887), + [anon_sym_GT_EQ] = ACTIONS(1887), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_struct] = ACTIONS(1887), + [anon_sym_mut] = ACTIONS(1887), + [anon_sym_COLON] = ACTIONS(1887), + [anon_sym_PLUS_PLUS] = ACTIONS(1887), + [anon_sym_DASH_DASH] = ACTIONS(1887), + [anon_sym_QMARK] = ACTIONS(1887), + [anon_sym_BANG] = ACTIONS(1887), + [anon_sym_go] = ACTIONS(1887), + [anon_sym_spawn] = ACTIONS(1887), + [anon_sym_json_DOTdecode] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1887), + [anon_sym_LBRACK2] = ACTIONS(1887), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_CARET] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(1887), + [anon_sym_LT_DASH] = ACTIONS(1887), + [anon_sym_LT_LT] = ACTIONS(1887), + [anon_sym_GT_GT] = ACTIONS(1887), + [anon_sym_GT_GT_GT] = ACTIONS(1887), + [anon_sym_AMP_CARET] = ACTIONS(1887), + [anon_sym_AMP_AMP] = ACTIONS(1887), + [anon_sym_PIPE_PIPE] = ACTIONS(1887), + [anon_sym_or] = ACTIONS(1887), + [sym_none] = ACTIONS(1887), + [sym_true] = ACTIONS(1887), + [sym_false] = ACTIONS(1887), + [sym_nil] = ACTIONS(1887), + [anon_sym_QMARK_DOT] = ACTIONS(1887), + [anon_sym_POUND_LBRACK] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_DOLLARif] = ACTIONS(1887), + [anon_sym_is] = ACTIONS(1887), + [anon_sym_BANGis] = ACTIONS(1887), + [anon_sym_in] = ACTIONS(1887), + [anon_sym_BANGin] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_select] = ACTIONS(1887), + [anon_sym_lock] = ACTIONS(1887), + [anon_sym_rlock] = ACTIONS(1887), + [anon_sym_unsafe] = ACTIONS(1887), + [anon_sym_sql] = ACTIONS(1887), + [sym_int_literal] = ACTIONS(1887), + [sym_float_literal] = ACTIONS(1887), + [sym_rune_literal] = ACTIONS(1887), + [anon_sym_SQUOTE] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(1887), + [anon_sym_c_SQUOTE] = ACTIONS(1887), + [anon_sym_c_DQUOTE] = ACTIONS(1887), + [anon_sym_r_SQUOTE] = ACTIONS(1887), + [anon_sym_r_DQUOTE] = ACTIONS(1887), + [sym_pseudo_compile_time_identifier] = ACTIONS(1887), + [anon_sym_shared] = ACTIONS(1887), + [anon_sym_map_LBRACK] = ACTIONS(1887), + [anon_sym_chan] = ACTIONS(1887), + [anon_sym_thread] = ACTIONS(1887), + [anon_sym_atomic] = ACTIONS(1887), + }, [1138] = { [sym_line_comment] = STATE(1138), [sym_block_comment] = STATE(1138), - [sym_identifier] = ACTIONS(2225), - [anon_sym_LF] = ACTIONS(2225), - [anon_sym_CR] = ACTIONS(2225), - [anon_sym_CR_LF] = ACTIONS(2225), + [sym_identifier] = ACTIONS(1837), + [anon_sym_LF] = ACTIONS(1837), + [anon_sym_CR] = ACTIONS(1837), + [anon_sym_CR_LF] = ACTIONS(1837), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_DOT] = ACTIONS(2225), - [anon_sym_as] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_COMMA] = ACTIONS(2225), - [anon_sym_RBRACE] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_RPAREN] = ACTIONS(2225), - [anon_sym_PIPE] = ACTIONS(2225), - [anon_sym_fn] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_STAR] = ACTIONS(2225), - [anon_sym_SLASH] = ACTIONS(2225), - [anon_sym_PERCENT] = ACTIONS(2225), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_GT] = ACTIONS(2225), - [anon_sym_EQ_EQ] = ACTIONS(2225), - [anon_sym_BANG_EQ] = ACTIONS(2225), - [anon_sym_LT_EQ] = ACTIONS(2225), - [anon_sym_GT_EQ] = ACTIONS(2225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_struct] = ACTIONS(2225), - [anon_sym_mut] = ACTIONS(2225), - [anon_sym_PLUS_PLUS] = ACTIONS(2225), - [anon_sym_DASH_DASH] = ACTIONS(2225), - [anon_sym_QMARK] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_go] = ACTIONS(2225), - [anon_sym_spawn] = ACTIONS(2225), - [anon_sym_json_DOTdecode] = ACTIONS(2225), - [anon_sym_LBRACK2] = ACTIONS(2225), - [anon_sym_TILDE] = ACTIONS(2225), - [anon_sym_CARET] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2225), - [anon_sym_LT_DASH] = ACTIONS(2225), - [anon_sym_LT_LT] = ACTIONS(2225), - [anon_sym_GT_GT] = ACTIONS(2225), - [anon_sym_GT_GT_GT] = ACTIONS(2225), - [anon_sym_AMP_CARET] = ACTIONS(2225), - [anon_sym_AMP_AMP] = ACTIONS(2225), - [anon_sym_PIPE_PIPE] = ACTIONS(2225), - [anon_sym_or] = ACTIONS(2225), - [sym_none] = ACTIONS(2225), - [sym_true] = ACTIONS(2225), - [sym_false] = ACTIONS(2225), - [sym_nil] = ACTIONS(2225), - [anon_sym_QMARK_DOT] = ACTIONS(2225), - [anon_sym_POUND_LBRACK] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_DOLLARif] = ACTIONS(2225), - [anon_sym_is] = ACTIONS(2225), - [anon_sym_BANGis] = ACTIONS(2225), - [anon_sym_in] = ACTIONS(2225), - [anon_sym_BANGin] = ACTIONS(2225), - [anon_sym_match] = ACTIONS(2225), - [anon_sym_select] = ACTIONS(2225), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(2225), - [anon_sym_sql] = ACTIONS(2225), - [sym_int_literal] = ACTIONS(2225), - [sym_float_literal] = ACTIONS(2225), - [sym_rune_literal] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE] = ACTIONS(2225), - [anon_sym_c_SQUOTE] = ACTIONS(2225), - [anon_sym_c_DQUOTE] = ACTIONS(2225), - [anon_sym_r_SQUOTE] = ACTIONS(2225), - [anon_sym_r_DQUOTE] = ACTIONS(2225), - [sym_pseudo_compile_time_identifier] = ACTIONS(2225), - [anon_sym_shared] = ACTIONS(2225), - [anon_sym_map_LBRACK] = ACTIONS(2225), - [anon_sym_chan] = ACTIONS(2225), - [anon_sym_thread] = ACTIONS(2225), - [anon_sym_atomic] = ACTIONS(2225), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_as] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_struct] = ACTIONS(1837), + [anon_sym_mut] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_QMARK] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_go] = ACTIONS(1837), + [anon_sym_spawn] = ACTIONS(1837), + [anon_sym_json_DOTdecode] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_LBRACK2] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_AMP_CARET] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [sym_none] = ACTIONS(1837), + [sym_true] = ACTIONS(1837), + [sym_false] = ACTIONS(1837), + [sym_nil] = ACTIONS(1837), + [anon_sym_QMARK_DOT] = ACTIONS(1837), + [anon_sym_POUND_LBRACK] = ACTIONS(1837), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_else] = ACTIONS(1837), + [anon_sym_DOLLARif] = ACTIONS(1837), + [anon_sym_is] = ACTIONS(1837), + [anon_sym_BANGis] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_BANGin] = ACTIONS(1837), + [anon_sym_match] = ACTIONS(1837), + [anon_sym_select] = ACTIONS(1837), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1837), + [anon_sym_sql] = ACTIONS(1837), + [sym_int_literal] = ACTIONS(1837), + [sym_float_literal] = ACTIONS(1837), + [sym_rune_literal] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_c_SQUOTE] = ACTIONS(1837), + [anon_sym_c_DQUOTE] = ACTIONS(1837), + [anon_sym_r_SQUOTE] = ACTIONS(1837), + [anon_sym_r_DQUOTE] = ACTIONS(1837), + [sym_pseudo_compile_time_identifier] = ACTIONS(1837), + [anon_sym_shared] = ACTIONS(1837), + [anon_sym_map_LBRACK] = ACTIONS(1837), + [anon_sym_chan] = ACTIONS(1837), + [anon_sym_thread] = ACTIONS(1837), + [anon_sym_atomic] = ACTIONS(1837), }, [1139] = { [sym_line_comment] = STATE(1139), [sym_block_comment] = STATE(1139), - [sym_identifier] = ACTIONS(2205), - [anon_sym_LF] = ACTIONS(2205), - [anon_sym_CR] = ACTIONS(2205), - [anon_sym_CR_LF] = ACTIONS(2205), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LF] = ACTIONS(1853), + [anon_sym_CR] = ACTIONS(1853), + [anon_sym_CR_LF] = ACTIONS(1853), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2205), - [anon_sym_DOT] = ACTIONS(2205), - [anon_sym_as] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2205), - [anon_sym_COMMA] = ACTIONS(2205), - [anon_sym_RBRACE] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_RPAREN] = ACTIONS(2205), - [anon_sym_PIPE] = ACTIONS(2205), - [anon_sym_fn] = ACTIONS(2205), - [anon_sym_PLUS] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_STAR] = ACTIONS(2205), - [anon_sym_SLASH] = ACTIONS(2205), - [anon_sym_PERCENT] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_GT] = ACTIONS(2205), - [anon_sym_EQ_EQ] = ACTIONS(2205), - [anon_sym_BANG_EQ] = ACTIONS(2205), - [anon_sym_LT_EQ] = ACTIONS(2205), - [anon_sym_GT_EQ] = ACTIONS(2205), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_struct] = ACTIONS(2205), - [anon_sym_mut] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2205), - [anon_sym_DASH_DASH] = ACTIONS(2205), - [anon_sym_QMARK] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_go] = ACTIONS(2205), - [anon_sym_spawn] = ACTIONS(2205), - [anon_sym_json_DOTdecode] = ACTIONS(2205), - [anon_sym_LBRACK2] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), - [anon_sym_LT_DASH] = ACTIONS(2205), - [anon_sym_LT_LT] = ACTIONS(2205), - [anon_sym_GT_GT] = ACTIONS(2205), - [anon_sym_GT_GT_GT] = ACTIONS(2205), - [anon_sym_AMP_CARET] = ACTIONS(2205), - [anon_sym_AMP_AMP] = ACTIONS(2205), - [anon_sym_PIPE_PIPE] = ACTIONS(2205), - [anon_sym_or] = ACTIONS(2205), - [sym_none] = ACTIONS(2205), - [sym_true] = ACTIONS(2205), - [sym_false] = ACTIONS(2205), - [sym_nil] = ACTIONS(2205), - [anon_sym_QMARK_DOT] = ACTIONS(2205), - [anon_sym_POUND_LBRACK] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_DOLLARif] = ACTIONS(2205), - [anon_sym_is] = ACTIONS(2205), - [anon_sym_BANGis] = ACTIONS(2205), - [anon_sym_in] = ACTIONS(2205), - [anon_sym_BANGin] = ACTIONS(2205), - [anon_sym_match] = ACTIONS(2205), - [anon_sym_select] = ACTIONS(2205), - [anon_sym_lock] = ACTIONS(2205), - [anon_sym_rlock] = ACTIONS(2205), - [anon_sym_unsafe] = ACTIONS(2205), - [anon_sym_sql] = ACTIONS(2205), - [sym_int_literal] = ACTIONS(2205), - [sym_float_literal] = ACTIONS(2205), - [sym_rune_literal] = ACTIONS(2205), - [anon_sym_SQUOTE] = ACTIONS(2205), - [anon_sym_DQUOTE] = ACTIONS(2205), - [anon_sym_c_SQUOTE] = ACTIONS(2205), - [anon_sym_c_DQUOTE] = ACTIONS(2205), - [anon_sym_r_SQUOTE] = ACTIONS(2205), - [anon_sym_r_DQUOTE] = ACTIONS(2205), - [sym_pseudo_compile_time_identifier] = ACTIONS(2205), - [anon_sym_shared] = ACTIONS(2205), - [anon_sym_map_LBRACK] = ACTIONS(2205), - [anon_sym_chan] = ACTIONS(2205), - [anon_sym_thread] = ACTIONS(2205), - [anon_sym_atomic] = ACTIONS(2205), + [anon_sym_SEMI] = ACTIONS(1853), + [anon_sym_DOT] = ACTIONS(1853), + [anon_sym_as] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_COMMA] = ACTIONS(1853), + [anon_sym_RBRACE] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1853), + [anon_sym_RPAREN] = 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(1851), + [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(1853), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_go] = ACTIONS(1853), + [anon_sym_spawn] = ACTIONS(1853), + [anon_sym_json_DOTdecode] = ACTIONS(1853), + [anon_sym_PIPE] = ACTIONS(1853), + [anon_sym_LBRACK2] = ACTIONS(1853), + [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(1853), + [anon_sym_POUND_LBRACK] = ACTIONS(1853), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_DOLLARif] = ACTIONS(1853), + [anon_sym_DOLLARelse] = ACTIONS(3776), + [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), + [anon_sym_SQUOTE] = ACTIONS(1853), + [anon_sym_DQUOTE] = ACTIONS(1853), + [anon_sym_c_SQUOTE] = ACTIONS(1853), + [anon_sym_c_DQUOTE] = ACTIONS(1853), + [anon_sym_r_SQUOTE] = ACTIONS(1853), + [anon_sym_r_DQUOTE] = 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), }, [1140] = { [sym_line_comment] = STATE(1140), [sym_block_comment] = STATE(1140), - [sym_identifier] = ACTIONS(2273), - [anon_sym_LF] = ACTIONS(2273), - [anon_sym_CR] = ACTIONS(2273), - [anon_sym_CR_LF] = ACTIONS(2273), + [sym_type_parameters] = STATE(4073), + [sym_argument_list] = STATE(1157), + [sym_or_block] = STATE(1167), + [sym_identifier] = ACTIONS(3778), + [anon_sym_LF] = ACTIONS(3778), + [anon_sym_CR] = ACTIONS(3778), + [anon_sym_CR_LF] = ACTIONS(3778), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2273), - [anon_sym_DOT] = ACTIONS(2273), - [anon_sym_as] = ACTIONS(2273), - [anon_sym_LBRACE] = ACTIONS(2273), - [anon_sym_COMMA] = ACTIONS(2273), - [anon_sym_RBRACE] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2273), - [anon_sym_RPAREN] = ACTIONS(2273), - [anon_sym_PIPE] = ACTIONS(2273), - [anon_sym_fn] = ACTIONS(2273), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_SLASH] = ACTIONS(2273), - [anon_sym_PERCENT] = ACTIONS(2273), - [anon_sym_LT] = ACTIONS(2273), - [anon_sym_GT] = ACTIONS(2273), - [anon_sym_EQ_EQ] = ACTIONS(2273), - [anon_sym_BANG_EQ] = ACTIONS(2273), - [anon_sym_LT_EQ] = ACTIONS(2273), - [anon_sym_GT_EQ] = ACTIONS(2273), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2273), - [anon_sym_LBRACK] = ACTIONS(2271), - [anon_sym_struct] = ACTIONS(2273), - [anon_sym_mut] = ACTIONS(2273), - [anon_sym_PLUS_PLUS] = ACTIONS(2273), - [anon_sym_DASH_DASH] = ACTIONS(2273), - [anon_sym_QMARK] = ACTIONS(2273), - [anon_sym_BANG] = ACTIONS(2273), - [anon_sym_go] = ACTIONS(2273), - [anon_sym_spawn] = ACTIONS(2273), - [anon_sym_json_DOTdecode] = ACTIONS(2273), - [anon_sym_LBRACK2] = ACTIONS(2273), - [anon_sym_TILDE] = ACTIONS(2273), - [anon_sym_CARET] = ACTIONS(2273), - [anon_sym_AMP] = ACTIONS(2273), - [anon_sym_LT_DASH] = ACTIONS(2273), - [anon_sym_LT_LT] = ACTIONS(2273), - [anon_sym_GT_GT] = ACTIONS(2273), - [anon_sym_GT_GT_GT] = ACTIONS(2273), - [anon_sym_AMP_CARET] = ACTIONS(2273), - [anon_sym_AMP_AMP] = ACTIONS(2273), - [anon_sym_PIPE_PIPE] = ACTIONS(2273), - [anon_sym_or] = ACTIONS(2273), - [sym_none] = ACTIONS(2273), - [sym_true] = ACTIONS(2273), - [sym_false] = ACTIONS(2273), - [sym_nil] = ACTIONS(2273), - [anon_sym_QMARK_DOT] = ACTIONS(2273), - [anon_sym_POUND_LBRACK] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_DOLLARif] = ACTIONS(2273), - [anon_sym_is] = ACTIONS(2273), - [anon_sym_BANGis] = ACTIONS(2273), - [anon_sym_in] = ACTIONS(2273), - [anon_sym_BANGin] = ACTIONS(2273), - [anon_sym_match] = ACTIONS(2273), - [anon_sym_select] = ACTIONS(2273), - [anon_sym_lock] = ACTIONS(2273), - [anon_sym_rlock] = ACTIONS(2273), - [anon_sym_unsafe] = ACTIONS(2273), - [anon_sym_sql] = ACTIONS(2273), - [sym_int_literal] = ACTIONS(2273), - [sym_float_literal] = ACTIONS(2273), - [sym_rune_literal] = ACTIONS(2273), - [anon_sym_SQUOTE] = ACTIONS(2273), - [anon_sym_DQUOTE] = ACTIONS(2273), - [anon_sym_c_SQUOTE] = ACTIONS(2273), - [anon_sym_c_DQUOTE] = ACTIONS(2273), - [anon_sym_r_SQUOTE] = ACTIONS(2273), - [anon_sym_r_DQUOTE] = ACTIONS(2273), - [sym_pseudo_compile_time_identifier] = ACTIONS(2273), - [anon_sym_shared] = ACTIONS(2273), - [anon_sym_map_LBRACK] = ACTIONS(2273), - [anon_sym_chan] = ACTIONS(2273), - [anon_sym_thread] = ACTIONS(2273), - [anon_sym_atomic] = ACTIONS(2273), + [anon_sym_SEMI] = ACTIONS(3778), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3778), + [anon_sym_COMMA] = ACTIONS(3778), + [anon_sym_RBRACE] = ACTIONS(3778), + [anon_sym_LPAREN] = ACTIONS(3700), + [anon_sym_fn] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_SLASH] = ACTIONS(3704), + [anon_sym_PERCENT] = ACTIONS(3704), + [anon_sym_LT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3706), + [anon_sym_EQ_EQ] = ACTIONS(3706), + [anon_sym_BANG_EQ] = ACTIONS(3706), + [anon_sym_LT_EQ] = ACTIONS(3706), + [anon_sym_GT_EQ] = ACTIONS(3706), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(3778), + [anon_sym_mut] = ACTIONS(3778), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_go] = ACTIONS(3778), + [anon_sym_spawn] = ACTIONS(3778), + [anon_sym_json_DOTdecode] = ACTIONS(3778), + [anon_sym_PIPE] = ACTIONS(3702), + [anon_sym_LBRACK2] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3778), + [anon_sym_CARET] = ACTIONS(3702), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_LT_DASH] = ACTIONS(3778), + [anon_sym_LT_LT] = ACTIONS(3704), + [anon_sym_GT_GT] = ACTIONS(3704), + [anon_sym_GT_GT_GT] = ACTIONS(3704), + [anon_sym_AMP_CARET] = ACTIONS(3704), + [anon_sym_AMP_AMP] = ACTIONS(3720), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_or] = ACTIONS(3724), + [sym_none] = ACTIONS(3778), + [sym_true] = ACTIONS(3778), + [sym_false] = ACTIONS(3778), + [sym_nil] = ACTIONS(3778), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(3778), + [anon_sym_DOLLARif] = ACTIONS(3778), + [anon_sym_is] = ACTIONS(3726), + [anon_sym_BANGis] = ACTIONS(3726), + [anon_sym_in] = ACTIONS(3728), + [anon_sym_BANGin] = ACTIONS(3728), + [anon_sym_match] = ACTIONS(3778), + [anon_sym_select] = ACTIONS(3778), + [anon_sym_lock] = ACTIONS(3778), + [anon_sym_rlock] = ACTIONS(3778), + [anon_sym_unsafe] = ACTIONS(3778), + [anon_sym_sql] = ACTIONS(3778), + [sym_int_literal] = ACTIONS(3778), + [sym_float_literal] = ACTIONS(3778), + [sym_rune_literal] = ACTIONS(3778), + [anon_sym_SQUOTE] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(3778), + [anon_sym_c_SQUOTE] = ACTIONS(3778), + [anon_sym_c_DQUOTE] = ACTIONS(3778), + [anon_sym_r_SQUOTE] = ACTIONS(3778), + [anon_sym_r_DQUOTE] = ACTIONS(3778), + [sym_pseudo_compile_time_identifier] = ACTIONS(3778), + [anon_sym_shared] = ACTIONS(3778), + [anon_sym_map_LBRACK] = ACTIONS(3778), + [anon_sym_chan] = ACTIONS(3778), + [anon_sym_thread] = ACTIONS(3778), + [anon_sym_atomic] = ACTIONS(3778), }, [1141] = { [sym_line_comment] = STATE(1141), [sym_block_comment] = STATE(1141), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LF] = ACTIONS(3011), - [anon_sym_CR] = ACTIONS(3011), - [anon_sym_CR_LF] = ACTIONS(3011), + [sym_identifier] = ACTIONS(1877), + [anon_sym_LF] = ACTIONS(1877), + [anon_sym_CR] = ACTIONS(1877), + [anon_sym_CR_LF] = ACTIONS(1877), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3011), - [anon_sym_DOT] = ACTIONS(3011), - [anon_sym_as] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(3011), - [anon_sym_COMMA] = ACTIONS(3011), - [anon_sym_RBRACE] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3011), - [anon_sym_RPAREN] = ACTIONS(3011), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_fn] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3011), - [anon_sym_LT] = ACTIONS(3011), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_EQ] = ACTIONS(3011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3011), - [anon_sym_LBRACK] = ACTIONS(3009), - [anon_sym_struct] = ACTIONS(3011), - [anon_sym_mut] = ACTIONS(3011), - [anon_sym_PLUS_PLUS] = ACTIONS(3011), - [anon_sym_DASH_DASH] = ACTIONS(3011), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_go] = ACTIONS(3011), - [anon_sym_spawn] = ACTIONS(3011), - [anon_sym_json_DOTdecode] = ACTIONS(3011), - [anon_sym_LBRACK2] = ACTIONS(3011), - [anon_sym_TILDE] = ACTIONS(3011), - [anon_sym_CARET] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(3011), - [anon_sym_LT_DASH] = ACTIONS(3011), - [anon_sym_LT_LT] = ACTIONS(3011), - [anon_sym_GT_GT] = ACTIONS(3011), - [anon_sym_GT_GT_GT] = ACTIONS(3011), - [anon_sym_AMP_CARET] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3011), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_or] = ACTIONS(3011), - [sym_none] = ACTIONS(3011), - [sym_true] = ACTIONS(3011), - [sym_false] = ACTIONS(3011), - [sym_nil] = ACTIONS(3011), - [anon_sym_QMARK_DOT] = ACTIONS(3011), - [anon_sym_POUND_LBRACK] = ACTIONS(3011), - [anon_sym_if] = ACTIONS(3011), - [anon_sym_DOLLARif] = ACTIONS(3011), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3011), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_BANGin] = ACTIONS(3011), - [anon_sym_match] = ACTIONS(3011), - [anon_sym_select] = ACTIONS(3011), - [anon_sym_lock] = ACTIONS(3011), - [anon_sym_rlock] = ACTIONS(3011), - [anon_sym_unsafe] = ACTIONS(3011), - [anon_sym_sql] = ACTIONS(3011), - [sym_int_literal] = ACTIONS(3011), - [sym_float_literal] = ACTIONS(3011), - [sym_rune_literal] = ACTIONS(3011), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_DQUOTE] = ACTIONS(3011), - [anon_sym_c_SQUOTE] = ACTIONS(3011), - [anon_sym_c_DQUOTE] = ACTIONS(3011), - [anon_sym_r_SQUOTE] = ACTIONS(3011), - [anon_sym_r_DQUOTE] = 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_SEMI] = ACTIONS(1877), + [anon_sym_DOT] = ACTIONS(1877), + [anon_sym_as] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_RPAREN] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1877), + [anon_sym_mut] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_QMARK] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_go] = ACTIONS(1877), + [anon_sym_spawn] = ACTIONS(1877), + [anon_sym_json_DOTdecode] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_LBRACK2] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT] = ACTIONS(1877), + [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(1877), + [sym_none] = ACTIONS(1877), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [sym_nil] = ACTIONS(1877), + [anon_sym_QMARK_DOT] = ACTIONS(1877), + [anon_sym_POUND_LBRACK] = ACTIONS(1877), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_else] = ACTIONS(1877), + [anon_sym_DOLLARif] = ACTIONS(1877), + [anon_sym_is] = ACTIONS(1877), + [anon_sym_BANGis] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_BANGin] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1877), + [anon_sym_select] = ACTIONS(1877), + [anon_sym_lock] = ACTIONS(1877), + [anon_sym_rlock] = ACTIONS(1877), + [anon_sym_unsafe] = ACTIONS(1877), + [anon_sym_sql] = ACTIONS(1877), + [sym_int_literal] = ACTIONS(1877), + [sym_float_literal] = ACTIONS(1877), + [sym_rune_literal] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_c_SQUOTE] = ACTIONS(1877), + [anon_sym_c_DQUOTE] = ACTIONS(1877), + [anon_sym_r_SQUOTE] = ACTIONS(1877), + [anon_sym_r_DQUOTE] = ACTIONS(1877), + [sym_pseudo_compile_time_identifier] = ACTIONS(1877), + [anon_sym_shared] = ACTIONS(1877), + [anon_sym_map_LBRACK] = ACTIONS(1877), + [anon_sym_chan] = ACTIONS(1877), + [anon_sym_thread] = ACTIONS(1877), + [anon_sym_atomic] = ACTIONS(1877), }, [1142] = { [sym_line_comment] = STATE(1142), [sym_block_comment] = STATE(1142), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LF] = ACTIONS(3015), - [anon_sym_CR] = ACTIONS(3015), - [anon_sym_CR_LF] = ACTIONS(3015), + [sym_identifier] = ACTIONS(2337), + [anon_sym_LF] = ACTIONS(2337), + [anon_sym_CR] = ACTIONS(2337), + [anon_sym_CR_LF] = ACTIONS(2337), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3015), - [anon_sym_DOT] = ACTIONS(3015), - [anon_sym_as] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3015), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_RBRACE] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3015), - [anon_sym_RPAREN] = ACTIONS(3015), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_fn] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3015), - [anon_sym_DASH] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_SLASH] = ACTIONS(3015), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3015), - [anon_sym_EQ_EQ] = ACTIONS(3015), - [anon_sym_BANG_EQ] = ACTIONS(3015), - [anon_sym_LT_EQ] = ACTIONS(3015), - [anon_sym_GT_EQ] = ACTIONS(3015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3015), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_struct] = ACTIONS(3015), - [anon_sym_mut] = ACTIONS(3015), - [anon_sym_PLUS_PLUS] = ACTIONS(3015), - [anon_sym_DASH_DASH] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(3015), - [anon_sym_BANG] = ACTIONS(3015), - [anon_sym_go] = ACTIONS(3015), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3015), - [anon_sym_LBRACK2] = ACTIONS(3015), - [anon_sym_TILDE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3015), - [anon_sym_LT_DASH] = ACTIONS(3015), - [anon_sym_LT_LT] = ACTIONS(3015), - [anon_sym_GT_GT] = ACTIONS(3015), - [anon_sym_GT_GT_GT] = ACTIONS(3015), - [anon_sym_AMP_CARET] = ACTIONS(3015), - [anon_sym_AMP_AMP] = ACTIONS(3015), - [anon_sym_PIPE_PIPE] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3015), - [sym_none] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [sym_nil] = ACTIONS(3015), - [anon_sym_QMARK_DOT] = ACTIONS(3015), - [anon_sym_POUND_LBRACK] = ACTIONS(3015), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_DOLLARif] = ACTIONS(3015), - [anon_sym_is] = ACTIONS(3015), - [anon_sym_BANGis] = ACTIONS(3015), - [anon_sym_in] = ACTIONS(3015), - [anon_sym_BANGin] = ACTIONS(3015), - [anon_sym_match] = ACTIONS(3015), - [anon_sym_select] = ACTIONS(3015), - [anon_sym_lock] = ACTIONS(3015), - [anon_sym_rlock] = ACTIONS(3015), - [anon_sym_unsafe] = ACTIONS(3015), - [anon_sym_sql] = ACTIONS(3015), - [sym_int_literal] = ACTIONS(3015), - [sym_float_literal] = ACTIONS(3015), - [sym_rune_literal] = ACTIONS(3015), - [anon_sym_SQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE] = ACTIONS(3015), - [anon_sym_c_SQUOTE] = ACTIONS(3015), - [anon_sym_c_DQUOTE] = ACTIONS(3015), - [anon_sym_r_SQUOTE] = ACTIONS(3015), - [anon_sym_r_DQUOTE] = 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_SEMI] = ACTIONS(2337), + [anon_sym_DOT] = ACTIONS(2337), + [anon_sym_as] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_COMMA] = ACTIONS(2337), + [anon_sym_RBRACE] = ACTIONS(2337), + [anon_sym_LPAREN] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_fn] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(2337), + [anon_sym_SLASH] = ACTIONS(2337), + [anon_sym_PERCENT] = ACTIONS(2337), + [anon_sym_LT] = ACTIONS(2337), + [anon_sym_GT] = ACTIONS(2337), + [anon_sym_EQ_EQ] = ACTIONS(2337), + [anon_sym_BANG_EQ] = ACTIONS(2337), + [anon_sym_LT_EQ] = ACTIONS(2337), + [anon_sym_GT_EQ] = ACTIONS(2337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(2335), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_mut] = ACTIONS(2337), + [anon_sym_PLUS_PLUS] = ACTIONS(2337), + [anon_sym_DASH_DASH] = ACTIONS(2337), + [anon_sym_QMARK] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(2337), + [anon_sym_go] = ACTIONS(2337), + [anon_sym_spawn] = ACTIONS(2337), + [anon_sym_json_DOTdecode] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_LBRACK2] = ACTIONS(2337), + [anon_sym_TILDE] = ACTIONS(2337), + [anon_sym_CARET] = ACTIONS(2337), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_LT_DASH] = ACTIONS(2337), + [anon_sym_LT_LT] = ACTIONS(2337), + [anon_sym_GT_GT] = ACTIONS(2337), + [anon_sym_GT_GT_GT] = ACTIONS(2337), + [anon_sym_AMP_CARET] = ACTIONS(2337), + [anon_sym_AMP_AMP] = ACTIONS(2337), + [anon_sym_PIPE_PIPE] = ACTIONS(2337), + [anon_sym_or] = ACTIONS(2337), + [sym_none] = ACTIONS(2337), + [sym_true] = ACTIONS(2337), + [sym_false] = ACTIONS(2337), + [sym_nil] = ACTIONS(2337), + [anon_sym_QMARK_DOT] = ACTIONS(2337), + [anon_sym_POUND_LBRACK] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_DOLLARif] = ACTIONS(2337), + [anon_sym_is] = ACTIONS(2337), + [anon_sym_BANGis] = ACTIONS(2337), + [anon_sym_in] = ACTIONS(2337), + [anon_sym_BANGin] = ACTIONS(2337), + [anon_sym_match] = ACTIONS(2337), + [anon_sym_select] = ACTIONS(2337), + [anon_sym_lock] = ACTIONS(2337), + [anon_sym_rlock] = ACTIONS(2337), + [anon_sym_unsafe] = ACTIONS(2337), + [anon_sym_sql] = ACTIONS(2337), + [sym_int_literal] = ACTIONS(2337), + [sym_float_literal] = ACTIONS(2337), + [sym_rune_literal] = ACTIONS(2337), + [anon_sym_SQUOTE] = ACTIONS(2337), + [anon_sym_DQUOTE] = ACTIONS(2337), + [anon_sym_c_SQUOTE] = ACTIONS(2337), + [anon_sym_c_DQUOTE] = ACTIONS(2337), + [anon_sym_r_SQUOTE] = ACTIONS(2337), + [anon_sym_r_DQUOTE] = ACTIONS(2337), + [sym_pseudo_compile_time_identifier] = ACTIONS(2337), + [anon_sym_shared] = ACTIONS(2337), + [anon_sym_map_LBRACK] = ACTIONS(2337), + [anon_sym_chan] = ACTIONS(2337), + [anon_sym_thread] = ACTIONS(2337), + [anon_sym_atomic] = ACTIONS(2337), }, [1143] = { [sym_line_comment] = STATE(1143), [sym_block_comment] = STATE(1143), - [sym_identifier] = ACTIONS(3021), - [anon_sym_LF] = ACTIONS(3021), - [anon_sym_CR] = ACTIONS(3021), - [anon_sym_CR_LF] = ACTIONS(3021), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3021), - [anon_sym_DOT] = ACTIONS(3021), - [anon_sym_as] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_COMMA] = ACTIONS(3021), - [anon_sym_RBRACE] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3021), - [anon_sym_RPAREN] = ACTIONS(3021), - [anon_sym_PIPE] = ACTIONS(3021), - [anon_sym_fn] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [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_DOT_DOT_DOT] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(3021), - [anon_sym_mut] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(3021), - [anon_sym_DASH_DASH] = ACTIONS(3021), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_go] = ACTIONS(3021), - [anon_sym_spawn] = ACTIONS(3021), - [anon_sym_json_DOTdecode] = ACTIONS(3021), - [anon_sym_LBRACK2] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3021), - [anon_sym_LT_LT] = ACTIONS(3021), - [anon_sym_GT_GT] = ACTIONS(3021), - [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(3021), - [sym_none] = ACTIONS(3021), - [sym_true] = ACTIONS(3021), - [sym_false] = ACTIONS(3021), - [sym_nil] = ACTIONS(3021), - [anon_sym_QMARK_DOT] = ACTIONS(3021), - [anon_sym_POUND_LBRACK] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_DOLLARif] = ACTIONS(3021), - [anon_sym_is] = ACTIONS(3021), - [anon_sym_BANGis] = ACTIONS(3021), - [anon_sym_in] = ACTIONS(3021), - [anon_sym_BANGin] = ACTIONS(3021), - [anon_sym_match] = ACTIONS(3021), - [anon_sym_select] = ACTIONS(3021), - [anon_sym_lock] = ACTIONS(3021), - [anon_sym_rlock] = ACTIONS(3021), - [anon_sym_unsafe] = ACTIONS(3021), - [anon_sym_sql] = ACTIONS(3021), - [sym_int_literal] = ACTIONS(3021), - [sym_float_literal] = ACTIONS(3021), - [sym_rune_literal] = ACTIONS(3021), - [anon_sym_SQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [anon_sym_c_SQUOTE] = ACTIONS(3021), - [anon_sym_c_DQUOTE] = ACTIONS(3021), - [anon_sym_r_SQUOTE] = ACTIONS(3021), - [anon_sym_r_DQUOTE] = ACTIONS(3021), - [sym_pseudo_compile_time_identifier] = ACTIONS(3021), - [anon_sym_shared] = ACTIONS(3021), - [anon_sym_map_LBRACK] = ACTIONS(3021), - [anon_sym_chan] = ACTIONS(3021), - [anon_sym_thread] = ACTIONS(3021), - [anon_sym_atomic] = ACTIONS(3021), + [sym_reference_expression] = STATE(4520), + [sym_type_reference_expression] = STATE(1939), + [sym_plain_type] = STATE(2106), + [sym__plain_type_without_special] = STATE(2110), + [sym_anon_struct_type] = STATE(2075), + [sym_multi_return_type] = STATE(2110), + [sym_result_type] = STATE(2110), + [sym_option_type] = STATE(2110), + [sym_qualified_type] = STATE(1939), + [sym_fixed_array_type] = STATE(2075), + [sym_array_type] = STATE(2075), + [sym_pointer_type] = STATE(2075), + [sym_wrong_pointer_type] = STATE(2075), + [sym_map_type] = STATE(2075), + [sym_channel_type] = STATE(2075), + [sym_shared_type] = STATE(2075), + [sym_thread_type] = STATE(2075), + [sym_atomic_type] = STATE(2075), + [sym_generic_type] = STATE(2075), + [sym_function_type] = STATE(2075), + [sym_identifier] = ACTIONS(3780), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(603), + [anon_sym_as] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(3782), + [anon_sym_EQ] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(3784), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(3786), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_BANG_EQ] = ACTIONS(603), + [anon_sym_LT_EQ] = ACTIONS(603), + [anon_sym_GT_EQ] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(3788), + [anon_sym_COLON] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(3790), + [anon_sym_BANG] = ACTIONS(3792), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_LBRACK2] = ACTIONS(3794), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(3796), + [anon_sym_LT_DASH] = ACTIONS(603), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_GT_GT_GT] = ACTIONS(605), + [anon_sym_AMP_CARET] = ACTIONS(605), + [anon_sym_AMP_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(603), + [anon_sym_or] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(603), + [anon_sym_is] = ACTIONS(605), + [anon_sym_BANGis] = ACTIONS(603), + [anon_sym_in] = ACTIONS(605), + [anon_sym_BANGin] = ACTIONS(603), + [anon_sym_STAR_EQ] = ACTIONS(603), + [anon_sym_SLASH_EQ] = ACTIONS(603), + [anon_sym_PERCENT_EQ] = ACTIONS(603), + [anon_sym_LT_LT_EQ] = ACTIONS(603), + [anon_sym_GT_GT_EQ] = ACTIONS(603), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(603), + [anon_sym_AMP_EQ] = ACTIONS(603), + [anon_sym_AMP_CARET_EQ] = ACTIONS(603), + [anon_sym_PLUS_EQ] = ACTIONS(603), + [anon_sym_DASH_EQ] = ACTIONS(603), + [anon_sym_PIPE_EQ] = ACTIONS(603), + [anon_sym_CARET_EQ] = ACTIONS(603), + [anon_sym_shared] = ACTIONS(3798), + [anon_sym_map_LBRACK] = ACTIONS(3800), + [anon_sym_chan] = ACTIONS(3802), + [anon_sym_thread] = ACTIONS(3804), + [anon_sym_atomic] = ACTIONS(3806), }, [1144] = { [sym_line_comment] = STATE(1144), [sym_block_comment] = STATE(1144), - [sym_identifier] = ACTIONS(2745), - [anon_sym_LF] = ACTIONS(2745), - [anon_sym_CR] = ACTIONS(2745), - [anon_sym_CR_LF] = ACTIONS(2745), + [sym_identifier] = ACTIONS(2621), + [anon_sym_LF] = ACTIONS(2621), + [anon_sym_CR] = ACTIONS(2621), + [anon_sym_CR_LF] = ACTIONS(2621), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2745), - [anon_sym_DOT] = ACTIONS(2745), - [anon_sym_as] = ACTIONS(2745), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_COMMA] = ACTIONS(2745), - [anon_sym_RBRACE] = ACTIONS(2745), - [anon_sym_LPAREN] = ACTIONS(2745), - [anon_sym_RPAREN] = ACTIONS(2745), - [anon_sym_PIPE] = ACTIONS(2745), - [anon_sym_fn] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2745), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_SLASH] = ACTIONS(2745), - [anon_sym_PERCENT] = ACTIONS(2745), - [anon_sym_LT] = ACTIONS(2745), - [anon_sym_GT] = ACTIONS(2745), - [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_DOT_DOT_DOT] = ACTIONS(2745), - [anon_sym_LBRACK] = ACTIONS(2743), - [anon_sym_struct] = ACTIONS(2745), - [anon_sym_mut] = ACTIONS(2745), - [anon_sym_PLUS_PLUS] = ACTIONS(2745), - [anon_sym_DASH_DASH] = ACTIONS(2745), - [anon_sym_QMARK] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_go] = ACTIONS(2745), - [anon_sym_spawn] = ACTIONS(2745), - [anon_sym_json_DOTdecode] = ACTIONS(2745), - [anon_sym_LBRACK2] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_CARET] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2745), - [anon_sym_LT_DASH] = ACTIONS(2745), - [anon_sym_LT_LT] = ACTIONS(2745), - [anon_sym_GT_GT] = ACTIONS(2745), - [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(2745), - [sym_none] = ACTIONS(2745), - [sym_true] = ACTIONS(2745), - [sym_false] = ACTIONS(2745), - [sym_nil] = ACTIONS(2745), - [anon_sym_QMARK_DOT] = ACTIONS(2745), - [anon_sym_POUND_LBRACK] = ACTIONS(2745), - [anon_sym_if] = ACTIONS(2745), - [anon_sym_DOLLARif] = ACTIONS(2745), - [anon_sym_is] = ACTIONS(2745), - [anon_sym_BANGis] = ACTIONS(2745), - [anon_sym_in] = ACTIONS(2745), - [anon_sym_BANGin] = ACTIONS(2745), - [anon_sym_match] = ACTIONS(2745), - [anon_sym_select] = ACTIONS(2745), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), - [anon_sym_unsafe] = ACTIONS(2745), - [anon_sym_sql] = ACTIONS(2745), - [sym_int_literal] = ACTIONS(2745), - [sym_float_literal] = ACTIONS(2745), - [sym_rune_literal] = ACTIONS(2745), - [anon_sym_SQUOTE] = ACTIONS(2745), - [anon_sym_DQUOTE] = ACTIONS(2745), - [anon_sym_c_SQUOTE] = ACTIONS(2745), - [anon_sym_c_DQUOTE] = ACTIONS(2745), - [anon_sym_r_SQUOTE] = ACTIONS(2745), - [anon_sym_r_DQUOTE] = ACTIONS(2745), - [sym_pseudo_compile_time_identifier] = ACTIONS(2745), - [anon_sym_shared] = ACTIONS(2745), - [anon_sym_map_LBRACK] = ACTIONS(2745), - [anon_sym_chan] = ACTIONS(2745), - [anon_sym_thread] = ACTIONS(2745), - [anon_sym_atomic] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2621), + [anon_sym_as] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_COMMA] = ACTIONS(2621), + [anon_sym_RBRACE] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_RPAREN] = ACTIONS(2621), + [anon_sym_fn] = ACTIONS(2621), + [anon_sym_PLUS] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_SLASH] = ACTIONS(2621), + [anon_sym_PERCENT] = ACTIONS(2621), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_GT] = ACTIONS(2621), + [anon_sym_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_EQ] = ACTIONS(2621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_struct] = ACTIONS(2621), + [anon_sym_mut] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_QMARK] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_go] = ACTIONS(2621), + [anon_sym_spawn] = ACTIONS(2621), + [anon_sym_json_DOTdecode] = ACTIONS(2621), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_LBRACK2] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_LT_DASH] = ACTIONS(2621), + [anon_sym_LT_LT] = ACTIONS(2621), + [anon_sym_GT_GT] = ACTIONS(2621), + [anon_sym_GT_GT_GT] = ACTIONS(2621), + [anon_sym_AMP_CARET] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2621), + [sym_none] = ACTIONS(2621), + [sym_true] = ACTIONS(2621), + [sym_false] = ACTIONS(2621), + [sym_nil] = ACTIONS(2621), + [anon_sym_QMARK_DOT] = ACTIONS(2621), + [anon_sym_POUND_LBRACK] = ACTIONS(2621), + [anon_sym_if] = ACTIONS(2621), + [anon_sym_DOLLARif] = ACTIONS(2621), + [anon_sym_is] = ACTIONS(2621), + [anon_sym_BANGis] = ACTIONS(2621), + [anon_sym_in] = ACTIONS(2621), + [anon_sym_BANGin] = ACTIONS(2621), + [anon_sym_match] = ACTIONS(2621), + [anon_sym_select] = ACTIONS(2621), + [anon_sym_lock] = ACTIONS(2621), + [anon_sym_rlock] = ACTIONS(2621), + [anon_sym_unsafe] = ACTIONS(2621), + [anon_sym_sql] = ACTIONS(2621), + [sym_int_literal] = ACTIONS(2621), + [sym_float_literal] = ACTIONS(2621), + [sym_rune_literal] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [anon_sym_c_SQUOTE] = ACTIONS(2621), + [anon_sym_c_DQUOTE] = ACTIONS(2621), + [anon_sym_r_SQUOTE] = ACTIONS(2621), + [anon_sym_r_DQUOTE] = ACTIONS(2621), + [sym_pseudo_compile_time_identifier] = ACTIONS(2621), + [anon_sym_shared] = ACTIONS(2621), + [anon_sym_map_LBRACK] = ACTIONS(2621), + [anon_sym_chan] = ACTIONS(2621), + [anon_sym_thread] = ACTIONS(2621), + [anon_sym_atomic] = ACTIONS(2621), }, [1145] = { [sym_line_comment] = STATE(1145), [sym_block_comment] = STATE(1145), - [sym_identifier] = ACTIONS(2737), - [anon_sym_LF] = ACTIONS(2737), - [anon_sym_CR] = ACTIONS(2737), - [anon_sym_CR_LF] = ACTIONS(2737), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LF] = ACTIONS(2341), + [anon_sym_CR] = ACTIONS(2341), + [anon_sym_CR_LF] = ACTIONS(2341), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2737), - [anon_sym_DOT] = ACTIONS(2737), - [anon_sym_as] = ACTIONS(2737), - [anon_sym_LBRACE] = ACTIONS(2737), - [anon_sym_COMMA] = ACTIONS(2737), - [anon_sym_RBRACE] = ACTIONS(2737), - [anon_sym_LPAREN] = ACTIONS(2737), - [anon_sym_RPAREN] = ACTIONS(2737), - [anon_sym_PIPE] = ACTIONS(2737), - [anon_sym_fn] = ACTIONS(2737), - [anon_sym_PLUS] = ACTIONS(2737), - [anon_sym_DASH] = ACTIONS(2737), - [anon_sym_STAR] = ACTIONS(2737), - [anon_sym_SLASH] = ACTIONS(2737), - [anon_sym_PERCENT] = ACTIONS(2737), - [anon_sym_LT] = ACTIONS(2737), - [anon_sym_GT] = ACTIONS(2737), - [anon_sym_EQ_EQ] = ACTIONS(2737), - [anon_sym_BANG_EQ] = ACTIONS(2737), - [anon_sym_LT_EQ] = ACTIONS(2737), - [anon_sym_GT_EQ] = ACTIONS(2737), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2737), - [anon_sym_LBRACK] = ACTIONS(2735), - [anon_sym_struct] = ACTIONS(2737), - [anon_sym_mut] = ACTIONS(2737), - [anon_sym_PLUS_PLUS] = ACTIONS(2737), - [anon_sym_DASH_DASH] = ACTIONS(2737), - [anon_sym_QMARK] = ACTIONS(2737), - [anon_sym_BANG] = ACTIONS(2737), - [anon_sym_go] = ACTIONS(2737), - [anon_sym_spawn] = ACTIONS(2737), - [anon_sym_json_DOTdecode] = ACTIONS(2737), - [anon_sym_LBRACK2] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2737), - [anon_sym_CARET] = ACTIONS(2737), - [anon_sym_AMP] = ACTIONS(2737), - [anon_sym_LT_DASH] = ACTIONS(2737), - [anon_sym_LT_LT] = ACTIONS(2737), - [anon_sym_GT_GT] = ACTIONS(2737), - [anon_sym_GT_GT_GT] = ACTIONS(2737), - [anon_sym_AMP_CARET] = ACTIONS(2737), - [anon_sym_AMP_AMP] = ACTIONS(2737), - [anon_sym_PIPE_PIPE] = ACTIONS(2737), - [anon_sym_or] = ACTIONS(2737), - [sym_none] = ACTIONS(2737), - [sym_true] = ACTIONS(2737), - [sym_false] = ACTIONS(2737), - [sym_nil] = ACTIONS(2737), - [anon_sym_QMARK_DOT] = ACTIONS(2737), - [anon_sym_POUND_LBRACK] = ACTIONS(2737), - [anon_sym_if] = ACTIONS(2737), - [anon_sym_DOLLARif] = ACTIONS(2737), - [anon_sym_is] = ACTIONS(2737), - [anon_sym_BANGis] = ACTIONS(2737), - [anon_sym_in] = ACTIONS(2737), - [anon_sym_BANGin] = ACTIONS(2737), - [anon_sym_match] = ACTIONS(2737), - [anon_sym_select] = ACTIONS(2737), - [anon_sym_lock] = ACTIONS(2737), - [anon_sym_rlock] = ACTIONS(2737), - [anon_sym_unsafe] = ACTIONS(2737), - [anon_sym_sql] = ACTIONS(2737), - [sym_int_literal] = ACTIONS(2737), - [sym_float_literal] = ACTIONS(2737), - [sym_rune_literal] = ACTIONS(2737), - [anon_sym_SQUOTE] = ACTIONS(2737), - [anon_sym_DQUOTE] = ACTIONS(2737), - [anon_sym_c_SQUOTE] = ACTIONS(2737), - [anon_sym_c_DQUOTE] = ACTIONS(2737), - [anon_sym_r_SQUOTE] = ACTIONS(2737), - [anon_sym_r_DQUOTE] = ACTIONS(2737), - [sym_pseudo_compile_time_identifier] = ACTIONS(2737), - [anon_sym_shared] = ACTIONS(2737), - [anon_sym_map_LBRACK] = ACTIONS(2737), - [anon_sym_chan] = ACTIONS(2737), - [anon_sym_thread] = ACTIONS(2737), - [anon_sym_atomic] = ACTIONS(2737), + [anon_sym_SEMI] = ACTIONS(2341), + [anon_sym_DOT] = ACTIONS(2341), + [anon_sym_as] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2341), + [anon_sym_COMMA] = ACTIONS(2341), + [anon_sym_RBRACE] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2341), + [anon_sym_RPAREN] = ACTIONS(2341), + [anon_sym_fn] = ACTIONS(2341), + [anon_sym_PLUS] = ACTIONS(2341), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_STAR] = ACTIONS(2341), + [anon_sym_SLASH] = ACTIONS(2341), + [anon_sym_PERCENT] = ACTIONS(2341), + [anon_sym_LT] = ACTIONS(2341), + [anon_sym_GT] = ACTIONS(2341), + [anon_sym_EQ_EQ] = ACTIONS(2341), + [anon_sym_BANG_EQ] = ACTIONS(2341), + [anon_sym_LT_EQ] = ACTIONS(2341), + [anon_sym_GT_EQ] = ACTIONS(2341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2339), + [anon_sym_struct] = ACTIONS(2341), + [anon_sym_mut] = ACTIONS(2341), + [anon_sym_PLUS_PLUS] = ACTIONS(2341), + [anon_sym_DASH_DASH] = ACTIONS(2341), + [anon_sym_QMARK] = ACTIONS(2341), + [anon_sym_BANG] = ACTIONS(2341), + [anon_sym_go] = ACTIONS(2341), + [anon_sym_spawn] = ACTIONS(2341), + [anon_sym_json_DOTdecode] = ACTIONS(2341), + [anon_sym_PIPE] = ACTIONS(2341), + [anon_sym_LBRACK2] = ACTIONS(2341), + [anon_sym_TILDE] = ACTIONS(2341), + [anon_sym_CARET] = ACTIONS(2341), + [anon_sym_AMP] = ACTIONS(2341), + [anon_sym_LT_DASH] = ACTIONS(2341), + [anon_sym_LT_LT] = ACTIONS(2341), + [anon_sym_GT_GT] = ACTIONS(2341), + [anon_sym_GT_GT_GT] = ACTIONS(2341), + [anon_sym_AMP_CARET] = ACTIONS(2341), + [anon_sym_AMP_AMP] = ACTIONS(2341), + [anon_sym_PIPE_PIPE] = ACTIONS(2341), + [anon_sym_or] = ACTIONS(2341), + [sym_none] = ACTIONS(2341), + [sym_true] = ACTIONS(2341), + [sym_false] = ACTIONS(2341), + [sym_nil] = ACTIONS(2341), + [anon_sym_QMARK_DOT] = ACTIONS(2341), + [anon_sym_POUND_LBRACK] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_DOLLARif] = ACTIONS(2341), + [anon_sym_is] = ACTIONS(2341), + [anon_sym_BANGis] = ACTIONS(2341), + [anon_sym_in] = ACTIONS(2341), + [anon_sym_BANGin] = ACTIONS(2341), + [anon_sym_match] = ACTIONS(2341), + [anon_sym_select] = ACTIONS(2341), + [anon_sym_lock] = ACTIONS(2341), + [anon_sym_rlock] = ACTIONS(2341), + [anon_sym_unsafe] = ACTIONS(2341), + [anon_sym_sql] = ACTIONS(2341), + [sym_int_literal] = ACTIONS(2341), + [sym_float_literal] = ACTIONS(2341), + [sym_rune_literal] = ACTIONS(2341), + [anon_sym_SQUOTE] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [anon_sym_c_SQUOTE] = ACTIONS(2341), + [anon_sym_c_DQUOTE] = ACTIONS(2341), + [anon_sym_r_SQUOTE] = ACTIONS(2341), + [anon_sym_r_DQUOTE] = ACTIONS(2341), + [sym_pseudo_compile_time_identifier] = ACTIONS(2341), + [anon_sym_shared] = ACTIONS(2341), + [anon_sym_map_LBRACK] = ACTIONS(2341), + [anon_sym_chan] = ACTIONS(2341), + [anon_sym_thread] = ACTIONS(2341), + [anon_sym_atomic] = ACTIONS(2341), }, [1146] = { [sym_line_comment] = STATE(1146), [sym_block_comment] = STATE(1146), - [sym_identifier] = ACTIONS(2715), - [anon_sym_LF] = ACTIONS(2715), - [anon_sym_CR] = ACTIONS(2715), - [anon_sym_CR_LF] = ACTIONS(2715), + [sym_identifier] = ACTIONS(2425), + [anon_sym_LF] = ACTIONS(2425), + [anon_sym_CR] = ACTIONS(2425), + [anon_sym_CR_LF] = ACTIONS(2425), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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), - [anon_sym_SQUOTE] = ACTIONS(2715), - [anon_sym_DQUOTE] = ACTIONS(2715), - [anon_sym_c_SQUOTE] = ACTIONS(2715), - [anon_sym_c_DQUOTE] = ACTIONS(2715), - [anon_sym_r_SQUOTE] = ACTIONS(2715), - [anon_sym_r_DQUOTE] = 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_SEMI] = ACTIONS(2425), + [anon_sym_DOT] = ACTIONS(2425), + [anon_sym_as] = ACTIONS(2425), + [anon_sym_LBRACE] = ACTIONS(2425), + [anon_sym_COMMA] = ACTIONS(2425), + [anon_sym_RBRACE] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2425), + [anon_sym_RPAREN] = ACTIONS(2425), + [anon_sym_fn] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2425), + [anon_sym_DASH] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_SLASH] = ACTIONS(2425), + [anon_sym_PERCENT] = ACTIONS(2425), + [anon_sym_LT] = ACTIONS(2425), + [anon_sym_GT] = ACTIONS(2425), + [anon_sym_EQ_EQ] = ACTIONS(2425), + [anon_sym_BANG_EQ] = ACTIONS(2425), + [anon_sym_LT_EQ] = ACTIONS(2425), + [anon_sym_GT_EQ] = ACTIONS(2425), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2425), + [anon_sym_LBRACK] = ACTIONS(2423), + [anon_sym_struct] = ACTIONS(2425), + [anon_sym_mut] = ACTIONS(2425), + [anon_sym_PLUS_PLUS] = ACTIONS(2425), + [anon_sym_DASH_DASH] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2425), + [anon_sym_BANG] = ACTIONS(2425), + [anon_sym_go] = ACTIONS(2425), + [anon_sym_spawn] = ACTIONS(2425), + [anon_sym_json_DOTdecode] = ACTIONS(2425), + [anon_sym_PIPE] = ACTIONS(2425), + [anon_sym_LBRACK2] = ACTIONS(2425), + [anon_sym_TILDE] = ACTIONS(2425), + [anon_sym_CARET] = ACTIONS(2425), + [anon_sym_AMP] = ACTIONS(2425), + [anon_sym_LT_DASH] = ACTIONS(2425), + [anon_sym_LT_LT] = ACTIONS(2425), + [anon_sym_GT_GT] = ACTIONS(2425), + [anon_sym_GT_GT_GT] = ACTIONS(2425), + [anon_sym_AMP_CARET] = ACTIONS(2425), + [anon_sym_AMP_AMP] = ACTIONS(2425), + [anon_sym_PIPE_PIPE] = ACTIONS(2425), + [anon_sym_or] = ACTIONS(2425), + [sym_none] = ACTIONS(2425), + [sym_true] = ACTIONS(2425), + [sym_false] = ACTIONS(2425), + [sym_nil] = ACTIONS(2425), + [anon_sym_QMARK_DOT] = ACTIONS(2425), + [anon_sym_POUND_LBRACK] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_DOLLARif] = ACTIONS(2425), + [anon_sym_is] = ACTIONS(2425), + [anon_sym_BANGis] = ACTIONS(2425), + [anon_sym_in] = ACTIONS(2425), + [anon_sym_BANGin] = ACTIONS(2425), + [anon_sym_match] = ACTIONS(2425), + [anon_sym_select] = ACTIONS(2425), + [anon_sym_lock] = ACTIONS(2425), + [anon_sym_rlock] = ACTIONS(2425), + [anon_sym_unsafe] = ACTIONS(2425), + [anon_sym_sql] = ACTIONS(2425), + [sym_int_literal] = ACTIONS(2425), + [sym_float_literal] = ACTIONS(2425), + [sym_rune_literal] = ACTIONS(2425), + [anon_sym_SQUOTE] = ACTIONS(2425), + [anon_sym_DQUOTE] = ACTIONS(2425), + [anon_sym_c_SQUOTE] = ACTIONS(2425), + [anon_sym_c_DQUOTE] = ACTIONS(2425), + [anon_sym_r_SQUOTE] = ACTIONS(2425), + [anon_sym_r_DQUOTE] = ACTIONS(2425), + [sym_pseudo_compile_time_identifier] = ACTIONS(2425), + [anon_sym_shared] = ACTIONS(2425), + [anon_sym_map_LBRACK] = ACTIONS(2425), + [anon_sym_chan] = ACTIONS(2425), + [anon_sym_thread] = ACTIONS(2425), + [anon_sym_atomic] = ACTIONS(2425), }, [1147] = { [sym_line_comment] = STATE(1147), [sym_block_comment] = STATE(1147), - [sym_identifier] = ACTIONS(2847), - [anon_sym_LF] = ACTIONS(2847), - [anon_sym_CR] = ACTIONS(2847), - [anon_sym_CR_LF] = ACTIONS(2847), + [sym_identifier] = ACTIONS(3062), + [anon_sym_LF] = ACTIONS(3062), + [anon_sym_CR] = ACTIONS(3062), + [anon_sym_CR_LF] = ACTIONS(3062), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2847), - [anon_sym_DOT] = ACTIONS(2847), - [anon_sym_as] = ACTIONS(2847), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_COMMA] = ACTIONS(2847), - [anon_sym_RBRACE] = ACTIONS(2847), - [anon_sym_LPAREN] = ACTIONS(2847), - [anon_sym_RPAREN] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2847), - [anon_sym_fn] = ACTIONS(2847), - [anon_sym_PLUS] = ACTIONS(2847), - [anon_sym_DASH] = ACTIONS(2847), - [anon_sym_STAR] = ACTIONS(2847), - [anon_sym_SLASH] = ACTIONS(2847), - [anon_sym_PERCENT] = ACTIONS(2847), - [anon_sym_LT] = ACTIONS(2847), - [anon_sym_GT] = ACTIONS(2847), - [anon_sym_EQ_EQ] = ACTIONS(2847), - [anon_sym_BANG_EQ] = ACTIONS(2847), - [anon_sym_LT_EQ] = ACTIONS(2847), - [anon_sym_GT_EQ] = ACTIONS(2847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2847), - [anon_sym_LBRACK] = ACTIONS(2845), - [anon_sym_struct] = ACTIONS(2847), - [anon_sym_mut] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_QMARK] = ACTIONS(2847), - [anon_sym_BANG] = ACTIONS(2847), - [anon_sym_go] = ACTIONS(2847), - [anon_sym_spawn] = ACTIONS(2847), - [anon_sym_json_DOTdecode] = ACTIONS(2847), - [anon_sym_LBRACK2] = ACTIONS(2847), - [anon_sym_TILDE] = ACTIONS(2847), - [anon_sym_CARET] = ACTIONS(2847), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_LT_DASH] = ACTIONS(2847), - [anon_sym_LT_LT] = ACTIONS(2847), - [anon_sym_GT_GT] = ACTIONS(2847), - [anon_sym_GT_GT_GT] = ACTIONS(2847), - [anon_sym_AMP_CARET] = ACTIONS(2847), - [anon_sym_AMP_AMP] = ACTIONS(2847), - [anon_sym_PIPE_PIPE] = ACTIONS(2847), - [anon_sym_or] = ACTIONS(2847), - [sym_none] = ACTIONS(2847), - [sym_true] = ACTIONS(2847), - [sym_false] = ACTIONS(2847), - [sym_nil] = ACTIONS(2847), - [anon_sym_QMARK_DOT] = ACTIONS(2847), - [anon_sym_POUND_LBRACK] = ACTIONS(2847), - [anon_sym_if] = ACTIONS(2847), - [anon_sym_DOLLARif] = ACTIONS(2847), - [anon_sym_is] = ACTIONS(2847), - [anon_sym_BANGis] = ACTIONS(2847), - [anon_sym_in] = ACTIONS(2847), - [anon_sym_BANGin] = ACTIONS(2847), - [anon_sym_match] = ACTIONS(2847), - [anon_sym_select] = ACTIONS(2847), - [anon_sym_lock] = ACTIONS(2847), - [anon_sym_rlock] = ACTIONS(2847), - [anon_sym_unsafe] = ACTIONS(2847), - [anon_sym_sql] = ACTIONS(2847), - [sym_int_literal] = ACTIONS(2847), - [sym_float_literal] = ACTIONS(2847), - [sym_rune_literal] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2847), - [anon_sym_c_SQUOTE] = ACTIONS(2847), - [anon_sym_c_DQUOTE] = ACTIONS(2847), - [anon_sym_r_SQUOTE] = ACTIONS(2847), - [anon_sym_r_DQUOTE] = ACTIONS(2847), - [sym_pseudo_compile_time_identifier] = ACTIONS(2847), - [anon_sym_shared] = ACTIONS(2847), - [anon_sym_map_LBRACK] = ACTIONS(2847), - [anon_sym_chan] = ACTIONS(2847), - [anon_sym_thread] = ACTIONS(2847), - [anon_sym_atomic] = ACTIONS(2847), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_as] = ACTIONS(3062), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3062), + [anon_sym_RBRACE] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_RPAREN] = ACTIONS(3062), + [anon_sym_fn] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_SLASH] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3062), + [anon_sym_EQ_EQ] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_LT_EQ] = ACTIONS(3062), + [anon_sym_GT_EQ] = ACTIONS(3062), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3062), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_mut] = ACTIONS(3062), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_go] = ACTIONS(3062), + [anon_sym_spawn] = ACTIONS(3062), + [anon_sym_json_DOTdecode] = ACTIONS(3062), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_LBRACK2] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_LT_LT] = ACTIONS(3062), + [anon_sym_GT_GT] = ACTIONS(3062), + [anon_sym_GT_GT_GT] = ACTIONS(3062), + [anon_sym_AMP_CARET] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_or] = ACTIONS(3062), + [sym_none] = ACTIONS(3062), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_nil] = ACTIONS(3062), + [anon_sym_QMARK_DOT] = ACTIONS(3062), + [anon_sym_POUND_LBRACK] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_DOLLARif] = ACTIONS(3062), + [anon_sym_is] = ACTIONS(3062), + [anon_sym_BANGis] = ACTIONS(3062), + [anon_sym_in] = ACTIONS(3062), + [anon_sym_BANGin] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_select] = ACTIONS(3062), + [anon_sym_lock] = ACTIONS(3062), + [anon_sym_rlock] = ACTIONS(3062), + [anon_sym_unsafe] = ACTIONS(3062), + [anon_sym_sql] = ACTIONS(3062), + [sym_int_literal] = ACTIONS(3062), + [sym_float_literal] = ACTIONS(3062), + [sym_rune_literal] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_c_SQUOTE] = ACTIONS(3062), + [anon_sym_c_DQUOTE] = ACTIONS(3062), + [anon_sym_r_SQUOTE] = ACTIONS(3062), + [anon_sym_r_DQUOTE] = ACTIONS(3062), + [sym_pseudo_compile_time_identifier] = ACTIONS(3062), + [anon_sym_shared] = ACTIONS(3062), + [anon_sym_map_LBRACK] = ACTIONS(3062), + [anon_sym_chan] = ACTIONS(3062), + [anon_sym_thread] = ACTIONS(3062), + [anon_sym_atomic] = ACTIONS(3062), }, [1148] = { [sym_line_comment] = STATE(1148), [sym_block_comment] = STATE(1148), - [sym_identifier] = ACTIONS(2159), - [anon_sym_LF] = ACTIONS(2159), - [anon_sym_CR] = ACTIONS(2159), - [anon_sym_CR_LF] = ACTIONS(2159), + [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_SEMI] = ACTIONS(2159), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_as] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_RPAREN] = ACTIONS(2159), - [anon_sym_PIPE] = ACTIONS(2159), - [anon_sym_fn] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_PERCENT] = ACTIONS(2159), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_GT] = ACTIONS(2159), - [anon_sym_EQ_EQ] = ACTIONS(2159), - [anon_sym_BANG_EQ] = ACTIONS(2159), - [anon_sym_LT_EQ] = ACTIONS(2159), - [anon_sym_GT_EQ] = ACTIONS(2159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2159), - [anon_sym_mut] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [anon_sym_QMARK] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(2159), - [anon_sym_spawn] = ACTIONS(2159), - [anon_sym_json_DOTdecode] = ACTIONS(2159), - [anon_sym_LBRACK2] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2159), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2159), - [anon_sym_LT_LT] = ACTIONS(2159), - [anon_sym_GT_GT] = ACTIONS(2159), - [anon_sym_GT_GT_GT] = ACTIONS(2159), - [anon_sym_AMP_CARET] = ACTIONS(2159), - [anon_sym_AMP_AMP] = ACTIONS(2159), - [anon_sym_PIPE_PIPE] = ACTIONS(2159), - [anon_sym_or] = ACTIONS(2159), - [sym_none] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_nil] = ACTIONS(2159), - [anon_sym_QMARK_DOT] = ACTIONS(2159), - [anon_sym_POUND_LBRACK] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_DOLLARif] = ACTIONS(2159), - [anon_sym_is] = ACTIONS(2159), - [anon_sym_BANGis] = ACTIONS(2159), - [anon_sym_in] = ACTIONS(2159), - [anon_sym_BANGin] = ACTIONS(2159), - [anon_sym_match] = ACTIONS(2159), - [anon_sym_select] = ACTIONS(2159), - [anon_sym_lock] = ACTIONS(2159), - [anon_sym_rlock] = ACTIONS(2159), - [anon_sym_unsafe] = ACTIONS(2159), - [anon_sym_sql] = ACTIONS(2159), - [sym_int_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), - [sym_rune_literal] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_c_SQUOTE] = ACTIONS(2159), - [anon_sym_c_DQUOTE] = ACTIONS(2159), - [anon_sym_r_SQUOTE] = ACTIONS(2159), - [anon_sym_r_DQUOTE] = ACTIONS(2159), - [sym_pseudo_compile_time_identifier] = ACTIONS(2159), - [anon_sym_shared] = ACTIONS(2159), - [anon_sym_map_LBRACK] = ACTIONS(2159), - [anon_sym_chan] = ACTIONS(2159), - [anon_sym_thread] = ACTIONS(2159), - [anon_sym_atomic] = ACTIONS(2159), + [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_fn] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3003), + [anon_sym_DASH] = ACTIONS(3003), + [anon_sym_STAR] = ACTIONS(3003), + [anon_sym_SLASH] = 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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(3003), + [anon_sym_DQUOTE] = ACTIONS(3003), + [anon_sym_c_SQUOTE] = ACTIONS(3003), + [anon_sym_c_DQUOTE] = ACTIONS(3003), + [anon_sym_r_SQUOTE] = ACTIONS(3003), + [anon_sym_r_DQUOTE] = 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), }, [1149] = { [sym_line_comment] = STATE(1149), [sym_block_comment] = STATE(1149), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LF] = ACTIONS(2097), - [anon_sym_CR] = ACTIONS(2097), - [anon_sym_CR_LF] = ACTIONS(2097), + [sym_identifier] = ACTIONS(2465), + [anon_sym_LF] = ACTIONS(2465), + [anon_sym_CR] = ACTIONS(2465), + [anon_sym_CR_LF] = ACTIONS(2465), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2097), - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_RPAREN] = ACTIONS(2097), - [anon_sym_PIPE] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_PERCENT] = ACTIONS(2097), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2097), - [anon_sym_EQ_EQ] = ACTIONS(2097), - [anon_sym_BANG_EQ] = ACTIONS(2097), - [anon_sym_LT_EQ] = ACTIONS(2097), - [anon_sym_GT_EQ] = ACTIONS(2097), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_mut] = ACTIONS(2097), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_QMARK] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2097), - [anon_sym_json_DOTdecode] = ACTIONS(2097), - [anon_sym_LBRACK2] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2097), - [anon_sym_CARET] = ACTIONS(2097), - [anon_sym_AMP] = ACTIONS(2097), - [anon_sym_LT_DASH] = ACTIONS(2097), - [anon_sym_LT_LT] = ACTIONS(2097), - [anon_sym_GT_GT] = ACTIONS(2097), - [anon_sym_GT_GT_GT] = ACTIONS(2097), - [anon_sym_AMP_CARET] = ACTIONS(2097), - [anon_sym_AMP_AMP] = ACTIONS(2097), - [anon_sym_PIPE_PIPE] = ACTIONS(2097), - [anon_sym_or] = ACTIONS(2097), - [sym_none] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_nil] = ACTIONS(2097), - [anon_sym_QMARK_DOT] = ACTIONS(2097), - [anon_sym_POUND_LBRACK] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_DOLLARif] = ACTIONS(2097), - [anon_sym_is] = ACTIONS(2097), - [anon_sym_BANGis] = ACTIONS(2097), - [anon_sym_in] = ACTIONS(2097), - [anon_sym_BANGin] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_select] = ACTIONS(2097), - [anon_sym_lock] = ACTIONS(2097), - [anon_sym_rlock] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_sql] = ACTIONS(2097), - [sym_int_literal] = ACTIONS(2097), - [sym_float_literal] = ACTIONS(2097), - [sym_rune_literal] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_c_SQUOTE] = ACTIONS(2097), - [anon_sym_c_DQUOTE] = ACTIONS(2097), - [anon_sym_r_SQUOTE] = ACTIONS(2097), - [anon_sym_r_DQUOTE] = ACTIONS(2097), - [sym_pseudo_compile_time_identifier] = ACTIONS(2097), - [anon_sym_shared] = ACTIONS(2097), - [anon_sym_map_LBRACK] = ACTIONS(2097), - [anon_sym_chan] = ACTIONS(2097), - [anon_sym_thread] = ACTIONS(2097), - [anon_sym_atomic] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(2465), + [anon_sym_DOT] = ACTIONS(2465), + [anon_sym_as] = ACTIONS(2465), + [anon_sym_LBRACE] = ACTIONS(2465), + [anon_sym_COMMA] = ACTIONS(2465), + [anon_sym_RBRACE] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_RPAREN] = ACTIONS(2465), + [anon_sym_fn] = ACTIONS(2465), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_SLASH] = ACTIONS(2465), + [anon_sym_PERCENT] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_EQ_EQ] = ACTIONS(2465), + [anon_sym_BANG_EQ] = ACTIONS(2465), + [anon_sym_LT_EQ] = ACTIONS(2465), + [anon_sym_GT_EQ] = ACTIONS(2465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_struct] = ACTIONS(2465), + [anon_sym_mut] = ACTIONS(2465), + [anon_sym_PLUS_PLUS] = ACTIONS(2465), + [anon_sym_DASH_DASH] = ACTIONS(2465), + [anon_sym_QMARK] = ACTIONS(2465), + [anon_sym_BANG] = ACTIONS(2465), + [anon_sym_go] = ACTIONS(2465), + [anon_sym_spawn] = ACTIONS(2465), + [anon_sym_json_DOTdecode] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(2465), + [anon_sym_LBRACK2] = ACTIONS(2465), + [anon_sym_TILDE] = ACTIONS(2465), + [anon_sym_CARET] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2465), + [anon_sym_LT_DASH] = ACTIONS(2465), + [anon_sym_LT_LT] = ACTIONS(2465), + [anon_sym_GT_GT] = ACTIONS(2465), + [anon_sym_GT_GT_GT] = ACTIONS(2465), + [anon_sym_AMP_CARET] = ACTIONS(2465), + [anon_sym_AMP_AMP] = ACTIONS(2465), + [anon_sym_PIPE_PIPE] = ACTIONS(2465), + [anon_sym_or] = ACTIONS(2465), + [sym_none] = ACTIONS(2465), + [sym_true] = ACTIONS(2465), + [sym_false] = ACTIONS(2465), + [sym_nil] = ACTIONS(2465), + [anon_sym_QMARK_DOT] = ACTIONS(2465), + [anon_sym_POUND_LBRACK] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_DOLLARif] = ACTIONS(2465), + [anon_sym_is] = ACTIONS(2465), + [anon_sym_BANGis] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(2465), + [anon_sym_BANGin] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_lock] = ACTIONS(2465), + [anon_sym_rlock] = ACTIONS(2465), + [anon_sym_unsafe] = ACTIONS(2465), + [anon_sym_sql] = ACTIONS(2465), + [sym_int_literal] = ACTIONS(2465), + [sym_float_literal] = ACTIONS(2465), + [sym_rune_literal] = ACTIONS(2465), + [anon_sym_SQUOTE] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(2465), + [anon_sym_c_SQUOTE] = ACTIONS(2465), + [anon_sym_c_DQUOTE] = ACTIONS(2465), + [anon_sym_r_SQUOTE] = ACTIONS(2465), + [anon_sym_r_DQUOTE] = ACTIONS(2465), + [sym_pseudo_compile_time_identifier] = ACTIONS(2465), + [anon_sym_shared] = ACTIONS(2465), + [anon_sym_map_LBRACK] = ACTIONS(2465), + [anon_sym_chan] = ACTIONS(2465), + [anon_sym_thread] = ACTIONS(2465), + [anon_sym_atomic] = ACTIONS(2465), }, [1150] = { [sym_line_comment] = STATE(1150), [sym_block_comment] = STATE(1150), - [sym_identifier] = ACTIONS(2197), - [anon_sym_LF] = ACTIONS(2197), - [anon_sym_CR] = ACTIONS(2197), - [anon_sym_CR_LF] = ACTIONS(2197), + [sym_identifier] = ACTIONS(3808), + [anon_sym_LF] = ACTIONS(3811), + [anon_sym_CR] = ACTIONS(3811), + [anon_sym_CR_LF] = ACTIONS(3811), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2197), - [anon_sym_DOT] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_COMMA] = ACTIONS(2197), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_RPAREN] = ACTIONS(2197), - [anon_sym_PIPE] = ACTIONS(2197), - [anon_sym_fn] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2197), - [anon_sym_SLASH] = ACTIONS(2197), - [anon_sym_PERCENT] = ACTIONS(2197), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_GT] = ACTIONS(2197), - [anon_sym_EQ_EQ] = ACTIONS(2197), - [anon_sym_BANG_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2197), - [anon_sym_mut] = ACTIONS(2197), - [anon_sym_PLUS_PLUS] = ACTIONS(2197), - [anon_sym_DASH_DASH] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_go] = ACTIONS(2197), - [anon_sym_spawn] = ACTIONS(2197), - [anon_sym_json_DOTdecode] = ACTIONS(2197), - [anon_sym_LBRACK2] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_CARET] = ACTIONS(2197), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_LT_DASH] = ACTIONS(2197), - [anon_sym_LT_LT] = ACTIONS(2197), - [anon_sym_GT_GT] = ACTIONS(2197), - [anon_sym_GT_GT_GT] = ACTIONS(2197), - [anon_sym_AMP_CARET] = ACTIONS(2197), - [anon_sym_AMP_AMP] = ACTIONS(2197), - [anon_sym_PIPE_PIPE] = ACTIONS(2197), - [anon_sym_or] = ACTIONS(2197), - [sym_none] = ACTIONS(2197), - [sym_true] = ACTIONS(2197), - [sym_false] = ACTIONS(2197), - [sym_nil] = ACTIONS(2197), - [anon_sym_QMARK_DOT] = ACTIONS(2197), - [anon_sym_POUND_LBRACK] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_DOLLARif] = ACTIONS(2197), - [anon_sym_is] = ACTIONS(2197), - [anon_sym_BANGis] = ACTIONS(2197), - [anon_sym_in] = ACTIONS(2197), - [anon_sym_BANGin] = ACTIONS(2197), - [anon_sym_match] = ACTIONS(2197), - [anon_sym_select] = ACTIONS(2197), - [anon_sym_lock] = ACTIONS(2197), - [anon_sym_rlock] = ACTIONS(2197), - [anon_sym_unsafe] = ACTIONS(2197), - [anon_sym_sql] = ACTIONS(2197), - [sym_int_literal] = ACTIONS(2197), - [sym_float_literal] = ACTIONS(2197), - [sym_rune_literal] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_DQUOTE] = ACTIONS(2197), - [anon_sym_c_SQUOTE] = ACTIONS(2197), - [anon_sym_c_DQUOTE] = ACTIONS(2197), - [anon_sym_r_SQUOTE] = ACTIONS(2197), - [anon_sym_r_DQUOTE] = ACTIONS(2197), - [sym_pseudo_compile_time_identifier] = ACTIONS(2197), - [anon_sym_shared] = ACTIONS(2197), - [anon_sym_map_LBRACK] = ACTIONS(2197), - [anon_sym_chan] = ACTIONS(2197), - [anon_sym_thread] = ACTIONS(2197), - [anon_sym_atomic] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(3811), + [anon_sym_DOT] = ACTIONS(3814), + [anon_sym_as] = ACTIONS(2937), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(3811), + [anon_sym_RBRACE] = ACTIONS(3808), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_fn] = ACTIONS(2937), + [anon_sym_PLUS] = ACTIONS(2937), + [anon_sym_DASH] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2937), + [anon_sym_SLASH] = ACTIONS(2937), + [anon_sym_PERCENT] = ACTIONS(2937), + [anon_sym_LT] = ACTIONS(2937), + [anon_sym_GT] = ACTIONS(2937), + [anon_sym_EQ_EQ] = ACTIONS(2937), + [anon_sym_BANG_EQ] = ACTIONS(2937), + [anon_sym_LT_EQ] = ACTIONS(2937), + [anon_sym_GT_EQ] = ACTIONS(2937), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3817), + [anon_sym_LBRACK] = ACTIONS(2935), + [anon_sym_struct] = ACTIONS(2937), + [anon_sym_mut] = ACTIONS(2937), + [anon_sym_COLON] = ACTIONS(3819), + [anon_sym_PLUS_PLUS] = ACTIONS(2937), + [anon_sym_DASH_DASH] = ACTIONS(2937), + [anon_sym_QMARK] = ACTIONS(2937), + [anon_sym_BANG] = ACTIONS(2937), + [anon_sym_go] = ACTIONS(2937), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2937), + [anon_sym_PIPE] = ACTIONS(2937), + [anon_sym_LBRACK2] = ACTIONS(2937), + [anon_sym_TILDE] = ACTIONS(2937), + [anon_sym_CARET] = ACTIONS(2937), + [anon_sym_AMP] = ACTIONS(2937), + [anon_sym_LT_DASH] = ACTIONS(2937), + [anon_sym_LT_LT] = ACTIONS(2937), + [anon_sym_GT_GT] = ACTIONS(2937), + [anon_sym_GT_GT_GT] = ACTIONS(2937), + [anon_sym_AMP_CARET] = ACTIONS(2937), + [anon_sym_AMP_AMP] = ACTIONS(2937), + [anon_sym_PIPE_PIPE] = ACTIONS(2937), + [anon_sym_or] = ACTIONS(2937), + [sym_none] = ACTIONS(2937), + [sym_true] = ACTIONS(2937), + [sym_false] = ACTIONS(2937), + [sym_nil] = ACTIONS(2937), + [anon_sym_QMARK_DOT] = ACTIONS(2937), + [anon_sym_POUND_LBRACK] = ACTIONS(2937), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_DOLLARif] = ACTIONS(2937), + [anon_sym_is] = ACTIONS(2937), + [anon_sym_BANGis] = ACTIONS(2937), + [anon_sym_in] = ACTIONS(2937), + [anon_sym_BANGin] = ACTIONS(2937), + [anon_sym_match] = ACTIONS(2937), + [anon_sym_select] = ACTIONS(2937), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(2937), + [anon_sym_sql] = ACTIONS(2937), + [sym_int_literal] = ACTIONS(2937), + [sym_float_literal] = ACTIONS(2937), + [sym_rune_literal] = ACTIONS(2937), + [anon_sym_SQUOTE] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2937), + [anon_sym_c_SQUOTE] = ACTIONS(2937), + [anon_sym_c_DQUOTE] = ACTIONS(2937), + [anon_sym_r_SQUOTE] = ACTIONS(2937), + [anon_sym_r_DQUOTE] = ACTIONS(2937), + [sym_pseudo_compile_time_identifier] = ACTIONS(2937), + [anon_sym_shared] = ACTIONS(2937), + [anon_sym_map_LBRACK] = ACTIONS(2937), + [anon_sym_chan] = ACTIONS(2937), + [anon_sym_thread] = ACTIONS(2937), + [anon_sym_atomic] = ACTIONS(2937), }, [1151] = { [sym_line_comment] = STATE(1151), [sym_block_comment] = STATE(1151), - [sym_identifier] = ACTIONS(2193), - [anon_sym_LF] = ACTIONS(2193), - [anon_sym_CR] = ACTIONS(2193), - [anon_sym_CR_LF] = ACTIONS(2193), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2193), - [anon_sym_DOT] = ACTIONS(2193), - [anon_sym_as] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2193), - [anon_sym_COMMA] = ACTIONS(2193), - [anon_sym_RBRACE] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2193), - [anon_sym_RPAREN] = ACTIONS(2193), - [anon_sym_PIPE] = ACTIONS(2193), - [anon_sym_fn] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_PERCENT] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_GT] = ACTIONS(2193), - [anon_sym_EQ_EQ] = ACTIONS(2193), - [anon_sym_BANG_EQ] = ACTIONS(2193), - [anon_sym_LT_EQ] = ACTIONS(2193), - [anon_sym_GT_EQ] = ACTIONS(2193), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2193), - [anon_sym_LBRACK] = ACTIONS(2191), - [anon_sym_struct] = ACTIONS(2193), - [anon_sym_mut] = ACTIONS(2193), - [anon_sym_PLUS_PLUS] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2193), - [anon_sym_QMARK] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2193), - [anon_sym_go] = ACTIONS(2193), - [anon_sym_spawn] = ACTIONS(2193), - [anon_sym_json_DOTdecode] = ACTIONS(2193), - [anon_sym_LBRACK2] = ACTIONS(2193), - [anon_sym_TILDE] = ACTIONS(2193), - [anon_sym_CARET] = ACTIONS(2193), - [anon_sym_AMP] = ACTIONS(2193), - [anon_sym_LT_DASH] = ACTIONS(2193), - [anon_sym_LT_LT] = ACTIONS(2193), - [anon_sym_GT_GT] = ACTIONS(2193), - [anon_sym_GT_GT_GT] = ACTIONS(2193), - [anon_sym_AMP_CARET] = ACTIONS(2193), - [anon_sym_AMP_AMP] = ACTIONS(2193), - [anon_sym_PIPE_PIPE] = ACTIONS(2193), - [anon_sym_or] = ACTIONS(2193), - [sym_none] = ACTIONS(2193), - [sym_true] = ACTIONS(2193), - [sym_false] = ACTIONS(2193), - [sym_nil] = ACTIONS(2193), - [anon_sym_QMARK_DOT] = ACTIONS(2193), - [anon_sym_POUND_LBRACK] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_DOLLARif] = ACTIONS(2193), - [anon_sym_is] = ACTIONS(2193), - [anon_sym_BANGis] = ACTIONS(2193), - [anon_sym_in] = ACTIONS(2193), - [anon_sym_BANGin] = ACTIONS(2193), - [anon_sym_match] = ACTIONS(2193), - [anon_sym_select] = ACTIONS(2193), - [anon_sym_lock] = ACTIONS(2193), - [anon_sym_rlock] = ACTIONS(2193), - [anon_sym_unsafe] = ACTIONS(2193), - [anon_sym_sql] = ACTIONS(2193), - [sym_int_literal] = ACTIONS(2193), - [sym_float_literal] = ACTIONS(2193), - [sym_rune_literal] = ACTIONS(2193), - [anon_sym_SQUOTE] = ACTIONS(2193), - [anon_sym_DQUOTE] = ACTIONS(2193), - [anon_sym_c_SQUOTE] = ACTIONS(2193), - [anon_sym_c_DQUOTE] = ACTIONS(2193), - [anon_sym_r_SQUOTE] = ACTIONS(2193), - [anon_sym_r_DQUOTE] = ACTIONS(2193), - [sym_pseudo_compile_time_identifier] = ACTIONS(2193), - [anon_sym_shared] = ACTIONS(2193), - [anon_sym_map_LBRACK] = ACTIONS(2193), - [anon_sym_chan] = ACTIONS(2193), - [anon_sym_thread] = ACTIONS(2193), - [anon_sym_atomic] = ACTIONS(2193), - }, - [1152] = { - [sym_line_comment] = STATE(1152), - [sym_block_comment] = STATE(1152), - [sym_identifier] = ACTIONS(2859), - [anon_sym_LF] = ACTIONS(2859), - [anon_sym_CR] = ACTIONS(2859), - [anon_sym_CR_LF] = ACTIONS(2859), + [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_SEMI] = ACTIONS(2859), - [anon_sym_DOT] = ACTIONS(2859), - [anon_sym_as] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2859), - [anon_sym_COMMA] = ACTIONS(2859), - [anon_sym_RBRACE] = ACTIONS(2859), - [anon_sym_LPAREN] = ACTIONS(2859), - [anon_sym_RPAREN] = ACTIONS(2859), - [anon_sym_PIPE] = ACTIONS(2859), - [anon_sym_fn] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2859), - [anon_sym_SLASH] = ACTIONS(2859), - [anon_sym_PERCENT] = ACTIONS(2859), - [anon_sym_LT] = ACTIONS(2859), - [anon_sym_GT] = ACTIONS(2859), - [anon_sym_EQ_EQ] = ACTIONS(2859), - [anon_sym_BANG_EQ] = ACTIONS(2859), - [anon_sym_LT_EQ] = ACTIONS(2859), - [anon_sym_GT_EQ] = ACTIONS(2859), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2857), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_mut] = ACTIONS(2859), - [anon_sym_PLUS_PLUS] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2859), - [anon_sym_QMARK] = ACTIONS(2859), - [anon_sym_BANG] = ACTIONS(2859), - [anon_sym_go] = ACTIONS(2859), - [anon_sym_spawn] = ACTIONS(2859), - [anon_sym_json_DOTdecode] = ACTIONS(2859), - [anon_sym_LBRACK2] = ACTIONS(2859), - [anon_sym_TILDE] = ACTIONS(2859), - [anon_sym_CARET] = ACTIONS(2859), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_LT_DASH] = ACTIONS(2859), - [anon_sym_LT_LT] = ACTIONS(2859), - [anon_sym_GT_GT] = ACTIONS(2859), - [anon_sym_GT_GT_GT] = ACTIONS(2859), - [anon_sym_AMP_CARET] = ACTIONS(2859), - [anon_sym_AMP_AMP] = ACTIONS(2859), - [anon_sym_PIPE_PIPE] = ACTIONS(2859), - [anon_sym_or] = ACTIONS(2859), - [sym_none] = ACTIONS(2859), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [sym_nil] = ACTIONS(2859), - [anon_sym_QMARK_DOT] = ACTIONS(2859), - [anon_sym_POUND_LBRACK] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_DOLLARif] = ACTIONS(2859), - [anon_sym_is] = ACTIONS(2859), - [anon_sym_BANGis] = ACTIONS(2859), - [anon_sym_in] = ACTIONS(2859), - [anon_sym_BANGin] = ACTIONS(2859), - [anon_sym_match] = ACTIONS(2859), - [anon_sym_select] = ACTIONS(2859), - [anon_sym_lock] = ACTIONS(2859), - [anon_sym_rlock] = ACTIONS(2859), - [anon_sym_unsafe] = ACTIONS(2859), - [anon_sym_sql] = ACTIONS(2859), - [sym_int_literal] = ACTIONS(2859), - [sym_float_literal] = ACTIONS(2859), - [sym_rune_literal] = ACTIONS(2859), - [anon_sym_SQUOTE] = ACTIONS(2859), - [anon_sym_DQUOTE] = ACTIONS(2859), - [anon_sym_c_SQUOTE] = ACTIONS(2859), - [anon_sym_c_DQUOTE] = ACTIONS(2859), - [anon_sym_r_SQUOTE] = ACTIONS(2859), - [anon_sym_r_DQUOTE] = ACTIONS(2859), - [sym_pseudo_compile_time_identifier] = ACTIONS(2859), - [anon_sym_shared] = ACTIONS(2859), - [anon_sym_map_LBRACK] = ACTIONS(2859), - [anon_sym_chan] = ACTIONS(2859), - [anon_sym_thread] = ACTIONS(2859), - [anon_sym_atomic] = ACTIONS(2859), - }, - [1153] = { - [sym_line_comment] = STATE(1153), + [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_fn] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_SLASH] = 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_PIPE] = 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_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), + [anon_sym_SQUOTE] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2457), + [anon_sym_c_SQUOTE] = ACTIONS(2457), + [anon_sym_c_DQUOTE] = ACTIONS(2457), + [anon_sym_r_SQUOTE] = ACTIONS(2457), + [anon_sym_r_DQUOTE] = 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), + }, + [1152] = { + [sym_line_comment] = STATE(1152), + [sym_block_comment] = STATE(1152), + [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_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_fn] = ACTIONS(2999), + [anon_sym_PLUS] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_SLASH] = 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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_DQUOTE] = ACTIONS(2999), + [anon_sym_c_SQUOTE] = ACTIONS(2999), + [anon_sym_c_DQUOTE] = ACTIONS(2999), + [anon_sym_r_SQUOTE] = ACTIONS(2999), + [anon_sym_r_DQUOTE] = 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), + }, + [1153] = { + [sym_line_comment] = STATE(1153), [sym_block_comment] = STATE(1153), - [sym_identifier] = ACTIONS(2431), - [anon_sym_LF] = ACTIONS(2431), - [anon_sym_CR] = ACTIONS(2431), - [anon_sym_CR_LF] = ACTIONS(2431), + [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_SEMI] = ACTIONS(2431), - [anon_sym_DOT] = ACTIONS(2431), - [anon_sym_as] = ACTIONS(2431), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_COMMA] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_RPAREN] = ACTIONS(2431), - [anon_sym_PIPE] = ACTIONS(2431), - [anon_sym_fn] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2431), - [anon_sym_DASH] = ACTIONS(2431), - [anon_sym_STAR] = ACTIONS(2431), - [anon_sym_SLASH] = ACTIONS(2431), - [anon_sym_PERCENT] = ACTIONS(2431), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_GT] = ACTIONS(2431), - [anon_sym_EQ_EQ] = ACTIONS(2431), - [anon_sym_BANG_EQ] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(2431), - [anon_sym_GT_EQ] = ACTIONS(2431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2429), - [anon_sym_struct] = ACTIONS(2431), - [anon_sym_mut] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_QMARK] = ACTIONS(2431), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_go] = ACTIONS(2431), - [anon_sym_spawn] = ACTIONS(2431), - [anon_sym_json_DOTdecode] = ACTIONS(2431), - [anon_sym_LBRACK2] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_CARET] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_LT_DASH] = ACTIONS(2431), - [anon_sym_LT_LT] = ACTIONS(2431), - [anon_sym_GT_GT] = ACTIONS(2431), - [anon_sym_GT_GT_GT] = ACTIONS(2431), - [anon_sym_AMP_CARET] = ACTIONS(2431), - [anon_sym_AMP_AMP] = ACTIONS(2431), - [anon_sym_PIPE_PIPE] = ACTIONS(2431), - [anon_sym_or] = ACTIONS(2431), - [sym_none] = ACTIONS(2431), - [sym_true] = ACTIONS(2431), - [sym_false] = ACTIONS(2431), - [sym_nil] = ACTIONS(2431), - [anon_sym_QMARK_DOT] = ACTIONS(2431), - [anon_sym_POUND_LBRACK] = ACTIONS(2431), - [anon_sym_if] = ACTIONS(2431), - [anon_sym_DOLLARif] = ACTIONS(2431), - [anon_sym_is] = ACTIONS(2431), - [anon_sym_BANGis] = ACTIONS(2431), - [anon_sym_in] = ACTIONS(2431), - [anon_sym_BANGin] = ACTIONS(2431), - [anon_sym_match] = ACTIONS(2431), - [anon_sym_select] = ACTIONS(2431), - [anon_sym_lock] = ACTIONS(2431), - [anon_sym_rlock] = ACTIONS(2431), - [anon_sym_unsafe] = ACTIONS(2431), - [anon_sym_sql] = ACTIONS(2431), - [sym_int_literal] = ACTIONS(2431), - [sym_float_literal] = ACTIONS(2431), - [sym_rune_literal] = ACTIONS(2431), - [anon_sym_SQUOTE] = ACTIONS(2431), - [anon_sym_DQUOTE] = ACTIONS(2431), - [anon_sym_c_SQUOTE] = ACTIONS(2431), - [anon_sym_c_DQUOTE] = ACTIONS(2431), - [anon_sym_r_SQUOTE] = ACTIONS(2431), - [anon_sym_r_DQUOTE] = ACTIONS(2431), - [sym_pseudo_compile_time_identifier] = ACTIONS(2431), - [anon_sym_shared] = ACTIONS(2431), - [anon_sym_map_LBRACK] = ACTIONS(2431), - [anon_sym_chan] = ACTIONS(2431), - [anon_sym_thread] = ACTIONS(2431), - [anon_sym_atomic] = ACTIONS(2431), + [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_fn] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_SLASH] = 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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2995), + [anon_sym_c_SQUOTE] = ACTIONS(2995), + [anon_sym_c_DQUOTE] = ACTIONS(2995), + [anon_sym_r_SQUOTE] = ACTIONS(2995), + [anon_sym_r_DQUOTE] = 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), }, [1154] = { [sym_line_comment] = STATE(1154), [sym_block_comment] = STATE(1154), - [sym_identifier] = ACTIONS(2843), - [anon_sym_LF] = ACTIONS(2843), - [anon_sym_CR] = ACTIONS(2843), - [anon_sym_CR_LF] = ACTIONS(2843), + [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_SEMI] = ACTIONS(2843), - [anon_sym_DOT] = ACTIONS(2843), - [anon_sym_as] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_COMMA] = ACTIONS(2843), - [anon_sym_RBRACE] = ACTIONS(2843), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_RPAREN] = ACTIONS(2843), - [anon_sym_PIPE] = ACTIONS(2843), - [anon_sym_fn] = ACTIONS(2843), - [anon_sym_PLUS] = ACTIONS(2843), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_STAR] = ACTIONS(2843), - [anon_sym_SLASH] = ACTIONS(2843), - [anon_sym_PERCENT] = ACTIONS(2843), - [anon_sym_LT] = ACTIONS(2843), - [anon_sym_GT] = ACTIONS(2843), - [anon_sym_EQ_EQ] = ACTIONS(2843), - [anon_sym_BANG_EQ] = ACTIONS(2843), - [anon_sym_LT_EQ] = ACTIONS(2843), - [anon_sym_GT_EQ] = ACTIONS(2843), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_struct] = ACTIONS(2843), - [anon_sym_mut] = ACTIONS(2843), - [anon_sym_PLUS_PLUS] = ACTIONS(2843), - [anon_sym_DASH_DASH] = ACTIONS(2843), - [anon_sym_QMARK] = ACTIONS(2843), - [anon_sym_BANG] = ACTIONS(2843), - [anon_sym_go] = ACTIONS(2843), - [anon_sym_spawn] = ACTIONS(2843), - [anon_sym_json_DOTdecode] = ACTIONS(2843), - [anon_sym_LBRACK2] = ACTIONS(2843), - [anon_sym_TILDE] = ACTIONS(2843), - [anon_sym_CARET] = ACTIONS(2843), - [anon_sym_AMP] = ACTIONS(2843), - [anon_sym_LT_DASH] = ACTIONS(2843), - [anon_sym_LT_LT] = ACTIONS(2843), - [anon_sym_GT_GT] = ACTIONS(2843), - [anon_sym_GT_GT_GT] = ACTIONS(2843), - [anon_sym_AMP_CARET] = ACTIONS(2843), - [anon_sym_AMP_AMP] = ACTIONS(2843), - [anon_sym_PIPE_PIPE] = ACTIONS(2843), - [anon_sym_or] = ACTIONS(2843), - [sym_none] = ACTIONS(2843), - [sym_true] = ACTIONS(2843), - [sym_false] = ACTIONS(2843), - [sym_nil] = ACTIONS(2843), - [anon_sym_QMARK_DOT] = ACTIONS(2843), - [anon_sym_POUND_LBRACK] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_DOLLARif] = ACTIONS(2843), - [anon_sym_is] = ACTIONS(2843), - [anon_sym_BANGis] = ACTIONS(2843), - [anon_sym_in] = ACTIONS(2843), - [anon_sym_BANGin] = ACTIONS(2843), - [anon_sym_match] = ACTIONS(2843), - [anon_sym_select] = ACTIONS(2843), - [anon_sym_lock] = ACTIONS(2843), - [anon_sym_rlock] = ACTIONS(2843), - [anon_sym_unsafe] = ACTIONS(2843), - [anon_sym_sql] = ACTIONS(2843), - [sym_int_literal] = ACTIONS(2843), - [sym_float_literal] = ACTIONS(2843), - [sym_rune_literal] = ACTIONS(2843), - [anon_sym_SQUOTE] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [anon_sym_c_SQUOTE] = ACTIONS(2843), - [anon_sym_c_DQUOTE] = ACTIONS(2843), - [anon_sym_r_SQUOTE] = ACTIONS(2843), - [anon_sym_r_DQUOTE] = ACTIONS(2843), - [sym_pseudo_compile_time_identifier] = ACTIONS(2843), - [anon_sym_shared] = ACTIONS(2843), - [anon_sym_map_LBRACK] = ACTIONS(2843), - [anon_sym_chan] = ACTIONS(2843), - [anon_sym_thread] = ACTIONS(2843), - [anon_sym_atomic] = ACTIONS(2843), + [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_fn] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_SLASH] = 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_PIPE] = 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_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), + [anon_sym_SQUOTE] = ACTIONS(2449), + [anon_sym_DQUOTE] = ACTIONS(2449), + [anon_sym_c_SQUOTE] = ACTIONS(2449), + [anon_sym_c_DQUOTE] = ACTIONS(2449), + [anon_sym_r_SQUOTE] = ACTIONS(2449), + [anon_sym_r_DQUOTE] = 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), }, [1155] = { [sym_line_comment] = STATE(1155), [sym_block_comment] = STATE(1155), - [sym_identifier] = ACTIONS(2155), - [anon_sym_LF] = ACTIONS(2155), - [anon_sym_CR] = ACTIONS(2155), - [anon_sym_CR_LF] = ACTIONS(2155), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LF] = ACTIONS(2401), + [anon_sym_CR] = ACTIONS(2401), + [anon_sym_CR_LF] = ACTIONS(2401), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2155), - [anon_sym_DOT] = ACTIONS(2155), - [anon_sym_as] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2155), - [anon_sym_COMMA] = ACTIONS(2155), - [anon_sym_RBRACE] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_RPAREN] = ACTIONS(2155), - [anon_sym_PIPE] = ACTIONS(2155), - [anon_sym_fn] = ACTIONS(2155), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2155), - [anon_sym_SLASH] = ACTIONS(2155), - [anon_sym_PERCENT] = ACTIONS(2155), - [anon_sym_LT] = ACTIONS(2155), - [anon_sym_GT] = ACTIONS(2155), - [anon_sym_EQ_EQ] = ACTIONS(2155), - [anon_sym_BANG_EQ] = ACTIONS(2155), - [anon_sym_LT_EQ] = ACTIONS(2155), - [anon_sym_GT_EQ] = ACTIONS(2155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2155), - [anon_sym_LBRACK] = ACTIONS(2153), - [anon_sym_struct] = ACTIONS(2155), - [anon_sym_mut] = ACTIONS(2155), - [anon_sym_PLUS_PLUS] = ACTIONS(2155), - [anon_sym_DASH_DASH] = ACTIONS(2155), - [anon_sym_QMARK] = ACTIONS(2155), - [anon_sym_BANG] = ACTIONS(2155), - [anon_sym_go] = ACTIONS(2155), - [anon_sym_spawn] = ACTIONS(2155), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2155), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_CARET] = ACTIONS(2155), - [anon_sym_AMP] = ACTIONS(2155), - [anon_sym_LT_DASH] = ACTIONS(2155), - [anon_sym_LT_LT] = ACTIONS(2155), - [anon_sym_GT_GT] = ACTIONS(2155), - [anon_sym_GT_GT_GT] = ACTIONS(2155), - [anon_sym_AMP_CARET] = ACTIONS(2155), - [anon_sym_AMP_AMP] = ACTIONS(2155), - [anon_sym_PIPE_PIPE] = ACTIONS(2155), - [anon_sym_or] = ACTIONS(2155), - [sym_none] = ACTIONS(2155), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [sym_nil] = ACTIONS(2155), - [anon_sym_QMARK_DOT] = ACTIONS(2155), - [anon_sym_POUND_LBRACK] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_DOLLARif] = ACTIONS(2155), - [anon_sym_is] = ACTIONS(2155), - [anon_sym_BANGis] = ACTIONS(2155), - [anon_sym_in] = ACTIONS(2155), - [anon_sym_BANGin] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2155), - [anon_sym_lock] = ACTIONS(2155), - [anon_sym_rlock] = ACTIONS(2155), - [anon_sym_unsafe] = ACTIONS(2155), - [anon_sym_sql] = ACTIONS(2155), - [sym_int_literal] = ACTIONS(2155), - [sym_float_literal] = ACTIONS(2155), - [sym_rune_literal] = ACTIONS(2155), - [anon_sym_SQUOTE] = ACTIONS(2155), - [anon_sym_DQUOTE] = ACTIONS(2155), - [anon_sym_c_SQUOTE] = ACTIONS(2155), - [anon_sym_c_DQUOTE] = ACTIONS(2155), - [anon_sym_r_SQUOTE] = ACTIONS(2155), - [anon_sym_r_DQUOTE] = ACTIONS(2155), - [sym_pseudo_compile_time_identifier] = ACTIONS(2155), - [anon_sym_shared] = ACTIONS(2155), - [anon_sym_map_LBRACK] = ACTIONS(2155), - [anon_sym_chan] = ACTIONS(2155), - [anon_sym_thread] = ACTIONS(2155), - [anon_sym_atomic] = ACTIONS(2155), + [anon_sym_SEMI] = ACTIONS(2401), + [anon_sym_DOT] = ACTIONS(2401), + [anon_sym_as] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_COMMA] = ACTIONS(2401), + [anon_sym_RBRACE] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2401), + [anon_sym_RPAREN] = ACTIONS(2401), + [anon_sym_fn] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2401), + [anon_sym_SLASH] = ACTIONS(2401), + [anon_sym_PERCENT] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_GT] = ACTIONS(2401), + [anon_sym_EQ_EQ] = ACTIONS(2401), + [anon_sym_BANG_EQ] = ACTIONS(2401), + [anon_sym_LT_EQ] = ACTIONS(2401), + [anon_sym_GT_EQ] = ACTIONS(2401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_struct] = ACTIONS(2401), + [anon_sym_mut] = ACTIONS(2401), + [anon_sym_PLUS_PLUS] = ACTIONS(2401), + [anon_sym_DASH_DASH] = ACTIONS(2401), + [anon_sym_QMARK] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2401), + [anon_sym_go] = ACTIONS(2401), + [anon_sym_spawn] = ACTIONS(2401), + [anon_sym_json_DOTdecode] = ACTIONS(2401), + [anon_sym_PIPE] = ACTIONS(2401), + [anon_sym_LBRACK2] = ACTIONS(2401), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2401), + [anon_sym_LT_DASH] = ACTIONS(2401), + [anon_sym_LT_LT] = ACTIONS(2401), + [anon_sym_GT_GT] = ACTIONS(2401), + [anon_sym_GT_GT_GT] = ACTIONS(2401), + [anon_sym_AMP_CARET] = ACTIONS(2401), + [anon_sym_AMP_AMP] = ACTIONS(2401), + [anon_sym_PIPE_PIPE] = ACTIONS(2401), + [anon_sym_or] = ACTIONS(2401), + [sym_none] = ACTIONS(2401), + [sym_true] = ACTIONS(2401), + [sym_false] = ACTIONS(2401), + [sym_nil] = ACTIONS(2401), + [anon_sym_QMARK_DOT] = ACTIONS(2401), + [anon_sym_POUND_LBRACK] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_DOLLARif] = ACTIONS(2401), + [anon_sym_is] = ACTIONS(2401), + [anon_sym_BANGis] = ACTIONS(2401), + [anon_sym_in] = ACTIONS(2401), + [anon_sym_BANGin] = ACTIONS(2401), + [anon_sym_match] = ACTIONS(2401), + [anon_sym_select] = ACTIONS(2401), + [anon_sym_lock] = ACTIONS(2401), + [anon_sym_rlock] = ACTIONS(2401), + [anon_sym_unsafe] = ACTIONS(2401), + [anon_sym_sql] = ACTIONS(2401), + [sym_int_literal] = ACTIONS(2401), + [sym_float_literal] = ACTIONS(2401), + [sym_rune_literal] = ACTIONS(2401), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(2401), + [anon_sym_c_SQUOTE] = ACTIONS(2401), + [anon_sym_c_DQUOTE] = ACTIONS(2401), + [anon_sym_r_SQUOTE] = ACTIONS(2401), + [anon_sym_r_DQUOTE] = ACTIONS(2401), + [sym_pseudo_compile_time_identifier] = ACTIONS(2401), + [anon_sym_shared] = ACTIONS(2401), + [anon_sym_map_LBRACK] = ACTIONS(2401), + [anon_sym_chan] = ACTIONS(2401), + [anon_sym_thread] = ACTIONS(2401), + [anon_sym_atomic] = ACTIONS(2401), }, [1156] = { [sym_line_comment] = STATE(1156), [sym_block_comment] = STATE(1156), - [sym_identifier] = ACTIONS(3066), - [anon_sym_LF] = ACTIONS(3066), - [anon_sym_CR] = ACTIONS(3066), - [anon_sym_CR_LF] = ACTIONS(3066), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(2105), + [anon_sym_CR] = ACTIONS(2105), + [anon_sym_CR_LF] = ACTIONS(2105), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_as] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_COMMA] = ACTIONS(3066), - [anon_sym_RBRACE] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_RPAREN] = ACTIONS(3066), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_fn] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_SLASH] = ACTIONS(3066), - [anon_sym_PERCENT] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_GT] = ACTIONS(3066), - [anon_sym_EQ_EQ] = ACTIONS(3066), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_LT_EQ] = ACTIONS(3066), - [anon_sym_GT_EQ] = ACTIONS(3066), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_struct] = ACTIONS(3066), - [anon_sym_mut] = ACTIONS(3066), - [anon_sym_PLUS_PLUS] = ACTIONS(3066), - [anon_sym_DASH_DASH] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_BANG] = ACTIONS(3066), - [anon_sym_go] = ACTIONS(3066), - [anon_sym_spawn] = ACTIONS(3066), - [anon_sym_json_DOTdecode] = ACTIONS(3066), - [anon_sym_LBRACK2] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3066), - [anon_sym_CARET] = ACTIONS(3066), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_LT_DASH] = ACTIONS(3066), - [anon_sym_LT_LT] = ACTIONS(3066), - [anon_sym_GT_GT] = ACTIONS(3066), - [anon_sym_GT_GT_GT] = ACTIONS(3066), - [anon_sym_AMP_CARET] = ACTIONS(3066), - [anon_sym_AMP_AMP] = ACTIONS(3066), - [anon_sym_PIPE_PIPE] = ACTIONS(3066), - [anon_sym_or] = ACTIONS(3066), - [sym_none] = ACTIONS(3066), - [sym_true] = ACTIONS(3066), - [sym_false] = ACTIONS(3066), - [sym_nil] = ACTIONS(3066), - [anon_sym_QMARK_DOT] = ACTIONS(3066), - [anon_sym_POUND_LBRACK] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_DOLLARif] = ACTIONS(3066), - [anon_sym_is] = ACTIONS(3066), - [anon_sym_BANGis] = ACTIONS(3066), - [anon_sym_in] = ACTIONS(3066), - [anon_sym_BANGin] = ACTIONS(3066), - [anon_sym_match] = ACTIONS(3066), - [anon_sym_select] = ACTIONS(3066), - [anon_sym_lock] = ACTIONS(3066), - [anon_sym_rlock] = ACTIONS(3066), - [anon_sym_unsafe] = ACTIONS(3066), - [anon_sym_sql] = ACTIONS(3066), - [sym_int_literal] = ACTIONS(3066), - [sym_float_literal] = ACTIONS(3066), - [sym_rune_literal] = ACTIONS(3066), - [anon_sym_SQUOTE] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3066), - [anon_sym_c_SQUOTE] = ACTIONS(3066), - [anon_sym_c_DQUOTE] = ACTIONS(3066), - [anon_sym_r_SQUOTE] = ACTIONS(3066), - [anon_sym_r_DQUOTE] = ACTIONS(3066), - [sym_pseudo_compile_time_identifier] = ACTIONS(3066), - [anon_sym_shared] = ACTIONS(3066), - [anon_sym_map_LBRACK] = ACTIONS(3066), - [anon_sym_chan] = ACTIONS(3066), - [anon_sym_thread] = ACTIONS(3066), - [anon_sym_atomic] = ACTIONS(3066), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_DOT] = ACTIONS(2105), + [anon_sym_as] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_COMMA] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_RPAREN] = ACTIONS(2105), + [anon_sym_fn] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_PERCENT] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_GT] = ACTIONS(2105), + [anon_sym_EQ_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ] = ACTIONS(2105), + [anon_sym_LT_EQ] = ACTIONS(2105), + [anon_sym_GT_EQ] = ACTIONS(2105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_struct] = ACTIONS(2105), + [anon_sym_mut] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [anon_sym_QMARK] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_go] = ACTIONS(2105), + [anon_sym_spawn] = ACTIONS(2105), + [anon_sym_json_DOTdecode] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_LBRACK2] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_LT_DASH] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2105), + [anon_sym_AMP_CARET] = ACTIONS(2105), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [anon_sym_or] = ACTIONS(2105), + [sym_none] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_nil] = ACTIONS(2105), + [anon_sym_QMARK_DOT] = ACTIONS(2105), + [anon_sym_POUND_LBRACK] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_DOLLARif] = ACTIONS(2105), + [anon_sym_is] = ACTIONS(2105), + [anon_sym_BANGis] = ACTIONS(2105), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_BANGin] = ACTIONS(2105), + [anon_sym_match] = ACTIONS(2105), + [anon_sym_select] = ACTIONS(2105), + [anon_sym_lock] = ACTIONS(2105), + [anon_sym_rlock] = ACTIONS(2105), + [anon_sym_unsafe] = ACTIONS(2105), + [anon_sym_sql] = ACTIONS(2105), + [sym_int_literal] = ACTIONS(2105), + [sym_float_literal] = ACTIONS(2105), + [sym_rune_literal] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_c_SQUOTE] = ACTIONS(2105), + [anon_sym_c_DQUOTE] = ACTIONS(2105), + [anon_sym_r_SQUOTE] = ACTIONS(2105), + [anon_sym_r_DQUOTE] = ACTIONS(2105), + [sym_pseudo_compile_time_identifier] = ACTIONS(2105), + [anon_sym_shared] = ACTIONS(2105), + [anon_sym_map_LBRACK] = ACTIONS(2105), + [anon_sym_chan] = ACTIONS(2105), + [anon_sym_thread] = ACTIONS(2105), + [anon_sym_atomic] = ACTIONS(2105), }, [1157] = { [sym_line_comment] = STATE(1157), [sym_block_comment] = STATE(1157), - [sym_identifier] = ACTIONS(2201), - [anon_sym_LF] = ACTIONS(2201), - [anon_sym_CR] = ACTIONS(2201), - [anon_sym_CR_LF] = ACTIONS(2201), + [sym_identifier] = ACTIONS(2387), + [anon_sym_LF] = ACTIONS(2387), + [anon_sym_CR] = ACTIONS(2387), + [anon_sym_CR_LF] = ACTIONS(2387), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2201), - [anon_sym_DOT] = ACTIONS(2201), - [anon_sym_as] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(2201), - [anon_sym_COMMA] = ACTIONS(2201), - [anon_sym_RBRACE] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2201), - [anon_sym_RPAREN] = ACTIONS(2201), - [anon_sym_PIPE] = ACTIONS(2201), - [anon_sym_fn] = ACTIONS(2201), - [anon_sym_PLUS] = ACTIONS(2201), - [anon_sym_DASH] = ACTIONS(2201), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_SLASH] = ACTIONS(2201), - [anon_sym_PERCENT] = ACTIONS(2201), - [anon_sym_LT] = ACTIONS(2201), - [anon_sym_GT] = ACTIONS(2201), - [anon_sym_EQ_EQ] = ACTIONS(2201), - [anon_sym_BANG_EQ] = ACTIONS(2201), - [anon_sym_LT_EQ] = ACTIONS(2201), - [anon_sym_GT_EQ] = ACTIONS(2201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2199), - [anon_sym_struct] = ACTIONS(2201), - [anon_sym_mut] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_QMARK] = ACTIONS(2201), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_go] = ACTIONS(2201), - [anon_sym_spawn] = ACTIONS(2201), - [anon_sym_json_DOTdecode] = ACTIONS(2201), - [anon_sym_LBRACK2] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_LT_DASH] = ACTIONS(2201), - [anon_sym_LT_LT] = ACTIONS(2201), - [anon_sym_GT_GT] = ACTIONS(2201), - [anon_sym_GT_GT_GT] = ACTIONS(2201), - [anon_sym_AMP_CARET] = ACTIONS(2201), - [anon_sym_AMP_AMP] = ACTIONS(2201), - [anon_sym_PIPE_PIPE] = ACTIONS(2201), - [anon_sym_or] = ACTIONS(2201), - [sym_none] = ACTIONS(2201), - [sym_true] = ACTIONS(2201), - [sym_false] = ACTIONS(2201), - [sym_nil] = ACTIONS(2201), - [anon_sym_QMARK_DOT] = ACTIONS(2201), - [anon_sym_POUND_LBRACK] = ACTIONS(2201), - [anon_sym_if] = ACTIONS(2201), - [anon_sym_DOLLARif] = ACTIONS(2201), - [anon_sym_is] = ACTIONS(2201), - [anon_sym_BANGis] = ACTIONS(2201), - [anon_sym_in] = ACTIONS(2201), - [anon_sym_BANGin] = ACTIONS(2201), - [anon_sym_match] = ACTIONS(2201), - [anon_sym_select] = ACTIONS(2201), - [anon_sym_lock] = ACTIONS(2201), - [anon_sym_rlock] = ACTIONS(2201), - [anon_sym_unsafe] = ACTIONS(2201), - [anon_sym_sql] = ACTIONS(2201), - [sym_int_literal] = ACTIONS(2201), - [sym_float_literal] = ACTIONS(2201), - [sym_rune_literal] = ACTIONS(2201), - [anon_sym_SQUOTE] = ACTIONS(2201), - [anon_sym_DQUOTE] = ACTIONS(2201), - [anon_sym_c_SQUOTE] = ACTIONS(2201), - [anon_sym_c_DQUOTE] = ACTIONS(2201), - [anon_sym_r_SQUOTE] = ACTIONS(2201), - [anon_sym_r_DQUOTE] = ACTIONS(2201), - [sym_pseudo_compile_time_identifier] = ACTIONS(2201), - [anon_sym_shared] = ACTIONS(2201), - [anon_sym_map_LBRACK] = ACTIONS(2201), - [anon_sym_chan] = ACTIONS(2201), - [anon_sym_thread] = ACTIONS(2201), - [anon_sym_atomic] = ACTIONS(2201), + [anon_sym_SEMI] = ACTIONS(2387), + [anon_sym_DOT] = ACTIONS(2387), + [anon_sym_as] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2387), + [anon_sym_COMMA] = ACTIONS(2387), + [anon_sym_RBRACE] = ACTIONS(2387), + [anon_sym_LPAREN] = ACTIONS(2387), + [anon_sym_RPAREN] = ACTIONS(2387), + [anon_sym_fn] = ACTIONS(2387), + [anon_sym_PLUS] = ACTIONS(2387), + [anon_sym_DASH] = ACTIONS(2387), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_SLASH] = ACTIONS(2387), + [anon_sym_PERCENT] = ACTIONS(2387), + [anon_sym_LT] = ACTIONS(2387), + [anon_sym_GT] = ACTIONS(2387), + [anon_sym_EQ_EQ] = ACTIONS(2387), + [anon_sym_BANG_EQ] = ACTIONS(2387), + [anon_sym_LT_EQ] = ACTIONS(2387), + [anon_sym_GT_EQ] = ACTIONS(2387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2387), + [anon_sym_LBRACK] = ACTIONS(2385), + [anon_sym_struct] = ACTIONS(2387), + [anon_sym_mut] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(2387), + [anon_sym_DASH_DASH] = ACTIONS(2387), + [anon_sym_QMARK] = ACTIONS(2387), + [anon_sym_BANG] = ACTIONS(2387), + [anon_sym_go] = ACTIONS(2387), + [anon_sym_spawn] = ACTIONS(2387), + [anon_sym_json_DOTdecode] = ACTIONS(2387), + [anon_sym_PIPE] = ACTIONS(2387), + [anon_sym_LBRACK2] = ACTIONS(2387), + [anon_sym_TILDE] = ACTIONS(2387), + [anon_sym_CARET] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2387), + [anon_sym_LT_DASH] = ACTIONS(2387), + [anon_sym_LT_LT] = ACTIONS(2387), + [anon_sym_GT_GT] = ACTIONS(2387), + [anon_sym_GT_GT_GT] = ACTIONS(2387), + [anon_sym_AMP_CARET] = ACTIONS(2387), + [anon_sym_AMP_AMP] = ACTIONS(2387), + [anon_sym_PIPE_PIPE] = ACTIONS(2387), + [anon_sym_or] = ACTIONS(2387), + [sym_none] = ACTIONS(2387), + [sym_true] = ACTIONS(2387), + [sym_false] = ACTIONS(2387), + [sym_nil] = ACTIONS(2387), + [anon_sym_QMARK_DOT] = ACTIONS(2387), + [anon_sym_POUND_LBRACK] = ACTIONS(2387), + [anon_sym_if] = ACTIONS(2387), + [anon_sym_DOLLARif] = ACTIONS(2387), + [anon_sym_is] = ACTIONS(2387), + [anon_sym_BANGis] = ACTIONS(2387), + [anon_sym_in] = ACTIONS(2387), + [anon_sym_BANGin] = ACTIONS(2387), + [anon_sym_match] = ACTIONS(2387), + [anon_sym_select] = ACTIONS(2387), + [anon_sym_lock] = ACTIONS(2387), + [anon_sym_rlock] = ACTIONS(2387), + [anon_sym_unsafe] = ACTIONS(2387), + [anon_sym_sql] = ACTIONS(2387), + [sym_int_literal] = ACTIONS(2387), + [sym_float_literal] = ACTIONS(2387), + [sym_rune_literal] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [anon_sym_DQUOTE] = ACTIONS(2387), + [anon_sym_c_SQUOTE] = ACTIONS(2387), + [anon_sym_c_DQUOTE] = ACTIONS(2387), + [anon_sym_r_SQUOTE] = ACTIONS(2387), + [anon_sym_r_DQUOTE] = ACTIONS(2387), + [sym_pseudo_compile_time_identifier] = ACTIONS(2387), + [anon_sym_shared] = ACTIONS(2387), + [anon_sym_map_LBRACK] = ACTIONS(2387), + [anon_sym_chan] = ACTIONS(2387), + [anon_sym_thread] = ACTIONS(2387), + [anon_sym_atomic] = ACTIONS(2387), }, [1158] = { [sym_line_comment] = STATE(1158), [sym_block_comment] = STATE(1158), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LF] = ACTIONS(2237), - [anon_sym_CR] = ACTIONS(2237), - [anon_sym_CR_LF] = ACTIONS(2237), + [sym_identifier] = ACTIONS(2421), + [anon_sym_LF] = ACTIONS(2421), + [anon_sym_CR] = ACTIONS(2421), + [anon_sym_CR_LF] = ACTIONS(2421), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_DOT] = ACTIONS(2237), - [anon_sym_as] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_COMMA] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_RPAREN] = ACTIONS(2237), - [anon_sym_PIPE] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_PERCENT] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_GT] = ACTIONS(2237), - [anon_sym_EQ_EQ] = ACTIONS(2237), - [anon_sym_BANG_EQ] = ACTIONS(2237), - [anon_sym_LT_EQ] = ACTIONS(2237), - [anon_sym_GT_EQ] = ACTIONS(2237), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2237), - [anon_sym_mut] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [anon_sym_QMARK] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_go] = ACTIONS(2237), - [anon_sym_spawn] = ACTIONS(2237), - [anon_sym_json_DOTdecode] = ACTIONS(2237), - [anon_sym_LBRACK2] = ACTIONS(2237), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_CARET] = ACTIONS(2237), - [anon_sym_AMP] = ACTIONS(2237), - [anon_sym_LT_DASH] = ACTIONS(2237), - [anon_sym_LT_LT] = ACTIONS(2237), - [anon_sym_GT_GT] = ACTIONS(2237), - [anon_sym_GT_GT_GT] = ACTIONS(2237), - [anon_sym_AMP_CARET] = ACTIONS(2237), - [anon_sym_AMP_AMP] = ACTIONS(2237), - [anon_sym_PIPE_PIPE] = ACTIONS(2237), - [anon_sym_or] = ACTIONS(2237), - [sym_none] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_nil] = ACTIONS(2237), - [anon_sym_QMARK_DOT] = ACTIONS(2237), - [anon_sym_POUND_LBRACK] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_DOLLARif] = ACTIONS(2237), - [anon_sym_is] = ACTIONS(2237), - [anon_sym_BANGis] = ACTIONS(2237), - [anon_sym_in] = ACTIONS(2237), - [anon_sym_BANGin] = ACTIONS(2237), - [anon_sym_match] = ACTIONS(2237), - [anon_sym_select] = ACTIONS(2237), - [anon_sym_lock] = ACTIONS(2237), - [anon_sym_rlock] = ACTIONS(2237), - [anon_sym_unsafe] = ACTIONS(2237), - [anon_sym_sql] = ACTIONS(2237), - [sym_int_literal] = ACTIONS(2237), - [sym_float_literal] = ACTIONS(2237), - [sym_rune_literal] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2237), - [anon_sym_c_SQUOTE] = ACTIONS(2237), - [anon_sym_c_DQUOTE] = ACTIONS(2237), - [anon_sym_r_SQUOTE] = ACTIONS(2237), - [anon_sym_r_DQUOTE] = ACTIONS(2237), - [sym_pseudo_compile_time_identifier] = ACTIONS(2237), - [anon_sym_shared] = ACTIONS(2237), - [anon_sym_map_LBRACK] = ACTIONS(2237), - [anon_sym_chan] = ACTIONS(2237), - [anon_sym_thread] = ACTIONS(2237), - [anon_sym_atomic] = ACTIONS(2237), + [anon_sym_SEMI] = ACTIONS(2421), + [anon_sym_DOT] = ACTIONS(2421), + [anon_sym_as] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_COMMA] = ACTIONS(2421), + [anon_sym_RBRACE] = ACTIONS(2421), + [anon_sym_LPAREN] = ACTIONS(2421), + [anon_sym_RPAREN] = ACTIONS(2421), + [anon_sym_fn] = ACTIONS(2421), + [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_SLASH] = ACTIONS(2421), + [anon_sym_PERCENT] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2421), + [anon_sym_GT] = ACTIONS(2421), + [anon_sym_EQ_EQ] = ACTIONS(2421), + [anon_sym_BANG_EQ] = ACTIONS(2421), + [anon_sym_LT_EQ] = ACTIONS(2421), + [anon_sym_GT_EQ] = ACTIONS(2421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2421), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_struct] = ACTIONS(2421), + [anon_sym_mut] = ACTIONS(2421), + [anon_sym_PLUS_PLUS] = ACTIONS(2421), + [anon_sym_DASH_DASH] = ACTIONS(2421), + [anon_sym_QMARK] = ACTIONS(2421), + [anon_sym_BANG] = ACTIONS(2421), + [anon_sym_go] = ACTIONS(2421), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(2421), + [anon_sym_PIPE] = ACTIONS(2421), + [anon_sym_LBRACK2] = ACTIONS(2421), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_CARET] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2421), + [anon_sym_LT_DASH] = ACTIONS(2421), + [anon_sym_LT_LT] = ACTIONS(2421), + [anon_sym_GT_GT] = ACTIONS(2421), + [anon_sym_GT_GT_GT] = ACTIONS(2421), + [anon_sym_AMP_CARET] = ACTIONS(2421), + [anon_sym_AMP_AMP] = ACTIONS(2421), + [anon_sym_PIPE_PIPE] = ACTIONS(2421), + [anon_sym_or] = ACTIONS(2421), + [sym_none] = ACTIONS(2421), + [sym_true] = ACTIONS(2421), + [sym_false] = ACTIONS(2421), + [sym_nil] = ACTIONS(2421), + [anon_sym_QMARK_DOT] = ACTIONS(2421), + [anon_sym_POUND_LBRACK] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_DOLLARif] = ACTIONS(2421), + [anon_sym_is] = ACTIONS(2421), + [anon_sym_BANGis] = ACTIONS(2421), + [anon_sym_in] = ACTIONS(2421), + [anon_sym_BANGin] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(2421), + [anon_sym_select] = ACTIONS(2421), + [anon_sym_lock] = ACTIONS(2421), + [anon_sym_rlock] = ACTIONS(2421), + [anon_sym_unsafe] = ACTIONS(2421), + [anon_sym_sql] = ACTIONS(2421), + [sym_int_literal] = ACTIONS(2421), + [sym_float_literal] = ACTIONS(2421), + [sym_rune_literal] = ACTIONS(2421), + [anon_sym_SQUOTE] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(2421), + [anon_sym_c_SQUOTE] = ACTIONS(2421), + [anon_sym_c_DQUOTE] = ACTIONS(2421), + [anon_sym_r_SQUOTE] = ACTIONS(2421), + [anon_sym_r_DQUOTE] = ACTIONS(2421), + [sym_pseudo_compile_time_identifier] = ACTIONS(2421), + [anon_sym_shared] = ACTIONS(2421), + [anon_sym_map_LBRACK] = ACTIONS(2421), + [anon_sym_chan] = ACTIONS(2421), + [anon_sym_thread] = ACTIONS(2421), + [anon_sym_atomic] = ACTIONS(2421), }, [1159] = { [sym_line_comment] = STATE(1159), [sym_block_comment] = STATE(1159), - [sym_identifier] = ACTIONS(2821), - [anon_sym_LF] = ACTIONS(2821), - [anon_sym_CR] = ACTIONS(2821), - [anon_sym_CR_LF] = ACTIONS(2821), + [sym_identifier] = ACTIONS(2929), + [anon_sym_LF] = ACTIONS(2929), + [anon_sym_CR] = ACTIONS(2929), + [anon_sym_CR_LF] = ACTIONS(2929), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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_SLASH] = 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_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), - [anon_sym_SQUOTE] = ACTIONS(2821), - [anon_sym_DQUOTE] = ACTIONS(2821), - [anon_sym_c_SQUOTE] = ACTIONS(2821), - [anon_sym_c_DQUOTE] = ACTIONS(2821), - [anon_sym_r_SQUOTE] = ACTIONS(2821), - [anon_sym_r_DQUOTE] = 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_SEMI] = ACTIONS(2929), + [anon_sym_DOT] = ACTIONS(2929), + [anon_sym_as] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2929), + [anon_sym_COMMA] = ACTIONS(2929), + [anon_sym_RBRACE] = ACTIONS(2929), + [anon_sym_LPAREN] = ACTIONS(2929), + [anon_sym_RPAREN] = ACTIONS(2929), + [anon_sym_fn] = ACTIONS(2929), + [anon_sym_PLUS] = ACTIONS(2929), + [anon_sym_DASH] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_SLASH] = ACTIONS(2929), + [anon_sym_PERCENT] = ACTIONS(2929), + [anon_sym_LT] = ACTIONS(2929), + [anon_sym_GT] = ACTIONS(2929), + [anon_sym_EQ_EQ] = ACTIONS(2929), + [anon_sym_BANG_EQ] = ACTIONS(2929), + [anon_sym_LT_EQ] = ACTIONS(2929), + [anon_sym_GT_EQ] = ACTIONS(2929), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_struct] = ACTIONS(2929), + [anon_sym_mut] = ACTIONS(2929), + [anon_sym_PLUS_PLUS] = ACTIONS(2929), + [anon_sym_DASH_DASH] = ACTIONS(2929), + [anon_sym_QMARK] = ACTIONS(2929), + [anon_sym_BANG] = ACTIONS(2929), + [anon_sym_go] = ACTIONS(2929), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2929), + [anon_sym_PIPE] = ACTIONS(2929), + [anon_sym_LBRACK2] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_CARET] = ACTIONS(2929), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_LT_DASH] = ACTIONS(2929), + [anon_sym_LT_LT] = ACTIONS(2929), + [anon_sym_GT_GT] = ACTIONS(2929), + [anon_sym_GT_GT_GT] = ACTIONS(2929), + [anon_sym_AMP_CARET] = ACTIONS(2929), + [anon_sym_AMP_AMP] = ACTIONS(2929), + [anon_sym_PIPE_PIPE] = ACTIONS(2929), + [anon_sym_or] = ACTIONS(2929), + [sym_none] = ACTIONS(2929), + [sym_true] = ACTIONS(2929), + [sym_false] = ACTIONS(2929), + [sym_nil] = ACTIONS(2929), + [anon_sym_QMARK_DOT] = ACTIONS(2929), + [anon_sym_POUND_LBRACK] = ACTIONS(2929), + [anon_sym_if] = ACTIONS(2929), + [anon_sym_DOLLARif] = ACTIONS(2929), + [anon_sym_is] = ACTIONS(2929), + [anon_sym_BANGis] = ACTIONS(2929), + [anon_sym_in] = ACTIONS(2929), + [anon_sym_BANGin] = ACTIONS(2929), + [anon_sym_match] = ACTIONS(2929), + [anon_sym_select] = ACTIONS(2929), + [anon_sym_lock] = ACTIONS(2929), + [anon_sym_rlock] = ACTIONS(2929), + [anon_sym_unsafe] = ACTIONS(2929), + [anon_sym_sql] = ACTIONS(2929), + [sym_int_literal] = ACTIONS(2929), + [sym_float_literal] = ACTIONS(2929), + [sym_rune_literal] = ACTIONS(2929), + [anon_sym_SQUOTE] = ACTIONS(2929), + [anon_sym_DQUOTE] = ACTIONS(2929), + [anon_sym_c_SQUOTE] = ACTIONS(2929), + [anon_sym_c_DQUOTE] = ACTIONS(2929), + [anon_sym_r_SQUOTE] = ACTIONS(2929), + [anon_sym_r_DQUOTE] = ACTIONS(2929), + [sym_pseudo_compile_time_identifier] = ACTIONS(2929), + [anon_sym_shared] = ACTIONS(2929), + [anon_sym_map_LBRACK] = ACTIONS(2929), + [anon_sym_chan] = ACTIONS(2929), + [anon_sym_thread] = ACTIONS(2929), + [anon_sym_atomic] = ACTIONS(2929), }, [1160] = { [sym_line_comment] = STATE(1160), [sym_block_comment] = STATE(1160), - [sym_identifier] = ACTIONS(2779), - [anon_sym_LF] = ACTIONS(2779), - [anon_sym_CR] = ACTIONS(2779), - [anon_sym_CR_LF] = ACTIONS(2779), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2779), - [anon_sym_DOT] = ACTIONS(2779), - [anon_sym_as] = ACTIONS(2779), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_COMMA] = ACTIONS(2779), - [anon_sym_RBRACE] = ACTIONS(2779), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_RPAREN] = ACTIONS(2779), - [anon_sym_PIPE] = ACTIONS(2779), - [anon_sym_fn] = ACTIONS(2779), - [anon_sym_PLUS] = ACTIONS(2779), - [anon_sym_DASH] = ACTIONS(2779), - [anon_sym_STAR] = ACTIONS(2779), - [anon_sym_SLASH] = ACTIONS(2779), - [anon_sym_PERCENT] = ACTIONS(2779), - [anon_sym_LT] = ACTIONS(2779), - [anon_sym_GT] = ACTIONS(2779), - [anon_sym_EQ_EQ] = ACTIONS(2779), - [anon_sym_BANG_EQ] = ACTIONS(2779), - [anon_sym_LT_EQ] = ACTIONS(2779), - [anon_sym_GT_EQ] = ACTIONS(2779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2779), - [anon_sym_mut] = ACTIONS(2779), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_QMARK] = ACTIONS(2779), - [anon_sym_BANG] = ACTIONS(2779), - [anon_sym_go] = ACTIONS(2779), - [anon_sym_spawn] = ACTIONS(2779), - [anon_sym_json_DOTdecode] = ACTIONS(2779), - [anon_sym_LBRACK2] = ACTIONS(2779), - [anon_sym_TILDE] = ACTIONS(2779), - [anon_sym_CARET] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2779), - [anon_sym_LT_DASH] = ACTIONS(2779), - [anon_sym_LT_LT] = ACTIONS(2779), - [anon_sym_GT_GT] = ACTIONS(2779), - [anon_sym_GT_GT_GT] = ACTIONS(2779), - [anon_sym_AMP_CARET] = ACTIONS(2779), - [anon_sym_AMP_AMP] = ACTIONS(2779), - [anon_sym_PIPE_PIPE] = ACTIONS(2779), - [anon_sym_or] = ACTIONS(2779), - [sym_none] = ACTIONS(2779), - [sym_true] = ACTIONS(2779), - [sym_false] = ACTIONS(2779), - [sym_nil] = ACTIONS(2779), - [anon_sym_QMARK_DOT] = ACTIONS(2779), - [anon_sym_POUND_LBRACK] = ACTIONS(2779), - [anon_sym_if] = ACTIONS(2779), - [anon_sym_DOLLARif] = ACTIONS(2779), - [anon_sym_is] = ACTIONS(2779), - [anon_sym_BANGis] = ACTIONS(2779), - [anon_sym_in] = ACTIONS(2779), - [anon_sym_BANGin] = ACTIONS(2779), - [anon_sym_match] = ACTIONS(2779), - [anon_sym_select] = ACTIONS(2779), - [anon_sym_lock] = ACTIONS(2779), - [anon_sym_rlock] = ACTIONS(2779), - [anon_sym_unsafe] = ACTIONS(2779), - [anon_sym_sql] = ACTIONS(2779), - [sym_int_literal] = ACTIONS(2779), - [sym_float_literal] = ACTIONS(2779), - [sym_rune_literal] = ACTIONS(2779), - [anon_sym_SQUOTE] = ACTIONS(2779), - [anon_sym_DQUOTE] = ACTIONS(2779), - [anon_sym_c_SQUOTE] = ACTIONS(2779), - [anon_sym_c_DQUOTE] = ACTIONS(2779), - [anon_sym_r_SQUOTE] = ACTIONS(2779), - [anon_sym_r_DQUOTE] = ACTIONS(2779), - [sym_pseudo_compile_time_identifier] = ACTIONS(2779), - [anon_sym_shared] = ACTIONS(2779), - [anon_sym_map_LBRACK] = ACTIONS(2779), - [anon_sym_chan] = ACTIONS(2779), - [anon_sym_thread] = ACTIONS(2779), - [anon_sym_atomic] = ACTIONS(2779), + [sym_reference_expression] = STATE(4520), + [sym_type_reference_expression] = STATE(1939), + [sym_plain_type] = STATE(2080), + [sym__plain_type_without_special] = STATE(2110), + [sym_anon_struct_type] = STATE(2075), + [sym_multi_return_type] = STATE(2110), + [sym_result_type] = STATE(2110), + [sym_option_type] = STATE(2110), + [sym_qualified_type] = STATE(1939), + [sym_fixed_array_type] = STATE(2075), + [sym_array_type] = STATE(2075), + [sym_pointer_type] = STATE(2075), + [sym_wrong_pointer_type] = STATE(2075), + [sym_map_type] = STATE(2075), + [sym_channel_type] = STATE(2075), + [sym_shared_type] = STATE(2075), + [sym_thread_type] = STATE(2075), + [sym_atomic_type] = STATE(2075), + [sym_generic_type] = STATE(2075), + [sym_function_type] = STATE(2075), + [sym_identifier] = ACTIONS(3780), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_as] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(3782), + [anon_sym_EQ] = ACTIONS(567), + [anon_sym_fn] = ACTIONS(3784), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_STAR] = ACTIONS(3786), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(3788), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(3790), + [anon_sym_BANG] = ACTIONS(3792), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_LBRACK2] = ACTIONS(3794), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(3796), + [anon_sym_LT_DASH] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(567), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_GT_GT_GT] = ACTIONS(567), + [anon_sym_AMP_CARET] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_or] = ACTIONS(567), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_is] = ACTIONS(567), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(567), + [anon_sym_BANGin] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_AMP_CARET_EQ] = ACTIONS(563), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_shared] = ACTIONS(3798), + [anon_sym_map_LBRACK] = ACTIONS(3800), + [anon_sym_chan] = ACTIONS(3802), + [anon_sym_thread] = ACTIONS(3804), + [anon_sym_atomic] = ACTIONS(3806), }, [1161] = { [sym_line_comment] = STATE(1161), [sym_block_comment] = STATE(1161), - [sym_identifier] = ACTIONS(2171), - [anon_sym_LF] = ACTIONS(2171), - [anon_sym_CR] = ACTIONS(2171), - [anon_sym_CR_LF] = ACTIONS(2171), + [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_SEMI] = ACTIONS(2171), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_as] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_COMMA] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2171), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_RPAREN] = ACTIONS(2171), - [anon_sym_PIPE] = ACTIONS(2171), - [anon_sym_fn] = ACTIONS(2171), - [anon_sym_PLUS] = ACTIONS(2171), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_STAR] = ACTIONS(2171), - [anon_sym_SLASH] = ACTIONS(2171), - [anon_sym_PERCENT] = ACTIONS(2171), - [anon_sym_LT] = ACTIONS(2171), - [anon_sym_GT] = ACTIONS(2171), - [anon_sym_EQ_EQ] = ACTIONS(2171), - [anon_sym_BANG_EQ] = ACTIONS(2171), - [anon_sym_LT_EQ] = ACTIONS(2171), - [anon_sym_GT_EQ] = ACTIONS(2171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_struct] = ACTIONS(2171), - [anon_sym_mut] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_QMARK] = ACTIONS(2171), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_go] = ACTIONS(2171), - [anon_sym_spawn] = ACTIONS(2171), - [anon_sym_json_DOTdecode] = ACTIONS(2171), - [anon_sym_LBRACK2] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_LT_DASH] = ACTIONS(2171), - [anon_sym_LT_LT] = ACTIONS(2171), - [anon_sym_GT_GT] = ACTIONS(2171), - [anon_sym_GT_GT_GT] = ACTIONS(2171), - [anon_sym_AMP_CARET] = ACTIONS(2171), - [anon_sym_AMP_AMP] = ACTIONS(2171), - [anon_sym_PIPE_PIPE] = ACTIONS(2171), - [anon_sym_or] = ACTIONS(2171), - [sym_none] = ACTIONS(2171), - [sym_true] = ACTIONS(2171), - [sym_false] = ACTIONS(2171), - [sym_nil] = ACTIONS(2171), - [anon_sym_QMARK_DOT] = ACTIONS(2171), - [anon_sym_POUND_LBRACK] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(2171), - [anon_sym_DOLLARif] = ACTIONS(2171), - [anon_sym_is] = ACTIONS(2171), - [anon_sym_BANGis] = ACTIONS(2171), - [anon_sym_in] = ACTIONS(2171), - [anon_sym_BANGin] = ACTIONS(2171), - [anon_sym_match] = ACTIONS(2171), - [anon_sym_select] = ACTIONS(2171), - [anon_sym_lock] = ACTIONS(2171), - [anon_sym_rlock] = ACTIONS(2171), - [anon_sym_unsafe] = ACTIONS(2171), - [anon_sym_sql] = ACTIONS(2171), - [sym_int_literal] = ACTIONS(2171), - [sym_float_literal] = ACTIONS(2171), - [sym_rune_literal] = ACTIONS(2171), - [anon_sym_SQUOTE] = ACTIONS(2171), - [anon_sym_DQUOTE] = ACTIONS(2171), - [anon_sym_c_SQUOTE] = ACTIONS(2171), - [anon_sym_c_DQUOTE] = ACTIONS(2171), - [anon_sym_r_SQUOTE] = ACTIONS(2171), - [anon_sym_r_DQUOTE] = ACTIONS(2171), - [sym_pseudo_compile_time_identifier] = ACTIONS(2171), - [anon_sym_shared] = ACTIONS(2171), - [anon_sym_map_LBRACK] = ACTIONS(2171), - [anon_sym_chan] = ACTIONS(2171), - [anon_sym_thread] = ACTIONS(2171), - [anon_sym_atomic] = ACTIONS(2171), + [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_fn] = ACTIONS(2941), + [anon_sym_PLUS] = ACTIONS(2941), + [anon_sym_DASH] = ACTIONS(2941), + [anon_sym_STAR] = ACTIONS(2941), + [anon_sym_SLASH] = 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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2941), + [anon_sym_DQUOTE] = ACTIONS(2941), + [anon_sym_c_SQUOTE] = ACTIONS(2941), + [anon_sym_c_DQUOTE] = ACTIONS(2941), + [anon_sym_r_SQUOTE] = ACTIONS(2941), + [anon_sym_r_DQUOTE] = 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), }, [1162] = { [sym_line_comment] = STATE(1162), [sym_block_comment] = STATE(1162), - [sym_identifier] = ACTIONS(2423), - [anon_sym_LF] = ACTIONS(2423), - [anon_sym_CR] = ACTIONS(2423), - [anon_sym_CR_LF] = ACTIONS(2423), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LF] = ACTIONS(2315), + [anon_sym_CR] = ACTIONS(2315), + [anon_sym_CR_LF] = ACTIONS(2315), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2423), - [anon_sym_DOT] = ACTIONS(2423), - [anon_sym_as] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_COMMA] = ACTIONS(2423), - [anon_sym_RBRACE] = ACTIONS(2423), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_RPAREN] = ACTIONS(2423), - [anon_sym_PIPE] = ACTIONS(2423), - [anon_sym_fn] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2423), - [anon_sym_DASH] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_SLASH] = ACTIONS(2423), - [anon_sym_PERCENT] = ACTIONS(2423), - [anon_sym_LT] = ACTIONS(2423), - [anon_sym_GT] = ACTIONS(2423), - [anon_sym_EQ_EQ] = ACTIONS(2423), - [anon_sym_BANG_EQ] = ACTIONS(2423), - [anon_sym_LT_EQ] = ACTIONS(2423), - [anon_sym_GT_EQ] = ACTIONS(2423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(2423), - [anon_sym_mut] = ACTIONS(2423), - [anon_sym_PLUS_PLUS] = ACTIONS(2423), - [anon_sym_DASH_DASH] = ACTIONS(2423), - [anon_sym_QMARK] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2423), - [anon_sym_spawn] = ACTIONS(2423), - [anon_sym_json_DOTdecode] = ACTIONS(2423), - [anon_sym_LBRACK2] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2423), - [anon_sym_CARET] = ACTIONS(2423), - [anon_sym_AMP] = ACTIONS(2423), - [anon_sym_LT_DASH] = ACTIONS(2423), - [anon_sym_LT_LT] = ACTIONS(2423), - [anon_sym_GT_GT] = ACTIONS(2423), - [anon_sym_GT_GT_GT] = ACTIONS(2423), - [anon_sym_AMP_CARET] = ACTIONS(2423), - [anon_sym_AMP_AMP] = ACTIONS(2423), - [anon_sym_PIPE_PIPE] = ACTIONS(2423), - [anon_sym_or] = ACTIONS(2423), - [sym_none] = ACTIONS(2423), - [sym_true] = ACTIONS(2423), - [sym_false] = ACTIONS(2423), - [sym_nil] = ACTIONS(2423), - [anon_sym_QMARK_DOT] = ACTIONS(2423), - [anon_sym_POUND_LBRACK] = ACTIONS(2423), - [anon_sym_if] = ACTIONS(2423), - [anon_sym_DOLLARif] = ACTIONS(2423), - [anon_sym_is] = ACTIONS(2423), - [anon_sym_BANGis] = ACTIONS(2423), - [anon_sym_in] = ACTIONS(2423), - [anon_sym_BANGin] = ACTIONS(2423), - [anon_sym_match] = ACTIONS(2423), - [anon_sym_select] = ACTIONS(2423), - [anon_sym_lock] = ACTIONS(2423), - [anon_sym_rlock] = ACTIONS(2423), - [anon_sym_unsafe] = ACTIONS(2423), - [anon_sym_sql] = ACTIONS(2423), - [sym_int_literal] = ACTIONS(2423), - [sym_float_literal] = ACTIONS(2423), - [sym_rune_literal] = ACTIONS(2423), - [anon_sym_SQUOTE] = ACTIONS(2423), - [anon_sym_DQUOTE] = ACTIONS(2423), - [anon_sym_c_SQUOTE] = ACTIONS(2423), - [anon_sym_c_DQUOTE] = ACTIONS(2423), - [anon_sym_r_SQUOTE] = ACTIONS(2423), - [anon_sym_r_DQUOTE] = ACTIONS(2423), - [sym_pseudo_compile_time_identifier] = ACTIONS(2423), - [anon_sym_shared] = ACTIONS(2423), - [anon_sym_map_LBRACK] = ACTIONS(2423), - [anon_sym_chan] = ACTIONS(2423), - [anon_sym_thread] = ACTIONS(2423), - [anon_sym_atomic] = ACTIONS(2423), + [anon_sym_SEMI] = ACTIONS(2315), + [anon_sym_DOT] = ACTIONS(2315), + [anon_sym_as] = ACTIONS(2315), + [anon_sym_LBRACE] = ACTIONS(2315), + [anon_sym_COMMA] = ACTIONS(2315), + [anon_sym_RBRACE] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_RPAREN] = ACTIONS(2315), + [anon_sym_fn] = ACTIONS(2315), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2315), + [anon_sym_SLASH] = ACTIONS(2315), + [anon_sym_PERCENT] = ACTIONS(2315), + [anon_sym_LT] = ACTIONS(2315), + [anon_sym_GT] = ACTIONS(2315), + [anon_sym_EQ_EQ] = ACTIONS(2315), + [anon_sym_BANG_EQ] = ACTIONS(2315), + [anon_sym_LT_EQ] = ACTIONS(2315), + [anon_sym_GT_EQ] = ACTIONS(2315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2315), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_struct] = ACTIONS(2315), + [anon_sym_mut] = ACTIONS(2315), + [anon_sym_PLUS_PLUS] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2315), + [anon_sym_QMARK] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_go] = ACTIONS(2315), + [anon_sym_spawn] = ACTIONS(2315), + [anon_sym_json_DOTdecode] = ACTIONS(2315), + [anon_sym_PIPE] = ACTIONS(2315), + [anon_sym_LBRACK2] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_CARET] = ACTIONS(2315), + [anon_sym_AMP] = ACTIONS(2315), + [anon_sym_LT_DASH] = ACTIONS(2315), + [anon_sym_LT_LT] = ACTIONS(2315), + [anon_sym_GT_GT] = ACTIONS(2315), + [anon_sym_GT_GT_GT] = ACTIONS(2315), + [anon_sym_AMP_CARET] = ACTIONS(2315), + [anon_sym_AMP_AMP] = ACTIONS(2315), + [anon_sym_PIPE_PIPE] = ACTIONS(2315), + [anon_sym_or] = ACTIONS(2315), + [sym_none] = ACTIONS(2315), + [sym_true] = ACTIONS(2315), + [sym_false] = ACTIONS(2315), + [sym_nil] = ACTIONS(2315), + [anon_sym_QMARK_DOT] = ACTIONS(2315), + [anon_sym_POUND_LBRACK] = ACTIONS(2315), + [anon_sym_if] = ACTIONS(2315), + [anon_sym_DOLLARif] = ACTIONS(2315), + [anon_sym_is] = ACTIONS(2315), + [anon_sym_BANGis] = ACTIONS(2315), + [anon_sym_in] = ACTIONS(2315), + [anon_sym_BANGin] = ACTIONS(2315), + [anon_sym_match] = ACTIONS(2315), + [anon_sym_select] = ACTIONS(2315), + [anon_sym_lock] = ACTIONS(2315), + [anon_sym_rlock] = ACTIONS(2315), + [anon_sym_unsafe] = ACTIONS(2315), + [anon_sym_sql] = ACTIONS(2315), + [sym_int_literal] = ACTIONS(2315), + [sym_float_literal] = ACTIONS(2315), + [sym_rune_literal] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_DQUOTE] = ACTIONS(2315), + [anon_sym_c_SQUOTE] = ACTIONS(2315), + [anon_sym_c_DQUOTE] = ACTIONS(2315), + [anon_sym_r_SQUOTE] = ACTIONS(2315), + [anon_sym_r_DQUOTE] = ACTIONS(2315), + [sym_pseudo_compile_time_identifier] = ACTIONS(2315), + [anon_sym_shared] = ACTIONS(2315), + [anon_sym_map_LBRACK] = ACTIONS(2315), + [anon_sym_chan] = ACTIONS(2315), + [anon_sym_thread] = ACTIONS(2315), + [anon_sym_atomic] = ACTIONS(2315), }, [1163] = { [sym_line_comment] = STATE(1163), [sym_block_comment] = STATE(1163), - [sym_identifier] = ACTIONS(2167), - [anon_sym_LF] = ACTIONS(2167), - [anon_sym_CR] = ACTIONS(2167), - [anon_sym_CR_LF] = ACTIONS(2167), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_DOT] = ACTIONS(2167), - [anon_sym_as] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_COMMA] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_RPAREN] = ACTIONS(2167), - [anon_sym_PIPE] = ACTIONS(2167), - [anon_sym_fn] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_STAR] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_PERCENT] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_GT] = ACTIONS(2167), - [anon_sym_EQ_EQ] = ACTIONS(2167), - [anon_sym_BANG_EQ] = ACTIONS(2167), - [anon_sym_LT_EQ] = ACTIONS(2167), - [anon_sym_GT_EQ] = ACTIONS(2167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_struct] = ACTIONS(2167), - [anon_sym_mut] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [anon_sym_QMARK] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_go] = ACTIONS(2167), - [anon_sym_spawn] = ACTIONS(2167), - [anon_sym_json_DOTdecode] = ACTIONS(2167), - [anon_sym_LBRACK2] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_CARET] = ACTIONS(2167), - [anon_sym_AMP] = ACTIONS(2167), - [anon_sym_LT_DASH] = ACTIONS(2167), - [anon_sym_LT_LT] = ACTIONS(2167), - [anon_sym_GT_GT] = ACTIONS(2167), - [anon_sym_GT_GT_GT] = ACTIONS(2167), - [anon_sym_AMP_CARET] = ACTIONS(2167), - [anon_sym_AMP_AMP] = ACTIONS(2167), - [anon_sym_PIPE_PIPE] = ACTIONS(2167), - [anon_sym_or] = ACTIONS(2167), - [sym_none] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_nil] = ACTIONS(2167), - [anon_sym_QMARK_DOT] = ACTIONS(2167), - [anon_sym_POUND_LBRACK] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_DOLLARif] = ACTIONS(2167), - [anon_sym_is] = ACTIONS(2167), - [anon_sym_BANGis] = ACTIONS(2167), - [anon_sym_in] = ACTIONS(2167), - [anon_sym_BANGin] = ACTIONS(2167), - [anon_sym_match] = ACTIONS(2167), - [anon_sym_select] = ACTIONS(2167), - [anon_sym_lock] = ACTIONS(2167), - [anon_sym_rlock] = ACTIONS(2167), - [anon_sym_unsafe] = ACTIONS(2167), - [anon_sym_sql] = ACTIONS(2167), - [sym_int_literal] = ACTIONS(2167), - [sym_float_literal] = ACTIONS(2167), - [sym_rune_literal] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_c_SQUOTE] = ACTIONS(2167), - [anon_sym_c_DQUOTE] = ACTIONS(2167), - [anon_sym_r_SQUOTE] = ACTIONS(2167), - [anon_sym_r_DQUOTE] = ACTIONS(2167), - [sym_pseudo_compile_time_identifier] = ACTIONS(2167), - [anon_sym_shared] = ACTIONS(2167), - [anon_sym_map_LBRACK] = ACTIONS(2167), - [anon_sym_chan] = ACTIONS(2167), - [anon_sym_thread] = ACTIONS(2167), - [anon_sym_atomic] = ACTIONS(2167), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2421), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(609), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(607), + [anon_sym_as] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_EQ] = ACTIONS(611), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_LT_EQ] = ACTIONS(607), + [anon_sym_GT_EQ] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(607), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3821), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_DASH] = ACTIONS(607), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(611), + [anon_sym_AMP_CARET] = ACTIONS(611), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [anon_sym_or] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(607), + [anon_sym_POUND_LBRACK] = ACTIONS(607), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(607), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(607), + [anon_sym_STAR_EQ] = ACTIONS(607), + [anon_sym_SLASH_EQ] = ACTIONS(607), + [anon_sym_PERCENT_EQ] = ACTIONS(607), + [anon_sym_LT_LT_EQ] = ACTIONS(607), + [anon_sym_GT_GT_EQ] = ACTIONS(607), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(607), + [anon_sym_AMP_EQ] = ACTIONS(607), + [anon_sym_AMP_CARET_EQ] = ACTIONS(607), + [anon_sym_PLUS_EQ] = ACTIONS(607), + [anon_sym_DASH_EQ] = ACTIONS(607), + [anon_sym_PIPE_EQ] = ACTIONS(607), + [anon_sym_CARET_EQ] = ACTIONS(607), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [1164] = { [sym_line_comment] = STATE(1164), [sym_block_comment] = STATE(1164), - [sym_identifier] = ACTIONS(2775), - [anon_sym_LF] = ACTIONS(2775), - [anon_sym_CR] = ACTIONS(2775), - [anon_sym_CR_LF] = ACTIONS(2775), + [sym_identifier] = ACTIONS(2723), + [anon_sym_LF] = ACTIONS(2723), + [anon_sym_CR] = ACTIONS(2723), + [anon_sym_CR_LF] = ACTIONS(2723), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym_DOT] = ACTIONS(2775), - [anon_sym_as] = ACTIONS(2775), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_COMMA] = ACTIONS(2775), - [anon_sym_RBRACE] = ACTIONS(2775), - [anon_sym_LPAREN] = ACTIONS(2775), - [anon_sym_RPAREN] = ACTIONS(2775), - [anon_sym_PIPE] = ACTIONS(2775), - [anon_sym_fn] = ACTIONS(2775), - [anon_sym_PLUS] = ACTIONS(2775), - [anon_sym_DASH] = ACTIONS(2775), - [anon_sym_STAR] = ACTIONS(2775), - [anon_sym_SLASH] = ACTIONS(2775), - [anon_sym_PERCENT] = ACTIONS(2775), - [anon_sym_LT] = ACTIONS(2775), - [anon_sym_GT] = ACTIONS(2775), - [anon_sym_EQ_EQ] = ACTIONS(2775), - [anon_sym_BANG_EQ] = ACTIONS(2775), - [anon_sym_LT_EQ] = ACTIONS(2775), - [anon_sym_GT_EQ] = ACTIONS(2775), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_struct] = ACTIONS(2775), - [anon_sym_mut] = ACTIONS(2775), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_QMARK] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_go] = ACTIONS(2775), - [anon_sym_spawn] = ACTIONS(2775), - [anon_sym_json_DOTdecode] = ACTIONS(2775), - [anon_sym_LBRACK2] = ACTIONS(2775), - [anon_sym_TILDE] = ACTIONS(2775), - [anon_sym_CARET] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2775), - [anon_sym_LT_DASH] = ACTIONS(2775), - [anon_sym_LT_LT] = ACTIONS(2775), - [anon_sym_GT_GT] = ACTIONS(2775), - [anon_sym_GT_GT_GT] = ACTIONS(2775), - [anon_sym_AMP_CARET] = ACTIONS(2775), - [anon_sym_AMP_AMP] = ACTIONS(2775), - [anon_sym_PIPE_PIPE] = ACTIONS(2775), - [anon_sym_or] = ACTIONS(2775), - [sym_none] = ACTIONS(2775), - [sym_true] = ACTIONS(2775), - [sym_false] = ACTIONS(2775), - [sym_nil] = ACTIONS(2775), - [anon_sym_QMARK_DOT] = ACTIONS(2775), - [anon_sym_POUND_LBRACK] = ACTIONS(2775), - [anon_sym_if] = ACTIONS(2775), - [anon_sym_DOLLARif] = ACTIONS(2775), - [anon_sym_is] = ACTIONS(2775), - [anon_sym_BANGis] = ACTIONS(2775), - [anon_sym_in] = ACTIONS(2775), - [anon_sym_BANGin] = ACTIONS(2775), - [anon_sym_match] = ACTIONS(2775), - [anon_sym_select] = ACTIONS(2775), - [anon_sym_lock] = ACTIONS(2775), - [anon_sym_rlock] = ACTIONS(2775), - [anon_sym_unsafe] = ACTIONS(2775), - [anon_sym_sql] = ACTIONS(2775), - [sym_int_literal] = ACTIONS(2775), - [sym_float_literal] = ACTIONS(2775), - [sym_rune_literal] = ACTIONS(2775), - [anon_sym_SQUOTE] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(2775), - [anon_sym_c_SQUOTE] = ACTIONS(2775), - [anon_sym_c_DQUOTE] = ACTIONS(2775), - [anon_sym_r_SQUOTE] = ACTIONS(2775), - [anon_sym_r_DQUOTE] = ACTIONS(2775), - [sym_pseudo_compile_time_identifier] = ACTIONS(2775), - [anon_sym_shared] = ACTIONS(2775), - [anon_sym_map_LBRACK] = ACTIONS(2775), - [anon_sym_chan] = ACTIONS(2775), - [anon_sym_thread] = ACTIONS(2775), - [anon_sym_atomic] = ACTIONS(2775), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_DOT] = ACTIONS(2723), + [anon_sym_as] = ACTIONS(2723), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_COMMA] = ACTIONS(2723), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_LPAREN] = ACTIONS(2723), + [anon_sym_RPAREN] = ACTIONS(2723), + [anon_sym_fn] = ACTIONS(2723), + [anon_sym_PLUS] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2723), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_SLASH] = ACTIONS(2723), + [anon_sym_PERCENT] = ACTIONS(2723), + [anon_sym_LT] = ACTIONS(2723), + [anon_sym_GT] = ACTIONS(2723), + [anon_sym_EQ_EQ] = ACTIONS(2723), + [anon_sym_BANG_EQ] = ACTIONS(2723), + [anon_sym_LT_EQ] = ACTIONS(2723), + [anon_sym_GT_EQ] = ACTIONS(2723), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2723), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2723), + [anon_sym_mut] = ACTIONS(2723), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_QMARK] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_go] = ACTIONS(2723), + [anon_sym_spawn] = ACTIONS(2723), + [anon_sym_json_DOTdecode] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2723), + [anon_sym_LBRACK2] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_CARET] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_LT_DASH] = ACTIONS(2723), + [anon_sym_LT_LT] = ACTIONS(2723), + [anon_sym_GT_GT] = ACTIONS(2723), + [anon_sym_GT_GT_GT] = ACTIONS(2723), + [anon_sym_AMP_CARET] = ACTIONS(2723), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_PIPE_PIPE] = ACTIONS(2723), + [anon_sym_or] = ACTIONS(2723), + [sym_none] = ACTIONS(2723), + [sym_true] = ACTIONS(2723), + [sym_false] = ACTIONS(2723), + [sym_nil] = ACTIONS(2723), + [anon_sym_QMARK_DOT] = ACTIONS(2723), + [anon_sym_POUND_LBRACK] = ACTIONS(2723), + [anon_sym_if] = ACTIONS(2723), + [anon_sym_DOLLARif] = ACTIONS(2723), + [anon_sym_is] = ACTIONS(2723), + [anon_sym_BANGis] = ACTIONS(2723), + [anon_sym_in] = ACTIONS(2723), + [anon_sym_BANGin] = ACTIONS(2723), + [anon_sym_match] = ACTIONS(2723), + [anon_sym_select] = ACTIONS(2723), + [anon_sym_lock] = ACTIONS(2723), + [anon_sym_rlock] = ACTIONS(2723), + [anon_sym_unsafe] = ACTIONS(2723), + [anon_sym_sql] = ACTIONS(2723), + [sym_int_literal] = ACTIONS(2723), + [sym_float_literal] = ACTIONS(2723), + [sym_rune_literal] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2723), + [anon_sym_c_SQUOTE] = ACTIONS(2723), + [anon_sym_c_DQUOTE] = ACTIONS(2723), + [anon_sym_r_SQUOTE] = ACTIONS(2723), + [anon_sym_r_DQUOTE] = ACTIONS(2723), + [sym_pseudo_compile_time_identifier] = ACTIONS(2723), + [anon_sym_shared] = ACTIONS(2723), + [anon_sym_map_LBRACK] = ACTIONS(2723), + [anon_sym_chan] = ACTIONS(2723), + [anon_sym_thread] = ACTIONS(2723), + [anon_sym_atomic] = ACTIONS(2723), }, [1165] = { [sym_line_comment] = STATE(1165), [sym_block_comment] = STATE(1165), - [sym_reference_expression] = STATE(4428), - [sym_type_reference_expression] = STATE(1899), - [sym_plain_type] = STATE(1974), - [sym__plain_type_without_special] = STATE(1918), - [sym_anon_struct_type] = STATE(1996), - [sym_multi_return_type] = STATE(1918), - [sym_result_type] = STATE(1918), - [sym_option_type] = STATE(1918), - [sym_qualified_type] = STATE(1899), - [sym_fixed_array_type] = STATE(1996), - [sym_array_type] = STATE(1996), - [sym_pointer_type] = STATE(1996), - [sym_wrong_pointer_type] = STATE(1996), - [sym_map_type] = STATE(1996), - [sym_channel_type] = STATE(1996), - [sym_shared_type] = STATE(1996), - [sym_thread_type] = STATE(1996), - [sym_atomic_type] = STATE(1996), - [sym_generic_type] = STATE(1996), - [sym_function_type] = STATE(1996), - [sym_identifier] = ACTIONS(3748), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(599), - [anon_sym_as] = ACTIONS(601), - [anon_sym_LBRACE] = ACTIONS(599), - [anon_sym_COMMA] = ACTIONS(599), - [anon_sym_LPAREN] = ACTIONS(3750), - [anon_sym_EQ] = ACTIONS(601), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(599), - [anon_sym_BANG_EQ] = ACTIONS(599), - [anon_sym_LT_EQ] = ACTIONS(599), - [anon_sym_GT_EQ] = ACTIONS(599), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_struct] = ACTIONS(3756), - [anon_sym_COLON] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_QMARK] = ACTIONS(3758), - [anon_sym_BANG] = ACTIONS(3760), - [anon_sym_LBRACK2] = ACTIONS(3762), - [anon_sym_CARET] = ACTIONS(601), - [anon_sym_AMP] = ACTIONS(3764), - [anon_sym_LT_DASH] = ACTIONS(599), - [anon_sym_LT_LT] = ACTIONS(601), - [anon_sym_GT_GT] = ACTIONS(601), - [anon_sym_GT_GT_GT] = ACTIONS(601), - [anon_sym_AMP_CARET] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(599), - [anon_sym_PIPE_PIPE] = ACTIONS(599), - [anon_sym_or] = ACTIONS(601), - [anon_sym_QMARK_DOT] = ACTIONS(599), - [anon_sym_POUND_LBRACK] = ACTIONS(599), - [anon_sym_is] = ACTIONS(601), - [anon_sym_BANGis] = ACTIONS(599), - [anon_sym_in] = ACTIONS(601), - [anon_sym_BANGin] = ACTIONS(599), - [anon_sym_STAR_EQ] = ACTIONS(599), - [anon_sym_SLASH_EQ] = ACTIONS(599), - [anon_sym_PERCENT_EQ] = ACTIONS(599), - [anon_sym_LT_LT_EQ] = ACTIONS(599), - [anon_sym_GT_GT_EQ] = ACTIONS(599), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(599), - [anon_sym_AMP_EQ] = ACTIONS(599), - [anon_sym_AMP_CARET_EQ] = ACTIONS(599), - [anon_sym_PLUS_EQ] = ACTIONS(599), - [anon_sym_DASH_EQ] = ACTIONS(599), - [anon_sym_PIPE_EQ] = ACTIONS(599), - [anon_sym_CARET_EQ] = ACTIONS(599), - [anon_sym_shared] = ACTIONS(3766), - [anon_sym_map_LBRACK] = ACTIONS(3768), - [anon_sym_chan] = ACTIONS(3770), - [anon_sym_thread] = ACTIONS(3772), - [anon_sym_atomic] = ACTIONS(3774), + [sym_identifier] = ACTIONS(2689), + [anon_sym_LF] = ACTIONS(2689), + [anon_sym_CR] = ACTIONS(2689), + [anon_sym_CR_LF] = ACTIONS(2689), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2689), + [anon_sym_DOT] = ACTIONS(2689), + [anon_sym_as] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2689), + [anon_sym_COMMA] = ACTIONS(2689), + [anon_sym_RBRACE] = ACTIONS(2689), + [anon_sym_LPAREN] = ACTIONS(2689), + [anon_sym_RPAREN] = ACTIONS(2689), + [anon_sym_fn] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_SLASH] = ACTIONS(2689), + [anon_sym_PERCENT] = ACTIONS(2689), + [anon_sym_LT] = ACTIONS(2689), + [anon_sym_GT] = ACTIONS(2689), + [anon_sym_EQ_EQ] = ACTIONS(2689), + [anon_sym_BANG_EQ] = ACTIONS(2689), + [anon_sym_LT_EQ] = ACTIONS(2689), + [anon_sym_GT_EQ] = ACTIONS(2689), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2689), + [anon_sym_LBRACK] = ACTIONS(2687), + [anon_sym_struct] = ACTIONS(2689), + [anon_sym_mut] = ACTIONS(2689), + [anon_sym_PLUS_PLUS] = ACTIONS(2689), + [anon_sym_DASH_DASH] = ACTIONS(2689), + [anon_sym_QMARK] = ACTIONS(2689), + [anon_sym_BANG] = ACTIONS(2689), + [anon_sym_go] = ACTIONS(2689), + [anon_sym_spawn] = ACTIONS(2689), + [anon_sym_json_DOTdecode] = ACTIONS(2689), + [anon_sym_PIPE] = ACTIONS(2689), + [anon_sym_LBRACK2] = ACTIONS(2689), + [anon_sym_TILDE] = ACTIONS(2689), + [anon_sym_CARET] = ACTIONS(2689), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_LT_DASH] = ACTIONS(2689), + [anon_sym_LT_LT] = ACTIONS(2689), + [anon_sym_GT_GT] = ACTIONS(2689), + [anon_sym_GT_GT_GT] = ACTIONS(2689), + [anon_sym_AMP_CARET] = ACTIONS(2689), + [anon_sym_AMP_AMP] = ACTIONS(2689), + [anon_sym_PIPE_PIPE] = ACTIONS(2689), + [anon_sym_or] = ACTIONS(2689), + [sym_none] = ACTIONS(2689), + [sym_true] = ACTIONS(2689), + [sym_false] = ACTIONS(2689), + [sym_nil] = ACTIONS(2689), + [anon_sym_QMARK_DOT] = ACTIONS(2689), + [anon_sym_POUND_LBRACK] = ACTIONS(2689), + [anon_sym_if] = ACTIONS(2689), + [anon_sym_DOLLARif] = ACTIONS(2689), + [anon_sym_is] = ACTIONS(2689), + [anon_sym_BANGis] = ACTIONS(2689), + [anon_sym_in] = ACTIONS(2689), + [anon_sym_BANGin] = ACTIONS(2689), + [anon_sym_match] = ACTIONS(2689), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2689), + [anon_sym_rlock] = ACTIONS(2689), + [anon_sym_unsafe] = ACTIONS(2689), + [anon_sym_sql] = ACTIONS(2689), + [sym_int_literal] = ACTIONS(2689), + [sym_float_literal] = ACTIONS(2689), + [sym_rune_literal] = ACTIONS(2689), + [anon_sym_SQUOTE] = ACTIONS(2689), + [anon_sym_DQUOTE] = ACTIONS(2689), + [anon_sym_c_SQUOTE] = ACTIONS(2689), + [anon_sym_c_DQUOTE] = ACTIONS(2689), + [anon_sym_r_SQUOTE] = ACTIONS(2689), + [anon_sym_r_DQUOTE] = ACTIONS(2689), + [sym_pseudo_compile_time_identifier] = ACTIONS(2689), + [anon_sym_shared] = ACTIONS(2689), + [anon_sym_map_LBRACK] = ACTIONS(2689), + [anon_sym_chan] = ACTIONS(2689), + [anon_sym_thread] = ACTIONS(2689), + [anon_sym_atomic] = ACTIONS(2689), }, [1166] = { [sym_line_comment] = STATE(1166), [sym_block_comment] = STATE(1166), - [sym_identifier] = ACTIONS(2123), - [anon_sym_LF] = ACTIONS(2123), - [anon_sym_CR] = ACTIONS(2123), - [anon_sym_CR_LF] = ACTIONS(2123), + [sym_identifier] = ACTIONS(2749), + [anon_sym_LF] = ACTIONS(2749), + [anon_sym_CR] = ACTIONS(2749), + [anon_sym_CR_LF] = ACTIONS(2749), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2123), - [anon_sym_DOT] = ACTIONS(2123), - [anon_sym_as] = ACTIONS(2123), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_COMMA] = ACTIONS(2123), - [anon_sym_RBRACE] = ACTIONS(2123), - [anon_sym_LPAREN] = ACTIONS(2123), - [anon_sym_RPAREN] = ACTIONS(2123), - [anon_sym_PIPE] = ACTIONS(2123), - [anon_sym_fn] = ACTIONS(2123), - [anon_sym_PLUS] = ACTIONS(2123), - [anon_sym_DASH] = ACTIONS(2123), - [anon_sym_STAR] = ACTIONS(2123), - [anon_sym_SLASH] = ACTIONS(2123), - [anon_sym_PERCENT] = ACTIONS(2123), - [anon_sym_LT] = ACTIONS(2123), - [anon_sym_GT] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2123), - [anon_sym_BANG_EQ] = ACTIONS(2123), - [anon_sym_LT_EQ] = ACTIONS(2123), - [anon_sym_GT_EQ] = ACTIONS(2123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2123), - [anon_sym_LBRACK] = ACTIONS(2121), - [anon_sym_struct] = ACTIONS(2123), - [anon_sym_mut] = ACTIONS(2123), - [anon_sym_PLUS_PLUS] = ACTIONS(2123), - [anon_sym_DASH_DASH] = ACTIONS(2123), - [anon_sym_QMARK] = ACTIONS(2123), - [anon_sym_BANG] = ACTIONS(2123), - [anon_sym_go] = ACTIONS(2123), - [anon_sym_spawn] = ACTIONS(2123), - [anon_sym_json_DOTdecode] = ACTIONS(2123), - [anon_sym_LBRACK2] = ACTIONS(2123), - [anon_sym_TILDE] = ACTIONS(2123), - [anon_sym_CARET] = ACTIONS(2123), - [anon_sym_AMP] = ACTIONS(2123), - [anon_sym_LT_DASH] = ACTIONS(2123), - [anon_sym_LT_LT] = ACTIONS(2123), - [anon_sym_GT_GT] = ACTIONS(2123), - [anon_sym_GT_GT_GT] = ACTIONS(2123), - [anon_sym_AMP_CARET] = ACTIONS(2123), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_PIPE_PIPE] = ACTIONS(2123), - [anon_sym_or] = ACTIONS(2123), - [sym_none] = ACTIONS(2123), - [sym_true] = ACTIONS(2123), - [sym_false] = ACTIONS(2123), - [sym_nil] = ACTIONS(2123), - [anon_sym_QMARK_DOT] = ACTIONS(2123), - [anon_sym_POUND_LBRACK] = ACTIONS(2123), - [anon_sym_if] = ACTIONS(2123), - [anon_sym_DOLLARif] = ACTIONS(2123), - [anon_sym_is] = ACTIONS(2123), - [anon_sym_BANGis] = ACTIONS(2123), - [anon_sym_in] = ACTIONS(2123), - [anon_sym_BANGin] = ACTIONS(2123), - [anon_sym_match] = ACTIONS(2123), - [anon_sym_select] = ACTIONS(2123), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2123), - [anon_sym_sql] = ACTIONS(2123), - [sym_int_literal] = ACTIONS(2123), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_DQUOTE] = ACTIONS(2123), - [anon_sym_c_SQUOTE] = ACTIONS(2123), - [anon_sym_c_DQUOTE] = ACTIONS(2123), - [anon_sym_r_SQUOTE] = ACTIONS(2123), - [anon_sym_r_DQUOTE] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(2123), - [anon_sym_shared] = ACTIONS(2123), - [anon_sym_map_LBRACK] = ACTIONS(2123), - [anon_sym_chan] = ACTIONS(2123), - [anon_sym_thread] = ACTIONS(2123), - [anon_sym_atomic] = ACTIONS(2123), + [anon_sym_SEMI] = ACTIONS(2749), + [anon_sym_DOT] = ACTIONS(2749), + [anon_sym_as] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(2749), + [anon_sym_COMMA] = ACTIONS(2749), + [anon_sym_RBRACE] = ACTIONS(2749), + [anon_sym_LPAREN] = ACTIONS(2749), + [anon_sym_RPAREN] = ACTIONS(2749), + [anon_sym_fn] = ACTIONS(2749), + [anon_sym_PLUS] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2749), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_SLASH] = ACTIONS(2749), + [anon_sym_PERCENT] = ACTIONS(2749), + [anon_sym_LT] = ACTIONS(2749), + [anon_sym_GT] = ACTIONS(2749), + [anon_sym_EQ_EQ] = ACTIONS(2749), + [anon_sym_BANG_EQ] = ACTIONS(2749), + [anon_sym_LT_EQ] = ACTIONS(2749), + [anon_sym_GT_EQ] = ACTIONS(2749), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2749), + [anon_sym_LBRACK] = ACTIONS(2747), + [anon_sym_struct] = ACTIONS(2749), + [anon_sym_mut] = ACTIONS(2749), + [anon_sym_PLUS_PLUS] = ACTIONS(2749), + [anon_sym_DASH_DASH] = ACTIONS(2749), + [anon_sym_QMARK] = ACTIONS(2749), + [anon_sym_BANG] = ACTIONS(2749), + [anon_sym_go] = ACTIONS(2749), + [anon_sym_spawn] = ACTIONS(2749), + [anon_sym_json_DOTdecode] = ACTIONS(2749), + [anon_sym_PIPE] = ACTIONS(2749), + [anon_sym_LBRACK2] = ACTIONS(2749), + [anon_sym_TILDE] = ACTIONS(2749), + [anon_sym_CARET] = ACTIONS(2749), + [anon_sym_AMP] = ACTIONS(2749), + [anon_sym_LT_DASH] = ACTIONS(2749), + [anon_sym_LT_LT] = ACTIONS(2749), + [anon_sym_GT_GT] = ACTIONS(2749), + [anon_sym_GT_GT_GT] = ACTIONS(2749), + [anon_sym_AMP_CARET] = ACTIONS(2749), + [anon_sym_AMP_AMP] = ACTIONS(2749), + [anon_sym_PIPE_PIPE] = ACTIONS(2749), + [anon_sym_or] = ACTIONS(2749), + [sym_none] = ACTIONS(2749), + [sym_true] = ACTIONS(2749), + [sym_false] = ACTIONS(2749), + [sym_nil] = ACTIONS(2749), + [anon_sym_QMARK_DOT] = ACTIONS(2749), + [anon_sym_POUND_LBRACK] = ACTIONS(2749), + [anon_sym_if] = ACTIONS(2749), + [anon_sym_DOLLARif] = ACTIONS(2749), + [anon_sym_is] = ACTIONS(2749), + [anon_sym_BANGis] = ACTIONS(2749), + [anon_sym_in] = ACTIONS(2749), + [anon_sym_BANGin] = ACTIONS(2749), + [anon_sym_match] = ACTIONS(2749), + [anon_sym_select] = ACTIONS(2749), + [anon_sym_lock] = ACTIONS(2749), + [anon_sym_rlock] = ACTIONS(2749), + [anon_sym_unsafe] = ACTIONS(2749), + [anon_sym_sql] = ACTIONS(2749), + [sym_int_literal] = ACTIONS(2749), + [sym_float_literal] = ACTIONS(2749), + [sym_rune_literal] = ACTIONS(2749), + [anon_sym_SQUOTE] = ACTIONS(2749), + [anon_sym_DQUOTE] = ACTIONS(2749), + [anon_sym_c_SQUOTE] = ACTIONS(2749), + [anon_sym_c_DQUOTE] = ACTIONS(2749), + [anon_sym_r_SQUOTE] = ACTIONS(2749), + [anon_sym_r_DQUOTE] = ACTIONS(2749), + [sym_pseudo_compile_time_identifier] = ACTIONS(2749), + [anon_sym_shared] = ACTIONS(2749), + [anon_sym_map_LBRACK] = ACTIONS(2749), + [anon_sym_chan] = ACTIONS(2749), + [anon_sym_thread] = ACTIONS(2749), + [anon_sym_atomic] = ACTIONS(2749), }, [1167] = { [sym_line_comment] = STATE(1167), [sym_block_comment] = STATE(1167), - [sym_reference_expression] = STATE(4428), - [sym_type_reference_expression] = STATE(1899), - [sym_plain_type] = STATE(1923), - [sym__plain_type_without_special] = STATE(1918), - [sym_anon_struct_type] = STATE(1996), - [sym_multi_return_type] = STATE(1918), - [sym_result_type] = STATE(1918), - [sym_option_type] = STATE(1918), - [sym_qualified_type] = STATE(1899), - [sym_fixed_array_type] = STATE(1996), - [sym_array_type] = STATE(1996), - [sym_pointer_type] = STATE(1996), - [sym_wrong_pointer_type] = STATE(1996), - [sym_map_type] = STATE(1996), - [sym_channel_type] = STATE(1996), - [sym_shared_type] = STATE(1996), - [sym_thread_type] = STATE(1996), - [sym_atomic_type] = STATE(1996), - [sym_generic_type] = STATE(1996), - [sym_function_type] = STATE(1996), - [sym_identifier] = ACTIONS(3748), + [sym_identifier] = ACTIONS(2383), + [anon_sym_LF] = ACTIONS(2383), + [anon_sym_CR] = ACTIONS(2383), + [anon_sym_CR_LF] = ACTIONS(2383), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2383), + [anon_sym_DOT] = ACTIONS(2383), + [anon_sym_as] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_COMMA] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym_RPAREN] = ACTIONS(2383), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_PLUS] = ACTIONS(2383), + [anon_sym_DASH] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(2383), + [anon_sym_SLASH] = ACTIONS(2383), + [anon_sym_PERCENT] = ACTIONS(2383), + [anon_sym_LT] = ACTIONS(2383), + [anon_sym_GT] = ACTIONS(2383), + [anon_sym_EQ_EQ] = ACTIONS(2383), + [anon_sym_BANG_EQ] = ACTIONS(2383), + [anon_sym_LT_EQ] = ACTIONS(2383), + [anon_sym_GT_EQ] = ACTIONS(2383), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2381), + [anon_sym_struct] = ACTIONS(2383), + [anon_sym_mut] = ACTIONS(2383), + [anon_sym_PLUS_PLUS] = ACTIONS(2383), + [anon_sym_DASH_DASH] = ACTIONS(2383), + [anon_sym_QMARK] = ACTIONS(2383), + [anon_sym_BANG] = ACTIONS(2383), + [anon_sym_go] = ACTIONS(2383), + [anon_sym_spawn] = ACTIONS(2383), + [anon_sym_json_DOTdecode] = ACTIONS(2383), + [anon_sym_PIPE] = ACTIONS(2383), + [anon_sym_LBRACK2] = ACTIONS(2383), + [anon_sym_TILDE] = ACTIONS(2383), + [anon_sym_CARET] = ACTIONS(2383), + [anon_sym_AMP] = ACTIONS(2383), + [anon_sym_LT_DASH] = ACTIONS(2383), + [anon_sym_LT_LT] = ACTIONS(2383), + [anon_sym_GT_GT] = ACTIONS(2383), + [anon_sym_GT_GT_GT] = ACTIONS(2383), + [anon_sym_AMP_CARET] = ACTIONS(2383), + [anon_sym_AMP_AMP] = ACTIONS(2383), + [anon_sym_PIPE_PIPE] = ACTIONS(2383), + [anon_sym_or] = ACTIONS(2383), + [sym_none] = ACTIONS(2383), + [sym_true] = ACTIONS(2383), + [sym_false] = ACTIONS(2383), + [sym_nil] = ACTIONS(2383), + [anon_sym_QMARK_DOT] = ACTIONS(2383), + [anon_sym_POUND_LBRACK] = ACTIONS(2383), + [anon_sym_if] = ACTIONS(2383), + [anon_sym_DOLLARif] = ACTIONS(2383), + [anon_sym_is] = ACTIONS(2383), + [anon_sym_BANGis] = ACTIONS(2383), + [anon_sym_in] = ACTIONS(2383), + [anon_sym_BANGin] = ACTIONS(2383), + [anon_sym_match] = ACTIONS(2383), + [anon_sym_select] = ACTIONS(2383), + [anon_sym_lock] = ACTIONS(2383), + [anon_sym_rlock] = ACTIONS(2383), + [anon_sym_unsafe] = ACTIONS(2383), + [anon_sym_sql] = ACTIONS(2383), + [sym_int_literal] = ACTIONS(2383), + [sym_float_literal] = ACTIONS(2383), + [sym_rune_literal] = ACTIONS(2383), + [anon_sym_SQUOTE] = ACTIONS(2383), + [anon_sym_DQUOTE] = ACTIONS(2383), + [anon_sym_c_SQUOTE] = ACTIONS(2383), + [anon_sym_c_DQUOTE] = ACTIONS(2383), + [anon_sym_r_SQUOTE] = ACTIONS(2383), + [anon_sym_r_DQUOTE] = ACTIONS(2383), + [sym_pseudo_compile_time_identifier] = ACTIONS(2383), + [anon_sym_shared] = ACTIONS(2383), + [anon_sym_map_LBRACK] = ACTIONS(2383), + [anon_sym_chan] = ACTIONS(2383), + [anon_sym_thread] = ACTIONS(2383), + [anon_sym_atomic] = ACTIONS(2383), + }, + [1168] = { + [sym_line_comment] = STATE(1168), + [sym_block_comment] = STATE(1168), + [sym_identifier] = ACTIONS(1837), + [anon_sym_LF] = ACTIONS(1837), + [anon_sym_CR] = ACTIONS(1837), + [anon_sym_CR_LF] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_as] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_struct] = ACTIONS(1837), + [anon_sym_mut] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_QMARK] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_go] = ACTIONS(1837), + [anon_sym_spawn] = ACTIONS(1837), + [anon_sym_json_DOTdecode] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_LBRACK2] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_AMP_CARET] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [sym_none] = ACTIONS(1837), + [sym_true] = ACTIONS(1837), + [sym_false] = ACTIONS(1837), + [sym_nil] = ACTIONS(1837), + [anon_sym_QMARK_DOT] = ACTIONS(1837), + [anon_sym_POUND_LBRACK] = ACTIONS(1837), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_DOLLARif] = ACTIONS(1837), + [anon_sym_is] = ACTIONS(1837), + [anon_sym_BANGis] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_BANGin] = ACTIONS(1837), + [anon_sym_match] = ACTIONS(1837), + [anon_sym_select] = ACTIONS(1837), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1837), + [anon_sym_sql] = ACTIONS(1837), + [sym_int_literal] = ACTIONS(1837), + [sym_float_literal] = ACTIONS(1837), + [sym_rune_literal] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_c_SQUOTE] = ACTIONS(1837), + [anon_sym_c_DQUOTE] = ACTIONS(1837), + [anon_sym_r_SQUOTE] = ACTIONS(1837), + [anon_sym_r_DQUOTE] = ACTIONS(1837), + [sym_pseudo_compile_time_identifier] = ACTIONS(1837), + [anon_sym_shared] = ACTIONS(1837), + [anon_sym_map_LBRACK] = ACTIONS(1837), + [anon_sym_chan] = ACTIONS(1837), + [anon_sym_thread] = ACTIONS(1837), + [anon_sym_atomic] = ACTIONS(1837), + }, + [1169] = { + [sym_line_comment] = STATE(1169), + [sym_block_comment] = STATE(1169), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2418), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(609), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(595), [anon_sym_DOT] = ACTIONS(595), [anon_sym_as] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_LBRACE] = ACTIONS(599), [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_LPAREN] = ACTIONS(595), [anon_sym_EQ] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(3752), + [anon_sym_fn] = ACTIONS(615), [anon_sym_PLUS] = ACTIONS(597), [anon_sym_DASH] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_STAR] = ACTIONS(597), [anon_sym_SLASH] = ACTIONS(597), [anon_sym_PERCENT] = ACTIONS(597), [anon_sym_LT] = ACTIONS(597), @@ -153486,16 +154010,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(595), [anon_sym_GT_EQ] = ACTIONS(595), [anon_sym_LBRACK] = ACTIONS(595), - [anon_sym_struct] = ACTIONS(3756), - [anon_sym_COLON] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(619), [anon_sym_PLUS_PLUS] = ACTIONS(595), [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(3758), - [anon_sym_BANG] = ACTIONS(3760), - [anon_sym_LBRACK2] = ACTIONS(3762), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), [anon_sym_CARET] = ACTIONS(597), - [anon_sym_AMP] = ACTIONS(3764), - [anon_sym_LT_DASH] = ACTIONS(595), + [anon_sym_AMP] = ACTIONS(597), [anon_sym_LT_LT] = ACTIONS(597), [anon_sym_GT_GT] = ACTIONS(597), [anon_sym_GT_GT_GT] = ACTIONS(597), @@ -153521,2451 +154044,3235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_EQ] = ACTIONS(595), [anon_sym_PIPE_EQ] = ACTIONS(595), [anon_sym_CARET_EQ] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(3766), - [anon_sym_map_LBRACK] = ACTIONS(3768), - [anon_sym_chan] = ACTIONS(3770), - [anon_sym_thread] = ACTIONS(3772), - [anon_sym_atomic] = ACTIONS(3774), - }, - [1168] = { - [sym_line_comment] = STATE(1168), - [sym_block_comment] = STATE(1168), - [sym_identifier] = ACTIONS(2837), - [anon_sym_LF] = ACTIONS(2837), - [anon_sym_CR] = ACTIONS(2837), - [anon_sym_CR_LF] = ACTIONS(2837), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2837), - [anon_sym_DOT] = ACTIONS(2837), - [anon_sym_as] = ACTIONS(2837), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_COMMA] = ACTIONS(2837), - [anon_sym_RBRACE] = ACTIONS(2837), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_RPAREN] = ACTIONS(2837), - [anon_sym_PIPE] = ACTIONS(2837), - [anon_sym_fn] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2837), - [anon_sym_STAR] = ACTIONS(2837), - [anon_sym_SLASH] = ACTIONS(2837), - [anon_sym_PERCENT] = ACTIONS(2837), - [anon_sym_LT] = ACTIONS(2837), - [anon_sym_GT] = ACTIONS(2837), - [anon_sym_EQ_EQ] = ACTIONS(2837), - [anon_sym_BANG_EQ] = ACTIONS(2837), - [anon_sym_LT_EQ] = ACTIONS(2837), - [anon_sym_GT_EQ] = ACTIONS(2837), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2837), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_struct] = ACTIONS(2837), - [anon_sym_mut] = ACTIONS(2837), - [anon_sym_PLUS_PLUS] = ACTIONS(2837), - [anon_sym_DASH_DASH] = ACTIONS(2837), - [anon_sym_QMARK] = ACTIONS(2837), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_go] = ACTIONS(2837), - [anon_sym_spawn] = ACTIONS(2837), - [anon_sym_json_DOTdecode] = ACTIONS(2837), - [anon_sym_LBRACK2] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_CARET] = ACTIONS(2837), - [anon_sym_AMP] = ACTIONS(2837), - [anon_sym_LT_DASH] = ACTIONS(2837), - [anon_sym_LT_LT] = ACTIONS(2837), - [anon_sym_GT_GT] = ACTIONS(2837), - [anon_sym_GT_GT_GT] = ACTIONS(2837), - [anon_sym_AMP_CARET] = ACTIONS(2837), - [anon_sym_AMP_AMP] = ACTIONS(2837), - [anon_sym_PIPE_PIPE] = ACTIONS(2837), - [anon_sym_or] = ACTIONS(2837), - [sym_none] = ACTIONS(2837), - [sym_true] = ACTIONS(2837), - [sym_false] = ACTIONS(2837), - [sym_nil] = ACTIONS(2837), - [anon_sym_QMARK_DOT] = ACTIONS(2837), - [anon_sym_POUND_LBRACK] = ACTIONS(2837), - [anon_sym_if] = ACTIONS(2837), - [anon_sym_DOLLARif] = ACTIONS(2837), - [anon_sym_is] = ACTIONS(2837), - [anon_sym_BANGis] = ACTIONS(2837), - [anon_sym_in] = ACTIONS(2837), - [anon_sym_BANGin] = ACTIONS(2837), - [anon_sym_match] = ACTIONS(2837), - [anon_sym_select] = ACTIONS(2837), - [anon_sym_lock] = ACTIONS(2837), - [anon_sym_rlock] = ACTIONS(2837), - [anon_sym_unsafe] = ACTIONS(2837), - [anon_sym_sql] = ACTIONS(2837), - [sym_int_literal] = ACTIONS(2837), - [sym_float_literal] = ACTIONS(2837), - [sym_rune_literal] = ACTIONS(2837), - [anon_sym_SQUOTE] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2837), - [anon_sym_c_SQUOTE] = ACTIONS(2837), - [anon_sym_c_DQUOTE] = ACTIONS(2837), - [anon_sym_r_SQUOTE] = ACTIONS(2837), - [anon_sym_r_DQUOTE] = ACTIONS(2837), - [sym_pseudo_compile_time_identifier] = ACTIONS(2837), - [anon_sym_shared] = ACTIONS(2837), - [anon_sym_map_LBRACK] = ACTIONS(2837), - [anon_sym_chan] = ACTIONS(2837), - [anon_sym_thread] = ACTIONS(2837), - [anon_sym_atomic] = ACTIONS(2837), - }, - [1169] = { - [sym_line_comment] = STATE(1169), - [sym_block_comment] = STATE(1169), - [sym_identifier] = ACTIONS(1899), - [anon_sym_LF] = ACTIONS(1899), - [anon_sym_CR] = ACTIONS(1899), - [anon_sym_CR_LF] = ACTIONS(1899), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(1899), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_fn] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_mut] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [anon_sym_QMARK] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_go] = ACTIONS(1899), - [anon_sym_spawn] = ACTIONS(1899), - [anon_sym_json_DOTdecode] = ACTIONS(1899), - [anon_sym_LBRACK2] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_LT_DASH] = ACTIONS(1899), - [anon_sym_LT_LT] = ACTIONS(1899), - [anon_sym_GT_GT] = ACTIONS(1899), - [anon_sym_GT_GT_GT] = ACTIONS(1899), - [anon_sym_AMP_CARET] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_or] = ACTIONS(1899), - [sym_none] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_nil] = ACTIONS(1899), - [anon_sym_QMARK_DOT] = ACTIONS(1899), - [anon_sym_POUND_LBRACK] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_DOLLARif] = ACTIONS(1899), - [anon_sym_is] = ACTIONS(1899), - [anon_sym_BANGis] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_BANGin] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_select] = ACTIONS(1899), - [anon_sym_lock] = ACTIONS(1899), - [anon_sym_rlock] = ACTIONS(1899), - [anon_sym_unsafe] = ACTIONS(1899), - [anon_sym_sql] = ACTIONS(1899), - [sym_int_literal] = ACTIONS(1899), - [sym_float_literal] = ACTIONS(1899), - [sym_rune_literal] = ACTIONS(1899), - [anon_sym_SQUOTE] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1899), - [anon_sym_c_SQUOTE] = ACTIONS(1899), - [anon_sym_c_DQUOTE] = ACTIONS(1899), - [anon_sym_r_SQUOTE] = ACTIONS(1899), - [anon_sym_r_DQUOTE] = ACTIONS(1899), - [sym_pseudo_compile_time_identifier] = ACTIONS(1899), - [anon_sym_shared] = ACTIONS(1899), - [anon_sym_map_LBRACK] = ACTIONS(1899), - [anon_sym_chan] = ACTIONS(1899), - [anon_sym_thread] = ACTIONS(1899), - [anon_sym_atomic] = ACTIONS(1899), + [anon_sym_COLON_EQ] = ACTIONS(595), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [1170] = { [sym_line_comment] = STATE(1170), [sym_block_comment] = STATE(1170), - [sym_reference_expression] = STATE(4428), - [sym_type_reference_expression] = STATE(1899), - [sym_plain_type] = STATE(2044), - [sym__plain_type_without_special] = STATE(1918), - [sym_anon_struct_type] = STATE(1996), - [sym_multi_return_type] = STATE(1918), - [sym_result_type] = STATE(1918), - [sym_option_type] = STATE(1918), - [sym_qualified_type] = STATE(1899), - [sym_fixed_array_type] = STATE(1996), - [sym_array_type] = STATE(1996), - [sym_pointer_type] = STATE(1996), - [sym_wrong_pointer_type] = STATE(1996), - [sym_map_type] = STATE(1996), - [sym_channel_type] = STATE(1996), - [sym_shared_type] = STATE(1996), - [sym_thread_type] = STATE(1996), - [sym_atomic_type] = STATE(1996), - [sym_generic_type] = STATE(1996), - [sym_function_type] = STATE(1996), - [sym_identifier] = ACTIONS(3748), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_as] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3750), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(3756), - [anon_sym_COLON] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(3758), - [anon_sym_BANG] = ACTIONS(3760), - [anon_sym_LBRACK2] = ACTIONS(3762), - [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(3764), - [anon_sym_LT_DASH] = ACTIONS(563), - [anon_sym_LT_LT] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(567), - [anon_sym_AMP_CARET] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_or] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(563), - [anon_sym_POUND_LBRACK] = ACTIONS(563), - [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(563), - [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_STAR_EQ] = ACTIONS(563), - [anon_sym_SLASH_EQ] = ACTIONS(563), - [anon_sym_PERCENT_EQ] = ACTIONS(563), - [anon_sym_LT_LT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(563), - [anon_sym_AMP_EQ] = ACTIONS(563), - [anon_sym_AMP_CARET_EQ] = ACTIONS(563), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [anon_sym_DASH_EQ] = ACTIONS(563), - [anon_sym_PIPE_EQ] = ACTIONS(563), - [anon_sym_CARET_EQ] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(3766), - [anon_sym_map_LBRACK] = ACTIONS(3768), - [anon_sym_chan] = ACTIONS(3770), - [anon_sym_thread] = ACTIONS(3772), - [anon_sym_atomic] = ACTIONS(3774), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LF] = ACTIONS(2095), + [anon_sym_CR] = ACTIONS(2095), + [anon_sym_CR_LF] = ACTIONS(2095), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_COMMA] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_RPAREN] = ACTIONS(2095), + [anon_sym_fn] = ACTIONS(2095), + [anon_sym_PLUS] = ACTIONS(2095), + [anon_sym_DASH] = ACTIONS(2095), + [anon_sym_STAR] = ACTIONS(2095), + [anon_sym_SLASH] = ACTIONS(2095), + [anon_sym_PERCENT] = ACTIONS(2095), + [anon_sym_LT] = ACTIONS(2095), + [anon_sym_GT] = ACTIONS(2095), + [anon_sym_EQ_EQ] = ACTIONS(2095), + [anon_sym_BANG_EQ] = ACTIONS(2095), + [anon_sym_LT_EQ] = ACTIONS(2095), + [anon_sym_GT_EQ] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2095), + [anon_sym_mut] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_QMARK] = ACTIONS(2095), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_go] = ACTIONS(2095), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(2095), + [anon_sym_PIPE] = ACTIONS(2095), + [anon_sym_LBRACK2] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_LT_DASH] = ACTIONS(2095), + [anon_sym_LT_LT] = ACTIONS(2095), + [anon_sym_GT_GT] = ACTIONS(2095), + [anon_sym_GT_GT_GT] = ACTIONS(2095), + [anon_sym_AMP_CARET] = ACTIONS(2095), + [anon_sym_AMP_AMP] = ACTIONS(2095), + [anon_sym_PIPE_PIPE] = ACTIONS(2095), + [anon_sym_or] = ACTIONS(2095), + [sym_none] = ACTIONS(2095), + [sym_true] = ACTIONS(2095), + [sym_false] = ACTIONS(2095), + [sym_nil] = ACTIONS(2095), + [anon_sym_QMARK_DOT] = ACTIONS(2095), + [anon_sym_POUND_LBRACK] = ACTIONS(2095), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_DOLLARif] = ACTIONS(2095), + [anon_sym_is] = ACTIONS(2095), + [anon_sym_BANGis] = ACTIONS(2095), + [anon_sym_in] = ACTIONS(2095), + [anon_sym_BANGin] = ACTIONS(2095), + [anon_sym_match] = ACTIONS(2095), + [anon_sym_select] = ACTIONS(2095), + [anon_sym_lock] = ACTIONS(2095), + [anon_sym_rlock] = ACTIONS(2095), + [anon_sym_unsafe] = ACTIONS(2095), + [anon_sym_sql] = ACTIONS(2095), + [sym_int_literal] = ACTIONS(2095), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [anon_sym_SQUOTE] = ACTIONS(2095), + [anon_sym_DQUOTE] = ACTIONS(2095), + [anon_sym_c_SQUOTE] = ACTIONS(2095), + [anon_sym_c_DQUOTE] = ACTIONS(2095), + [anon_sym_r_SQUOTE] = ACTIONS(2095), + [anon_sym_r_DQUOTE] = ACTIONS(2095), + [sym_pseudo_compile_time_identifier] = ACTIONS(2095), + [anon_sym_shared] = ACTIONS(2095), + [anon_sym_map_LBRACK] = ACTIONS(2095), + [anon_sym_chan] = ACTIONS(2095), + [anon_sym_thread] = ACTIONS(2095), + [anon_sym_atomic] = ACTIONS(2095), }, [1171] = { [sym_line_comment] = STATE(1171), [sym_block_comment] = STATE(1171), - [sym_identifier] = ACTIONS(2427), - [anon_sym_LF] = ACTIONS(2427), - [anon_sym_CR] = ACTIONS(2427), - [anon_sym_CR_LF] = ACTIONS(2427), + [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_SEMI] = ACTIONS(2427), - [anon_sym_DOT] = ACTIONS(2427), - [anon_sym_as] = ACTIONS(2427), - [anon_sym_LBRACE] = ACTIONS(2427), - [anon_sym_COMMA] = ACTIONS(2427), - [anon_sym_RBRACE] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_RPAREN] = ACTIONS(2427), - [anon_sym_PIPE] = ACTIONS(2427), - [anon_sym_fn] = ACTIONS(2427), - [anon_sym_PLUS] = ACTIONS(2427), - [anon_sym_DASH] = ACTIONS(2427), - [anon_sym_STAR] = ACTIONS(2427), - [anon_sym_SLASH] = ACTIONS(2427), - [anon_sym_PERCENT] = ACTIONS(2427), - [anon_sym_LT] = ACTIONS(2427), - [anon_sym_GT] = ACTIONS(2427), - [anon_sym_EQ_EQ] = ACTIONS(2427), - [anon_sym_BANG_EQ] = ACTIONS(2427), - [anon_sym_LT_EQ] = ACTIONS(2427), - [anon_sym_GT_EQ] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2427), - [anon_sym_LBRACK] = ACTIONS(2425), - [anon_sym_struct] = ACTIONS(2427), - [anon_sym_mut] = ACTIONS(2427), - [anon_sym_PLUS_PLUS] = ACTIONS(2427), - [anon_sym_DASH_DASH] = ACTIONS(2427), - [anon_sym_QMARK] = ACTIONS(2427), - [anon_sym_BANG] = ACTIONS(2427), - [anon_sym_go] = ACTIONS(2427), - [anon_sym_spawn] = ACTIONS(2427), - [anon_sym_json_DOTdecode] = ACTIONS(2427), - [anon_sym_LBRACK2] = ACTIONS(2427), - [anon_sym_TILDE] = ACTIONS(2427), - [anon_sym_CARET] = ACTIONS(2427), - [anon_sym_AMP] = ACTIONS(2427), - [anon_sym_LT_DASH] = ACTIONS(2427), - [anon_sym_LT_LT] = ACTIONS(2427), - [anon_sym_GT_GT] = ACTIONS(2427), - [anon_sym_GT_GT_GT] = ACTIONS(2427), - [anon_sym_AMP_CARET] = ACTIONS(2427), - [anon_sym_AMP_AMP] = ACTIONS(2427), - [anon_sym_PIPE_PIPE] = ACTIONS(2427), - [anon_sym_or] = ACTIONS(2427), - [sym_none] = ACTIONS(2427), - [sym_true] = ACTIONS(2427), - [sym_false] = ACTIONS(2427), - [sym_nil] = ACTIONS(2427), - [anon_sym_QMARK_DOT] = ACTIONS(2427), - [anon_sym_POUND_LBRACK] = ACTIONS(2427), - [anon_sym_if] = ACTIONS(2427), - [anon_sym_DOLLARif] = ACTIONS(2427), - [anon_sym_is] = ACTIONS(2427), - [anon_sym_BANGis] = ACTIONS(2427), - [anon_sym_in] = ACTIONS(2427), - [anon_sym_BANGin] = ACTIONS(2427), - [anon_sym_match] = ACTIONS(2427), - [anon_sym_select] = ACTIONS(2427), - [anon_sym_lock] = ACTIONS(2427), - [anon_sym_rlock] = ACTIONS(2427), - [anon_sym_unsafe] = ACTIONS(2427), - [anon_sym_sql] = ACTIONS(2427), - [sym_int_literal] = ACTIONS(2427), - [sym_float_literal] = ACTIONS(2427), - [sym_rune_literal] = ACTIONS(2427), - [anon_sym_SQUOTE] = ACTIONS(2427), - [anon_sym_DQUOTE] = ACTIONS(2427), - [anon_sym_c_SQUOTE] = ACTIONS(2427), - [anon_sym_c_DQUOTE] = ACTIONS(2427), - [anon_sym_r_SQUOTE] = ACTIONS(2427), - [anon_sym_r_DQUOTE] = ACTIONS(2427), - [sym_pseudo_compile_time_identifier] = ACTIONS(2427), - [anon_sym_shared] = ACTIONS(2427), - [anon_sym_map_LBRACK] = ACTIONS(2427), - [anon_sym_chan] = ACTIONS(2427), - [anon_sym_thread] = ACTIONS(2427), - [anon_sym_atomic] = ACTIONS(2427), + [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_fn] = ACTIONS(2765), + [anon_sym_PLUS] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(2765), + [anon_sym_STAR] = ACTIONS(2765), + [anon_sym_SLASH] = 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_PIPE] = 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_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), + [anon_sym_SQUOTE] = ACTIONS(2765), + [anon_sym_DQUOTE] = ACTIONS(2765), + [anon_sym_c_SQUOTE] = ACTIONS(2765), + [anon_sym_c_DQUOTE] = ACTIONS(2765), + [anon_sym_r_SQUOTE] = ACTIONS(2765), + [anon_sym_r_DQUOTE] = 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), }, [1172] = { [sym_line_comment] = STATE(1172), [sym_block_comment] = STATE(1172), - [sym_identifier] = ACTIONS(2133), - [anon_sym_LF] = ACTIONS(2133), - [anon_sym_CR] = ACTIONS(2133), - [anon_sym_CR_LF] = ACTIONS(2133), + [sym_identifier] = ACTIONS(2321), + [anon_sym_LF] = ACTIONS(2321), + [anon_sym_CR] = ACTIONS(2321), + [anon_sym_CR_LF] = ACTIONS(2321), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2133), - [anon_sym_DOT] = ACTIONS(2133), - [anon_sym_as] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(2133), - [anon_sym_COMMA] = ACTIONS(2133), - [anon_sym_RBRACE] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_RPAREN] = ACTIONS(2133), - [anon_sym_PIPE] = ACTIONS(2133), - [anon_sym_fn] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(2133), - [anon_sym_DASH] = ACTIONS(2133), - [anon_sym_STAR] = ACTIONS(2133), - [anon_sym_SLASH] = ACTIONS(2133), - [anon_sym_PERCENT] = ACTIONS(2133), - [anon_sym_LT] = ACTIONS(2133), - [anon_sym_GT] = ACTIONS(2133), - [anon_sym_EQ_EQ] = ACTIONS(2133), - [anon_sym_BANG_EQ] = ACTIONS(2133), - [anon_sym_LT_EQ] = ACTIONS(2133), - [anon_sym_GT_EQ] = ACTIONS(2133), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(2131), - [anon_sym_struct] = ACTIONS(2133), - [anon_sym_mut] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2133), - [anon_sym_DASH_DASH] = ACTIONS(2133), - [anon_sym_QMARK] = ACTIONS(2133), - [anon_sym_BANG] = ACTIONS(2133), - [anon_sym_go] = ACTIONS(2133), - [anon_sym_spawn] = ACTIONS(2133), - [anon_sym_json_DOTdecode] = ACTIONS(2133), - [anon_sym_LBRACK2] = ACTIONS(2133), - [anon_sym_TILDE] = ACTIONS(2133), - [anon_sym_CARET] = ACTIONS(2133), - [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_LT_DASH] = ACTIONS(2133), - [anon_sym_LT_LT] = ACTIONS(2133), - [anon_sym_GT_GT] = ACTIONS(2133), - [anon_sym_GT_GT_GT] = ACTIONS(2133), - [anon_sym_AMP_CARET] = ACTIONS(2133), - [anon_sym_AMP_AMP] = ACTIONS(2133), - [anon_sym_PIPE_PIPE] = ACTIONS(2133), - [anon_sym_or] = ACTIONS(2133), - [sym_none] = ACTIONS(2133), - [sym_true] = ACTIONS(2133), - [sym_false] = ACTIONS(2133), - [sym_nil] = ACTIONS(2133), - [anon_sym_QMARK_DOT] = ACTIONS(2133), - [anon_sym_POUND_LBRACK] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_DOLLARif] = ACTIONS(2133), - [anon_sym_is] = ACTIONS(2133), - [anon_sym_BANGis] = ACTIONS(2133), - [anon_sym_in] = ACTIONS(2133), - [anon_sym_BANGin] = ACTIONS(2133), - [anon_sym_match] = ACTIONS(2133), - [anon_sym_select] = ACTIONS(2133), - [anon_sym_lock] = ACTIONS(2133), - [anon_sym_rlock] = ACTIONS(2133), - [anon_sym_unsafe] = ACTIONS(2133), - [anon_sym_sql] = ACTIONS(2133), - [sym_int_literal] = ACTIONS(2133), - [sym_float_literal] = ACTIONS(2133), - [sym_rune_literal] = ACTIONS(2133), - [anon_sym_SQUOTE] = ACTIONS(2133), - [anon_sym_DQUOTE] = ACTIONS(2133), - [anon_sym_c_SQUOTE] = ACTIONS(2133), - [anon_sym_c_DQUOTE] = ACTIONS(2133), - [anon_sym_r_SQUOTE] = ACTIONS(2133), - [anon_sym_r_DQUOTE] = ACTIONS(2133), - [sym_pseudo_compile_time_identifier] = ACTIONS(2133), - [anon_sym_shared] = ACTIONS(2133), - [anon_sym_map_LBRACK] = ACTIONS(2133), - [anon_sym_chan] = ACTIONS(2133), - [anon_sym_thread] = ACTIONS(2133), - [anon_sym_atomic] = ACTIONS(2133), + [anon_sym_SEMI] = ACTIONS(2321), + [anon_sym_DOT] = ACTIONS(2321), + [anon_sym_as] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2321), + [anon_sym_COMMA] = ACTIONS(2321), + [anon_sym_RBRACE] = ACTIONS(2321), + [anon_sym_LPAREN] = ACTIONS(2321), + [anon_sym_RPAREN] = ACTIONS(2321), + [anon_sym_fn] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(2321), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_SLASH] = ACTIONS(2321), + [anon_sym_PERCENT] = ACTIONS(2321), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_GT] = ACTIONS(2321), + [anon_sym_EQ_EQ] = ACTIONS(2321), + [anon_sym_BANG_EQ] = ACTIONS(2321), + [anon_sym_LT_EQ] = ACTIONS(2321), + [anon_sym_GT_EQ] = ACTIONS(2321), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2321), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_struct] = ACTIONS(2321), + [anon_sym_mut] = ACTIONS(2321), + [anon_sym_PLUS_PLUS] = ACTIONS(2321), + [anon_sym_DASH_DASH] = ACTIONS(2321), + [anon_sym_QMARK] = ACTIONS(2321), + [anon_sym_BANG] = ACTIONS(2321), + [anon_sym_go] = ACTIONS(2321), + [anon_sym_spawn] = ACTIONS(2321), + [anon_sym_json_DOTdecode] = ACTIONS(2321), + [anon_sym_PIPE] = ACTIONS(2321), + [anon_sym_LBRACK2] = ACTIONS(2321), + [anon_sym_TILDE] = ACTIONS(2321), + [anon_sym_CARET] = ACTIONS(2321), + [anon_sym_AMP] = ACTIONS(2321), + [anon_sym_LT_DASH] = ACTIONS(2321), + [anon_sym_LT_LT] = ACTIONS(2321), + [anon_sym_GT_GT] = ACTIONS(2321), + [anon_sym_GT_GT_GT] = ACTIONS(2321), + [anon_sym_AMP_CARET] = ACTIONS(2321), + [anon_sym_AMP_AMP] = ACTIONS(2321), + [anon_sym_PIPE_PIPE] = ACTIONS(2321), + [anon_sym_or] = ACTIONS(2321), + [sym_none] = ACTIONS(2321), + [sym_true] = ACTIONS(2321), + [sym_false] = ACTIONS(2321), + [sym_nil] = ACTIONS(2321), + [anon_sym_QMARK_DOT] = ACTIONS(2321), + [anon_sym_POUND_LBRACK] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_DOLLARif] = ACTIONS(2321), + [anon_sym_is] = ACTIONS(2321), + [anon_sym_BANGis] = ACTIONS(2321), + [anon_sym_in] = ACTIONS(2321), + [anon_sym_BANGin] = ACTIONS(2321), + [anon_sym_match] = ACTIONS(2321), + [anon_sym_select] = ACTIONS(2321), + [anon_sym_lock] = ACTIONS(2321), + [anon_sym_rlock] = ACTIONS(2321), + [anon_sym_unsafe] = ACTIONS(2321), + [anon_sym_sql] = ACTIONS(2321), + [sym_int_literal] = ACTIONS(2321), + [sym_float_literal] = ACTIONS(2321), + [sym_rune_literal] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_DQUOTE] = ACTIONS(2321), + [anon_sym_c_SQUOTE] = ACTIONS(2321), + [anon_sym_c_DQUOTE] = ACTIONS(2321), + [anon_sym_r_SQUOTE] = ACTIONS(2321), + [anon_sym_r_DQUOTE] = ACTIONS(2321), + [sym_pseudo_compile_time_identifier] = ACTIONS(2321), + [anon_sym_shared] = ACTIONS(2321), + [anon_sym_map_LBRACK] = ACTIONS(2321), + [anon_sym_chan] = ACTIONS(2321), + [anon_sym_thread] = ACTIONS(2321), + [anon_sym_atomic] = ACTIONS(2321), }, [1173] = { [sym_line_comment] = STATE(1173), [sym_block_comment] = STATE(1173), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LF] = ACTIONS(2119), - [anon_sym_CR] = ACTIONS(2119), - [anon_sym_CR_LF] = ACTIONS(2119), + [sym_identifier] = ACTIONS(2937), + [anon_sym_LF] = ACTIONS(2937), + [anon_sym_CR] = ACTIONS(2937), + [anon_sym_CR_LF] = ACTIONS(2937), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_DOT] = ACTIONS(2119), - [anon_sym_as] = ACTIONS(2119), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_RPAREN] = ACTIONS(2119), - [anon_sym_PIPE] = ACTIONS(2119), - [anon_sym_fn] = ACTIONS(2119), - [anon_sym_PLUS] = ACTIONS(2119), - [anon_sym_DASH] = ACTIONS(2119), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_SLASH] = ACTIONS(2119), - [anon_sym_PERCENT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2119), - [anon_sym_GT] = ACTIONS(2119), - [anon_sym_EQ_EQ] = ACTIONS(2119), - [anon_sym_BANG_EQ] = ACTIONS(2119), - [anon_sym_LT_EQ] = ACTIONS(2119), - [anon_sym_GT_EQ] = ACTIONS(2119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2119), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_struct] = ACTIONS(2119), - [anon_sym_mut] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_QMARK] = ACTIONS(2119), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_go] = ACTIONS(2119), - [anon_sym_spawn] = ACTIONS(2119), - [anon_sym_json_DOTdecode] = ACTIONS(2119), - [anon_sym_LBRACK2] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_LT_DASH] = ACTIONS(2119), - [anon_sym_LT_LT] = ACTIONS(2119), - [anon_sym_GT_GT] = ACTIONS(2119), - [anon_sym_GT_GT_GT] = ACTIONS(2119), - [anon_sym_AMP_CARET] = ACTIONS(2119), - [anon_sym_AMP_AMP] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2119), - [anon_sym_or] = ACTIONS(2119), - [sym_none] = ACTIONS(2119), - [sym_true] = ACTIONS(2119), - [sym_false] = ACTIONS(2119), - [sym_nil] = ACTIONS(2119), - [anon_sym_QMARK_DOT] = ACTIONS(2119), - [anon_sym_POUND_LBRACK] = ACTIONS(2119), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(2119), - [anon_sym_is] = ACTIONS(2119), - [anon_sym_BANGis] = ACTIONS(2119), - [anon_sym_in] = ACTIONS(2119), - [anon_sym_BANGin] = ACTIONS(2119), - [anon_sym_match] = ACTIONS(2119), - [anon_sym_select] = ACTIONS(2119), - [anon_sym_lock] = ACTIONS(2119), - [anon_sym_rlock] = ACTIONS(2119), - [anon_sym_unsafe] = ACTIONS(2119), - [anon_sym_sql] = ACTIONS(2119), - [sym_int_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), - [sym_rune_literal] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_c_SQUOTE] = ACTIONS(2119), - [anon_sym_c_DQUOTE] = ACTIONS(2119), - [anon_sym_r_SQUOTE] = ACTIONS(2119), - [anon_sym_r_DQUOTE] = ACTIONS(2119), - [sym_pseudo_compile_time_identifier] = ACTIONS(2119), - [anon_sym_shared] = ACTIONS(2119), - [anon_sym_map_LBRACK] = ACTIONS(2119), - [anon_sym_chan] = ACTIONS(2119), - [anon_sym_thread] = ACTIONS(2119), - [anon_sym_atomic] = ACTIONS(2119), + [anon_sym_SEMI] = ACTIONS(2937), + [anon_sym_DOT] = ACTIONS(2937), + [anon_sym_as] = ACTIONS(2937), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(2937), + [anon_sym_RBRACE] = ACTIONS(2937), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_RPAREN] = ACTIONS(2937), + [anon_sym_fn] = ACTIONS(2937), + [anon_sym_PLUS] = ACTIONS(2937), + [anon_sym_DASH] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2937), + [anon_sym_SLASH] = ACTIONS(2937), + [anon_sym_PERCENT] = ACTIONS(2937), + [anon_sym_LT] = ACTIONS(2937), + [anon_sym_GT] = ACTIONS(2937), + [anon_sym_EQ_EQ] = ACTIONS(2937), + [anon_sym_BANG_EQ] = ACTIONS(2937), + [anon_sym_LT_EQ] = ACTIONS(2937), + [anon_sym_GT_EQ] = ACTIONS(2937), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2935), + [anon_sym_struct] = ACTIONS(2937), + [anon_sym_mut] = ACTIONS(2937), + [anon_sym_PLUS_PLUS] = ACTIONS(2937), + [anon_sym_DASH_DASH] = ACTIONS(2937), + [anon_sym_QMARK] = ACTIONS(2937), + [anon_sym_BANG] = ACTIONS(2937), + [anon_sym_go] = ACTIONS(2937), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2937), + [anon_sym_PIPE] = ACTIONS(2937), + [anon_sym_LBRACK2] = ACTIONS(2937), + [anon_sym_TILDE] = ACTIONS(2937), + [anon_sym_CARET] = ACTIONS(2937), + [anon_sym_AMP] = ACTIONS(2937), + [anon_sym_LT_DASH] = ACTIONS(2937), + [anon_sym_LT_LT] = ACTIONS(2937), + [anon_sym_GT_GT] = ACTIONS(2937), + [anon_sym_GT_GT_GT] = ACTIONS(2937), + [anon_sym_AMP_CARET] = ACTIONS(2937), + [anon_sym_AMP_AMP] = ACTIONS(2937), + [anon_sym_PIPE_PIPE] = ACTIONS(2937), + [anon_sym_or] = ACTIONS(2937), + [sym_none] = ACTIONS(2937), + [sym_true] = ACTIONS(2937), + [sym_false] = ACTIONS(2937), + [sym_nil] = ACTIONS(2937), + [anon_sym_QMARK_DOT] = ACTIONS(2937), + [anon_sym_POUND_LBRACK] = ACTIONS(2937), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_DOLLARif] = ACTIONS(2937), + [anon_sym_is] = ACTIONS(2937), + [anon_sym_BANGis] = ACTIONS(2937), + [anon_sym_in] = ACTIONS(2937), + [anon_sym_BANGin] = ACTIONS(2937), + [anon_sym_match] = ACTIONS(2937), + [anon_sym_select] = ACTIONS(2937), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(2937), + [anon_sym_sql] = ACTIONS(2937), + [sym_int_literal] = ACTIONS(2937), + [sym_float_literal] = ACTIONS(2937), + [sym_rune_literal] = ACTIONS(2937), + [anon_sym_SQUOTE] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2937), + [anon_sym_c_SQUOTE] = ACTIONS(2937), + [anon_sym_c_DQUOTE] = ACTIONS(2937), + [anon_sym_r_SQUOTE] = ACTIONS(2937), + [anon_sym_r_DQUOTE] = ACTIONS(2937), + [sym_pseudo_compile_time_identifier] = ACTIONS(2937), + [anon_sym_shared] = ACTIONS(2937), + [anon_sym_map_LBRACK] = ACTIONS(2937), + [anon_sym_chan] = ACTIONS(2937), + [anon_sym_thread] = ACTIONS(2937), + [anon_sym_atomic] = ACTIONS(2937), }, [1174] = { [sym_line_comment] = STATE(1174), [sym_block_comment] = STATE(1174), - [sym_identifier] = ACTIONS(2233), - [anon_sym_LF] = ACTIONS(2233), - [anon_sym_CR] = ACTIONS(2233), - [anon_sym_CR_LF] = ACTIONS(2233), + [sym_identifier] = ACTIONS(2327), + [anon_sym_LF] = ACTIONS(2327), + [anon_sym_CR] = ACTIONS(2327), + [anon_sym_CR_LF] = ACTIONS(2327), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2233), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_as] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_COMMA] = ACTIONS(2233), - [anon_sym_RBRACE] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_RPAREN] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2233), - [anon_sym_fn] = ACTIONS(2233), - [anon_sym_PLUS] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2233), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_SLASH] = ACTIONS(2233), - [anon_sym_PERCENT] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2233), - [anon_sym_GT] = ACTIONS(2233), - [anon_sym_EQ_EQ] = ACTIONS(2233), - [anon_sym_BANG_EQ] = ACTIONS(2233), - [anon_sym_LT_EQ] = ACTIONS(2233), - [anon_sym_GT_EQ] = ACTIONS(2233), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2231), - [anon_sym_struct] = ACTIONS(2233), - [anon_sym_mut] = ACTIONS(2233), - [anon_sym_PLUS_PLUS] = ACTIONS(2233), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [anon_sym_QMARK] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2233), - [anon_sym_go] = ACTIONS(2233), - [anon_sym_spawn] = ACTIONS(2233), - [anon_sym_json_DOTdecode] = ACTIONS(2233), - [anon_sym_LBRACK2] = ACTIONS(2233), - [anon_sym_TILDE] = ACTIONS(2233), - [anon_sym_CARET] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_LT_DASH] = ACTIONS(2233), - [anon_sym_LT_LT] = ACTIONS(2233), - [anon_sym_GT_GT] = ACTIONS(2233), - [anon_sym_GT_GT_GT] = ACTIONS(2233), - [anon_sym_AMP_CARET] = ACTIONS(2233), - [anon_sym_AMP_AMP] = ACTIONS(2233), - [anon_sym_PIPE_PIPE] = ACTIONS(2233), - [anon_sym_or] = ACTIONS(2233), - [sym_none] = ACTIONS(2233), - [sym_true] = ACTIONS(2233), - [sym_false] = ACTIONS(2233), - [sym_nil] = ACTIONS(2233), - [anon_sym_QMARK_DOT] = ACTIONS(2233), - [anon_sym_POUND_LBRACK] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_DOLLARif] = ACTIONS(2233), - [anon_sym_is] = ACTIONS(2233), - [anon_sym_BANGis] = ACTIONS(2233), - [anon_sym_in] = ACTIONS(2233), - [anon_sym_BANGin] = ACTIONS(2233), - [anon_sym_match] = ACTIONS(2233), - [anon_sym_select] = ACTIONS(2233), - [anon_sym_lock] = ACTIONS(2233), - [anon_sym_rlock] = ACTIONS(2233), - [anon_sym_unsafe] = ACTIONS(2233), - [anon_sym_sql] = ACTIONS(2233), - [sym_int_literal] = ACTIONS(2233), - [sym_float_literal] = ACTIONS(2233), - [sym_rune_literal] = ACTIONS(2233), - [anon_sym_SQUOTE] = ACTIONS(2233), - [anon_sym_DQUOTE] = ACTIONS(2233), - [anon_sym_c_SQUOTE] = ACTIONS(2233), - [anon_sym_c_DQUOTE] = ACTIONS(2233), - [anon_sym_r_SQUOTE] = ACTIONS(2233), - [anon_sym_r_DQUOTE] = ACTIONS(2233), - [sym_pseudo_compile_time_identifier] = ACTIONS(2233), - [anon_sym_shared] = ACTIONS(2233), - [anon_sym_map_LBRACK] = ACTIONS(2233), - [anon_sym_chan] = ACTIONS(2233), - [anon_sym_thread] = ACTIONS(2233), - [anon_sym_atomic] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_DOT] = ACTIONS(2327), + [anon_sym_as] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_COMMA] = ACTIONS(2327), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_fn] = ACTIONS(2327), + [anon_sym_PLUS] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2327), + [anon_sym_SLASH] = ACTIONS(2327), + [anon_sym_PERCENT] = ACTIONS(2327), + [anon_sym_LT] = ACTIONS(2327), + [anon_sym_GT] = ACTIONS(2327), + [anon_sym_EQ_EQ] = ACTIONS(2327), + [anon_sym_BANG_EQ] = ACTIONS(2327), + [anon_sym_LT_EQ] = ACTIONS(2327), + [anon_sym_GT_EQ] = ACTIONS(2327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2325), + [anon_sym_struct] = ACTIONS(2327), + [anon_sym_mut] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [anon_sym_QMARK] = ACTIONS(2327), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_go] = ACTIONS(2327), + [anon_sym_spawn] = ACTIONS(2327), + [anon_sym_json_DOTdecode] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_LBRACK2] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_CARET] = ACTIONS(2327), + [anon_sym_AMP] = ACTIONS(2327), + [anon_sym_LT_DASH] = ACTIONS(2327), + [anon_sym_LT_LT] = ACTIONS(2327), + [anon_sym_GT_GT] = ACTIONS(2327), + [anon_sym_GT_GT_GT] = ACTIONS(2327), + [anon_sym_AMP_CARET] = ACTIONS(2327), + [anon_sym_AMP_AMP] = ACTIONS(2327), + [anon_sym_PIPE_PIPE] = ACTIONS(2327), + [anon_sym_or] = ACTIONS(2327), + [sym_none] = ACTIONS(2327), + [sym_true] = ACTIONS(2327), + [sym_false] = ACTIONS(2327), + [sym_nil] = ACTIONS(2327), + [anon_sym_QMARK_DOT] = ACTIONS(2327), + [anon_sym_POUND_LBRACK] = ACTIONS(2327), + [anon_sym_if] = ACTIONS(2327), + [anon_sym_DOLLARif] = ACTIONS(2327), + [anon_sym_is] = ACTIONS(2327), + [anon_sym_BANGis] = ACTIONS(2327), + [anon_sym_in] = ACTIONS(2327), + [anon_sym_BANGin] = ACTIONS(2327), + [anon_sym_match] = ACTIONS(2327), + [anon_sym_select] = ACTIONS(2327), + [anon_sym_lock] = ACTIONS(2327), + [anon_sym_rlock] = ACTIONS(2327), + [anon_sym_unsafe] = ACTIONS(2327), + [anon_sym_sql] = ACTIONS(2327), + [sym_int_literal] = ACTIONS(2327), + [sym_float_literal] = ACTIONS(2327), + [sym_rune_literal] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [anon_sym_c_SQUOTE] = ACTIONS(2327), + [anon_sym_c_DQUOTE] = ACTIONS(2327), + [anon_sym_r_SQUOTE] = ACTIONS(2327), + [anon_sym_r_DQUOTE] = ACTIONS(2327), + [sym_pseudo_compile_time_identifier] = ACTIONS(2327), + [anon_sym_shared] = ACTIONS(2327), + [anon_sym_map_LBRACK] = ACTIONS(2327), + [anon_sym_chan] = ACTIONS(2327), + [anon_sym_thread] = ACTIONS(2327), + [anon_sym_atomic] = ACTIONS(2327), }, [1175] = { [sym_line_comment] = STATE(1175), [sym_block_comment] = STATE(1175), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LF] = ACTIONS(2241), - [anon_sym_CR] = ACTIONS(2241), - [anon_sym_CR_LF] = ACTIONS(2241), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2241), - [anon_sym_DOT] = ACTIONS(2241), - [anon_sym_as] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_COMMA] = ACTIONS(2241), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_RPAREN] = ACTIONS(2241), - [anon_sym_PIPE] = ACTIONS(2241), - [anon_sym_fn] = ACTIONS(2241), - [anon_sym_PLUS] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_STAR] = ACTIONS(2241), - [anon_sym_SLASH] = ACTIONS(2241), - [anon_sym_PERCENT] = ACTIONS(2241), - [anon_sym_LT] = ACTIONS(2241), - [anon_sym_GT] = ACTIONS(2241), - [anon_sym_EQ_EQ] = ACTIONS(2241), - [anon_sym_BANG_EQ] = ACTIONS(2241), - [anon_sym_LT_EQ] = ACTIONS(2241), - [anon_sym_GT_EQ] = ACTIONS(2241), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2239), - [anon_sym_struct] = ACTIONS(2241), - [anon_sym_mut] = ACTIONS(2241), - [anon_sym_PLUS_PLUS] = ACTIONS(2241), - [anon_sym_DASH_DASH] = ACTIONS(2241), - [anon_sym_QMARK] = ACTIONS(2241), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_go] = ACTIONS(2241), - [anon_sym_spawn] = ACTIONS(2241), - [anon_sym_json_DOTdecode] = ACTIONS(2241), - [anon_sym_LBRACK2] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2241), - [anon_sym_LT_DASH] = ACTIONS(2241), - [anon_sym_LT_LT] = ACTIONS(2241), - [anon_sym_GT_GT] = ACTIONS(2241), - [anon_sym_GT_GT_GT] = ACTIONS(2241), - [anon_sym_AMP_CARET] = ACTIONS(2241), - [anon_sym_AMP_AMP] = ACTIONS(2241), - [anon_sym_PIPE_PIPE] = ACTIONS(2241), - [anon_sym_or] = ACTIONS(2241), - [sym_none] = ACTIONS(2241), - [sym_true] = ACTIONS(2241), - [sym_false] = ACTIONS(2241), - [sym_nil] = ACTIONS(2241), - [anon_sym_QMARK_DOT] = ACTIONS(2241), - [anon_sym_POUND_LBRACK] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_DOLLARif] = ACTIONS(2241), - [anon_sym_is] = ACTIONS(2241), - [anon_sym_BANGis] = ACTIONS(2241), - [anon_sym_in] = ACTIONS(2241), - [anon_sym_BANGin] = ACTIONS(2241), - [anon_sym_match] = ACTIONS(2241), - [anon_sym_select] = ACTIONS(2241), - [anon_sym_lock] = ACTIONS(2241), - [anon_sym_rlock] = ACTIONS(2241), - [anon_sym_unsafe] = ACTIONS(2241), - [anon_sym_sql] = ACTIONS(2241), - [sym_int_literal] = ACTIONS(2241), - [sym_float_literal] = ACTIONS(2241), - [sym_rune_literal] = ACTIONS(2241), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_DQUOTE] = ACTIONS(2241), - [anon_sym_c_SQUOTE] = ACTIONS(2241), - [anon_sym_c_DQUOTE] = ACTIONS(2241), - [anon_sym_r_SQUOTE] = ACTIONS(2241), - [anon_sym_r_DQUOTE] = ACTIONS(2241), - [sym_pseudo_compile_time_identifier] = ACTIONS(2241), - [anon_sym_shared] = ACTIONS(2241), - [anon_sym_map_LBRACK] = ACTIONS(2241), - [anon_sym_chan] = ACTIONS(2241), - [anon_sym_thread] = ACTIONS(2241), - [anon_sym_atomic] = ACTIONS(2241), - }, - [1176] = { - [sym_line_comment] = STATE(1176), - [sym_block_comment] = STATE(1176), - [sym_identifier] = ACTIONS(2257), - [anon_sym_LF] = ACTIONS(2257), - [anon_sym_CR] = ACTIONS(2257), - [anon_sym_CR_LF] = ACTIONS(2257), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2257), - [anon_sym_DOT] = ACTIONS(2257), - [anon_sym_as] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2257), - [anon_sym_COMMA] = ACTIONS(2257), - [anon_sym_RBRACE] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(2257), - [anon_sym_RPAREN] = ACTIONS(2257), - [anon_sym_PIPE] = ACTIONS(2257), - [anon_sym_fn] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2257), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_STAR] = ACTIONS(2257), - [anon_sym_SLASH] = ACTIONS(2257), - [anon_sym_PERCENT] = ACTIONS(2257), - [anon_sym_LT] = ACTIONS(2257), - [anon_sym_GT] = ACTIONS(2257), - [anon_sym_EQ_EQ] = ACTIONS(2257), - [anon_sym_BANG_EQ] = ACTIONS(2257), - [anon_sym_LT_EQ] = ACTIONS(2257), - [anon_sym_GT_EQ] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2255), - [anon_sym_struct] = ACTIONS(2257), - [anon_sym_mut] = ACTIONS(2257), - [anon_sym_PLUS_PLUS] = ACTIONS(2257), - [anon_sym_DASH_DASH] = ACTIONS(2257), - [anon_sym_QMARK] = ACTIONS(2257), - [anon_sym_BANG] = ACTIONS(2257), - [anon_sym_go] = ACTIONS(2257), - [anon_sym_spawn] = ACTIONS(2257), - [anon_sym_json_DOTdecode] = ACTIONS(2257), - [anon_sym_LBRACK2] = ACTIONS(2257), - [anon_sym_TILDE] = ACTIONS(2257), - [anon_sym_CARET] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), - [anon_sym_LT_DASH] = ACTIONS(2257), - [anon_sym_LT_LT] = ACTIONS(2257), - [anon_sym_GT_GT] = ACTIONS(2257), - [anon_sym_GT_GT_GT] = ACTIONS(2257), - [anon_sym_AMP_CARET] = ACTIONS(2257), - [anon_sym_AMP_AMP] = ACTIONS(2257), - [anon_sym_PIPE_PIPE] = ACTIONS(2257), - [anon_sym_or] = ACTIONS(2257), - [sym_none] = ACTIONS(2257), - [sym_true] = ACTIONS(2257), - [sym_false] = ACTIONS(2257), - [sym_nil] = ACTIONS(2257), - [anon_sym_QMARK_DOT] = ACTIONS(2257), - [anon_sym_POUND_LBRACK] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_DOLLARif] = ACTIONS(2257), - [anon_sym_is] = ACTIONS(2257), - [anon_sym_BANGis] = ACTIONS(2257), - [anon_sym_in] = ACTIONS(2257), - [anon_sym_BANGin] = ACTIONS(2257), - [anon_sym_match] = ACTIONS(2257), - [anon_sym_select] = ACTIONS(2257), - [anon_sym_lock] = ACTIONS(2257), - [anon_sym_rlock] = ACTIONS(2257), - [anon_sym_unsafe] = ACTIONS(2257), - [anon_sym_sql] = ACTIONS(2257), - [sym_int_literal] = ACTIONS(2257), - [sym_float_literal] = ACTIONS(2257), - [sym_rune_literal] = ACTIONS(2257), - [anon_sym_SQUOTE] = ACTIONS(2257), - [anon_sym_DQUOTE] = ACTIONS(2257), - [anon_sym_c_SQUOTE] = ACTIONS(2257), - [anon_sym_c_DQUOTE] = ACTIONS(2257), - [anon_sym_r_SQUOTE] = ACTIONS(2257), - [anon_sym_r_DQUOTE] = ACTIONS(2257), - [sym_pseudo_compile_time_identifier] = ACTIONS(2257), - [anon_sym_shared] = ACTIONS(2257), - [anon_sym_map_LBRACK] = ACTIONS(2257), - [anon_sym_chan] = ACTIONS(2257), - [anon_sym_thread] = ACTIONS(2257), - [anon_sym_atomic] = ACTIONS(2257), - }, - [1177] = { - [sym_line_comment] = STATE(1177), - [sym_block_comment] = STATE(1177), - [sym_identifier] = ACTIONS(2189), - [anon_sym_LF] = ACTIONS(2189), - [anon_sym_CR] = ACTIONS(2189), - [anon_sym_CR_LF] = ACTIONS(2189), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2189), - [anon_sym_DOT] = ACTIONS(2189), - [anon_sym_as] = ACTIONS(2189), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_COMMA] = ACTIONS(2189), - [anon_sym_RBRACE] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_RPAREN] = ACTIONS(2189), - [anon_sym_PIPE] = ACTIONS(2189), - [anon_sym_fn] = ACTIONS(2189), - [anon_sym_PLUS] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2189), - [anon_sym_STAR] = ACTIONS(2189), - [anon_sym_SLASH] = ACTIONS(2189), - [anon_sym_PERCENT] = ACTIONS(2189), - [anon_sym_LT] = ACTIONS(2189), - [anon_sym_GT] = ACTIONS(2189), - [anon_sym_EQ_EQ] = ACTIONS(2189), - [anon_sym_BANG_EQ] = ACTIONS(2189), - [anon_sym_LT_EQ] = ACTIONS(2189), - [anon_sym_GT_EQ] = ACTIONS(2189), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2189), - [anon_sym_LBRACK] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(2189), - [anon_sym_mut] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [anon_sym_QMARK] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_go] = ACTIONS(2189), - [anon_sym_spawn] = ACTIONS(2189), - [anon_sym_json_DOTdecode] = ACTIONS(2189), - [anon_sym_LBRACK2] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_CARET] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2189), - [anon_sym_LT_DASH] = ACTIONS(2189), - [anon_sym_LT_LT] = ACTIONS(2189), - [anon_sym_GT_GT] = ACTIONS(2189), - [anon_sym_GT_GT_GT] = ACTIONS(2189), - [anon_sym_AMP_CARET] = ACTIONS(2189), - [anon_sym_AMP_AMP] = ACTIONS(2189), - [anon_sym_PIPE_PIPE] = ACTIONS(2189), - [anon_sym_or] = ACTIONS(2189), - [sym_none] = ACTIONS(2189), - [sym_true] = ACTIONS(2189), - [sym_false] = ACTIONS(2189), - [sym_nil] = ACTIONS(2189), - [anon_sym_QMARK_DOT] = ACTIONS(2189), - [anon_sym_POUND_LBRACK] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_DOLLARif] = ACTIONS(2189), - [anon_sym_is] = ACTIONS(2189), - [anon_sym_BANGis] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(2189), - [anon_sym_BANGin] = ACTIONS(2189), - [anon_sym_match] = ACTIONS(2189), - [anon_sym_select] = ACTIONS(2189), - [anon_sym_lock] = ACTIONS(2189), - [anon_sym_rlock] = ACTIONS(2189), - [anon_sym_unsafe] = ACTIONS(2189), - [anon_sym_sql] = ACTIONS(2189), - [sym_int_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_rune_literal] = ACTIONS(2189), - [anon_sym_SQUOTE] = ACTIONS(2189), - [anon_sym_DQUOTE] = ACTIONS(2189), - [anon_sym_c_SQUOTE] = ACTIONS(2189), - [anon_sym_c_DQUOTE] = ACTIONS(2189), - [anon_sym_r_SQUOTE] = ACTIONS(2189), - [anon_sym_r_DQUOTE] = ACTIONS(2189), - [sym_pseudo_compile_time_identifier] = ACTIONS(2189), - [anon_sym_shared] = ACTIONS(2189), - [anon_sym_map_LBRACK] = ACTIONS(2189), - [anon_sym_chan] = ACTIONS(2189), - [anon_sym_thread] = ACTIONS(2189), - [anon_sym_atomic] = ACTIONS(2189), - }, - [1178] = { - [sym_line_comment] = STATE(1178), - [sym_block_comment] = STATE(1178), - [sym_identifier] = ACTIONS(2439), - [anon_sym_LF] = ACTIONS(2439), - [anon_sym_CR] = ACTIONS(2439), - [anon_sym_CR_LF] = ACTIONS(2439), + [sym_identifier] = ACTIONS(2745), + [anon_sym_LF] = ACTIONS(2745), + [anon_sym_CR] = ACTIONS(2745), + [anon_sym_CR_LF] = ACTIONS(2745), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2439), - [anon_sym_DOT] = ACTIONS(2439), - [anon_sym_as] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_COMMA] = ACTIONS(2439), - [anon_sym_RBRACE] = ACTIONS(2439), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_RPAREN] = ACTIONS(2439), - [anon_sym_PIPE] = ACTIONS(2439), - [anon_sym_fn] = ACTIONS(2439), - [anon_sym_PLUS] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2439), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_SLASH] = ACTIONS(2439), - [anon_sym_PERCENT] = ACTIONS(2439), - [anon_sym_LT] = ACTIONS(2439), - [anon_sym_GT] = ACTIONS(2439), - [anon_sym_EQ_EQ] = ACTIONS(2439), - [anon_sym_BANG_EQ] = ACTIONS(2439), - [anon_sym_LT_EQ] = ACTIONS(2439), - [anon_sym_GT_EQ] = ACTIONS(2439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2439), - [anon_sym_LBRACK] = ACTIONS(2437), - [anon_sym_struct] = ACTIONS(2439), - [anon_sym_mut] = ACTIONS(2439), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [anon_sym_QMARK] = ACTIONS(2439), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_go] = ACTIONS(2439), - [anon_sym_spawn] = ACTIONS(2439), - [anon_sym_json_DOTdecode] = ACTIONS(2439), - [anon_sym_LBRACK2] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2439), - [anon_sym_CARET] = ACTIONS(2439), - [anon_sym_AMP] = ACTIONS(2439), - [anon_sym_LT_DASH] = ACTIONS(2439), - [anon_sym_LT_LT] = ACTIONS(2439), - [anon_sym_GT_GT] = ACTIONS(2439), - [anon_sym_GT_GT_GT] = ACTIONS(2439), - [anon_sym_AMP_CARET] = ACTIONS(2439), - [anon_sym_AMP_AMP] = ACTIONS(2439), - [anon_sym_PIPE_PIPE] = ACTIONS(2439), - [anon_sym_or] = ACTIONS(2439), - [sym_none] = ACTIONS(2439), - [sym_true] = ACTIONS(2439), - [sym_false] = ACTIONS(2439), - [sym_nil] = ACTIONS(2439), - [anon_sym_QMARK_DOT] = ACTIONS(2439), - [anon_sym_POUND_LBRACK] = ACTIONS(2439), - [anon_sym_if] = ACTIONS(2439), - [anon_sym_DOLLARif] = ACTIONS(2439), - [anon_sym_is] = ACTIONS(2439), - [anon_sym_BANGis] = ACTIONS(2439), - [anon_sym_in] = ACTIONS(2439), - [anon_sym_BANGin] = ACTIONS(2439), - [anon_sym_match] = ACTIONS(2439), - [anon_sym_select] = ACTIONS(2439), - [anon_sym_lock] = ACTIONS(2439), - [anon_sym_rlock] = ACTIONS(2439), - [anon_sym_unsafe] = ACTIONS(2439), - [anon_sym_sql] = ACTIONS(2439), - [sym_int_literal] = ACTIONS(2439), - [sym_float_literal] = ACTIONS(2439), - [sym_rune_literal] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_DQUOTE] = ACTIONS(2439), - [anon_sym_c_SQUOTE] = ACTIONS(2439), - [anon_sym_c_DQUOTE] = ACTIONS(2439), - [anon_sym_r_SQUOTE] = ACTIONS(2439), - [anon_sym_r_DQUOTE] = ACTIONS(2439), - [sym_pseudo_compile_time_identifier] = ACTIONS(2439), - [anon_sym_shared] = ACTIONS(2439), - [anon_sym_map_LBRACK] = ACTIONS(2439), - [anon_sym_chan] = ACTIONS(2439), - [anon_sym_thread] = ACTIONS(2439), - [anon_sym_atomic] = ACTIONS(2439), + [anon_sym_SEMI] = ACTIONS(2745), + [anon_sym_DOT] = ACTIONS(2745), + [anon_sym_as] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2745), + [anon_sym_COMMA] = ACTIONS(2745), + [anon_sym_RBRACE] = ACTIONS(2745), + [anon_sym_LPAREN] = ACTIONS(2745), + [anon_sym_RPAREN] = ACTIONS(2745), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_SLASH] = ACTIONS(2745), + [anon_sym_PERCENT] = ACTIONS(2745), + [anon_sym_LT] = ACTIONS(2745), + [anon_sym_GT] = ACTIONS(2745), + [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_DOT_DOT_DOT] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2745), + [anon_sym_mut] = ACTIONS(2745), + [anon_sym_PLUS_PLUS] = ACTIONS(2745), + [anon_sym_DASH_DASH] = ACTIONS(2745), + [anon_sym_QMARK] = ACTIONS(2745), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_go] = ACTIONS(2745), + [anon_sym_spawn] = ACTIONS(2745), + [anon_sym_json_DOTdecode] = ACTIONS(2745), + [anon_sym_PIPE] = ACTIONS(2745), + [anon_sym_LBRACK2] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_CARET] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2745), + [anon_sym_LT_DASH] = ACTIONS(2745), + [anon_sym_LT_LT] = ACTIONS(2745), + [anon_sym_GT_GT] = ACTIONS(2745), + [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(2745), + [sym_none] = ACTIONS(2745), + [sym_true] = ACTIONS(2745), + [sym_false] = ACTIONS(2745), + [sym_nil] = ACTIONS(2745), + [anon_sym_QMARK_DOT] = ACTIONS(2745), + [anon_sym_POUND_LBRACK] = ACTIONS(2745), + [anon_sym_if] = ACTIONS(2745), + [anon_sym_DOLLARif] = ACTIONS(2745), + [anon_sym_is] = ACTIONS(2745), + [anon_sym_BANGis] = ACTIONS(2745), + [anon_sym_in] = ACTIONS(2745), + [anon_sym_BANGin] = ACTIONS(2745), + [anon_sym_match] = ACTIONS(2745), + [anon_sym_select] = ACTIONS(2745), + [anon_sym_lock] = ACTIONS(2745), + [anon_sym_rlock] = ACTIONS(2745), + [anon_sym_unsafe] = ACTIONS(2745), + [anon_sym_sql] = ACTIONS(2745), + [sym_int_literal] = ACTIONS(2745), + [sym_float_literal] = ACTIONS(2745), + [sym_rune_literal] = ACTIONS(2745), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2745), + [anon_sym_c_SQUOTE] = ACTIONS(2745), + [anon_sym_c_DQUOTE] = ACTIONS(2745), + [anon_sym_r_SQUOTE] = ACTIONS(2745), + [anon_sym_r_DQUOTE] = ACTIONS(2745), + [sym_pseudo_compile_time_identifier] = ACTIONS(2745), + [anon_sym_shared] = ACTIONS(2745), + [anon_sym_map_LBRACK] = ACTIONS(2745), + [anon_sym_chan] = ACTIONS(2745), + [anon_sym_thread] = ACTIONS(2745), + [anon_sym_atomic] = ACTIONS(2745), + }, + [1176] = { + [sym_line_comment] = STATE(1176), + [sym_block_comment] = STATE(1176), + [sym_identifier] = ACTIONS(3010), + [anon_sym_LF] = ACTIONS(3010), + [anon_sym_CR] = ACTIONS(3010), + [anon_sym_CR_LF] = ACTIONS(3010), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3010), + [anon_sym_DOT] = ACTIONS(3010), + [anon_sym_as] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3010), + [anon_sym_COMMA] = ACTIONS(3010), + [anon_sym_RBRACE] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3010), + [anon_sym_RPAREN] = ACTIONS(3010), + [anon_sym_fn] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_SLASH] = ACTIONS(3010), + [anon_sym_PERCENT] = ACTIONS(3010), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3010), + [anon_sym_EQ_EQ] = ACTIONS(3010), + [anon_sym_BANG_EQ] = ACTIONS(3010), + [anon_sym_LT_EQ] = ACTIONS(3010), + [anon_sym_GT_EQ] = ACTIONS(3010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3010), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_struct] = ACTIONS(3010), + [anon_sym_mut] = ACTIONS(3010), + [anon_sym_PLUS_PLUS] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(3010), + [anon_sym_QMARK] = ACTIONS(3010), + [anon_sym_BANG] = ACTIONS(3010), + [anon_sym_go] = ACTIONS(3010), + [anon_sym_spawn] = ACTIONS(3010), + [anon_sym_json_DOTdecode] = ACTIONS(3010), + [anon_sym_PIPE] = ACTIONS(3010), + [anon_sym_LBRACK2] = ACTIONS(3010), + [anon_sym_TILDE] = ACTIONS(3010), + [anon_sym_CARET] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3010), + [anon_sym_LT_DASH] = ACTIONS(3010), + [anon_sym_LT_LT] = ACTIONS(3010), + [anon_sym_GT_GT] = ACTIONS(3010), + [anon_sym_GT_GT_GT] = ACTIONS(3010), + [anon_sym_AMP_CARET] = ACTIONS(3010), + [anon_sym_AMP_AMP] = ACTIONS(3010), + [anon_sym_PIPE_PIPE] = ACTIONS(3010), + [anon_sym_or] = ACTIONS(3010), + [sym_none] = ACTIONS(3010), + [sym_true] = ACTIONS(3010), + [sym_false] = ACTIONS(3010), + [sym_nil] = ACTIONS(3010), + [anon_sym_QMARK_DOT] = ACTIONS(3010), + [anon_sym_POUND_LBRACK] = ACTIONS(3010), + [anon_sym_if] = ACTIONS(3010), + [anon_sym_DOLLARif] = ACTIONS(3010), + [anon_sym_is] = ACTIONS(3010), + [anon_sym_BANGis] = ACTIONS(3010), + [anon_sym_in] = ACTIONS(3010), + [anon_sym_BANGin] = ACTIONS(3010), + [anon_sym_match] = ACTIONS(3010), + [anon_sym_select] = ACTIONS(3010), + [anon_sym_lock] = ACTIONS(3010), + [anon_sym_rlock] = ACTIONS(3010), + [anon_sym_unsafe] = ACTIONS(3010), + [anon_sym_sql] = ACTIONS(3010), + [sym_int_literal] = ACTIONS(3010), + [sym_float_literal] = ACTIONS(3010), + [sym_rune_literal] = ACTIONS(3010), + [anon_sym_SQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE] = ACTIONS(3010), + [anon_sym_c_SQUOTE] = ACTIONS(3010), + [anon_sym_c_DQUOTE] = ACTIONS(3010), + [anon_sym_r_SQUOTE] = ACTIONS(3010), + [anon_sym_r_DQUOTE] = ACTIONS(3010), + [sym_pseudo_compile_time_identifier] = ACTIONS(3010), + [anon_sym_shared] = ACTIONS(3010), + [anon_sym_map_LBRACK] = ACTIONS(3010), + [anon_sym_chan] = ACTIONS(3010), + [anon_sym_thread] = ACTIONS(3010), + [anon_sym_atomic] = ACTIONS(3010), + }, + [1177] = { + [sym_line_comment] = STATE(1177), + [sym_block_comment] = STATE(1177), + [sym_identifier] = ACTIONS(2925), + [anon_sym_LF] = ACTIONS(2925), + [anon_sym_CR] = ACTIONS(2925), + [anon_sym_CR_LF] = ACTIONS(2925), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym_DOT] = ACTIONS(2925), + [anon_sym_as] = ACTIONS(2925), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_COMMA] = ACTIONS(2925), + [anon_sym_RBRACE] = ACTIONS(2925), + [anon_sym_LPAREN] = ACTIONS(2925), + [anon_sym_RPAREN] = ACTIONS(2925), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_SLASH] = ACTIONS(2925), + [anon_sym_PERCENT] = ACTIONS(2925), + [anon_sym_LT] = ACTIONS(2925), + [anon_sym_GT] = ACTIONS(2925), + [anon_sym_EQ_EQ] = ACTIONS(2925), + [anon_sym_BANG_EQ] = ACTIONS(2925), + [anon_sym_LT_EQ] = ACTIONS(2925), + [anon_sym_GT_EQ] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2925), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2925), + [anon_sym_mut] = ACTIONS(2925), + [anon_sym_PLUS_PLUS] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(2925), + [anon_sym_QMARK] = ACTIONS(2925), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2925), + [anon_sym_spawn] = ACTIONS(2925), + [anon_sym_json_DOTdecode] = ACTIONS(2925), + [anon_sym_PIPE] = ACTIONS(2925), + [anon_sym_LBRACK2] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_CARET] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2925), + [anon_sym_LT_DASH] = ACTIONS(2925), + [anon_sym_LT_LT] = ACTIONS(2925), + [anon_sym_GT_GT] = ACTIONS(2925), + [anon_sym_GT_GT_GT] = ACTIONS(2925), + [anon_sym_AMP_CARET] = ACTIONS(2925), + [anon_sym_AMP_AMP] = ACTIONS(2925), + [anon_sym_PIPE_PIPE] = ACTIONS(2925), + [anon_sym_or] = ACTIONS(2925), + [sym_none] = ACTIONS(2925), + [sym_true] = ACTIONS(2925), + [sym_false] = ACTIONS(2925), + [sym_nil] = ACTIONS(2925), + [anon_sym_QMARK_DOT] = ACTIONS(2925), + [anon_sym_POUND_LBRACK] = ACTIONS(2925), + [anon_sym_if] = ACTIONS(2925), + [anon_sym_DOLLARif] = ACTIONS(2925), + [anon_sym_is] = ACTIONS(2925), + [anon_sym_BANGis] = ACTIONS(2925), + [anon_sym_in] = ACTIONS(2925), + [anon_sym_BANGin] = ACTIONS(2925), + [anon_sym_match] = ACTIONS(2925), + [anon_sym_select] = ACTIONS(2925), + [anon_sym_lock] = ACTIONS(2925), + [anon_sym_rlock] = ACTIONS(2925), + [anon_sym_unsafe] = ACTIONS(2925), + [anon_sym_sql] = ACTIONS(2925), + [sym_int_literal] = ACTIONS(2925), + [sym_float_literal] = ACTIONS(2925), + [sym_rune_literal] = ACTIONS(2925), + [anon_sym_SQUOTE] = ACTIONS(2925), + [anon_sym_DQUOTE] = ACTIONS(2925), + [anon_sym_c_SQUOTE] = ACTIONS(2925), + [anon_sym_c_DQUOTE] = ACTIONS(2925), + [anon_sym_r_SQUOTE] = ACTIONS(2925), + [anon_sym_r_DQUOTE] = ACTIONS(2925), + [sym_pseudo_compile_time_identifier] = ACTIONS(2925), + [anon_sym_shared] = ACTIONS(2925), + [anon_sym_map_LBRACK] = ACTIONS(2925), + [anon_sym_chan] = ACTIONS(2925), + [anon_sym_thread] = ACTIONS(2925), + [anon_sym_atomic] = ACTIONS(2925), + }, + [1178] = { + [sym_line_comment] = STATE(1178), + [sym_block_comment] = STATE(1178), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LF] = ACTIONS(3066), + [anon_sym_CR] = ACTIONS(3066), + [anon_sym_CR_LF] = ACTIONS(3066), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3066), + [anon_sym_DOT] = ACTIONS(3066), + [anon_sym_as] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3066), + [anon_sym_COMMA] = ACTIONS(3066), + [anon_sym_RBRACE] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_RPAREN] = ACTIONS(3066), + [anon_sym_fn] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3066), + [anon_sym_STAR] = ACTIONS(3066), + [anon_sym_SLASH] = ACTIONS(3066), + [anon_sym_PERCENT] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_GT] = ACTIONS(3066), + [anon_sym_EQ_EQ] = ACTIONS(3066), + [anon_sym_BANG_EQ] = ACTIONS(3066), + [anon_sym_LT_EQ] = ACTIONS(3066), + [anon_sym_GT_EQ] = ACTIONS(3066), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(3066), + [anon_sym_PLUS_PLUS] = ACTIONS(3066), + [anon_sym_DASH_DASH] = ACTIONS(3066), + [anon_sym_QMARK] = ACTIONS(3066), + [anon_sym_BANG] = ACTIONS(3066), + [anon_sym_go] = ACTIONS(3066), + [anon_sym_spawn] = ACTIONS(3066), + [anon_sym_json_DOTdecode] = ACTIONS(3066), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_LBRACK2] = ACTIONS(3066), + [anon_sym_TILDE] = ACTIONS(3066), + [anon_sym_CARET] = ACTIONS(3066), + [anon_sym_AMP] = ACTIONS(3066), + [anon_sym_LT_DASH] = ACTIONS(3066), + [anon_sym_LT_LT] = ACTIONS(3066), + [anon_sym_GT_GT] = ACTIONS(3066), + [anon_sym_GT_GT_GT] = ACTIONS(3066), + [anon_sym_AMP_CARET] = ACTIONS(3066), + [anon_sym_AMP_AMP] = ACTIONS(3066), + [anon_sym_PIPE_PIPE] = ACTIONS(3066), + [anon_sym_or] = ACTIONS(3066), + [sym_none] = ACTIONS(3066), + [sym_true] = ACTIONS(3066), + [sym_false] = ACTIONS(3066), + [sym_nil] = ACTIONS(3066), + [anon_sym_QMARK_DOT] = ACTIONS(3066), + [anon_sym_POUND_LBRACK] = ACTIONS(3066), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_DOLLARif] = ACTIONS(3066), + [anon_sym_is] = ACTIONS(3066), + [anon_sym_BANGis] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(3066), + [anon_sym_BANGin] = ACTIONS(3066), + [anon_sym_match] = ACTIONS(3066), + [anon_sym_select] = ACTIONS(3066), + [anon_sym_lock] = ACTIONS(3066), + [anon_sym_rlock] = ACTIONS(3066), + [anon_sym_unsafe] = ACTIONS(3066), + [anon_sym_sql] = ACTIONS(3066), + [sym_int_literal] = ACTIONS(3066), + [sym_float_literal] = ACTIONS(3066), + [sym_rune_literal] = ACTIONS(3066), + [anon_sym_SQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3066), + [anon_sym_c_SQUOTE] = ACTIONS(3066), + [anon_sym_c_DQUOTE] = ACTIONS(3066), + [anon_sym_r_SQUOTE] = ACTIONS(3066), + [anon_sym_r_DQUOTE] = ACTIONS(3066), + [sym_pseudo_compile_time_identifier] = ACTIONS(3066), + [anon_sym_shared] = ACTIONS(3066), + [anon_sym_map_LBRACK] = ACTIONS(3066), + [anon_sym_chan] = ACTIONS(3066), + [anon_sym_thread] = ACTIONS(3066), + [anon_sym_atomic] = ACTIONS(3066), }, [1179] = { [sym_line_comment] = STATE(1179), [sym_block_comment] = STATE(1179), - [sym_identifier] = ACTIONS(2891), - [anon_sym_LF] = ACTIONS(2891), - [anon_sym_CR] = ACTIONS(2891), - [anon_sym_CR_LF] = ACTIONS(2891), + [sym_identifier] = ACTIONS(2755), + [anon_sym_LF] = ACTIONS(2755), + [anon_sym_CR] = ACTIONS(2755), + [anon_sym_CR_LF] = ACTIONS(2755), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2891), - [anon_sym_as] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2891), - [anon_sym_COMMA] = ACTIONS(2891), - [anon_sym_RBRACE] = ACTIONS(2891), - [anon_sym_LPAREN] = ACTIONS(2891), - [anon_sym_RPAREN] = ACTIONS(2891), - [anon_sym_PIPE] = ACTIONS(2891), - [anon_sym_fn] = ACTIONS(2891), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_SLASH] = ACTIONS(2891), - [anon_sym_PERCENT] = ACTIONS(2891), - [anon_sym_LT] = ACTIONS(2891), - [anon_sym_GT] = ACTIONS(2891), - [anon_sym_EQ_EQ] = ACTIONS(2891), - [anon_sym_BANG_EQ] = ACTIONS(2891), - [anon_sym_LT_EQ] = ACTIONS(2891), - [anon_sym_GT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_struct] = ACTIONS(2891), - [anon_sym_mut] = ACTIONS(2891), - [anon_sym_PLUS_PLUS] = ACTIONS(2891), - [anon_sym_DASH_DASH] = ACTIONS(2891), - [anon_sym_QMARK] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2891), - [anon_sym_go] = ACTIONS(2891), - [anon_sym_spawn] = ACTIONS(2891), - [anon_sym_json_DOTdecode] = ACTIONS(2891), - [anon_sym_LBRACK2] = ACTIONS(2891), - [anon_sym_TILDE] = ACTIONS(2891), - [anon_sym_CARET] = ACTIONS(2891), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_LT_DASH] = ACTIONS(2891), - [anon_sym_LT_LT] = ACTIONS(2891), - [anon_sym_GT_GT] = ACTIONS(2891), - [anon_sym_GT_GT_GT] = ACTIONS(2891), - [anon_sym_AMP_CARET] = ACTIONS(2891), - [anon_sym_AMP_AMP] = ACTIONS(2891), - [anon_sym_PIPE_PIPE] = ACTIONS(2891), - [anon_sym_or] = ACTIONS(2891), - [sym_none] = ACTIONS(2891), - [sym_true] = ACTIONS(2891), - [sym_false] = ACTIONS(2891), - [sym_nil] = ACTIONS(2891), - [anon_sym_QMARK_DOT] = ACTIONS(2891), - [anon_sym_POUND_LBRACK] = ACTIONS(2891), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_DOLLARif] = ACTIONS(2891), - [anon_sym_is] = ACTIONS(2891), - [anon_sym_BANGis] = ACTIONS(2891), - [anon_sym_in] = ACTIONS(2891), - [anon_sym_BANGin] = ACTIONS(2891), - [anon_sym_match] = ACTIONS(2891), - [anon_sym_select] = ACTIONS(2891), - [anon_sym_lock] = ACTIONS(2891), - [anon_sym_rlock] = ACTIONS(2891), - [anon_sym_unsafe] = ACTIONS(2891), - [anon_sym_sql] = ACTIONS(2891), - [sym_int_literal] = ACTIONS(2891), - [sym_float_literal] = ACTIONS(2891), - [sym_rune_literal] = ACTIONS(2891), - [anon_sym_SQUOTE] = ACTIONS(2891), - [anon_sym_DQUOTE] = ACTIONS(2891), - [anon_sym_c_SQUOTE] = ACTIONS(2891), - [anon_sym_c_DQUOTE] = ACTIONS(2891), - [anon_sym_r_SQUOTE] = ACTIONS(2891), - [anon_sym_r_DQUOTE] = 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_SEMI] = ACTIONS(2755), + [anon_sym_DOT] = ACTIONS(2755), + [anon_sym_as] = ACTIONS(2755), + [anon_sym_LBRACE] = ACTIONS(2755), + [anon_sym_COMMA] = ACTIONS(2755), + [anon_sym_RBRACE] = ACTIONS(2755), + [anon_sym_LPAREN] = ACTIONS(2755), + [anon_sym_RPAREN] = ACTIONS(2755), + [anon_sym_fn] = ACTIONS(2755), + [anon_sym_PLUS] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_SLASH] = ACTIONS(2755), + [anon_sym_PERCENT] = ACTIONS(2755), + [anon_sym_LT] = ACTIONS(2755), + [anon_sym_GT] = ACTIONS(2755), + [anon_sym_EQ_EQ] = ACTIONS(2755), + [anon_sym_BANG_EQ] = ACTIONS(2755), + [anon_sym_LT_EQ] = ACTIONS(2755), + [anon_sym_GT_EQ] = ACTIONS(2755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2755), + [anon_sym_LBRACK] = ACTIONS(2753), + [anon_sym_struct] = ACTIONS(2755), + [anon_sym_mut] = ACTIONS(2755), + [anon_sym_PLUS_PLUS] = ACTIONS(2755), + [anon_sym_DASH_DASH] = ACTIONS(2755), + [anon_sym_QMARK] = ACTIONS(2755), + [anon_sym_BANG] = ACTIONS(2755), + [anon_sym_go] = ACTIONS(2755), + [anon_sym_spawn] = ACTIONS(2755), + [anon_sym_json_DOTdecode] = ACTIONS(2755), + [anon_sym_PIPE] = ACTIONS(2755), + [anon_sym_LBRACK2] = ACTIONS(2755), + [anon_sym_TILDE] = ACTIONS(2755), + [anon_sym_CARET] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(2755), + [anon_sym_LT_DASH] = ACTIONS(2755), + [anon_sym_LT_LT] = ACTIONS(2755), + [anon_sym_GT_GT] = ACTIONS(2755), + [anon_sym_GT_GT_GT] = ACTIONS(2755), + [anon_sym_AMP_CARET] = ACTIONS(2755), + [anon_sym_AMP_AMP] = ACTIONS(2755), + [anon_sym_PIPE_PIPE] = ACTIONS(2755), + [anon_sym_or] = ACTIONS(2755), + [sym_none] = ACTIONS(2755), + [sym_true] = ACTIONS(2755), + [sym_false] = ACTIONS(2755), + [sym_nil] = ACTIONS(2755), + [anon_sym_QMARK_DOT] = ACTIONS(2755), + [anon_sym_POUND_LBRACK] = ACTIONS(2755), + [anon_sym_if] = ACTIONS(2755), + [anon_sym_DOLLARif] = ACTIONS(2755), + [anon_sym_is] = ACTIONS(2755), + [anon_sym_BANGis] = ACTIONS(2755), + [anon_sym_in] = ACTIONS(2755), + [anon_sym_BANGin] = ACTIONS(2755), + [anon_sym_match] = ACTIONS(2755), + [anon_sym_select] = ACTIONS(2755), + [anon_sym_lock] = ACTIONS(2755), + [anon_sym_rlock] = ACTIONS(2755), + [anon_sym_unsafe] = ACTIONS(2755), + [anon_sym_sql] = ACTIONS(2755), + [sym_int_literal] = ACTIONS(2755), + [sym_float_literal] = ACTIONS(2755), + [sym_rune_literal] = ACTIONS(2755), + [anon_sym_SQUOTE] = ACTIONS(2755), + [anon_sym_DQUOTE] = ACTIONS(2755), + [anon_sym_c_SQUOTE] = ACTIONS(2755), + [anon_sym_c_DQUOTE] = ACTIONS(2755), + [anon_sym_r_SQUOTE] = ACTIONS(2755), + [anon_sym_r_DQUOTE] = ACTIONS(2755), + [sym_pseudo_compile_time_identifier] = ACTIONS(2755), + [anon_sym_shared] = ACTIONS(2755), + [anon_sym_map_LBRACK] = ACTIONS(2755), + [anon_sym_chan] = ACTIONS(2755), + [anon_sym_thread] = ACTIONS(2755), + [anon_sym_atomic] = ACTIONS(2755), }, [1180] = { [sym_line_comment] = STATE(1180), [sym_block_comment] = STATE(1180), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LF] = ACTIONS(2185), - [anon_sym_CR] = ACTIONS(2185), - [anon_sym_CR_LF] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2969), + [anon_sym_LF] = ACTIONS(2969), + [anon_sym_CR] = ACTIONS(2969), + [anon_sym_CR_LF] = ACTIONS(2969), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2185), - [anon_sym_DOT] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_COMMA] = ACTIONS(2185), - [anon_sym_RBRACE] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym_RPAREN] = ACTIONS(2185), - [anon_sym_PIPE] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(2185), - [anon_sym_SLASH] = ACTIONS(2185), - [anon_sym_PERCENT] = ACTIONS(2185), - [anon_sym_LT] = ACTIONS(2185), - [anon_sym_GT] = ACTIONS(2185), - [anon_sym_EQ_EQ] = ACTIONS(2185), - [anon_sym_BANG_EQ] = ACTIONS(2185), - [anon_sym_LT_EQ] = ACTIONS(2185), - [anon_sym_GT_EQ] = ACTIONS(2185), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_mut] = ACTIONS(2185), - [anon_sym_PLUS_PLUS] = ACTIONS(2185), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_QMARK] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_go] = ACTIONS(2185), - [anon_sym_spawn] = ACTIONS(2185), - [anon_sym_json_DOTdecode] = ACTIONS(2185), - [anon_sym_LBRACK2] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_LT_DASH] = ACTIONS(2185), - [anon_sym_LT_LT] = ACTIONS(2185), - [anon_sym_GT_GT] = ACTIONS(2185), - [anon_sym_GT_GT_GT] = ACTIONS(2185), - [anon_sym_AMP_CARET] = ACTIONS(2185), - [anon_sym_AMP_AMP] = ACTIONS(2185), - [anon_sym_PIPE_PIPE] = ACTIONS(2185), - [anon_sym_or] = ACTIONS(2185), - [sym_none] = ACTIONS(2185), - [sym_true] = ACTIONS(2185), - [sym_false] = ACTIONS(2185), - [sym_nil] = ACTIONS(2185), - [anon_sym_QMARK_DOT] = ACTIONS(2185), - [anon_sym_POUND_LBRACK] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_DOLLARif] = ACTIONS(2185), - [anon_sym_is] = ACTIONS(2185), - [anon_sym_BANGis] = ACTIONS(2185), - [anon_sym_in] = ACTIONS(2185), - [anon_sym_BANGin] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_select] = ACTIONS(2185), - [anon_sym_lock] = ACTIONS(2185), - [anon_sym_rlock] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_sql] = ACTIONS(2185), - [sym_int_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_rune_literal] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_DQUOTE] = ACTIONS(2185), - [anon_sym_c_SQUOTE] = ACTIONS(2185), - [anon_sym_c_DQUOTE] = ACTIONS(2185), - [anon_sym_r_SQUOTE] = ACTIONS(2185), - [anon_sym_r_DQUOTE] = ACTIONS(2185), - [sym_pseudo_compile_time_identifier] = ACTIONS(2185), - [anon_sym_shared] = ACTIONS(2185), - [anon_sym_map_LBRACK] = ACTIONS(2185), - [anon_sym_chan] = ACTIONS(2185), - [anon_sym_thread] = ACTIONS(2185), - [anon_sym_atomic] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2969), + [anon_sym_DOT] = ACTIONS(2969), + [anon_sym_as] = ACTIONS(2969), + [anon_sym_LBRACE] = ACTIONS(2969), + [anon_sym_COMMA] = ACTIONS(2969), + [anon_sym_RBRACE] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2969), + [anon_sym_RPAREN] = ACTIONS(2969), + [anon_sym_fn] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(2969), + [anon_sym_SLASH] = ACTIONS(2969), + [anon_sym_PERCENT] = ACTIONS(2969), + [anon_sym_LT] = ACTIONS(2969), + [anon_sym_GT] = ACTIONS(2969), + [anon_sym_EQ_EQ] = ACTIONS(2969), + [anon_sym_BANG_EQ] = ACTIONS(2969), + [anon_sym_LT_EQ] = ACTIONS(2969), + [anon_sym_GT_EQ] = ACTIONS(2969), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(2967), + [anon_sym_struct] = ACTIONS(2969), + [anon_sym_mut] = ACTIONS(2969), + [anon_sym_PLUS_PLUS] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(2969), + [anon_sym_QMARK] = ACTIONS(2969), + [anon_sym_BANG] = ACTIONS(2969), + [anon_sym_go] = ACTIONS(2969), + [anon_sym_spawn] = ACTIONS(2969), + [anon_sym_json_DOTdecode] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2969), + [anon_sym_LBRACK2] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2969), + [anon_sym_CARET] = ACTIONS(2969), + [anon_sym_AMP] = ACTIONS(2969), + [anon_sym_LT_DASH] = ACTIONS(2969), + [anon_sym_LT_LT] = ACTIONS(2969), + [anon_sym_GT_GT] = ACTIONS(2969), + [anon_sym_GT_GT_GT] = ACTIONS(2969), + [anon_sym_AMP_CARET] = ACTIONS(2969), + [anon_sym_AMP_AMP] = ACTIONS(2969), + [anon_sym_PIPE_PIPE] = ACTIONS(2969), + [anon_sym_or] = ACTIONS(2969), + [sym_none] = ACTIONS(2969), + [sym_true] = ACTIONS(2969), + [sym_false] = ACTIONS(2969), + [sym_nil] = ACTIONS(2969), + [anon_sym_QMARK_DOT] = ACTIONS(2969), + [anon_sym_POUND_LBRACK] = ACTIONS(2969), + [anon_sym_if] = ACTIONS(2969), + [anon_sym_DOLLARif] = ACTIONS(2969), + [anon_sym_is] = ACTIONS(2969), + [anon_sym_BANGis] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(2969), + [anon_sym_BANGin] = ACTIONS(2969), + [anon_sym_match] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), + [anon_sym_lock] = ACTIONS(2969), + [anon_sym_rlock] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(2969), + [anon_sym_sql] = ACTIONS(2969), + [sym_int_literal] = ACTIONS(2969), + [sym_float_literal] = ACTIONS(2969), + [sym_rune_literal] = ACTIONS(2969), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_DQUOTE] = ACTIONS(2969), + [anon_sym_c_SQUOTE] = ACTIONS(2969), + [anon_sym_c_DQUOTE] = ACTIONS(2969), + [anon_sym_r_SQUOTE] = ACTIONS(2969), + [anon_sym_r_DQUOTE] = ACTIONS(2969), + [sym_pseudo_compile_time_identifier] = ACTIONS(2969), + [anon_sym_shared] = ACTIONS(2969), + [anon_sym_map_LBRACK] = ACTIONS(2969), + [anon_sym_chan] = ACTIONS(2969), + [anon_sym_thread] = ACTIONS(2969), + [anon_sym_atomic] = ACTIONS(2969), }, [1181] = { [sym_line_comment] = STATE(1181), [sym_block_comment] = STATE(1181), - [sym_identifier] = ACTIONS(2101), - [anon_sym_LF] = ACTIONS(2101), - [anon_sym_CR] = ACTIONS(2101), - [anon_sym_CR_LF] = ACTIONS(2101), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2101), - [anon_sym_DOT] = ACTIONS(2101), - [anon_sym_as] = ACTIONS(2101), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_COMMA] = ACTIONS(2101), - [anon_sym_RBRACE] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2101), - [anon_sym_RPAREN] = ACTIONS(2101), - [anon_sym_PIPE] = ACTIONS(2101), - [anon_sym_fn] = ACTIONS(2101), - [anon_sym_PLUS] = ACTIONS(2101), - [anon_sym_DASH] = ACTIONS(2101), - [anon_sym_STAR] = ACTIONS(2101), - [anon_sym_SLASH] = ACTIONS(2101), - [anon_sym_PERCENT] = ACTIONS(2101), - [anon_sym_LT] = ACTIONS(2101), - [anon_sym_GT] = ACTIONS(2101), - [anon_sym_EQ_EQ] = ACTIONS(2101), - [anon_sym_BANG_EQ] = ACTIONS(2101), - [anon_sym_LT_EQ] = ACTIONS(2101), - [anon_sym_GT_EQ] = ACTIONS(2101), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2101), - [anon_sym_LBRACK] = ACTIONS(2099), - [anon_sym_struct] = ACTIONS(2101), - [anon_sym_mut] = ACTIONS(2101), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_QMARK] = ACTIONS(2101), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_go] = ACTIONS(2101), - [anon_sym_spawn] = ACTIONS(2101), - [anon_sym_json_DOTdecode] = ACTIONS(2101), - [anon_sym_LBRACK2] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_LT_DASH] = ACTIONS(2101), - [anon_sym_LT_LT] = ACTIONS(2101), - [anon_sym_GT_GT] = ACTIONS(2101), - [anon_sym_GT_GT_GT] = ACTIONS(2101), - [anon_sym_AMP_CARET] = ACTIONS(2101), - [anon_sym_AMP_AMP] = ACTIONS(2101), - [anon_sym_PIPE_PIPE] = ACTIONS(2101), - [anon_sym_or] = ACTIONS(2101), - [sym_none] = ACTIONS(2101), - [sym_true] = ACTIONS(2101), - [sym_false] = ACTIONS(2101), - [sym_nil] = ACTIONS(2101), - [anon_sym_QMARK_DOT] = ACTIONS(2101), - [anon_sym_POUND_LBRACK] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_DOLLARif] = ACTIONS(2101), - [anon_sym_is] = ACTIONS(2101), - [anon_sym_BANGis] = ACTIONS(2101), - [anon_sym_in] = ACTIONS(2101), - [anon_sym_BANGin] = ACTIONS(2101), - [anon_sym_match] = ACTIONS(2101), - [anon_sym_select] = ACTIONS(2101), - [anon_sym_lock] = ACTIONS(2101), - [anon_sym_rlock] = ACTIONS(2101), - [anon_sym_unsafe] = ACTIONS(2101), - [anon_sym_sql] = ACTIONS(2101), - [sym_int_literal] = ACTIONS(2101), - [sym_float_literal] = ACTIONS(2101), - [sym_rune_literal] = ACTIONS(2101), - [anon_sym_SQUOTE] = ACTIONS(2101), - [anon_sym_DQUOTE] = ACTIONS(2101), - [anon_sym_c_SQUOTE] = ACTIONS(2101), - [anon_sym_c_DQUOTE] = ACTIONS(2101), - [anon_sym_r_SQUOTE] = ACTIONS(2101), - [anon_sym_r_DQUOTE] = ACTIONS(2101), - [sym_pseudo_compile_time_identifier] = ACTIONS(2101), - [anon_sym_shared] = ACTIONS(2101), - [anon_sym_map_LBRACK] = ACTIONS(2101), - [anon_sym_chan] = ACTIONS(2101), - [anon_sym_thread] = ACTIONS(2101), - [anon_sym_atomic] = ACTIONS(2101), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2421), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(609), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(607), + [anon_sym_as] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_EQ] = ACTIONS(611), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_LT_EQ] = ACTIONS(607), + [anon_sym_GT_EQ] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3823), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(611), + [anon_sym_AMP_CARET] = ACTIONS(611), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [anon_sym_or] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(607), + [anon_sym_POUND_LBRACK] = ACTIONS(607), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(607), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(607), + [anon_sym_STAR_EQ] = ACTIONS(607), + [anon_sym_SLASH_EQ] = ACTIONS(607), + [anon_sym_PERCENT_EQ] = ACTIONS(607), + [anon_sym_LT_LT_EQ] = ACTIONS(607), + [anon_sym_GT_GT_EQ] = ACTIONS(607), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(607), + [anon_sym_AMP_EQ] = ACTIONS(607), + [anon_sym_AMP_CARET_EQ] = ACTIONS(607), + [anon_sym_PLUS_EQ] = ACTIONS(607), + [anon_sym_DASH_EQ] = ACTIONS(607), + [anon_sym_PIPE_EQ] = ACTIONS(607), + [anon_sym_CARET_EQ] = ACTIONS(607), + [anon_sym_COLON_EQ] = ACTIONS(607), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [1182] = { [sym_line_comment] = STATE(1182), [sym_block_comment] = STATE(1182), - [sym_identifier] = ACTIONS(2453), - [anon_sym_LF] = ACTIONS(2453), - [anon_sym_CR] = ACTIONS(2453), - [anon_sym_CR_LF] = ACTIONS(2453), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2453), - [anon_sym_DOT] = ACTIONS(2453), - [anon_sym_as] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_COMMA] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2453), - [anon_sym_RPAREN] = ACTIONS(2453), - [anon_sym_PIPE] = ACTIONS(2453), - [anon_sym_fn] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2453), - [anon_sym_DASH] = ACTIONS(2453), - [anon_sym_STAR] = ACTIONS(2453), - [anon_sym_SLASH] = ACTIONS(2453), - [anon_sym_PERCENT] = ACTIONS(2453), - [anon_sym_LT] = ACTIONS(2453), - [anon_sym_GT] = ACTIONS(2453), - [anon_sym_EQ_EQ] = ACTIONS(2453), - [anon_sym_BANG_EQ] = ACTIONS(2453), - [anon_sym_LT_EQ] = ACTIONS(2453), - [anon_sym_GT_EQ] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_LBRACK] = ACTIONS(2451), - [anon_sym_struct] = ACTIONS(2453), - [anon_sym_mut] = ACTIONS(2453), - [anon_sym_PLUS_PLUS] = ACTIONS(2453), - [anon_sym_DASH_DASH] = ACTIONS(2453), - [anon_sym_QMARK] = ACTIONS(2453), - [anon_sym_BANG] = ACTIONS(2453), - [anon_sym_go] = ACTIONS(2453), - [anon_sym_spawn] = ACTIONS(2453), - [anon_sym_json_DOTdecode] = ACTIONS(2453), - [anon_sym_LBRACK2] = ACTIONS(2453), - [anon_sym_TILDE] = ACTIONS(2453), - [anon_sym_CARET] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(2453), - [anon_sym_LT_DASH] = ACTIONS(2453), - [anon_sym_LT_LT] = ACTIONS(2453), - [anon_sym_GT_GT] = ACTIONS(2453), - [anon_sym_GT_GT_GT] = ACTIONS(2453), - [anon_sym_AMP_CARET] = ACTIONS(2453), - [anon_sym_AMP_AMP] = ACTIONS(2453), - [anon_sym_PIPE_PIPE] = ACTIONS(2453), - [anon_sym_or] = ACTIONS(2453), - [sym_none] = ACTIONS(2453), - [sym_true] = ACTIONS(2453), - [sym_false] = ACTIONS(2453), - [sym_nil] = ACTIONS(2453), - [anon_sym_QMARK_DOT] = ACTIONS(2453), - [anon_sym_POUND_LBRACK] = ACTIONS(2453), - [anon_sym_if] = ACTIONS(2453), - [anon_sym_DOLLARif] = ACTIONS(2453), - [anon_sym_is] = ACTIONS(2453), - [anon_sym_BANGis] = ACTIONS(2453), - [anon_sym_in] = ACTIONS(2453), - [anon_sym_BANGin] = ACTIONS(2453), - [anon_sym_match] = ACTIONS(2453), - [anon_sym_select] = ACTIONS(2453), - [anon_sym_lock] = ACTIONS(2453), - [anon_sym_rlock] = ACTIONS(2453), - [anon_sym_unsafe] = ACTIONS(2453), - [anon_sym_sql] = ACTIONS(2453), - [sym_int_literal] = ACTIONS(2453), - [sym_float_literal] = ACTIONS(2453), - [sym_rune_literal] = ACTIONS(2453), - [anon_sym_SQUOTE] = ACTIONS(2453), - [anon_sym_DQUOTE] = ACTIONS(2453), - [anon_sym_c_SQUOTE] = ACTIONS(2453), - [anon_sym_c_DQUOTE] = ACTIONS(2453), - [anon_sym_r_SQUOTE] = ACTIONS(2453), - [anon_sym_r_DQUOTE] = ACTIONS(2453), - [sym_pseudo_compile_time_identifier] = ACTIONS(2453), - [anon_sym_shared] = ACTIONS(2453), - [anon_sym_map_LBRACK] = ACTIONS(2453), - [anon_sym_chan] = ACTIONS(2453), - [anon_sym_thread] = ACTIONS(2453), - [anon_sym_atomic] = ACTIONS(2453), + [sym_reference_expression] = STATE(4457), + [sym_type_reference_expression] = STATE(1940), + [sym_plain_type] = STATE(2067), + [sym__plain_type_without_special] = STATE(1986), + [sym_anon_struct_type] = STATE(1985), + [sym_multi_return_type] = STATE(1986), + [sym_result_type] = STATE(1986), + [sym_option_type] = STATE(1986), + [sym_qualified_type] = STATE(1940), + [sym_fixed_array_type] = STATE(1985), + [sym_array_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_wrong_pointer_type] = STATE(1985), + [sym_map_type] = STATE(1985), + [sym_channel_type] = STATE(1985), + [sym_shared_type] = STATE(1985), + [sym_thread_type] = STATE(1985), + [sym_atomic_type] = STATE(1985), + [sym_generic_type] = STATE(1985), + [sym_function_type] = STATE(1985), + [sym_identifier] = ACTIONS(3825), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(599), + [anon_sym_DOT] = ACTIONS(599), + [anon_sym_as] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(3827), + [anon_sym_EQ] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(3831), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(599), + [anon_sym_BANG_EQ] = ACTIONS(599), + [anon_sym_LT_EQ] = ACTIONS(599), + [anon_sym_GT_EQ] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(3833), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(3835), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_LBRACK2] = ACTIONS(3839), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(3841), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(601), + [anon_sym_AMP_CARET] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(599), + [anon_sym_PIPE_PIPE] = ACTIONS(599), + [anon_sym_or] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(599), + [anon_sym_POUND_LBRACK] = ACTIONS(599), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(599), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(599), + [anon_sym_STAR_EQ] = ACTIONS(599), + [anon_sym_SLASH_EQ] = ACTIONS(599), + [anon_sym_PERCENT_EQ] = ACTIONS(599), + [anon_sym_LT_LT_EQ] = ACTIONS(599), + [anon_sym_GT_GT_EQ] = ACTIONS(599), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(599), + [anon_sym_AMP_EQ] = ACTIONS(599), + [anon_sym_AMP_CARET_EQ] = ACTIONS(599), + [anon_sym_PLUS_EQ] = ACTIONS(599), + [anon_sym_DASH_EQ] = ACTIONS(599), + [anon_sym_PIPE_EQ] = ACTIONS(599), + [anon_sym_CARET_EQ] = ACTIONS(599), + [anon_sym_COLON_EQ] = ACTIONS(599), + [anon_sym_shared] = ACTIONS(3843), + [anon_sym_map_LBRACK] = ACTIONS(3845), + [anon_sym_chan] = ACTIONS(3847), + [anon_sym_thread] = ACTIONS(3849), + [anon_sym_atomic] = ACTIONS(3851), }, [1183] = { [sym_line_comment] = STATE(1183), [sym_block_comment] = STATE(1183), - [sym_identifier] = ACTIONS(2457), - [anon_sym_LF] = ACTIONS(2457), - [anon_sym_CR] = ACTIONS(2457), - [anon_sym_CR_LF] = ACTIONS(2457), + [sym_identifier] = ACTIONS(1945), + [anon_sym_LF] = ACTIONS(1945), + [anon_sym_CR] = ACTIONS(1945), + [anon_sym_CR_LF] = ACTIONS(1945), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [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_SLASH] = 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_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), - [anon_sym_SQUOTE] = ACTIONS(2457), - [anon_sym_DQUOTE] = ACTIONS(2457), - [anon_sym_c_SQUOTE] = ACTIONS(2457), - [anon_sym_c_DQUOTE] = ACTIONS(2457), - [anon_sym_r_SQUOTE] = ACTIONS(2457), - [anon_sym_r_DQUOTE] = 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_SEMI] = ACTIONS(1945), + [anon_sym_DOT] = ACTIONS(1945), + [anon_sym_as] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1945), + [anon_sym_COMMA] = ACTIONS(1945), + [anon_sym_RBRACE] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_RPAREN] = ACTIONS(1945), + [anon_sym_fn] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1945), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_SLASH] = ACTIONS(1945), + [anon_sym_PERCENT] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1945), + [anon_sym_GT] = ACTIONS(1945), + [anon_sym_EQ_EQ] = ACTIONS(1945), + [anon_sym_BANG_EQ] = ACTIONS(1945), + [anon_sym_LT_EQ] = ACTIONS(1945), + [anon_sym_GT_EQ] = ACTIONS(1945), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1943), + [anon_sym_struct] = ACTIONS(1945), + [anon_sym_mut] = ACTIONS(1945), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), + [anon_sym_QMARK] = ACTIONS(1945), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_go] = ACTIONS(1945), + [anon_sym_spawn] = ACTIONS(1945), + [anon_sym_json_DOTdecode] = ACTIONS(1945), + [anon_sym_PIPE] = ACTIONS(1945), + [anon_sym_LBRACK2] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), + [anon_sym_LT_DASH] = ACTIONS(1945), + [anon_sym_LT_LT] = ACTIONS(1945), + [anon_sym_GT_GT] = ACTIONS(1945), + [anon_sym_GT_GT_GT] = ACTIONS(1945), + [anon_sym_AMP_CARET] = ACTIONS(1945), + [anon_sym_AMP_AMP] = ACTIONS(1945), + [anon_sym_PIPE_PIPE] = ACTIONS(1945), + [anon_sym_or] = ACTIONS(1945), + [sym_none] = ACTIONS(1945), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_nil] = ACTIONS(1945), + [anon_sym_QMARK_DOT] = ACTIONS(1945), + [anon_sym_POUND_LBRACK] = ACTIONS(1945), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_DOLLARif] = ACTIONS(1945), + [anon_sym_is] = ACTIONS(1945), + [anon_sym_BANGis] = ACTIONS(1945), + [anon_sym_in] = ACTIONS(1945), + [anon_sym_BANGin] = ACTIONS(1945), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_select] = ACTIONS(1945), + [anon_sym_lock] = ACTIONS(1945), + [anon_sym_rlock] = ACTIONS(1945), + [anon_sym_unsafe] = ACTIONS(1945), + [anon_sym_sql] = ACTIONS(1945), + [sym_int_literal] = ACTIONS(1945), + [sym_float_literal] = ACTIONS(1945), + [sym_rune_literal] = ACTIONS(1945), + [anon_sym_SQUOTE] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(1945), + [anon_sym_c_SQUOTE] = ACTIONS(1945), + [anon_sym_c_DQUOTE] = ACTIONS(1945), + [anon_sym_r_SQUOTE] = ACTIONS(1945), + [anon_sym_r_DQUOTE] = ACTIONS(1945), + [sym_pseudo_compile_time_identifier] = ACTIONS(1945), + [anon_sym_shared] = ACTIONS(1945), + [anon_sym_map_LBRACK] = ACTIONS(1945), + [anon_sym_chan] = ACTIONS(1945), + [anon_sym_thread] = ACTIONS(1945), + [anon_sym_atomic] = ACTIONS(1945), }, [1184] = { [sym_line_comment] = STATE(1184), [sym_block_comment] = STATE(1184), - [sym_identifier] = ACTIONS(2887), - [anon_sym_LF] = ACTIONS(2887), - [anon_sym_CR] = ACTIONS(2887), - [anon_sym_CR_LF] = ACTIONS(2887), + [sym_identifier] = ACTIONS(3026), + [anon_sym_LF] = ACTIONS(3026), + [anon_sym_CR] = ACTIONS(3026), + [anon_sym_CR_LF] = ACTIONS(3026), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2887), - [anon_sym_DOT] = ACTIONS(2887), - [anon_sym_as] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_COMMA] = ACTIONS(2887), - [anon_sym_RBRACE] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(2887), - [anon_sym_RPAREN] = ACTIONS(2887), - [anon_sym_PIPE] = ACTIONS(2887), - [anon_sym_fn] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2887), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_EQ_EQ] = ACTIONS(2887), - [anon_sym_BANG_EQ] = ACTIONS(2887), - [anon_sym_LT_EQ] = ACTIONS(2887), - [anon_sym_GT_EQ] = ACTIONS(2887), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2887), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2887), - [anon_sym_mut] = ACTIONS(2887), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [anon_sym_QMARK] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_go] = ACTIONS(2887), - [anon_sym_spawn] = ACTIONS(2887), - [anon_sym_json_DOTdecode] = ACTIONS(2887), - [anon_sym_LBRACK2] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_CARET] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2887), - [anon_sym_LT_LT] = ACTIONS(2887), - [anon_sym_GT_GT] = ACTIONS(2887), - [anon_sym_GT_GT_GT] = ACTIONS(2887), - [anon_sym_AMP_CARET] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_PIPE_PIPE] = ACTIONS(2887), - [anon_sym_or] = ACTIONS(2887), - [sym_none] = ACTIONS(2887), - [sym_true] = ACTIONS(2887), - [sym_false] = ACTIONS(2887), - [sym_nil] = ACTIONS(2887), - [anon_sym_QMARK_DOT] = ACTIONS(2887), - [anon_sym_POUND_LBRACK] = ACTIONS(2887), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_DOLLARif] = ACTIONS(2887), - [anon_sym_is] = ACTIONS(2887), - [anon_sym_BANGis] = ACTIONS(2887), - [anon_sym_in] = ACTIONS(2887), - [anon_sym_BANGin] = ACTIONS(2887), - [anon_sym_match] = ACTIONS(2887), - [anon_sym_select] = ACTIONS(2887), - [anon_sym_lock] = ACTIONS(2887), - [anon_sym_rlock] = ACTIONS(2887), - [anon_sym_unsafe] = ACTIONS(2887), - [anon_sym_sql] = ACTIONS(2887), - [sym_int_literal] = ACTIONS(2887), - [sym_float_literal] = ACTIONS(2887), - [sym_rune_literal] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [anon_sym_c_SQUOTE] = ACTIONS(2887), - [anon_sym_c_DQUOTE] = ACTIONS(2887), - [anon_sym_r_SQUOTE] = ACTIONS(2887), - [anon_sym_r_DQUOTE] = ACTIONS(2887), - [sym_pseudo_compile_time_identifier] = ACTIONS(2887), - [anon_sym_shared] = ACTIONS(2887), - [anon_sym_map_LBRACK] = ACTIONS(2887), - [anon_sym_chan] = ACTIONS(2887), - [anon_sym_thread] = ACTIONS(2887), - [anon_sym_atomic] = ACTIONS(2887), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_DOT] = ACTIONS(3026), + [anon_sym_as] = ACTIONS(3026), + [anon_sym_LBRACE] = ACTIONS(3026), + [anon_sym_COMMA] = ACTIONS(3026), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3026), + [anon_sym_RPAREN] = ACTIONS(3026), + [anon_sym_fn] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3026), + [anon_sym_SLASH] = ACTIONS(3026), + [anon_sym_PERCENT] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(3026), + [anon_sym_GT] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3026), + [anon_sym_BANG_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3026), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_struct] = ACTIONS(3026), + [anon_sym_mut] = ACTIONS(3026), + [anon_sym_PLUS_PLUS] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(3026), + [anon_sym_QMARK] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_go] = ACTIONS(3026), + [anon_sym_spawn] = ACTIONS(3026), + [anon_sym_json_DOTdecode] = ACTIONS(3026), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_LBRACK2] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3026), + [anon_sym_CARET] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_LT_DASH] = ACTIONS(3026), + [anon_sym_LT_LT] = ACTIONS(3026), + [anon_sym_GT_GT] = ACTIONS(3026), + [anon_sym_GT_GT_GT] = ACTIONS(3026), + [anon_sym_AMP_CARET] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_or] = ACTIONS(3026), + [sym_none] = ACTIONS(3026), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_nil] = ACTIONS(3026), + [anon_sym_QMARK_DOT] = ACTIONS(3026), + [anon_sym_POUND_LBRACK] = ACTIONS(3026), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_DOLLARif] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3026), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_in] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_match] = ACTIONS(3026), + [anon_sym_select] = ACTIONS(3026), + [anon_sym_lock] = ACTIONS(3026), + [anon_sym_rlock] = ACTIONS(3026), + [anon_sym_unsafe] = ACTIONS(3026), + [anon_sym_sql] = ACTIONS(3026), + [sym_int_literal] = ACTIONS(3026), + [sym_float_literal] = ACTIONS(3026), + [sym_rune_literal] = ACTIONS(3026), + [anon_sym_SQUOTE] = ACTIONS(3026), + [anon_sym_DQUOTE] = ACTIONS(3026), + [anon_sym_c_SQUOTE] = ACTIONS(3026), + [anon_sym_c_DQUOTE] = ACTIONS(3026), + [anon_sym_r_SQUOTE] = ACTIONS(3026), + [anon_sym_r_DQUOTE] = ACTIONS(3026), + [sym_pseudo_compile_time_identifier] = ACTIONS(3026), + [anon_sym_shared] = ACTIONS(3026), + [anon_sym_map_LBRACK] = ACTIONS(3026), + [anon_sym_chan] = ACTIONS(3026), + [anon_sym_thread] = ACTIONS(3026), + [anon_sym_atomic] = ACTIONS(3026), }, [1185] = { [sym_line_comment] = STATE(1185), [sym_block_comment] = STATE(1185), - [sym_identifier] = ACTIONS(2883), - [anon_sym_LF] = ACTIONS(2883), - [anon_sym_CR] = ACTIONS(2883), - [anon_sym_CR_LF] = ACTIONS(2883), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym_DOT] = ACTIONS(2883), - [anon_sym_as] = ACTIONS(2883), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2883), - [anon_sym_RBRACE] = ACTIONS(2883), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_RPAREN] = ACTIONS(2883), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_fn] = ACTIONS(2883), - [anon_sym_PLUS] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2883), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_PERCENT] = ACTIONS(2883), - [anon_sym_LT] = ACTIONS(2883), - [anon_sym_GT] = ACTIONS(2883), - [anon_sym_EQ_EQ] = ACTIONS(2883), - [anon_sym_BANG_EQ] = ACTIONS(2883), - [anon_sym_LT_EQ] = ACTIONS(2883), - [anon_sym_GT_EQ] = ACTIONS(2883), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2883), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2883), - [anon_sym_mut] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2883), - [anon_sym_DASH_DASH] = ACTIONS(2883), - [anon_sym_QMARK] = ACTIONS(2883), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_go] = ACTIONS(2883), - [anon_sym_spawn] = ACTIONS(2883), - [anon_sym_json_DOTdecode] = ACTIONS(2883), - [anon_sym_LBRACK2] = ACTIONS(2883), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_CARET] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2883), - [anon_sym_LT_DASH] = ACTIONS(2883), - [anon_sym_LT_LT] = ACTIONS(2883), - [anon_sym_GT_GT] = ACTIONS(2883), - [anon_sym_GT_GT_GT] = ACTIONS(2883), - [anon_sym_AMP_CARET] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_PIPE_PIPE] = ACTIONS(2883), - [anon_sym_or] = ACTIONS(2883), - [sym_none] = ACTIONS(2883), - [sym_true] = ACTIONS(2883), - [sym_false] = ACTIONS(2883), - [sym_nil] = ACTIONS(2883), - [anon_sym_QMARK_DOT] = ACTIONS(2883), - [anon_sym_POUND_LBRACK] = ACTIONS(2883), - [anon_sym_if] = ACTIONS(2883), - [anon_sym_DOLLARif] = ACTIONS(2883), - [anon_sym_is] = ACTIONS(2883), - [anon_sym_BANGis] = ACTIONS(2883), - [anon_sym_in] = ACTIONS(2883), - [anon_sym_BANGin] = ACTIONS(2883), - [anon_sym_match] = ACTIONS(2883), - [anon_sym_select] = ACTIONS(2883), - [anon_sym_lock] = ACTIONS(2883), - [anon_sym_rlock] = ACTIONS(2883), - [anon_sym_unsafe] = ACTIONS(2883), - [anon_sym_sql] = ACTIONS(2883), - [sym_int_literal] = ACTIONS(2883), - [sym_float_literal] = ACTIONS(2883), - [sym_rune_literal] = ACTIONS(2883), - [anon_sym_SQUOTE] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [anon_sym_c_SQUOTE] = ACTIONS(2883), - [anon_sym_c_DQUOTE] = ACTIONS(2883), - [anon_sym_r_SQUOTE] = ACTIONS(2883), - [anon_sym_r_DQUOTE] = ACTIONS(2883), - [sym_pseudo_compile_time_identifier] = ACTIONS(2883), - [anon_sym_shared] = ACTIONS(2883), - [anon_sym_map_LBRACK] = ACTIONS(2883), - [anon_sym_chan] = ACTIONS(2883), - [anon_sym_thread] = ACTIONS(2883), - [anon_sym_atomic] = ACTIONS(2883), + [sym_reference_expression] = STATE(4457), + [sym_type_reference_expression] = STATE(1940), + [sym_plain_type] = STATE(1958), + [sym__plain_type_without_special] = STATE(1986), + [sym_anon_struct_type] = STATE(1985), + [sym_multi_return_type] = STATE(1986), + [sym_result_type] = STATE(1986), + [sym_option_type] = STATE(1986), + [sym_qualified_type] = STATE(1940), + [sym_fixed_array_type] = STATE(1985), + [sym_array_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_wrong_pointer_type] = STATE(1985), + [sym_map_type] = STATE(1985), + [sym_channel_type] = STATE(1985), + [sym_shared_type] = STATE(1985), + [sym_thread_type] = STATE(1985), + [sym_atomic_type] = STATE(1985), + [sym_generic_type] = STATE(1985), + [sym_function_type] = STATE(1985), + [sym_identifier] = ACTIONS(3825), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(603), + [anon_sym_DOT] = ACTIONS(603), + [anon_sym_as] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(3827), + [anon_sym_EQ] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(3831), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_BANG_EQ] = ACTIONS(603), + [anon_sym_LT_EQ] = ACTIONS(603), + [anon_sym_GT_EQ] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(3833), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(3835), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_LBRACK2] = ACTIONS(3839), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(3841), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_GT_GT_GT] = ACTIONS(605), + [anon_sym_AMP_CARET] = ACTIONS(605), + [anon_sym_AMP_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(603), + [anon_sym_or] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(603), + [anon_sym_is] = ACTIONS(605), + [anon_sym_BANGis] = ACTIONS(603), + [anon_sym_in] = ACTIONS(605), + [anon_sym_BANGin] = ACTIONS(603), + [anon_sym_STAR_EQ] = ACTIONS(603), + [anon_sym_SLASH_EQ] = ACTIONS(603), + [anon_sym_PERCENT_EQ] = ACTIONS(603), + [anon_sym_LT_LT_EQ] = ACTIONS(603), + [anon_sym_GT_GT_EQ] = ACTIONS(603), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(603), + [anon_sym_AMP_EQ] = ACTIONS(603), + [anon_sym_AMP_CARET_EQ] = ACTIONS(603), + [anon_sym_PLUS_EQ] = ACTIONS(603), + [anon_sym_DASH_EQ] = ACTIONS(603), + [anon_sym_PIPE_EQ] = ACTIONS(603), + [anon_sym_CARET_EQ] = ACTIONS(603), + [anon_sym_COLON_EQ] = ACTIONS(603), + [anon_sym_shared] = ACTIONS(3843), + [anon_sym_map_LBRACK] = ACTIONS(3845), + [anon_sym_chan] = ACTIONS(3847), + [anon_sym_thread] = ACTIONS(3849), + [anon_sym_atomic] = ACTIONS(3851), }, [1186] = { [sym_line_comment] = STATE(1186), [sym_block_comment] = STATE(1186), - [sym_identifier] = ACTIONS(2463), - [anon_sym_LF] = ACTIONS(2463), - [anon_sym_CR] = ACTIONS(2463), - [anon_sym_CR_LF] = ACTIONS(2463), + [sym_identifier] = ACTIONS(2345), + [anon_sym_LF] = ACTIONS(2345), + [anon_sym_CR] = ACTIONS(2345), + [anon_sym_CR_LF] = ACTIONS(2345), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2463), - [anon_sym_DOT] = ACTIONS(2463), - [anon_sym_as] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(2463), - [anon_sym_COMMA] = ACTIONS(2463), - [anon_sym_RBRACE] = ACTIONS(2463), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym_RPAREN] = ACTIONS(2463), - [anon_sym_PIPE] = ACTIONS(2463), - [anon_sym_fn] = ACTIONS(2463), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(2463), - [anon_sym_STAR] = ACTIONS(2463), - [anon_sym_SLASH] = ACTIONS(2463), - [anon_sym_PERCENT] = ACTIONS(2463), - [anon_sym_LT] = ACTIONS(2463), - [anon_sym_GT] = ACTIONS(2463), - [anon_sym_EQ_EQ] = ACTIONS(2463), - [anon_sym_BANG_EQ] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(2463), - [anon_sym_GT_EQ] = ACTIONS(2463), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2463), - [anon_sym_LBRACK] = ACTIONS(2461), - [anon_sym_struct] = ACTIONS(2463), - [anon_sym_mut] = ACTIONS(2463), - [anon_sym_PLUS_PLUS] = ACTIONS(2463), - [anon_sym_DASH_DASH] = ACTIONS(2463), - [anon_sym_QMARK] = ACTIONS(2463), - [anon_sym_BANG] = ACTIONS(2463), - [anon_sym_go] = ACTIONS(2463), - [anon_sym_spawn] = ACTIONS(2463), - [anon_sym_json_DOTdecode] = ACTIONS(2463), - [anon_sym_LBRACK2] = ACTIONS(2463), - [anon_sym_TILDE] = ACTIONS(2463), - [anon_sym_CARET] = ACTIONS(2463), - [anon_sym_AMP] = ACTIONS(2463), - [anon_sym_LT_DASH] = ACTIONS(2463), - [anon_sym_LT_LT] = ACTIONS(2463), - [anon_sym_GT_GT] = ACTIONS(2463), - [anon_sym_GT_GT_GT] = ACTIONS(2463), - [anon_sym_AMP_CARET] = ACTIONS(2463), - [anon_sym_AMP_AMP] = ACTIONS(2463), - [anon_sym_PIPE_PIPE] = ACTIONS(2463), - [anon_sym_or] = ACTIONS(2463), - [sym_none] = ACTIONS(2463), - [sym_true] = ACTIONS(2463), - [sym_false] = ACTIONS(2463), - [sym_nil] = ACTIONS(2463), - [anon_sym_QMARK_DOT] = ACTIONS(2463), - [anon_sym_POUND_LBRACK] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2463), - [anon_sym_DOLLARif] = ACTIONS(2463), - [anon_sym_is] = ACTIONS(2463), - [anon_sym_BANGis] = ACTIONS(2463), - [anon_sym_in] = ACTIONS(2463), - [anon_sym_BANGin] = ACTIONS(2463), - [anon_sym_match] = ACTIONS(2463), - [anon_sym_select] = ACTIONS(2463), - [anon_sym_lock] = ACTIONS(2463), - [anon_sym_rlock] = ACTIONS(2463), - [anon_sym_unsafe] = ACTIONS(2463), - [anon_sym_sql] = ACTIONS(2463), - [sym_int_literal] = ACTIONS(2463), - [sym_float_literal] = ACTIONS(2463), - [sym_rune_literal] = ACTIONS(2463), - [anon_sym_SQUOTE] = ACTIONS(2463), - [anon_sym_DQUOTE] = ACTIONS(2463), - [anon_sym_c_SQUOTE] = ACTIONS(2463), - [anon_sym_c_DQUOTE] = ACTIONS(2463), - [anon_sym_r_SQUOTE] = ACTIONS(2463), - [anon_sym_r_DQUOTE] = ACTIONS(2463), - [sym_pseudo_compile_time_identifier] = ACTIONS(2463), - [anon_sym_shared] = ACTIONS(2463), - [anon_sym_map_LBRACK] = ACTIONS(2463), - [anon_sym_chan] = ACTIONS(2463), - [anon_sym_thread] = ACTIONS(2463), - [anon_sym_atomic] = ACTIONS(2463), + [anon_sym_SEMI] = ACTIONS(2345), + [anon_sym_DOT] = ACTIONS(2345), + [anon_sym_as] = ACTIONS(2345), + [anon_sym_LBRACE] = ACTIONS(2345), + [anon_sym_COMMA] = ACTIONS(2345), + [anon_sym_RBRACE] = ACTIONS(2345), + [anon_sym_LPAREN] = ACTIONS(2345), + [anon_sym_RPAREN] = ACTIONS(2345), + [anon_sym_fn] = ACTIONS(2345), + [anon_sym_PLUS] = ACTIONS(2345), + [anon_sym_DASH] = ACTIONS(2345), + [anon_sym_STAR] = ACTIONS(2345), + [anon_sym_SLASH] = ACTIONS(2345), + [anon_sym_PERCENT] = ACTIONS(2345), + [anon_sym_LT] = ACTIONS(2345), + [anon_sym_GT] = ACTIONS(2345), + [anon_sym_EQ_EQ] = ACTIONS(2345), + [anon_sym_BANG_EQ] = ACTIONS(2345), + [anon_sym_LT_EQ] = ACTIONS(2345), + [anon_sym_GT_EQ] = ACTIONS(2345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2345), + [anon_sym_LBRACK] = ACTIONS(2343), + [anon_sym_struct] = ACTIONS(2345), + [anon_sym_mut] = ACTIONS(2345), + [anon_sym_PLUS_PLUS] = ACTIONS(2345), + [anon_sym_DASH_DASH] = ACTIONS(2345), + [anon_sym_QMARK] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(2345), + [anon_sym_go] = ACTIONS(2345), + [anon_sym_spawn] = ACTIONS(2345), + [anon_sym_json_DOTdecode] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(2345), + [anon_sym_LBRACK2] = ACTIONS(2345), + [anon_sym_TILDE] = ACTIONS(2345), + [anon_sym_CARET] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(2345), + [anon_sym_LT_DASH] = ACTIONS(2345), + [anon_sym_LT_LT] = ACTIONS(2345), + [anon_sym_GT_GT] = ACTIONS(2345), + [anon_sym_GT_GT_GT] = ACTIONS(2345), + [anon_sym_AMP_CARET] = ACTIONS(2345), + [anon_sym_AMP_AMP] = ACTIONS(2345), + [anon_sym_PIPE_PIPE] = ACTIONS(2345), + [anon_sym_or] = ACTIONS(2345), + [sym_none] = ACTIONS(2345), + [sym_true] = ACTIONS(2345), + [sym_false] = ACTIONS(2345), + [sym_nil] = ACTIONS(2345), + [anon_sym_QMARK_DOT] = ACTIONS(2345), + [anon_sym_POUND_LBRACK] = ACTIONS(2345), + [anon_sym_if] = ACTIONS(2345), + [anon_sym_DOLLARif] = ACTIONS(2345), + [anon_sym_is] = ACTIONS(2345), + [anon_sym_BANGis] = ACTIONS(2345), + [anon_sym_in] = ACTIONS(2345), + [anon_sym_BANGin] = ACTIONS(2345), + [anon_sym_match] = ACTIONS(2345), + [anon_sym_select] = ACTIONS(2345), + [anon_sym_lock] = ACTIONS(2345), + [anon_sym_rlock] = ACTIONS(2345), + [anon_sym_unsafe] = ACTIONS(2345), + [anon_sym_sql] = ACTIONS(2345), + [sym_int_literal] = ACTIONS(2345), + [sym_float_literal] = ACTIONS(2345), + [sym_rune_literal] = ACTIONS(2345), + [anon_sym_SQUOTE] = ACTIONS(2345), + [anon_sym_DQUOTE] = ACTIONS(2345), + [anon_sym_c_SQUOTE] = ACTIONS(2345), + [anon_sym_c_DQUOTE] = ACTIONS(2345), + [anon_sym_r_SQUOTE] = ACTIONS(2345), + [anon_sym_r_DQUOTE] = ACTIONS(2345), + [sym_pseudo_compile_time_identifier] = ACTIONS(2345), + [anon_sym_shared] = ACTIONS(2345), + [anon_sym_map_LBRACK] = ACTIONS(2345), + [anon_sym_chan] = ACTIONS(2345), + [anon_sym_thread] = ACTIONS(2345), + [anon_sym_atomic] = ACTIONS(2345), }, [1187] = { [sym_line_comment] = STATE(1187), [sym_block_comment] = STATE(1187), - [sym_identifier] = ACTIONS(2863), - [anon_sym_LF] = ACTIONS(2863), - [anon_sym_CR] = ACTIONS(2863), - [anon_sym_CR_LF] = ACTIONS(2863), + [sym_identifier] = ACTIONS(3030), + [anon_sym_LF] = ACTIONS(3030), + [anon_sym_CR] = ACTIONS(3030), + [anon_sym_CR_LF] = ACTIONS(3030), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2863), - [anon_sym_DOT] = ACTIONS(2863), - [anon_sym_as] = ACTIONS(2863), - [anon_sym_LBRACE] = ACTIONS(2863), - [anon_sym_COMMA] = ACTIONS(2863), - [anon_sym_RBRACE] = ACTIONS(2863), - [anon_sym_LPAREN] = ACTIONS(2863), - [anon_sym_RPAREN] = ACTIONS(2863), - [anon_sym_PIPE] = ACTIONS(2863), - [anon_sym_fn] = ACTIONS(2863), - [anon_sym_PLUS] = ACTIONS(2863), - [anon_sym_DASH] = ACTIONS(2863), - [anon_sym_STAR] = ACTIONS(2863), - [anon_sym_SLASH] = ACTIONS(2863), - [anon_sym_PERCENT] = ACTIONS(2863), - [anon_sym_LT] = ACTIONS(2863), - [anon_sym_GT] = ACTIONS(2863), - [anon_sym_EQ_EQ] = ACTIONS(2863), - [anon_sym_BANG_EQ] = ACTIONS(2863), - [anon_sym_LT_EQ] = ACTIONS(2863), - [anon_sym_GT_EQ] = ACTIONS(2863), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2863), - [anon_sym_LBRACK] = ACTIONS(2861), - [anon_sym_struct] = ACTIONS(2863), - [anon_sym_mut] = ACTIONS(2863), - [anon_sym_PLUS_PLUS] = ACTIONS(2863), - [anon_sym_DASH_DASH] = ACTIONS(2863), - [anon_sym_QMARK] = ACTIONS(2863), - [anon_sym_BANG] = ACTIONS(2863), - [anon_sym_go] = ACTIONS(2863), - [anon_sym_spawn] = ACTIONS(2863), - [anon_sym_json_DOTdecode] = ACTIONS(2863), - [anon_sym_LBRACK2] = ACTIONS(2863), - [anon_sym_TILDE] = ACTIONS(2863), - [anon_sym_CARET] = ACTIONS(2863), - [anon_sym_AMP] = ACTIONS(2863), - [anon_sym_LT_DASH] = ACTIONS(2863), - [anon_sym_LT_LT] = ACTIONS(2863), - [anon_sym_GT_GT] = ACTIONS(2863), - [anon_sym_GT_GT_GT] = ACTIONS(2863), - [anon_sym_AMP_CARET] = ACTIONS(2863), - [anon_sym_AMP_AMP] = ACTIONS(2863), - [anon_sym_PIPE_PIPE] = ACTIONS(2863), - [anon_sym_or] = ACTIONS(2863), - [sym_none] = ACTIONS(2863), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [sym_nil] = ACTIONS(2863), - [anon_sym_QMARK_DOT] = ACTIONS(2863), - [anon_sym_POUND_LBRACK] = ACTIONS(2863), - [anon_sym_if] = ACTIONS(2863), - [anon_sym_DOLLARif] = ACTIONS(2863), - [anon_sym_is] = ACTIONS(2863), - [anon_sym_BANGis] = ACTIONS(2863), - [anon_sym_in] = ACTIONS(2863), - [anon_sym_BANGin] = ACTIONS(2863), - [anon_sym_match] = ACTIONS(2863), - [anon_sym_select] = ACTIONS(2863), - [anon_sym_lock] = ACTIONS(2863), - [anon_sym_rlock] = ACTIONS(2863), - [anon_sym_unsafe] = ACTIONS(2863), - [anon_sym_sql] = ACTIONS(2863), - [sym_int_literal] = ACTIONS(2863), - [sym_float_literal] = ACTIONS(2863), - [sym_rune_literal] = ACTIONS(2863), - [anon_sym_SQUOTE] = ACTIONS(2863), - [anon_sym_DQUOTE] = ACTIONS(2863), - [anon_sym_c_SQUOTE] = ACTIONS(2863), - [anon_sym_c_DQUOTE] = ACTIONS(2863), - [anon_sym_r_SQUOTE] = ACTIONS(2863), - [anon_sym_r_DQUOTE] = ACTIONS(2863), - [sym_pseudo_compile_time_identifier] = ACTIONS(2863), - [anon_sym_shared] = ACTIONS(2863), - [anon_sym_map_LBRACK] = ACTIONS(2863), - [anon_sym_chan] = ACTIONS(2863), - [anon_sym_thread] = ACTIONS(2863), - [anon_sym_atomic] = ACTIONS(2863), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_DOT] = ACTIONS(3030), + [anon_sym_as] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3030), + [anon_sym_RPAREN] = ACTIONS(3030), + [anon_sym_fn] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_SLASH] = ACTIONS(3030), + [anon_sym_PERCENT] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_GT] = ACTIONS(3030), + [anon_sym_EQ_EQ] = ACTIONS(3030), + [anon_sym_BANG_EQ] = ACTIONS(3030), + [anon_sym_LT_EQ] = ACTIONS(3030), + [anon_sym_GT_EQ] = ACTIONS(3030), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3030), + [anon_sym_mut] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_QMARK] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_go] = ACTIONS(3030), + [anon_sym_spawn] = ACTIONS(3030), + [anon_sym_json_DOTdecode] = ACTIONS(3030), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_LBRACK2] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_CARET] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_LT_DASH] = ACTIONS(3030), + [anon_sym_LT_LT] = ACTIONS(3030), + [anon_sym_GT_GT] = ACTIONS(3030), + [anon_sym_GT_GT_GT] = ACTIONS(3030), + [anon_sym_AMP_CARET] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_PIPE_PIPE] = ACTIONS(3030), + [anon_sym_or] = ACTIONS(3030), + [sym_none] = ACTIONS(3030), + [sym_true] = ACTIONS(3030), + [sym_false] = ACTIONS(3030), + [sym_nil] = ACTIONS(3030), + [anon_sym_QMARK_DOT] = ACTIONS(3030), + [anon_sym_POUND_LBRACK] = ACTIONS(3030), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_DOLLARif] = ACTIONS(3030), + [anon_sym_is] = ACTIONS(3030), + [anon_sym_BANGis] = ACTIONS(3030), + [anon_sym_in] = ACTIONS(3030), + [anon_sym_BANGin] = ACTIONS(3030), + [anon_sym_match] = ACTIONS(3030), + [anon_sym_select] = ACTIONS(3030), + [anon_sym_lock] = ACTIONS(3030), + [anon_sym_rlock] = ACTIONS(3030), + [anon_sym_unsafe] = ACTIONS(3030), + [anon_sym_sql] = ACTIONS(3030), + [sym_int_literal] = ACTIONS(3030), + [sym_float_literal] = ACTIONS(3030), + [sym_rune_literal] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [anon_sym_c_SQUOTE] = ACTIONS(3030), + [anon_sym_c_DQUOTE] = ACTIONS(3030), + [anon_sym_r_SQUOTE] = ACTIONS(3030), + [anon_sym_r_DQUOTE] = ACTIONS(3030), + [sym_pseudo_compile_time_identifier] = ACTIONS(3030), + [anon_sym_shared] = ACTIONS(3030), + [anon_sym_map_LBRACK] = ACTIONS(3030), + [anon_sym_chan] = ACTIONS(3030), + [anon_sym_thread] = ACTIONS(3030), + [anon_sym_atomic] = ACTIONS(3030), }, [1188] = { [sym_line_comment] = STATE(1188), [sym_block_comment] = STATE(1188), - [sym_identifier] = ACTIONS(2887), - [anon_sym_LF] = ACTIONS(2887), - [anon_sym_CR] = ACTIONS(2887), - [anon_sym_CR_LF] = ACTIONS(2887), + [sym_identifier] = ACTIONS(3038), + [anon_sym_LF] = ACTIONS(3038), + [anon_sym_CR] = ACTIONS(3038), + [anon_sym_CR_LF] = ACTIONS(3038), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2887), - [anon_sym_DOT] = ACTIONS(3039), - [anon_sym_as] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_COMMA] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(2887), - [anon_sym_RPAREN] = ACTIONS(2887), - [anon_sym_PIPE] = ACTIONS(2887), - [anon_sym_fn] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2887), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_EQ_EQ] = ACTIONS(2887), - [anon_sym_BANG_EQ] = ACTIONS(2887), - [anon_sym_LT_EQ] = ACTIONS(2887), - [anon_sym_GT_EQ] = ACTIONS(2887), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2887), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2887), - [anon_sym_mut] = ACTIONS(2887), - [anon_sym_COLON] = ACTIONS(3776), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [anon_sym_QMARK] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_go] = ACTIONS(2887), - [anon_sym_spawn] = ACTIONS(2887), - [anon_sym_json_DOTdecode] = ACTIONS(2887), - [anon_sym_LBRACK2] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_CARET] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2887), - [anon_sym_LT_LT] = ACTIONS(2887), - [anon_sym_GT_GT] = ACTIONS(2887), - [anon_sym_GT_GT_GT] = ACTIONS(2887), - [anon_sym_AMP_CARET] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_PIPE_PIPE] = ACTIONS(2887), - [anon_sym_or] = ACTIONS(2887), - [sym_none] = ACTIONS(2887), - [sym_true] = ACTIONS(2887), - [sym_false] = ACTIONS(2887), - [sym_nil] = ACTIONS(2887), - [anon_sym_QMARK_DOT] = ACTIONS(2887), - [anon_sym_POUND_LBRACK] = ACTIONS(2887), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_DOLLARif] = ACTIONS(2887), - [anon_sym_is] = ACTIONS(2887), - [anon_sym_BANGis] = ACTIONS(2887), - [anon_sym_in] = ACTIONS(2887), - [anon_sym_BANGin] = ACTIONS(2887), - [anon_sym_match] = ACTIONS(2887), - [anon_sym_select] = ACTIONS(2887), - [anon_sym_lock] = ACTIONS(2887), - [anon_sym_rlock] = ACTIONS(2887), - [anon_sym_unsafe] = ACTIONS(2887), - [anon_sym_sql] = ACTIONS(2887), - [sym_int_literal] = ACTIONS(2887), - [sym_float_literal] = ACTIONS(2887), - [sym_rune_literal] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [anon_sym_c_SQUOTE] = ACTIONS(2887), - [anon_sym_c_DQUOTE] = ACTIONS(2887), - [anon_sym_r_SQUOTE] = ACTIONS(2887), - [anon_sym_r_DQUOTE] = ACTIONS(2887), - [sym_pseudo_compile_time_identifier] = ACTIONS(2887), - [anon_sym_shared] = ACTIONS(2887), - [anon_sym_map_LBRACK] = ACTIONS(2887), - [anon_sym_chan] = ACTIONS(2887), - [anon_sym_thread] = ACTIONS(2887), - [anon_sym_atomic] = ACTIONS(2887), + [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_DOT] = ACTIONS(3038), + [anon_sym_as] = ACTIONS(3038), + [anon_sym_LBRACE] = ACTIONS(3038), + [anon_sym_COMMA] = ACTIONS(3038), + [anon_sym_RBRACE] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_RPAREN] = ACTIONS(3038), + [anon_sym_fn] = ACTIONS(3038), + [anon_sym_PLUS] = ACTIONS(3038), + [anon_sym_DASH] = ACTIONS(3038), + [anon_sym_STAR] = ACTIONS(3038), + [anon_sym_SLASH] = ACTIONS(3038), + [anon_sym_PERCENT] = ACTIONS(3038), + [anon_sym_LT] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3038), + [anon_sym_EQ_EQ] = ACTIONS(3038), + [anon_sym_BANG_EQ] = ACTIONS(3038), + [anon_sym_LT_EQ] = ACTIONS(3038), + [anon_sym_GT_EQ] = ACTIONS(3038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3036), + [anon_sym_struct] = ACTIONS(3038), + [anon_sym_mut] = ACTIONS(3038), + [anon_sym_PLUS_PLUS] = ACTIONS(3038), + [anon_sym_DASH_DASH] = ACTIONS(3038), + [anon_sym_QMARK] = ACTIONS(3038), + [anon_sym_BANG] = ACTIONS(3038), + [anon_sym_go] = ACTIONS(3038), + [anon_sym_spawn] = ACTIONS(3038), + [anon_sym_json_DOTdecode] = ACTIONS(3038), + [anon_sym_PIPE] = ACTIONS(3038), + [anon_sym_LBRACK2] = ACTIONS(3038), + [anon_sym_TILDE] = ACTIONS(3038), + [anon_sym_CARET] = ACTIONS(3038), + [anon_sym_AMP] = ACTIONS(3038), + [anon_sym_LT_DASH] = ACTIONS(3038), + [anon_sym_LT_LT] = ACTIONS(3038), + [anon_sym_GT_GT] = ACTIONS(3038), + [anon_sym_GT_GT_GT] = ACTIONS(3038), + [anon_sym_AMP_CARET] = ACTIONS(3038), + [anon_sym_AMP_AMP] = ACTIONS(3038), + [anon_sym_PIPE_PIPE] = ACTIONS(3038), + [anon_sym_or] = ACTIONS(3038), + [sym_none] = ACTIONS(3038), + [sym_true] = ACTIONS(3038), + [sym_false] = ACTIONS(3038), + [sym_nil] = ACTIONS(3038), + [anon_sym_QMARK_DOT] = ACTIONS(3038), + [anon_sym_POUND_LBRACK] = ACTIONS(3038), + [anon_sym_if] = ACTIONS(3038), + [anon_sym_DOLLARif] = ACTIONS(3038), + [anon_sym_is] = ACTIONS(3038), + [anon_sym_BANGis] = ACTIONS(3038), + [anon_sym_in] = ACTIONS(3038), + [anon_sym_BANGin] = ACTIONS(3038), + [anon_sym_match] = ACTIONS(3038), + [anon_sym_select] = ACTIONS(3038), + [anon_sym_lock] = ACTIONS(3038), + [anon_sym_rlock] = ACTIONS(3038), + [anon_sym_unsafe] = ACTIONS(3038), + [anon_sym_sql] = ACTIONS(3038), + [sym_int_literal] = ACTIONS(3038), + [sym_float_literal] = ACTIONS(3038), + [sym_rune_literal] = ACTIONS(3038), + [anon_sym_SQUOTE] = ACTIONS(3038), + [anon_sym_DQUOTE] = ACTIONS(3038), + [anon_sym_c_SQUOTE] = ACTIONS(3038), + [anon_sym_c_DQUOTE] = ACTIONS(3038), + [anon_sym_r_SQUOTE] = ACTIONS(3038), + [anon_sym_r_DQUOTE] = ACTIONS(3038), + [sym_pseudo_compile_time_identifier] = ACTIONS(3038), + [anon_sym_shared] = ACTIONS(3038), + [anon_sym_map_LBRACK] = ACTIONS(3038), + [anon_sym_chan] = ACTIONS(3038), + [anon_sym_thread] = ACTIONS(3038), + [anon_sym_atomic] = ACTIONS(3038), }, [1189] = { [sym_line_comment] = STATE(1189), [sym_block_comment] = STATE(1189), - [sym_identifier] = ACTIONS(2763), - [anon_sym_LF] = ACTIONS(2763), - [anon_sym_CR] = ACTIONS(2763), - [anon_sym_CR_LF] = ACTIONS(2763), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LF] = ACTIONS(3042), + [anon_sym_CR] = ACTIONS(3042), + [anon_sym_CR_LF] = ACTIONS(3042), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2763), - [anon_sym_DOT] = ACTIONS(2763), - [anon_sym_as] = ACTIONS(2763), - [anon_sym_LBRACE] = ACTIONS(2763), - [anon_sym_COMMA] = ACTIONS(2763), - [anon_sym_RBRACE] = ACTIONS(2763), - [anon_sym_LPAREN] = ACTIONS(2763), - [anon_sym_RPAREN] = ACTIONS(2763), - [anon_sym_PIPE] = ACTIONS(2763), - [anon_sym_fn] = ACTIONS(2763), - [anon_sym_PLUS] = ACTIONS(2763), - [anon_sym_DASH] = ACTIONS(2763), - [anon_sym_STAR] = ACTIONS(2763), - [anon_sym_SLASH] = ACTIONS(2763), - [anon_sym_PERCENT] = ACTIONS(2763), - [anon_sym_LT] = ACTIONS(2763), - [anon_sym_GT] = ACTIONS(2763), - [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_DOT_DOT_DOT] = ACTIONS(2763), - [anon_sym_LBRACK] = ACTIONS(2761), - [anon_sym_struct] = ACTIONS(2763), - [anon_sym_mut] = ACTIONS(2763), - [anon_sym_PLUS_PLUS] = ACTIONS(2763), - [anon_sym_DASH_DASH] = ACTIONS(2763), - [anon_sym_QMARK] = ACTIONS(2763), - [anon_sym_BANG] = ACTIONS(2763), - [anon_sym_go] = ACTIONS(2763), - [anon_sym_spawn] = ACTIONS(2763), - [anon_sym_json_DOTdecode] = ACTIONS(2763), - [anon_sym_LBRACK2] = ACTIONS(2763), - [anon_sym_TILDE] = ACTIONS(2763), - [anon_sym_CARET] = ACTIONS(2763), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_LT_DASH] = ACTIONS(2763), - [anon_sym_LT_LT] = ACTIONS(2763), - [anon_sym_GT_GT] = ACTIONS(2763), - [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(2763), - [sym_none] = ACTIONS(2763), - [sym_true] = ACTIONS(2763), - [sym_false] = ACTIONS(2763), - [sym_nil] = ACTIONS(2763), - [anon_sym_QMARK_DOT] = ACTIONS(2763), - [anon_sym_POUND_LBRACK] = ACTIONS(2763), - [anon_sym_if] = ACTIONS(2763), - [anon_sym_DOLLARif] = ACTIONS(2763), - [anon_sym_is] = ACTIONS(2763), - [anon_sym_BANGis] = ACTIONS(2763), - [anon_sym_in] = ACTIONS(2763), - [anon_sym_BANGin] = ACTIONS(2763), - [anon_sym_match] = ACTIONS(2763), - [anon_sym_select] = ACTIONS(2763), - [anon_sym_lock] = ACTIONS(2763), - [anon_sym_rlock] = ACTIONS(2763), - [anon_sym_unsafe] = ACTIONS(2763), - [anon_sym_sql] = ACTIONS(2763), - [sym_int_literal] = ACTIONS(2763), - [sym_float_literal] = ACTIONS(2763), - [sym_rune_literal] = ACTIONS(2763), - [anon_sym_SQUOTE] = ACTIONS(2763), - [anon_sym_DQUOTE] = ACTIONS(2763), - [anon_sym_c_SQUOTE] = ACTIONS(2763), - [anon_sym_c_DQUOTE] = ACTIONS(2763), - [anon_sym_r_SQUOTE] = ACTIONS(2763), - [anon_sym_r_DQUOTE] = ACTIONS(2763), - [sym_pseudo_compile_time_identifier] = ACTIONS(2763), - [anon_sym_shared] = ACTIONS(2763), - [anon_sym_map_LBRACK] = ACTIONS(2763), - [anon_sym_chan] = ACTIONS(2763), - [anon_sym_thread] = ACTIONS(2763), - [anon_sym_atomic] = ACTIONS(2763), + [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_DOT] = ACTIONS(3042), + [anon_sym_as] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(3042), + [anon_sym_RBRACE] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_RPAREN] = ACTIONS(3042), + [anon_sym_fn] = ACTIONS(3042), + [anon_sym_PLUS] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_SLASH] = ACTIONS(3042), + [anon_sym_PERCENT] = ACTIONS(3042), + [anon_sym_LT] = ACTIONS(3042), + [anon_sym_GT] = ACTIONS(3042), + [anon_sym_EQ_EQ] = ACTIONS(3042), + [anon_sym_BANG_EQ] = ACTIONS(3042), + [anon_sym_LT_EQ] = ACTIONS(3042), + [anon_sym_GT_EQ] = ACTIONS(3042), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3042), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_struct] = ACTIONS(3042), + [anon_sym_mut] = ACTIONS(3042), + [anon_sym_PLUS_PLUS] = ACTIONS(3042), + [anon_sym_DASH_DASH] = ACTIONS(3042), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(3042), + [anon_sym_go] = ACTIONS(3042), + [anon_sym_spawn] = ACTIONS(3042), + [anon_sym_json_DOTdecode] = ACTIONS(3042), + [anon_sym_PIPE] = ACTIONS(3042), + [anon_sym_LBRACK2] = ACTIONS(3042), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_CARET] = ACTIONS(3042), + [anon_sym_AMP] = ACTIONS(3042), + [anon_sym_LT_DASH] = ACTIONS(3042), + [anon_sym_LT_LT] = ACTIONS(3042), + [anon_sym_GT_GT] = ACTIONS(3042), + [anon_sym_GT_GT_GT] = ACTIONS(3042), + [anon_sym_AMP_CARET] = ACTIONS(3042), + [anon_sym_AMP_AMP] = ACTIONS(3042), + [anon_sym_PIPE_PIPE] = ACTIONS(3042), + [anon_sym_or] = ACTIONS(3042), + [sym_none] = ACTIONS(3042), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_nil] = ACTIONS(3042), + [anon_sym_QMARK_DOT] = ACTIONS(3042), + [anon_sym_POUND_LBRACK] = ACTIONS(3042), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_DOLLARif] = ACTIONS(3042), + [anon_sym_is] = ACTIONS(3042), + [anon_sym_BANGis] = ACTIONS(3042), + [anon_sym_in] = ACTIONS(3042), + [anon_sym_BANGin] = ACTIONS(3042), + [anon_sym_match] = ACTIONS(3042), + [anon_sym_select] = ACTIONS(3042), + [anon_sym_lock] = ACTIONS(3042), + [anon_sym_rlock] = ACTIONS(3042), + [anon_sym_unsafe] = ACTIONS(3042), + [anon_sym_sql] = ACTIONS(3042), + [sym_int_literal] = ACTIONS(3042), + [sym_float_literal] = ACTIONS(3042), + [sym_rune_literal] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3042), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_c_SQUOTE] = ACTIONS(3042), + [anon_sym_c_DQUOTE] = ACTIONS(3042), + [anon_sym_r_SQUOTE] = ACTIONS(3042), + [anon_sym_r_DQUOTE] = ACTIONS(3042), + [sym_pseudo_compile_time_identifier] = ACTIONS(3042), + [anon_sym_shared] = ACTIONS(3042), + [anon_sym_map_LBRACK] = ACTIONS(3042), + [anon_sym_chan] = ACTIONS(3042), + [anon_sym_thread] = ACTIONS(3042), + [anon_sym_atomic] = ACTIONS(3042), }, [1190] = { [sym_line_comment] = STATE(1190), [sym_block_comment] = STATE(1190), - [sym_identifier] = ACTIONS(2089), - [anon_sym_LF] = ACTIONS(2089), - [anon_sym_CR] = ACTIONS(2089), - [anon_sym_CR_LF] = ACTIONS(2089), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LF] = ACTIONS(2099), + [anon_sym_CR] = ACTIONS(2099), + [anon_sym_CR_LF] = ACTIONS(2099), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_DOT] = ACTIONS(2089), - [anon_sym_as] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_COMMA] = ACTIONS(2089), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_RPAREN] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(2089), - [anon_sym_fn] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2089), - [anon_sym_SLASH] = ACTIONS(2089), - [anon_sym_PERCENT] = ACTIONS(2089), - [anon_sym_LT] = ACTIONS(2089), - [anon_sym_GT] = ACTIONS(2089), - [anon_sym_EQ_EQ] = ACTIONS(2089), - [anon_sym_BANG_EQ] = ACTIONS(2089), - [anon_sym_LT_EQ] = ACTIONS(2089), - [anon_sym_GT_EQ] = ACTIONS(2089), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2089), - [anon_sym_LBRACK] = ACTIONS(2087), - [anon_sym_struct] = ACTIONS(2089), - [anon_sym_mut] = ACTIONS(2089), - [anon_sym_PLUS_PLUS] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2089), - [anon_sym_QMARK] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(2089), - [anon_sym_go] = ACTIONS(2089), - [anon_sym_spawn] = ACTIONS(2089), - [anon_sym_json_DOTdecode] = ACTIONS(2089), - [anon_sym_LBRACK2] = ACTIONS(2089), - [anon_sym_TILDE] = ACTIONS(2089), - [anon_sym_CARET] = ACTIONS(2089), - [anon_sym_AMP] = ACTIONS(2089), - [anon_sym_LT_DASH] = ACTIONS(2089), - [anon_sym_LT_LT] = ACTIONS(2089), - [anon_sym_GT_GT] = ACTIONS(2089), - [anon_sym_GT_GT_GT] = ACTIONS(2089), - [anon_sym_AMP_CARET] = ACTIONS(2089), - [anon_sym_AMP_AMP] = ACTIONS(2089), - [anon_sym_PIPE_PIPE] = ACTIONS(2089), - [anon_sym_or] = ACTIONS(2089), - [sym_none] = ACTIONS(2089), - [sym_true] = ACTIONS(2089), - [sym_false] = ACTIONS(2089), - [sym_nil] = ACTIONS(2089), - [anon_sym_QMARK_DOT] = ACTIONS(2089), - [anon_sym_POUND_LBRACK] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_DOLLARif] = ACTIONS(2089), - [anon_sym_is] = ACTIONS(2089), - [anon_sym_BANGis] = ACTIONS(2089), - [anon_sym_in] = ACTIONS(2089), - [anon_sym_BANGin] = ACTIONS(2089), - [anon_sym_match] = ACTIONS(2089), - [anon_sym_select] = ACTIONS(2089), - [anon_sym_lock] = ACTIONS(2089), - [anon_sym_rlock] = ACTIONS(2089), - [anon_sym_unsafe] = ACTIONS(2089), - [anon_sym_sql] = ACTIONS(2089), - [sym_int_literal] = ACTIONS(2089), - [sym_float_literal] = ACTIONS(2089), - [sym_rune_literal] = ACTIONS(2089), - [anon_sym_SQUOTE] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2089), - [anon_sym_c_SQUOTE] = ACTIONS(2089), - [anon_sym_c_DQUOTE] = ACTIONS(2089), - [anon_sym_r_SQUOTE] = ACTIONS(2089), - [anon_sym_r_DQUOTE] = ACTIONS(2089), - [sym_pseudo_compile_time_identifier] = ACTIONS(2089), - [anon_sym_shared] = ACTIONS(2089), - [anon_sym_map_LBRACK] = ACTIONS(2089), - [anon_sym_chan] = ACTIONS(2089), - [anon_sym_thread] = ACTIONS(2089), - [anon_sym_atomic] = ACTIONS(2089), + [anon_sym_SEMI] = ACTIONS(2099), + [anon_sym_DOT] = ACTIONS(2099), + [anon_sym_as] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_COMMA] = ACTIONS(2099), + [anon_sym_RBRACE] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(2099), + [anon_sym_RPAREN] = ACTIONS(2099), + [anon_sym_fn] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(2099), + [anon_sym_DASH] = ACTIONS(2099), + [anon_sym_STAR] = ACTIONS(2099), + [anon_sym_SLASH] = ACTIONS(2099), + [anon_sym_PERCENT] = ACTIONS(2099), + [anon_sym_LT] = ACTIONS(2099), + [anon_sym_GT] = ACTIONS(2099), + [anon_sym_EQ_EQ] = ACTIONS(2099), + [anon_sym_BANG_EQ] = ACTIONS(2099), + [anon_sym_LT_EQ] = ACTIONS(2099), + [anon_sym_GT_EQ] = ACTIONS(2099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2099), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_struct] = ACTIONS(2099), + [anon_sym_mut] = ACTIONS(2099), + [anon_sym_PLUS_PLUS] = ACTIONS(2099), + [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_QMARK] = ACTIONS(2099), + [anon_sym_BANG] = ACTIONS(2099), + [anon_sym_go] = ACTIONS(2099), + [anon_sym_spawn] = ACTIONS(2099), + [anon_sym_json_DOTdecode] = ACTIONS(2099), + [anon_sym_PIPE] = ACTIONS(2099), + [anon_sym_LBRACK2] = ACTIONS(2099), + [anon_sym_TILDE] = ACTIONS(2099), + [anon_sym_CARET] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_LT_DASH] = ACTIONS(2099), + [anon_sym_LT_LT] = ACTIONS(2099), + [anon_sym_GT_GT] = ACTIONS(2099), + [anon_sym_GT_GT_GT] = ACTIONS(2099), + [anon_sym_AMP_CARET] = ACTIONS(2099), + [anon_sym_AMP_AMP] = ACTIONS(2099), + [anon_sym_PIPE_PIPE] = ACTIONS(2099), + [anon_sym_or] = ACTIONS(2099), + [sym_none] = ACTIONS(2099), + [sym_true] = ACTIONS(2099), + [sym_false] = ACTIONS(2099), + [sym_nil] = ACTIONS(2099), + [anon_sym_QMARK_DOT] = ACTIONS(2099), + [anon_sym_POUND_LBRACK] = ACTIONS(2099), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(2099), + [anon_sym_is] = ACTIONS(2099), + [anon_sym_BANGis] = ACTIONS(2099), + [anon_sym_in] = ACTIONS(2099), + [anon_sym_BANGin] = ACTIONS(2099), + [anon_sym_match] = ACTIONS(2099), + [anon_sym_select] = ACTIONS(2099), + [anon_sym_lock] = ACTIONS(2099), + [anon_sym_rlock] = ACTIONS(2099), + [anon_sym_unsafe] = ACTIONS(2099), + [anon_sym_sql] = ACTIONS(2099), + [sym_int_literal] = ACTIONS(2099), + [sym_float_literal] = ACTIONS(2099), + [sym_rune_literal] = ACTIONS(2099), + [anon_sym_SQUOTE] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(2099), + [anon_sym_c_SQUOTE] = ACTIONS(2099), + [anon_sym_c_DQUOTE] = ACTIONS(2099), + [anon_sym_r_SQUOTE] = ACTIONS(2099), + [anon_sym_r_DQUOTE] = ACTIONS(2099), + [sym_pseudo_compile_time_identifier] = ACTIONS(2099), + [anon_sym_shared] = ACTIONS(2099), + [anon_sym_map_LBRACK] = ACTIONS(2099), + [anon_sym_chan] = ACTIONS(2099), + [anon_sym_thread] = ACTIONS(2099), + [anon_sym_atomic] = ACTIONS(2099), }, [1191] = { [sym_line_comment] = STATE(1191), [sym_block_comment] = STATE(1191), - [sym_identifier] = ACTIONS(2055), - [anon_sym_LF] = ACTIONS(2055), - [anon_sym_CR] = ACTIONS(2055), - [anon_sym_CR_LF] = ACTIONS(2055), + [sym_identifier] = ACTIONS(2705), + [anon_sym_LF] = ACTIONS(2705), + [anon_sym_CR] = ACTIONS(2705), + [anon_sym_CR_LF] = ACTIONS(2705), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_RPAREN] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2053), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_QMARK] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2055), - [anon_sym_LBRACK2] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_LT_DASH] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_AMP_CARET] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(2055), - [anon_sym_POUND_LBRACK] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_rune_literal] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_c_SQUOTE] = ACTIONS(2055), - [anon_sym_c_DQUOTE] = ACTIONS(2055), - [anon_sym_r_SQUOTE] = ACTIONS(2055), - [anon_sym_r_DQUOTE] = ACTIONS(2055), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2055), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2705), + [anon_sym_DOT] = ACTIONS(2705), + [anon_sym_as] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_COMMA] = ACTIONS(2705), + [anon_sym_RBRACE] = ACTIONS(2705), + [anon_sym_LPAREN] = ACTIONS(2705), + [anon_sym_RPAREN] = ACTIONS(2705), + [anon_sym_fn] = ACTIONS(2705), + [anon_sym_PLUS] = ACTIONS(2705), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2705), + [anon_sym_SLASH] = ACTIONS(2705), + [anon_sym_PERCENT] = ACTIONS(2705), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_GT] = ACTIONS(2705), + [anon_sym_EQ_EQ] = ACTIONS(2705), + [anon_sym_BANG_EQ] = ACTIONS(2705), + [anon_sym_LT_EQ] = ACTIONS(2705), + [anon_sym_GT_EQ] = ACTIONS(2705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_struct] = ACTIONS(2705), + [anon_sym_mut] = ACTIONS(2705), + [anon_sym_PLUS_PLUS] = ACTIONS(2705), + [anon_sym_DASH_DASH] = ACTIONS(2705), + [anon_sym_QMARK] = ACTIONS(2705), + [anon_sym_BANG] = ACTIONS(2705), + [anon_sym_go] = ACTIONS(2705), + [anon_sym_spawn] = ACTIONS(2705), + [anon_sym_json_DOTdecode] = ACTIONS(2705), + [anon_sym_PIPE] = ACTIONS(2705), + [anon_sym_LBRACK2] = ACTIONS(2705), + [anon_sym_TILDE] = ACTIONS(2705), + [anon_sym_CARET] = ACTIONS(2705), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_LT_DASH] = ACTIONS(2705), + [anon_sym_LT_LT] = ACTIONS(2705), + [anon_sym_GT_GT] = ACTIONS(2705), + [anon_sym_GT_GT_GT] = ACTIONS(2705), + [anon_sym_AMP_CARET] = ACTIONS(2705), + [anon_sym_AMP_AMP] = ACTIONS(2705), + [anon_sym_PIPE_PIPE] = ACTIONS(2705), + [anon_sym_or] = ACTIONS(2705), + [sym_none] = ACTIONS(2705), + [sym_true] = ACTIONS(2705), + [sym_false] = ACTIONS(2705), + [sym_nil] = ACTIONS(2705), + [anon_sym_QMARK_DOT] = ACTIONS(2705), + [anon_sym_POUND_LBRACK] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_DOLLARif] = ACTIONS(2705), + [anon_sym_is] = ACTIONS(2705), + [anon_sym_BANGis] = ACTIONS(2705), + [anon_sym_in] = ACTIONS(2705), + [anon_sym_BANGin] = ACTIONS(2705), + [anon_sym_match] = ACTIONS(2705), + [anon_sym_select] = ACTIONS(2705), + [anon_sym_lock] = ACTIONS(2705), + [anon_sym_rlock] = ACTIONS(2705), + [anon_sym_unsafe] = ACTIONS(2705), + [anon_sym_sql] = ACTIONS(2705), + [sym_int_literal] = ACTIONS(2705), + [sym_float_literal] = ACTIONS(2705), + [sym_rune_literal] = ACTIONS(2705), + [anon_sym_SQUOTE] = ACTIONS(2705), + [anon_sym_DQUOTE] = ACTIONS(2705), + [anon_sym_c_SQUOTE] = ACTIONS(2705), + [anon_sym_c_DQUOTE] = ACTIONS(2705), + [anon_sym_r_SQUOTE] = ACTIONS(2705), + [anon_sym_r_DQUOTE] = ACTIONS(2705), + [sym_pseudo_compile_time_identifier] = ACTIONS(2705), + [anon_sym_shared] = ACTIONS(2705), + [anon_sym_map_LBRACK] = ACTIONS(2705), + [anon_sym_chan] = ACTIONS(2705), + [anon_sym_thread] = ACTIONS(2705), + [anon_sym_atomic] = ACTIONS(2705), }, [1192] = { [sym_line_comment] = STATE(1192), [sym_block_comment] = STATE(1192), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2311), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(605), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_EQ] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(627), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(625), - [anon_sym_BANG_EQ] = ACTIONS(625), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_QMARK] = ACTIONS(627), - [anon_sym_BANG] = ACTIONS(627), - [anon_sym_LBRACK2] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(627), - [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(623), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), + [sym_identifier] = ACTIONS(2731), + [anon_sym_LF] = ACTIONS(2731), + [anon_sym_CR] = ACTIONS(2731), + [anon_sym_CR_LF] = ACTIONS(2731), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2731), + [anon_sym_DOT] = ACTIONS(2731), + [anon_sym_as] = ACTIONS(2731), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_COMMA] = ACTIONS(2731), + [anon_sym_RBRACE] = ACTIONS(2731), + [anon_sym_LPAREN] = ACTIONS(2731), + [anon_sym_RPAREN] = ACTIONS(2731), + [anon_sym_fn] = ACTIONS(2731), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2731), + [anon_sym_SLASH] = ACTIONS(2731), + [anon_sym_PERCENT] = ACTIONS(2731), + [anon_sym_LT] = ACTIONS(2731), + [anon_sym_GT] = ACTIONS(2731), + [anon_sym_EQ_EQ] = ACTIONS(2731), + [anon_sym_BANG_EQ] = ACTIONS(2731), + [anon_sym_LT_EQ] = ACTIONS(2731), + [anon_sym_GT_EQ] = ACTIONS(2731), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2729), + [anon_sym_struct] = ACTIONS(2731), + [anon_sym_mut] = ACTIONS(2731), + [anon_sym_PLUS_PLUS] = ACTIONS(2731), + [anon_sym_DASH_DASH] = ACTIONS(2731), + [anon_sym_QMARK] = ACTIONS(2731), + [anon_sym_BANG] = ACTIONS(2731), + [anon_sym_go] = ACTIONS(2731), + [anon_sym_spawn] = ACTIONS(2731), + [anon_sym_json_DOTdecode] = ACTIONS(2731), + [anon_sym_PIPE] = ACTIONS(2731), + [anon_sym_LBRACK2] = ACTIONS(2731), + [anon_sym_TILDE] = ACTIONS(2731), + [anon_sym_CARET] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_LT_DASH] = ACTIONS(2731), + [anon_sym_LT_LT] = ACTIONS(2731), + [anon_sym_GT_GT] = ACTIONS(2731), + [anon_sym_GT_GT_GT] = ACTIONS(2731), + [anon_sym_AMP_CARET] = ACTIONS(2731), + [anon_sym_AMP_AMP] = ACTIONS(2731), + [anon_sym_PIPE_PIPE] = ACTIONS(2731), + [anon_sym_or] = ACTIONS(2731), + [sym_none] = ACTIONS(2731), + [sym_true] = ACTIONS(2731), + [sym_false] = ACTIONS(2731), + [sym_nil] = ACTIONS(2731), + [anon_sym_QMARK_DOT] = ACTIONS(2731), + [anon_sym_POUND_LBRACK] = ACTIONS(2731), + [anon_sym_if] = ACTIONS(2731), + [anon_sym_DOLLARif] = ACTIONS(2731), + [anon_sym_is] = ACTIONS(2731), + [anon_sym_BANGis] = ACTIONS(2731), + [anon_sym_in] = ACTIONS(2731), + [anon_sym_BANGin] = ACTIONS(2731), + [anon_sym_match] = ACTIONS(2731), + [anon_sym_select] = ACTIONS(2731), + [anon_sym_lock] = ACTIONS(2731), + [anon_sym_rlock] = ACTIONS(2731), + [anon_sym_unsafe] = ACTIONS(2731), + [anon_sym_sql] = ACTIONS(2731), + [sym_int_literal] = ACTIONS(2731), + [sym_float_literal] = ACTIONS(2731), + [sym_rune_literal] = ACTIONS(2731), + [anon_sym_SQUOTE] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(2731), + [anon_sym_c_SQUOTE] = ACTIONS(2731), + [anon_sym_c_DQUOTE] = ACTIONS(2731), + [anon_sym_r_SQUOTE] = ACTIONS(2731), + [anon_sym_r_DQUOTE] = ACTIONS(2731), + [sym_pseudo_compile_time_identifier] = ACTIONS(2731), + [anon_sym_shared] = ACTIONS(2731), + [anon_sym_map_LBRACK] = ACTIONS(2731), + [anon_sym_chan] = ACTIONS(2731), + [anon_sym_thread] = ACTIONS(2731), + [anon_sym_atomic] = ACTIONS(2731), }, [1193] = { [sym_line_comment] = STATE(1193), [sym_block_comment] = STATE(1193), - [sym_identifier] = ACTIONS(2507), - [anon_sym_LF] = ACTIONS(2507), - [anon_sym_CR] = ACTIONS(2507), - [anon_sym_CR_LF] = ACTIONS(2507), + [sym_identifier] = ACTIONS(2727), + [anon_sym_LF] = ACTIONS(2727), + [anon_sym_CR] = ACTIONS(2727), + [anon_sym_CR_LF] = ACTIONS(2727), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2507), - [anon_sym_DOT] = ACTIONS(2507), - [anon_sym_as] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_COMMA] = ACTIONS(2507), - [anon_sym_RBRACE] = ACTIONS(2507), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_RPAREN] = ACTIONS(2507), - [anon_sym_PIPE] = ACTIONS(2507), - [anon_sym_fn] = ACTIONS(2507), - [anon_sym_PLUS] = ACTIONS(2507), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_STAR] = ACTIONS(2507), - [anon_sym_SLASH] = ACTIONS(2507), - [anon_sym_PERCENT] = ACTIONS(2507), - [anon_sym_LT] = ACTIONS(2507), - [anon_sym_GT] = ACTIONS(2507), - [anon_sym_EQ_EQ] = ACTIONS(2507), - [anon_sym_BANG_EQ] = ACTIONS(2507), - [anon_sym_LT_EQ] = ACTIONS(2507), - [anon_sym_GT_EQ] = ACTIONS(2507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2507), - [anon_sym_LBRACK] = ACTIONS(2505), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_mut] = ACTIONS(2507), - [anon_sym_PLUS_PLUS] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2507), - [anon_sym_QMARK] = ACTIONS(2507), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_go] = ACTIONS(2507), - [anon_sym_spawn] = ACTIONS(2507), - [anon_sym_json_DOTdecode] = ACTIONS(2507), - [anon_sym_LBRACK2] = ACTIONS(2507), - [anon_sym_TILDE] = ACTIONS(2507), - [anon_sym_CARET] = ACTIONS(2507), - [anon_sym_AMP] = ACTIONS(2507), - [anon_sym_LT_DASH] = ACTIONS(2507), - [anon_sym_LT_LT] = ACTIONS(2507), - [anon_sym_GT_GT] = ACTIONS(2507), - [anon_sym_GT_GT_GT] = ACTIONS(2507), - [anon_sym_AMP_CARET] = ACTIONS(2507), - [anon_sym_AMP_AMP] = ACTIONS(2507), - [anon_sym_PIPE_PIPE] = ACTIONS(2507), - [anon_sym_or] = ACTIONS(2507), - [sym_none] = ACTIONS(2507), - [sym_true] = ACTIONS(2507), - [sym_false] = ACTIONS(2507), - [sym_nil] = ACTIONS(2507), - [anon_sym_QMARK_DOT] = ACTIONS(2507), - [anon_sym_POUND_LBRACK] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_DOLLARif] = ACTIONS(2507), - [anon_sym_is] = ACTIONS(2507), - [anon_sym_BANGis] = ACTIONS(2507), - [anon_sym_in] = ACTIONS(2507), - [anon_sym_BANGin] = ACTIONS(2507), - [anon_sym_match] = ACTIONS(2507), - [anon_sym_select] = ACTIONS(2507), - [anon_sym_lock] = ACTIONS(2507), - [anon_sym_rlock] = ACTIONS(2507), - [anon_sym_unsafe] = ACTIONS(2507), - [anon_sym_sql] = ACTIONS(2507), - [sym_int_literal] = ACTIONS(2507), - [sym_float_literal] = ACTIONS(2507), - [sym_rune_literal] = ACTIONS(2507), - [anon_sym_SQUOTE] = ACTIONS(2507), - [anon_sym_DQUOTE] = ACTIONS(2507), - [anon_sym_c_SQUOTE] = ACTIONS(2507), - [anon_sym_c_DQUOTE] = ACTIONS(2507), - [anon_sym_r_SQUOTE] = ACTIONS(2507), - [anon_sym_r_DQUOTE] = ACTIONS(2507), - [sym_pseudo_compile_time_identifier] = ACTIONS(2507), - [anon_sym_shared] = ACTIONS(2507), - [anon_sym_map_LBRACK] = ACTIONS(2507), - [anon_sym_chan] = ACTIONS(2507), - [anon_sym_thread] = ACTIONS(2507), - [anon_sym_atomic] = ACTIONS(2507), + [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_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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2727), + [anon_sym_DQUOTE] = ACTIONS(2727), + [anon_sym_c_SQUOTE] = ACTIONS(2727), + [anon_sym_c_DQUOTE] = ACTIONS(2727), + [anon_sym_r_SQUOTE] = ACTIONS(2727), + [anon_sym_r_DQUOTE] = 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), + }, + [1194] = { + [sym_line_comment] = STATE(1194), + [sym_block_comment] = STATE(1194), + [sym_identifier] = ACTIONS(3058), + [anon_sym_LF] = ACTIONS(3058), + [anon_sym_CR] = ACTIONS(3058), + [anon_sym_CR_LF] = ACTIONS(3058), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3058), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_as] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_RBRACE] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_RPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_LT_EQ] = ACTIONS(3058), + [anon_sym_GT_EQ] = ACTIONS(3058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_struct] = ACTIONS(3058), + [anon_sym_mut] = ACTIONS(3058), + [anon_sym_PLUS_PLUS] = ACTIONS(3058), + [anon_sym_DASH_DASH] = ACTIONS(3058), + [anon_sym_QMARK] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_go] = ACTIONS(3058), + [anon_sym_spawn] = ACTIONS(3058), + [anon_sym_json_DOTdecode] = ACTIONS(3058), + [anon_sym_PIPE] = ACTIONS(3058), + [anon_sym_LBRACK2] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [anon_sym_CARET] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT_DASH] = ACTIONS(3058), + [anon_sym_LT_LT] = ACTIONS(3058), + [anon_sym_GT_GT] = ACTIONS(3058), + [anon_sym_GT_GT_GT] = ACTIONS(3058), + [anon_sym_AMP_CARET] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_PIPE_PIPE] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3058), + [sym_none] = ACTIONS(3058), + [sym_true] = ACTIONS(3058), + [sym_false] = ACTIONS(3058), + [sym_nil] = ACTIONS(3058), + [anon_sym_QMARK_DOT] = ACTIONS(3058), + [anon_sym_POUND_LBRACK] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_DOLLARif] = ACTIONS(3058), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3058), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_BANGin] = ACTIONS(3058), + [anon_sym_match] = ACTIONS(3058), + [anon_sym_select] = ACTIONS(3058), + [anon_sym_lock] = ACTIONS(3058), + [anon_sym_rlock] = ACTIONS(3058), + [anon_sym_unsafe] = ACTIONS(3058), + [anon_sym_sql] = ACTIONS(3058), + [sym_int_literal] = ACTIONS(3058), + [sym_float_literal] = ACTIONS(3058), + [sym_rune_literal] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_c_SQUOTE] = ACTIONS(3058), + [anon_sym_c_DQUOTE] = ACTIONS(3058), + [anon_sym_r_SQUOTE] = ACTIONS(3058), + [anon_sym_r_DQUOTE] = ACTIONS(3058), + [sym_pseudo_compile_time_identifier] = ACTIONS(3058), + [anon_sym_shared] = ACTIONS(3058), + [anon_sym_map_LBRACK] = ACTIONS(3058), + [anon_sym_chan] = ACTIONS(3058), + [anon_sym_thread] = ACTIONS(3058), + [anon_sym_atomic] = ACTIONS(3058), + }, + [1195] = { + [sym_line_comment] = STATE(1195), + [sym_block_comment] = STATE(1195), + [sym_identifier] = ACTIONS(3070), + [anon_sym_LF] = ACTIONS(3070), + [anon_sym_CR] = ACTIONS(3070), + [anon_sym_CR_LF] = ACTIONS(3070), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3070), + [anon_sym_DOT] = ACTIONS(3070), + [anon_sym_as] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(3070), + [anon_sym_COMMA] = ACTIONS(3070), + [anon_sym_RBRACE] = ACTIONS(3070), + [anon_sym_LPAREN] = ACTIONS(3070), + [anon_sym_RPAREN] = ACTIONS(3070), + [anon_sym_fn] = ACTIONS(3070), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(3070), + [anon_sym_SLASH] = ACTIONS(3070), + [anon_sym_PERCENT] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(3070), + [anon_sym_GT] = ACTIONS(3070), + [anon_sym_EQ_EQ] = ACTIONS(3070), + [anon_sym_BANG_EQ] = ACTIONS(3070), + [anon_sym_LT_EQ] = ACTIONS(3070), + [anon_sym_GT_EQ] = ACTIONS(3070), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_struct] = ACTIONS(3070), + [anon_sym_mut] = ACTIONS(3070), + [anon_sym_PLUS_PLUS] = ACTIONS(3070), + [anon_sym_DASH_DASH] = ACTIONS(3070), + [anon_sym_QMARK] = ACTIONS(3070), + [anon_sym_BANG] = ACTIONS(3070), + [anon_sym_go] = ACTIONS(3070), + [anon_sym_spawn] = ACTIONS(3070), + [anon_sym_json_DOTdecode] = ACTIONS(3070), + [anon_sym_PIPE] = ACTIONS(3070), + [anon_sym_LBRACK2] = ACTIONS(3070), + [anon_sym_TILDE] = ACTIONS(3070), + [anon_sym_CARET] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT_DASH] = ACTIONS(3070), + [anon_sym_LT_LT] = ACTIONS(3070), + [anon_sym_GT_GT] = ACTIONS(3070), + [anon_sym_GT_GT_GT] = ACTIONS(3070), + [anon_sym_AMP_CARET] = ACTIONS(3070), + [anon_sym_AMP_AMP] = ACTIONS(3070), + [anon_sym_PIPE_PIPE] = ACTIONS(3070), + [anon_sym_or] = ACTIONS(3070), + [sym_none] = ACTIONS(3070), + [sym_true] = ACTIONS(3070), + [sym_false] = ACTIONS(3070), + [sym_nil] = ACTIONS(3070), + [anon_sym_QMARK_DOT] = ACTIONS(3070), + [anon_sym_POUND_LBRACK] = ACTIONS(3070), + [anon_sym_if] = ACTIONS(3070), + [anon_sym_DOLLARif] = ACTIONS(3070), + [anon_sym_is] = ACTIONS(3070), + [anon_sym_BANGis] = ACTIONS(3070), + [anon_sym_in] = ACTIONS(3070), + [anon_sym_BANGin] = ACTIONS(3070), + [anon_sym_match] = ACTIONS(3070), + [anon_sym_select] = ACTIONS(3070), + [anon_sym_lock] = ACTIONS(3070), + [anon_sym_rlock] = ACTIONS(3070), + [anon_sym_unsafe] = ACTIONS(3070), + [anon_sym_sql] = ACTIONS(3070), + [sym_int_literal] = ACTIONS(3070), + [sym_float_literal] = ACTIONS(3070), + [sym_rune_literal] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_c_SQUOTE] = ACTIONS(3070), + [anon_sym_c_DQUOTE] = ACTIONS(3070), + [anon_sym_r_SQUOTE] = ACTIONS(3070), + [anon_sym_r_DQUOTE] = ACTIONS(3070), + [sym_pseudo_compile_time_identifier] = ACTIONS(3070), + [anon_sym_shared] = ACTIONS(3070), + [anon_sym_map_LBRACK] = ACTIONS(3070), + [anon_sym_chan] = ACTIONS(3070), + [anon_sym_thread] = ACTIONS(3070), + [anon_sym_atomic] = ACTIONS(3070), + }, + [1196] = { + [sym_line_comment] = STATE(1196), + [sym_block_comment] = STATE(1196), + [sym_identifier] = ACTIONS(2937), + [anon_sym_LF] = ACTIONS(2937), + [anon_sym_CR] = ACTIONS(2937), + [anon_sym_CR_LF] = ACTIONS(2937), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2937), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_as] = ACTIONS(2937), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(2937), + [anon_sym_RBRACE] = ACTIONS(2937), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_RPAREN] = ACTIONS(2937), + [anon_sym_fn] = ACTIONS(2937), + [anon_sym_PLUS] = ACTIONS(2937), + [anon_sym_DASH] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2937), + [anon_sym_SLASH] = ACTIONS(2937), + [anon_sym_PERCENT] = ACTIONS(2937), + [anon_sym_LT] = ACTIONS(2937), + [anon_sym_GT] = ACTIONS(2937), + [anon_sym_EQ_EQ] = ACTIONS(2937), + [anon_sym_BANG_EQ] = ACTIONS(2937), + [anon_sym_LT_EQ] = ACTIONS(2937), + [anon_sym_GT_EQ] = ACTIONS(2937), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2935), + [anon_sym_struct] = ACTIONS(2937), + [anon_sym_mut] = ACTIONS(2937), + [anon_sym_PLUS_PLUS] = ACTIONS(2937), + [anon_sym_DASH_DASH] = ACTIONS(2937), + [anon_sym_QMARK] = ACTIONS(2937), + [anon_sym_BANG] = ACTIONS(2937), + [anon_sym_go] = ACTIONS(2937), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2937), + [anon_sym_PIPE] = ACTIONS(2937), + [anon_sym_LBRACK2] = ACTIONS(2937), + [anon_sym_TILDE] = ACTIONS(2937), + [anon_sym_CARET] = ACTIONS(2937), + [anon_sym_AMP] = ACTIONS(2937), + [anon_sym_LT_DASH] = ACTIONS(2937), + [anon_sym_LT_LT] = ACTIONS(2937), + [anon_sym_GT_GT] = ACTIONS(2937), + [anon_sym_GT_GT_GT] = ACTIONS(2937), + [anon_sym_AMP_CARET] = ACTIONS(2937), + [anon_sym_AMP_AMP] = ACTIONS(2937), + [anon_sym_PIPE_PIPE] = ACTIONS(2937), + [anon_sym_or] = ACTIONS(2937), + [sym_none] = ACTIONS(2937), + [sym_true] = ACTIONS(2937), + [sym_false] = ACTIONS(2937), + [sym_nil] = ACTIONS(2937), + [anon_sym_QMARK_DOT] = ACTIONS(2937), + [anon_sym_POUND_LBRACK] = ACTIONS(2937), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_DOLLARif] = ACTIONS(2937), + [anon_sym_is] = ACTIONS(2937), + [anon_sym_BANGis] = ACTIONS(2937), + [anon_sym_in] = ACTIONS(2937), + [anon_sym_BANGin] = ACTIONS(2937), + [anon_sym_match] = ACTIONS(2937), + [anon_sym_select] = ACTIONS(2937), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(2937), + [anon_sym_sql] = ACTIONS(2937), + [sym_int_literal] = ACTIONS(2937), + [sym_float_literal] = ACTIONS(2937), + [sym_rune_literal] = ACTIONS(2937), + [anon_sym_SQUOTE] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2937), + [anon_sym_c_SQUOTE] = ACTIONS(2937), + [anon_sym_c_DQUOTE] = ACTIONS(2937), + [anon_sym_r_SQUOTE] = ACTIONS(2937), + [anon_sym_r_DQUOTE] = ACTIONS(2937), + [sym_pseudo_compile_time_identifier] = ACTIONS(2937), + [anon_sym_shared] = ACTIONS(2937), + [anon_sym_map_LBRACK] = ACTIONS(2937), + [anon_sym_chan] = ACTIONS(2937), + [anon_sym_thread] = ACTIONS(2937), + [anon_sym_atomic] = ACTIONS(2937), + }, + [1197] = { + [sym_line_comment] = STATE(1197), + [sym_block_comment] = STATE(1197), + [sym_identifier] = ACTIONS(2779), + [anon_sym_LF] = ACTIONS(2779), + [anon_sym_CR] = ACTIONS(2779), + [anon_sym_CR_LF] = ACTIONS(2779), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2779), + [anon_sym_DOT] = ACTIONS(2779), + [anon_sym_as] = ACTIONS(2779), + [anon_sym_LBRACE] = ACTIONS(2779), + [anon_sym_COMMA] = ACTIONS(2779), + [anon_sym_RBRACE] = ACTIONS(2779), + [anon_sym_LPAREN] = ACTIONS(2779), + [anon_sym_RPAREN] = ACTIONS(2779), + [anon_sym_fn] = ACTIONS(2779), + [anon_sym_PLUS] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_STAR] = ACTIONS(2779), + [anon_sym_SLASH] = ACTIONS(2779), + [anon_sym_PERCENT] = ACTIONS(2779), + [anon_sym_LT] = ACTIONS(2779), + [anon_sym_GT] = ACTIONS(2779), + [anon_sym_EQ_EQ] = ACTIONS(2779), + [anon_sym_BANG_EQ] = ACTIONS(2779), + [anon_sym_LT_EQ] = ACTIONS(2779), + [anon_sym_GT_EQ] = ACTIONS(2779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2779), + [anon_sym_LBRACK] = ACTIONS(2777), + [anon_sym_struct] = ACTIONS(2779), + [anon_sym_mut] = ACTIONS(2779), + [anon_sym_PLUS_PLUS] = ACTIONS(2779), + [anon_sym_DASH_DASH] = ACTIONS(2779), + [anon_sym_QMARK] = ACTIONS(2779), + [anon_sym_BANG] = ACTIONS(2779), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2779), + [anon_sym_json_DOTdecode] = ACTIONS(2779), + [anon_sym_PIPE] = ACTIONS(2779), + [anon_sym_LBRACK2] = ACTIONS(2779), + [anon_sym_TILDE] = ACTIONS(2779), + [anon_sym_CARET] = ACTIONS(2779), + [anon_sym_AMP] = ACTIONS(2779), + [anon_sym_LT_DASH] = ACTIONS(2779), + [anon_sym_LT_LT] = ACTIONS(2779), + [anon_sym_GT_GT] = ACTIONS(2779), + [anon_sym_GT_GT_GT] = ACTIONS(2779), + [anon_sym_AMP_CARET] = ACTIONS(2779), + [anon_sym_AMP_AMP] = ACTIONS(2779), + [anon_sym_PIPE_PIPE] = ACTIONS(2779), + [anon_sym_or] = ACTIONS(2779), + [sym_none] = ACTIONS(2779), + [sym_true] = ACTIONS(2779), + [sym_false] = ACTIONS(2779), + [sym_nil] = ACTIONS(2779), + [anon_sym_QMARK_DOT] = ACTIONS(2779), + [anon_sym_POUND_LBRACK] = ACTIONS(2779), + [anon_sym_if] = ACTIONS(2779), + [anon_sym_DOLLARif] = ACTIONS(2779), + [anon_sym_is] = ACTIONS(2779), + [anon_sym_BANGis] = ACTIONS(2779), + [anon_sym_in] = ACTIONS(2779), + [anon_sym_BANGin] = ACTIONS(2779), + [anon_sym_match] = ACTIONS(2779), + [anon_sym_select] = ACTIONS(2779), + [anon_sym_lock] = ACTIONS(2779), + [anon_sym_rlock] = ACTIONS(2779), + [anon_sym_unsafe] = ACTIONS(2779), + [anon_sym_sql] = ACTIONS(2779), + [sym_int_literal] = ACTIONS(2779), + [sym_float_literal] = ACTIONS(2779), + [sym_rune_literal] = ACTIONS(2779), + [anon_sym_SQUOTE] = ACTIONS(2779), + [anon_sym_DQUOTE] = ACTIONS(2779), + [anon_sym_c_SQUOTE] = ACTIONS(2779), + [anon_sym_c_DQUOTE] = ACTIONS(2779), + [anon_sym_r_SQUOTE] = ACTIONS(2779), + [anon_sym_r_DQUOTE] = ACTIONS(2779), + [sym_pseudo_compile_time_identifier] = ACTIONS(2779), + [anon_sym_shared] = ACTIONS(2779), + [anon_sym_map_LBRACK] = ACTIONS(2779), + [anon_sym_chan] = ACTIONS(2779), + [anon_sym_thread] = ACTIONS(2779), + [anon_sym_atomic] = ACTIONS(2779), + }, + [1198] = { + [sym_line_comment] = STATE(1198), + [sym_block_comment] = STATE(1198), + [sym_identifier] = ACTIONS(2989), + [anon_sym_LF] = ACTIONS(2989), + [anon_sym_CR] = ACTIONS(2989), + [anon_sym_CR_LF] = ACTIONS(2989), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2989), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_as] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_COMMA] = ACTIONS(2989), + [anon_sym_RBRACE] = ACTIONS(2989), + [anon_sym_LPAREN] = ACTIONS(2989), + [anon_sym_RPAREN] = ACTIONS(2989), + [anon_sym_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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2989), + [anon_sym_DQUOTE] = ACTIONS(2989), + [anon_sym_c_SQUOTE] = ACTIONS(2989), + [anon_sym_c_DQUOTE] = ACTIONS(2989), + [anon_sym_r_SQUOTE] = ACTIONS(2989), + [anon_sym_r_DQUOTE] = 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), + }, + [1199] = { + [sym_line_comment] = STATE(1199), + [sym_block_comment] = STATE(1199), + [sym_identifier] = ACTIONS(3046), + [anon_sym_LF] = ACTIONS(3046), + [anon_sym_CR] = ACTIONS(3046), + [anon_sym_CR_LF] = ACTIONS(3046), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_DOT] = ACTIONS(3046), + [anon_sym_as] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(3046), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_RPAREN] = ACTIONS(3046), + [anon_sym_fn] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_SLASH] = ACTIONS(3046), + [anon_sym_PERCENT] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(3046), + [anon_sym_GT] = ACTIONS(3046), + [anon_sym_EQ_EQ] = ACTIONS(3046), + [anon_sym_BANG_EQ] = ACTIONS(3046), + [anon_sym_LT_EQ] = ACTIONS(3046), + [anon_sym_GT_EQ] = ACTIONS(3046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_struct] = ACTIONS(3046), + [anon_sym_mut] = ACTIONS(3046), + [anon_sym_PLUS_PLUS] = ACTIONS(3046), + [anon_sym_DASH_DASH] = ACTIONS(3046), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_go] = ACTIONS(3046), + [anon_sym_spawn] = ACTIONS(3046), + [anon_sym_json_DOTdecode] = ACTIONS(3046), + [anon_sym_PIPE] = ACTIONS(3046), + [anon_sym_LBRACK2] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_CARET] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_LT_DASH] = ACTIONS(3046), + [anon_sym_LT_LT] = ACTIONS(3046), + [anon_sym_GT_GT] = ACTIONS(3046), + [anon_sym_GT_GT_GT] = ACTIONS(3046), + [anon_sym_AMP_CARET] = ACTIONS(3046), + [anon_sym_AMP_AMP] = ACTIONS(3046), + [anon_sym_PIPE_PIPE] = ACTIONS(3046), + [anon_sym_or] = ACTIONS(3046), + [sym_none] = ACTIONS(3046), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_nil] = ACTIONS(3046), + [anon_sym_QMARK_DOT] = ACTIONS(3046), + [anon_sym_POUND_LBRACK] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_DOLLARif] = ACTIONS(3046), + [anon_sym_is] = ACTIONS(3046), + [anon_sym_BANGis] = ACTIONS(3046), + [anon_sym_in] = ACTIONS(3046), + [anon_sym_BANGin] = ACTIONS(3046), + [anon_sym_match] = ACTIONS(3046), + [anon_sym_select] = ACTIONS(3046), + [anon_sym_lock] = ACTIONS(3046), + [anon_sym_rlock] = ACTIONS(3046), + [anon_sym_unsafe] = ACTIONS(3046), + [anon_sym_sql] = ACTIONS(3046), + [sym_int_literal] = ACTIONS(3046), + [sym_float_literal] = ACTIONS(3046), + [sym_rune_literal] = ACTIONS(3046), + [anon_sym_SQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_c_SQUOTE] = ACTIONS(3046), + [anon_sym_c_DQUOTE] = ACTIONS(3046), + [anon_sym_r_SQUOTE] = ACTIONS(3046), + [anon_sym_r_DQUOTE] = ACTIONS(3046), + [sym_pseudo_compile_time_identifier] = ACTIONS(3046), + [anon_sym_shared] = ACTIONS(3046), + [anon_sym_map_LBRACK] = ACTIONS(3046), + [anon_sym_chan] = ACTIONS(3046), + [anon_sym_thread] = ACTIONS(3046), + [anon_sym_atomic] = ACTIONS(3046), + }, + [1200] = { + [sym_line_comment] = STATE(1200), + [sym_block_comment] = STATE(1200), + [sym_identifier] = ACTIONS(2715), + [anon_sym_LF] = ACTIONS(2715), + [anon_sym_CR] = ACTIONS(2715), + [anon_sym_CR_LF] = ACTIONS(2715), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [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_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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2715), + [anon_sym_c_SQUOTE] = ACTIONS(2715), + [anon_sym_c_DQUOTE] = ACTIONS(2715), + [anon_sym_r_SQUOTE] = ACTIONS(2715), + [anon_sym_r_DQUOTE] = 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), + }, + [1201] = { + [sym_line_comment] = STATE(1201), + [sym_block_comment] = STATE(1201), + [sym_identifier] = ACTIONS(3018), + [anon_sym_LF] = ACTIONS(3018), + [anon_sym_CR] = ACTIONS(3018), + [anon_sym_CR_LF] = ACTIONS(3018), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3018), + [anon_sym_DOT] = ACTIONS(3018), + [anon_sym_as] = ACTIONS(3018), + [anon_sym_LBRACE] = ACTIONS(3018), + [anon_sym_COMMA] = ACTIONS(3018), + [anon_sym_RBRACE] = ACTIONS(3018), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_RPAREN] = ACTIONS(3018), + [anon_sym_fn] = ACTIONS(3018), + [anon_sym_PLUS] = ACTIONS(3018), + [anon_sym_DASH] = ACTIONS(3018), + [anon_sym_STAR] = ACTIONS(3018), + [anon_sym_SLASH] = ACTIONS(3018), + [anon_sym_PERCENT] = ACTIONS(3018), + [anon_sym_LT] = ACTIONS(3018), + [anon_sym_GT] = ACTIONS(3018), + [anon_sym_EQ_EQ] = ACTIONS(3018), + [anon_sym_BANG_EQ] = ACTIONS(3018), + [anon_sym_LT_EQ] = ACTIONS(3018), + [anon_sym_GT_EQ] = ACTIONS(3018), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3016), + [anon_sym_struct] = ACTIONS(3018), + [anon_sym_mut] = ACTIONS(3018), + [anon_sym_PLUS_PLUS] = ACTIONS(3018), + [anon_sym_DASH_DASH] = ACTIONS(3018), + [anon_sym_QMARK] = ACTIONS(3018), + [anon_sym_BANG] = ACTIONS(3018), + [anon_sym_go] = ACTIONS(3018), + [anon_sym_spawn] = ACTIONS(3018), + [anon_sym_json_DOTdecode] = ACTIONS(3018), + [anon_sym_PIPE] = ACTIONS(3018), + [anon_sym_LBRACK2] = ACTIONS(3018), + [anon_sym_TILDE] = ACTIONS(3018), + [anon_sym_CARET] = ACTIONS(3018), + [anon_sym_AMP] = ACTIONS(3018), + [anon_sym_LT_DASH] = ACTIONS(3018), + [anon_sym_LT_LT] = ACTIONS(3018), + [anon_sym_GT_GT] = ACTIONS(3018), + [anon_sym_GT_GT_GT] = ACTIONS(3018), + [anon_sym_AMP_CARET] = ACTIONS(3018), + [anon_sym_AMP_AMP] = ACTIONS(3018), + [anon_sym_PIPE_PIPE] = ACTIONS(3018), + [anon_sym_or] = ACTIONS(3018), + [sym_none] = ACTIONS(3018), + [sym_true] = ACTIONS(3018), + [sym_false] = ACTIONS(3018), + [sym_nil] = ACTIONS(3018), + [anon_sym_QMARK_DOT] = ACTIONS(3018), + [anon_sym_POUND_LBRACK] = ACTIONS(3018), + [anon_sym_if] = ACTIONS(3018), + [anon_sym_DOLLARif] = ACTIONS(3018), + [anon_sym_is] = ACTIONS(3018), + [anon_sym_BANGis] = ACTIONS(3018), + [anon_sym_in] = ACTIONS(3018), + [anon_sym_BANGin] = ACTIONS(3018), + [anon_sym_match] = ACTIONS(3018), + [anon_sym_select] = ACTIONS(3018), + [anon_sym_lock] = ACTIONS(3018), + [anon_sym_rlock] = ACTIONS(3018), + [anon_sym_unsafe] = ACTIONS(3018), + [anon_sym_sql] = ACTIONS(3018), + [sym_int_literal] = ACTIONS(3018), + [sym_float_literal] = ACTIONS(3018), + [sym_rune_literal] = ACTIONS(3018), + [anon_sym_SQUOTE] = ACTIONS(3018), + [anon_sym_DQUOTE] = ACTIONS(3018), + [anon_sym_c_SQUOTE] = ACTIONS(3018), + [anon_sym_c_DQUOTE] = ACTIONS(3018), + [anon_sym_r_SQUOTE] = ACTIONS(3018), + [anon_sym_r_DQUOTE] = ACTIONS(3018), + [sym_pseudo_compile_time_identifier] = ACTIONS(3018), + [anon_sym_shared] = ACTIONS(3018), + [anon_sym_map_LBRACK] = ACTIONS(3018), + [anon_sym_chan] = ACTIONS(3018), + [anon_sym_thread] = ACTIONS(3018), + [anon_sym_atomic] = ACTIONS(3018), + }, + [1202] = { + [sym_line_comment] = STATE(1202), + [sym_block_comment] = STATE(1202), + [sym_reference_expression] = STATE(4457), + [sym_type_reference_expression] = STATE(1940), + [sym_plain_type] = STATE(1979), + [sym__plain_type_without_special] = STATE(1986), + [sym_anon_struct_type] = STATE(1985), + [sym_multi_return_type] = STATE(1986), + [sym_result_type] = STATE(1986), + [sym_option_type] = STATE(1986), + [sym_qualified_type] = STATE(1940), + [sym_fixed_array_type] = STATE(1985), + [sym_array_type] = STATE(1985), + [sym_pointer_type] = STATE(1985), + [sym_wrong_pointer_type] = STATE(1985), + [sym_map_type] = STATE(1985), + [sym_channel_type] = STATE(1985), + [sym_shared_type] = STATE(1985), + [sym_thread_type] = STATE(1985), + [sym_atomic_type] = STATE(1985), + [sym_generic_type] = STATE(1985), + [sym_function_type] = STATE(1985), + [sym_identifier] = ACTIONS(3825), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_as] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(3827), + [anon_sym_EQ] = ACTIONS(567), + [anon_sym_fn] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_STAR] = ACTIONS(3831), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(3833), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(3835), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_LBRACK2] = ACTIONS(3839), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(3841), + [anon_sym_LT_LT] = ACTIONS(567), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_GT_GT_GT] = ACTIONS(567), + [anon_sym_AMP_CARET] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_or] = ACTIONS(567), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_is] = ACTIONS(567), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(567), + [anon_sym_BANGin] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_AMP_CARET_EQ] = ACTIONS(563), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(563), + [anon_sym_shared] = ACTIONS(3843), + [anon_sym_map_LBRACK] = ACTIONS(3845), + [anon_sym_chan] = ACTIONS(3847), + [anon_sym_thread] = ACTIONS(3849), + [anon_sym_atomic] = ACTIONS(3851), + }, + [1203] = { + [sym_line_comment] = STATE(1203), + [sym_block_comment] = STATE(1203), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LF] = ACTIONS(3054), + [anon_sym_CR] = ACTIONS(3054), + [anon_sym_CR_LF] = ACTIONS(3054), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3054), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_as] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_COMMA] = ACTIONS(3054), + [anon_sym_RBRACE] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_RPAREN] = ACTIONS(3054), + [anon_sym_fn] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(3054), + [anon_sym_SLASH] = ACTIONS(3054), + [anon_sym_PERCENT] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3054), + [anon_sym_EQ_EQ] = ACTIONS(3054), + [anon_sym_BANG_EQ] = ACTIONS(3054), + [anon_sym_LT_EQ] = ACTIONS(3054), + [anon_sym_GT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_struct] = ACTIONS(3054), + [anon_sym_mut] = ACTIONS(3054), + [anon_sym_PLUS_PLUS] = ACTIONS(3054), + [anon_sym_DASH_DASH] = ACTIONS(3054), + [anon_sym_QMARK] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(3054), + [anon_sym_go] = ACTIONS(3054), + [anon_sym_spawn] = ACTIONS(3054), + [anon_sym_json_DOTdecode] = ACTIONS(3054), + [anon_sym_PIPE] = ACTIONS(3054), + [anon_sym_LBRACK2] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3054), + [anon_sym_CARET] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT_DASH] = ACTIONS(3054), + [anon_sym_LT_LT] = ACTIONS(3054), + [anon_sym_GT_GT] = ACTIONS(3054), + [anon_sym_GT_GT_GT] = ACTIONS(3054), + [anon_sym_AMP_CARET] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_PIPE_PIPE] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3054), + [sym_none] = ACTIONS(3054), + [sym_true] = ACTIONS(3054), + [sym_false] = ACTIONS(3054), + [sym_nil] = ACTIONS(3054), + [anon_sym_QMARK_DOT] = ACTIONS(3054), + [anon_sym_POUND_LBRACK] = ACTIONS(3054), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_DOLLARif] = ACTIONS(3054), + [anon_sym_is] = ACTIONS(3054), + [anon_sym_BANGis] = ACTIONS(3054), + [anon_sym_in] = ACTIONS(3054), + [anon_sym_BANGin] = ACTIONS(3054), + [anon_sym_match] = ACTIONS(3054), + [anon_sym_select] = ACTIONS(3054), + [anon_sym_lock] = ACTIONS(3054), + [anon_sym_rlock] = ACTIONS(3054), + [anon_sym_unsafe] = ACTIONS(3054), + [anon_sym_sql] = ACTIONS(3054), + [sym_int_literal] = ACTIONS(3054), + [sym_float_literal] = ACTIONS(3054), + [sym_rune_literal] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_c_SQUOTE] = ACTIONS(3054), + [anon_sym_c_DQUOTE] = ACTIONS(3054), + [anon_sym_r_SQUOTE] = ACTIONS(3054), + [anon_sym_r_DQUOTE] = ACTIONS(3054), + [sym_pseudo_compile_time_identifier] = ACTIONS(3054), + [anon_sym_shared] = ACTIONS(3054), + [anon_sym_map_LBRACK] = ACTIONS(3054), + [anon_sym_chan] = ACTIONS(3054), + [anon_sym_thread] = ACTIONS(3054), + [anon_sym_atomic] = ACTIONS(3054), + }, + [1204] = { + [sym_line_comment] = STATE(1204), + [sym_block_comment] = STATE(1204), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LF] = ACTIONS(3050), + [anon_sym_CR] = ACTIONS(3050), + [anon_sym_CR_LF] = ACTIONS(3050), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(3050), + [anon_sym_as] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_RPAREN] = ACTIONS(3050), + [anon_sym_fn] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_SLASH] = ACTIONS(3050), + [anon_sym_PERCENT] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_LT_EQ] = ACTIONS(3050), + [anon_sym_GT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3050), + [anon_sym_mut] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_go] = ACTIONS(3050), + [anon_sym_spawn] = ACTIONS(3050), + [anon_sym_json_DOTdecode] = ACTIONS(3050), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_LBRACK2] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_CARET] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_LT_DASH] = ACTIONS(3050), + [anon_sym_LT_LT] = ACTIONS(3050), + [anon_sym_GT_GT] = ACTIONS(3050), + [anon_sym_GT_GT_GT] = ACTIONS(3050), + [anon_sym_AMP_CARET] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_PIPE_PIPE] = ACTIONS(3050), + [anon_sym_or] = ACTIONS(3050), + [sym_none] = ACTIONS(3050), + [sym_true] = ACTIONS(3050), + [sym_false] = ACTIONS(3050), + [sym_nil] = ACTIONS(3050), + [anon_sym_QMARK_DOT] = ACTIONS(3050), + [anon_sym_POUND_LBRACK] = ACTIONS(3050), + [anon_sym_if] = ACTIONS(3050), + [anon_sym_DOLLARif] = ACTIONS(3050), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3050), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_BANGin] = ACTIONS(3050), + [anon_sym_match] = ACTIONS(3050), + [anon_sym_select] = ACTIONS(3050), + [anon_sym_lock] = ACTIONS(3050), + [anon_sym_rlock] = ACTIONS(3050), + [anon_sym_unsafe] = ACTIONS(3050), + [anon_sym_sql] = ACTIONS(3050), + [sym_int_literal] = ACTIONS(3050), + [sym_float_literal] = ACTIONS(3050), + [sym_rune_literal] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [anon_sym_c_SQUOTE] = ACTIONS(3050), + [anon_sym_c_DQUOTE] = ACTIONS(3050), + [anon_sym_r_SQUOTE] = ACTIONS(3050), + [anon_sym_r_DQUOTE] = ACTIONS(3050), + [sym_pseudo_compile_time_identifier] = ACTIONS(3050), + [anon_sym_shared] = ACTIONS(3050), + [anon_sym_map_LBRACK] = ACTIONS(3050), + [anon_sym_chan] = ACTIONS(3050), + [anon_sym_thread] = ACTIONS(3050), + [anon_sym_atomic] = ACTIONS(3050), }, - [1194] = { - [sym_line_comment] = STATE(1194), - [sym_block_comment] = STATE(1194), - [sym_identifier] = ACTIONS(2729), - [anon_sym_LF] = ACTIONS(2729), - [anon_sym_CR] = ACTIONS(2729), - [anon_sym_CR_LF] = ACTIONS(2729), + [1205] = { + [sym_line_comment] = STATE(1205), + [sym_block_comment] = STATE(1205), + [sym_identifier] = ACTIONS(2469), + [anon_sym_LF] = ACTIONS(2469), + [anon_sym_CR] = ACTIONS(2469), + [anon_sym_CR_LF] = ACTIONS(2469), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2729), - [anon_sym_DOT] = ACTIONS(2729), - [anon_sym_as] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_COMMA] = ACTIONS(2729), - [anon_sym_RBRACE] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_RPAREN] = ACTIONS(2729), - [anon_sym_PIPE] = ACTIONS(2729), - [anon_sym_fn] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_SLASH] = ACTIONS(2729), - [anon_sym_PERCENT] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2729), - [anon_sym_GT] = ACTIONS(2729), - [anon_sym_EQ_EQ] = ACTIONS(2729), - [anon_sym_BANG_EQ] = ACTIONS(2729), - [anon_sym_LT_EQ] = ACTIONS(2729), - [anon_sym_GT_EQ] = ACTIONS(2729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_struct] = ACTIONS(2729), - [anon_sym_mut] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2729), - [anon_sym_DASH_DASH] = ACTIONS(2729), - [anon_sym_QMARK] = ACTIONS(2729), - [anon_sym_BANG] = ACTIONS(2729), - [anon_sym_go] = ACTIONS(2729), - [anon_sym_spawn] = ACTIONS(2729), - [anon_sym_json_DOTdecode] = ACTIONS(2729), - [anon_sym_LBRACK2] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2729), - [anon_sym_CARET] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_LT_DASH] = ACTIONS(2729), - [anon_sym_LT_LT] = ACTIONS(2729), - [anon_sym_GT_GT] = ACTIONS(2729), - [anon_sym_GT_GT_GT] = ACTIONS(2729), - [anon_sym_AMP_CARET] = ACTIONS(2729), - [anon_sym_AMP_AMP] = ACTIONS(2729), - [anon_sym_PIPE_PIPE] = ACTIONS(2729), - [anon_sym_or] = ACTIONS(2729), - [sym_none] = ACTIONS(2729), - [sym_true] = ACTIONS(2729), - [sym_false] = ACTIONS(2729), - [sym_nil] = ACTIONS(2729), - [anon_sym_QMARK_DOT] = ACTIONS(2729), - [anon_sym_POUND_LBRACK] = ACTIONS(2729), - [anon_sym_if] = ACTIONS(2729), - [anon_sym_DOLLARif] = ACTIONS(2729), - [anon_sym_is] = ACTIONS(2729), - [anon_sym_BANGis] = ACTIONS(2729), - [anon_sym_in] = ACTIONS(2729), - [anon_sym_BANGin] = ACTIONS(2729), - [anon_sym_match] = ACTIONS(2729), - [anon_sym_select] = ACTIONS(2729), - [anon_sym_lock] = ACTIONS(2729), - [anon_sym_rlock] = ACTIONS(2729), - [anon_sym_unsafe] = ACTIONS(2729), - [anon_sym_sql] = ACTIONS(2729), - [sym_int_literal] = ACTIONS(2729), - [sym_float_literal] = ACTIONS(2729), - [sym_rune_literal] = ACTIONS(2729), - [anon_sym_SQUOTE] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2729), - [anon_sym_c_SQUOTE] = ACTIONS(2729), - [anon_sym_c_DQUOTE] = ACTIONS(2729), - [anon_sym_r_SQUOTE] = ACTIONS(2729), - [anon_sym_r_DQUOTE] = ACTIONS(2729), - [sym_pseudo_compile_time_identifier] = ACTIONS(2729), - [anon_sym_shared] = ACTIONS(2729), - [anon_sym_map_LBRACK] = ACTIONS(2729), - [anon_sym_chan] = ACTIONS(2729), - [anon_sym_thread] = ACTIONS(2729), - [anon_sym_atomic] = ACTIONS(2729), + [anon_sym_SEMI] = ACTIONS(2469), + [anon_sym_DOT] = ACTIONS(2469), + [anon_sym_as] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2469), + [anon_sym_COMMA] = ACTIONS(2469), + [anon_sym_RBRACE] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2469), + [anon_sym_RPAREN] = ACTIONS(2469), + [anon_sym_fn] = ACTIONS(2469), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_STAR] = ACTIONS(2469), + [anon_sym_SLASH] = ACTIONS(2469), + [anon_sym_PERCENT] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2469), + [anon_sym_GT] = ACTIONS(2469), + [anon_sym_EQ_EQ] = ACTIONS(2469), + [anon_sym_BANG_EQ] = ACTIONS(2469), + [anon_sym_LT_EQ] = ACTIONS(2469), + [anon_sym_GT_EQ] = ACTIONS(2469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2469), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_struct] = ACTIONS(2469), + [anon_sym_mut] = ACTIONS(2469), + [anon_sym_PLUS_PLUS] = ACTIONS(2469), + [anon_sym_DASH_DASH] = ACTIONS(2469), + [anon_sym_QMARK] = ACTIONS(2469), + [anon_sym_BANG] = ACTIONS(2469), + [anon_sym_go] = ACTIONS(2469), + [anon_sym_spawn] = ACTIONS(2469), + [anon_sym_json_DOTdecode] = ACTIONS(2469), + [anon_sym_PIPE] = ACTIONS(2469), + [anon_sym_LBRACK2] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_CARET] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_LT_DASH] = ACTIONS(2469), + [anon_sym_LT_LT] = ACTIONS(2469), + [anon_sym_GT_GT] = ACTIONS(2469), + [anon_sym_GT_GT_GT] = ACTIONS(2469), + [anon_sym_AMP_CARET] = ACTIONS(2469), + [anon_sym_AMP_AMP] = ACTIONS(2469), + [anon_sym_PIPE_PIPE] = ACTIONS(2469), + [anon_sym_or] = ACTIONS(2469), + [sym_none] = ACTIONS(2469), + [sym_true] = ACTIONS(2469), + [sym_false] = ACTIONS(2469), + [sym_nil] = ACTIONS(2469), + [anon_sym_QMARK_DOT] = ACTIONS(2469), + [anon_sym_POUND_LBRACK] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_DOLLARif] = ACTIONS(2469), + [anon_sym_is] = ACTIONS(2469), + [anon_sym_BANGis] = ACTIONS(2469), + [anon_sym_in] = ACTIONS(2469), + [anon_sym_BANGin] = ACTIONS(2469), + [anon_sym_match] = ACTIONS(2469), + [anon_sym_select] = ACTIONS(2469), + [anon_sym_lock] = ACTIONS(2469), + [anon_sym_rlock] = ACTIONS(2469), + [anon_sym_unsafe] = ACTIONS(2469), + [anon_sym_sql] = ACTIONS(2469), + [sym_int_literal] = ACTIONS(2469), + [sym_float_literal] = ACTIONS(2469), + [sym_rune_literal] = ACTIONS(2469), + [anon_sym_SQUOTE] = ACTIONS(2469), + [anon_sym_DQUOTE] = ACTIONS(2469), + [anon_sym_c_SQUOTE] = ACTIONS(2469), + [anon_sym_c_DQUOTE] = ACTIONS(2469), + [anon_sym_r_SQUOTE] = ACTIONS(2469), + [anon_sym_r_DQUOTE] = ACTIONS(2469), + [sym_pseudo_compile_time_identifier] = ACTIONS(2469), + [anon_sym_shared] = ACTIONS(2469), + [anon_sym_map_LBRACK] = ACTIONS(2469), + [anon_sym_chan] = ACTIONS(2469), + [anon_sym_thread] = ACTIONS(2469), + [anon_sym_atomic] = ACTIONS(2469), }, - [1195] = { - [sym_line_comment] = STATE(1195), - [sym_block_comment] = STATE(1195), - [sym_identifier] = ACTIONS(2725), - [anon_sym_LF] = ACTIONS(2725), - [anon_sym_CR] = ACTIONS(2725), - [anon_sym_CR_LF] = ACTIONS(2725), + [1206] = { + [sym_line_comment] = STATE(1206), + [sym_block_comment] = STATE(1206), + [sym_identifier] = ACTIONS(2709), + [anon_sym_LF] = ACTIONS(2709), + [anon_sym_CR] = ACTIONS(2709), + [anon_sym_CR_LF] = ACTIONS(2709), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2725), - [anon_sym_DOT] = ACTIONS(2725), - [anon_sym_as] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_COMMA] = ACTIONS(2725), - [anon_sym_RBRACE] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(2725), - [anon_sym_RPAREN] = ACTIONS(2725), - [anon_sym_PIPE] = ACTIONS(2725), - [anon_sym_fn] = ACTIONS(2725), - [anon_sym_PLUS] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2725), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_SLASH] = ACTIONS(2725), - [anon_sym_PERCENT] = ACTIONS(2725), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_GT] = ACTIONS(2725), - [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_DOT_DOT_DOT] = ACTIONS(2725), - [anon_sym_LBRACK] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_mut] = ACTIONS(2725), - [anon_sym_PLUS_PLUS] = ACTIONS(2725), - [anon_sym_DASH_DASH] = ACTIONS(2725), - [anon_sym_QMARK] = ACTIONS(2725), - [anon_sym_BANG] = ACTIONS(2725), - [anon_sym_go] = ACTIONS(2725), - [anon_sym_spawn] = ACTIONS(2725), - [anon_sym_json_DOTdecode] = ACTIONS(2725), - [anon_sym_LBRACK2] = ACTIONS(2725), - [anon_sym_TILDE] = ACTIONS(2725), - [anon_sym_CARET] = ACTIONS(2725), - [anon_sym_AMP] = ACTIONS(2725), - [anon_sym_LT_DASH] = ACTIONS(2725), - [anon_sym_LT_LT] = ACTIONS(2725), - [anon_sym_GT_GT] = ACTIONS(2725), - [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(2725), - [sym_none] = ACTIONS(2725), - [sym_true] = ACTIONS(2725), - [sym_false] = ACTIONS(2725), - [sym_nil] = ACTIONS(2725), - [anon_sym_QMARK_DOT] = ACTIONS(2725), - [anon_sym_POUND_LBRACK] = ACTIONS(2725), - [anon_sym_if] = ACTIONS(2725), - [anon_sym_DOLLARif] = ACTIONS(2725), - [anon_sym_is] = ACTIONS(2725), - [anon_sym_BANGis] = ACTIONS(2725), - [anon_sym_in] = ACTIONS(2725), - [anon_sym_BANGin] = ACTIONS(2725), - [anon_sym_match] = ACTIONS(2725), - [anon_sym_select] = ACTIONS(2725), - [anon_sym_lock] = ACTIONS(2725), - [anon_sym_rlock] = ACTIONS(2725), - [anon_sym_unsafe] = ACTIONS(2725), - [anon_sym_sql] = ACTIONS(2725), - [sym_int_literal] = ACTIONS(2725), - [sym_float_literal] = ACTIONS(2725), - [sym_rune_literal] = ACTIONS(2725), - [anon_sym_SQUOTE] = ACTIONS(2725), - [anon_sym_DQUOTE] = ACTIONS(2725), - [anon_sym_c_SQUOTE] = ACTIONS(2725), - [anon_sym_c_DQUOTE] = ACTIONS(2725), - [anon_sym_r_SQUOTE] = ACTIONS(2725), - [anon_sym_r_DQUOTE] = ACTIONS(2725), - [sym_pseudo_compile_time_identifier] = ACTIONS(2725), - [anon_sym_shared] = ACTIONS(2725), - [anon_sym_map_LBRACK] = ACTIONS(2725), - [anon_sym_chan] = ACTIONS(2725), - [anon_sym_thread] = ACTIONS(2725), - [anon_sym_atomic] = ACTIONS(2725), + [anon_sym_SEMI] = ACTIONS(2709), + [anon_sym_DOT] = ACTIONS(2709), + [anon_sym_as] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2709), + [anon_sym_COMMA] = ACTIONS(2709), + [anon_sym_RBRACE] = ACTIONS(2709), + [anon_sym_LPAREN] = ACTIONS(2709), + [anon_sym_RPAREN] = ACTIONS(2709), + [anon_sym_fn] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2709), + [anon_sym_SLASH] = ACTIONS(2709), + [anon_sym_PERCENT] = ACTIONS(2709), + [anon_sym_LT] = ACTIONS(2709), + [anon_sym_GT] = ACTIONS(2709), + [anon_sym_EQ_EQ] = ACTIONS(2709), + [anon_sym_BANG_EQ] = ACTIONS(2709), + [anon_sym_LT_EQ] = ACTIONS(2709), + [anon_sym_GT_EQ] = ACTIONS(2709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2707), + [anon_sym_struct] = ACTIONS(2709), + [anon_sym_mut] = ACTIONS(2709), + [anon_sym_PLUS_PLUS] = ACTIONS(2709), + [anon_sym_DASH_DASH] = ACTIONS(2709), + [anon_sym_QMARK] = ACTIONS(2709), + [anon_sym_BANG] = ACTIONS(2709), + [anon_sym_go] = ACTIONS(2709), + [anon_sym_spawn] = ACTIONS(2709), + [anon_sym_json_DOTdecode] = ACTIONS(2709), + [anon_sym_PIPE] = ACTIONS(2709), + [anon_sym_LBRACK2] = ACTIONS(2709), + [anon_sym_TILDE] = ACTIONS(2709), + [anon_sym_CARET] = ACTIONS(2709), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_LT_DASH] = ACTIONS(2709), + [anon_sym_LT_LT] = ACTIONS(2709), + [anon_sym_GT_GT] = ACTIONS(2709), + [anon_sym_GT_GT_GT] = ACTIONS(2709), + [anon_sym_AMP_CARET] = ACTIONS(2709), + [anon_sym_AMP_AMP] = ACTIONS(2709), + [anon_sym_PIPE_PIPE] = ACTIONS(2709), + [anon_sym_or] = ACTIONS(2709), + [sym_none] = ACTIONS(2709), + [sym_true] = ACTIONS(2709), + [sym_false] = ACTIONS(2709), + [sym_nil] = ACTIONS(2709), + [anon_sym_QMARK_DOT] = ACTIONS(2709), + [anon_sym_POUND_LBRACK] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_DOLLARif] = ACTIONS(2709), + [anon_sym_is] = ACTIONS(2709), + [anon_sym_BANGis] = ACTIONS(2709), + [anon_sym_in] = ACTIONS(2709), + [anon_sym_BANGin] = ACTIONS(2709), + [anon_sym_match] = ACTIONS(2709), + [anon_sym_select] = ACTIONS(2709), + [anon_sym_lock] = ACTIONS(2709), + [anon_sym_rlock] = ACTIONS(2709), + [anon_sym_unsafe] = ACTIONS(2709), + [anon_sym_sql] = ACTIONS(2709), + [sym_int_literal] = ACTIONS(2709), + [sym_float_literal] = ACTIONS(2709), + [sym_rune_literal] = ACTIONS(2709), + [anon_sym_SQUOTE] = ACTIONS(2709), + [anon_sym_DQUOTE] = ACTIONS(2709), + [anon_sym_c_SQUOTE] = ACTIONS(2709), + [anon_sym_c_DQUOTE] = ACTIONS(2709), + [anon_sym_r_SQUOTE] = ACTIONS(2709), + [anon_sym_r_DQUOTE] = ACTIONS(2709), + [sym_pseudo_compile_time_identifier] = ACTIONS(2709), + [anon_sym_shared] = ACTIONS(2709), + [anon_sym_map_LBRACK] = ACTIONS(2709), + [anon_sym_chan] = ACTIONS(2709), + [anon_sym_thread] = ACTIONS(2709), + [anon_sym_atomic] = ACTIONS(2709), }, - [1196] = { - [sym_line_comment] = STATE(1196), - [sym_block_comment] = STATE(1196), + [1207] = { + [sym_line_comment] = STATE(1207), + [sym_block_comment] = STATE(1207), [sym_identifier] = ACTIONS(2741), [anon_sym_LF] = ACTIONS(2741), [anon_sym_CR] = ACTIONS(2741), @@ -155980,7 +157287,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(2741), [anon_sym_LPAREN] = ACTIONS(2741), [anon_sym_RPAREN] = ACTIONS(2741), - [anon_sym_PIPE] = ACTIONS(2741), [anon_sym_fn] = ACTIONS(2741), [anon_sym_PLUS] = ACTIONS(2741), [anon_sym_DASH] = ACTIONS(2741), @@ -156004,6 +157310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(2741), [anon_sym_spawn] = ACTIONS(2741), [anon_sym_json_DOTdecode] = ACTIONS(2741), + [anon_sym_PIPE] = ACTIONS(2741), [anon_sym_LBRACK2] = ACTIONS(2741), [anon_sym_TILDE] = ACTIONS(2741), [anon_sym_CARET] = ACTIONS(2741), @@ -156050,3315 +157357,792 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(2741), [anon_sym_atomic] = ACTIONS(2741), }, - [1197] = { - [sym_line_comment] = STATE(1197), - [sym_block_comment] = STATE(1197), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LF] = ACTIONS(2767), - [anon_sym_CR] = ACTIONS(2767), - [anon_sym_CR_LF] = ACTIONS(2767), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2767), - [anon_sym_DOT] = ACTIONS(2767), - [anon_sym_as] = ACTIONS(2767), - [anon_sym_LBRACE] = ACTIONS(2767), - [anon_sym_COMMA] = ACTIONS(2767), - [anon_sym_RBRACE] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2767), - [anon_sym_RPAREN] = ACTIONS(2767), - [anon_sym_PIPE] = ACTIONS(2767), - [anon_sym_fn] = ACTIONS(2767), - [anon_sym_PLUS] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2767), - [anon_sym_SLASH] = ACTIONS(2767), - [anon_sym_PERCENT] = ACTIONS(2767), - [anon_sym_LT] = ACTIONS(2767), - [anon_sym_GT] = ACTIONS(2767), - [anon_sym_EQ_EQ] = ACTIONS(2767), - [anon_sym_BANG_EQ] = ACTIONS(2767), - [anon_sym_LT_EQ] = ACTIONS(2767), - [anon_sym_GT_EQ] = ACTIONS(2767), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2765), - [anon_sym_struct] = ACTIONS(2767), - [anon_sym_mut] = ACTIONS(2767), - [anon_sym_PLUS_PLUS] = ACTIONS(2767), - [anon_sym_DASH_DASH] = ACTIONS(2767), - [anon_sym_QMARK] = ACTIONS(2767), - [anon_sym_BANG] = ACTIONS(2767), - [anon_sym_go] = ACTIONS(2767), - [anon_sym_spawn] = ACTIONS(2767), - [anon_sym_json_DOTdecode] = ACTIONS(2767), - [anon_sym_LBRACK2] = ACTIONS(2767), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_LT_DASH] = ACTIONS(2767), - [anon_sym_LT_LT] = ACTIONS(2767), - [anon_sym_GT_GT] = ACTIONS(2767), - [anon_sym_GT_GT_GT] = ACTIONS(2767), - [anon_sym_AMP_CARET] = ACTIONS(2767), - [anon_sym_AMP_AMP] = ACTIONS(2767), - [anon_sym_PIPE_PIPE] = ACTIONS(2767), - [anon_sym_or] = ACTIONS(2767), - [sym_none] = ACTIONS(2767), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [sym_nil] = ACTIONS(2767), - [anon_sym_QMARK_DOT] = ACTIONS(2767), - [anon_sym_POUND_LBRACK] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2767), - [anon_sym_DOLLARif] = ACTIONS(2767), - [anon_sym_is] = ACTIONS(2767), - [anon_sym_BANGis] = ACTIONS(2767), - [anon_sym_in] = ACTIONS(2767), - [anon_sym_BANGin] = ACTIONS(2767), - [anon_sym_match] = ACTIONS(2767), - [anon_sym_select] = ACTIONS(2767), - [anon_sym_lock] = ACTIONS(2767), - [anon_sym_rlock] = ACTIONS(2767), - [anon_sym_unsafe] = ACTIONS(2767), - [anon_sym_sql] = ACTIONS(2767), - [sym_int_literal] = ACTIONS(2767), - [sym_float_literal] = ACTIONS(2767), - [sym_rune_literal] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2767), - [anon_sym_DQUOTE] = ACTIONS(2767), - [anon_sym_c_SQUOTE] = ACTIONS(2767), - [anon_sym_c_DQUOTE] = ACTIONS(2767), - [anon_sym_r_SQUOTE] = ACTIONS(2767), - [anon_sym_r_DQUOTE] = ACTIONS(2767), - [sym_pseudo_compile_time_identifier] = ACTIONS(2767), - [anon_sym_shared] = ACTIONS(2767), - [anon_sym_map_LBRACK] = ACTIONS(2767), - [anon_sym_chan] = ACTIONS(2767), - [anon_sym_thread] = ACTIONS(2767), - [anon_sym_atomic] = ACTIONS(2767), - }, - [1198] = { - [sym_line_comment] = STATE(1198), - [sym_block_comment] = STATE(1198), - [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_SEMI] = ACTIONS(3781), - [anon_sym_DOT] = ACTIONS(3039), - [anon_sym_as] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_COMMA] = ACTIONS(3781), - [anon_sym_RBRACE] = ACTIONS(3778), - [anon_sym_LPAREN] = ACTIONS(2887), - [anon_sym_PIPE] = ACTIONS(2887), - [anon_sym_fn] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2887), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_EQ_EQ] = ACTIONS(2887), - [anon_sym_BANG_EQ] = ACTIONS(2887), - [anon_sym_LT_EQ] = ACTIONS(2887), - [anon_sym_GT_EQ] = ACTIONS(2887), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3784), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2887), - [anon_sym_mut] = ACTIONS(2887), - [anon_sym_COLON] = ACTIONS(3786), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [anon_sym_QMARK] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_go] = ACTIONS(2887), - [anon_sym_spawn] = ACTIONS(2887), - [anon_sym_json_DOTdecode] = ACTIONS(2887), - [anon_sym_LBRACK2] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_CARET] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2887), - [anon_sym_LT_LT] = ACTIONS(2887), - [anon_sym_GT_GT] = ACTIONS(2887), - [anon_sym_GT_GT_GT] = ACTIONS(2887), - [anon_sym_AMP_CARET] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_PIPE_PIPE] = ACTIONS(2887), - [anon_sym_or] = ACTIONS(2887), - [sym_none] = ACTIONS(2887), - [sym_true] = ACTIONS(2887), - [sym_false] = ACTIONS(2887), - [sym_nil] = ACTIONS(2887), - [anon_sym_QMARK_DOT] = ACTIONS(2887), - [anon_sym_POUND_LBRACK] = ACTIONS(2887), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_DOLLARif] = ACTIONS(2887), - [anon_sym_is] = ACTIONS(2887), - [anon_sym_BANGis] = ACTIONS(2887), - [anon_sym_in] = ACTIONS(2887), - [anon_sym_BANGin] = ACTIONS(2887), - [anon_sym_match] = ACTIONS(2887), - [anon_sym_select] = ACTIONS(2887), - [anon_sym_lock] = ACTIONS(2887), - [anon_sym_rlock] = ACTIONS(2887), - [anon_sym_unsafe] = ACTIONS(2887), - [anon_sym_sql] = ACTIONS(2887), - [sym_int_literal] = ACTIONS(2887), - [sym_float_literal] = ACTIONS(2887), - [sym_rune_literal] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [anon_sym_c_SQUOTE] = ACTIONS(2887), - [anon_sym_c_DQUOTE] = ACTIONS(2887), - [anon_sym_r_SQUOTE] = ACTIONS(2887), - [anon_sym_r_DQUOTE] = ACTIONS(2887), - [sym_pseudo_compile_time_identifier] = ACTIONS(2887), - [anon_sym_shared] = ACTIONS(2887), - [anon_sym_map_LBRACK] = ACTIONS(2887), - [anon_sym_chan] = ACTIONS(2887), - [anon_sym_thread] = ACTIONS(2887), - [anon_sym_atomic] = ACTIONS(2887), - }, - [1199] = { - [sym_line_comment] = STATE(1199), - [sym_block_comment] = STATE(1199), - [sym_identifier] = ACTIONS(2585), - [anon_sym_LF] = ACTIONS(2585), - [anon_sym_CR] = ACTIONS(2585), - [anon_sym_CR_LF] = ACTIONS(2585), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2585), - [anon_sym_DOT] = ACTIONS(2585), - [anon_sym_as] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_COMMA] = ACTIONS(2585), - [anon_sym_RBRACE] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2585), - [anon_sym_RPAREN] = ACTIONS(2585), - [anon_sym_PIPE] = ACTIONS(2585), - [anon_sym_fn] = ACTIONS(2585), - [anon_sym_PLUS] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_SLASH] = ACTIONS(2585), - [anon_sym_PERCENT] = ACTIONS(2585), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_GT] = ACTIONS(2585), - [anon_sym_EQ_EQ] = ACTIONS(2585), - [anon_sym_BANG_EQ] = ACTIONS(2585), - [anon_sym_LT_EQ] = ACTIONS(2585), - [anon_sym_GT_EQ] = ACTIONS(2585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2585), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_struct] = ACTIONS(2585), - [anon_sym_mut] = ACTIONS(2585), - [anon_sym_PLUS_PLUS] = ACTIONS(2585), - [anon_sym_DASH_DASH] = ACTIONS(2585), - [anon_sym_QMARK] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(3788), - [anon_sym_go] = ACTIONS(2585), - [anon_sym_spawn] = ACTIONS(2585), - [anon_sym_json_DOTdecode] = ACTIONS(2585), - [anon_sym_LBRACK2] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [anon_sym_CARET] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2585), - [anon_sym_LT_DASH] = ACTIONS(2585), - [anon_sym_LT_LT] = ACTIONS(2585), - [anon_sym_GT_GT] = ACTIONS(2585), - [anon_sym_GT_GT_GT] = ACTIONS(2585), - [anon_sym_AMP_CARET] = ACTIONS(2585), - [anon_sym_AMP_AMP] = ACTIONS(2585), - [anon_sym_PIPE_PIPE] = ACTIONS(2585), - [anon_sym_or] = ACTIONS(2585), - [sym_none] = ACTIONS(2585), - [sym_true] = ACTIONS(2585), - [sym_false] = ACTIONS(2585), - [sym_nil] = ACTIONS(2585), - [anon_sym_QMARK_DOT] = ACTIONS(2585), - [anon_sym_POUND_LBRACK] = ACTIONS(2585), - [anon_sym_if] = ACTIONS(2585), - [anon_sym_DOLLARif] = ACTIONS(2585), - [anon_sym_is] = ACTIONS(2585), - [anon_sym_BANGis] = ACTIONS(2585), - [anon_sym_in] = ACTIONS(2585), - [anon_sym_BANGin] = ACTIONS(2585), - [anon_sym_match] = ACTIONS(2585), - [anon_sym_select] = ACTIONS(2585), - [anon_sym_lock] = ACTIONS(2585), - [anon_sym_rlock] = ACTIONS(2585), - [anon_sym_unsafe] = ACTIONS(2585), - [anon_sym_sql] = ACTIONS(2585), - [sym_int_literal] = ACTIONS(2585), - [sym_float_literal] = ACTIONS(2585), - [sym_rune_literal] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2585), - [anon_sym_DQUOTE] = ACTIONS(2585), - [anon_sym_c_SQUOTE] = ACTIONS(2585), - [anon_sym_c_DQUOTE] = ACTIONS(2585), - [anon_sym_r_SQUOTE] = ACTIONS(2585), - [anon_sym_r_DQUOTE] = ACTIONS(2585), - [sym_pseudo_compile_time_identifier] = ACTIONS(2585), - [anon_sym_shared] = ACTIONS(2585), - [anon_sym_map_LBRACK] = ACTIONS(2585), - [anon_sym_chan] = ACTIONS(2585), - [anon_sym_thread] = ACTIONS(2585), - [anon_sym_atomic] = ACTIONS(2585), - }, - [1200] = { - [sym_line_comment] = STATE(1200), - [sym_block_comment] = STATE(1200), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2311), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(605), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(625), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_EQ] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(627), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(625), - [anon_sym_BANG_EQ] = ACTIONS(625), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_QMARK] = ACTIONS(627), - [anon_sym_BANG] = ACTIONS(627), - [anon_sym_LBRACK2] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = 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(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(623), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [1201] = { - [sym_line_comment] = STATE(1201), - [sym_block_comment] = STATE(1201), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(605), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(603), - [anon_sym_DOT] = ACTIONS(603), - [anon_sym_as] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(603), - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_EQ] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_LT_EQ] = ACTIONS(603), - [anon_sym_GT_EQ] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3790), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_GT_GT_GT] = ACTIONS(607), - [anon_sym_AMP_CARET] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(603), - [anon_sym_PIPE_PIPE] = ACTIONS(603), - [anon_sym_or] = ACTIONS(607), - [anon_sym_QMARK_DOT] = ACTIONS(603), - [anon_sym_POUND_LBRACK] = ACTIONS(603), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(603), - [anon_sym_in] = ACTIONS(607), - [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(623), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [1202] = { - [sym_line_comment] = STATE(1202), - [sym_block_comment] = STATE(1202), - [sym_identifier] = ACTIONS(2771), - [anon_sym_LF] = ACTIONS(2771), - [anon_sym_CR] = ACTIONS(2771), - [anon_sym_CR_LF] = ACTIONS(2771), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2771), - [anon_sym_DOT] = ACTIONS(2771), - [anon_sym_as] = ACTIONS(2771), - [anon_sym_LBRACE] = ACTIONS(2771), - [anon_sym_COMMA] = ACTIONS(2771), - [anon_sym_RBRACE] = ACTIONS(2771), - [anon_sym_LPAREN] = ACTIONS(2771), - [anon_sym_RPAREN] = ACTIONS(2771), - [anon_sym_PIPE] = ACTIONS(2771), - [anon_sym_fn] = ACTIONS(2771), - [anon_sym_PLUS] = ACTIONS(2771), - [anon_sym_DASH] = ACTIONS(2771), - [anon_sym_STAR] = ACTIONS(2771), - [anon_sym_SLASH] = ACTIONS(2771), - [anon_sym_PERCENT] = ACTIONS(2771), - [anon_sym_LT] = ACTIONS(2771), - [anon_sym_GT] = ACTIONS(2771), - [anon_sym_EQ_EQ] = ACTIONS(2771), - [anon_sym_BANG_EQ] = ACTIONS(2771), - [anon_sym_LT_EQ] = ACTIONS(2771), - [anon_sym_GT_EQ] = ACTIONS(2771), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2771), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(2771), - [anon_sym_mut] = ACTIONS(2771), - [anon_sym_PLUS_PLUS] = ACTIONS(2771), - [anon_sym_DASH_DASH] = ACTIONS(2771), - [anon_sym_QMARK] = ACTIONS(2771), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_go] = ACTIONS(2771), - [anon_sym_spawn] = ACTIONS(2771), - [anon_sym_json_DOTdecode] = ACTIONS(2771), - [anon_sym_LBRACK2] = ACTIONS(2771), - [anon_sym_TILDE] = ACTIONS(2771), - [anon_sym_CARET] = ACTIONS(2771), - [anon_sym_AMP] = ACTIONS(2771), - [anon_sym_LT_DASH] = ACTIONS(2771), - [anon_sym_LT_LT] = ACTIONS(2771), - [anon_sym_GT_GT] = ACTIONS(2771), - [anon_sym_GT_GT_GT] = ACTIONS(2771), - [anon_sym_AMP_CARET] = ACTIONS(2771), - [anon_sym_AMP_AMP] = ACTIONS(2771), - [anon_sym_PIPE_PIPE] = ACTIONS(2771), - [anon_sym_or] = ACTIONS(2771), - [sym_none] = ACTIONS(2771), - [sym_true] = ACTIONS(2771), - [sym_false] = ACTIONS(2771), - [sym_nil] = ACTIONS(2771), - [anon_sym_QMARK_DOT] = ACTIONS(2771), - [anon_sym_POUND_LBRACK] = ACTIONS(2771), - [anon_sym_if] = ACTIONS(2771), - [anon_sym_DOLLARif] = ACTIONS(2771), - [anon_sym_is] = ACTIONS(2771), - [anon_sym_BANGis] = ACTIONS(2771), - [anon_sym_in] = ACTIONS(2771), - [anon_sym_BANGin] = ACTIONS(2771), - [anon_sym_match] = ACTIONS(2771), - [anon_sym_select] = ACTIONS(2771), - [anon_sym_lock] = ACTIONS(2771), - [anon_sym_rlock] = ACTIONS(2771), - [anon_sym_unsafe] = ACTIONS(2771), - [anon_sym_sql] = ACTIONS(2771), - [sym_int_literal] = ACTIONS(2771), - [sym_float_literal] = ACTIONS(2771), - [sym_rune_literal] = ACTIONS(2771), - [anon_sym_SQUOTE] = ACTIONS(2771), - [anon_sym_DQUOTE] = ACTIONS(2771), - [anon_sym_c_SQUOTE] = ACTIONS(2771), - [anon_sym_c_DQUOTE] = ACTIONS(2771), - [anon_sym_r_SQUOTE] = ACTIONS(2771), - [anon_sym_r_DQUOTE] = ACTIONS(2771), - [sym_pseudo_compile_time_identifier] = ACTIONS(2771), - [anon_sym_shared] = ACTIONS(2771), - [anon_sym_map_LBRACK] = ACTIONS(2771), - [anon_sym_chan] = ACTIONS(2771), - [anon_sym_thread] = ACTIONS(2771), - [anon_sym_atomic] = ACTIONS(2771), - }, - [1203] = { - [sym_line_comment] = STATE(1203), - [sym_block_comment] = STATE(1203), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2311), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(605), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(625), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_EQ] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(627), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(625), - [anon_sym_BANG_EQ] = ACTIONS(625), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_QMARK] = ACTIONS(627), - [anon_sym_BANG] = ACTIONS(627), - [anon_sym_LBRACK2] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = 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(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(623), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [1204] = { - [sym_line_comment] = STATE(1204), - [sym_block_comment] = STATE(1204), - [sym_identifier] = ACTIONS(2209), - [anon_sym_LF] = ACTIONS(2209), - [anon_sym_CR] = ACTIONS(2209), - [anon_sym_CR_LF] = ACTIONS(2209), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2209), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_as] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2209), - [anon_sym_COMMA] = ACTIONS(2209), - [anon_sym_RBRACE] = ACTIONS(2209), - [anon_sym_LPAREN] = ACTIONS(2209), - [anon_sym_RPAREN] = ACTIONS(2209), - [anon_sym_PIPE] = ACTIONS(2209), - [anon_sym_fn] = ACTIONS(2209), - [anon_sym_PLUS] = ACTIONS(2209), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_SLASH] = ACTIONS(2209), - [anon_sym_PERCENT] = ACTIONS(2209), - [anon_sym_LT] = ACTIONS(2209), - [anon_sym_GT] = ACTIONS(2209), - [anon_sym_EQ_EQ] = ACTIONS(2209), - [anon_sym_BANG_EQ] = ACTIONS(2209), - [anon_sym_LT_EQ] = ACTIONS(2209), - [anon_sym_GT_EQ] = ACTIONS(2209), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2209), - [anon_sym_LBRACK] = ACTIONS(2207), - [anon_sym_struct] = ACTIONS(2209), - [anon_sym_mut] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_QMARK] = ACTIONS(2209), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_go] = ACTIONS(2209), - [anon_sym_spawn] = ACTIONS(2209), - [anon_sym_json_DOTdecode] = ACTIONS(2209), - [anon_sym_LBRACK2] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_LT_DASH] = ACTIONS(2209), - [anon_sym_LT_LT] = ACTIONS(2209), - [anon_sym_GT_GT] = ACTIONS(2209), - [anon_sym_GT_GT_GT] = ACTIONS(2209), - [anon_sym_AMP_CARET] = ACTIONS(2209), - [anon_sym_AMP_AMP] = ACTIONS(2209), - [anon_sym_PIPE_PIPE] = ACTIONS(2209), - [anon_sym_or] = ACTIONS(2209), - [sym_none] = ACTIONS(2209), - [sym_true] = ACTIONS(2209), - [sym_false] = ACTIONS(2209), - [sym_nil] = ACTIONS(2209), - [anon_sym_QMARK_DOT] = ACTIONS(2209), - [anon_sym_POUND_LBRACK] = ACTIONS(2209), - [anon_sym_if] = ACTIONS(2209), - [anon_sym_DOLLARif] = ACTIONS(2209), - [anon_sym_is] = ACTIONS(2209), - [anon_sym_BANGis] = ACTIONS(2209), - [anon_sym_in] = ACTIONS(2209), - [anon_sym_BANGin] = ACTIONS(2209), - [anon_sym_match] = ACTIONS(2209), - [anon_sym_select] = ACTIONS(2209), - [anon_sym_lock] = ACTIONS(2209), - [anon_sym_rlock] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(2209), - [anon_sym_sql] = ACTIONS(2209), - [sym_int_literal] = ACTIONS(2209), - [sym_float_literal] = ACTIONS(2209), - [sym_rune_literal] = ACTIONS(2209), - [anon_sym_SQUOTE] = ACTIONS(2209), - [anon_sym_DQUOTE] = ACTIONS(2209), - [anon_sym_c_SQUOTE] = ACTIONS(2209), - [anon_sym_c_DQUOTE] = ACTIONS(2209), - [anon_sym_r_SQUOTE] = ACTIONS(2209), - [anon_sym_r_DQUOTE] = ACTIONS(2209), - [sym_pseudo_compile_time_identifier] = ACTIONS(2209), - [anon_sym_shared] = ACTIONS(2209), - [anon_sym_map_LBRACK] = ACTIONS(2209), - [anon_sym_chan] = ACTIONS(2209), - [anon_sym_thread] = ACTIONS(2209), - [anon_sym_atomic] = ACTIONS(2209), - }, - [1205] = { - [sym_line_comment] = STATE(1205), - [sym_block_comment] = STATE(1205), - [sym_identifier] = ACTIONS(2213), - [anon_sym_LF] = ACTIONS(2213), - [anon_sym_CR] = ACTIONS(2213), - [anon_sym_CR_LF] = ACTIONS(2213), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_DOT] = ACTIONS(2213), - [anon_sym_as] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_COMMA] = ACTIONS(2213), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_RPAREN] = ACTIONS(2213), - [anon_sym_PIPE] = ACTIONS(2213), - [anon_sym_fn] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_STAR] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_PERCENT] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_GT] = ACTIONS(2213), - [anon_sym_EQ_EQ] = ACTIONS(2213), - [anon_sym_BANG_EQ] = ACTIONS(2213), - [anon_sym_LT_EQ] = ACTIONS(2213), - [anon_sym_GT_EQ] = ACTIONS(2213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_struct] = ACTIONS(2213), - [anon_sym_mut] = ACTIONS(2213), - [anon_sym_PLUS_PLUS] = ACTIONS(2213), - [anon_sym_DASH_DASH] = ACTIONS(2213), - [anon_sym_QMARK] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2213), - [anon_sym_json_DOTdecode] = ACTIONS(2213), - [anon_sym_LBRACK2] = ACTIONS(2213), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_CARET] = ACTIONS(2213), - [anon_sym_AMP] = ACTIONS(2213), - [anon_sym_LT_DASH] = ACTIONS(2213), - [anon_sym_LT_LT] = ACTIONS(2213), - [anon_sym_GT_GT] = ACTIONS(2213), - [anon_sym_GT_GT_GT] = ACTIONS(2213), - [anon_sym_AMP_CARET] = ACTIONS(2213), - [anon_sym_AMP_AMP] = ACTIONS(2213), - [anon_sym_PIPE_PIPE] = ACTIONS(2213), - [anon_sym_or] = ACTIONS(2213), - [sym_none] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_nil] = ACTIONS(2213), - [anon_sym_QMARK_DOT] = ACTIONS(2213), - [anon_sym_POUND_LBRACK] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_DOLLARif] = ACTIONS(2213), - [anon_sym_is] = ACTIONS(2213), - [anon_sym_BANGis] = ACTIONS(2213), - [anon_sym_in] = ACTIONS(2213), - [anon_sym_BANGin] = ACTIONS(2213), - [anon_sym_match] = ACTIONS(2213), - [anon_sym_select] = ACTIONS(2213), - [anon_sym_lock] = ACTIONS(2213), - [anon_sym_rlock] = ACTIONS(2213), - [anon_sym_unsafe] = ACTIONS(2213), - [anon_sym_sql] = ACTIONS(2213), - [sym_int_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), - [sym_rune_literal] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_DQUOTE] = ACTIONS(2213), - [anon_sym_c_SQUOTE] = ACTIONS(2213), - [anon_sym_c_DQUOTE] = ACTIONS(2213), - [anon_sym_r_SQUOTE] = ACTIONS(2213), - [anon_sym_r_DQUOTE] = ACTIONS(2213), - [sym_pseudo_compile_time_identifier] = ACTIONS(2213), - [anon_sym_shared] = ACTIONS(2213), - [anon_sym_map_LBRACK] = ACTIONS(2213), - [anon_sym_chan] = ACTIONS(2213), - [anon_sym_thread] = ACTIONS(2213), - [anon_sym_atomic] = ACTIONS(2213), - }, - [1206] = { - [sym_line_comment] = STATE(1206), - [sym_block_comment] = STATE(1206), - [sym_identifier] = ACTIONS(2851), - [anon_sym_LF] = ACTIONS(2851), - [anon_sym_CR] = ACTIONS(2851), - [anon_sym_CR_LF] = ACTIONS(2851), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2851), - [anon_sym_DOT] = ACTIONS(2851), - [anon_sym_as] = ACTIONS(2851), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_COMMA] = ACTIONS(2851), - [anon_sym_RBRACE] = ACTIONS(2851), - [anon_sym_LPAREN] = ACTIONS(2851), - [anon_sym_RPAREN] = ACTIONS(2851), - [anon_sym_PIPE] = ACTIONS(2851), - [anon_sym_fn] = ACTIONS(2851), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2851), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_SLASH] = ACTIONS(2851), - [anon_sym_PERCENT] = ACTIONS(2851), - [anon_sym_LT] = ACTIONS(2851), - [anon_sym_GT] = ACTIONS(2851), - [anon_sym_EQ_EQ] = ACTIONS(2851), - [anon_sym_BANG_EQ] = ACTIONS(2851), - [anon_sym_LT_EQ] = ACTIONS(2851), - [anon_sym_GT_EQ] = ACTIONS(2851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2851), - [anon_sym_LBRACK] = ACTIONS(2849), - [anon_sym_struct] = ACTIONS(2851), - [anon_sym_mut] = ACTIONS(2851), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_DASH_DASH] = ACTIONS(2851), - [anon_sym_QMARK] = ACTIONS(2851), - [anon_sym_BANG] = ACTIONS(2851), - [anon_sym_go] = ACTIONS(2851), - [anon_sym_spawn] = ACTIONS(2851), - [anon_sym_json_DOTdecode] = ACTIONS(2851), - [anon_sym_LBRACK2] = ACTIONS(2851), - [anon_sym_TILDE] = ACTIONS(2851), - [anon_sym_CARET] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2851), - [anon_sym_LT_DASH] = ACTIONS(2851), - [anon_sym_LT_LT] = ACTIONS(2851), - [anon_sym_GT_GT] = ACTIONS(2851), - [anon_sym_GT_GT_GT] = ACTIONS(2851), - [anon_sym_AMP_CARET] = ACTIONS(2851), - [anon_sym_AMP_AMP] = ACTIONS(2851), - [anon_sym_PIPE_PIPE] = ACTIONS(2851), - [anon_sym_or] = ACTIONS(2851), - [sym_none] = ACTIONS(2851), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [sym_nil] = ACTIONS(2851), - [anon_sym_QMARK_DOT] = ACTIONS(2851), - [anon_sym_POUND_LBRACK] = ACTIONS(2851), - [anon_sym_if] = ACTIONS(2851), - [anon_sym_DOLLARif] = ACTIONS(2851), - [anon_sym_is] = ACTIONS(2851), - [anon_sym_BANGis] = ACTIONS(2851), - [anon_sym_in] = ACTIONS(2851), - [anon_sym_BANGin] = ACTIONS(2851), - [anon_sym_match] = ACTIONS(2851), - [anon_sym_select] = ACTIONS(2851), - [anon_sym_lock] = ACTIONS(2851), - [anon_sym_rlock] = ACTIONS(2851), - [anon_sym_unsafe] = ACTIONS(2851), - [anon_sym_sql] = ACTIONS(2851), - [sym_int_literal] = ACTIONS(2851), - [sym_float_literal] = ACTIONS(2851), - [sym_rune_literal] = ACTIONS(2851), - [anon_sym_SQUOTE] = ACTIONS(2851), - [anon_sym_DQUOTE] = ACTIONS(2851), - [anon_sym_c_SQUOTE] = ACTIONS(2851), - [anon_sym_c_DQUOTE] = ACTIONS(2851), - [anon_sym_r_SQUOTE] = ACTIONS(2851), - [anon_sym_r_DQUOTE] = ACTIONS(2851), - [sym_pseudo_compile_time_identifier] = ACTIONS(2851), - [anon_sym_shared] = ACTIONS(2851), - [anon_sym_map_LBRACK] = ACTIONS(2851), - [anon_sym_chan] = ACTIONS(2851), - [anon_sym_thread] = ACTIONS(2851), - [anon_sym_atomic] = ACTIONS(2851), - }, - [1207] = { - [sym_line_comment] = STATE(1207), - [sym_block_comment] = STATE(1207), - [sym_identifier] = ACTIONS(2217), - [anon_sym_LF] = ACTIONS(2217), - [anon_sym_CR] = ACTIONS(2217), - [anon_sym_CR_LF] = ACTIONS(2217), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2217), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_as] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2217), - [anon_sym_COMMA] = ACTIONS(2217), - [anon_sym_RBRACE] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2217), - [anon_sym_RPAREN] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2217), - [anon_sym_fn] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2217), - [anon_sym_DASH] = ACTIONS(2217), - [anon_sym_STAR] = ACTIONS(2217), - [anon_sym_SLASH] = ACTIONS(2217), - [anon_sym_PERCENT] = ACTIONS(2217), - [anon_sym_LT] = ACTIONS(2217), - [anon_sym_GT] = ACTIONS(2217), - [anon_sym_EQ_EQ] = ACTIONS(2217), - [anon_sym_BANG_EQ] = ACTIONS(2217), - [anon_sym_LT_EQ] = ACTIONS(2217), - [anon_sym_GT_EQ] = ACTIONS(2217), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_struct] = ACTIONS(2217), - [anon_sym_mut] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2217), - [anon_sym_DASH_DASH] = ACTIONS(2217), - [anon_sym_QMARK] = ACTIONS(2217), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_go] = ACTIONS(2217), - [anon_sym_spawn] = ACTIONS(2217), - [anon_sym_json_DOTdecode] = ACTIONS(2217), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_LT_DASH] = ACTIONS(2217), - [anon_sym_LT_LT] = ACTIONS(2217), - [anon_sym_GT_GT] = ACTIONS(2217), - [anon_sym_GT_GT_GT] = ACTIONS(2217), - [anon_sym_AMP_CARET] = ACTIONS(2217), - [anon_sym_AMP_AMP] = ACTIONS(2217), - [anon_sym_PIPE_PIPE] = ACTIONS(2217), - [anon_sym_or] = ACTIONS(2217), - [sym_none] = ACTIONS(2217), - [sym_true] = ACTIONS(2217), - [sym_false] = ACTIONS(2217), - [sym_nil] = ACTIONS(2217), - [anon_sym_QMARK_DOT] = ACTIONS(2217), - [anon_sym_POUND_LBRACK] = ACTIONS(2217), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_DOLLARif] = ACTIONS(2217), - [anon_sym_is] = ACTIONS(2217), - [anon_sym_BANGis] = ACTIONS(2217), - [anon_sym_in] = ACTIONS(2217), - [anon_sym_BANGin] = ACTIONS(2217), - [anon_sym_match] = ACTIONS(2217), - [anon_sym_select] = ACTIONS(2217), - [anon_sym_lock] = ACTIONS(2217), - [anon_sym_rlock] = ACTIONS(2217), - [anon_sym_unsafe] = ACTIONS(2217), - [anon_sym_sql] = ACTIONS(2217), - [sym_int_literal] = ACTIONS(2217), - [sym_float_literal] = ACTIONS(2217), - [sym_rune_literal] = ACTIONS(2217), - [anon_sym_SQUOTE] = ACTIONS(2217), - [anon_sym_DQUOTE] = ACTIONS(2217), - [anon_sym_c_SQUOTE] = ACTIONS(2217), - [anon_sym_c_DQUOTE] = ACTIONS(2217), - [anon_sym_r_SQUOTE] = ACTIONS(2217), - [anon_sym_r_DQUOTE] = ACTIONS(2217), - [sym_pseudo_compile_time_identifier] = ACTIONS(2217), - [anon_sym_shared] = ACTIONS(2217), - [anon_sym_map_LBRACK] = ACTIONS(2217), - [anon_sym_chan] = ACTIONS(2217), - [anon_sym_thread] = ACTIONS(2217), - [anon_sym_atomic] = ACTIONS(2217), - }, [1208] = { [sym_line_comment] = STATE(1208), [sym_block_comment] = STATE(1208), - [sym_identifier] = ACTIONS(2801), - [anon_sym_LF] = ACTIONS(2801), - [anon_sym_CR] = ACTIONS(2801), - [anon_sym_CR_LF] = ACTIONS(2801), + [sym_identifier] = ACTIONS(2701), + [anon_sym_LF] = ACTIONS(2701), + [anon_sym_CR] = ACTIONS(2701), + [anon_sym_CR_LF] = ACTIONS(2701), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym_DOT] = ACTIONS(2801), - [anon_sym_as] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_COMMA] = ACTIONS(2801), - [anon_sym_RBRACE] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2801), - [anon_sym_RPAREN] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(2801), - [anon_sym_fn] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_SLASH] = ACTIONS(2801), - [anon_sym_PERCENT] = ACTIONS(2801), - [anon_sym_LT] = ACTIONS(2801), - [anon_sym_GT] = ACTIONS(2801), - [anon_sym_EQ_EQ] = ACTIONS(2801), - [anon_sym_BANG_EQ] = ACTIONS(2801), - [anon_sym_LT_EQ] = ACTIONS(2801), - [anon_sym_GT_EQ] = ACTIONS(2801), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_struct] = ACTIONS(2801), - [anon_sym_mut] = ACTIONS(2801), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_go] = ACTIONS(2801), - [anon_sym_spawn] = ACTIONS(2801), - [anon_sym_json_DOTdecode] = ACTIONS(2801), - [anon_sym_LBRACK2] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_LT_DASH] = ACTIONS(2801), - [anon_sym_LT_LT] = ACTIONS(2801), - [anon_sym_GT_GT] = ACTIONS(2801), - [anon_sym_GT_GT_GT] = ACTIONS(2801), - [anon_sym_AMP_CARET] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_PIPE_PIPE] = ACTIONS(2801), - [anon_sym_or] = ACTIONS(2801), - [sym_none] = ACTIONS(2801), - [sym_true] = ACTIONS(2801), - [sym_false] = ACTIONS(2801), - [sym_nil] = ACTIONS(2801), - [anon_sym_QMARK_DOT] = ACTIONS(2801), - [anon_sym_POUND_LBRACK] = ACTIONS(2801), - [anon_sym_if] = ACTIONS(2801), - [anon_sym_DOLLARif] = ACTIONS(2801), - [anon_sym_is] = ACTIONS(2801), - [anon_sym_BANGis] = ACTIONS(2801), - [anon_sym_in] = ACTIONS(2801), - [anon_sym_BANGin] = ACTIONS(2801), - [anon_sym_match] = ACTIONS(2801), - [anon_sym_select] = ACTIONS(2801), - [anon_sym_lock] = ACTIONS(2801), - [anon_sym_rlock] = ACTIONS(2801), - [anon_sym_unsafe] = ACTIONS(2801), - [anon_sym_sql] = ACTIONS(2801), - [sym_int_literal] = ACTIONS(2801), - [sym_float_literal] = ACTIONS(2801), - [sym_rune_literal] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2801), - [anon_sym_DQUOTE] = ACTIONS(2801), - [anon_sym_c_SQUOTE] = ACTIONS(2801), - [anon_sym_c_DQUOTE] = ACTIONS(2801), - [anon_sym_r_SQUOTE] = ACTIONS(2801), - [anon_sym_r_DQUOTE] = ACTIONS(2801), - [sym_pseudo_compile_time_identifier] = ACTIONS(2801), - [anon_sym_shared] = ACTIONS(2801), - [anon_sym_map_LBRACK] = ACTIONS(2801), - [anon_sym_chan] = ACTIONS(2801), - [anon_sym_thread] = ACTIONS(2801), - [anon_sym_atomic] = ACTIONS(2801), + [anon_sym_SEMI] = ACTIONS(2701), + [anon_sym_DOT] = ACTIONS(2701), + [anon_sym_as] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2701), + [anon_sym_COMMA] = ACTIONS(2701), + [anon_sym_RBRACE] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(2701), + [anon_sym_RPAREN] = ACTIONS(2701), + [anon_sym_fn] = ACTIONS(2701), + [anon_sym_PLUS] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(2701), + [anon_sym_STAR] = ACTIONS(2701), + [anon_sym_SLASH] = ACTIONS(2701), + [anon_sym_PERCENT] = ACTIONS(2701), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_GT] = ACTIONS(2701), + [anon_sym_EQ_EQ] = ACTIONS(2701), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_LT_EQ] = ACTIONS(2701), + [anon_sym_GT_EQ] = ACTIONS(2701), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_struct] = ACTIONS(2701), + [anon_sym_mut] = ACTIONS(2701), + [anon_sym_PLUS_PLUS] = ACTIONS(2701), + [anon_sym_DASH_DASH] = ACTIONS(2701), + [anon_sym_QMARK] = ACTIONS(2701), + [anon_sym_BANG] = ACTIONS(2701), + [anon_sym_go] = ACTIONS(2701), + [anon_sym_spawn] = ACTIONS(2701), + [anon_sym_json_DOTdecode] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(2701), + [anon_sym_LBRACK2] = ACTIONS(2701), + [anon_sym_TILDE] = ACTIONS(2701), + [anon_sym_CARET] = ACTIONS(2701), + [anon_sym_AMP] = ACTIONS(2701), + [anon_sym_LT_DASH] = ACTIONS(2701), + [anon_sym_LT_LT] = ACTIONS(2701), + [anon_sym_GT_GT] = ACTIONS(2701), + [anon_sym_GT_GT_GT] = ACTIONS(2701), + [anon_sym_AMP_CARET] = ACTIONS(2701), + [anon_sym_AMP_AMP] = ACTIONS(2701), + [anon_sym_PIPE_PIPE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2701), + [sym_none] = ACTIONS(2701), + [sym_true] = ACTIONS(2701), + [sym_false] = ACTIONS(2701), + [sym_nil] = ACTIONS(2701), + [anon_sym_QMARK_DOT] = ACTIONS(2701), + [anon_sym_POUND_LBRACK] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_DOLLARif] = ACTIONS(2701), + [anon_sym_is] = ACTIONS(2701), + [anon_sym_BANGis] = ACTIONS(2701), + [anon_sym_in] = ACTIONS(2701), + [anon_sym_BANGin] = ACTIONS(2701), + [anon_sym_match] = ACTIONS(2701), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2701), + [anon_sym_rlock] = ACTIONS(2701), + [anon_sym_unsafe] = ACTIONS(2701), + [anon_sym_sql] = ACTIONS(2701), + [sym_int_literal] = ACTIONS(2701), + [sym_float_literal] = ACTIONS(2701), + [sym_rune_literal] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_DQUOTE] = ACTIONS(2701), + [anon_sym_c_SQUOTE] = ACTIONS(2701), + [anon_sym_c_DQUOTE] = ACTIONS(2701), + [anon_sym_r_SQUOTE] = ACTIONS(2701), + [anon_sym_r_DQUOTE] = ACTIONS(2701), + [sym_pseudo_compile_time_identifier] = ACTIONS(2701), + [anon_sym_shared] = ACTIONS(2701), + [anon_sym_map_LBRACK] = ACTIONS(2701), + [anon_sym_chan] = ACTIONS(2701), + [anon_sym_thread] = ACTIONS(2701), + [anon_sym_atomic] = ACTIONS(2701), }, [1209] = { [sym_line_comment] = STATE(1209), [sym_block_comment] = STATE(1209), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LF] = ACTIONS(2093), - [anon_sym_CR] = ACTIONS(2093), - [anon_sym_CR_LF] = ACTIONS(2093), + [sym_identifier] = ACTIONS(2937), + [anon_sym_LF] = ACTIONS(2937), + [anon_sym_CR] = ACTIONS(2937), + [anon_sym_CR_LF] = ACTIONS(2937), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_COMMA] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_RPAREN] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ] = ACTIONS(2093), - [anon_sym_LT_EQ] = ACTIONS(2093), - [anon_sym_GT_EQ] = ACTIONS(2093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_mut] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [anon_sym_QMARK] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_go] = ACTIONS(2093), - [anon_sym_spawn] = ACTIONS(2093), - [anon_sym_json_DOTdecode] = ACTIONS(2093), - [anon_sym_LBRACK2] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_LT_DASH] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2093), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2093), - [anon_sym_AMP_CARET] = ACTIONS(2093), - [anon_sym_AMP_AMP] = ACTIONS(2093), - [anon_sym_PIPE_PIPE] = ACTIONS(2093), - [anon_sym_or] = ACTIONS(2093), - [sym_none] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_nil] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2093), - [anon_sym_POUND_LBRACK] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_DOLLARif] = ACTIONS(2093), - [anon_sym_is] = ACTIONS(2093), - [anon_sym_BANGis] = ACTIONS(2093), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_BANGin] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_select] = ACTIONS(2093), - [anon_sym_lock] = ACTIONS(2093), - [anon_sym_rlock] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_sql] = ACTIONS(2093), - [sym_int_literal] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2093), - [sym_rune_literal] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_c_SQUOTE] = ACTIONS(2093), - [anon_sym_c_DQUOTE] = ACTIONS(2093), - [anon_sym_r_SQUOTE] = ACTIONS(2093), - [anon_sym_r_DQUOTE] = ACTIONS(2093), - [sym_pseudo_compile_time_identifier] = ACTIONS(2093), - [anon_sym_shared] = ACTIONS(2093), - [anon_sym_map_LBRACK] = ACTIONS(2093), - [anon_sym_chan] = ACTIONS(2093), - [anon_sym_thread] = ACTIONS(2093), - [anon_sym_atomic] = ACTIONS(2093), + [anon_sym_SEMI] = ACTIONS(2937), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_as] = ACTIONS(2937), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(2937), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_RPAREN] = ACTIONS(2937), + [anon_sym_fn] = ACTIONS(2937), + [anon_sym_PLUS] = ACTIONS(2937), + [anon_sym_DASH] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2937), + [anon_sym_SLASH] = ACTIONS(2937), + [anon_sym_PERCENT] = ACTIONS(2937), + [anon_sym_LT] = ACTIONS(2937), + [anon_sym_GT] = ACTIONS(2937), + [anon_sym_EQ_EQ] = ACTIONS(2937), + [anon_sym_BANG_EQ] = ACTIONS(2937), + [anon_sym_LT_EQ] = ACTIONS(2937), + [anon_sym_GT_EQ] = ACTIONS(2937), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2935), + [anon_sym_struct] = ACTIONS(2937), + [anon_sym_mut] = ACTIONS(2937), + [anon_sym_COLON] = ACTIONS(3853), + [anon_sym_PLUS_PLUS] = ACTIONS(2937), + [anon_sym_DASH_DASH] = ACTIONS(2937), + [anon_sym_QMARK] = ACTIONS(2937), + [anon_sym_BANG] = ACTIONS(2937), + [anon_sym_go] = ACTIONS(2937), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2937), + [anon_sym_PIPE] = ACTIONS(2937), + [anon_sym_LBRACK2] = ACTIONS(2937), + [anon_sym_TILDE] = ACTIONS(2937), + [anon_sym_CARET] = ACTIONS(2937), + [anon_sym_AMP] = ACTIONS(2937), + [anon_sym_LT_DASH] = ACTIONS(2937), + [anon_sym_LT_LT] = ACTIONS(2937), + [anon_sym_GT_GT] = ACTIONS(2937), + [anon_sym_GT_GT_GT] = ACTIONS(2937), + [anon_sym_AMP_CARET] = ACTIONS(2937), + [anon_sym_AMP_AMP] = ACTIONS(2937), + [anon_sym_PIPE_PIPE] = ACTIONS(2937), + [anon_sym_or] = ACTIONS(2937), + [sym_none] = ACTIONS(2937), + [sym_true] = ACTIONS(2937), + [sym_false] = ACTIONS(2937), + [sym_nil] = ACTIONS(2937), + [anon_sym_QMARK_DOT] = ACTIONS(2937), + [anon_sym_POUND_LBRACK] = ACTIONS(2937), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_DOLLARif] = ACTIONS(2937), + [anon_sym_is] = ACTIONS(2937), + [anon_sym_BANGis] = ACTIONS(2937), + [anon_sym_in] = ACTIONS(2937), + [anon_sym_BANGin] = ACTIONS(2937), + [anon_sym_match] = ACTIONS(2937), + [anon_sym_select] = ACTIONS(2937), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(2937), + [anon_sym_sql] = ACTIONS(2937), + [sym_int_literal] = ACTIONS(2937), + [sym_float_literal] = ACTIONS(2937), + [sym_rune_literal] = ACTIONS(2937), + [anon_sym_SQUOTE] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2937), + [anon_sym_c_SQUOTE] = ACTIONS(2937), + [anon_sym_c_DQUOTE] = ACTIONS(2937), + [anon_sym_r_SQUOTE] = ACTIONS(2937), + [anon_sym_r_DQUOTE] = ACTIONS(2937), + [sym_pseudo_compile_time_identifier] = ACTIONS(2937), + [anon_sym_shared] = ACTIONS(2937), + [anon_sym_map_LBRACK] = ACTIONS(2937), + [anon_sym_chan] = ACTIONS(2937), + [anon_sym_thread] = ACTIONS(2937), + [anon_sym_atomic] = ACTIONS(2937), }, [1210] = { [sym_line_comment] = STATE(1210), [sym_block_comment] = STATE(1210), - [sym_identifier] = ACTIONS(2221), - [anon_sym_LF] = ACTIONS(2221), - [anon_sym_CR] = ACTIONS(2221), - [anon_sym_CR_LF] = ACTIONS(2221), + [sym_identifier] = ACTIONS(2981), + [anon_sym_LF] = ACTIONS(2981), + [anon_sym_CR] = ACTIONS(2981), + [anon_sym_CR_LF] = ACTIONS(2981), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_DOT] = ACTIONS(2221), - [anon_sym_as] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_COMMA] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_RPAREN] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(2221), - [anon_sym_fn] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_PERCENT] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_GT] = ACTIONS(2221), - [anon_sym_EQ_EQ] = ACTIONS(2221), - [anon_sym_BANG_EQ] = ACTIONS(2221), - [anon_sym_LT_EQ] = ACTIONS(2221), - [anon_sym_GT_EQ] = ACTIONS(2221), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2219), - [anon_sym_struct] = ACTIONS(2221), - [anon_sym_mut] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [anon_sym_QMARK] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_go] = ACTIONS(2221), - [anon_sym_spawn] = ACTIONS(2221), - [anon_sym_json_DOTdecode] = ACTIONS(2221), - [anon_sym_LBRACK2] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_LT_DASH] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_GT_GT] = ACTIONS(2221), - [anon_sym_GT_GT_GT] = ACTIONS(2221), - [anon_sym_AMP_CARET] = ACTIONS(2221), - [anon_sym_AMP_AMP] = ACTIONS(2221), - [anon_sym_PIPE_PIPE] = ACTIONS(2221), - [anon_sym_or] = ACTIONS(2221), - [sym_none] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_nil] = ACTIONS(2221), - [anon_sym_QMARK_DOT] = ACTIONS(2221), - [anon_sym_POUND_LBRACK] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_DOLLARif] = ACTIONS(2221), - [anon_sym_is] = ACTIONS(2221), - [anon_sym_BANGis] = ACTIONS(2221), - [anon_sym_in] = ACTIONS(2221), - [anon_sym_BANGin] = ACTIONS(2221), - [anon_sym_match] = ACTIONS(2221), - [anon_sym_select] = ACTIONS(2221), - [anon_sym_lock] = ACTIONS(2221), - [anon_sym_rlock] = ACTIONS(2221), - [anon_sym_unsafe] = ACTIONS(2221), - [anon_sym_sql] = ACTIONS(2221), - [sym_int_literal] = ACTIONS(2221), - [sym_float_literal] = ACTIONS(2221), - [sym_rune_literal] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_c_SQUOTE] = ACTIONS(2221), - [anon_sym_c_DQUOTE] = ACTIONS(2221), - [anon_sym_r_SQUOTE] = ACTIONS(2221), - [anon_sym_r_DQUOTE] = ACTIONS(2221), - [sym_pseudo_compile_time_identifier] = ACTIONS(2221), - [anon_sym_shared] = ACTIONS(2221), - [anon_sym_map_LBRACK] = ACTIONS(2221), - [anon_sym_chan] = ACTIONS(2221), - [anon_sym_thread] = ACTIONS(2221), - [anon_sym_atomic] = ACTIONS(2221), + [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_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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE] = ACTIONS(2981), + [anon_sym_c_SQUOTE] = ACTIONS(2981), + [anon_sym_c_DQUOTE] = ACTIONS(2981), + [anon_sym_r_SQUOTE] = ACTIONS(2981), + [anon_sym_r_DQUOTE] = 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), }, [1211] = { [sym_line_comment] = STATE(1211), [sym_block_comment] = STATE(1211), - [sym_identifier] = ACTIONS(2877), - [anon_sym_LF] = ACTIONS(2877), - [anon_sym_CR] = ACTIONS(2877), - [anon_sym_CR_LF] = ACTIONS(2877), + [sym_identifier] = ACTIONS(2965), + [anon_sym_LF] = ACTIONS(2965), + [anon_sym_CR] = ACTIONS(2965), + [anon_sym_CR_LF] = ACTIONS(2965), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2877), - [anon_sym_DOT] = ACTIONS(2877), - [anon_sym_as] = ACTIONS(2877), - [anon_sym_LBRACE] = ACTIONS(2877), - [anon_sym_COMMA] = ACTIONS(2877), - [anon_sym_RBRACE] = ACTIONS(2877), - [anon_sym_LPAREN] = ACTIONS(2877), - [anon_sym_RPAREN] = ACTIONS(2877), - [anon_sym_PIPE] = ACTIONS(2877), - [anon_sym_fn] = ACTIONS(2877), - [anon_sym_PLUS] = ACTIONS(2877), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_STAR] = ACTIONS(2877), - [anon_sym_SLASH] = ACTIONS(2877), - [anon_sym_PERCENT] = ACTIONS(2877), - [anon_sym_LT] = ACTIONS(2877), - [anon_sym_GT] = ACTIONS(2877), - [anon_sym_EQ_EQ] = ACTIONS(2877), - [anon_sym_BANG_EQ] = ACTIONS(2877), - [anon_sym_LT_EQ] = ACTIONS(2877), - [anon_sym_GT_EQ] = ACTIONS(2877), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2877), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_struct] = ACTIONS(2877), - [anon_sym_mut] = ACTIONS(2877), - [anon_sym_PLUS_PLUS] = ACTIONS(2877), - [anon_sym_DASH_DASH] = ACTIONS(2877), - [anon_sym_QMARK] = ACTIONS(2877), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_go] = ACTIONS(2877), - [anon_sym_spawn] = ACTIONS(2877), - [anon_sym_json_DOTdecode] = ACTIONS(2877), - [anon_sym_LBRACK2] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_CARET] = ACTIONS(2877), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_LT_DASH] = ACTIONS(2877), - [anon_sym_LT_LT] = ACTIONS(2877), - [anon_sym_GT_GT] = ACTIONS(2877), - [anon_sym_GT_GT_GT] = ACTIONS(2877), - [anon_sym_AMP_CARET] = ACTIONS(2877), - [anon_sym_AMP_AMP] = ACTIONS(2877), - [anon_sym_PIPE_PIPE] = ACTIONS(2877), - [anon_sym_or] = ACTIONS(2877), - [sym_none] = ACTIONS(2877), - [sym_true] = ACTIONS(2877), - [sym_false] = ACTIONS(2877), - [sym_nil] = ACTIONS(2877), - [anon_sym_QMARK_DOT] = ACTIONS(2877), - [anon_sym_POUND_LBRACK] = ACTIONS(2877), - [anon_sym_if] = ACTIONS(2877), - [anon_sym_DOLLARif] = ACTIONS(2877), - [anon_sym_is] = ACTIONS(2877), - [anon_sym_BANGis] = ACTIONS(2877), - [anon_sym_in] = ACTIONS(2877), - [anon_sym_BANGin] = ACTIONS(2877), - [anon_sym_match] = ACTIONS(2877), - [anon_sym_select] = ACTIONS(2877), - [anon_sym_lock] = ACTIONS(2877), - [anon_sym_rlock] = ACTIONS(2877), - [anon_sym_unsafe] = ACTIONS(2877), - [anon_sym_sql] = ACTIONS(2877), - [sym_int_literal] = ACTIONS(2877), - [sym_float_literal] = ACTIONS(2877), - [sym_rune_literal] = ACTIONS(2877), - [anon_sym_SQUOTE] = ACTIONS(2877), - [anon_sym_DQUOTE] = ACTIONS(2877), - [anon_sym_c_SQUOTE] = ACTIONS(2877), - [anon_sym_c_DQUOTE] = ACTIONS(2877), - [anon_sym_r_SQUOTE] = ACTIONS(2877), - [anon_sym_r_DQUOTE] = ACTIONS(2877), - [sym_pseudo_compile_time_identifier] = ACTIONS(2877), - [anon_sym_shared] = ACTIONS(2877), - [anon_sym_map_LBRACK] = ACTIONS(2877), - [anon_sym_chan] = ACTIONS(2877), - [anon_sym_thread] = ACTIONS(2877), - [anon_sym_atomic] = ACTIONS(2877), + [anon_sym_SEMI] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_as] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_COMMA] = ACTIONS(2965), + [anon_sym_RBRACE] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_RPAREN] = ACTIONS(2965), + [anon_sym_fn] = ACTIONS(2965), + [anon_sym_PLUS] = ACTIONS(2965), + [anon_sym_DASH] = ACTIONS(2965), + [anon_sym_STAR] = ACTIONS(2965), + [anon_sym_SLASH] = ACTIONS(2965), + [anon_sym_PERCENT] = ACTIONS(2965), + [anon_sym_LT] = ACTIONS(2965), + [anon_sym_GT] = ACTIONS(2965), + [anon_sym_EQ_EQ] = ACTIONS(2965), + [anon_sym_BANG_EQ] = ACTIONS(2965), + [anon_sym_LT_EQ] = ACTIONS(2965), + [anon_sym_GT_EQ] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_LBRACK] = ACTIONS(2963), + [anon_sym_struct] = ACTIONS(2965), + [anon_sym_mut] = ACTIONS(2965), + [anon_sym_PLUS_PLUS] = ACTIONS(2965), + [anon_sym_DASH_DASH] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_BANG] = ACTIONS(2965), + [anon_sym_go] = ACTIONS(2965), + [anon_sym_spawn] = ACTIONS(2965), + [anon_sym_json_DOTdecode] = ACTIONS(2965), + [anon_sym_PIPE] = ACTIONS(2965), + [anon_sym_LBRACK2] = ACTIONS(2965), + [anon_sym_TILDE] = ACTIONS(2965), + [anon_sym_CARET] = ACTIONS(2965), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_LT_DASH] = ACTIONS(2965), + [anon_sym_LT_LT] = ACTIONS(2965), + [anon_sym_GT_GT] = ACTIONS(2965), + [anon_sym_GT_GT_GT] = ACTIONS(2965), + [anon_sym_AMP_CARET] = ACTIONS(2965), + [anon_sym_AMP_AMP] = ACTIONS(2965), + [anon_sym_PIPE_PIPE] = ACTIONS(2965), + [anon_sym_or] = ACTIONS(2965), + [sym_none] = ACTIONS(2965), + [sym_true] = ACTIONS(2965), + [sym_false] = ACTIONS(2965), + [sym_nil] = ACTIONS(2965), + [anon_sym_QMARK_DOT] = ACTIONS(2965), + [anon_sym_POUND_LBRACK] = ACTIONS(2965), + [anon_sym_if] = ACTIONS(2965), + [anon_sym_DOLLARif] = ACTIONS(2965), + [anon_sym_is] = ACTIONS(2965), + [anon_sym_BANGis] = ACTIONS(2965), + [anon_sym_in] = ACTIONS(2965), + [anon_sym_BANGin] = ACTIONS(2965), + [anon_sym_match] = ACTIONS(2965), + [anon_sym_select] = ACTIONS(2965), + [anon_sym_lock] = ACTIONS(2965), + [anon_sym_rlock] = ACTIONS(2965), + [anon_sym_unsafe] = ACTIONS(2965), + [anon_sym_sql] = ACTIONS(2965), + [sym_int_literal] = ACTIONS(2965), + [sym_float_literal] = ACTIONS(2965), + [sym_rune_literal] = ACTIONS(2965), + [anon_sym_SQUOTE] = ACTIONS(2965), + [anon_sym_DQUOTE] = ACTIONS(2965), + [anon_sym_c_SQUOTE] = ACTIONS(2965), + [anon_sym_c_DQUOTE] = ACTIONS(2965), + [anon_sym_r_SQUOTE] = ACTIONS(2965), + [anon_sym_r_DQUOTE] = ACTIONS(2965), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), + [anon_sym_shared] = ACTIONS(2965), + [anon_sym_map_LBRACK] = ACTIONS(2965), + [anon_sym_chan] = ACTIONS(2965), + [anon_sym_thread] = ACTIONS(2965), + [anon_sym_atomic] = ACTIONS(2965), }, [1212] = { [sym_line_comment] = STATE(1212), [sym_block_comment] = STATE(1212), - [sym_identifier] = ACTIONS(2137), - [anon_sym_LF] = ACTIONS(2137), - [anon_sym_CR] = ACTIONS(2137), - [anon_sym_CR_LF] = ACTIONS(2137), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LF] = ACTIONS(2351), + [anon_sym_CR] = ACTIONS(2351), + [anon_sym_CR_LF] = ACTIONS(2351), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_as] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_COMMA] = ACTIONS(2137), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_RPAREN] = ACTIONS(2137), - [anon_sym_PIPE] = ACTIONS(2139), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_SLASH] = ACTIONS(2139), - [anon_sym_PERCENT] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_GT] = ACTIONS(2139), - [anon_sym_EQ_EQ] = ACTIONS(2139), - [anon_sym_BANG_EQ] = ACTIONS(2139), - [anon_sym_LT_EQ] = ACTIONS(2139), - [anon_sym_GT_EQ] = ACTIONS(2139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_mut] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_QMARK] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(2137), - [anon_sym_spawn] = ACTIONS(2137), - [anon_sym_json_DOTdecode] = ACTIONS(2137), - [anon_sym_LBRACK2] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_LT_DASH] = ACTIONS(2137), - [anon_sym_LT_LT] = ACTIONS(2139), - [anon_sym_GT_GT] = ACTIONS(2139), - [anon_sym_GT_GT_GT] = ACTIONS(2139), - [anon_sym_AMP_CARET] = ACTIONS(2139), - [anon_sym_AMP_AMP] = ACTIONS(2139), - [anon_sym_PIPE_PIPE] = ACTIONS(2139), - [anon_sym_or] = ACTIONS(2139), - [sym_none] = ACTIONS(2137), - [sym_true] = ACTIONS(2137), - [sym_false] = ACTIONS(2137), - [sym_nil] = ACTIONS(2137), - [anon_sym_QMARK_DOT] = ACTIONS(2139), - [anon_sym_POUND_LBRACK] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_DOLLARif] = ACTIONS(2137), - [anon_sym_is] = ACTIONS(2139), - [anon_sym_BANGis] = ACTIONS(2139), - [anon_sym_in] = ACTIONS(2139), - [anon_sym_BANGin] = ACTIONS(2139), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_select] = ACTIONS(2137), - [anon_sym_lock] = ACTIONS(2137), - [anon_sym_rlock] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_sql] = ACTIONS(2137), - [sym_int_literal] = ACTIONS(2137), - [sym_float_literal] = ACTIONS(2137), - [sym_rune_literal] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_DQUOTE] = ACTIONS(2137), - [anon_sym_c_SQUOTE] = ACTIONS(2137), - [anon_sym_c_DQUOTE] = ACTIONS(2137), - [anon_sym_r_SQUOTE] = ACTIONS(2137), - [anon_sym_r_DQUOTE] = ACTIONS(2137), - [sym_pseudo_compile_time_identifier] = ACTIONS(2137), - [anon_sym_shared] = ACTIONS(2137), - [anon_sym_map_LBRACK] = ACTIONS(2137), - [anon_sym_chan] = ACTIONS(2137), - [anon_sym_thread] = ACTIONS(2137), - [anon_sym_atomic] = ACTIONS(2137), + [anon_sym_SEMI] = ACTIONS(2351), + [anon_sym_DOT] = ACTIONS(2351), + [anon_sym_as] = ACTIONS(2351), + [anon_sym_LBRACE] = ACTIONS(2351), + [anon_sym_COMMA] = ACTIONS(2351), + [anon_sym_RBRACE] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_RPAREN] = ACTIONS(2351), + [anon_sym_fn] = ACTIONS(2351), + [anon_sym_PLUS] = ACTIONS(2351), + [anon_sym_DASH] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(2351), + [anon_sym_SLASH] = ACTIONS(2351), + [anon_sym_PERCENT] = ACTIONS(2351), + [anon_sym_LT] = ACTIONS(2351), + [anon_sym_GT] = ACTIONS(2351), + [anon_sym_EQ_EQ] = ACTIONS(2351), + [anon_sym_BANG_EQ] = ACTIONS(2351), + [anon_sym_LT_EQ] = ACTIONS(2351), + [anon_sym_GT_EQ] = ACTIONS(2351), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2351), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_struct] = ACTIONS(2351), + [anon_sym_mut] = ACTIONS(2351), + [anon_sym_PLUS_PLUS] = ACTIONS(2351), + [anon_sym_DASH_DASH] = ACTIONS(2351), + [anon_sym_QMARK] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(2351), + [anon_sym_go] = ACTIONS(2351), + [anon_sym_spawn] = ACTIONS(2351), + [anon_sym_json_DOTdecode] = ACTIONS(2351), + [anon_sym_PIPE] = ACTIONS(2351), + [anon_sym_LBRACK2] = ACTIONS(2351), + [anon_sym_TILDE] = ACTIONS(2351), + [anon_sym_CARET] = ACTIONS(2351), + [anon_sym_AMP] = ACTIONS(2351), + [anon_sym_LT_DASH] = ACTIONS(2351), + [anon_sym_LT_LT] = ACTIONS(2351), + [anon_sym_GT_GT] = ACTIONS(2351), + [anon_sym_GT_GT_GT] = ACTIONS(2351), + [anon_sym_AMP_CARET] = ACTIONS(2351), + [anon_sym_AMP_AMP] = ACTIONS(2351), + [anon_sym_PIPE_PIPE] = ACTIONS(2351), + [anon_sym_or] = ACTIONS(2351), + [sym_none] = ACTIONS(2351), + [sym_true] = ACTIONS(2351), + [sym_false] = ACTIONS(2351), + [sym_nil] = ACTIONS(2351), + [anon_sym_QMARK_DOT] = ACTIONS(2351), + [anon_sym_POUND_LBRACK] = ACTIONS(2351), + [anon_sym_if] = ACTIONS(2351), + [anon_sym_DOLLARif] = ACTIONS(2351), + [anon_sym_is] = ACTIONS(2351), + [anon_sym_BANGis] = ACTIONS(2351), + [anon_sym_in] = ACTIONS(2351), + [anon_sym_BANGin] = ACTIONS(2351), + [anon_sym_match] = ACTIONS(2351), + [anon_sym_select] = ACTIONS(2351), + [anon_sym_lock] = ACTIONS(2351), + [anon_sym_rlock] = ACTIONS(2351), + [anon_sym_unsafe] = ACTIONS(2351), + [anon_sym_sql] = ACTIONS(2351), + [sym_int_literal] = ACTIONS(2351), + [sym_float_literal] = ACTIONS(2351), + [sym_rune_literal] = ACTIONS(2351), + [anon_sym_SQUOTE] = ACTIONS(2351), + [anon_sym_DQUOTE] = ACTIONS(2351), + [anon_sym_c_SQUOTE] = ACTIONS(2351), + [anon_sym_c_DQUOTE] = ACTIONS(2351), + [anon_sym_r_SQUOTE] = ACTIONS(2351), + [anon_sym_r_DQUOTE] = ACTIONS(2351), + [sym_pseudo_compile_time_identifier] = ACTIONS(2351), + [anon_sym_shared] = ACTIONS(2351), + [anon_sym_map_LBRACK] = ACTIONS(2351), + [anon_sym_chan] = ACTIONS(2351), + [anon_sym_thread] = ACTIONS(2351), + [anon_sym_atomic] = ACTIONS(2351), }, [1213] = { [sym_line_comment] = STATE(1213), [sym_block_comment] = STATE(1213), - [sym_identifier] = ACTIONS(2229), - [anon_sym_LF] = ACTIONS(2229), - [anon_sym_CR] = ACTIONS(2229), - [anon_sym_CR_LF] = ACTIONS(2229), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LF] = ACTIONS(2357), + [anon_sym_CR] = ACTIONS(2357), + [anon_sym_CR_LF] = ACTIONS(2357), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(2229), - [anon_sym_as] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2229), - [anon_sym_COMMA] = ACTIONS(2229), - [anon_sym_RBRACE] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_RPAREN] = ACTIONS(2229), - [anon_sym_PIPE] = ACTIONS(2229), - [anon_sym_fn] = ACTIONS(2229), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_STAR] = ACTIONS(2229), - [anon_sym_SLASH] = ACTIONS(2229), - [anon_sym_PERCENT] = ACTIONS(2229), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_GT] = ACTIONS(2229), - [anon_sym_EQ_EQ] = ACTIONS(2229), - [anon_sym_BANG_EQ] = ACTIONS(2229), - [anon_sym_LT_EQ] = ACTIONS(2229), - [anon_sym_GT_EQ] = ACTIONS(2229), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2229), - [anon_sym_LBRACK] = ACTIONS(2227), - [anon_sym_struct] = ACTIONS(2229), - [anon_sym_mut] = ACTIONS(2229), - [anon_sym_PLUS_PLUS] = ACTIONS(2229), - [anon_sym_DASH_DASH] = ACTIONS(2229), - [anon_sym_QMARK] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2229), - [anon_sym_go] = ACTIONS(2229), - [anon_sym_spawn] = ACTIONS(2229), - [anon_sym_json_DOTdecode] = ACTIONS(2229), - [anon_sym_LBRACK2] = ACTIONS(2229), - [anon_sym_TILDE] = ACTIONS(2229), - [anon_sym_CARET] = ACTIONS(2229), - [anon_sym_AMP] = ACTIONS(2229), - [anon_sym_LT_DASH] = ACTIONS(2229), - [anon_sym_LT_LT] = ACTIONS(2229), - [anon_sym_GT_GT] = ACTIONS(2229), - [anon_sym_GT_GT_GT] = ACTIONS(2229), - [anon_sym_AMP_CARET] = ACTIONS(2229), - [anon_sym_AMP_AMP] = ACTIONS(2229), - [anon_sym_PIPE_PIPE] = ACTIONS(2229), - [anon_sym_or] = ACTIONS(2229), - [sym_none] = ACTIONS(2229), - [sym_true] = ACTIONS(2229), - [sym_false] = ACTIONS(2229), - [sym_nil] = ACTIONS(2229), - [anon_sym_QMARK_DOT] = ACTIONS(2229), - [anon_sym_POUND_LBRACK] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_DOLLARif] = ACTIONS(2229), - [anon_sym_is] = ACTIONS(2229), - [anon_sym_BANGis] = ACTIONS(2229), - [anon_sym_in] = ACTIONS(2229), - [anon_sym_BANGin] = ACTIONS(2229), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_select] = ACTIONS(2229), - [anon_sym_lock] = ACTIONS(2229), - [anon_sym_rlock] = ACTIONS(2229), - [anon_sym_unsafe] = ACTIONS(2229), - [anon_sym_sql] = ACTIONS(2229), - [sym_int_literal] = ACTIONS(2229), - [sym_float_literal] = ACTIONS(2229), - [sym_rune_literal] = ACTIONS(2229), - [anon_sym_SQUOTE] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2229), - [anon_sym_c_SQUOTE] = ACTIONS(2229), - [anon_sym_c_DQUOTE] = ACTIONS(2229), - [anon_sym_r_SQUOTE] = ACTIONS(2229), - [anon_sym_r_DQUOTE] = ACTIONS(2229), - [sym_pseudo_compile_time_identifier] = ACTIONS(2229), - [anon_sym_shared] = ACTIONS(2229), - [anon_sym_map_LBRACK] = ACTIONS(2229), - [anon_sym_chan] = ACTIONS(2229), - [anon_sym_thread] = ACTIONS(2229), - [anon_sym_atomic] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2357), + [anon_sym_DOT] = ACTIONS(2357), + [anon_sym_as] = ACTIONS(2357), + [anon_sym_LBRACE] = ACTIONS(2357), + [anon_sym_COMMA] = ACTIONS(2357), + [anon_sym_RBRACE] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2357), + [anon_sym_RPAREN] = ACTIONS(2357), + [anon_sym_fn] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2357), + [anon_sym_DASH] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_SLASH] = ACTIONS(2357), + [anon_sym_PERCENT] = ACTIONS(2357), + [anon_sym_LT] = ACTIONS(2357), + [anon_sym_GT] = ACTIONS(2357), + [anon_sym_EQ_EQ] = ACTIONS(2357), + [anon_sym_BANG_EQ] = ACTIONS(2357), + [anon_sym_LT_EQ] = ACTIONS(2357), + [anon_sym_GT_EQ] = ACTIONS(2357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2357), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_struct] = ACTIONS(2357), + [anon_sym_mut] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_QMARK] = ACTIONS(2357), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_go] = ACTIONS(2357), + [anon_sym_spawn] = ACTIONS(2357), + [anon_sym_json_DOTdecode] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2357), + [anon_sym_LBRACK2] = ACTIONS(2357), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_CARET] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_LT_DASH] = ACTIONS(2357), + [anon_sym_LT_LT] = ACTIONS(2357), + [anon_sym_GT_GT] = ACTIONS(2357), + [anon_sym_GT_GT_GT] = ACTIONS(2357), + [anon_sym_AMP_CARET] = ACTIONS(2357), + [anon_sym_AMP_AMP] = ACTIONS(2357), + [anon_sym_PIPE_PIPE] = ACTIONS(2357), + [anon_sym_or] = ACTIONS(2357), + [sym_none] = ACTIONS(2357), + [sym_true] = ACTIONS(2357), + [sym_false] = ACTIONS(2357), + [sym_nil] = ACTIONS(2357), + [anon_sym_QMARK_DOT] = ACTIONS(2357), + [anon_sym_POUND_LBRACK] = ACTIONS(2357), + [anon_sym_if] = ACTIONS(2357), + [anon_sym_DOLLARif] = ACTIONS(2357), + [anon_sym_is] = ACTIONS(2357), + [anon_sym_BANGis] = ACTIONS(2357), + [anon_sym_in] = ACTIONS(2357), + [anon_sym_BANGin] = ACTIONS(2357), + [anon_sym_match] = ACTIONS(2357), + [anon_sym_select] = ACTIONS(2357), + [anon_sym_lock] = ACTIONS(2357), + [anon_sym_rlock] = ACTIONS(2357), + [anon_sym_unsafe] = ACTIONS(2357), + [anon_sym_sql] = ACTIONS(2357), + [sym_int_literal] = ACTIONS(2357), + [sym_float_literal] = ACTIONS(2357), + [sym_rune_literal] = ACTIONS(2357), + [anon_sym_SQUOTE] = ACTIONS(2357), + [anon_sym_DQUOTE] = ACTIONS(2357), + [anon_sym_c_SQUOTE] = ACTIONS(2357), + [anon_sym_c_DQUOTE] = ACTIONS(2357), + [anon_sym_r_SQUOTE] = ACTIONS(2357), + [anon_sym_r_DQUOTE] = ACTIONS(2357), + [sym_pseudo_compile_time_identifier] = ACTIONS(2357), + [anon_sym_shared] = ACTIONS(2357), + [anon_sym_map_LBRACK] = ACTIONS(2357), + [anon_sym_chan] = ACTIONS(2357), + [anon_sym_thread] = ACTIONS(2357), + [anon_sym_atomic] = ACTIONS(2357), }, [1214] = { [sym_line_comment] = STATE(1214), [sym_block_comment] = STATE(1214), - [sym_identifier] = ACTIONS(2265), - [anon_sym_LF] = ACTIONS(2265), - [anon_sym_CR] = ACTIONS(2265), - [anon_sym_CR_LF] = ACTIONS(2265), + [sym_identifier] = ACTIONS(2627), + [anon_sym_LF] = ACTIONS(2627), + [anon_sym_CR] = ACTIONS(2627), + [anon_sym_CR_LF] = ACTIONS(2627), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2265), - [anon_sym_DOT] = ACTIONS(2265), - [anon_sym_as] = ACTIONS(2265), - [anon_sym_LBRACE] = ACTIONS(2265), - [anon_sym_COMMA] = ACTIONS(2265), - [anon_sym_RBRACE] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2265), - [anon_sym_RPAREN] = ACTIONS(2265), - [anon_sym_PIPE] = ACTIONS(2265), - [anon_sym_fn] = ACTIONS(2265), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_SLASH] = ACTIONS(2265), - [anon_sym_PERCENT] = ACTIONS(2265), - [anon_sym_LT] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(2265), - [anon_sym_EQ_EQ] = ACTIONS(2265), - [anon_sym_BANG_EQ] = ACTIONS(2265), - [anon_sym_LT_EQ] = ACTIONS(2265), - [anon_sym_GT_EQ] = ACTIONS(2265), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2265), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_struct] = ACTIONS(2265), - [anon_sym_mut] = ACTIONS(2265), - [anon_sym_PLUS_PLUS] = ACTIONS(2265), - [anon_sym_DASH_DASH] = ACTIONS(2265), - [anon_sym_QMARK] = ACTIONS(2265), - [anon_sym_BANG] = ACTIONS(2265), - [anon_sym_go] = ACTIONS(2265), - [anon_sym_spawn] = ACTIONS(2265), - [anon_sym_json_DOTdecode] = ACTIONS(2265), - [anon_sym_LBRACK2] = ACTIONS(2265), - [anon_sym_TILDE] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2265), - [anon_sym_AMP] = ACTIONS(2265), - [anon_sym_LT_DASH] = ACTIONS(2265), - [anon_sym_LT_LT] = ACTIONS(2265), - [anon_sym_GT_GT] = ACTIONS(2265), - [anon_sym_GT_GT_GT] = ACTIONS(2265), - [anon_sym_AMP_CARET] = ACTIONS(2265), - [anon_sym_AMP_AMP] = ACTIONS(2265), - [anon_sym_PIPE_PIPE] = ACTIONS(2265), - [anon_sym_or] = ACTIONS(2265), - [sym_none] = ACTIONS(2265), - [sym_true] = ACTIONS(2265), - [sym_false] = ACTIONS(2265), - [sym_nil] = ACTIONS(2265), - [anon_sym_QMARK_DOT] = ACTIONS(2265), - [anon_sym_POUND_LBRACK] = ACTIONS(2265), - [anon_sym_if] = ACTIONS(2265), - [anon_sym_DOLLARif] = ACTIONS(2265), - [anon_sym_is] = ACTIONS(2265), - [anon_sym_BANGis] = ACTIONS(2265), - [anon_sym_in] = ACTIONS(2265), - [anon_sym_BANGin] = ACTIONS(2265), - [anon_sym_match] = ACTIONS(2265), - [anon_sym_select] = ACTIONS(2265), - [anon_sym_lock] = ACTIONS(2265), - [anon_sym_rlock] = ACTIONS(2265), - [anon_sym_unsafe] = ACTIONS(2265), - [anon_sym_sql] = ACTIONS(2265), - [sym_int_literal] = ACTIONS(2265), - [sym_float_literal] = ACTIONS(2265), - [sym_rune_literal] = ACTIONS(2265), - [anon_sym_SQUOTE] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2265), - [anon_sym_c_SQUOTE] = ACTIONS(2265), - [anon_sym_c_DQUOTE] = ACTIONS(2265), - [anon_sym_r_SQUOTE] = ACTIONS(2265), - [anon_sym_r_DQUOTE] = ACTIONS(2265), - [sym_pseudo_compile_time_identifier] = ACTIONS(2265), - [anon_sym_shared] = ACTIONS(2265), - [anon_sym_map_LBRACK] = ACTIONS(2265), - [anon_sym_chan] = ACTIONS(2265), - [anon_sym_thread] = ACTIONS(2265), - [anon_sym_atomic] = ACTIONS(2265), + [anon_sym_SEMI] = ACTIONS(2627), + [anon_sym_DOT] = ACTIONS(2629), + [anon_sym_as] = ACTIONS(2629), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_COMMA] = ACTIONS(2627), + [anon_sym_RBRACE] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_RPAREN] = ACTIONS(2627), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_mut] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_QMARK] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_go] = ACTIONS(2627), + [anon_sym_spawn] = ACTIONS(2627), + [anon_sym_json_DOTdecode] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2629), + [anon_sym_LT_DASH] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT] = ACTIONS(2629), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_AMP_CARET] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_or] = ACTIONS(2629), + [sym_none] = ACTIONS(2627), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [sym_nil] = ACTIONS(2627), + [anon_sym_QMARK_DOT] = ACTIONS(2629), + [anon_sym_POUND_LBRACK] = ACTIONS(2629), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_DOLLARif] = ACTIONS(2627), + [anon_sym_is] = ACTIONS(2629), + [anon_sym_BANGis] = ACTIONS(2629), + [anon_sym_in] = ACTIONS(2629), + [anon_sym_BANGin] = ACTIONS(2629), + [anon_sym_match] = ACTIONS(2627), + [anon_sym_select] = ACTIONS(2627), + [anon_sym_lock] = ACTIONS(2627), + [anon_sym_rlock] = ACTIONS(2627), + [anon_sym_unsafe] = ACTIONS(2627), + [anon_sym_sql] = ACTIONS(2627), + [sym_int_literal] = ACTIONS(2627), + [sym_float_literal] = ACTIONS(2627), + [sym_rune_literal] = ACTIONS(2627), + [anon_sym_SQUOTE] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [anon_sym_c_SQUOTE] = ACTIONS(2627), + [anon_sym_c_DQUOTE] = ACTIONS(2627), + [anon_sym_r_SQUOTE] = ACTIONS(2627), + [anon_sym_r_DQUOTE] = ACTIONS(2627), + [sym_pseudo_compile_time_identifier] = ACTIONS(2627), + [anon_sym_shared] = ACTIONS(2627), + [anon_sym_map_LBRACK] = ACTIONS(2627), + [anon_sym_chan] = ACTIONS(2627), + [anon_sym_thread] = ACTIONS(2627), + [anon_sym_atomic] = ACTIONS(2627), }, [1215] = { [sym_line_comment] = STATE(1215), [sym_block_comment] = STATE(1215), - [sym_identifier] = ACTIONS(1809), - [anon_sym_LF] = ACTIONS(1809), - [anon_sym_CR] = ACTIONS(1809), - [anon_sym_CR_LF] = ACTIONS(1809), + [sym_identifier] = ACTIONS(2445), + [anon_sym_LF] = ACTIONS(2445), + [anon_sym_CR] = ACTIONS(2445), + [anon_sym_CR_LF] = ACTIONS(2445), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1809), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_as] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1809), - [anon_sym_RBRACE] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_RPAREN] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_fn] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_PERCENT] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_EQ_EQ] = ACTIONS(1809), - [anon_sym_BANG_EQ] = ACTIONS(1809), - [anon_sym_LT_EQ] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(1809), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_mut] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1809), - [anon_sym_json_DOTdecode] = ACTIONS(1809), - [anon_sym_LBRACK2] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_LT_DASH] = ACTIONS(1809), - [anon_sym_LT_LT] = ACTIONS(1809), - [anon_sym_GT_GT] = ACTIONS(1809), - [anon_sym_GT_GT_GT] = ACTIONS(1809), - [anon_sym_AMP_CARET] = ACTIONS(1809), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [anon_sym_PIPE_PIPE] = ACTIONS(1809), - [anon_sym_or] = ACTIONS(1809), - [sym_none] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_nil] = ACTIONS(1809), - [anon_sym_QMARK_DOT] = ACTIONS(1809), - [anon_sym_POUND_LBRACK] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_DOLLARif] = ACTIONS(1809), - [anon_sym_is] = ACTIONS(1809), - [anon_sym_BANGis] = ACTIONS(1809), - [anon_sym_in] = ACTIONS(1809), - [anon_sym_BANGin] = ACTIONS(1809), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_select] = ACTIONS(1809), - [anon_sym_lock] = ACTIONS(1809), - [anon_sym_rlock] = ACTIONS(1809), - [anon_sym_unsafe] = ACTIONS(1809), - [anon_sym_sql] = ACTIONS(1809), - [sym_int_literal] = ACTIONS(1809), - [sym_float_literal] = ACTIONS(1809), - [sym_rune_literal] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1809), - [anon_sym_c_SQUOTE] = ACTIONS(1809), - [anon_sym_c_DQUOTE] = ACTIONS(1809), - [anon_sym_r_SQUOTE] = ACTIONS(1809), - [anon_sym_r_DQUOTE] = ACTIONS(1809), - [sym_pseudo_compile_time_identifier] = ACTIONS(1809), - [anon_sym_shared] = ACTIONS(1809), - [anon_sym_map_LBRACK] = ACTIONS(1809), - [anon_sym_chan] = ACTIONS(1809), - [anon_sym_thread] = ACTIONS(1809), - [anon_sym_atomic] = ACTIONS(1809), + [anon_sym_SEMI] = ACTIONS(2445), + [anon_sym_DOT] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_COMMA] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_RPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_PERCENT] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_GT] = ACTIONS(2445), + [anon_sym_EQ_EQ] = ACTIONS(2445), + [anon_sym_BANG_EQ] = ACTIONS(2445), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2445), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_struct] = ACTIONS(2445), + [anon_sym_mut] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(2445), + [anon_sym_DASH_DASH] = ACTIONS(2445), + [anon_sym_QMARK] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2445), + [anon_sym_go] = ACTIONS(2445), + [anon_sym_spawn] = ACTIONS(2445), + [anon_sym_json_DOTdecode] = ACTIONS(2445), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_LBRACK2] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2445), + [anon_sym_CARET] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_LT_DASH] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2445), + [anon_sym_GT_GT] = ACTIONS(2445), + [anon_sym_GT_GT_GT] = ACTIONS(2445), + [anon_sym_AMP_CARET] = ACTIONS(2445), + [anon_sym_AMP_AMP] = ACTIONS(2445), + [anon_sym_PIPE_PIPE] = ACTIONS(2445), + [anon_sym_or] = ACTIONS(2445), + [sym_none] = ACTIONS(2445), + [sym_true] = ACTIONS(2445), + [sym_false] = ACTIONS(2445), + [sym_nil] = ACTIONS(2445), + [anon_sym_QMARK_DOT] = ACTIONS(2445), + [anon_sym_POUND_LBRACK] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_DOLLARif] = ACTIONS(2445), + [anon_sym_is] = ACTIONS(2445), + [anon_sym_BANGis] = ACTIONS(2445), + [anon_sym_in] = ACTIONS(2445), + [anon_sym_BANGin] = ACTIONS(2445), + [anon_sym_match] = ACTIONS(2445), + [anon_sym_select] = ACTIONS(2445), + [anon_sym_lock] = ACTIONS(2445), + [anon_sym_rlock] = ACTIONS(2445), + [anon_sym_unsafe] = ACTIONS(2445), + [anon_sym_sql] = ACTIONS(2445), + [sym_int_literal] = ACTIONS(2445), + [sym_float_literal] = ACTIONS(2445), + [sym_rune_literal] = ACTIONS(2445), + [anon_sym_SQUOTE] = ACTIONS(2445), + [anon_sym_DQUOTE] = ACTIONS(2445), + [anon_sym_c_SQUOTE] = ACTIONS(2445), + [anon_sym_c_DQUOTE] = ACTIONS(2445), + [anon_sym_r_SQUOTE] = ACTIONS(2445), + [anon_sym_r_DQUOTE] = ACTIONS(2445), + [sym_pseudo_compile_time_identifier] = ACTIONS(2445), + [anon_sym_shared] = ACTIONS(2445), + [anon_sym_map_LBRACK] = ACTIONS(2445), + [anon_sym_chan] = ACTIONS(2445), + [anon_sym_thread] = ACTIONS(2445), + [anon_sym_atomic] = ACTIONS(2445), }, [1216] = { [sym_line_comment] = STATE(1216), [sym_block_comment] = STATE(1216), - [sym_identifier] = ACTIONS(2809), - [anon_sym_LF] = ACTIONS(2809), - [anon_sym_CR] = ACTIONS(2809), - [anon_sym_CR_LF] = ACTIONS(2809), + [sym_identifier] = ACTIONS(2977), + [anon_sym_LF] = ACTIONS(2977), + [anon_sym_CR] = ACTIONS(2977), + [anon_sym_CR_LF] = ACTIONS(2977), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2809), - [anon_sym_DOT] = ACTIONS(2809), - [anon_sym_as] = ACTIONS(2809), - [anon_sym_LBRACE] = ACTIONS(2809), - [anon_sym_COMMA] = ACTIONS(2809), - [anon_sym_RBRACE] = ACTIONS(2809), - [anon_sym_LPAREN] = ACTIONS(2809), - [anon_sym_RPAREN] = ACTIONS(2809), - [anon_sym_PIPE] = ACTIONS(2809), - [anon_sym_fn] = ACTIONS(2809), - [anon_sym_PLUS] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2809), - [anon_sym_SLASH] = ACTIONS(2809), - [anon_sym_PERCENT] = ACTIONS(2809), - [anon_sym_LT] = ACTIONS(2809), - [anon_sym_GT] = ACTIONS(2809), - [anon_sym_EQ_EQ] = ACTIONS(2809), - [anon_sym_BANG_EQ] = ACTIONS(2809), - [anon_sym_LT_EQ] = ACTIONS(2809), - [anon_sym_GT_EQ] = ACTIONS(2809), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_struct] = ACTIONS(2809), - [anon_sym_mut] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2809), - [anon_sym_DASH_DASH] = ACTIONS(2809), - [anon_sym_QMARK] = ACTIONS(2809), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_go] = ACTIONS(2809), - [anon_sym_spawn] = ACTIONS(2809), - [anon_sym_json_DOTdecode] = ACTIONS(2809), - [anon_sym_LBRACK2] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_CARET] = ACTIONS(2809), - [anon_sym_AMP] = ACTIONS(2809), - [anon_sym_LT_DASH] = ACTIONS(2809), - [anon_sym_LT_LT] = ACTIONS(2809), - [anon_sym_GT_GT] = ACTIONS(2809), - [anon_sym_GT_GT_GT] = ACTIONS(2809), - [anon_sym_AMP_CARET] = ACTIONS(2809), - [anon_sym_AMP_AMP] = ACTIONS(2809), - [anon_sym_PIPE_PIPE] = ACTIONS(2809), - [anon_sym_or] = ACTIONS(2809), - [sym_none] = ACTIONS(2809), - [sym_true] = ACTIONS(2809), - [sym_false] = ACTIONS(2809), - [sym_nil] = ACTIONS(2809), - [anon_sym_QMARK_DOT] = ACTIONS(2809), - [anon_sym_POUND_LBRACK] = ACTIONS(2809), - [anon_sym_if] = ACTIONS(2809), - [anon_sym_DOLLARif] = ACTIONS(2809), - [anon_sym_is] = ACTIONS(2809), - [anon_sym_BANGis] = ACTIONS(2809), - [anon_sym_in] = ACTIONS(2809), - [anon_sym_BANGin] = ACTIONS(2809), - [anon_sym_match] = ACTIONS(2809), - [anon_sym_select] = ACTIONS(2809), - [anon_sym_lock] = ACTIONS(2809), - [anon_sym_rlock] = ACTIONS(2809), - [anon_sym_unsafe] = ACTIONS(2809), - [anon_sym_sql] = ACTIONS(2809), - [sym_int_literal] = ACTIONS(2809), - [sym_float_literal] = ACTIONS(2809), - [sym_rune_literal] = ACTIONS(2809), - [anon_sym_SQUOTE] = ACTIONS(2809), - [anon_sym_DQUOTE] = ACTIONS(2809), - [anon_sym_c_SQUOTE] = ACTIONS(2809), - [anon_sym_c_DQUOTE] = ACTIONS(2809), - [anon_sym_r_SQUOTE] = ACTIONS(2809), - [anon_sym_r_DQUOTE] = ACTIONS(2809), - [sym_pseudo_compile_time_identifier] = ACTIONS(2809), - [anon_sym_shared] = ACTIONS(2809), - [anon_sym_map_LBRACK] = ACTIONS(2809), - [anon_sym_chan] = ACTIONS(2809), - [anon_sym_thread] = ACTIONS(2809), - [anon_sym_atomic] = ACTIONS(2809), + [anon_sym_SEMI] = ACTIONS(2977), + [anon_sym_DOT] = ACTIONS(2977), + [anon_sym_as] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2977), + [anon_sym_COMMA] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(2977), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_RPAREN] = ACTIONS(2977), + [anon_sym_fn] = ACTIONS(2977), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2977), + [anon_sym_SLASH] = ACTIONS(2977), + [anon_sym_PERCENT] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_GT] = ACTIONS(2977), + [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_DOT_DOT_DOT] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2975), + [anon_sym_struct] = ACTIONS(2977), + [anon_sym_mut] = ACTIONS(2977), + [anon_sym_PLUS_PLUS] = ACTIONS(2977), + [anon_sym_DASH_DASH] = ACTIONS(2977), + [anon_sym_QMARK] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_go] = ACTIONS(2977), + [anon_sym_spawn] = ACTIONS(2977), + [anon_sym_json_DOTdecode] = ACTIONS(2977), + [anon_sym_PIPE] = ACTIONS(2977), + [anon_sym_LBRACK2] = ACTIONS(2977), + [anon_sym_TILDE] = ACTIONS(2977), + [anon_sym_CARET] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_LT_DASH] = ACTIONS(2977), + [anon_sym_LT_LT] = ACTIONS(2977), + [anon_sym_GT_GT] = ACTIONS(2977), + [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(2977), + [sym_none] = ACTIONS(2977), + [sym_true] = ACTIONS(2977), + [sym_false] = ACTIONS(2977), + [sym_nil] = ACTIONS(2977), + [anon_sym_QMARK_DOT] = ACTIONS(2977), + [anon_sym_POUND_LBRACK] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_DOLLARif] = ACTIONS(2977), + [anon_sym_is] = ACTIONS(2977), + [anon_sym_BANGis] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2977), + [anon_sym_BANGin] = ACTIONS(2977), + [anon_sym_match] = ACTIONS(2977), + [anon_sym_select] = ACTIONS(2977), + [anon_sym_lock] = ACTIONS(2977), + [anon_sym_rlock] = ACTIONS(2977), + [anon_sym_unsafe] = ACTIONS(2977), + [anon_sym_sql] = ACTIONS(2977), + [sym_int_literal] = ACTIONS(2977), + [sym_float_literal] = ACTIONS(2977), + [sym_rune_literal] = ACTIONS(2977), + [anon_sym_SQUOTE] = ACTIONS(2977), + [anon_sym_DQUOTE] = ACTIONS(2977), + [anon_sym_c_SQUOTE] = ACTIONS(2977), + [anon_sym_c_DQUOTE] = ACTIONS(2977), + [anon_sym_r_SQUOTE] = ACTIONS(2977), + [anon_sym_r_DQUOTE] = ACTIONS(2977), + [sym_pseudo_compile_time_identifier] = ACTIONS(2977), + [anon_sym_shared] = ACTIONS(2977), + [anon_sym_map_LBRACK] = ACTIONS(2977), + [anon_sym_chan] = ACTIONS(2977), + [anon_sym_thread] = ACTIONS(2977), + [anon_sym_atomic] = ACTIONS(2977), }, [1217] = { [sym_line_comment] = STATE(1217), [sym_block_comment] = STATE(1217), - [sym_identifier] = ACTIONS(2245), - [anon_sym_LF] = ACTIONS(2245), - [anon_sym_CR] = ACTIONS(2245), - [anon_sym_CR_LF] = ACTIONS(2245), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_DOT] = ACTIONS(2245), - [anon_sym_as] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_COMMA] = ACTIONS(2245), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_RPAREN] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_fn] = ACTIONS(2245), - [anon_sym_PLUS] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_STAR] = ACTIONS(2245), - [anon_sym_SLASH] = ACTIONS(2245), - [anon_sym_PERCENT] = ACTIONS(2245), - [anon_sym_LT] = ACTIONS(2245), - [anon_sym_GT] = ACTIONS(2245), - [anon_sym_EQ_EQ] = ACTIONS(2245), - [anon_sym_BANG_EQ] = ACTIONS(2245), - [anon_sym_LT_EQ] = ACTIONS(2245), - [anon_sym_GT_EQ] = ACTIONS(2245), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2243), - [anon_sym_struct] = ACTIONS(2245), - [anon_sym_mut] = ACTIONS(2245), - [anon_sym_PLUS_PLUS] = ACTIONS(2245), - [anon_sym_DASH_DASH] = ACTIONS(2245), - [anon_sym_QMARK] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(2245), - [anon_sym_go] = ACTIONS(2245), - [anon_sym_spawn] = ACTIONS(2245), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2245), - [anon_sym_TILDE] = ACTIONS(2245), - [anon_sym_CARET] = ACTIONS(2245), - [anon_sym_AMP] = ACTIONS(2245), - [anon_sym_LT_DASH] = ACTIONS(2245), - [anon_sym_LT_LT] = ACTIONS(2245), - [anon_sym_GT_GT] = ACTIONS(2245), - [anon_sym_GT_GT_GT] = ACTIONS(2245), - [anon_sym_AMP_CARET] = ACTIONS(2245), - [anon_sym_AMP_AMP] = ACTIONS(2245), - [anon_sym_PIPE_PIPE] = ACTIONS(2245), - [anon_sym_or] = ACTIONS(2245), - [sym_none] = ACTIONS(2245), - [sym_true] = ACTIONS(2245), - [sym_false] = ACTIONS(2245), - [sym_nil] = ACTIONS(2245), - [anon_sym_QMARK_DOT] = ACTIONS(2245), - [anon_sym_POUND_LBRACK] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_DOLLARif] = ACTIONS(2245), - [anon_sym_is] = ACTIONS(2245), - [anon_sym_BANGis] = ACTIONS(2245), - [anon_sym_in] = ACTIONS(2245), - [anon_sym_BANGin] = ACTIONS(2245), - [anon_sym_match] = ACTIONS(2245), - [anon_sym_select] = ACTIONS(2245), - [anon_sym_lock] = ACTIONS(2245), - [anon_sym_rlock] = ACTIONS(2245), - [anon_sym_unsafe] = ACTIONS(2245), - [anon_sym_sql] = ACTIONS(2245), - [sym_int_literal] = ACTIONS(2245), - [sym_float_literal] = ACTIONS(2245), - [sym_rune_literal] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(2245), - [anon_sym_c_SQUOTE] = ACTIONS(2245), - [anon_sym_c_DQUOTE] = ACTIONS(2245), - [anon_sym_r_SQUOTE] = ACTIONS(2245), - [anon_sym_r_DQUOTE] = ACTIONS(2245), - [sym_pseudo_compile_time_identifier] = ACTIONS(2245), - [anon_sym_shared] = ACTIONS(2245), - [anon_sym_map_LBRACK] = ACTIONS(2245), - [anon_sym_chan] = ACTIONS(2245), - [anon_sym_thread] = ACTIONS(2245), - [anon_sym_atomic] = ACTIONS(2245), - }, - [1218] = { - [sym_line_comment] = STATE(1218), - [sym_block_comment] = STATE(1218), - [sym_identifier] = ACTIONS(2147), - [anon_sym_LF] = ACTIONS(2147), - [anon_sym_CR] = ACTIONS(2147), - [anon_sym_CR_LF] = ACTIONS(2147), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2147), - [anon_sym_DOT] = ACTIONS(2147), - [anon_sym_as] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_COMMA] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_RPAREN] = ACTIONS(2147), - [anon_sym_PIPE] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(2147), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2147), - [anon_sym_SLASH] = ACTIONS(2147), - [anon_sym_PERCENT] = ACTIONS(2147), - [anon_sym_LT] = ACTIONS(2147), - [anon_sym_GT] = ACTIONS(2147), - [anon_sym_EQ_EQ] = ACTIONS(2147), - [anon_sym_BANG_EQ] = ACTIONS(2147), - [anon_sym_LT_EQ] = ACTIONS(2147), - [anon_sym_GT_EQ] = ACTIONS(2147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_struct] = ACTIONS(2147), - [anon_sym_mut] = ACTIONS(2147), - [anon_sym_PLUS_PLUS] = ACTIONS(2147), - [anon_sym_DASH_DASH] = ACTIONS(2147), - [anon_sym_QMARK] = ACTIONS(2147), - [anon_sym_BANG] = ACTIONS(2147), - [anon_sym_go] = ACTIONS(2147), - [anon_sym_spawn] = ACTIONS(2147), - [anon_sym_json_DOTdecode] = ACTIONS(2147), - [anon_sym_LBRACK2] = ACTIONS(2147), - [anon_sym_TILDE] = ACTIONS(2147), - [anon_sym_CARET] = ACTIONS(2147), - [anon_sym_AMP] = ACTIONS(2147), - [anon_sym_LT_DASH] = ACTIONS(2147), - [anon_sym_LT_LT] = ACTIONS(2147), - [anon_sym_GT_GT] = ACTIONS(2147), - [anon_sym_GT_GT_GT] = ACTIONS(2147), - [anon_sym_AMP_CARET] = ACTIONS(2147), - [anon_sym_AMP_AMP] = ACTIONS(2147), - [anon_sym_PIPE_PIPE] = ACTIONS(2147), - [anon_sym_or] = ACTIONS(2147), - [sym_none] = ACTIONS(2147), - [sym_true] = ACTIONS(2147), - [sym_false] = ACTIONS(2147), - [sym_nil] = ACTIONS(2147), - [anon_sym_QMARK_DOT] = ACTIONS(2147), - [anon_sym_POUND_LBRACK] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_DOLLARif] = ACTIONS(2147), - [anon_sym_is] = ACTIONS(2147), - [anon_sym_BANGis] = ACTIONS(2147), - [anon_sym_in] = ACTIONS(2147), - [anon_sym_BANGin] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_select] = ACTIONS(2147), - [anon_sym_lock] = ACTIONS(2147), - [anon_sym_rlock] = ACTIONS(2147), - [anon_sym_unsafe] = ACTIONS(2147), - [anon_sym_sql] = ACTIONS(2147), - [sym_int_literal] = ACTIONS(2147), - [sym_float_literal] = ACTIONS(2147), - [sym_rune_literal] = ACTIONS(2147), - [anon_sym_SQUOTE] = ACTIONS(2147), - [anon_sym_DQUOTE] = ACTIONS(2147), - [anon_sym_c_SQUOTE] = ACTIONS(2147), - [anon_sym_c_DQUOTE] = ACTIONS(2147), - [anon_sym_r_SQUOTE] = ACTIONS(2147), - [anon_sym_r_DQUOTE] = ACTIONS(2147), - [sym_pseudo_compile_time_identifier] = ACTIONS(2147), - [anon_sym_shared] = ACTIONS(2147), - [anon_sym_map_LBRACK] = ACTIONS(2147), - [anon_sym_chan] = ACTIONS(2147), - [anon_sym_thread] = ACTIONS(2147), - [anon_sym_atomic] = ACTIONS(2147), - }, - [1219] = { - [sym_line_comment] = STATE(1219), - [sym_block_comment] = STATE(1219), - [sym_identifier] = ACTIONS(2029), - [anon_sym_LF] = ACTIONS(2029), - [anon_sym_CR] = ACTIONS(2029), - [anon_sym_CR_LF] = ACTIONS(2029), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2029), - [anon_sym_DOT] = ACTIONS(2029), - [anon_sym_as] = ACTIONS(2029), - [anon_sym_LBRACE] = ACTIONS(2029), - [anon_sym_COMMA] = ACTIONS(2029), - [anon_sym_RBRACE] = ACTIONS(2029), - [anon_sym_LPAREN] = ACTIONS(2029), - [anon_sym_RPAREN] = ACTIONS(2029), - [anon_sym_PIPE] = ACTIONS(2029), - [anon_sym_fn] = ACTIONS(2029), - [anon_sym_PLUS] = ACTIONS(2029), - [anon_sym_DASH] = ACTIONS(2029), - [anon_sym_STAR] = ACTIONS(2029), - [anon_sym_SLASH] = ACTIONS(2029), - [anon_sym_PERCENT] = ACTIONS(2029), - [anon_sym_LT] = ACTIONS(2029), - [anon_sym_GT] = ACTIONS(2029), - [anon_sym_EQ_EQ] = ACTIONS(2029), - [anon_sym_BANG_EQ] = ACTIONS(2029), - [anon_sym_LT_EQ] = ACTIONS(2029), - [anon_sym_GT_EQ] = ACTIONS(2029), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2029), - [anon_sym_LBRACK] = ACTIONS(2031), - [anon_sym_struct] = ACTIONS(2029), - [anon_sym_mut] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_QMARK] = ACTIONS(2029), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_go] = ACTIONS(2029), - [anon_sym_spawn] = ACTIONS(2029), - [anon_sym_json_DOTdecode] = ACTIONS(2029), - [anon_sym_LBRACK2] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_LT_DASH] = ACTIONS(2029), - [anon_sym_LT_LT] = ACTIONS(2029), - [anon_sym_GT_GT] = ACTIONS(2029), - [anon_sym_GT_GT_GT] = ACTIONS(2029), - [anon_sym_AMP_CARET] = ACTIONS(2029), - [anon_sym_AMP_AMP] = ACTIONS(2029), - [anon_sym_PIPE_PIPE] = ACTIONS(2029), - [anon_sym_or] = ACTIONS(2029), - [sym_none] = ACTIONS(2029), - [sym_true] = ACTIONS(2029), - [sym_false] = ACTIONS(2029), - [sym_nil] = ACTIONS(2029), - [anon_sym_QMARK_DOT] = ACTIONS(2029), - [anon_sym_POUND_LBRACK] = ACTIONS(2029), - [anon_sym_if] = ACTIONS(2029), - [anon_sym_DOLLARif] = ACTIONS(2029), - [anon_sym_is] = ACTIONS(2029), - [anon_sym_BANGis] = ACTIONS(2029), - [anon_sym_in] = ACTIONS(2029), - [anon_sym_BANGin] = ACTIONS(2029), - [anon_sym_match] = ACTIONS(2029), - [anon_sym_select] = ACTIONS(2029), - [anon_sym_lock] = ACTIONS(2029), - [anon_sym_rlock] = ACTIONS(2029), - [anon_sym_unsafe] = ACTIONS(2029), - [anon_sym_sql] = ACTIONS(2029), - [sym_int_literal] = ACTIONS(2029), - [sym_float_literal] = ACTIONS(2029), - [sym_rune_literal] = ACTIONS(2029), - [anon_sym_SQUOTE] = ACTIONS(2029), - [anon_sym_DQUOTE] = ACTIONS(2029), - [anon_sym_c_SQUOTE] = ACTIONS(2029), - [anon_sym_c_DQUOTE] = ACTIONS(2029), - [anon_sym_r_SQUOTE] = ACTIONS(2029), - [anon_sym_r_DQUOTE] = ACTIONS(2029), - [sym_pseudo_compile_time_identifier] = ACTIONS(2029), - [anon_sym_shared] = ACTIONS(2029), - [anon_sym_map_LBRACK] = ACTIONS(2029), - [anon_sym_chan] = ACTIONS(2029), - [anon_sym_thread] = ACTIONS(2029), - [anon_sym_atomic] = ACTIONS(2029), - }, - [1220] = { - [sym_line_comment] = STATE(1220), - [sym_block_comment] = STATE(1220), - [sym_identifier] = ACTIONS(2813), - [anon_sym_LF] = ACTIONS(2813), - [anon_sym_CR] = ACTIONS(2813), - [anon_sym_CR_LF] = ACTIONS(2813), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2813), - [anon_sym_DOT] = ACTIONS(2813), - [anon_sym_as] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2813), - [anon_sym_COMMA] = ACTIONS(2813), - [anon_sym_RBRACE] = ACTIONS(2813), - [anon_sym_LPAREN] = ACTIONS(2813), - [anon_sym_RPAREN] = ACTIONS(2813), - [anon_sym_PIPE] = ACTIONS(2813), - [anon_sym_fn] = ACTIONS(2813), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_SLASH] = ACTIONS(2813), - [anon_sym_PERCENT] = ACTIONS(2813), - [anon_sym_LT] = ACTIONS(2813), - [anon_sym_GT] = ACTIONS(2813), - [anon_sym_EQ_EQ] = ACTIONS(2813), - [anon_sym_BANG_EQ] = ACTIONS(2813), - [anon_sym_LT_EQ] = ACTIONS(2813), - [anon_sym_GT_EQ] = ACTIONS(2813), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_struct] = ACTIONS(2813), - [anon_sym_mut] = ACTIONS(2813), - [anon_sym_PLUS_PLUS] = ACTIONS(2813), - [anon_sym_DASH_DASH] = ACTIONS(2813), - [anon_sym_QMARK] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(2813), - [anon_sym_go] = ACTIONS(2813), - [anon_sym_spawn] = ACTIONS(2813), - [anon_sym_json_DOTdecode] = ACTIONS(2813), - [anon_sym_LBRACK2] = ACTIONS(2813), - [anon_sym_TILDE] = ACTIONS(2813), - [anon_sym_CARET] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_LT_DASH] = ACTIONS(2813), - [anon_sym_LT_LT] = ACTIONS(2813), - [anon_sym_GT_GT] = ACTIONS(2813), - [anon_sym_GT_GT_GT] = ACTIONS(2813), - [anon_sym_AMP_CARET] = ACTIONS(2813), - [anon_sym_AMP_AMP] = ACTIONS(2813), - [anon_sym_PIPE_PIPE] = ACTIONS(2813), - [anon_sym_or] = ACTIONS(2813), - [sym_none] = ACTIONS(2813), - [sym_true] = ACTIONS(2813), - [sym_false] = ACTIONS(2813), - [sym_nil] = ACTIONS(2813), - [anon_sym_QMARK_DOT] = ACTIONS(2813), - [anon_sym_POUND_LBRACK] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2813), - [anon_sym_DOLLARif] = ACTIONS(2813), - [anon_sym_is] = ACTIONS(2813), - [anon_sym_BANGis] = ACTIONS(2813), - [anon_sym_in] = ACTIONS(2813), - [anon_sym_BANGin] = ACTIONS(2813), - [anon_sym_match] = ACTIONS(2813), - [anon_sym_select] = ACTIONS(2813), - [anon_sym_lock] = ACTIONS(2813), - [anon_sym_rlock] = ACTIONS(2813), - [anon_sym_unsafe] = ACTIONS(2813), - [anon_sym_sql] = ACTIONS(2813), - [sym_int_literal] = ACTIONS(2813), - [sym_float_literal] = ACTIONS(2813), - [sym_rune_literal] = ACTIONS(2813), - [anon_sym_SQUOTE] = ACTIONS(2813), - [anon_sym_DQUOTE] = ACTIONS(2813), - [anon_sym_c_SQUOTE] = ACTIONS(2813), - [anon_sym_c_DQUOTE] = ACTIONS(2813), - [anon_sym_r_SQUOTE] = ACTIONS(2813), - [anon_sym_r_DQUOTE] = ACTIONS(2813), - [sym_pseudo_compile_time_identifier] = ACTIONS(2813), - [anon_sym_shared] = ACTIONS(2813), - [anon_sym_map_LBRACK] = ACTIONS(2813), - [anon_sym_chan] = ACTIONS(2813), - [anon_sym_thread] = ACTIONS(2813), - [anon_sym_atomic] = ACTIONS(2813), - }, - [1221] = { - [sym_line_comment] = STATE(1221), - [sym_block_comment] = STATE(1221), - [sym_identifier] = ACTIONS(2817), - [anon_sym_LF] = ACTIONS(2817), - [anon_sym_CR] = ACTIONS(2817), - [anon_sym_CR_LF] = ACTIONS(2817), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2817), - [anon_sym_DOT] = ACTIONS(2817), - [anon_sym_as] = ACTIONS(2817), - [anon_sym_LBRACE] = ACTIONS(2817), - [anon_sym_COMMA] = ACTIONS(2817), - [anon_sym_RBRACE] = ACTIONS(2817), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_RPAREN] = ACTIONS(2817), - [anon_sym_PIPE] = ACTIONS(2817), - [anon_sym_fn] = ACTIONS(2817), - [anon_sym_PLUS] = ACTIONS(2817), - [anon_sym_DASH] = ACTIONS(2817), - [anon_sym_STAR] = ACTIONS(2817), - [anon_sym_SLASH] = ACTIONS(2817), - [anon_sym_PERCENT] = ACTIONS(2817), - [anon_sym_LT] = ACTIONS(2817), - [anon_sym_GT] = ACTIONS(2817), - [anon_sym_EQ_EQ] = ACTIONS(2817), - [anon_sym_BANG_EQ] = ACTIONS(2817), - [anon_sym_LT_EQ] = ACTIONS(2817), - [anon_sym_GT_EQ] = ACTIONS(2817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(2817), - [anon_sym_mut] = ACTIONS(2817), - [anon_sym_PLUS_PLUS] = ACTIONS(2817), - [anon_sym_DASH_DASH] = ACTIONS(2817), - [anon_sym_QMARK] = ACTIONS(2817), - [anon_sym_BANG] = ACTIONS(2817), - [anon_sym_go] = ACTIONS(2817), - [anon_sym_spawn] = ACTIONS(2817), - [anon_sym_json_DOTdecode] = ACTIONS(2817), - [anon_sym_LBRACK2] = ACTIONS(2817), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_CARET] = ACTIONS(2817), - [anon_sym_AMP] = ACTIONS(2817), - [anon_sym_LT_DASH] = ACTIONS(2817), - [anon_sym_LT_LT] = ACTIONS(2817), - [anon_sym_GT_GT] = ACTIONS(2817), - [anon_sym_GT_GT_GT] = ACTIONS(2817), - [anon_sym_AMP_CARET] = ACTIONS(2817), - [anon_sym_AMP_AMP] = ACTIONS(2817), - [anon_sym_PIPE_PIPE] = ACTIONS(2817), - [anon_sym_or] = ACTIONS(2817), - [sym_none] = ACTIONS(2817), - [sym_true] = ACTIONS(2817), - [sym_false] = ACTIONS(2817), - [sym_nil] = ACTIONS(2817), - [anon_sym_QMARK_DOT] = ACTIONS(2817), - [anon_sym_POUND_LBRACK] = ACTIONS(2817), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_DOLLARif] = ACTIONS(2817), - [anon_sym_is] = ACTIONS(2817), - [anon_sym_BANGis] = ACTIONS(2817), - [anon_sym_in] = ACTIONS(2817), - [anon_sym_BANGin] = ACTIONS(2817), - [anon_sym_match] = ACTIONS(2817), - [anon_sym_select] = ACTIONS(2817), - [anon_sym_lock] = ACTIONS(2817), - [anon_sym_rlock] = ACTIONS(2817), - [anon_sym_unsafe] = ACTIONS(2817), - [anon_sym_sql] = ACTIONS(2817), - [sym_int_literal] = ACTIONS(2817), - [sym_float_literal] = ACTIONS(2817), - [sym_rune_literal] = ACTIONS(2817), - [anon_sym_SQUOTE] = ACTIONS(2817), - [anon_sym_DQUOTE] = ACTIONS(2817), - [anon_sym_c_SQUOTE] = ACTIONS(2817), - [anon_sym_c_DQUOTE] = ACTIONS(2817), - [anon_sym_r_SQUOTE] = ACTIONS(2817), - [anon_sym_r_DQUOTE] = ACTIONS(2817), - [sym_pseudo_compile_time_identifier] = ACTIONS(2817), - [anon_sym_shared] = ACTIONS(2817), - [anon_sym_map_LBRACK] = ACTIONS(2817), - [anon_sym_chan] = ACTIONS(2817), - [anon_sym_thread] = ACTIONS(2817), - [anon_sym_atomic] = ACTIONS(2817), - }, - [1222] = { - [sym_line_comment] = STATE(1222), - [sym_block_comment] = STATE(1222), - [sym_identifier] = ACTIONS(2855), - [anon_sym_LF] = ACTIONS(2855), - [anon_sym_CR] = ACTIONS(2855), - [anon_sym_CR_LF] = ACTIONS(2855), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2855), - [anon_sym_DOT] = ACTIONS(2855), - [anon_sym_as] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_COMMA] = ACTIONS(2855), - [anon_sym_RBRACE] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym_RPAREN] = ACTIONS(2855), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_fn] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_SLASH] = ACTIONS(2855), - [anon_sym_PERCENT] = ACTIONS(2855), - [anon_sym_LT] = ACTIONS(2855), - [anon_sym_GT] = ACTIONS(2855), - [anon_sym_EQ_EQ] = ACTIONS(2855), - [anon_sym_BANG_EQ] = ACTIONS(2855), - [anon_sym_LT_EQ] = ACTIONS(2855), - [anon_sym_GT_EQ] = ACTIONS(2855), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_mut] = ACTIONS(2855), - [anon_sym_PLUS_PLUS] = ACTIONS(2855), - [anon_sym_DASH_DASH] = ACTIONS(2855), - [anon_sym_QMARK] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_go] = ACTIONS(2855), - [anon_sym_spawn] = ACTIONS(2855), - [anon_sym_json_DOTdecode] = ACTIONS(2855), - [anon_sym_LBRACK2] = ACTIONS(2855), - [anon_sym_TILDE] = ACTIONS(2855), - [anon_sym_CARET] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_LT_DASH] = ACTIONS(2855), - [anon_sym_LT_LT] = ACTIONS(2855), - [anon_sym_GT_GT] = ACTIONS(2855), - [anon_sym_GT_GT_GT] = ACTIONS(2855), - [anon_sym_AMP_CARET] = ACTIONS(2855), - [anon_sym_AMP_AMP] = ACTIONS(2855), - [anon_sym_PIPE_PIPE] = ACTIONS(2855), - [anon_sym_or] = ACTIONS(2855), - [sym_none] = ACTIONS(2855), - [sym_true] = ACTIONS(2855), - [sym_false] = ACTIONS(2855), - [sym_nil] = ACTIONS(2855), - [anon_sym_QMARK_DOT] = ACTIONS(2855), - [anon_sym_POUND_LBRACK] = ACTIONS(2855), - [anon_sym_if] = ACTIONS(2855), - [anon_sym_DOLLARif] = ACTIONS(2855), - [anon_sym_is] = ACTIONS(2855), - [anon_sym_BANGis] = ACTIONS(2855), - [anon_sym_in] = ACTIONS(2855), - [anon_sym_BANGin] = ACTIONS(2855), - [anon_sym_match] = ACTIONS(2855), - [anon_sym_select] = ACTIONS(2855), - [anon_sym_lock] = ACTIONS(2855), - [anon_sym_rlock] = ACTIONS(2855), - [anon_sym_unsafe] = ACTIONS(2855), - [anon_sym_sql] = ACTIONS(2855), - [sym_int_literal] = ACTIONS(2855), - [sym_float_literal] = ACTIONS(2855), - [sym_rune_literal] = ACTIONS(2855), - [anon_sym_SQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [anon_sym_c_SQUOTE] = ACTIONS(2855), - [anon_sym_c_DQUOTE] = ACTIONS(2855), - [anon_sym_r_SQUOTE] = ACTIONS(2855), - [anon_sym_r_DQUOTE] = ACTIONS(2855), - [sym_pseudo_compile_time_identifier] = ACTIONS(2855), - [anon_sym_shared] = ACTIONS(2855), - [anon_sym_map_LBRACK] = ACTIONS(2855), - [anon_sym_chan] = ACTIONS(2855), - [anon_sym_thread] = ACTIONS(2855), - [anon_sym_atomic] = ACTIONS(2855), - }, - [1223] = { - [sym_line_comment] = STATE(1223), - [sym_block_comment] = STATE(1223), - [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_SEMI] = ACTIONS(3781), - [anon_sym_DOT] = ACTIONS(3792), - [anon_sym_as] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_COMMA] = ACTIONS(3781), - [anon_sym_RBRACE] = ACTIONS(3778), - [anon_sym_LPAREN] = ACTIONS(2887), - [anon_sym_PIPE] = ACTIONS(2887), - [anon_sym_fn] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2887), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_EQ_EQ] = ACTIONS(2887), - [anon_sym_BANG_EQ] = ACTIONS(2887), - [anon_sym_LT_EQ] = ACTIONS(2887), - [anon_sym_GT_EQ] = ACTIONS(2887), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3784), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2887), - [anon_sym_mut] = ACTIONS(2887), - [anon_sym_COLON] = ACTIONS(3786), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [anon_sym_QMARK] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_go] = ACTIONS(2887), - [anon_sym_spawn] = ACTIONS(2887), - [anon_sym_json_DOTdecode] = ACTIONS(2887), - [anon_sym_LBRACK2] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_CARET] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2887), - [anon_sym_LT_LT] = ACTIONS(2887), - [anon_sym_GT_GT] = ACTIONS(2887), - [anon_sym_GT_GT_GT] = ACTIONS(2887), - [anon_sym_AMP_CARET] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_PIPE_PIPE] = ACTIONS(2887), - [anon_sym_or] = ACTIONS(2887), - [sym_none] = ACTIONS(2887), - [sym_true] = ACTIONS(2887), - [sym_false] = ACTIONS(2887), - [sym_nil] = ACTIONS(2887), - [anon_sym_QMARK_DOT] = ACTIONS(2887), - [anon_sym_POUND_LBRACK] = ACTIONS(2887), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_DOLLARif] = ACTIONS(2887), - [anon_sym_is] = ACTIONS(2887), - [anon_sym_BANGis] = ACTIONS(2887), - [anon_sym_in] = ACTIONS(2887), - [anon_sym_BANGin] = ACTIONS(2887), - [anon_sym_match] = ACTIONS(2887), - [anon_sym_select] = ACTIONS(2887), - [anon_sym_lock] = ACTIONS(2887), - [anon_sym_rlock] = ACTIONS(2887), - [anon_sym_unsafe] = ACTIONS(2887), - [anon_sym_sql] = ACTIONS(2887), - [sym_int_literal] = ACTIONS(2887), - [sym_float_literal] = ACTIONS(2887), - [sym_rune_literal] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [anon_sym_c_SQUOTE] = ACTIONS(2887), - [anon_sym_c_DQUOTE] = ACTIONS(2887), - [anon_sym_r_SQUOTE] = ACTIONS(2887), - [anon_sym_r_DQUOTE] = ACTIONS(2887), - [sym_pseudo_compile_time_identifier] = ACTIONS(2887), - [anon_sym_shared] = ACTIONS(2887), - [anon_sym_map_LBRACK] = ACTIONS(2887), - [anon_sym_chan] = ACTIONS(2887), - [anon_sym_thread] = ACTIONS(2887), - [anon_sym_atomic] = ACTIONS(2887), - }, - [1224] = { - [sym_line_comment] = STATE(1224), - [sym_block_comment] = STATE(1224), - [sym_identifier] = ACTIONS(2719), - [anon_sym_LF] = ACTIONS(2719), - [anon_sym_CR] = ACTIONS(2719), - [anon_sym_CR_LF] = ACTIONS(2719), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2719), - [anon_sym_DOT] = ACTIONS(2719), - [anon_sym_as] = ACTIONS(2719), - [anon_sym_LBRACE] = ACTIONS(2719), - [anon_sym_COMMA] = ACTIONS(2719), - [anon_sym_RBRACE] = ACTIONS(2719), - [anon_sym_LPAREN] = ACTIONS(2719), - [anon_sym_RPAREN] = ACTIONS(2719), - [anon_sym_PIPE] = ACTIONS(2719), - [anon_sym_fn] = ACTIONS(2719), - [anon_sym_PLUS] = ACTIONS(2719), - [anon_sym_DASH] = ACTIONS(2719), - [anon_sym_STAR] = ACTIONS(2719), - [anon_sym_SLASH] = ACTIONS(2719), - [anon_sym_PERCENT] = ACTIONS(2719), - [anon_sym_LT] = ACTIONS(2719), - [anon_sym_GT] = ACTIONS(2719), - [anon_sym_EQ_EQ] = ACTIONS(2719), - [anon_sym_BANG_EQ] = ACTIONS(2719), - [anon_sym_LT_EQ] = ACTIONS(2719), - [anon_sym_GT_EQ] = ACTIONS(2719), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2719), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_struct] = ACTIONS(2719), - [anon_sym_mut] = ACTIONS(2719), - [anon_sym_PLUS_PLUS] = ACTIONS(2719), - [anon_sym_DASH_DASH] = ACTIONS(2719), - [anon_sym_QMARK] = ACTIONS(2719), - [anon_sym_BANG] = ACTIONS(2719), - [anon_sym_go] = ACTIONS(2719), - [anon_sym_spawn] = ACTIONS(2719), - [anon_sym_json_DOTdecode] = ACTIONS(2719), - [anon_sym_LBRACK2] = ACTIONS(2719), - [anon_sym_TILDE] = ACTIONS(2719), - [anon_sym_CARET] = ACTIONS(2719), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_LT_DASH] = ACTIONS(2719), - [anon_sym_LT_LT] = ACTIONS(2719), - [anon_sym_GT_GT] = ACTIONS(2719), - [anon_sym_GT_GT_GT] = ACTIONS(2719), - [anon_sym_AMP_CARET] = ACTIONS(2719), - [anon_sym_AMP_AMP] = ACTIONS(2719), - [anon_sym_PIPE_PIPE] = ACTIONS(2719), - [anon_sym_or] = ACTIONS(2719), - [sym_none] = ACTIONS(2719), - [sym_true] = ACTIONS(2719), - [sym_false] = ACTIONS(2719), - [sym_nil] = ACTIONS(2719), - [anon_sym_QMARK_DOT] = ACTIONS(2719), - [anon_sym_POUND_LBRACK] = ACTIONS(2719), - [anon_sym_if] = ACTIONS(2719), - [anon_sym_DOLLARif] = ACTIONS(2719), - [anon_sym_is] = ACTIONS(2719), - [anon_sym_BANGis] = ACTIONS(2719), - [anon_sym_in] = ACTIONS(2719), - [anon_sym_BANGin] = ACTIONS(2719), - [anon_sym_match] = ACTIONS(2719), - [anon_sym_select] = ACTIONS(2719), - [anon_sym_lock] = ACTIONS(2719), - [anon_sym_rlock] = ACTIONS(2719), - [anon_sym_unsafe] = ACTIONS(2719), - [anon_sym_sql] = ACTIONS(2719), - [sym_int_literal] = ACTIONS(2719), - [sym_float_literal] = ACTIONS(2719), - [sym_rune_literal] = ACTIONS(2719), - [anon_sym_SQUOTE] = ACTIONS(2719), - [anon_sym_DQUOTE] = ACTIONS(2719), - [anon_sym_c_SQUOTE] = ACTIONS(2719), - [anon_sym_c_DQUOTE] = ACTIONS(2719), - [anon_sym_r_SQUOTE] = ACTIONS(2719), - [anon_sym_r_DQUOTE] = ACTIONS(2719), - [sym_pseudo_compile_time_identifier] = ACTIONS(2719), - [anon_sym_shared] = ACTIONS(2719), - [anon_sym_map_LBRACK] = ACTIONS(2719), - [anon_sym_chan] = ACTIONS(2719), - [anon_sym_thread] = ACTIONS(2719), - [anon_sym_atomic] = ACTIONS(2719), - }, - [1225] = { - [sym_line_comment] = STATE(1225), - [sym_block_comment] = STATE(1225), - [sym_identifier] = ACTIONS(2115), - [anon_sym_LF] = ACTIONS(2115), - [anon_sym_CR] = ACTIONS(2115), - [anon_sym_CR_LF] = ACTIONS(2115), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2115), - [anon_sym_DOT] = ACTIONS(2115), - [anon_sym_as] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(2115), - [anon_sym_COMMA] = ACTIONS(2115), - [anon_sym_RBRACE] = ACTIONS(2115), - [anon_sym_LPAREN] = ACTIONS(2115), - [anon_sym_RPAREN] = ACTIONS(2115), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_fn] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2115), - [anon_sym_SLASH] = ACTIONS(2115), - [anon_sym_PERCENT] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(2115), - [anon_sym_GT] = ACTIONS(2115), - [anon_sym_EQ_EQ] = ACTIONS(2115), - [anon_sym_BANG_EQ] = ACTIONS(2115), - [anon_sym_LT_EQ] = ACTIONS(2115), - [anon_sym_GT_EQ] = ACTIONS(2115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_struct] = ACTIONS(2115), - [anon_sym_mut] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_go] = ACTIONS(2115), - [anon_sym_spawn] = ACTIONS(2115), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2115), - [anon_sym_LT_LT] = ACTIONS(2115), - [anon_sym_GT_GT] = ACTIONS(2115), - [anon_sym_GT_GT_GT] = ACTIONS(2115), - [anon_sym_AMP_CARET] = ACTIONS(2115), - [anon_sym_AMP_AMP] = ACTIONS(2115), - [anon_sym_PIPE_PIPE] = ACTIONS(2115), - [anon_sym_or] = ACTIONS(2115), - [sym_none] = ACTIONS(2115), - [sym_true] = ACTIONS(2115), - [sym_false] = ACTIONS(2115), - [sym_nil] = ACTIONS(2115), - [anon_sym_QMARK_DOT] = ACTIONS(2115), - [anon_sym_POUND_LBRACK] = ACTIONS(2115), - [anon_sym_if] = ACTIONS(2115), - [anon_sym_DOLLARif] = ACTIONS(2115), - [anon_sym_is] = ACTIONS(2115), - [anon_sym_BANGis] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(2115), - [anon_sym_BANGin] = ACTIONS(2115), - [anon_sym_match] = ACTIONS(2115), - [anon_sym_select] = ACTIONS(2115), - [anon_sym_lock] = ACTIONS(2115), - [anon_sym_rlock] = ACTIONS(2115), - [anon_sym_unsafe] = ACTIONS(2115), - [anon_sym_sql] = ACTIONS(2115), - [sym_int_literal] = ACTIONS(2115), - [sym_float_literal] = ACTIONS(2115), - [sym_rune_literal] = ACTIONS(2115), - [anon_sym_SQUOTE] = ACTIONS(2115), - [anon_sym_DQUOTE] = ACTIONS(2115), - [anon_sym_c_SQUOTE] = ACTIONS(2115), - [anon_sym_c_DQUOTE] = ACTIONS(2115), - [anon_sym_r_SQUOTE] = ACTIONS(2115), - [anon_sym_r_DQUOTE] = ACTIONS(2115), - [sym_pseudo_compile_time_identifier] = ACTIONS(2115), - [anon_sym_shared] = ACTIONS(2115), - [anon_sym_map_LBRACK] = ACTIONS(2115), - [anon_sym_chan] = ACTIONS(2115), - [anon_sym_thread] = ACTIONS(2115), - [anon_sym_atomic] = ACTIONS(2115), - }, - [1226] = { - [sym_line_comment] = STATE(1226), - [sym_block_comment] = STATE(1226), - [sym_identifier] = ACTIONS(2471), - [anon_sym_LF] = ACTIONS(2471), - [anon_sym_CR] = ACTIONS(2471), - [anon_sym_CR_LF] = ACTIONS(2471), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2471), - [anon_sym_DOT] = ACTIONS(2471), - [anon_sym_as] = ACTIONS(2471), - [anon_sym_LBRACE] = ACTIONS(2471), - [anon_sym_COMMA] = ACTIONS(2471), - [anon_sym_RBRACE] = ACTIONS(2471), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_RPAREN] = ACTIONS(2471), - [anon_sym_PIPE] = ACTIONS(2471), - [anon_sym_fn] = ACTIONS(2471), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_STAR] = ACTIONS(2471), - [anon_sym_SLASH] = ACTIONS(2471), - [anon_sym_PERCENT] = ACTIONS(2471), - [anon_sym_LT] = ACTIONS(2471), - [anon_sym_GT] = ACTIONS(2471), - [anon_sym_EQ_EQ] = ACTIONS(2471), - [anon_sym_BANG_EQ] = ACTIONS(2471), - [anon_sym_LT_EQ] = ACTIONS(2471), - [anon_sym_GT_EQ] = ACTIONS(2471), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2471), - [anon_sym_LBRACK] = ACTIONS(2469), - [anon_sym_struct] = ACTIONS(2471), - [anon_sym_mut] = ACTIONS(2471), - [anon_sym_PLUS_PLUS] = ACTIONS(2471), - [anon_sym_DASH_DASH] = ACTIONS(2471), - [anon_sym_QMARK] = ACTIONS(2471), - [anon_sym_BANG] = ACTIONS(2471), - [anon_sym_go] = ACTIONS(2471), - [anon_sym_spawn] = ACTIONS(2471), - [anon_sym_json_DOTdecode] = ACTIONS(2471), - [anon_sym_LBRACK2] = ACTIONS(2471), - [anon_sym_TILDE] = ACTIONS(2471), - [anon_sym_CARET] = ACTIONS(2471), - [anon_sym_AMP] = ACTIONS(2471), - [anon_sym_LT_DASH] = ACTIONS(2471), - [anon_sym_LT_LT] = ACTIONS(2471), - [anon_sym_GT_GT] = ACTIONS(2471), - [anon_sym_GT_GT_GT] = ACTIONS(2471), - [anon_sym_AMP_CARET] = ACTIONS(2471), - [anon_sym_AMP_AMP] = ACTIONS(2471), - [anon_sym_PIPE_PIPE] = ACTIONS(2471), - [anon_sym_or] = ACTIONS(2471), - [sym_none] = ACTIONS(2471), - [sym_true] = ACTIONS(2471), - [sym_false] = ACTIONS(2471), - [sym_nil] = ACTIONS(2471), - [anon_sym_QMARK_DOT] = ACTIONS(2471), - [anon_sym_POUND_LBRACK] = ACTIONS(2471), - [anon_sym_if] = ACTIONS(2471), - [anon_sym_DOLLARif] = ACTIONS(2471), - [anon_sym_is] = ACTIONS(2471), - [anon_sym_BANGis] = ACTIONS(2471), - [anon_sym_in] = ACTIONS(2471), - [anon_sym_BANGin] = ACTIONS(2471), - [anon_sym_match] = ACTIONS(2471), - [anon_sym_select] = ACTIONS(2471), - [anon_sym_lock] = ACTIONS(2471), - [anon_sym_rlock] = ACTIONS(2471), - [anon_sym_unsafe] = ACTIONS(2471), - [anon_sym_sql] = ACTIONS(2471), - [sym_int_literal] = ACTIONS(2471), - [sym_float_literal] = ACTIONS(2471), - [sym_rune_literal] = ACTIONS(2471), - [anon_sym_SQUOTE] = ACTIONS(2471), - [anon_sym_DQUOTE] = ACTIONS(2471), - [anon_sym_c_SQUOTE] = ACTIONS(2471), - [anon_sym_c_DQUOTE] = ACTIONS(2471), - [anon_sym_r_SQUOTE] = ACTIONS(2471), - [anon_sym_r_DQUOTE] = ACTIONS(2471), - [sym_pseudo_compile_time_identifier] = ACTIONS(2471), - [anon_sym_shared] = ACTIONS(2471), - [anon_sym_map_LBRACK] = ACTIONS(2471), - [anon_sym_chan] = ACTIONS(2471), - [anon_sym_thread] = ACTIONS(2471), - [anon_sym_atomic] = ACTIONS(2471), - }, - [1227] = { - [sym_line_comment] = STATE(1227), - [sym_block_comment] = STATE(1227), - [sym_identifier] = ACTIONS(2175), - [anon_sym_LF] = ACTIONS(2175), - [anon_sym_CR] = ACTIONS(2175), - [anon_sym_CR_LF] = ACTIONS(2175), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_RPAREN] = ACTIONS(2175), - [anon_sym_PIPE] = ACTIONS(2175), - [anon_sym_fn] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2175), - [anon_sym_PERCENT] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_GT] = ACTIONS(2175), - [anon_sym_EQ_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ] = ACTIONS(2175), - [anon_sym_LT_EQ] = ACTIONS(2175), - [anon_sym_GT_EQ] = ACTIONS(2175), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_struct] = ACTIONS(2175), - [anon_sym_mut] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [anon_sym_QMARK] = ACTIONS(2175), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_go] = ACTIONS(2175), - [anon_sym_spawn] = ACTIONS(2175), - [anon_sym_json_DOTdecode] = ACTIONS(2175), - [anon_sym_LBRACK2] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_CARET] = ACTIONS(2175), - [anon_sym_AMP] = ACTIONS(2175), - [anon_sym_LT_DASH] = ACTIONS(2175), - [anon_sym_LT_LT] = ACTIONS(2175), - [anon_sym_GT_GT] = ACTIONS(2175), - [anon_sym_GT_GT_GT] = ACTIONS(2175), - [anon_sym_AMP_CARET] = ACTIONS(2175), - [anon_sym_AMP_AMP] = ACTIONS(2175), - [anon_sym_PIPE_PIPE] = ACTIONS(2175), - [anon_sym_or] = ACTIONS(2175), - [sym_none] = ACTIONS(2175), - [sym_true] = ACTIONS(2175), - [sym_false] = ACTIONS(2175), - [sym_nil] = ACTIONS(2175), - [anon_sym_QMARK_DOT] = ACTIONS(2175), - [anon_sym_POUND_LBRACK] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_DOLLARif] = ACTIONS(2175), - [anon_sym_is] = ACTIONS(2175), - [anon_sym_BANGis] = ACTIONS(2175), - [anon_sym_in] = ACTIONS(2175), - [anon_sym_BANGin] = ACTIONS(2175), - [anon_sym_match] = ACTIONS(2175), - [anon_sym_select] = ACTIONS(2175), - [anon_sym_lock] = ACTIONS(2175), - [anon_sym_rlock] = ACTIONS(2175), - [anon_sym_unsafe] = ACTIONS(2175), - [anon_sym_sql] = ACTIONS(2175), - [sym_int_literal] = ACTIONS(2175), - [sym_float_literal] = ACTIONS(2175), - [sym_rune_literal] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_c_SQUOTE] = ACTIONS(2175), - [anon_sym_c_DQUOTE] = ACTIONS(2175), - [anon_sym_r_SQUOTE] = ACTIONS(2175), - [anon_sym_r_DQUOTE] = ACTIONS(2175), - [sym_pseudo_compile_time_identifier] = ACTIONS(2175), - [anon_sym_shared] = ACTIONS(2175), - [anon_sym_map_LBRACK] = ACTIONS(2175), - [anon_sym_chan] = ACTIONS(2175), - [anon_sym_thread] = ACTIONS(2175), - [anon_sym_atomic] = ACTIONS(2175), - }, - [1228] = { - [sym_line_comment] = STATE(1228), - [sym_block_comment] = STATE(1228), - [sym_identifier] = ACTIONS(2887), - [anon_sym_LF] = ACTIONS(2887), - [anon_sym_CR] = ACTIONS(2887), - [anon_sym_CR_LF] = ACTIONS(2887), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2887), - [anon_sym_DOT] = ACTIONS(3039), - [anon_sym_as] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_COMMA] = ACTIONS(2887), - [anon_sym_RBRACE] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(2887), - [anon_sym_RPAREN] = ACTIONS(2887), - [anon_sym_PIPE] = ACTIONS(2887), - [anon_sym_fn] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2887), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_EQ_EQ] = ACTIONS(2887), - [anon_sym_BANG_EQ] = ACTIONS(2887), - [anon_sym_LT_EQ] = ACTIONS(2887), - [anon_sym_GT_EQ] = ACTIONS(2887), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2887), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2887), - [anon_sym_mut] = ACTIONS(2887), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [anon_sym_QMARK] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_go] = ACTIONS(2887), - [anon_sym_spawn] = ACTIONS(2887), - [anon_sym_json_DOTdecode] = ACTIONS(2887), - [anon_sym_LBRACK2] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_CARET] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2887), - [anon_sym_LT_LT] = ACTIONS(2887), - [anon_sym_GT_GT] = ACTIONS(2887), - [anon_sym_GT_GT_GT] = ACTIONS(2887), - [anon_sym_AMP_CARET] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_PIPE_PIPE] = ACTIONS(2887), - [anon_sym_or] = ACTIONS(2887), - [sym_none] = ACTIONS(2887), - [sym_true] = ACTIONS(2887), - [sym_false] = ACTIONS(2887), - [sym_nil] = ACTIONS(2887), - [anon_sym_QMARK_DOT] = ACTIONS(2887), - [anon_sym_POUND_LBRACK] = ACTIONS(2887), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_DOLLARif] = ACTIONS(2887), - [anon_sym_is] = ACTIONS(2887), - [anon_sym_BANGis] = ACTIONS(2887), - [anon_sym_in] = ACTIONS(2887), - [anon_sym_BANGin] = ACTIONS(2887), - [anon_sym_match] = ACTIONS(2887), - [anon_sym_select] = ACTIONS(2887), - [anon_sym_lock] = ACTIONS(2887), - [anon_sym_rlock] = ACTIONS(2887), - [anon_sym_unsafe] = ACTIONS(2887), - [anon_sym_sql] = ACTIONS(2887), - [sym_int_literal] = ACTIONS(2887), - [sym_float_literal] = ACTIONS(2887), - [sym_rune_literal] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [anon_sym_c_SQUOTE] = ACTIONS(2887), - [anon_sym_c_DQUOTE] = ACTIONS(2887), - [anon_sym_r_SQUOTE] = ACTIONS(2887), - [anon_sym_r_DQUOTE] = ACTIONS(2887), - [sym_pseudo_compile_time_identifier] = ACTIONS(2887), - [anon_sym_shared] = ACTIONS(2887), - [anon_sym_map_LBRACK] = ACTIONS(2887), - [anon_sym_chan] = ACTIONS(2887), - [anon_sym_thread] = ACTIONS(2887), - [anon_sym_atomic] = ACTIONS(2887), - }, - [1229] = { - [sym_line_comment] = STATE(1229), - [sym_block_comment] = STATE(1229), - [sym_identifier] = ACTIONS(3025), - [anon_sym_LF] = ACTIONS(3025), - [anon_sym_CR] = ACTIONS(3025), - [anon_sym_CR_LF] = ACTIONS(3025), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_DOT] = ACTIONS(3025), - [anon_sym_as] = ACTIONS(3025), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_COMMA] = ACTIONS(3025), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(3025), - [anon_sym_RPAREN] = ACTIONS(3025), - [anon_sym_PIPE] = ACTIONS(3025), - [anon_sym_fn] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_SLASH] = ACTIONS(3025), - [anon_sym_PERCENT] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(3025), - [anon_sym_GT] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_mut] = ACTIONS(3025), - [anon_sym_PLUS_PLUS] = ACTIONS(3025), - [anon_sym_DASH_DASH] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3025), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_go] = ACTIONS(3025), - [anon_sym_spawn] = ACTIONS(3025), - [anon_sym_json_DOTdecode] = ACTIONS(3025), - [anon_sym_LBRACK2] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3025), - [anon_sym_CARET] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3025), - [anon_sym_LT_DASH] = ACTIONS(3025), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_GT_GT_GT] = ACTIONS(3025), - [anon_sym_AMP_CARET] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_or] = ACTIONS(3025), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_QMARK_DOT] = ACTIONS(3025), - [anon_sym_POUND_LBRACK] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3025), - [anon_sym_DOLLARif] = ACTIONS(3025), - [anon_sym_is] = ACTIONS(3025), - [anon_sym_BANGis] = ACTIONS(3025), - [anon_sym_in] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(3025), - [anon_sym_match] = ACTIONS(3025), - [anon_sym_select] = ACTIONS(3025), - [anon_sym_lock] = ACTIONS(3025), - [anon_sym_rlock] = ACTIONS(3025), - [anon_sym_unsafe] = ACTIONS(3025), - [anon_sym_sql] = ACTIONS(3025), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3025), - [sym_rune_literal] = ACTIONS(3025), - [anon_sym_SQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_c_SQUOTE] = ACTIONS(3025), - [anon_sym_c_DQUOTE] = ACTIONS(3025), - [anon_sym_r_SQUOTE] = ACTIONS(3025), - [anon_sym_r_DQUOTE] = ACTIONS(3025), - [sym_pseudo_compile_time_identifier] = ACTIONS(3025), - [anon_sym_shared] = ACTIONS(3025), - [anon_sym_map_LBRACK] = ACTIONS(3025), - [anon_sym_chan] = ACTIONS(3025), - [anon_sym_thread] = ACTIONS(3025), - [anon_sym_atomic] = ACTIONS(3025), - }, - [1230] = { - [sym_line_comment] = STATE(1230), - [sym_block_comment] = STATE(1230), - [sym_identifier] = ACTIONS(3029), - [anon_sym_LF] = ACTIONS(3029), - [anon_sym_CR] = ACTIONS(3029), - [anon_sym_CR_LF] = ACTIONS(3029), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_as] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(3029), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_RPAREN] = ACTIONS(3029), - [anon_sym_PIPE] = ACTIONS(3029), - [anon_sym_fn] = ACTIONS(3029), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_SLASH] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(3029), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_LT_EQ] = ACTIONS(3029), - [anon_sym_GT_EQ] = ACTIONS(3029), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3027), - [anon_sym_struct] = ACTIONS(3029), - [anon_sym_mut] = ACTIONS(3029), - [anon_sym_PLUS_PLUS] = ACTIONS(3029), - [anon_sym_DASH_DASH] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3029), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_go] = ACTIONS(3029), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(3029), - [anon_sym_LBRACK2] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LT_DASH] = ACTIONS(3029), - [anon_sym_LT_LT] = ACTIONS(3029), - [anon_sym_GT_GT] = ACTIONS(3029), - [anon_sym_GT_GT_GT] = ACTIONS(3029), - [anon_sym_AMP_CARET] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_PIPE_PIPE] = ACTIONS(3029), - [anon_sym_or] = ACTIONS(3029), - [sym_none] = ACTIONS(3029), - [sym_true] = ACTIONS(3029), - [sym_false] = ACTIONS(3029), - [sym_nil] = ACTIONS(3029), - [anon_sym_QMARK_DOT] = ACTIONS(3029), - [anon_sym_POUND_LBRACK] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3029), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_BANGin] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_select] = ACTIONS(3029), - [anon_sym_lock] = ACTIONS(3029), - [anon_sym_rlock] = ACTIONS(3029), - [anon_sym_unsafe] = ACTIONS(3029), - [anon_sym_sql] = ACTIONS(3029), - [sym_int_literal] = ACTIONS(3029), - [sym_float_literal] = ACTIONS(3029), - [sym_rune_literal] = ACTIONS(3029), - [anon_sym_SQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [anon_sym_c_SQUOTE] = ACTIONS(3029), - [anon_sym_c_DQUOTE] = ACTIONS(3029), - [anon_sym_r_SQUOTE] = ACTIONS(3029), - [anon_sym_r_DQUOTE] = ACTIONS(3029), - [sym_pseudo_compile_time_identifier] = ACTIONS(3029), - [anon_sym_shared] = ACTIONS(3029), - [anon_sym_map_LBRACK] = ACTIONS(3029), - [anon_sym_chan] = ACTIONS(3029), - [anon_sym_thread] = ACTIONS(3029), - [anon_sym_atomic] = ACTIONS(3029), - }, - [1231] = { - [sym_line_comment] = STATE(1231), - [sym_block_comment] = STATE(1231), - [sym_identifier] = ACTIONS(3046), - [anon_sym_LF] = ACTIONS(3046), - [anon_sym_CR] = ACTIONS(3046), - [anon_sym_CR_LF] = ACTIONS(3046), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3046), - [anon_sym_DOT] = ACTIONS(3046), - [anon_sym_as] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3046), - [anon_sym_RPAREN] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3046), - [anon_sym_fn] = ACTIONS(3046), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_SLASH] = ACTIONS(3046), - [anon_sym_PERCENT] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_GT] = ACTIONS(3046), - [anon_sym_EQ_EQ] = ACTIONS(3046), - [anon_sym_BANG_EQ] = ACTIONS(3046), - [anon_sym_LT_EQ] = ACTIONS(3046), - [anon_sym_GT_EQ] = ACTIONS(3046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3046), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_struct] = ACTIONS(3046), - [anon_sym_mut] = ACTIONS(3046), - [anon_sym_PLUS_PLUS] = ACTIONS(3046), - [anon_sym_DASH_DASH] = ACTIONS(3046), - [anon_sym_QMARK] = ACTIONS(3046), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_go] = ACTIONS(3046), - [anon_sym_spawn] = ACTIONS(3046), - [anon_sym_json_DOTdecode] = ACTIONS(3046), - [anon_sym_LBRACK2] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_CARET] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_LT_DASH] = ACTIONS(3046), - [anon_sym_LT_LT] = ACTIONS(3046), - [anon_sym_GT_GT] = ACTIONS(3046), - [anon_sym_GT_GT_GT] = ACTIONS(3046), - [anon_sym_AMP_CARET] = ACTIONS(3046), - [anon_sym_AMP_AMP] = ACTIONS(3046), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3046), - [sym_none] = ACTIONS(3046), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_nil] = ACTIONS(3046), - [anon_sym_QMARK_DOT] = ACTIONS(3046), - [anon_sym_POUND_LBRACK] = ACTIONS(3046), - [anon_sym_if] = ACTIONS(3046), - [anon_sym_DOLLARif] = ACTIONS(3046), - [anon_sym_is] = ACTIONS(3046), - [anon_sym_BANGis] = ACTIONS(3046), - [anon_sym_in] = ACTIONS(3046), - [anon_sym_BANGin] = ACTIONS(3046), - [anon_sym_match] = ACTIONS(3046), - [anon_sym_select] = ACTIONS(3046), - [anon_sym_lock] = ACTIONS(3046), - [anon_sym_rlock] = ACTIONS(3046), - [anon_sym_unsafe] = ACTIONS(3046), - [anon_sym_sql] = ACTIONS(3046), - [sym_int_literal] = ACTIONS(3046), - [sym_float_literal] = ACTIONS(3046), - [sym_rune_literal] = ACTIONS(3046), - [anon_sym_SQUOTE] = ACTIONS(3046), - [anon_sym_DQUOTE] = ACTIONS(3046), - [anon_sym_c_SQUOTE] = ACTIONS(3046), - [anon_sym_c_DQUOTE] = ACTIONS(3046), - [anon_sym_r_SQUOTE] = ACTIONS(3046), - [anon_sym_r_DQUOTE] = ACTIONS(3046), - [sym_pseudo_compile_time_identifier] = ACTIONS(3046), - [anon_sym_shared] = ACTIONS(3046), - [anon_sym_map_LBRACK] = ACTIONS(3046), - [anon_sym_chan] = ACTIONS(3046), - [anon_sym_thread] = ACTIONS(3046), - [anon_sym_atomic] = ACTIONS(3046), - }, - [1232] = { - [sym_line_comment] = STATE(1232), - [sym_block_comment] = STATE(1232), - [sym_identifier] = ACTIONS(2151), - [anon_sym_LF] = ACTIONS(2151), - [anon_sym_CR] = ACTIONS(2151), - [anon_sym_CR_LF] = ACTIONS(2151), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2151), - [anon_sym_DOT] = ACTIONS(2151), - [anon_sym_as] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_COMMA] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_RPAREN] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2151), - [anon_sym_fn] = ACTIONS(2151), - [anon_sym_PLUS] = ACTIONS(2151), - [anon_sym_DASH] = ACTIONS(2151), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_SLASH] = ACTIONS(2151), - [anon_sym_PERCENT] = ACTIONS(2151), - [anon_sym_LT] = ACTIONS(2151), - [anon_sym_GT] = ACTIONS(2151), - [anon_sym_EQ_EQ] = ACTIONS(2151), - [anon_sym_BANG_EQ] = ACTIONS(2151), - [anon_sym_LT_EQ] = ACTIONS(2151), - [anon_sym_GT_EQ] = ACTIONS(2151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_struct] = ACTIONS(2151), - [anon_sym_mut] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(2151), - [anon_sym_DASH_DASH] = ACTIONS(2151), - [anon_sym_QMARK] = ACTIONS(2151), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_go] = ACTIONS(2151), - [anon_sym_spawn] = ACTIONS(2151), - [anon_sym_json_DOTdecode] = ACTIONS(2151), - [anon_sym_LBRACK2] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_LT_DASH] = ACTIONS(2151), - [anon_sym_LT_LT] = ACTIONS(2151), - [anon_sym_GT_GT] = ACTIONS(2151), - [anon_sym_GT_GT_GT] = ACTIONS(2151), - [anon_sym_AMP_CARET] = ACTIONS(2151), - [anon_sym_AMP_AMP] = ACTIONS(2151), - [anon_sym_PIPE_PIPE] = ACTIONS(2151), - [anon_sym_or] = ACTIONS(2151), - [sym_none] = ACTIONS(2151), - [sym_true] = ACTIONS(2151), - [sym_false] = ACTIONS(2151), - [sym_nil] = ACTIONS(2151), - [anon_sym_QMARK_DOT] = ACTIONS(2151), - [anon_sym_POUND_LBRACK] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_DOLLARif] = ACTIONS(2151), - [anon_sym_is] = ACTIONS(2151), - [anon_sym_BANGis] = ACTIONS(2151), - [anon_sym_in] = ACTIONS(2151), - [anon_sym_BANGin] = ACTIONS(2151), - [anon_sym_match] = ACTIONS(2151), - [anon_sym_select] = ACTIONS(2151), - [anon_sym_lock] = ACTIONS(2151), - [anon_sym_rlock] = ACTIONS(2151), - [anon_sym_unsafe] = ACTIONS(2151), - [anon_sym_sql] = ACTIONS(2151), - [sym_int_literal] = ACTIONS(2151), - [sym_float_literal] = ACTIONS(2151), - [sym_rune_literal] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2151), - [anon_sym_c_SQUOTE] = ACTIONS(2151), - [anon_sym_c_DQUOTE] = ACTIONS(2151), - [anon_sym_r_SQUOTE] = ACTIONS(2151), - [anon_sym_r_DQUOTE] = ACTIONS(2151), - [sym_pseudo_compile_time_identifier] = ACTIONS(2151), - [anon_sym_shared] = ACTIONS(2151), - [anon_sym_map_LBRACK] = ACTIONS(2151), - [anon_sym_chan] = ACTIONS(2151), - [anon_sym_thread] = ACTIONS(2151), - [anon_sym_atomic] = ACTIONS(2151), - }, - [1233] = { - [sym_line_comment] = STATE(1233), - [sym_block_comment] = STATE(1233), - [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_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_SLASH] = 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), - [anon_sym_SQUOTE] = ACTIONS(2833), - [anon_sym_DQUOTE] = ACTIONS(2833), - [anon_sym_c_SQUOTE] = ACTIONS(2833), - [anon_sym_c_DQUOTE] = ACTIONS(2833), - [anon_sym_r_SQUOTE] = ACTIONS(2833), - [anon_sym_r_DQUOTE] = 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), - }, - [1234] = { - [sym_line_comment] = STATE(1234), - [sym_block_comment] = STATE(1234), - [sym_identifier] = ACTIONS(2707), - [anon_sym_LF] = ACTIONS(2707), - [anon_sym_CR] = ACTIONS(2707), - [anon_sym_CR_LF] = ACTIONS(2707), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2707), - [anon_sym_DOT] = ACTIONS(2707), - [anon_sym_as] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2707), - [anon_sym_COMMA] = ACTIONS(2707), - [anon_sym_RBRACE] = ACTIONS(2707), - [anon_sym_LPAREN] = ACTIONS(2707), - [anon_sym_RPAREN] = ACTIONS(2707), - [anon_sym_PIPE] = ACTIONS(2707), - [anon_sym_fn] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_SLASH] = ACTIONS(2707), - [anon_sym_PERCENT] = ACTIONS(2707), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_GT] = ACTIONS(2707), - [anon_sym_EQ_EQ] = ACTIONS(2707), - [anon_sym_BANG_EQ] = ACTIONS(2707), - [anon_sym_LT_EQ] = ACTIONS(2707), - [anon_sym_GT_EQ] = ACTIONS(2707), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2705), - [anon_sym_struct] = ACTIONS(2707), - [anon_sym_mut] = ACTIONS(2707), - [anon_sym_PLUS_PLUS] = ACTIONS(2707), - [anon_sym_DASH_DASH] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(2707), - [anon_sym_BANG] = ACTIONS(2707), - [anon_sym_go] = ACTIONS(2707), - [anon_sym_spawn] = ACTIONS(2707), - [anon_sym_json_DOTdecode] = ACTIONS(2707), - [anon_sym_LBRACK2] = ACTIONS(2707), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2707), - [anon_sym_LT_DASH] = ACTIONS(2707), - [anon_sym_LT_LT] = ACTIONS(2707), - [anon_sym_GT_GT] = ACTIONS(2707), - [anon_sym_GT_GT_GT] = ACTIONS(2707), - [anon_sym_AMP_CARET] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(2707), - [anon_sym_PIPE_PIPE] = ACTIONS(2707), - [anon_sym_or] = ACTIONS(2707), - [sym_none] = ACTIONS(2707), - [sym_true] = ACTIONS(2707), - [sym_false] = ACTIONS(2707), - [sym_nil] = ACTIONS(2707), - [anon_sym_QMARK_DOT] = ACTIONS(2707), - [anon_sym_POUND_LBRACK] = ACTIONS(2707), - [anon_sym_if] = ACTIONS(2707), - [anon_sym_DOLLARif] = ACTIONS(2707), - [anon_sym_is] = ACTIONS(2707), - [anon_sym_BANGis] = ACTIONS(2707), - [anon_sym_in] = ACTIONS(2707), - [anon_sym_BANGin] = ACTIONS(2707), - [anon_sym_match] = ACTIONS(2707), - [anon_sym_select] = ACTIONS(2707), - [anon_sym_lock] = ACTIONS(2707), - [anon_sym_rlock] = ACTIONS(2707), - [anon_sym_unsafe] = ACTIONS(2707), - [anon_sym_sql] = ACTIONS(2707), - [sym_int_literal] = ACTIONS(2707), - [sym_float_literal] = ACTIONS(2707), - [sym_rune_literal] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2707), - [anon_sym_c_SQUOTE] = ACTIONS(2707), - [anon_sym_c_DQUOTE] = ACTIONS(2707), - [anon_sym_r_SQUOTE] = ACTIONS(2707), - [anon_sym_r_DQUOTE] = ACTIONS(2707), - [sym_pseudo_compile_time_identifier] = ACTIONS(2707), - [anon_sym_shared] = ACTIONS(2707), - [anon_sym_map_LBRACK] = ACTIONS(2707), - [anon_sym_chan] = ACTIONS(2707), - [anon_sym_thread] = ACTIONS(2707), - [anon_sym_atomic] = ACTIONS(2707), - }, - [1235] = { - [sym_line_comment] = STATE(1235), - [sym_block_comment] = STATE(1235), [sym_identifier] = ACTIONS(2475), [anon_sym_LF] = ACTIONS(2475), [anon_sym_CR] = ACTIONS(2475), @@ -159373,7 +158157,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(2475), [anon_sym_LPAREN] = ACTIONS(2475), [anon_sym_RPAREN] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(2475), [anon_sym_fn] = ACTIONS(2475), [anon_sym_PLUS] = ACTIONS(2475), [anon_sym_DASH] = ACTIONS(2475), @@ -159397,6 +158180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(2475), [anon_sym_spawn] = ACTIONS(2475), [anon_sym_json_DOTdecode] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(2475), [anon_sym_LBRACK2] = ACTIONS(2475), [anon_sym_TILDE] = ACTIONS(2475), [anon_sym_CARET] = ACTIONS(2475), @@ -159443,1422 +158227,1683 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(2475), [anon_sym_atomic] = ACTIONS(2475), }, - [1236] = { - [sym_line_comment] = STATE(1236), - [sym_block_comment] = STATE(1236), - [sym_identifier] = ACTIONS(2163), - [anon_sym_LF] = ACTIONS(2163), - [anon_sym_CR] = ACTIONS(2163), - [anon_sym_CR_LF] = ACTIONS(2163), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2163), - [anon_sym_DOT] = ACTIONS(2163), - [anon_sym_as] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_COMMA] = ACTIONS(2163), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_RPAREN] = ACTIONS(2163), - [anon_sym_PIPE] = ACTIONS(2163), - [anon_sym_fn] = ACTIONS(2163), - [anon_sym_PLUS] = ACTIONS(2163), - [anon_sym_DASH] = ACTIONS(2163), - [anon_sym_STAR] = ACTIONS(2163), - [anon_sym_SLASH] = ACTIONS(2163), - [anon_sym_PERCENT] = ACTIONS(2163), - [anon_sym_LT] = ACTIONS(2163), - [anon_sym_GT] = ACTIONS(2163), - [anon_sym_EQ_EQ] = ACTIONS(2163), - [anon_sym_BANG_EQ] = ACTIONS(2163), - [anon_sym_LT_EQ] = ACTIONS(2163), - [anon_sym_GT_EQ] = ACTIONS(2163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2163), - [anon_sym_LBRACK] = ACTIONS(2161), - [anon_sym_struct] = ACTIONS(2163), - [anon_sym_mut] = ACTIONS(2163), - [anon_sym_PLUS_PLUS] = ACTIONS(2163), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [anon_sym_QMARK] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(2163), - [anon_sym_go] = ACTIONS(2163), - [anon_sym_spawn] = ACTIONS(2163), - [anon_sym_json_DOTdecode] = ACTIONS(2163), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2163), - [anon_sym_CARET] = ACTIONS(2163), - [anon_sym_AMP] = ACTIONS(2163), - [anon_sym_LT_DASH] = ACTIONS(2163), - [anon_sym_LT_LT] = ACTIONS(2163), - [anon_sym_GT_GT] = ACTIONS(2163), - [anon_sym_GT_GT_GT] = ACTIONS(2163), - [anon_sym_AMP_CARET] = ACTIONS(2163), - [anon_sym_AMP_AMP] = ACTIONS(2163), - [anon_sym_PIPE_PIPE] = ACTIONS(2163), - [anon_sym_or] = ACTIONS(2163), - [sym_none] = ACTIONS(2163), - [sym_true] = ACTIONS(2163), - [sym_false] = ACTIONS(2163), - [sym_nil] = ACTIONS(2163), - [anon_sym_QMARK_DOT] = ACTIONS(2163), - [anon_sym_POUND_LBRACK] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2163), - [anon_sym_DOLLARif] = ACTIONS(2163), - [anon_sym_is] = ACTIONS(2163), - [anon_sym_BANGis] = ACTIONS(2163), - [anon_sym_in] = ACTIONS(2163), - [anon_sym_BANGin] = ACTIONS(2163), - [anon_sym_match] = ACTIONS(2163), - [anon_sym_select] = ACTIONS(2163), - [anon_sym_lock] = ACTIONS(2163), - [anon_sym_rlock] = ACTIONS(2163), - [anon_sym_unsafe] = ACTIONS(2163), - [anon_sym_sql] = ACTIONS(2163), - [sym_int_literal] = ACTIONS(2163), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(2163), - [anon_sym_c_SQUOTE] = ACTIONS(2163), - [anon_sym_c_DQUOTE] = ACTIONS(2163), - [anon_sym_r_SQUOTE] = ACTIONS(2163), - [anon_sym_r_DQUOTE] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(2163), - [anon_sym_shared] = ACTIONS(2163), - [anon_sym_map_LBRACK] = ACTIONS(2163), - [anon_sym_chan] = ACTIONS(2163), - [anon_sym_thread] = ACTIONS(2163), - [anon_sym_atomic] = ACTIONS(2163), - }, - [1237] = { - [sym_line_comment] = STATE(1237), - [sym_block_comment] = STATE(1237), - [sym_identifier] = ACTIONS(2749), - [anon_sym_LF] = ACTIONS(2749), - [anon_sym_CR] = ACTIONS(2749), - [anon_sym_CR_LF] = ACTIONS(2749), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2749), - [anon_sym_DOT] = ACTIONS(2749), - [anon_sym_as] = ACTIONS(2749), - [anon_sym_LBRACE] = ACTIONS(2749), - [anon_sym_COMMA] = ACTIONS(2749), - [anon_sym_RBRACE] = ACTIONS(2749), - [anon_sym_LPAREN] = ACTIONS(2749), - [anon_sym_RPAREN] = ACTIONS(2749), - [anon_sym_PIPE] = ACTIONS(2749), - [anon_sym_fn] = ACTIONS(2749), - [anon_sym_PLUS] = ACTIONS(2749), - [anon_sym_DASH] = ACTIONS(2749), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_SLASH] = ACTIONS(2749), - [anon_sym_PERCENT] = ACTIONS(2749), - [anon_sym_LT] = ACTIONS(2749), - [anon_sym_GT] = ACTIONS(2749), - [anon_sym_EQ_EQ] = ACTIONS(2749), - [anon_sym_BANG_EQ] = ACTIONS(2749), - [anon_sym_LT_EQ] = ACTIONS(2749), - [anon_sym_GT_EQ] = ACTIONS(2749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2749), - [anon_sym_LBRACK] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2749), - [anon_sym_mut] = ACTIONS(2749), - [anon_sym_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_DASH_DASH] = ACTIONS(2749), - [anon_sym_QMARK] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2749), - [anon_sym_go] = ACTIONS(2749), - [anon_sym_spawn] = ACTIONS(2749), - [anon_sym_json_DOTdecode] = ACTIONS(2749), - [anon_sym_LBRACK2] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2749), - [anon_sym_CARET] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2749), - [anon_sym_LT_DASH] = ACTIONS(2749), - [anon_sym_LT_LT] = ACTIONS(2749), - [anon_sym_GT_GT] = ACTIONS(2749), - [anon_sym_GT_GT_GT] = ACTIONS(2749), - [anon_sym_AMP_CARET] = ACTIONS(2749), - [anon_sym_AMP_AMP] = ACTIONS(2749), - [anon_sym_PIPE_PIPE] = ACTIONS(2749), - [anon_sym_or] = ACTIONS(2749), - [sym_none] = ACTIONS(2749), - [sym_true] = ACTIONS(2749), - [sym_false] = ACTIONS(2749), - [sym_nil] = ACTIONS(2749), - [anon_sym_QMARK_DOT] = ACTIONS(2749), - [anon_sym_POUND_LBRACK] = ACTIONS(2749), - [anon_sym_if] = ACTIONS(2749), - [anon_sym_DOLLARif] = ACTIONS(2749), - [anon_sym_is] = ACTIONS(2749), - [anon_sym_BANGis] = ACTIONS(2749), - [anon_sym_in] = ACTIONS(2749), - [anon_sym_BANGin] = ACTIONS(2749), - [anon_sym_match] = ACTIONS(2749), - [anon_sym_select] = ACTIONS(2749), - [anon_sym_lock] = ACTIONS(2749), - [anon_sym_rlock] = ACTIONS(2749), - [anon_sym_unsafe] = ACTIONS(2749), - [anon_sym_sql] = ACTIONS(2749), - [sym_int_literal] = ACTIONS(2749), - [sym_float_literal] = ACTIONS(2749), - [sym_rune_literal] = ACTIONS(2749), - [anon_sym_SQUOTE] = ACTIONS(2749), - [anon_sym_DQUOTE] = ACTIONS(2749), - [anon_sym_c_SQUOTE] = ACTIONS(2749), - [anon_sym_c_DQUOTE] = ACTIONS(2749), - [anon_sym_r_SQUOTE] = ACTIONS(2749), - [anon_sym_r_DQUOTE] = ACTIONS(2749), - [sym_pseudo_compile_time_identifier] = ACTIONS(2749), - [anon_sym_shared] = ACTIONS(2749), - [anon_sym_map_LBRACK] = ACTIONS(2749), - [anon_sym_chan] = ACTIONS(2749), - [anon_sym_thread] = ACTIONS(2749), - [anon_sym_atomic] = ACTIONS(2749), - }, - [1238] = { - [sym_line_comment] = STATE(1238), - [sym_block_comment] = STATE(1238), - [sym_identifier] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2547), - [anon_sym_CR] = ACTIONS(2547), - [anon_sym_CR_LF] = ACTIONS(2547), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_DOT] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_COMMA] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_fn] = ACTIONS(2547), - [anon_sym_PLUS] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_STAR] = ACTIONS(2547), - [anon_sym_SLASH] = ACTIONS(2547), - [anon_sym_PERCENT] = ACTIONS(2547), - [anon_sym_LT] = ACTIONS(2547), - [anon_sym_GT] = ACTIONS(2547), - [anon_sym_EQ_EQ] = ACTIONS(2547), - [anon_sym_BANG_EQ] = ACTIONS(2547), - [anon_sym_LT_EQ] = ACTIONS(2547), - [anon_sym_GT_EQ] = ACTIONS(2547), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2545), - [anon_sym_struct] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_PLUS_PLUS] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [anon_sym_QMARK] = ACTIONS(2547), - [anon_sym_BANG] = ACTIONS(2547), - [anon_sym_go] = ACTIONS(2547), - [anon_sym_spawn] = ACTIONS(2547), - [anon_sym_json_DOTdecode] = ACTIONS(2547), - [anon_sym_LBRACK2] = ACTIONS(2547), - [anon_sym_TILDE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2547), - [anon_sym_AMP] = ACTIONS(2547), - [anon_sym_LT_DASH] = ACTIONS(2547), - [anon_sym_LT_LT] = ACTIONS(2547), - [anon_sym_GT_GT] = ACTIONS(2547), - [anon_sym_GT_GT_GT] = ACTIONS(2547), - [anon_sym_AMP_CARET] = ACTIONS(2547), - [anon_sym_AMP_AMP] = ACTIONS(2547), - [anon_sym_PIPE_PIPE] = ACTIONS(2547), - [anon_sym_or] = ACTIONS(2547), - [sym_none] = ACTIONS(2547), - [sym_true] = ACTIONS(2547), - [sym_false] = ACTIONS(2547), - [sym_nil] = ACTIONS(2547), - [anon_sym_QMARK_DOT] = ACTIONS(2547), - [anon_sym_POUND_LBRACK] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_DOLLARif] = ACTIONS(2547), - [anon_sym_is] = ACTIONS(2547), - [anon_sym_BANGis] = ACTIONS(2547), - [anon_sym_in] = ACTIONS(2547), - [anon_sym_BANGin] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_select] = ACTIONS(2547), - [anon_sym_lock] = ACTIONS(2547), - [anon_sym_rlock] = ACTIONS(2547), - [anon_sym_unsafe] = ACTIONS(2547), - [anon_sym_sql] = ACTIONS(2547), - [sym_int_literal] = ACTIONS(2547), - [sym_float_literal] = ACTIONS(2547), - [sym_rune_literal] = ACTIONS(2547), - [anon_sym_SQUOTE] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [anon_sym_c_SQUOTE] = ACTIONS(2547), - [anon_sym_c_DQUOTE] = ACTIONS(2547), - [anon_sym_r_SQUOTE] = ACTIONS(2547), - [anon_sym_r_DQUOTE] = ACTIONS(2547), - [sym_pseudo_compile_time_identifier] = ACTIONS(2547), - [anon_sym_shared] = ACTIONS(2547), - [anon_sym_map_LBRACK] = ACTIONS(2547), - [anon_sym_chan] = ACTIONS(2547), - [anon_sym_thread] = ACTIONS(2547), - [anon_sym_atomic] = ACTIONS(2547), - }, - [1239] = { - [sym_line_comment] = STATE(1239), - [sym_block_comment] = STATE(1239), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LF] = ACTIONS(2805), - [anon_sym_CR] = ACTIONS(2805), - [anon_sym_CR_LF] = ACTIONS(2805), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2805), - [anon_sym_DOT] = ACTIONS(2805), - [anon_sym_as] = ACTIONS(2805), - [anon_sym_LBRACE] = ACTIONS(2805), - [anon_sym_COMMA] = ACTIONS(2805), - [anon_sym_RBRACE] = ACTIONS(2805), - [anon_sym_LPAREN] = ACTIONS(2805), - [anon_sym_RPAREN] = ACTIONS(2805), - [anon_sym_PIPE] = ACTIONS(2805), - [anon_sym_fn] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2805), - [anon_sym_DASH] = ACTIONS(2805), - [anon_sym_STAR] = ACTIONS(2805), - [anon_sym_SLASH] = ACTIONS(2805), - [anon_sym_PERCENT] = ACTIONS(2805), - [anon_sym_LT] = ACTIONS(2805), - [anon_sym_GT] = ACTIONS(2805), - [anon_sym_EQ_EQ] = ACTIONS(2805), - [anon_sym_BANG_EQ] = ACTIONS(2805), - [anon_sym_LT_EQ] = ACTIONS(2805), - [anon_sym_GT_EQ] = ACTIONS(2805), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2805), - [anon_sym_mut] = ACTIONS(2805), - [anon_sym_PLUS_PLUS] = ACTIONS(2805), - [anon_sym_DASH_DASH] = ACTIONS(2805), - [anon_sym_QMARK] = ACTIONS(2805), - [anon_sym_BANG] = ACTIONS(2805), - [anon_sym_go] = ACTIONS(2805), - [anon_sym_spawn] = ACTIONS(2805), - [anon_sym_json_DOTdecode] = ACTIONS(2805), - [anon_sym_LBRACK2] = ACTIONS(2805), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_CARET] = ACTIONS(2805), - [anon_sym_AMP] = ACTIONS(2805), - [anon_sym_LT_DASH] = ACTIONS(2805), - [anon_sym_LT_LT] = ACTIONS(2805), - [anon_sym_GT_GT] = ACTIONS(2805), - [anon_sym_GT_GT_GT] = ACTIONS(2805), - [anon_sym_AMP_CARET] = ACTIONS(2805), - [anon_sym_AMP_AMP] = ACTIONS(2805), - [anon_sym_PIPE_PIPE] = ACTIONS(2805), - [anon_sym_or] = ACTIONS(2805), - [sym_none] = ACTIONS(2805), - [sym_true] = ACTIONS(2805), - [sym_false] = ACTIONS(2805), - [sym_nil] = ACTIONS(2805), - [anon_sym_QMARK_DOT] = ACTIONS(2805), - [anon_sym_POUND_LBRACK] = ACTIONS(2805), - [anon_sym_if] = ACTIONS(2805), - [anon_sym_DOLLARif] = ACTIONS(2805), - [anon_sym_is] = ACTIONS(2805), - [anon_sym_BANGis] = ACTIONS(2805), - [anon_sym_in] = ACTIONS(2805), - [anon_sym_BANGin] = ACTIONS(2805), - [anon_sym_match] = ACTIONS(2805), - [anon_sym_select] = ACTIONS(2805), - [anon_sym_lock] = ACTIONS(2805), - [anon_sym_rlock] = ACTIONS(2805), - [anon_sym_unsafe] = ACTIONS(2805), - [anon_sym_sql] = ACTIONS(2805), - [sym_int_literal] = ACTIONS(2805), - [sym_float_literal] = ACTIONS(2805), - [sym_rune_literal] = ACTIONS(2805), - [anon_sym_SQUOTE] = ACTIONS(2805), - [anon_sym_DQUOTE] = ACTIONS(2805), - [anon_sym_c_SQUOTE] = ACTIONS(2805), - [anon_sym_c_DQUOTE] = ACTIONS(2805), - [anon_sym_r_SQUOTE] = ACTIONS(2805), - [anon_sym_r_DQUOTE] = ACTIONS(2805), - [sym_pseudo_compile_time_identifier] = ACTIONS(2805), - [anon_sym_shared] = ACTIONS(2805), - [anon_sym_map_LBRACK] = ACTIONS(2805), - [anon_sym_chan] = ACTIONS(2805), - [anon_sym_thread] = ACTIONS(2805), - [anon_sym_atomic] = ACTIONS(2805), - }, - [1240] = { - [sym_line_comment] = STATE(1240), - [sym_block_comment] = STATE(1240), - [sym_identifier] = ACTIONS(2159), - [anon_sym_LF] = ACTIONS(2159), - [anon_sym_CR] = ACTIONS(2159), - [anon_sym_CR_LF] = ACTIONS(2159), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_DOT] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_RPAREN] = ACTIONS(2159), - [anon_sym_PIPE] = ACTIONS(2159), - [anon_sym_fn] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_PERCENT] = ACTIONS(2159), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_GT] = ACTIONS(2159), - [anon_sym_EQ_EQ] = ACTIONS(2159), - [anon_sym_BANG_EQ] = ACTIONS(2159), - [anon_sym_LT_EQ] = ACTIONS(2159), - [anon_sym_GT_EQ] = ACTIONS(2159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2159), - [anon_sym_mut] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [anon_sym_QMARK] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(2159), - [anon_sym_spawn] = ACTIONS(2159), - [anon_sym_json_DOTdecode] = ACTIONS(2159), - [anon_sym_LBRACK2] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2159), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2159), - [anon_sym_LT_LT] = ACTIONS(2159), - [anon_sym_GT_GT] = ACTIONS(2159), - [anon_sym_GT_GT_GT] = ACTIONS(2159), - [anon_sym_AMP_CARET] = ACTIONS(2159), - [anon_sym_AMP_AMP] = ACTIONS(2159), - [anon_sym_PIPE_PIPE] = ACTIONS(2159), - [anon_sym_or] = ACTIONS(2159), - [sym_none] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_nil] = ACTIONS(2159), - [anon_sym_QMARK_DOT] = ACTIONS(2159), - [anon_sym_POUND_LBRACK] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_DOLLARif] = ACTIONS(2159), - [anon_sym_is] = ACTIONS(2159), - [anon_sym_BANGis] = ACTIONS(2159), - [anon_sym_in] = ACTIONS(2159), - [anon_sym_BANGin] = ACTIONS(2159), - [anon_sym_match] = ACTIONS(2159), - [anon_sym_select] = ACTIONS(2159), - [anon_sym_lock] = ACTIONS(2159), - [anon_sym_rlock] = ACTIONS(2159), - [anon_sym_unsafe] = ACTIONS(2159), - [anon_sym_sql] = ACTIONS(2159), - [sym_int_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), - [sym_rune_literal] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_c_SQUOTE] = ACTIONS(2159), - [anon_sym_c_DQUOTE] = ACTIONS(2159), - [anon_sym_r_SQUOTE] = ACTIONS(2159), - [anon_sym_r_DQUOTE] = ACTIONS(2159), - [sym_pseudo_compile_time_identifier] = ACTIONS(2159), - [anon_sym_shared] = ACTIONS(2159), - [anon_sym_map_LBRACK] = ACTIONS(2159), - [anon_sym_chan] = ACTIONS(2159), - [anon_sym_thread] = ACTIONS(2159), - [anon_sym_atomic] = ACTIONS(2159), - }, - [1241] = { - [sym_line_comment] = STATE(1241), - [sym_block_comment] = STATE(1241), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LF] = ACTIONS(3052), - [anon_sym_CR] = ACTIONS(3052), - [anon_sym_CR_LF] = ACTIONS(3052), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3052), - [anon_sym_DOT] = ACTIONS(3052), - [anon_sym_as] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_COMMA] = ACTIONS(3052), - [anon_sym_RBRACE] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_RPAREN] = ACTIONS(3052), - [anon_sym_PIPE] = ACTIONS(3052), - [anon_sym_fn] = ACTIONS(3052), - [anon_sym_PLUS] = ACTIONS(3052), - [anon_sym_DASH] = ACTIONS(3052), - [anon_sym_STAR] = ACTIONS(3052), - [anon_sym_SLASH] = ACTIONS(3052), - [anon_sym_PERCENT] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3052), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_LT_EQ] = ACTIONS(3052), - [anon_sym_GT_EQ] = ACTIONS(3052), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3050), - [anon_sym_struct] = ACTIONS(3052), - [anon_sym_mut] = ACTIONS(3052), - [anon_sym_PLUS_PLUS] = ACTIONS(3052), - [anon_sym_DASH_DASH] = ACTIONS(3052), - [anon_sym_QMARK] = ACTIONS(3052), - [anon_sym_BANG] = ACTIONS(3052), - [anon_sym_go] = ACTIONS(3052), - [anon_sym_spawn] = ACTIONS(3052), - [anon_sym_json_DOTdecode] = ACTIONS(3052), - [anon_sym_LBRACK2] = ACTIONS(3052), - [anon_sym_TILDE] = ACTIONS(3052), - [anon_sym_CARET] = ACTIONS(3052), - [anon_sym_AMP] = ACTIONS(3052), - [anon_sym_LT_DASH] = ACTIONS(3052), - [anon_sym_LT_LT] = ACTIONS(3052), - [anon_sym_GT_GT] = ACTIONS(3052), - [anon_sym_GT_GT_GT] = ACTIONS(3052), - [anon_sym_AMP_CARET] = ACTIONS(3052), - [anon_sym_AMP_AMP] = ACTIONS(3052), - [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_or] = ACTIONS(3052), - [sym_none] = ACTIONS(3052), - [sym_true] = ACTIONS(3052), - [sym_false] = ACTIONS(3052), - [sym_nil] = ACTIONS(3052), - [anon_sym_QMARK_DOT] = ACTIONS(3052), - [anon_sym_POUND_LBRACK] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_DOLLARif] = ACTIONS(3052), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3052), - [anon_sym_in] = ACTIONS(3052), - [anon_sym_BANGin] = ACTIONS(3052), - [anon_sym_match] = ACTIONS(3052), - [anon_sym_select] = ACTIONS(3052), - [anon_sym_lock] = ACTIONS(3052), - [anon_sym_rlock] = ACTIONS(3052), - [anon_sym_unsafe] = ACTIONS(3052), - [anon_sym_sql] = ACTIONS(3052), - [sym_int_literal] = ACTIONS(3052), - [sym_float_literal] = ACTIONS(3052), - [sym_rune_literal] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3052), - [anon_sym_DQUOTE] = ACTIONS(3052), - [anon_sym_c_SQUOTE] = ACTIONS(3052), - [anon_sym_c_DQUOTE] = ACTIONS(3052), - [anon_sym_r_SQUOTE] = ACTIONS(3052), - [anon_sym_r_DQUOTE] = ACTIONS(3052), - [sym_pseudo_compile_time_identifier] = ACTIONS(3052), - [anon_sym_shared] = ACTIONS(3052), - [anon_sym_map_LBRACK] = ACTIONS(3052), - [anon_sym_chan] = ACTIONS(3052), - [anon_sym_thread] = ACTIONS(3052), - [anon_sym_atomic] = ACTIONS(3052), - }, - [1242] = { - [sym_line_comment] = STATE(1242), - [sym_block_comment] = STATE(1242), - [sym_identifier] = ACTIONS(3056), - [anon_sym_LF] = ACTIONS(3056), - [anon_sym_CR] = ACTIONS(3056), - [anon_sym_CR_LF] = ACTIONS(3056), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3056), - [anon_sym_DOT] = ACTIONS(3056), - [anon_sym_as] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_RBRACE] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_RPAREN] = ACTIONS(3056), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_fn] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3056), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_SLASH] = ACTIONS(3056), - [anon_sym_PERCENT] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_EQ_EQ] = ACTIONS(3056), - [anon_sym_BANG_EQ] = ACTIONS(3056), - [anon_sym_LT_EQ] = ACTIONS(3056), - [anon_sym_GT_EQ] = ACTIONS(3056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3056), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_struct] = ACTIONS(3056), - [anon_sym_mut] = ACTIONS(3056), - [anon_sym_PLUS_PLUS] = ACTIONS(3056), - [anon_sym_DASH_DASH] = ACTIONS(3056), - [anon_sym_QMARK] = ACTIONS(3056), - [anon_sym_BANG] = ACTIONS(3056), - [anon_sym_go] = ACTIONS(3056), - [anon_sym_spawn] = ACTIONS(3056), - [anon_sym_json_DOTdecode] = ACTIONS(3056), - [anon_sym_LBRACK2] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3056), - [anon_sym_CARET] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3056), - [anon_sym_LT_DASH] = ACTIONS(3056), - [anon_sym_LT_LT] = ACTIONS(3056), - [anon_sym_GT_GT] = ACTIONS(3056), - [anon_sym_GT_GT_GT] = ACTIONS(3056), - [anon_sym_AMP_CARET] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_PIPE_PIPE] = ACTIONS(3056), - [anon_sym_or] = ACTIONS(3056), - [sym_none] = ACTIONS(3056), - [sym_true] = ACTIONS(3056), - [sym_false] = ACTIONS(3056), - [sym_nil] = ACTIONS(3056), - [anon_sym_QMARK_DOT] = ACTIONS(3056), - [anon_sym_POUND_LBRACK] = ACTIONS(3056), - [anon_sym_if] = ACTIONS(3056), - [anon_sym_DOLLARif] = ACTIONS(3056), - [anon_sym_is] = ACTIONS(3056), - [anon_sym_BANGis] = ACTIONS(3056), - [anon_sym_in] = ACTIONS(3056), - [anon_sym_BANGin] = ACTIONS(3056), - [anon_sym_match] = ACTIONS(3056), - [anon_sym_select] = ACTIONS(3056), - [anon_sym_lock] = ACTIONS(3056), - [anon_sym_rlock] = ACTIONS(3056), - [anon_sym_unsafe] = ACTIONS(3056), - [anon_sym_sql] = ACTIONS(3056), - [sym_int_literal] = ACTIONS(3056), - [sym_float_literal] = ACTIONS(3056), - [sym_rune_literal] = ACTIONS(3056), - [anon_sym_SQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3056), - [anon_sym_c_SQUOTE] = ACTIONS(3056), - [anon_sym_c_DQUOTE] = ACTIONS(3056), - [anon_sym_r_SQUOTE] = ACTIONS(3056), - [anon_sym_r_DQUOTE] = ACTIONS(3056), - [sym_pseudo_compile_time_identifier] = ACTIONS(3056), - [anon_sym_shared] = ACTIONS(3056), - [anon_sym_map_LBRACK] = ACTIONS(3056), - [anon_sym_chan] = ACTIONS(3056), - [anon_sym_thread] = ACTIONS(3056), - [anon_sym_atomic] = ACTIONS(3056), - }, - [1243] = { - [sym_line_comment] = STATE(1243), - [sym_block_comment] = STATE(1243), - [sym_identifier] = ACTIONS(2181), - [anon_sym_LF] = ACTIONS(2181), - [anon_sym_CR] = ACTIONS(2181), - [anon_sym_CR_LF] = ACTIONS(2181), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2181), - [anon_sym_DOT] = ACTIONS(2181), - [anon_sym_as] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_COMMA] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_RPAREN] = ACTIONS(2181), - [anon_sym_PIPE] = ACTIONS(2181), - [anon_sym_fn] = ACTIONS(2181), - [anon_sym_PLUS] = ACTIONS(2181), - [anon_sym_DASH] = ACTIONS(2181), - [anon_sym_STAR] = ACTIONS(2181), - [anon_sym_SLASH] = ACTIONS(2181), - [anon_sym_PERCENT] = ACTIONS(2181), - [anon_sym_LT] = ACTIONS(2181), - [anon_sym_GT] = ACTIONS(2181), - [anon_sym_EQ_EQ] = ACTIONS(2181), - [anon_sym_BANG_EQ] = ACTIONS(2181), - [anon_sym_LT_EQ] = ACTIONS(2181), - [anon_sym_GT_EQ] = ACTIONS(2181), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2179), - [anon_sym_struct] = ACTIONS(2181), - [anon_sym_mut] = ACTIONS(2181), - [anon_sym_PLUS_PLUS] = ACTIONS(2181), - [anon_sym_DASH_DASH] = ACTIONS(2181), - [anon_sym_QMARK] = ACTIONS(2181), - [anon_sym_BANG] = ACTIONS(2181), - [anon_sym_go] = ACTIONS(2181), - [anon_sym_spawn] = ACTIONS(2181), - [anon_sym_json_DOTdecode] = ACTIONS(2181), - [anon_sym_LBRACK2] = ACTIONS(2181), - [anon_sym_TILDE] = ACTIONS(2181), - [anon_sym_CARET] = ACTIONS(2181), - [anon_sym_AMP] = ACTIONS(2181), - [anon_sym_LT_DASH] = ACTIONS(2181), - [anon_sym_LT_LT] = ACTIONS(2181), - [anon_sym_GT_GT] = ACTIONS(2181), - [anon_sym_GT_GT_GT] = ACTIONS(2181), - [anon_sym_AMP_CARET] = ACTIONS(2181), - [anon_sym_AMP_AMP] = ACTIONS(2181), - [anon_sym_PIPE_PIPE] = ACTIONS(2181), - [anon_sym_or] = ACTIONS(2181), - [sym_none] = ACTIONS(2181), - [sym_true] = ACTIONS(2181), - [sym_false] = ACTIONS(2181), - [sym_nil] = ACTIONS(2181), - [anon_sym_QMARK_DOT] = ACTIONS(2181), - [anon_sym_POUND_LBRACK] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_DOLLARif] = ACTIONS(2181), - [anon_sym_is] = ACTIONS(2181), - [anon_sym_BANGis] = ACTIONS(2181), - [anon_sym_in] = ACTIONS(2181), - [anon_sym_BANGin] = ACTIONS(2181), - [anon_sym_match] = ACTIONS(2181), - [anon_sym_select] = ACTIONS(2181), - [anon_sym_lock] = ACTIONS(2181), - [anon_sym_rlock] = ACTIONS(2181), - [anon_sym_unsafe] = ACTIONS(2181), - [anon_sym_sql] = ACTIONS(2181), - [sym_int_literal] = ACTIONS(2181), - [sym_float_literal] = ACTIONS(2181), - [sym_rune_literal] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_DQUOTE] = ACTIONS(2181), - [anon_sym_c_SQUOTE] = ACTIONS(2181), - [anon_sym_c_DQUOTE] = ACTIONS(2181), - [anon_sym_r_SQUOTE] = ACTIONS(2181), - [anon_sym_r_DQUOTE] = ACTIONS(2181), - [sym_pseudo_compile_time_identifier] = ACTIONS(2181), - [anon_sym_shared] = ACTIONS(2181), - [anon_sym_map_LBRACK] = ACTIONS(2181), - [anon_sym_chan] = ACTIONS(2181), - [anon_sym_thread] = ACTIONS(2181), - [anon_sym_atomic] = ACTIONS(2181), - }, - [1244] = { - [sym_line_comment] = STATE(1244), - [sym_block_comment] = STATE(1244), - [sym_identifier] = ACTIONS(2269), - [anon_sym_LF] = ACTIONS(2269), - [anon_sym_CR] = ACTIONS(2269), - [anon_sym_CR_LF] = ACTIONS(2269), + [1218] = { + [sym_line_comment] = STATE(1218), + [sym_block_comment] = STATE(1218), + [sym_identifier] = ACTIONS(2499), + [anon_sym_LF] = ACTIONS(2499), + [anon_sym_CR] = ACTIONS(2499), + [anon_sym_CR_LF] = ACTIONS(2499), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2269), - [anon_sym_DOT] = ACTIONS(2269), - [anon_sym_as] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(2269), - [anon_sym_COMMA] = ACTIONS(2269), - [anon_sym_RBRACE] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(2269), - [anon_sym_RPAREN] = ACTIONS(2269), - [anon_sym_PIPE] = ACTIONS(2269), - [anon_sym_fn] = ACTIONS(2269), - [anon_sym_PLUS] = ACTIONS(2269), - [anon_sym_DASH] = ACTIONS(2269), - [anon_sym_STAR] = ACTIONS(2269), - [anon_sym_SLASH] = ACTIONS(2269), - [anon_sym_PERCENT] = ACTIONS(2269), - [anon_sym_LT] = ACTIONS(2269), - [anon_sym_GT] = ACTIONS(2269), - [anon_sym_EQ_EQ] = ACTIONS(2269), - [anon_sym_BANG_EQ] = ACTIONS(2269), - [anon_sym_LT_EQ] = ACTIONS(2269), - [anon_sym_GT_EQ] = ACTIONS(2269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2269), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_struct] = ACTIONS(2269), - [anon_sym_mut] = ACTIONS(2269), - [anon_sym_PLUS_PLUS] = ACTIONS(2269), - [anon_sym_DASH_DASH] = ACTIONS(2269), - [anon_sym_QMARK] = ACTIONS(2269), - [anon_sym_BANG] = ACTIONS(2269), - [anon_sym_go] = ACTIONS(2269), - [anon_sym_spawn] = ACTIONS(2269), - [anon_sym_json_DOTdecode] = ACTIONS(2269), - [anon_sym_LBRACK2] = ACTIONS(2269), - [anon_sym_TILDE] = ACTIONS(2269), - [anon_sym_CARET] = ACTIONS(2269), - [anon_sym_AMP] = ACTIONS(2269), - [anon_sym_LT_DASH] = ACTIONS(2269), - [anon_sym_LT_LT] = ACTIONS(2269), - [anon_sym_GT_GT] = ACTIONS(2269), - [anon_sym_GT_GT_GT] = ACTIONS(2269), - [anon_sym_AMP_CARET] = ACTIONS(2269), - [anon_sym_AMP_AMP] = ACTIONS(2269), - [anon_sym_PIPE_PIPE] = ACTIONS(2269), - [anon_sym_or] = ACTIONS(2269), - [sym_none] = ACTIONS(2269), - [sym_true] = ACTIONS(2269), - [sym_false] = ACTIONS(2269), - [sym_nil] = ACTIONS(2269), - [anon_sym_QMARK_DOT] = ACTIONS(2269), - [anon_sym_POUND_LBRACK] = ACTIONS(2269), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_DOLLARif] = ACTIONS(2269), - [anon_sym_is] = ACTIONS(2269), - [anon_sym_BANGis] = ACTIONS(2269), - [anon_sym_in] = ACTIONS(2269), - [anon_sym_BANGin] = ACTIONS(2269), - [anon_sym_match] = ACTIONS(2269), - [anon_sym_select] = ACTIONS(2269), - [anon_sym_lock] = ACTIONS(2269), - [anon_sym_rlock] = ACTIONS(2269), - [anon_sym_unsafe] = ACTIONS(2269), - [anon_sym_sql] = ACTIONS(2269), - [sym_int_literal] = ACTIONS(2269), - [sym_float_literal] = ACTIONS(2269), - [sym_rune_literal] = ACTIONS(2269), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_DQUOTE] = ACTIONS(2269), - [anon_sym_c_SQUOTE] = ACTIONS(2269), - [anon_sym_c_DQUOTE] = ACTIONS(2269), - [anon_sym_r_SQUOTE] = ACTIONS(2269), - [anon_sym_r_DQUOTE] = ACTIONS(2269), - [sym_pseudo_compile_time_identifier] = ACTIONS(2269), - [anon_sym_shared] = ACTIONS(2269), - [anon_sym_map_LBRACK] = ACTIONS(2269), - [anon_sym_chan] = ACTIONS(2269), - [anon_sym_thread] = ACTIONS(2269), - [anon_sym_atomic] = ACTIONS(2269), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_DOT] = ACTIONS(2499), + [anon_sym_as] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_COMMA] = ACTIONS(2499), + [anon_sym_RBRACE] = ACTIONS(2499), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_fn] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(2499), + [anon_sym_SLASH] = ACTIONS(2499), + [anon_sym_PERCENT] = ACTIONS(2499), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(2499), + [anon_sym_EQ_EQ] = ACTIONS(2499), + [anon_sym_BANG_EQ] = ACTIONS(2499), + [anon_sym_LT_EQ] = ACTIONS(2499), + [anon_sym_GT_EQ] = ACTIONS(2499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2499), + [anon_sym_LBRACK] = ACTIONS(2497), + [anon_sym_struct] = ACTIONS(2499), + [anon_sym_mut] = ACTIONS(2499), + [anon_sym_PLUS_PLUS] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(2499), + [anon_sym_QMARK] = ACTIONS(2499), + [anon_sym_BANG] = ACTIONS(3855), + [anon_sym_go] = ACTIONS(2499), + [anon_sym_spawn] = ACTIONS(2499), + [anon_sym_json_DOTdecode] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_LBRACK2] = ACTIONS(2499), + [anon_sym_TILDE] = ACTIONS(2499), + [anon_sym_CARET] = ACTIONS(2499), + [anon_sym_AMP] = ACTIONS(2499), + [anon_sym_LT_DASH] = ACTIONS(2499), + [anon_sym_LT_LT] = ACTIONS(2499), + [anon_sym_GT_GT] = ACTIONS(2499), + [anon_sym_GT_GT_GT] = ACTIONS(2499), + [anon_sym_AMP_CARET] = ACTIONS(2499), + [anon_sym_AMP_AMP] = ACTIONS(2499), + [anon_sym_PIPE_PIPE] = ACTIONS(2499), + [anon_sym_or] = ACTIONS(2499), + [sym_none] = ACTIONS(2499), + [sym_true] = ACTIONS(2499), + [sym_false] = ACTIONS(2499), + [sym_nil] = ACTIONS(2499), + [anon_sym_QMARK_DOT] = ACTIONS(2499), + [anon_sym_POUND_LBRACK] = ACTIONS(2499), + [anon_sym_if] = ACTIONS(2499), + [anon_sym_DOLLARif] = ACTIONS(2499), + [anon_sym_is] = ACTIONS(2499), + [anon_sym_BANGis] = ACTIONS(2499), + [anon_sym_in] = ACTIONS(2499), + [anon_sym_BANGin] = ACTIONS(2499), + [anon_sym_match] = ACTIONS(2499), + [anon_sym_select] = ACTIONS(2499), + [anon_sym_lock] = ACTIONS(2499), + [anon_sym_rlock] = ACTIONS(2499), + [anon_sym_unsafe] = ACTIONS(2499), + [anon_sym_sql] = ACTIONS(2499), + [sym_int_literal] = ACTIONS(2499), + [sym_float_literal] = ACTIONS(2499), + [sym_rune_literal] = ACTIONS(2499), + [anon_sym_SQUOTE] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(2499), + [anon_sym_c_SQUOTE] = ACTIONS(2499), + [anon_sym_c_DQUOTE] = ACTIONS(2499), + [anon_sym_r_SQUOTE] = ACTIONS(2499), + [anon_sym_r_DQUOTE] = ACTIONS(2499), + [sym_pseudo_compile_time_identifier] = ACTIONS(2499), + [anon_sym_shared] = ACTIONS(2499), + [anon_sym_map_LBRACK] = ACTIONS(2499), + [anon_sym_chan] = ACTIONS(2499), + [anon_sym_thread] = ACTIONS(2499), + [anon_sym_atomic] = ACTIONS(2499), }, - [1245] = { - [sym_line_comment] = STATE(1245), - [sym_block_comment] = STATE(1245), - [sym_identifier] = ACTIONS(2261), - [anon_sym_LF] = ACTIONS(2261), - [anon_sym_CR] = ACTIONS(2261), - [anon_sym_CR_LF] = ACTIONS(2261), + [1219] = { + [sym_line_comment] = STATE(1219), + [sym_block_comment] = STATE(1219), + [sym_identifier] = ACTIONS(2331), + [anon_sym_LF] = ACTIONS(2331), + [anon_sym_CR] = ACTIONS(2331), + [anon_sym_CR_LF] = ACTIONS(2331), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2261), - [anon_sym_DOT] = ACTIONS(2261), - [anon_sym_as] = ACTIONS(2261), - [anon_sym_LBRACE] = ACTIONS(2261), - [anon_sym_COMMA] = ACTIONS(2261), - [anon_sym_RBRACE] = ACTIONS(2261), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_RPAREN] = ACTIONS(2261), - [anon_sym_PIPE] = ACTIONS(2261), - [anon_sym_fn] = ACTIONS(2261), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2261), - [anon_sym_SLASH] = ACTIONS(2261), - [anon_sym_PERCENT] = ACTIONS(2261), - [anon_sym_LT] = ACTIONS(2261), - [anon_sym_GT] = ACTIONS(2261), - [anon_sym_EQ_EQ] = ACTIONS(2261), - [anon_sym_BANG_EQ] = ACTIONS(2261), - [anon_sym_LT_EQ] = ACTIONS(2261), - [anon_sym_GT_EQ] = ACTIONS(2261), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(2259), - [anon_sym_struct] = ACTIONS(2261), - [anon_sym_mut] = ACTIONS(2261), - [anon_sym_PLUS_PLUS] = ACTIONS(2261), - [anon_sym_DASH_DASH] = ACTIONS(2261), - [anon_sym_QMARK] = ACTIONS(2261), - [anon_sym_BANG] = ACTIONS(2261), - [anon_sym_go] = ACTIONS(2261), - [anon_sym_spawn] = ACTIONS(2261), - [anon_sym_json_DOTdecode] = ACTIONS(2261), - [anon_sym_LBRACK2] = ACTIONS(2261), - [anon_sym_TILDE] = ACTIONS(2261), - [anon_sym_CARET] = ACTIONS(2261), - [anon_sym_AMP] = ACTIONS(2261), - [anon_sym_LT_DASH] = ACTIONS(2261), - [anon_sym_LT_LT] = ACTIONS(2261), - [anon_sym_GT_GT] = ACTIONS(2261), - [anon_sym_GT_GT_GT] = ACTIONS(2261), - [anon_sym_AMP_CARET] = ACTIONS(2261), - [anon_sym_AMP_AMP] = ACTIONS(2261), - [anon_sym_PIPE_PIPE] = ACTIONS(2261), - [anon_sym_or] = ACTIONS(2261), - [sym_none] = ACTIONS(2261), - [sym_true] = ACTIONS(2261), - [sym_false] = ACTIONS(2261), - [sym_nil] = ACTIONS(2261), - [anon_sym_QMARK_DOT] = ACTIONS(2261), - [anon_sym_POUND_LBRACK] = ACTIONS(2261), - [anon_sym_if] = ACTIONS(2261), - [anon_sym_DOLLARif] = ACTIONS(2261), - [anon_sym_is] = ACTIONS(2261), - [anon_sym_BANGis] = ACTIONS(2261), - [anon_sym_in] = ACTIONS(2261), - [anon_sym_BANGin] = ACTIONS(2261), - [anon_sym_match] = ACTIONS(2261), - [anon_sym_select] = ACTIONS(2261), - [anon_sym_lock] = ACTIONS(2261), - [anon_sym_rlock] = ACTIONS(2261), - [anon_sym_unsafe] = ACTIONS(2261), - [anon_sym_sql] = ACTIONS(2261), - [sym_int_literal] = ACTIONS(2261), - [sym_float_literal] = ACTIONS(2261), - [sym_rune_literal] = ACTIONS(2261), - [anon_sym_SQUOTE] = ACTIONS(2261), - [anon_sym_DQUOTE] = ACTIONS(2261), - [anon_sym_c_SQUOTE] = ACTIONS(2261), - [anon_sym_c_DQUOTE] = ACTIONS(2261), - [anon_sym_r_SQUOTE] = ACTIONS(2261), - [anon_sym_r_DQUOTE] = ACTIONS(2261), - [sym_pseudo_compile_time_identifier] = ACTIONS(2261), - [anon_sym_shared] = ACTIONS(2261), - [anon_sym_map_LBRACK] = ACTIONS(2261), - [anon_sym_chan] = ACTIONS(2261), - [anon_sym_thread] = ACTIONS(2261), - [anon_sym_atomic] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2331), + [anon_sym_DOT] = ACTIONS(2331), + [anon_sym_as] = ACTIONS(2331), + [anon_sym_LBRACE] = ACTIONS(2331), + [anon_sym_COMMA] = ACTIONS(2331), + [anon_sym_RBRACE] = ACTIONS(2331), + [anon_sym_LPAREN] = ACTIONS(2331), + [anon_sym_RPAREN] = ACTIONS(2331), + [anon_sym_fn] = ACTIONS(2331), + [anon_sym_PLUS] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_STAR] = ACTIONS(2331), + [anon_sym_SLASH] = ACTIONS(2331), + [anon_sym_PERCENT] = ACTIONS(2331), + [anon_sym_LT] = ACTIONS(2331), + [anon_sym_GT] = ACTIONS(2331), + [anon_sym_EQ_EQ] = ACTIONS(2331), + [anon_sym_BANG_EQ] = ACTIONS(2331), + [anon_sym_LT_EQ] = ACTIONS(2331), + [anon_sym_GT_EQ] = ACTIONS(2331), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2331), + [anon_sym_LBRACK] = ACTIONS(2329), + [anon_sym_struct] = ACTIONS(2331), + [anon_sym_mut] = ACTIONS(2331), + [anon_sym_PLUS_PLUS] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2331), + [anon_sym_QMARK] = ACTIONS(2331), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_go] = ACTIONS(2331), + [anon_sym_spawn] = ACTIONS(2331), + [anon_sym_json_DOTdecode] = ACTIONS(2331), + [anon_sym_PIPE] = ACTIONS(2331), + [anon_sym_LBRACK2] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2331), + [anon_sym_CARET] = ACTIONS(2331), + [anon_sym_AMP] = ACTIONS(2331), + [anon_sym_LT_DASH] = ACTIONS(2331), + [anon_sym_LT_LT] = ACTIONS(2331), + [anon_sym_GT_GT] = ACTIONS(2331), + [anon_sym_GT_GT_GT] = ACTIONS(2331), + [anon_sym_AMP_CARET] = ACTIONS(2331), + [anon_sym_AMP_AMP] = ACTIONS(2331), + [anon_sym_PIPE_PIPE] = ACTIONS(2331), + [anon_sym_or] = ACTIONS(2331), + [sym_none] = ACTIONS(2331), + [sym_true] = ACTIONS(2331), + [sym_false] = ACTIONS(2331), + [sym_nil] = ACTIONS(2331), + [anon_sym_QMARK_DOT] = ACTIONS(2331), + [anon_sym_POUND_LBRACK] = ACTIONS(2331), + [anon_sym_if] = ACTIONS(2331), + [anon_sym_DOLLARif] = ACTIONS(2331), + [anon_sym_is] = ACTIONS(2331), + [anon_sym_BANGis] = ACTIONS(2331), + [anon_sym_in] = ACTIONS(2331), + [anon_sym_BANGin] = ACTIONS(2331), + [anon_sym_match] = ACTIONS(2331), + [anon_sym_select] = ACTIONS(2331), + [anon_sym_lock] = ACTIONS(2331), + [anon_sym_rlock] = ACTIONS(2331), + [anon_sym_unsafe] = ACTIONS(2331), + [anon_sym_sql] = ACTIONS(2331), + [sym_int_literal] = ACTIONS(2331), + [sym_float_literal] = ACTIONS(2331), + [sym_rune_literal] = ACTIONS(2331), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_DQUOTE] = ACTIONS(2331), + [anon_sym_c_SQUOTE] = ACTIONS(2331), + [anon_sym_c_DQUOTE] = ACTIONS(2331), + [anon_sym_r_SQUOTE] = ACTIONS(2331), + [anon_sym_r_DQUOTE] = ACTIONS(2331), + [sym_pseudo_compile_time_identifier] = ACTIONS(2331), + [anon_sym_shared] = ACTIONS(2331), + [anon_sym_map_LBRACK] = ACTIONS(2331), + [anon_sym_chan] = ACTIONS(2331), + [anon_sym_thread] = ACTIONS(2331), + [anon_sym_atomic] = ACTIONS(2331), }, - [1246] = { - [sym_line_comment] = STATE(1246), - [sym_block_comment] = STATE(1246), - [sym_identifier] = ACTIONS(2253), - [anon_sym_LF] = ACTIONS(2253), - [anon_sym_CR] = ACTIONS(2253), - [anon_sym_CR_LF] = ACTIONS(2253), + [1220] = { + [sym_line_comment] = STATE(1220), + [sym_block_comment] = STATE(1220), + [sym_identifier] = ACTIONS(2479), + [anon_sym_LF] = ACTIONS(2479), + [anon_sym_CR] = ACTIONS(2479), + [anon_sym_CR_LF] = ACTIONS(2479), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2253), - [anon_sym_DOT] = ACTIONS(2253), - [anon_sym_as] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(2253), - [anon_sym_COMMA] = ACTIONS(2253), - [anon_sym_RBRACE] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(2253), - [anon_sym_RPAREN] = ACTIONS(2253), - [anon_sym_PIPE] = ACTIONS(2253), - [anon_sym_fn] = ACTIONS(2253), - [anon_sym_PLUS] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_SLASH] = ACTIONS(2253), - [anon_sym_PERCENT] = ACTIONS(2253), - [anon_sym_LT] = ACTIONS(2253), - [anon_sym_GT] = ACTIONS(2253), - [anon_sym_EQ_EQ] = ACTIONS(2253), - [anon_sym_BANG_EQ] = ACTIONS(2253), - [anon_sym_LT_EQ] = ACTIONS(2253), - [anon_sym_GT_EQ] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2253), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_struct] = ACTIONS(2253), - [anon_sym_mut] = ACTIONS(2253), - [anon_sym_PLUS_PLUS] = ACTIONS(2253), - [anon_sym_DASH_DASH] = ACTIONS(2253), - [anon_sym_QMARK] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(2253), - [anon_sym_go] = ACTIONS(2253), - [anon_sym_spawn] = ACTIONS(2253), - [anon_sym_json_DOTdecode] = ACTIONS(2253), - [anon_sym_LBRACK2] = ACTIONS(2253), - [anon_sym_TILDE] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2253), - [anon_sym_AMP] = ACTIONS(2253), - [anon_sym_LT_DASH] = ACTIONS(2253), - [anon_sym_LT_LT] = ACTIONS(2253), - [anon_sym_GT_GT] = ACTIONS(2253), - [anon_sym_GT_GT_GT] = ACTIONS(2253), - [anon_sym_AMP_CARET] = ACTIONS(2253), - [anon_sym_AMP_AMP] = ACTIONS(2253), - [anon_sym_PIPE_PIPE] = ACTIONS(2253), - [anon_sym_or] = ACTIONS(2253), - [sym_none] = ACTIONS(2253), - [sym_true] = ACTIONS(2253), - [sym_false] = ACTIONS(2253), - [sym_nil] = ACTIONS(2253), - [anon_sym_QMARK_DOT] = ACTIONS(2253), - [anon_sym_POUND_LBRACK] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2253), - [anon_sym_DOLLARif] = ACTIONS(2253), - [anon_sym_is] = ACTIONS(2253), - [anon_sym_BANGis] = ACTIONS(2253), - [anon_sym_in] = ACTIONS(2253), - [anon_sym_BANGin] = ACTIONS(2253), - [anon_sym_match] = ACTIONS(2253), - [anon_sym_select] = ACTIONS(2253), - [anon_sym_lock] = ACTIONS(2253), - [anon_sym_rlock] = ACTIONS(2253), - [anon_sym_unsafe] = ACTIONS(2253), - [anon_sym_sql] = ACTIONS(2253), - [sym_int_literal] = ACTIONS(2253), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [anon_sym_SQUOTE] = ACTIONS(2253), - [anon_sym_DQUOTE] = ACTIONS(2253), - [anon_sym_c_SQUOTE] = ACTIONS(2253), - [anon_sym_c_DQUOTE] = ACTIONS(2253), - [anon_sym_r_SQUOTE] = ACTIONS(2253), - [anon_sym_r_DQUOTE] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(2253), - [anon_sym_shared] = ACTIONS(2253), - [anon_sym_map_LBRACK] = ACTIONS(2253), - [anon_sym_chan] = ACTIONS(2253), - [anon_sym_thread] = ACTIONS(2253), - [anon_sym_atomic] = ACTIONS(2253), + [anon_sym_SEMI] = ACTIONS(2479), + [anon_sym_DOT] = ACTIONS(2479), + [anon_sym_as] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2479), + [anon_sym_COMMA] = ACTIONS(2479), + [anon_sym_RBRACE] = ACTIONS(2479), + [anon_sym_LPAREN] = ACTIONS(2479), + [anon_sym_RPAREN] = ACTIONS(2479), + [anon_sym_fn] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2479), + [anon_sym_SLASH] = ACTIONS(2479), + [anon_sym_PERCENT] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_EQ_EQ] = ACTIONS(2479), + [anon_sym_BANG_EQ] = ACTIONS(2479), + [anon_sym_LT_EQ] = ACTIONS(2479), + [anon_sym_GT_EQ] = ACTIONS(2479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2479), + [anon_sym_LBRACK] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(2479), + [anon_sym_mut] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_QMARK] = ACTIONS(2479), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_go] = ACTIONS(2479), + [anon_sym_spawn] = ACTIONS(2479), + [anon_sym_json_DOTdecode] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(2479), + [anon_sym_LBRACK2] = ACTIONS(2479), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_LT_DASH] = ACTIONS(2479), + [anon_sym_LT_LT] = ACTIONS(2479), + [anon_sym_GT_GT] = ACTIONS(2479), + [anon_sym_GT_GT_GT] = ACTIONS(2479), + [anon_sym_AMP_CARET] = ACTIONS(2479), + [anon_sym_AMP_AMP] = ACTIONS(2479), + [anon_sym_PIPE_PIPE] = ACTIONS(2479), + [anon_sym_or] = ACTIONS(2479), + [sym_none] = ACTIONS(2479), + [sym_true] = ACTIONS(2479), + [sym_false] = ACTIONS(2479), + [sym_nil] = ACTIONS(2479), + [anon_sym_QMARK_DOT] = ACTIONS(2479), + [anon_sym_POUND_LBRACK] = ACTIONS(2479), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_DOLLARif] = ACTIONS(2479), + [anon_sym_is] = ACTIONS(2479), + [anon_sym_BANGis] = ACTIONS(2479), + [anon_sym_in] = ACTIONS(2479), + [anon_sym_BANGin] = ACTIONS(2479), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_select] = ACTIONS(2479), + [anon_sym_lock] = ACTIONS(2479), + [anon_sym_rlock] = ACTIONS(2479), + [anon_sym_unsafe] = ACTIONS(2479), + [anon_sym_sql] = ACTIONS(2479), + [sym_int_literal] = ACTIONS(2479), + [sym_float_literal] = ACTIONS(2479), + [sym_rune_literal] = ACTIONS(2479), + [anon_sym_SQUOTE] = ACTIONS(2479), + [anon_sym_DQUOTE] = ACTIONS(2479), + [anon_sym_c_SQUOTE] = ACTIONS(2479), + [anon_sym_c_DQUOTE] = ACTIONS(2479), + [anon_sym_r_SQUOTE] = ACTIONS(2479), + [anon_sym_r_DQUOTE] = ACTIONS(2479), + [sym_pseudo_compile_time_identifier] = ACTIONS(2479), + [anon_sym_shared] = ACTIONS(2479), + [anon_sym_map_LBRACK] = ACTIONS(2479), + [anon_sym_chan] = ACTIONS(2479), + [anon_sym_thread] = ACTIONS(2479), + [anon_sym_atomic] = ACTIONS(2479), }, - [1247] = { - [sym_line_comment] = STATE(1247), - [sym_block_comment] = STATE(1247), - [sym_identifier] = ACTIONS(2249), - [anon_sym_LF] = ACTIONS(2249), - [anon_sym_CR] = ACTIONS(2249), - [anon_sym_CR_LF] = ACTIONS(2249), + [1221] = { + [sym_line_comment] = STATE(1221), + [sym_block_comment] = STATE(1221), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LF] = ACTIONS(2973), + [anon_sym_CR] = ACTIONS(2973), + [anon_sym_CR_LF] = ACTIONS(2973), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2249), - [anon_sym_DOT] = ACTIONS(2249), - [anon_sym_as] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_COMMA] = ACTIONS(2249), - [anon_sym_RBRACE] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2249), - [anon_sym_RPAREN] = ACTIONS(2249), - [anon_sym_PIPE] = ACTIONS(2249), - [anon_sym_fn] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2249), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_GT] = ACTIONS(2249), - [anon_sym_EQ_EQ] = ACTIONS(2249), - [anon_sym_BANG_EQ] = ACTIONS(2249), - [anon_sym_LT_EQ] = ACTIONS(2249), - [anon_sym_GT_EQ] = ACTIONS(2249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2247), - [anon_sym_struct] = ACTIONS(2249), - [anon_sym_mut] = ACTIONS(2249), - [anon_sym_PLUS_PLUS] = ACTIONS(2249), - [anon_sym_DASH_DASH] = ACTIONS(2249), - [anon_sym_QMARK] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(2249), - [anon_sym_go] = ACTIONS(2249), - [anon_sym_spawn] = ACTIONS(2249), - [anon_sym_json_DOTdecode] = ACTIONS(2249), - [anon_sym_LBRACK2] = ACTIONS(2249), - [anon_sym_TILDE] = ACTIONS(2249), - [anon_sym_CARET] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_DASH] = ACTIONS(2249), - [anon_sym_LT_LT] = ACTIONS(2249), - [anon_sym_GT_GT] = ACTIONS(2249), - [anon_sym_GT_GT_GT] = ACTIONS(2249), - [anon_sym_AMP_CARET] = ACTIONS(2249), - [anon_sym_AMP_AMP] = ACTIONS(2249), - [anon_sym_PIPE_PIPE] = ACTIONS(2249), - [anon_sym_or] = ACTIONS(2249), - [sym_none] = ACTIONS(2249), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [sym_nil] = ACTIONS(2249), - [anon_sym_QMARK_DOT] = ACTIONS(2249), - [anon_sym_POUND_LBRACK] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_DOLLARif] = ACTIONS(2249), - [anon_sym_is] = ACTIONS(2249), - [anon_sym_BANGis] = ACTIONS(2249), - [anon_sym_in] = ACTIONS(2249), - [anon_sym_BANGin] = ACTIONS(2249), - [anon_sym_match] = ACTIONS(2249), - [anon_sym_select] = ACTIONS(2249), - [anon_sym_lock] = ACTIONS(2249), - [anon_sym_rlock] = ACTIONS(2249), - [anon_sym_unsafe] = ACTIONS(2249), - [anon_sym_sql] = ACTIONS(2249), - [sym_int_literal] = ACTIONS(2249), - [sym_float_literal] = ACTIONS(2249), - [sym_rune_literal] = ACTIONS(2249), - [anon_sym_SQUOTE] = ACTIONS(2249), - [anon_sym_DQUOTE] = ACTIONS(2249), - [anon_sym_c_SQUOTE] = ACTIONS(2249), - [anon_sym_c_DQUOTE] = ACTIONS(2249), - [anon_sym_r_SQUOTE] = ACTIONS(2249), - [anon_sym_r_DQUOTE] = ACTIONS(2249), - [sym_pseudo_compile_time_identifier] = ACTIONS(2249), - [anon_sym_shared] = ACTIONS(2249), - [anon_sym_map_LBRACK] = ACTIONS(2249), - [anon_sym_chan] = ACTIONS(2249), - [anon_sym_thread] = ACTIONS(2249), - [anon_sym_atomic] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2973), + [anon_sym_DOT] = ACTIONS(2973), + [anon_sym_as] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(2973), + [anon_sym_RBRACE] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(2973), + [anon_sym_fn] = ACTIONS(2973), + [anon_sym_PLUS] = ACTIONS(2973), + [anon_sym_DASH] = ACTIONS(2973), + [anon_sym_STAR] = ACTIONS(2973), + [anon_sym_SLASH] = ACTIONS(2973), + [anon_sym_PERCENT] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_GT] = ACTIONS(2973), + [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_DOT_DOT_DOT] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(2971), + [anon_sym_struct] = ACTIONS(2973), + [anon_sym_mut] = ACTIONS(2973), + [anon_sym_PLUS_PLUS] = ACTIONS(2973), + [anon_sym_DASH_DASH] = ACTIONS(2973), + [anon_sym_QMARK] = ACTIONS(2973), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_go] = ACTIONS(2973), + [anon_sym_spawn] = ACTIONS(2973), + [anon_sym_json_DOTdecode] = ACTIONS(2973), + [anon_sym_PIPE] = ACTIONS(2973), + [anon_sym_LBRACK2] = ACTIONS(2973), + [anon_sym_TILDE] = ACTIONS(2973), + [anon_sym_CARET] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2973), + [anon_sym_LT_DASH] = ACTIONS(2973), + [anon_sym_LT_LT] = ACTIONS(2973), + [anon_sym_GT_GT] = ACTIONS(2973), + [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(2973), + [sym_none] = ACTIONS(2973), + [sym_true] = ACTIONS(2973), + [sym_false] = ACTIONS(2973), + [sym_nil] = ACTIONS(2973), + [anon_sym_QMARK_DOT] = ACTIONS(2973), + [anon_sym_POUND_LBRACK] = ACTIONS(2973), + [anon_sym_if] = ACTIONS(2973), + [anon_sym_DOLLARif] = ACTIONS(2973), + [anon_sym_is] = ACTIONS(2973), + [anon_sym_BANGis] = ACTIONS(2973), + [anon_sym_in] = ACTIONS(2973), + [anon_sym_BANGin] = ACTIONS(2973), + [anon_sym_match] = ACTIONS(2973), + [anon_sym_select] = ACTIONS(2973), + [anon_sym_lock] = ACTIONS(2973), + [anon_sym_rlock] = ACTIONS(2973), + [anon_sym_unsafe] = ACTIONS(2973), + [anon_sym_sql] = ACTIONS(2973), + [sym_int_literal] = ACTIONS(2973), + [sym_float_literal] = ACTIONS(2973), + [sym_rune_literal] = ACTIONS(2973), + [anon_sym_SQUOTE] = ACTIONS(2973), + [anon_sym_DQUOTE] = ACTIONS(2973), + [anon_sym_c_SQUOTE] = ACTIONS(2973), + [anon_sym_c_DQUOTE] = ACTIONS(2973), + [anon_sym_r_SQUOTE] = ACTIONS(2973), + [anon_sym_r_DQUOTE] = ACTIONS(2973), + [sym_pseudo_compile_time_identifier] = ACTIONS(2973), + [anon_sym_shared] = ACTIONS(2973), + [anon_sym_map_LBRACK] = ACTIONS(2973), + [anon_sym_chan] = ACTIONS(2973), + [anon_sym_thread] = ACTIONS(2973), + [anon_sym_atomic] = ACTIONS(2973), }, - [1248] = { - [sym_line_comment] = STATE(1248), - [sym_block_comment] = STATE(1248), - [sym_identifier] = ACTIONS(2105), - [anon_sym_LF] = ACTIONS(2105), - [anon_sym_CR] = ACTIONS(2105), - [anon_sym_CR_LF] = ACTIONS(2105), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_as] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_COMMA] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_RPAREN] = ACTIONS(2105), - [anon_sym_PIPE] = ACTIONS(2105), - [anon_sym_fn] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_PERCENT] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_GT] = ACTIONS(2105), - [anon_sym_EQ_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ] = ACTIONS(2105), - [anon_sym_LT_EQ] = ACTIONS(2105), - [anon_sym_GT_EQ] = ACTIONS(2105), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2103), - [anon_sym_struct] = ACTIONS(2105), - [anon_sym_mut] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [anon_sym_QMARK] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_go] = ACTIONS(2105), - [anon_sym_spawn] = ACTIONS(2105), - [anon_sym_json_DOTdecode] = ACTIONS(2105), - [anon_sym_LBRACK2] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_CARET] = ACTIONS(2105), - [anon_sym_AMP] = ACTIONS(2105), - [anon_sym_LT_DASH] = ACTIONS(2105), - [anon_sym_LT_LT] = ACTIONS(2105), - [anon_sym_GT_GT] = ACTIONS(2105), - [anon_sym_GT_GT_GT] = ACTIONS(2105), - [anon_sym_AMP_CARET] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(2105), - [anon_sym_PIPE_PIPE] = ACTIONS(2105), - [anon_sym_or] = ACTIONS(2105), - [sym_none] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_nil] = ACTIONS(2105), - [anon_sym_QMARK_DOT] = ACTIONS(2105), - [anon_sym_POUND_LBRACK] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_DOLLARif] = ACTIONS(2105), - [anon_sym_is] = ACTIONS(2105), - [anon_sym_BANGis] = ACTIONS(2105), - [anon_sym_in] = ACTIONS(2105), - [anon_sym_BANGin] = ACTIONS(2105), - [anon_sym_match] = ACTIONS(2105), - [anon_sym_select] = ACTIONS(2105), - [anon_sym_lock] = ACTIONS(2105), - [anon_sym_rlock] = ACTIONS(2105), - [anon_sym_unsafe] = ACTIONS(2105), - [anon_sym_sql] = ACTIONS(2105), - [sym_int_literal] = ACTIONS(2105), - [sym_float_literal] = ACTIONS(2105), - [sym_rune_literal] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_c_SQUOTE] = ACTIONS(2105), - [anon_sym_c_DQUOTE] = ACTIONS(2105), - [anon_sym_r_SQUOTE] = ACTIONS(2105), - [anon_sym_r_DQUOTE] = ACTIONS(2105), - [sym_pseudo_compile_time_identifier] = ACTIONS(2105), - [anon_sym_shared] = ACTIONS(2105), - [anon_sym_map_LBRACK] = ACTIONS(2105), - [anon_sym_chan] = ACTIONS(2105), - [anon_sym_thread] = ACTIONS(2105), - [anon_sym_atomic] = ACTIONS(2105), + [1222] = { + [sym_line_comment] = STATE(1222), + [sym_block_comment] = STATE(1222), + [sym_identifier] = ACTIONS(2957), + [anon_sym_LF] = ACTIONS(2957), + [anon_sym_CR] = ACTIONS(2957), + [anon_sym_CR_LF] = ACTIONS(2957), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_as] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_COMMA] = ACTIONS(2957), + [anon_sym_RBRACE] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_RPAREN] = ACTIONS(2957), + [anon_sym_fn] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_SLASH] = ACTIONS(2957), + [anon_sym_PERCENT] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2957), + [anon_sym_GT] = ACTIONS(2957), + [anon_sym_EQ_EQ] = ACTIONS(2957), + [anon_sym_BANG_EQ] = ACTIONS(2957), + [anon_sym_LT_EQ] = ACTIONS(2957), + [anon_sym_GT_EQ] = ACTIONS(2957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2955), + [anon_sym_struct] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_PLUS_PLUS] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2957), + [anon_sym_QMARK] = ACTIONS(2957), + [anon_sym_BANG] = ACTIONS(2957), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2957), + [anon_sym_json_DOTdecode] = ACTIONS(2957), + [anon_sym_PIPE] = ACTIONS(2957), + [anon_sym_LBRACK2] = ACTIONS(2957), + [anon_sym_TILDE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2957), + [anon_sym_AMP] = ACTIONS(2957), + [anon_sym_LT_DASH] = ACTIONS(2957), + [anon_sym_LT_LT] = ACTIONS(2957), + [anon_sym_GT_GT] = ACTIONS(2957), + [anon_sym_GT_GT_GT] = ACTIONS(2957), + [anon_sym_AMP_CARET] = ACTIONS(2957), + [anon_sym_AMP_AMP] = ACTIONS(2957), + [anon_sym_PIPE_PIPE] = ACTIONS(2957), + [anon_sym_or] = ACTIONS(2957), + [sym_none] = ACTIONS(2957), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_nil] = ACTIONS(2957), + [anon_sym_QMARK_DOT] = ACTIONS(2957), + [anon_sym_POUND_LBRACK] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_DOLLARif] = ACTIONS(2957), + [anon_sym_is] = ACTIONS(2957), + [anon_sym_BANGis] = ACTIONS(2957), + [anon_sym_in] = ACTIONS(2957), + [anon_sym_BANGin] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_select] = ACTIONS(2957), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_rlock] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2957), + [anon_sym_sql] = ACTIONS(2957), + [sym_int_literal] = ACTIONS(2957), + [sym_float_literal] = ACTIONS(2957), + [sym_rune_literal] = ACTIONS(2957), + [anon_sym_SQUOTE] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [anon_sym_c_SQUOTE] = ACTIONS(2957), + [anon_sym_c_DQUOTE] = ACTIONS(2957), + [anon_sym_r_SQUOTE] = ACTIONS(2957), + [anon_sym_r_DQUOTE] = ACTIONS(2957), + [sym_pseudo_compile_time_identifier] = ACTIONS(2957), + [anon_sym_shared] = ACTIONS(2957), + [anon_sym_map_LBRACK] = ACTIONS(2957), + [anon_sym_chan] = ACTIONS(2957), + [anon_sym_thread] = ACTIONS(2957), + [anon_sym_atomic] = ACTIONS(2957), }, - [1249] = { - [sym_line_comment] = STATE(1249), - [sym_block_comment] = STATE(1249), - [sym_identifier] = ACTIONS(2127), - [anon_sym_LF] = ACTIONS(2127), - [anon_sym_CR] = ACTIONS(2127), - [anon_sym_CR_LF] = ACTIONS(2127), + [1223] = { + [sym_line_comment] = STATE(1223), + [sym_block_comment] = STATE(1223), + [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_SEMI] = ACTIONS(2127), - [anon_sym_DOT] = ACTIONS(2127), - [anon_sym_as] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_COMMA] = ACTIONS(2127), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym_RPAREN] = ACTIONS(2127), - [anon_sym_PIPE] = ACTIONS(2127), - [anon_sym_fn] = ACTIONS(2127), - [anon_sym_PLUS] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2127), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_SLASH] = ACTIONS(2127), - [anon_sym_PERCENT] = ACTIONS(2127), - [anon_sym_LT] = ACTIONS(2127), - [anon_sym_GT] = ACTIONS(2127), - [anon_sym_EQ_EQ] = ACTIONS(2127), - [anon_sym_BANG_EQ] = ACTIONS(2127), - [anon_sym_LT_EQ] = ACTIONS(2127), - [anon_sym_GT_EQ] = ACTIONS(2127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_struct] = ACTIONS(2127), - [anon_sym_mut] = ACTIONS(2127), - [anon_sym_PLUS_PLUS] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(2127), - [anon_sym_QMARK] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_go] = ACTIONS(2127), - [anon_sym_spawn] = ACTIONS(2127), - [anon_sym_json_DOTdecode] = ACTIONS(2127), - [anon_sym_LBRACK2] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_CARET] = ACTIONS(2127), - [anon_sym_AMP] = ACTIONS(2127), - [anon_sym_LT_DASH] = ACTIONS(2127), - [anon_sym_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_AMP_CARET] = ACTIONS(2127), - [anon_sym_AMP_AMP] = ACTIONS(2127), - [anon_sym_PIPE_PIPE] = ACTIONS(2127), - [anon_sym_or] = ACTIONS(2127), - [sym_none] = ACTIONS(2127), - [sym_true] = ACTIONS(2127), - [sym_false] = ACTIONS(2127), - [sym_nil] = ACTIONS(2127), - [anon_sym_QMARK_DOT] = ACTIONS(2127), - [anon_sym_POUND_LBRACK] = ACTIONS(2127), - [anon_sym_if] = ACTIONS(2127), - [anon_sym_DOLLARif] = ACTIONS(2127), - [anon_sym_is] = ACTIONS(2127), - [anon_sym_BANGis] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2127), - [anon_sym_BANGin] = ACTIONS(2127), - [anon_sym_match] = ACTIONS(2127), - [anon_sym_select] = ACTIONS(2127), - [anon_sym_lock] = ACTIONS(2127), - [anon_sym_rlock] = ACTIONS(2127), - [anon_sym_unsafe] = ACTIONS(2127), - [anon_sym_sql] = ACTIONS(2127), - [sym_int_literal] = ACTIONS(2127), - [sym_float_literal] = ACTIONS(2127), - [sym_rune_literal] = ACTIONS(2127), - [anon_sym_SQUOTE] = ACTIONS(2127), - [anon_sym_DQUOTE] = ACTIONS(2127), - [anon_sym_c_SQUOTE] = ACTIONS(2127), - [anon_sym_c_DQUOTE] = ACTIONS(2127), - [anon_sym_r_SQUOTE] = ACTIONS(2127), - [anon_sym_r_DQUOTE] = ACTIONS(2127), - [sym_pseudo_compile_time_identifier] = ACTIONS(2127), - [anon_sym_shared] = ACTIONS(2127), - [anon_sym_map_LBRACK] = ACTIONS(2127), - [anon_sym_chan] = ACTIONS(2127), - [anon_sym_thread] = ACTIONS(2127), - [anon_sym_atomic] = ACTIONS(2127), + [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_fn] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2949), + [anon_sym_SLASH] = 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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [anon_sym_c_SQUOTE] = ACTIONS(2949), + [anon_sym_c_DQUOTE] = ACTIONS(2949), + [anon_sym_r_SQUOTE] = ACTIONS(2949), + [anon_sym_r_DQUOTE] = 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), }, - [1250] = { - [sym_line_comment] = STATE(1250), - [sym_block_comment] = STATE(1250), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(605), + [1224] = { + [sym_line_comment] = STATE(1224), + [sym_block_comment] = STATE(1224), + [sym_identifier] = ACTIONS(2367), + [anon_sym_LF] = ACTIONS(2367), + [anon_sym_CR] = ACTIONS(2367), + [anon_sym_CR_LF] = ACTIONS(2367), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2367), + [anon_sym_DOT] = ACTIONS(2367), + [anon_sym_as] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_COMMA] = ACTIONS(2367), + [anon_sym_RBRACE] = ACTIONS(2367), + [anon_sym_LPAREN] = ACTIONS(2367), + [anon_sym_RPAREN] = ACTIONS(2367), + [anon_sym_fn] = ACTIONS(2367), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_SLASH] = ACTIONS(2367), + [anon_sym_PERCENT] = ACTIONS(2367), + [anon_sym_LT] = ACTIONS(2367), + [anon_sym_GT] = ACTIONS(2367), + [anon_sym_EQ_EQ] = ACTIONS(2367), + [anon_sym_BANG_EQ] = ACTIONS(2367), + [anon_sym_LT_EQ] = ACTIONS(2367), + [anon_sym_GT_EQ] = ACTIONS(2367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2367), + [anon_sym_LBRACK] = ACTIONS(2365), + [anon_sym_struct] = ACTIONS(2367), + [anon_sym_mut] = ACTIONS(2367), + [anon_sym_PLUS_PLUS] = ACTIONS(2367), + [anon_sym_DASH_DASH] = ACTIONS(2367), + [anon_sym_QMARK] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_go] = ACTIONS(2367), + [anon_sym_spawn] = ACTIONS(2367), + [anon_sym_json_DOTdecode] = ACTIONS(2367), + [anon_sym_PIPE] = ACTIONS(2367), + [anon_sym_LBRACK2] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_CARET] = ACTIONS(2367), + [anon_sym_AMP] = ACTIONS(2367), + [anon_sym_LT_DASH] = ACTIONS(2367), + [anon_sym_LT_LT] = ACTIONS(2367), + [anon_sym_GT_GT] = ACTIONS(2367), + [anon_sym_GT_GT_GT] = ACTIONS(2367), + [anon_sym_AMP_CARET] = ACTIONS(2367), + [anon_sym_AMP_AMP] = ACTIONS(2367), + [anon_sym_PIPE_PIPE] = ACTIONS(2367), + [anon_sym_or] = ACTIONS(2367), + [sym_none] = ACTIONS(2367), + [sym_true] = ACTIONS(2367), + [sym_false] = ACTIONS(2367), + [sym_nil] = ACTIONS(2367), + [anon_sym_QMARK_DOT] = ACTIONS(2367), + [anon_sym_POUND_LBRACK] = ACTIONS(2367), + [anon_sym_if] = ACTIONS(2367), + [anon_sym_DOLLARif] = ACTIONS(2367), + [anon_sym_is] = ACTIONS(2367), + [anon_sym_BANGis] = ACTIONS(2367), + [anon_sym_in] = ACTIONS(2367), + [anon_sym_BANGin] = ACTIONS(2367), + [anon_sym_match] = ACTIONS(2367), + [anon_sym_select] = ACTIONS(2367), + [anon_sym_lock] = ACTIONS(2367), + [anon_sym_rlock] = ACTIONS(2367), + [anon_sym_unsafe] = ACTIONS(2367), + [anon_sym_sql] = ACTIONS(2367), + [sym_int_literal] = ACTIONS(2367), + [sym_float_literal] = ACTIONS(2367), + [sym_rune_literal] = ACTIONS(2367), + [anon_sym_SQUOTE] = ACTIONS(2367), + [anon_sym_DQUOTE] = ACTIONS(2367), + [anon_sym_c_SQUOTE] = ACTIONS(2367), + [anon_sym_c_DQUOTE] = ACTIONS(2367), + [anon_sym_r_SQUOTE] = ACTIONS(2367), + [anon_sym_r_DQUOTE] = ACTIONS(2367), + [sym_pseudo_compile_time_identifier] = ACTIONS(2367), + [anon_sym_shared] = ACTIONS(2367), + [anon_sym_map_LBRACK] = ACTIONS(2367), + [anon_sym_chan] = ACTIONS(2367), + [anon_sym_thread] = ACTIONS(2367), + [anon_sym_atomic] = ACTIONS(2367), + }, + [1225] = { + [sym_line_comment] = STATE(1225), + [sym_block_comment] = STATE(1225), + [sym_identifier] = ACTIONS(3022), + [anon_sym_LF] = ACTIONS(3022), + [anon_sym_CR] = ACTIONS(3022), + [anon_sym_CR_LF] = ACTIONS(3022), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3022), + [anon_sym_DOT] = ACTIONS(3022), + [anon_sym_as] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3022), + [anon_sym_COMMA] = ACTIONS(3022), + [anon_sym_RBRACE] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_RPAREN] = ACTIONS(3022), + [anon_sym_fn] = ACTIONS(3022), + [anon_sym_PLUS] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(3022), + [anon_sym_SLASH] = ACTIONS(3022), + [anon_sym_PERCENT] = ACTIONS(3022), + [anon_sym_LT] = ACTIONS(3022), + [anon_sym_GT] = ACTIONS(3022), + [anon_sym_EQ_EQ] = ACTIONS(3022), + [anon_sym_BANG_EQ] = ACTIONS(3022), + [anon_sym_LT_EQ] = ACTIONS(3022), + [anon_sym_GT_EQ] = ACTIONS(3022), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_struct] = ACTIONS(3022), + [anon_sym_mut] = ACTIONS(3022), + [anon_sym_PLUS_PLUS] = ACTIONS(3022), + [anon_sym_DASH_DASH] = ACTIONS(3022), + [anon_sym_QMARK] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_go] = ACTIONS(3022), + [anon_sym_spawn] = ACTIONS(3022), + [anon_sym_json_DOTdecode] = ACTIONS(3022), + [anon_sym_PIPE] = ACTIONS(3022), + [anon_sym_LBRACK2] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3022), + [anon_sym_CARET] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3022), + [anon_sym_LT_DASH] = ACTIONS(3022), + [anon_sym_LT_LT] = ACTIONS(3022), + [anon_sym_GT_GT] = ACTIONS(3022), + [anon_sym_GT_GT_GT] = ACTIONS(3022), + [anon_sym_AMP_CARET] = ACTIONS(3022), + [anon_sym_AMP_AMP] = ACTIONS(3022), + [anon_sym_PIPE_PIPE] = ACTIONS(3022), + [anon_sym_or] = ACTIONS(3022), + [sym_none] = ACTIONS(3022), + [sym_true] = ACTIONS(3022), + [sym_false] = ACTIONS(3022), + [sym_nil] = ACTIONS(3022), + [anon_sym_QMARK_DOT] = ACTIONS(3022), + [anon_sym_POUND_LBRACK] = ACTIONS(3022), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_DOLLARif] = ACTIONS(3022), + [anon_sym_is] = ACTIONS(3022), + [anon_sym_BANGis] = ACTIONS(3022), + [anon_sym_in] = ACTIONS(3022), + [anon_sym_BANGin] = ACTIONS(3022), + [anon_sym_match] = ACTIONS(3022), + [anon_sym_select] = ACTIONS(3022), + [anon_sym_lock] = ACTIONS(3022), + [anon_sym_rlock] = ACTIONS(3022), + [anon_sym_unsafe] = ACTIONS(3022), + [anon_sym_sql] = ACTIONS(3022), + [sym_int_literal] = ACTIONS(3022), + [sym_float_literal] = ACTIONS(3022), + [sym_rune_literal] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_c_SQUOTE] = ACTIONS(3022), + [anon_sym_c_DQUOTE] = ACTIONS(3022), + [anon_sym_r_SQUOTE] = ACTIONS(3022), + [anon_sym_r_DQUOTE] = ACTIONS(3022), + [sym_pseudo_compile_time_identifier] = ACTIONS(3022), + [anon_sym_shared] = ACTIONS(3022), + [anon_sym_map_LBRACK] = ACTIONS(3022), + [anon_sym_chan] = ACTIONS(3022), + [anon_sym_thread] = ACTIONS(3022), + [anon_sym_atomic] = ACTIONS(3022), + }, + [1226] = { + [sym_line_comment] = STATE(1226), + [sym_block_comment] = STATE(1226), + [sym_identifier] = ACTIONS(3808), + [anon_sym_LF] = ACTIONS(3811), + [anon_sym_CR] = ACTIONS(3811), + [anon_sym_CR_LF] = ACTIONS(3811), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3811), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_as] = ACTIONS(2937), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_COMMA] = ACTIONS(3811), + [anon_sym_RBRACE] = ACTIONS(3808), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_fn] = ACTIONS(2937), + [anon_sym_PLUS] = ACTIONS(2937), + [anon_sym_DASH] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2937), + [anon_sym_SLASH] = ACTIONS(2937), + [anon_sym_PERCENT] = ACTIONS(2937), + [anon_sym_LT] = ACTIONS(2937), + [anon_sym_GT] = ACTIONS(2937), + [anon_sym_EQ_EQ] = ACTIONS(2937), + [anon_sym_BANG_EQ] = ACTIONS(2937), + [anon_sym_LT_EQ] = ACTIONS(2937), + [anon_sym_GT_EQ] = ACTIONS(2937), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3817), + [anon_sym_LBRACK] = ACTIONS(2935), + [anon_sym_struct] = ACTIONS(2937), + [anon_sym_mut] = ACTIONS(2937), + [anon_sym_COLON] = ACTIONS(3819), + [anon_sym_PLUS_PLUS] = ACTIONS(2937), + [anon_sym_DASH_DASH] = ACTIONS(2937), + [anon_sym_QMARK] = ACTIONS(2937), + [anon_sym_BANG] = ACTIONS(2937), + [anon_sym_go] = ACTIONS(2937), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2937), + [anon_sym_PIPE] = ACTIONS(2937), + [anon_sym_LBRACK2] = ACTIONS(2937), + [anon_sym_TILDE] = ACTIONS(2937), + [anon_sym_CARET] = ACTIONS(2937), + [anon_sym_AMP] = ACTIONS(2937), + [anon_sym_LT_DASH] = ACTIONS(2937), + [anon_sym_LT_LT] = ACTIONS(2937), + [anon_sym_GT_GT] = ACTIONS(2937), + [anon_sym_GT_GT_GT] = ACTIONS(2937), + [anon_sym_AMP_CARET] = ACTIONS(2937), + [anon_sym_AMP_AMP] = ACTIONS(2937), + [anon_sym_PIPE_PIPE] = ACTIONS(2937), + [anon_sym_or] = ACTIONS(2937), + [sym_none] = ACTIONS(2937), + [sym_true] = ACTIONS(2937), + [sym_false] = ACTIONS(2937), + [sym_nil] = ACTIONS(2937), + [anon_sym_QMARK_DOT] = ACTIONS(2937), + [anon_sym_POUND_LBRACK] = ACTIONS(2937), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_DOLLARif] = ACTIONS(2937), + [anon_sym_is] = ACTIONS(2937), + [anon_sym_BANGis] = ACTIONS(2937), + [anon_sym_in] = ACTIONS(2937), + [anon_sym_BANGin] = ACTIONS(2937), + [anon_sym_match] = ACTIONS(2937), + [anon_sym_select] = ACTIONS(2937), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(2937), + [anon_sym_sql] = ACTIONS(2937), + [sym_int_literal] = ACTIONS(2937), + [sym_float_literal] = ACTIONS(2937), + [sym_rune_literal] = ACTIONS(2937), + [anon_sym_SQUOTE] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2937), + [anon_sym_c_SQUOTE] = ACTIONS(2937), + [anon_sym_c_DQUOTE] = ACTIONS(2937), + [anon_sym_r_SQUOTE] = ACTIONS(2937), + [anon_sym_r_DQUOTE] = ACTIONS(2937), + [sym_pseudo_compile_time_identifier] = ACTIONS(2937), + [anon_sym_shared] = ACTIONS(2937), + [anon_sym_map_LBRACK] = ACTIONS(2937), + [anon_sym_chan] = ACTIONS(2937), + [anon_sym_thread] = ACTIONS(2937), + [anon_sym_atomic] = ACTIONS(2937), + }, + [1227] = { + [sym_line_comment] = STATE(1227), + [sym_block_comment] = STATE(1227), + [sym_identifier] = ACTIONS(2491), + [anon_sym_LF] = ACTIONS(2491), + [anon_sym_CR] = ACTIONS(2491), + [anon_sym_CR_LF] = ACTIONS(2491), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2491), + [anon_sym_DOT] = ACTIONS(2491), + [anon_sym_as] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_COMMA] = ACTIONS(2491), + [anon_sym_RBRACE] = ACTIONS(2491), + [anon_sym_LPAREN] = ACTIONS(2491), + [anon_sym_RPAREN] = ACTIONS(2491), + [anon_sym_fn] = ACTIONS(2491), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_STAR] = ACTIONS(2491), + [anon_sym_SLASH] = ACTIONS(2491), + [anon_sym_PERCENT] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2491), + [anon_sym_GT] = ACTIONS(2491), + [anon_sym_EQ_EQ] = ACTIONS(2491), + [anon_sym_BANG_EQ] = ACTIONS(2491), + [anon_sym_LT_EQ] = ACTIONS(2491), + [anon_sym_GT_EQ] = ACTIONS(2491), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(2491), + [anon_sym_mut] = ACTIONS(2491), + [anon_sym_PLUS_PLUS] = ACTIONS(2491), + [anon_sym_DASH_DASH] = ACTIONS(2491), + [anon_sym_QMARK] = ACTIONS(2491), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2491), + [anon_sym_spawn] = ACTIONS(2491), + [anon_sym_json_DOTdecode] = ACTIONS(2491), + [anon_sym_PIPE] = ACTIONS(2491), + [anon_sym_LBRACK2] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_CARET] = ACTIONS(2491), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2491), + [anon_sym_LT_LT] = ACTIONS(2491), + [anon_sym_GT_GT] = ACTIONS(2491), + [anon_sym_GT_GT_GT] = ACTIONS(2491), + [anon_sym_AMP_CARET] = ACTIONS(2491), + [anon_sym_AMP_AMP] = ACTIONS(2491), + [anon_sym_PIPE_PIPE] = ACTIONS(2491), + [anon_sym_or] = ACTIONS(2491), + [sym_none] = ACTIONS(2491), + [sym_true] = ACTIONS(2491), + [sym_false] = ACTIONS(2491), + [sym_nil] = ACTIONS(2491), + [anon_sym_QMARK_DOT] = ACTIONS(2491), + [anon_sym_POUND_LBRACK] = ACTIONS(2491), + [anon_sym_if] = ACTIONS(2491), + [anon_sym_DOLLARif] = ACTIONS(2491), + [anon_sym_is] = ACTIONS(2491), + [anon_sym_BANGis] = ACTIONS(2491), + [anon_sym_in] = ACTIONS(2491), + [anon_sym_BANGin] = ACTIONS(2491), + [anon_sym_match] = ACTIONS(2491), + [anon_sym_select] = ACTIONS(2491), + [anon_sym_lock] = ACTIONS(2491), + [anon_sym_rlock] = ACTIONS(2491), + [anon_sym_unsafe] = ACTIONS(2491), + [anon_sym_sql] = ACTIONS(2491), + [sym_int_literal] = ACTIONS(2491), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2491), + [anon_sym_DQUOTE] = ACTIONS(2491), + [anon_sym_c_SQUOTE] = ACTIONS(2491), + [anon_sym_c_DQUOTE] = ACTIONS(2491), + [anon_sym_r_SQUOTE] = ACTIONS(2491), + [anon_sym_r_DQUOTE] = ACTIONS(2491), + [sym_pseudo_compile_time_identifier] = ACTIONS(2491), + [anon_sym_shared] = ACTIONS(2491), + [anon_sym_map_LBRACK] = ACTIONS(2491), + [anon_sym_chan] = ACTIONS(2491), + [anon_sym_thread] = ACTIONS(2491), + [anon_sym_atomic] = ACTIONS(2491), + }, + [1228] = { + [sym_line_comment] = STATE(1228), + [sym_block_comment] = STATE(1228), + [sym_identifier] = ACTIONS(2985), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_CR] = ACTIONS(2985), + [anon_sym_CR_LF] = ACTIONS(2985), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2985), + [anon_sym_DOT] = ACTIONS(2985), + [anon_sym_as] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2985), + [anon_sym_COMMA] = ACTIONS(2985), + [anon_sym_RBRACE] = ACTIONS(2985), + [anon_sym_LPAREN] = ACTIONS(2985), + [anon_sym_RPAREN] = ACTIONS(2985), + [anon_sym_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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(2985), + [anon_sym_c_SQUOTE] = ACTIONS(2985), + [anon_sym_c_DQUOTE] = ACTIONS(2985), + [anon_sym_r_SQUOTE] = ACTIONS(2985), + [anon_sym_r_DQUOTE] = 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), + }, + [1229] = { + [sym_line_comment] = STATE(1229), + [sym_block_comment] = STATE(1229), + [sym_identifier] = ACTIONS(2371), + [anon_sym_LF] = ACTIONS(2371), + [anon_sym_CR] = ACTIONS(2371), + [anon_sym_CR_LF] = ACTIONS(2371), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2371), + [anon_sym_DOT] = ACTIONS(2371), + [anon_sym_as] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_COMMA] = ACTIONS(2371), + [anon_sym_RBRACE] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_RPAREN] = ACTIONS(2371), + [anon_sym_fn] = ACTIONS(2371), + [anon_sym_PLUS] = ACTIONS(2371), + [anon_sym_DASH] = ACTIONS(2371), + [anon_sym_STAR] = ACTIONS(2371), + [anon_sym_SLASH] = ACTIONS(2371), + [anon_sym_PERCENT] = ACTIONS(2371), + [anon_sym_LT] = ACTIONS(2371), + [anon_sym_GT] = ACTIONS(2371), + [anon_sym_EQ_EQ] = ACTIONS(2371), + [anon_sym_BANG_EQ] = ACTIONS(2371), + [anon_sym_LT_EQ] = ACTIONS(2371), + [anon_sym_GT_EQ] = ACTIONS(2371), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2369), + [anon_sym_struct] = ACTIONS(2371), + [anon_sym_mut] = ACTIONS(2371), + [anon_sym_PLUS_PLUS] = ACTIONS(2371), + [anon_sym_DASH_DASH] = ACTIONS(2371), + [anon_sym_QMARK] = ACTIONS(2371), + [anon_sym_BANG] = ACTIONS(2371), + [anon_sym_go] = ACTIONS(2371), + [anon_sym_spawn] = ACTIONS(2371), + [anon_sym_json_DOTdecode] = ACTIONS(2371), + [anon_sym_PIPE] = ACTIONS(2371), + [anon_sym_LBRACK2] = ACTIONS(2371), + [anon_sym_TILDE] = ACTIONS(2371), + [anon_sym_CARET] = ACTIONS(2371), + [anon_sym_AMP] = ACTIONS(2371), + [anon_sym_LT_DASH] = ACTIONS(2371), + [anon_sym_LT_LT] = ACTIONS(2371), + [anon_sym_GT_GT] = ACTIONS(2371), + [anon_sym_GT_GT_GT] = ACTIONS(2371), + [anon_sym_AMP_CARET] = ACTIONS(2371), + [anon_sym_AMP_AMP] = ACTIONS(2371), + [anon_sym_PIPE_PIPE] = ACTIONS(2371), + [anon_sym_or] = ACTIONS(2371), + [sym_none] = ACTIONS(2371), + [sym_true] = ACTIONS(2371), + [sym_false] = ACTIONS(2371), + [sym_nil] = ACTIONS(2371), + [anon_sym_QMARK_DOT] = ACTIONS(2371), + [anon_sym_POUND_LBRACK] = ACTIONS(2371), + [anon_sym_if] = ACTIONS(2371), + [anon_sym_DOLLARif] = ACTIONS(2371), + [anon_sym_is] = ACTIONS(2371), + [anon_sym_BANGis] = ACTIONS(2371), + [anon_sym_in] = ACTIONS(2371), + [anon_sym_BANGin] = ACTIONS(2371), + [anon_sym_match] = ACTIONS(2371), + [anon_sym_select] = ACTIONS(2371), + [anon_sym_lock] = ACTIONS(2371), + [anon_sym_rlock] = ACTIONS(2371), + [anon_sym_unsafe] = ACTIONS(2371), + [anon_sym_sql] = ACTIONS(2371), + [sym_int_literal] = ACTIONS(2371), + [sym_float_literal] = ACTIONS(2371), + [sym_rune_literal] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2371), + [anon_sym_DQUOTE] = ACTIONS(2371), + [anon_sym_c_SQUOTE] = ACTIONS(2371), + [anon_sym_c_DQUOTE] = ACTIONS(2371), + [anon_sym_r_SQUOTE] = ACTIONS(2371), + [anon_sym_r_DQUOTE] = ACTIONS(2371), + [sym_pseudo_compile_time_identifier] = ACTIONS(2371), + [anon_sym_shared] = ACTIONS(2371), + [anon_sym_map_LBRACK] = ACTIONS(2371), + [anon_sym_chan] = ACTIONS(2371), + [anon_sym_thread] = ACTIONS(2371), + [anon_sym_atomic] = ACTIONS(2371), + }, + [1230] = { + [sym_line_comment] = STATE(1230), + [sym_block_comment] = STATE(1230), + [sym_identifier] = ACTIONS(2433), + [anon_sym_LF] = ACTIONS(2433), + [anon_sym_CR] = ACTIONS(2433), + [anon_sym_CR_LF] = ACTIONS(2433), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2433), + [anon_sym_DOT] = ACTIONS(2433), + [anon_sym_as] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(2433), + [anon_sym_COMMA] = ACTIONS(2433), + [anon_sym_RBRACE] = ACTIONS(2433), + [anon_sym_LPAREN] = ACTIONS(2433), + [anon_sym_RPAREN] = ACTIONS(2433), + [anon_sym_fn] = ACTIONS(2433), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2433), + [anon_sym_SLASH] = ACTIONS(2433), + [anon_sym_PERCENT] = ACTIONS(2433), + [anon_sym_LT] = ACTIONS(2433), + [anon_sym_GT] = ACTIONS(2433), + [anon_sym_EQ_EQ] = ACTIONS(2433), + [anon_sym_BANG_EQ] = ACTIONS(2433), + [anon_sym_LT_EQ] = ACTIONS(2433), + [anon_sym_GT_EQ] = ACTIONS(2433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2433), + [anon_sym_LBRACK] = ACTIONS(2431), + [anon_sym_struct] = ACTIONS(2433), + [anon_sym_mut] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_QMARK] = ACTIONS(2433), + [anon_sym_BANG] = ACTIONS(2433), + [anon_sym_go] = ACTIONS(2433), + [anon_sym_spawn] = ACTIONS(2433), + [anon_sym_json_DOTdecode] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2433), + [anon_sym_LBRACK2] = ACTIONS(2433), + [anon_sym_TILDE] = ACTIONS(2433), + [anon_sym_CARET] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2433), + [anon_sym_LT_DASH] = ACTIONS(2433), + [anon_sym_LT_LT] = ACTIONS(2433), + [anon_sym_GT_GT] = ACTIONS(2433), + [anon_sym_GT_GT_GT] = ACTIONS(2433), + [anon_sym_AMP_CARET] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2433), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_or] = ACTIONS(2433), + [sym_none] = ACTIONS(2433), + [sym_true] = ACTIONS(2433), + [sym_false] = ACTIONS(2433), + [sym_nil] = ACTIONS(2433), + [anon_sym_QMARK_DOT] = ACTIONS(2433), + [anon_sym_POUND_LBRACK] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_DOLLARif] = ACTIONS(2433), + [anon_sym_is] = ACTIONS(2433), + [anon_sym_BANGis] = ACTIONS(2433), + [anon_sym_in] = ACTIONS(2433), + [anon_sym_BANGin] = ACTIONS(2433), + [anon_sym_match] = ACTIONS(2433), + [anon_sym_select] = ACTIONS(2433), + [anon_sym_lock] = ACTIONS(2433), + [anon_sym_rlock] = ACTIONS(2433), + [anon_sym_unsafe] = ACTIONS(2433), + [anon_sym_sql] = ACTIONS(2433), + [sym_int_literal] = ACTIONS(2433), + [sym_float_literal] = ACTIONS(2433), + [sym_rune_literal] = ACTIONS(2433), + [anon_sym_SQUOTE] = ACTIONS(2433), + [anon_sym_DQUOTE] = ACTIONS(2433), + [anon_sym_c_SQUOTE] = ACTIONS(2433), + [anon_sym_c_DQUOTE] = ACTIONS(2433), + [anon_sym_r_SQUOTE] = ACTIONS(2433), + [anon_sym_r_DQUOTE] = ACTIONS(2433), + [sym_pseudo_compile_time_identifier] = ACTIONS(2433), + [anon_sym_shared] = ACTIONS(2433), + [anon_sym_map_LBRACK] = ACTIONS(2433), + [anon_sym_chan] = ACTIONS(2433), + [anon_sym_thread] = ACTIONS(2433), + [anon_sym_atomic] = ACTIONS(2433), + }, + [1231] = { + [sym_line_comment] = STATE(1231), + [sym_block_comment] = STATE(1231), + [sym_identifier] = ACTIONS(2933), + [anon_sym_LF] = ACTIONS(2933), + [anon_sym_CR] = ACTIONS(2933), + [anon_sym_CR_LF] = ACTIONS(2933), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2933), + [anon_sym_DOT] = ACTIONS(2933), + [anon_sym_as] = ACTIONS(2933), + [anon_sym_LBRACE] = ACTIONS(2933), + [anon_sym_COMMA] = ACTIONS(2933), + [anon_sym_RBRACE] = ACTIONS(2933), + [anon_sym_LPAREN] = ACTIONS(2933), + [anon_sym_RPAREN] = ACTIONS(2933), + [anon_sym_fn] = ACTIONS(2933), + [anon_sym_PLUS] = ACTIONS(2933), + [anon_sym_DASH] = ACTIONS(2933), + [anon_sym_STAR] = ACTIONS(2933), + [anon_sym_SLASH] = ACTIONS(2933), + [anon_sym_PERCENT] = ACTIONS(2933), + [anon_sym_LT] = ACTIONS(2933), + [anon_sym_GT] = ACTIONS(2933), + [anon_sym_EQ_EQ] = ACTIONS(2933), + [anon_sym_BANG_EQ] = ACTIONS(2933), + [anon_sym_LT_EQ] = ACTIONS(2933), + [anon_sym_GT_EQ] = ACTIONS(2933), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2933), + [anon_sym_LBRACK] = ACTIONS(2931), + [anon_sym_struct] = ACTIONS(2933), + [anon_sym_mut] = ACTIONS(2933), + [anon_sym_PLUS_PLUS] = ACTIONS(2933), + [anon_sym_DASH_DASH] = ACTIONS(2933), + [anon_sym_QMARK] = ACTIONS(2933), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_go] = ACTIONS(2933), + [anon_sym_spawn] = ACTIONS(2933), + [anon_sym_json_DOTdecode] = ACTIONS(2933), + [anon_sym_PIPE] = ACTIONS(2933), + [anon_sym_LBRACK2] = ACTIONS(2933), + [anon_sym_TILDE] = ACTIONS(2933), + [anon_sym_CARET] = ACTIONS(2933), + [anon_sym_AMP] = ACTIONS(2933), + [anon_sym_LT_DASH] = ACTIONS(2933), + [anon_sym_LT_LT] = ACTIONS(2933), + [anon_sym_GT_GT] = ACTIONS(2933), + [anon_sym_GT_GT_GT] = ACTIONS(2933), + [anon_sym_AMP_CARET] = ACTIONS(2933), + [anon_sym_AMP_AMP] = ACTIONS(2933), + [anon_sym_PIPE_PIPE] = ACTIONS(2933), + [anon_sym_or] = ACTIONS(2933), + [sym_none] = ACTIONS(2933), + [sym_true] = ACTIONS(2933), + [sym_false] = ACTIONS(2933), + [sym_nil] = ACTIONS(2933), + [anon_sym_QMARK_DOT] = ACTIONS(2933), + [anon_sym_POUND_LBRACK] = ACTIONS(2933), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_DOLLARif] = ACTIONS(2933), + [anon_sym_is] = ACTIONS(2933), + [anon_sym_BANGis] = ACTIONS(2933), + [anon_sym_in] = ACTIONS(2933), + [anon_sym_BANGin] = ACTIONS(2933), + [anon_sym_match] = ACTIONS(2933), + [anon_sym_select] = ACTIONS(2933), + [anon_sym_lock] = ACTIONS(2933), + [anon_sym_rlock] = ACTIONS(2933), + [anon_sym_unsafe] = ACTIONS(2933), + [anon_sym_sql] = ACTIONS(2933), + [sym_int_literal] = ACTIONS(2933), + [sym_float_literal] = ACTIONS(2933), + [sym_rune_literal] = ACTIONS(2933), + [anon_sym_SQUOTE] = ACTIONS(2933), + [anon_sym_DQUOTE] = ACTIONS(2933), + [anon_sym_c_SQUOTE] = ACTIONS(2933), + [anon_sym_c_DQUOTE] = ACTIONS(2933), + [anon_sym_r_SQUOTE] = ACTIONS(2933), + [anon_sym_r_DQUOTE] = ACTIONS(2933), + [sym_pseudo_compile_time_identifier] = ACTIONS(2933), + [anon_sym_shared] = ACTIONS(2933), + [anon_sym_map_LBRACK] = ACTIONS(2933), + [anon_sym_chan] = ACTIONS(2933), + [anon_sym_thread] = ACTIONS(2933), + [anon_sym_atomic] = ACTIONS(2933), + }, + [1232] = { + [sym_line_comment] = STATE(1232), + [sym_block_comment] = STATE(1232), + [sym_identifier] = ACTIONS(2639), + [anon_sym_LF] = ACTIONS(2639), + [anon_sym_CR] = ACTIONS(2639), + [anon_sym_CR_LF] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2639), + [anon_sym_DOT] = ACTIONS(2639), + [anon_sym_as] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_COMMA] = ACTIONS(2639), + [anon_sym_RBRACE] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2639), + [anon_sym_RPAREN] = ACTIONS(2639), + [anon_sym_fn] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_SLASH] = ACTIONS(2639), + [anon_sym_PERCENT] = ACTIONS(2639), + [anon_sym_LT] = ACTIONS(2639), + [anon_sym_GT] = ACTIONS(2639), + [anon_sym_EQ_EQ] = ACTIONS(2639), + [anon_sym_BANG_EQ] = ACTIONS(2639), + [anon_sym_LT_EQ] = ACTIONS(2639), + [anon_sym_GT_EQ] = ACTIONS(2639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_mut] = ACTIONS(2639), + [anon_sym_PLUS_PLUS] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2639), + [anon_sym_QMARK] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_go] = ACTIONS(2639), + [anon_sym_spawn] = ACTIONS(2639), + [anon_sym_json_DOTdecode] = ACTIONS(2639), + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_LBRACK2] = ACTIONS(2639), + [anon_sym_TILDE] = ACTIONS(2639), + [anon_sym_CARET] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_LT_DASH] = ACTIONS(2639), + [anon_sym_LT_LT] = ACTIONS(2639), + [anon_sym_GT_GT] = ACTIONS(2639), + [anon_sym_GT_GT_GT] = ACTIONS(2639), + [anon_sym_AMP_CARET] = ACTIONS(2639), + [anon_sym_AMP_AMP] = ACTIONS(2639), + [anon_sym_PIPE_PIPE] = ACTIONS(2639), + [anon_sym_or] = ACTIONS(2639), + [sym_none] = ACTIONS(2639), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [sym_nil] = ACTIONS(2639), + [anon_sym_QMARK_DOT] = ACTIONS(2639), + [anon_sym_POUND_LBRACK] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_DOLLARif] = ACTIONS(2639), + [anon_sym_is] = ACTIONS(2639), + [anon_sym_BANGis] = ACTIONS(2639), + [anon_sym_in] = ACTIONS(2639), + [anon_sym_BANGin] = ACTIONS(2639), + [anon_sym_match] = ACTIONS(2639), + [anon_sym_select] = ACTIONS(2639), + [anon_sym_lock] = ACTIONS(2639), + [anon_sym_rlock] = ACTIONS(2639), + [anon_sym_unsafe] = ACTIONS(2639), + [anon_sym_sql] = ACTIONS(2639), + [sym_int_literal] = ACTIONS(2639), + [sym_float_literal] = ACTIONS(2639), + [sym_rune_literal] = ACTIONS(2639), + [anon_sym_SQUOTE] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2639), + [anon_sym_c_SQUOTE] = ACTIONS(2639), + [anon_sym_c_DQUOTE] = ACTIONS(2639), + [anon_sym_r_SQUOTE] = ACTIONS(2639), + [anon_sym_r_DQUOTE] = ACTIONS(2639), + [sym_pseudo_compile_time_identifier] = ACTIONS(2639), + [anon_sym_shared] = ACTIONS(2639), + [anon_sym_map_LBRACK] = ACTIONS(2639), + [anon_sym_chan] = ACTIONS(2639), + [anon_sym_thread] = ACTIONS(2639), + [anon_sym_atomic] = ACTIONS(2639), + }, + [1233] = { + [sym_line_comment] = STATE(1233), + [sym_block_comment] = STATE(1233), + [sym_identifier] = ACTIONS(2379), + [anon_sym_LF] = ACTIONS(2379), + [anon_sym_CR] = ACTIONS(2379), + [anon_sym_CR_LF] = ACTIONS(2379), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym_DOT] = ACTIONS(2379), + [anon_sym_as] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_COMMA] = ACTIONS(2379), + [anon_sym_RBRACE] = ACTIONS(2379), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_RPAREN] = ACTIONS(2379), + [anon_sym_fn] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_STAR] = ACTIONS(2379), + [anon_sym_SLASH] = ACTIONS(2379), + [anon_sym_PERCENT] = ACTIONS(2379), + [anon_sym_LT] = ACTIONS(2379), + [anon_sym_GT] = ACTIONS(2379), + [anon_sym_EQ_EQ] = ACTIONS(2379), + [anon_sym_BANG_EQ] = ACTIONS(2379), + [anon_sym_LT_EQ] = ACTIONS(2379), + [anon_sym_GT_EQ] = ACTIONS(2379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(2377), + [anon_sym_struct] = ACTIONS(2379), + [anon_sym_mut] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2379), + [anon_sym_DASH_DASH] = ACTIONS(2379), + [anon_sym_QMARK] = ACTIONS(2379), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_go] = ACTIONS(2379), + [anon_sym_spawn] = ACTIONS(2379), + [anon_sym_json_DOTdecode] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(2379), + [anon_sym_LBRACK2] = ACTIONS(2379), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_LT_DASH] = ACTIONS(2379), + [anon_sym_LT_LT] = ACTIONS(2379), + [anon_sym_GT_GT] = ACTIONS(2379), + [anon_sym_GT_GT_GT] = ACTIONS(2379), + [anon_sym_AMP_CARET] = ACTIONS(2379), + [anon_sym_AMP_AMP] = ACTIONS(2379), + [anon_sym_PIPE_PIPE] = ACTIONS(2379), + [anon_sym_or] = ACTIONS(2379), + [sym_none] = ACTIONS(2379), + [sym_true] = ACTIONS(2379), + [sym_false] = ACTIONS(2379), + [sym_nil] = ACTIONS(2379), + [anon_sym_QMARK_DOT] = ACTIONS(2379), + [anon_sym_POUND_LBRACK] = ACTIONS(2379), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_DOLLARif] = ACTIONS(2379), + [anon_sym_is] = ACTIONS(2379), + [anon_sym_BANGis] = ACTIONS(2379), + [anon_sym_in] = ACTIONS(2379), + [anon_sym_BANGin] = ACTIONS(2379), + [anon_sym_match] = ACTIONS(2379), + [anon_sym_select] = ACTIONS(2379), + [anon_sym_lock] = ACTIONS(2379), + [anon_sym_rlock] = ACTIONS(2379), + [anon_sym_unsafe] = ACTIONS(2379), + [anon_sym_sql] = ACTIONS(2379), + [sym_int_literal] = ACTIONS(2379), + [sym_float_literal] = ACTIONS(2379), + [sym_rune_literal] = ACTIONS(2379), + [anon_sym_SQUOTE] = ACTIONS(2379), + [anon_sym_DQUOTE] = ACTIONS(2379), + [anon_sym_c_SQUOTE] = ACTIONS(2379), + [anon_sym_c_DQUOTE] = ACTIONS(2379), + [anon_sym_r_SQUOTE] = ACTIONS(2379), + [anon_sym_r_DQUOTE] = ACTIONS(2379), + [sym_pseudo_compile_time_identifier] = ACTIONS(2379), + [anon_sym_shared] = ACTIONS(2379), + [anon_sym_map_LBRACK] = ACTIONS(2379), + [anon_sym_chan] = ACTIONS(2379), + [anon_sym_thread] = ACTIONS(2379), + [anon_sym_atomic] = ACTIONS(2379), + }, + [1234] = { + [sym_line_comment] = STATE(1234), + [sym_block_comment] = STATE(1234), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2418), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(609), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(603), - [anon_sym_as] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(603), - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_EQ] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_LT_EQ] = ACTIONS(603), - [anon_sym_GT_EQ] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [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(3795), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_DASH] = ACTIONS(603), - [anon_sym_LT_LT] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_GT_GT_GT] = ACTIONS(607), - [anon_sym_AMP_CARET] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(603), - [anon_sym_PIPE_PIPE] = ACTIONS(603), - [anon_sym_or] = ACTIONS(607), - [anon_sym_QMARK_DOT] = ACTIONS(603), - [anon_sym_POUND_LBRACK] = ACTIONS(603), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(603), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(603), - [anon_sym_STAR_EQ] = ACTIONS(603), - [anon_sym_SLASH_EQ] = ACTIONS(603), - [anon_sym_PERCENT_EQ] = ACTIONS(603), - [anon_sym_LT_LT_EQ] = ACTIONS(603), - [anon_sym_GT_GT_EQ] = ACTIONS(603), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(603), - [anon_sym_AMP_EQ] = ACTIONS(603), - [anon_sym_AMP_CARET_EQ] = ACTIONS(603), - [anon_sym_PLUS_EQ] = ACTIONS(603), - [anon_sym_DASH_EQ] = ACTIONS(603), - [anon_sym_PIPE_EQ] = ACTIONS(603), - [anon_sym_CARET_EQ] = ACTIONS(603), - [anon_sym_shared] = ACTIONS(623), + [anon_sym_DOT] = ACTIONS(595), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(595), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_LT_DASH] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(597), + [anon_sym_AMP_CARET] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_or] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(595), + [anon_sym_POUND_LBRACK] = ACTIONS(595), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(595), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(595), + [anon_sym_STAR_EQ] = ACTIONS(595), + [anon_sym_SLASH_EQ] = ACTIONS(595), + [anon_sym_PERCENT_EQ] = ACTIONS(595), + [anon_sym_LT_LT_EQ] = ACTIONS(595), + [anon_sym_GT_GT_EQ] = ACTIONS(595), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(595), + [anon_sym_AMP_EQ] = ACTIONS(595), + [anon_sym_AMP_CARET_EQ] = ACTIONS(595), + [anon_sym_PLUS_EQ] = ACTIONS(595), + [anon_sym_DASH_EQ] = ACTIONS(595), + [anon_sym_PIPE_EQ] = ACTIONS(595), + [anon_sym_CARET_EQ] = ACTIONS(595), + [anon_sym_shared] = ACTIONS(627), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [1251] = { - [sym_line_comment] = STATE(1251), - [sym_block_comment] = STATE(1251), - [sym_reference_expression] = STATE(4365), - [sym_type_reference_expression] = STATE(1904), - [sym_plain_type] = STATE(2037), - [sym__plain_type_without_special] = STATE(1978), - [sym_anon_struct_type] = STATE(1980), - [sym_multi_return_type] = STATE(1978), - [sym_result_type] = STATE(1978), - [sym_option_type] = STATE(1978), - [sym_qualified_type] = STATE(1904), - [sym_fixed_array_type] = STATE(1980), - [sym_array_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_wrong_pointer_type] = STATE(1980), - [sym_map_type] = STATE(1980), - [sym_channel_type] = STATE(1980), - [sym_shared_type] = STATE(1980), - [sym_thread_type] = STATE(1980), - [sym_atomic_type] = STATE(1980), - [sym_generic_type] = STATE(1980), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3797), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_as] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3799), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(3801), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(3805), - [anon_sym_PLUS_PLUS] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(3807), - [anon_sym_BANG] = ACTIONS(3809), - [anon_sym_LBRACK2] = ACTIONS(3811), - [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(3813), - [anon_sym_LT_LT] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(567), - [anon_sym_AMP_CARET] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_or] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(563), - [anon_sym_POUND_LBRACK] = ACTIONS(563), - [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(563), - [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_STAR_EQ] = ACTIONS(563), - [anon_sym_SLASH_EQ] = ACTIONS(563), - [anon_sym_PERCENT_EQ] = ACTIONS(563), - [anon_sym_LT_LT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(563), - [anon_sym_AMP_EQ] = ACTIONS(563), - [anon_sym_AMP_CARET_EQ] = ACTIONS(563), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [anon_sym_DASH_EQ] = ACTIONS(563), - [anon_sym_PIPE_EQ] = ACTIONS(563), - [anon_sym_CARET_EQ] = ACTIONS(563), - [anon_sym_COLON_EQ] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(3815), - [anon_sym_map_LBRACK] = ACTIONS(3817), - [anon_sym_chan] = ACTIONS(3819), - [anon_sym_thread] = ACTIONS(3821), - [anon_sym_atomic] = ACTIONS(3823), + [1235] = { + [sym_line_comment] = STATE(1235), + [sym_block_comment] = STATE(1235), + [sym_identifier] = ACTIONS(2771), + [anon_sym_LF] = ACTIONS(2771), + [anon_sym_CR] = ACTIONS(2771), + [anon_sym_CR_LF] = ACTIONS(2771), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2771), + [anon_sym_DOT] = ACTIONS(2771), + [anon_sym_as] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_COMMA] = ACTIONS(2771), + [anon_sym_RBRACE] = ACTIONS(2771), + [anon_sym_LPAREN] = ACTIONS(2771), + [anon_sym_RPAREN] = ACTIONS(2771), + [anon_sym_fn] = ACTIONS(2771), + [anon_sym_PLUS] = ACTIONS(2771), + [anon_sym_DASH] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_SLASH] = ACTIONS(2771), + [anon_sym_PERCENT] = ACTIONS(2771), + [anon_sym_LT] = ACTIONS(2771), + [anon_sym_GT] = ACTIONS(2771), + [anon_sym_EQ_EQ] = ACTIONS(2771), + [anon_sym_BANG_EQ] = ACTIONS(2771), + [anon_sym_LT_EQ] = ACTIONS(2771), + [anon_sym_GT_EQ] = ACTIONS(2771), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2771), + [anon_sym_LBRACK] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(2771), + [anon_sym_mut] = ACTIONS(2771), + [anon_sym_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_DASH_DASH] = ACTIONS(2771), + [anon_sym_QMARK] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_go] = ACTIONS(2771), + [anon_sym_spawn] = ACTIONS(2771), + [anon_sym_json_DOTdecode] = ACTIONS(2771), + [anon_sym_PIPE] = ACTIONS(2771), + [anon_sym_LBRACK2] = ACTIONS(2771), + [anon_sym_TILDE] = ACTIONS(2771), + [anon_sym_CARET] = ACTIONS(2771), + [anon_sym_AMP] = ACTIONS(2771), + [anon_sym_LT_DASH] = ACTIONS(2771), + [anon_sym_LT_LT] = ACTIONS(2771), + [anon_sym_GT_GT] = ACTIONS(2771), + [anon_sym_GT_GT_GT] = ACTIONS(2771), + [anon_sym_AMP_CARET] = ACTIONS(2771), + [anon_sym_AMP_AMP] = ACTIONS(2771), + [anon_sym_PIPE_PIPE] = ACTIONS(2771), + [anon_sym_or] = ACTIONS(2771), + [sym_none] = ACTIONS(2771), + [sym_true] = ACTIONS(2771), + [sym_false] = ACTIONS(2771), + [sym_nil] = ACTIONS(2771), + [anon_sym_QMARK_DOT] = ACTIONS(2771), + [anon_sym_POUND_LBRACK] = ACTIONS(2771), + [anon_sym_if] = ACTIONS(2771), + [anon_sym_DOLLARif] = ACTIONS(2771), + [anon_sym_is] = ACTIONS(2771), + [anon_sym_BANGis] = ACTIONS(2771), + [anon_sym_in] = ACTIONS(2771), + [anon_sym_BANGin] = ACTIONS(2771), + [anon_sym_match] = ACTIONS(2771), + [anon_sym_select] = ACTIONS(2771), + [anon_sym_lock] = ACTIONS(2771), + [anon_sym_rlock] = ACTIONS(2771), + [anon_sym_unsafe] = ACTIONS(2771), + [anon_sym_sql] = ACTIONS(2771), + [sym_int_literal] = ACTIONS(2771), + [sym_float_literal] = ACTIONS(2771), + [sym_rune_literal] = ACTIONS(2771), + [anon_sym_SQUOTE] = ACTIONS(2771), + [anon_sym_DQUOTE] = ACTIONS(2771), + [anon_sym_c_SQUOTE] = ACTIONS(2771), + [anon_sym_c_DQUOTE] = ACTIONS(2771), + [anon_sym_r_SQUOTE] = ACTIONS(2771), + [anon_sym_r_DQUOTE] = ACTIONS(2771), + [sym_pseudo_compile_time_identifier] = ACTIONS(2771), + [anon_sym_shared] = ACTIONS(2771), + [anon_sym_map_LBRACK] = ACTIONS(2771), + [anon_sym_chan] = ACTIONS(2771), + [anon_sym_thread] = ACTIONS(2771), + [anon_sym_atomic] = ACTIONS(2771), }, - [1252] = { - [sym_line_comment] = STATE(1252), - [sym_block_comment] = STATE(1252), - [sym_reference_expression] = STATE(4365), - [sym_type_reference_expression] = STATE(1904), - [sym_plain_type] = STATE(2032), - [sym__plain_type_without_special] = STATE(1978), - [sym_anon_struct_type] = STATE(1980), - [sym_multi_return_type] = STATE(1978), - [sym_result_type] = STATE(1978), - [sym_option_type] = STATE(1978), - [sym_qualified_type] = STATE(1904), - [sym_fixed_array_type] = STATE(1980), - [sym_array_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_wrong_pointer_type] = STATE(1980), - [sym_map_type] = STATE(1980), - [sym_channel_type] = STATE(1980), - [sym_shared_type] = STATE(1980), - [sym_thread_type] = STATE(1980), - [sym_atomic_type] = STATE(1980), - [sym_generic_type] = STATE(1980), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3797), + [1236] = { + [sym_line_comment] = STATE(1236), + [sym_block_comment] = STATE(1236), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LF] = ACTIONS(2441), + [anon_sym_CR] = ACTIONS(2441), + [anon_sym_CR_LF] = ACTIONS(2441), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2441), + [anon_sym_DOT] = ACTIONS(2441), + [anon_sym_as] = ACTIONS(2441), + [anon_sym_LBRACE] = ACTIONS(2441), + [anon_sym_COMMA] = ACTIONS(2441), + [anon_sym_RBRACE] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym_RPAREN] = ACTIONS(2441), + [anon_sym_fn] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2441), + [anon_sym_DASH] = ACTIONS(2441), + [anon_sym_STAR] = ACTIONS(2441), + [anon_sym_SLASH] = ACTIONS(2441), + [anon_sym_PERCENT] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2441), + [anon_sym_GT] = ACTIONS(2441), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT_EQ] = ACTIONS(2441), + [anon_sym_GT_EQ] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2441), + [anon_sym_LBRACK] = ACTIONS(2439), + [anon_sym_struct] = ACTIONS(2441), + [anon_sym_mut] = ACTIONS(2441), + [anon_sym_PLUS_PLUS] = ACTIONS(2441), + [anon_sym_DASH_DASH] = ACTIONS(2441), + [anon_sym_QMARK] = ACTIONS(2441), + [anon_sym_BANG] = ACTIONS(2441), + [anon_sym_go] = ACTIONS(2441), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(2441), + [anon_sym_PIPE] = ACTIONS(2441), + [anon_sym_LBRACK2] = ACTIONS(2441), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_CARET] = ACTIONS(2441), + [anon_sym_AMP] = ACTIONS(2441), + [anon_sym_LT_DASH] = ACTIONS(2441), + [anon_sym_LT_LT] = ACTIONS(2441), + [anon_sym_GT_GT] = ACTIONS(2441), + [anon_sym_GT_GT_GT] = ACTIONS(2441), + [anon_sym_AMP_CARET] = ACTIONS(2441), + [anon_sym_AMP_AMP] = ACTIONS(2441), + [anon_sym_PIPE_PIPE] = ACTIONS(2441), + [anon_sym_or] = ACTIONS(2441), + [sym_none] = ACTIONS(2441), + [sym_true] = ACTIONS(2441), + [sym_false] = ACTIONS(2441), + [sym_nil] = ACTIONS(2441), + [anon_sym_QMARK_DOT] = ACTIONS(2441), + [anon_sym_POUND_LBRACK] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_DOLLARif] = ACTIONS(2441), + [anon_sym_is] = ACTIONS(2441), + [anon_sym_BANGis] = ACTIONS(2441), + [anon_sym_in] = ACTIONS(2441), + [anon_sym_BANGin] = ACTIONS(2441), + [anon_sym_match] = ACTIONS(2441), + [anon_sym_select] = ACTIONS(2441), + [anon_sym_lock] = ACTIONS(2441), + [anon_sym_rlock] = ACTIONS(2441), + [anon_sym_unsafe] = ACTIONS(2441), + [anon_sym_sql] = ACTIONS(2441), + [sym_int_literal] = ACTIONS(2441), + [sym_float_literal] = ACTIONS(2441), + [sym_rune_literal] = ACTIONS(2441), + [anon_sym_SQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [anon_sym_c_SQUOTE] = ACTIONS(2441), + [anon_sym_c_DQUOTE] = ACTIONS(2441), + [anon_sym_r_SQUOTE] = ACTIONS(2441), + [anon_sym_r_DQUOTE] = ACTIONS(2441), + [sym_pseudo_compile_time_identifier] = ACTIONS(2441), + [anon_sym_shared] = ACTIONS(2441), + [anon_sym_map_LBRACK] = ACTIONS(2441), + [anon_sym_chan] = ACTIONS(2441), + [anon_sym_thread] = ACTIONS(2441), + [anon_sym_atomic] = ACTIONS(2441), + }, + [1237] = { + [sym_line_comment] = STATE(1237), + [sym_block_comment] = STATE(1237), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2418), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(609), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_SEMI] = ACTIONS(595), @@ -160866,13 +159911,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(597), [anon_sym_LBRACE] = ACTIONS(595), [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(3799), + [anon_sym_LPAREN] = ACTIONS(595), [anon_sym_EQ] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(3801), + [anon_sym_fn] = ACTIONS(615), [anon_sym_PLUS] = ACTIONS(597), [anon_sym_DASH] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(3803), + [anon_sym_STAR] = ACTIONS(597), [anon_sym_SLASH] = ACTIONS(597), [anon_sym_PERCENT] = ACTIONS(597), [anon_sym_LT] = ACTIONS(597), @@ -160882,14 +159926,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(595), [anon_sym_GT_EQ] = ACTIONS(595), [anon_sym_LBRACK] = ACTIONS(595), - [anon_sym_struct] = ACTIONS(3805), + [anon_sym_struct] = ACTIONS(619), [anon_sym_PLUS_PLUS] = ACTIONS(595), [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(3807), - [anon_sym_BANG] = ACTIONS(3809), - [anon_sym_LBRACK2] = ACTIONS(3811), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), [anon_sym_CARET] = ACTIONS(597), - [anon_sym_AMP] = ACTIONS(3813), + [anon_sym_AMP] = ACTIONS(597), [anon_sym_LT_LT] = ACTIONS(597), [anon_sym_GT_GT] = ACTIONS(597), [anon_sym_GT_GT_GT] = ACTIONS(597), @@ -160916,50 +159961,831 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(595), [anon_sym_CARET_EQ] = ACTIONS(595), [anon_sym_COLON_EQ] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(3815), - [anon_sym_map_LBRACK] = ACTIONS(3817), - [anon_sym_chan] = ACTIONS(3819), - [anon_sym_thread] = ACTIONS(3821), - [anon_sym_atomic] = ACTIONS(3823), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [1253] = { - [sym_line_comment] = STATE(1253), - [sym_block_comment] = STATE(1253), - [sym_reference_expression] = STATE(4365), - [sym_type_reference_expression] = STATE(1904), - [sym_plain_type] = STATE(1922), - [sym__plain_type_without_special] = STATE(1978), - [sym_anon_struct_type] = STATE(1980), - [sym_multi_return_type] = STATE(1978), - [sym_result_type] = STATE(1978), - [sym_option_type] = STATE(1978), - [sym_qualified_type] = STATE(1904), - [sym_fixed_array_type] = STATE(1980), - [sym_array_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_wrong_pointer_type] = STATE(1980), - [sym_map_type] = STATE(1980), - [sym_channel_type] = STATE(1980), - [sym_shared_type] = STATE(1980), - [sym_thread_type] = STATE(1980), - [sym_atomic_type] = STATE(1980), - [sym_generic_type] = STATE(1980), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3797), + [1238] = { + [sym_line_comment] = STATE(1238), + [sym_block_comment] = STATE(1238), + [sym_identifier] = ACTIONS(2395), + [anon_sym_LF] = ACTIONS(2395), + [anon_sym_CR] = ACTIONS(2395), + [anon_sym_CR_LF] = ACTIONS(2395), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2395), + [anon_sym_DOT] = ACTIONS(2395), + [anon_sym_as] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_COMMA] = ACTIONS(2395), + [anon_sym_RBRACE] = ACTIONS(2395), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_RPAREN] = ACTIONS(2395), + [anon_sym_fn] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_SLASH] = ACTIONS(2395), + [anon_sym_PERCENT] = ACTIONS(2395), + [anon_sym_LT] = ACTIONS(2395), + [anon_sym_GT] = ACTIONS(2395), + [anon_sym_EQ_EQ] = ACTIONS(2395), + [anon_sym_BANG_EQ] = ACTIONS(2395), + [anon_sym_LT_EQ] = ACTIONS(2395), + [anon_sym_GT_EQ] = ACTIONS(2395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2395), + [anon_sym_LBRACK] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_mut] = ACTIONS(2395), + [anon_sym_PLUS_PLUS] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2395), + [anon_sym_QMARK] = ACTIONS(2395), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_go] = ACTIONS(2395), + [anon_sym_spawn] = ACTIONS(2395), + [anon_sym_json_DOTdecode] = ACTIONS(2395), + [anon_sym_PIPE] = ACTIONS(2395), + [anon_sym_LBRACK2] = ACTIONS(2395), + [anon_sym_TILDE] = ACTIONS(2395), + [anon_sym_CARET] = ACTIONS(2395), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_LT_DASH] = ACTIONS(2395), + [anon_sym_LT_LT] = ACTIONS(2395), + [anon_sym_GT_GT] = ACTIONS(2395), + [anon_sym_GT_GT_GT] = ACTIONS(2395), + [anon_sym_AMP_CARET] = ACTIONS(2395), + [anon_sym_AMP_AMP] = ACTIONS(2395), + [anon_sym_PIPE_PIPE] = ACTIONS(2395), + [anon_sym_or] = ACTIONS(2395), + [sym_none] = ACTIONS(2395), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_nil] = ACTIONS(2395), + [anon_sym_QMARK_DOT] = ACTIONS(2395), + [anon_sym_POUND_LBRACK] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_DOLLARif] = ACTIONS(2395), + [anon_sym_is] = ACTIONS(2395), + [anon_sym_BANGis] = ACTIONS(2395), + [anon_sym_in] = ACTIONS(2395), + [anon_sym_BANGin] = ACTIONS(2395), + [anon_sym_match] = ACTIONS(2395), + [anon_sym_select] = ACTIONS(2395), + [anon_sym_lock] = ACTIONS(2395), + [anon_sym_rlock] = ACTIONS(2395), + [anon_sym_unsafe] = ACTIONS(2395), + [anon_sym_sql] = ACTIONS(2395), + [sym_int_literal] = ACTIONS(2395), + [sym_float_literal] = ACTIONS(2395), + [sym_rune_literal] = ACTIONS(2395), + [anon_sym_SQUOTE] = ACTIONS(2395), + [anon_sym_DQUOTE] = ACTIONS(2395), + [anon_sym_c_SQUOTE] = ACTIONS(2395), + [anon_sym_c_DQUOTE] = ACTIONS(2395), + [anon_sym_r_SQUOTE] = ACTIONS(2395), + [anon_sym_r_DQUOTE] = ACTIONS(2395), + [sym_pseudo_compile_time_identifier] = ACTIONS(2395), + [anon_sym_shared] = ACTIONS(2395), + [anon_sym_map_LBRACK] = ACTIONS(2395), + [anon_sym_chan] = ACTIONS(2395), + [anon_sym_thread] = ACTIONS(2395), + [anon_sym_atomic] = ACTIONS(2395), + }, + [1239] = { + [sym_line_comment] = STATE(1239), + [sym_block_comment] = STATE(1239), + [sym_identifier] = ACTIONS(2899), + [anon_sym_LF] = ACTIONS(2899), + [anon_sym_CR] = ACTIONS(2899), + [anon_sym_CR_LF] = ACTIONS(2899), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [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_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_PIPE] = 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), + [anon_sym_SQUOTE] = ACTIONS(2899), + [anon_sym_DQUOTE] = ACTIONS(2899), + [anon_sym_c_SQUOTE] = ACTIONS(2899), + [anon_sym_c_DQUOTE] = ACTIONS(2899), + [anon_sym_r_SQUOTE] = ACTIONS(2899), + [anon_sym_r_DQUOTE] = 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), + }, + [1240] = { + [sym_line_comment] = STATE(1240), + [sym_block_comment] = STATE(1240), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LF] = ACTIONS(2453), + [anon_sym_CR] = ACTIONS(2453), + [anon_sym_CR_LF] = ACTIONS(2453), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2453), + [anon_sym_DOT] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_COMMA] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym_RPAREN] = ACTIONS(2453), + [anon_sym_fn] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(2453), + [anon_sym_SLASH] = ACTIONS(2453), + [anon_sym_PERCENT] = ACTIONS(2453), + [anon_sym_LT] = ACTIONS(2453), + [anon_sym_GT] = ACTIONS(2453), + [anon_sym_EQ_EQ] = ACTIONS(2453), + [anon_sym_BANG_EQ] = ACTIONS(2453), + [anon_sym_LT_EQ] = ACTIONS(2453), + [anon_sym_GT_EQ] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), + [anon_sym_LBRACK] = ACTIONS(2451), + [anon_sym_struct] = ACTIONS(2453), + [anon_sym_mut] = ACTIONS(2453), + [anon_sym_PLUS_PLUS] = ACTIONS(2453), + [anon_sym_DASH_DASH] = ACTIONS(2453), + [anon_sym_QMARK] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2453), + [anon_sym_go] = ACTIONS(2453), + [anon_sym_spawn] = ACTIONS(2453), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_PIPE] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2453), + [anon_sym_TILDE] = ACTIONS(2453), + [anon_sym_CARET] = ACTIONS(2453), + [anon_sym_AMP] = ACTIONS(2453), + [anon_sym_LT_DASH] = ACTIONS(2453), + [anon_sym_LT_LT] = ACTIONS(2453), + [anon_sym_GT_GT] = ACTIONS(2453), + [anon_sym_GT_GT_GT] = ACTIONS(2453), + [anon_sym_AMP_CARET] = ACTIONS(2453), + [anon_sym_AMP_AMP] = ACTIONS(2453), + [anon_sym_PIPE_PIPE] = ACTIONS(2453), + [anon_sym_or] = ACTIONS(2453), + [sym_none] = ACTIONS(2453), + [sym_true] = ACTIONS(2453), + [sym_false] = ACTIONS(2453), + [sym_nil] = ACTIONS(2453), + [anon_sym_QMARK_DOT] = ACTIONS(2453), + [anon_sym_POUND_LBRACK] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_DOLLARif] = ACTIONS(2453), + [anon_sym_is] = ACTIONS(2453), + [anon_sym_BANGis] = ACTIONS(2453), + [anon_sym_in] = ACTIONS(2453), + [anon_sym_BANGin] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_select] = ACTIONS(2453), + [anon_sym_lock] = ACTIONS(2453), + [anon_sym_rlock] = ACTIONS(2453), + [anon_sym_unsafe] = ACTIONS(2453), + [anon_sym_sql] = ACTIONS(2453), + [sym_int_literal] = ACTIONS(2453), + [sym_float_literal] = ACTIONS(2453), + [sym_rune_literal] = ACTIONS(2453), + [anon_sym_SQUOTE] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2453), + [anon_sym_c_SQUOTE] = ACTIONS(2453), + [anon_sym_c_DQUOTE] = ACTIONS(2453), + [anon_sym_r_SQUOTE] = ACTIONS(2453), + [anon_sym_r_DQUOTE] = ACTIONS(2453), + [sym_pseudo_compile_time_identifier] = ACTIONS(2453), + [anon_sym_shared] = ACTIONS(2453), + [anon_sym_map_LBRACK] = ACTIONS(2453), + [anon_sym_chan] = ACTIONS(2453), + [anon_sym_thread] = ACTIONS(2453), + [anon_sym_atomic] = ACTIONS(2453), + }, + [1241] = { + [sym_line_comment] = STATE(1241), + [sym_block_comment] = STATE(1241), + [sym_identifier] = ACTIONS(2363), + [anon_sym_LF] = ACTIONS(2363), + [anon_sym_CR] = ACTIONS(2363), + [anon_sym_CR_LF] = ACTIONS(2363), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym_DOT] = ACTIONS(2363), + [anon_sym_as] = ACTIONS(2363), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_COMMA] = ACTIONS(2363), + [anon_sym_RBRACE] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_RPAREN] = ACTIONS(2363), + [anon_sym_fn] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(2363), + [anon_sym_SLASH] = ACTIONS(2363), + [anon_sym_PERCENT] = ACTIONS(2363), + [anon_sym_LT] = ACTIONS(2363), + [anon_sym_GT] = ACTIONS(2363), + [anon_sym_EQ_EQ] = ACTIONS(2363), + [anon_sym_BANG_EQ] = ACTIONS(2363), + [anon_sym_LT_EQ] = ACTIONS(2363), + [anon_sym_GT_EQ] = ACTIONS(2363), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_struct] = ACTIONS(2363), + [anon_sym_mut] = ACTIONS(2363), + [anon_sym_PLUS_PLUS] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(2363), + [anon_sym_QMARK] = ACTIONS(2363), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_go] = ACTIONS(2363), + [anon_sym_spawn] = ACTIONS(2363), + [anon_sym_json_DOTdecode] = ACTIONS(2363), + [anon_sym_PIPE] = ACTIONS(2363), + [anon_sym_LBRACK2] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2363), + [anon_sym_CARET] = ACTIONS(2363), + [anon_sym_AMP] = ACTIONS(2363), + [anon_sym_LT_DASH] = ACTIONS(2363), + [anon_sym_LT_LT] = ACTIONS(2363), + [anon_sym_GT_GT] = ACTIONS(2363), + [anon_sym_GT_GT_GT] = ACTIONS(2363), + [anon_sym_AMP_CARET] = ACTIONS(2363), + [anon_sym_AMP_AMP] = ACTIONS(2363), + [anon_sym_PIPE_PIPE] = ACTIONS(2363), + [anon_sym_or] = ACTIONS(2363), + [sym_none] = ACTIONS(2363), + [sym_true] = ACTIONS(2363), + [sym_false] = ACTIONS(2363), + [sym_nil] = ACTIONS(2363), + [anon_sym_QMARK_DOT] = ACTIONS(2363), + [anon_sym_POUND_LBRACK] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_DOLLARif] = ACTIONS(2363), + [anon_sym_is] = ACTIONS(2363), + [anon_sym_BANGis] = ACTIONS(2363), + [anon_sym_in] = ACTIONS(2363), + [anon_sym_BANGin] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), + [anon_sym_select] = ACTIONS(2363), + [anon_sym_lock] = ACTIONS(2363), + [anon_sym_rlock] = ACTIONS(2363), + [anon_sym_unsafe] = ACTIONS(2363), + [anon_sym_sql] = ACTIONS(2363), + [sym_int_literal] = ACTIONS(2363), + [sym_float_literal] = ACTIONS(2363), + [sym_rune_literal] = ACTIONS(2363), + [anon_sym_SQUOTE] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), + [anon_sym_c_SQUOTE] = ACTIONS(2363), + [anon_sym_c_DQUOTE] = ACTIONS(2363), + [anon_sym_r_SQUOTE] = ACTIONS(2363), + [anon_sym_r_DQUOTE] = ACTIONS(2363), + [sym_pseudo_compile_time_identifier] = ACTIONS(2363), + [anon_sym_shared] = ACTIONS(2363), + [anon_sym_map_LBRACK] = ACTIONS(2363), + [anon_sym_chan] = ACTIONS(2363), + [anon_sym_thread] = ACTIONS(2363), + [anon_sym_atomic] = ACTIONS(2363), + }, + [1242] = { + [sym_line_comment] = STATE(1242), + [sym_block_comment] = STATE(1242), + [sym_identifier] = ACTIONS(3014), + [anon_sym_LF] = ACTIONS(3014), + [anon_sym_CR] = ACTIONS(3014), + [anon_sym_CR_LF] = ACTIONS(3014), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3014), + [anon_sym_DOT] = ACTIONS(3014), + [anon_sym_as] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3014), + [anon_sym_COMMA] = ACTIONS(3014), + [anon_sym_RBRACE] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(3014), + [anon_sym_RPAREN] = ACTIONS(3014), + [anon_sym_fn] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_SLASH] = ACTIONS(3014), + [anon_sym_PERCENT] = ACTIONS(3014), + [anon_sym_LT] = ACTIONS(3014), + [anon_sym_GT] = ACTIONS(3014), + [anon_sym_EQ_EQ] = ACTIONS(3014), + [anon_sym_BANG_EQ] = ACTIONS(3014), + [anon_sym_LT_EQ] = ACTIONS(3014), + [anon_sym_GT_EQ] = ACTIONS(3014), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3014), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_struct] = ACTIONS(3014), + [anon_sym_mut] = ACTIONS(3014), + [anon_sym_PLUS_PLUS] = ACTIONS(3014), + [anon_sym_DASH_DASH] = ACTIONS(3014), + [anon_sym_QMARK] = ACTIONS(3014), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_go] = ACTIONS(3014), + [anon_sym_spawn] = ACTIONS(3014), + [anon_sym_json_DOTdecode] = ACTIONS(3014), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_LBRACK2] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_CARET] = ACTIONS(3014), + [anon_sym_AMP] = ACTIONS(3014), + [anon_sym_LT_DASH] = ACTIONS(3014), + [anon_sym_LT_LT] = ACTIONS(3014), + [anon_sym_GT_GT] = ACTIONS(3014), + [anon_sym_GT_GT_GT] = ACTIONS(3014), + [anon_sym_AMP_CARET] = ACTIONS(3014), + [anon_sym_AMP_AMP] = ACTIONS(3014), + [anon_sym_PIPE_PIPE] = ACTIONS(3014), + [anon_sym_or] = ACTIONS(3014), + [sym_none] = ACTIONS(3014), + [sym_true] = ACTIONS(3014), + [sym_false] = ACTIONS(3014), + [sym_nil] = ACTIONS(3014), + [anon_sym_QMARK_DOT] = ACTIONS(3014), + [anon_sym_POUND_LBRACK] = ACTIONS(3014), + [anon_sym_if] = ACTIONS(3014), + [anon_sym_DOLLARif] = ACTIONS(3014), + [anon_sym_is] = ACTIONS(3014), + [anon_sym_BANGis] = ACTIONS(3014), + [anon_sym_in] = ACTIONS(3014), + [anon_sym_BANGin] = ACTIONS(3014), + [anon_sym_match] = ACTIONS(3014), + [anon_sym_select] = ACTIONS(3014), + [anon_sym_lock] = ACTIONS(3014), + [anon_sym_rlock] = ACTIONS(3014), + [anon_sym_unsafe] = ACTIONS(3014), + [anon_sym_sql] = ACTIONS(3014), + [sym_int_literal] = ACTIONS(3014), + [sym_float_literal] = ACTIONS(3014), + [sym_rune_literal] = ACTIONS(3014), + [anon_sym_SQUOTE] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(3014), + [anon_sym_c_SQUOTE] = ACTIONS(3014), + [anon_sym_c_DQUOTE] = ACTIONS(3014), + [anon_sym_r_SQUOTE] = ACTIONS(3014), + [anon_sym_r_DQUOTE] = ACTIONS(3014), + [sym_pseudo_compile_time_identifier] = ACTIONS(3014), + [anon_sym_shared] = ACTIONS(3014), + [anon_sym_map_LBRACK] = ACTIONS(3014), + [anon_sym_chan] = ACTIONS(3014), + [anon_sym_thread] = ACTIONS(3014), + [anon_sym_atomic] = ACTIONS(3014), + }, + [1243] = { + [sym_line_comment] = STATE(1243), + [sym_block_comment] = STATE(1243), + [sym_identifier] = ACTIONS(1887), + [anon_sym_LF] = ACTIONS(1887), + [anon_sym_CR] = ACTIONS(1887), + [anon_sym_CR_LF] = ACTIONS(1887), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1887), + [anon_sym_DOT] = ACTIONS(1887), + [anon_sym_as] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_COMMA] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_RPAREN] = ACTIONS(1887), + [anon_sym_fn] = ACTIONS(1887), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1887), + [anon_sym_SLASH] = ACTIONS(1887), + [anon_sym_PERCENT] = ACTIONS(1887), + [anon_sym_LT] = ACTIONS(1887), + [anon_sym_GT] = ACTIONS(1887), + [anon_sym_EQ_EQ] = ACTIONS(1887), + [anon_sym_BANG_EQ] = ACTIONS(1887), + [anon_sym_LT_EQ] = ACTIONS(1887), + [anon_sym_GT_EQ] = ACTIONS(1887), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1885), + [anon_sym_struct] = ACTIONS(1887), + [anon_sym_mut] = ACTIONS(1887), + [anon_sym_PLUS_PLUS] = ACTIONS(1887), + [anon_sym_DASH_DASH] = ACTIONS(1887), + [anon_sym_QMARK] = ACTIONS(1887), + [anon_sym_BANG] = ACTIONS(1887), + [anon_sym_go] = ACTIONS(1887), + [anon_sym_spawn] = ACTIONS(1887), + [anon_sym_json_DOTdecode] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1887), + [anon_sym_LBRACK2] = ACTIONS(1887), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_CARET] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(1887), + [anon_sym_LT_DASH] = ACTIONS(1887), + [anon_sym_LT_LT] = ACTIONS(1887), + [anon_sym_GT_GT] = ACTIONS(1887), + [anon_sym_GT_GT_GT] = ACTIONS(1887), + [anon_sym_AMP_CARET] = ACTIONS(1887), + [anon_sym_AMP_AMP] = ACTIONS(1887), + [anon_sym_PIPE_PIPE] = ACTIONS(1887), + [anon_sym_or] = ACTIONS(1887), + [sym_none] = ACTIONS(1887), + [sym_true] = ACTIONS(1887), + [sym_false] = ACTIONS(1887), + [sym_nil] = ACTIONS(1887), + [anon_sym_QMARK_DOT] = ACTIONS(1887), + [anon_sym_POUND_LBRACK] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_DOLLARif] = ACTIONS(1887), + [anon_sym_is] = ACTIONS(1887), + [anon_sym_BANGis] = ACTIONS(1887), + [anon_sym_in] = ACTIONS(1887), + [anon_sym_BANGin] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_select] = ACTIONS(1887), + [anon_sym_lock] = ACTIONS(1887), + [anon_sym_rlock] = ACTIONS(1887), + [anon_sym_unsafe] = ACTIONS(1887), + [anon_sym_sql] = ACTIONS(1887), + [sym_int_literal] = ACTIONS(1887), + [sym_float_literal] = ACTIONS(1887), + [sym_rune_literal] = ACTIONS(1887), + [anon_sym_SQUOTE] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(1887), + [anon_sym_c_SQUOTE] = ACTIONS(1887), + [anon_sym_c_DQUOTE] = ACTIONS(1887), + [anon_sym_r_SQUOTE] = ACTIONS(1887), + [anon_sym_r_DQUOTE] = ACTIONS(1887), + [sym_pseudo_compile_time_identifier] = ACTIONS(1887), + [anon_sym_shared] = ACTIONS(1887), + [anon_sym_map_LBRACK] = ACTIONS(1887), + [anon_sym_chan] = ACTIONS(1887), + [anon_sym_thread] = ACTIONS(1887), + [anon_sym_atomic] = ACTIONS(1887), + }, + [1244] = { + [sym_line_comment] = STATE(1244), + [sym_block_comment] = STATE(1244), + [sym_identifier] = ACTIONS(2719), + [anon_sym_LF] = ACTIONS(2719), + [anon_sym_CR] = ACTIONS(2719), + [anon_sym_CR_LF] = ACTIONS(2719), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym_DOT] = ACTIONS(2719), + [anon_sym_as] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_COMMA] = ACTIONS(2719), + [anon_sym_RBRACE] = ACTIONS(2719), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_RPAREN] = ACTIONS(2719), + [anon_sym_fn] = ACTIONS(2719), + [anon_sym_PLUS] = ACTIONS(2719), + [anon_sym_DASH] = ACTIONS(2719), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_SLASH] = ACTIONS(2719), + [anon_sym_PERCENT] = ACTIONS(2719), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_GT] = ACTIONS(2719), + [anon_sym_EQ_EQ] = ACTIONS(2719), + [anon_sym_BANG_EQ] = ACTIONS(2719), + [anon_sym_LT_EQ] = ACTIONS(2719), + [anon_sym_GT_EQ] = ACTIONS(2719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(2719), + [anon_sym_mut] = ACTIONS(2719), + [anon_sym_PLUS_PLUS] = ACTIONS(2719), + [anon_sym_DASH_DASH] = ACTIONS(2719), + [anon_sym_QMARK] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_go] = ACTIONS(2719), + [anon_sym_spawn] = ACTIONS(2719), + [anon_sym_json_DOTdecode] = ACTIONS(2719), + [anon_sym_PIPE] = ACTIONS(2719), + [anon_sym_LBRACK2] = ACTIONS(2719), + [anon_sym_TILDE] = ACTIONS(2719), + [anon_sym_CARET] = ACTIONS(2719), + [anon_sym_AMP] = ACTIONS(2719), + [anon_sym_LT_DASH] = ACTIONS(2719), + [anon_sym_LT_LT] = ACTIONS(2719), + [anon_sym_GT_GT] = ACTIONS(2719), + [anon_sym_GT_GT_GT] = ACTIONS(2719), + [anon_sym_AMP_CARET] = ACTIONS(2719), + [anon_sym_AMP_AMP] = ACTIONS(2719), + [anon_sym_PIPE_PIPE] = ACTIONS(2719), + [anon_sym_or] = ACTIONS(2719), + [sym_none] = ACTIONS(2719), + [sym_true] = ACTIONS(2719), + [sym_false] = ACTIONS(2719), + [sym_nil] = ACTIONS(2719), + [anon_sym_QMARK_DOT] = ACTIONS(2719), + [anon_sym_POUND_LBRACK] = ACTIONS(2719), + [anon_sym_if] = ACTIONS(2719), + [anon_sym_DOLLARif] = ACTIONS(2719), + [anon_sym_is] = ACTIONS(2719), + [anon_sym_BANGis] = ACTIONS(2719), + [anon_sym_in] = ACTIONS(2719), + [anon_sym_BANGin] = ACTIONS(2719), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_select] = ACTIONS(2719), + [anon_sym_lock] = ACTIONS(2719), + [anon_sym_rlock] = ACTIONS(2719), + [anon_sym_unsafe] = ACTIONS(2719), + [anon_sym_sql] = ACTIONS(2719), + [sym_int_literal] = ACTIONS(2719), + [sym_float_literal] = ACTIONS(2719), + [sym_rune_literal] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2719), + [anon_sym_DQUOTE] = ACTIONS(2719), + [anon_sym_c_SQUOTE] = ACTIONS(2719), + [anon_sym_c_DQUOTE] = ACTIONS(2719), + [anon_sym_r_SQUOTE] = ACTIONS(2719), + [anon_sym_r_DQUOTE] = ACTIONS(2719), + [sym_pseudo_compile_time_identifier] = ACTIONS(2719), + [anon_sym_shared] = ACTIONS(2719), + [anon_sym_map_LBRACK] = ACTIONS(2719), + [anon_sym_chan] = ACTIONS(2719), + [anon_sym_thread] = ACTIONS(2719), + [anon_sym_atomic] = ACTIONS(2719), + }, + [1245] = { + [sym_line_comment] = STATE(1245), + [sym_block_comment] = STATE(1245), + [sym_identifier] = ACTIONS(2191), + [anon_sym_LF] = ACTIONS(2191), + [anon_sym_CR] = ACTIONS(2191), + [anon_sym_CR_LF] = ACTIONS(2191), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_as] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_COMMA] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_RPAREN] = ACTIONS(2191), + [anon_sym_fn] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_PERCENT] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_GT] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ] = ACTIONS(2191), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_mut] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_QMARK] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_go] = ACTIONS(2191), + [anon_sym_spawn] = ACTIONS(2191), + [anon_sym_json_DOTdecode] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_LBRACK2] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_LT_DASH] = ACTIONS(2191), + [anon_sym_LT_LT] = ACTIONS(2191), + [anon_sym_GT_GT] = ACTIONS(2191), + [anon_sym_GT_GT_GT] = ACTIONS(2191), + [anon_sym_AMP_CARET] = ACTIONS(2191), + [anon_sym_AMP_AMP] = ACTIONS(2191), + [anon_sym_PIPE_PIPE] = ACTIONS(2191), + [anon_sym_or] = ACTIONS(2191), + [sym_none] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_nil] = ACTIONS(2191), + [anon_sym_QMARK_DOT] = ACTIONS(2191), + [anon_sym_POUND_LBRACK] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_DOLLARif] = ACTIONS(2191), + [anon_sym_is] = ACTIONS(2191), + [anon_sym_BANGis] = ACTIONS(2191), + [anon_sym_in] = ACTIONS(2191), + [anon_sym_BANGin] = ACTIONS(2191), + [anon_sym_match] = ACTIONS(2191), + [anon_sym_select] = ACTIONS(2191), + [anon_sym_lock] = ACTIONS(2191), + [anon_sym_rlock] = ACTIONS(2191), + [anon_sym_unsafe] = ACTIONS(2191), + [anon_sym_sql] = ACTIONS(2191), + [sym_int_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), + [sym_rune_literal] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_c_SQUOTE] = ACTIONS(2191), + [anon_sym_c_DQUOTE] = ACTIONS(2191), + [anon_sym_r_SQUOTE] = ACTIONS(2191), + [anon_sym_r_DQUOTE] = ACTIONS(2191), + [sym_pseudo_compile_time_identifier] = ACTIONS(2191), + [anon_sym_shared] = ACTIONS(2191), + [anon_sym_map_LBRACK] = ACTIONS(2191), + [anon_sym_chan] = ACTIONS(2191), + [anon_sym_thread] = ACTIONS(2191), + [anon_sym_atomic] = ACTIONS(2191), + }, + [1246] = { + [sym_line_comment] = STATE(1246), + [sym_block_comment] = STATE(1246), + [sym_identifier] = ACTIONS(2761), + [anon_sym_LF] = ACTIONS(2761), + [anon_sym_CR] = ACTIONS(2761), + [anon_sym_CR_LF] = ACTIONS(2761), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2761), + [anon_sym_DOT] = ACTIONS(2761), + [anon_sym_as] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2761), + [anon_sym_COMMA] = ACTIONS(2761), + [anon_sym_RBRACE] = ACTIONS(2761), + [anon_sym_LPAREN] = ACTIONS(2761), + [anon_sym_RPAREN] = ACTIONS(2761), + [anon_sym_fn] = ACTIONS(2761), + [anon_sym_PLUS] = ACTIONS(2761), + [anon_sym_DASH] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(2761), + [anon_sym_SLASH] = ACTIONS(2761), + [anon_sym_PERCENT] = ACTIONS(2761), + [anon_sym_LT] = ACTIONS(2761), + [anon_sym_GT] = ACTIONS(2761), + [anon_sym_EQ_EQ] = ACTIONS(2761), + [anon_sym_BANG_EQ] = ACTIONS(2761), + [anon_sym_LT_EQ] = ACTIONS(2761), + [anon_sym_GT_EQ] = ACTIONS(2761), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2761), + [anon_sym_LBRACK] = ACTIONS(2759), + [anon_sym_struct] = ACTIONS(2761), + [anon_sym_mut] = ACTIONS(2761), + [anon_sym_PLUS_PLUS] = ACTIONS(2761), + [anon_sym_DASH_DASH] = ACTIONS(2761), + [anon_sym_QMARK] = ACTIONS(2761), + [anon_sym_BANG] = ACTIONS(2761), + [anon_sym_go] = ACTIONS(2761), + [anon_sym_spawn] = ACTIONS(2761), + [anon_sym_json_DOTdecode] = ACTIONS(2761), + [anon_sym_PIPE] = ACTIONS(2761), + [anon_sym_LBRACK2] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2761), + [anon_sym_CARET] = ACTIONS(2761), + [anon_sym_AMP] = ACTIONS(2761), + [anon_sym_LT_DASH] = ACTIONS(2761), + [anon_sym_LT_LT] = ACTIONS(2761), + [anon_sym_GT_GT] = ACTIONS(2761), + [anon_sym_GT_GT_GT] = ACTIONS(2761), + [anon_sym_AMP_CARET] = ACTIONS(2761), + [anon_sym_AMP_AMP] = ACTIONS(2761), + [anon_sym_PIPE_PIPE] = ACTIONS(2761), + [anon_sym_or] = ACTIONS(2761), + [sym_none] = ACTIONS(2761), + [sym_true] = ACTIONS(2761), + [sym_false] = ACTIONS(2761), + [sym_nil] = ACTIONS(2761), + [anon_sym_QMARK_DOT] = ACTIONS(2761), + [anon_sym_POUND_LBRACK] = ACTIONS(2761), + [anon_sym_if] = ACTIONS(2761), + [anon_sym_DOLLARif] = ACTIONS(2761), + [anon_sym_is] = ACTIONS(2761), + [anon_sym_BANGis] = ACTIONS(2761), + [anon_sym_in] = ACTIONS(2761), + [anon_sym_BANGin] = ACTIONS(2761), + [anon_sym_match] = ACTIONS(2761), + [anon_sym_select] = ACTIONS(2761), + [anon_sym_lock] = ACTIONS(2761), + [anon_sym_rlock] = ACTIONS(2761), + [anon_sym_unsafe] = ACTIONS(2761), + [anon_sym_sql] = ACTIONS(2761), + [sym_int_literal] = ACTIONS(2761), + [sym_float_literal] = ACTIONS(2761), + [sym_rune_literal] = ACTIONS(2761), + [anon_sym_SQUOTE] = ACTIONS(2761), + [anon_sym_DQUOTE] = ACTIONS(2761), + [anon_sym_c_SQUOTE] = ACTIONS(2761), + [anon_sym_c_DQUOTE] = ACTIONS(2761), + [anon_sym_r_SQUOTE] = ACTIONS(2761), + [anon_sym_r_DQUOTE] = ACTIONS(2761), + [sym_pseudo_compile_time_identifier] = ACTIONS(2761), + [anon_sym_shared] = ACTIONS(2761), + [anon_sym_map_LBRACK] = ACTIONS(2761), + [anon_sym_chan] = ACTIONS(2761), + [anon_sym_thread] = ACTIONS(2761), + [anon_sym_atomic] = ACTIONS(2761), + }, + [1247] = { + [sym_line_comment] = STATE(1247), + [sym_block_comment] = STATE(1247), + [sym_reference_expression] = STATE(4520), + [sym_type_reference_expression] = STATE(1939), + [sym_plain_type] = STATE(2118), + [sym__plain_type_without_special] = STATE(2110), + [sym_anon_struct_type] = STATE(2075), + [sym_multi_return_type] = STATE(2110), + [sym_result_type] = STATE(2110), + [sym_option_type] = STATE(2110), + [sym_qualified_type] = STATE(1939), + [sym_fixed_array_type] = STATE(2075), + [sym_array_type] = STATE(2075), + [sym_pointer_type] = STATE(2075), + [sym_wrong_pointer_type] = STATE(2075), + [sym_map_type] = STATE(2075), + [sym_channel_type] = STATE(2075), + [sym_shared_type] = STATE(2075), + [sym_thread_type] = STATE(2075), + [sym_atomic_type] = STATE(2075), + [sym_generic_type] = STATE(2075), + [sym_function_type] = STATE(2075), + [sym_identifier] = ACTIONS(3780), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(599), [anon_sym_DOT] = ACTIONS(599), [anon_sym_as] = ACTIONS(601), [anon_sym_LBRACE] = ACTIONS(599), [anon_sym_COMMA] = ACTIONS(599), - [anon_sym_LPAREN] = ACTIONS(3799), + [anon_sym_LPAREN] = ACTIONS(3782), [anon_sym_EQ] = ACTIONS(601), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(3801), + [anon_sym_fn] = ACTIONS(3784), [anon_sym_PLUS] = ACTIONS(601), [anon_sym_DASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(3803), + [anon_sym_STAR] = ACTIONS(3786), [anon_sym_SLASH] = ACTIONS(601), [anon_sym_PERCENT] = ACTIONS(601), [anon_sym_LT] = ACTIONS(601), @@ -160969,14 +160795,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(599), [anon_sym_GT_EQ] = ACTIONS(599), [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_struct] = ACTIONS(3805), + [anon_sym_struct] = ACTIONS(3788), + [anon_sym_COLON] = ACTIONS(599), [anon_sym_PLUS_PLUS] = ACTIONS(599), [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_QMARK] = ACTIONS(3807), - [anon_sym_BANG] = ACTIONS(3809), - [anon_sym_LBRACK2] = ACTIONS(3811), + [anon_sym_QMARK] = ACTIONS(3790), + [anon_sym_BANG] = ACTIONS(3792), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_LBRACK2] = ACTIONS(3794), [anon_sym_CARET] = ACTIONS(601), - [anon_sym_AMP] = ACTIONS(3813), + [anon_sym_AMP] = ACTIONS(3796), + [anon_sym_LT_DASH] = ACTIONS(599), [anon_sym_LT_LT] = ACTIONS(601), [anon_sym_GT_GT] = ACTIONS(601), [anon_sym_GT_GT_GT] = ACTIONS(601), @@ -161002,532 +160831,1486 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3815), - [anon_sym_map_LBRACK] = ACTIONS(3817), - [anon_sym_chan] = ACTIONS(3819), - [anon_sym_thread] = ACTIONS(3821), - [anon_sym_atomic] = ACTIONS(3823), + [anon_sym_shared] = ACTIONS(3798), + [anon_sym_map_LBRACK] = ACTIONS(3800), + [anon_sym_chan] = ACTIONS(3802), + [anon_sym_thread] = ACTIONS(3804), + [anon_sym_atomic] = ACTIONS(3806), + }, + [1248] = { + [sym_line_comment] = STATE(1248), + [sym_block_comment] = STATE(1248), + [sym_identifier] = ACTIONS(1845), + [anon_sym_LF] = ACTIONS(1845), + [anon_sym_CR] = ACTIONS(1845), + [anon_sym_CR_LF] = ACTIONS(1845), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1845), + [anon_sym_DOT] = ACTIONS(1845), + [anon_sym_as] = ACTIONS(1845), + [anon_sym_LBRACE] = ACTIONS(1845), + [anon_sym_COMMA] = ACTIONS(1845), + [anon_sym_RBRACE] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_RPAREN] = ACTIONS(1845), + [anon_sym_fn] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1845), + [anon_sym_SLASH] = ACTIONS(1845), + [anon_sym_PERCENT] = ACTIONS(1845), + [anon_sym_LT] = ACTIONS(1845), + [anon_sym_GT] = ACTIONS(1845), + [anon_sym_EQ_EQ] = ACTIONS(1845), + [anon_sym_BANG_EQ] = ACTIONS(1845), + [anon_sym_LT_EQ] = ACTIONS(1845), + [anon_sym_GT_EQ] = ACTIONS(1845), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(1847), + [anon_sym_struct] = ACTIONS(1845), + [anon_sym_mut] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_QMARK] = ACTIONS(1845), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_go] = ACTIONS(1845), + [anon_sym_spawn] = ACTIONS(1845), + [anon_sym_json_DOTdecode] = ACTIONS(1845), + [anon_sym_PIPE] = ACTIONS(1845), + [anon_sym_LBRACK2] = ACTIONS(1845), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_LT_DASH] = ACTIONS(1845), + [anon_sym_LT_LT] = ACTIONS(1845), + [anon_sym_GT_GT] = ACTIONS(1845), + [anon_sym_GT_GT_GT] = ACTIONS(1845), + [anon_sym_AMP_CARET] = ACTIONS(1845), + [anon_sym_AMP_AMP] = ACTIONS(1845), + [anon_sym_PIPE_PIPE] = ACTIONS(1845), + [anon_sym_or] = ACTIONS(1845), + [sym_none] = ACTIONS(1845), + [sym_true] = ACTIONS(1845), + [sym_false] = ACTIONS(1845), + [sym_nil] = ACTIONS(1845), + [anon_sym_QMARK_DOT] = ACTIONS(1845), + [anon_sym_POUND_LBRACK] = ACTIONS(1845), + [anon_sym_if] = ACTIONS(1845), + [anon_sym_DOLLARif] = ACTIONS(1845), + [anon_sym_is] = ACTIONS(1845), + [anon_sym_BANGis] = ACTIONS(1845), + [anon_sym_in] = ACTIONS(1845), + [anon_sym_BANGin] = ACTIONS(1845), + [anon_sym_match] = ACTIONS(1845), + [anon_sym_select] = ACTIONS(1845), + [anon_sym_lock] = ACTIONS(1845), + [anon_sym_rlock] = ACTIONS(1845), + [anon_sym_unsafe] = ACTIONS(1845), + [anon_sym_sql] = ACTIONS(1845), + [sym_int_literal] = ACTIONS(1845), + [sym_float_literal] = ACTIONS(1845), + [sym_rune_literal] = ACTIONS(1845), + [anon_sym_SQUOTE] = ACTIONS(1845), + [anon_sym_DQUOTE] = ACTIONS(1845), + [anon_sym_c_SQUOTE] = ACTIONS(1845), + [anon_sym_c_DQUOTE] = ACTIONS(1845), + [anon_sym_r_SQUOTE] = ACTIONS(1845), + [anon_sym_r_DQUOTE] = ACTIONS(1845), + [sym_pseudo_compile_time_identifier] = ACTIONS(1845), + [anon_sym_shared] = ACTIONS(1845), + [anon_sym_map_LBRACK] = ACTIONS(1845), + [anon_sym_chan] = ACTIONS(1845), + [anon_sym_thread] = ACTIONS(1845), + [anon_sym_atomic] = ACTIONS(1845), + }, + [1249] = { + [sym_line_comment] = STATE(1249), + [sym_block_comment] = STATE(1249), + [sym_identifier] = ACTIONS(2657), + [anon_sym_LF] = ACTIONS(2657), + [anon_sym_CR] = ACTIONS(2657), + [anon_sym_CR_LF] = ACTIONS(2657), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_DOT] = ACTIONS(2657), + [anon_sym_as] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_COMMA] = ACTIONS(2657), + [anon_sym_RBRACE] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_RPAREN] = ACTIONS(2657), + [anon_sym_fn] = ACTIONS(2657), + [anon_sym_PLUS] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2657), + [anon_sym_SLASH] = ACTIONS(2657), + [anon_sym_PERCENT] = ACTIONS(2657), + [anon_sym_LT] = ACTIONS(2657), + [anon_sym_GT] = ACTIONS(2657), + [anon_sym_EQ_EQ] = ACTIONS(2657), + [anon_sym_BANG_EQ] = ACTIONS(2657), + [anon_sym_LT_EQ] = ACTIONS(2657), + [anon_sym_GT_EQ] = ACTIONS(2657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2655), + [anon_sym_struct] = ACTIONS(2657), + [anon_sym_mut] = ACTIONS(2657), + [anon_sym_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_DASH_DASH] = ACTIONS(2657), + [anon_sym_QMARK] = ACTIONS(2657), + [anon_sym_BANG] = ACTIONS(2657), + [anon_sym_go] = ACTIONS(2657), + [anon_sym_spawn] = ACTIONS(2657), + [anon_sym_json_DOTdecode] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(2657), + [anon_sym_LBRACK2] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2657), + [anon_sym_CARET] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2657), + [anon_sym_LT_DASH] = ACTIONS(2657), + [anon_sym_LT_LT] = ACTIONS(2657), + [anon_sym_GT_GT] = ACTIONS(2657), + [anon_sym_GT_GT_GT] = ACTIONS(2657), + [anon_sym_AMP_CARET] = ACTIONS(2657), + [anon_sym_AMP_AMP] = ACTIONS(2657), + [anon_sym_PIPE_PIPE] = ACTIONS(2657), + [anon_sym_or] = ACTIONS(2657), + [sym_none] = ACTIONS(2657), + [sym_true] = ACTIONS(2657), + [sym_false] = ACTIONS(2657), + [sym_nil] = ACTIONS(2657), + [anon_sym_QMARK_DOT] = ACTIONS(2657), + [anon_sym_POUND_LBRACK] = ACTIONS(2657), + [anon_sym_if] = ACTIONS(2657), + [anon_sym_DOLLARif] = ACTIONS(2657), + [anon_sym_is] = ACTIONS(2657), + [anon_sym_BANGis] = ACTIONS(2657), + [anon_sym_in] = ACTIONS(2657), + [anon_sym_BANGin] = ACTIONS(2657), + [anon_sym_match] = ACTIONS(2657), + [anon_sym_select] = ACTIONS(2657), + [anon_sym_lock] = ACTIONS(2657), + [anon_sym_rlock] = ACTIONS(2657), + [anon_sym_unsafe] = ACTIONS(2657), + [anon_sym_sql] = ACTIONS(2657), + [sym_int_literal] = ACTIONS(2657), + [sym_float_literal] = ACTIONS(2657), + [sym_rune_literal] = ACTIONS(2657), + [anon_sym_SQUOTE] = ACTIONS(2657), + [anon_sym_DQUOTE] = ACTIONS(2657), + [anon_sym_c_SQUOTE] = ACTIONS(2657), + [anon_sym_c_DQUOTE] = ACTIONS(2657), + [anon_sym_r_SQUOTE] = ACTIONS(2657), + [anon_sym_r_DQUOTE] = ACTIONS(2657), + [sym_pseudo_compile_time_identifier] = ACTIONS(2657), + [anon_sym_shared] = ACTIONS(2657), + [anon_sym_map_LBRACK] = ACTIONS(2657), + [anon_sym_chan] = ACTIONS(2657), + [anon_sym_thread] = ACTIONS(2657), + [anon_sym_atomic] = ACTIONS(2657), + }, + [1250] = { + [sym_line_comment] = STATE(1250), + [sym_block_comment] = STATE(1250), + [sym_identifier] = ACTIONS(2647), + [anon_sym_LF] = ACTIONS(2647), + [anon_sym_CR] = ACTIONS(2647), + [anon_sym_CR_LF] = ACTIONS(2647), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2647), + [anon_sym_DOT] = ACTIONS(2647), + [anon_sym_as] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_COMMA] = ACTIONS(2647), + [anon_sym_RBRACE] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_RPAREN] = ACTIONS(2647), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_PERCENT] = ACTIONS(2647), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_GT] = ACTIONS(2647), + [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_DOT_DOT_DOT] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_mut] = ACTIONS(2647), + [anon_sym_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_DASH_DASH] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_go] = ACTIONS(2647), + [anon_sym_spawn] = ACTIONS(2647), + [anon_sym_json_DOTdecode] = ACTIONS(2647), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_LBRACK2] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_LT_DASH] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [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(2647), + [sym_none] = ACTIONS(2647), + [sym_true] = ACTIONS(2647), + [sym_false] = ACTIONS(2647), + [sym_nil] = ACTIONS(2647), + [anon_sym_QMARK_DOT] = ACTIONS(2647), + [anon_sym_POUND_LBRACK] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_DOLLARif] = ACTIONS(2647), + [anon_sym_is] = ACTIONS(2647), + [anon_sym_BANGis] = ACTIONS(2647), + [anon_sym_in] = ACTIONS(2647), + [anon_sym_BANGin] = ACTIONS(2647), + [anon_sym_match] = ACTIONS(2647), + [anon_sym_select] = ACTIONS(2647), + [anon_sym_lock] = ACTIONS(2647), + [anon_sym_rlock] = ACTIONS(2647), + [anon_sym_unsafe] = ACTIONS(2647), + [anon_sym_sql] = ACTIONS(2647), + [sym_int_literal] = ACTIONS(2647), + [sym_float_literal] = ACTIONS(2647), + [sym_rune_literal] = ACTIONS(2647), + [anon_sym_SQUOTE] = ACTIONS(2647), + [anon_sym_DQUOTE] = ACTIONS(2647), + [anon_sym_c_SQUOTE] = ACTIONS(2647), + [anon_sym_c_DQUOTE] = ACTIONS(2647), + [anon_sym_r_SQUOTE] = ACTIONS(2647), + [anon_sym_r_DQUOTE] = ACTIONS(2647), + [sym_pseudo_compile_time_identifier] = ACTIONS(2647), + [anon_sym_shared] = ACTIONS(2647), + [anon_sym_map_LBRACK] = ACTIONS(2647), + [anon_sym_chan] = ACTIONS(2647), + [anon_sym_thread] = ACTIONS(2647), + [anon_sym_atomic] = ACTIONS(2647), + }, + [1251] = { + [sym_line_comment] = STATE(1251), + [sym_block_comment] = STATE(1251), + [sym_identifier] = ACTIONS(2775), + [anon_sym_LF] = ACTIONS(2775), + [anon_sym_CR] = ACTIONS(2775), + [anon_sym_CR_LF] = ACTIONS(2775), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2775), + [anon_sym_DOT] = ACTIONS(2775), + [anon_sym_as] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_COMMA] = ACTIONS(2775), + [anon_sym_RBRACE] = ACTIONS(2775), + [anon_sym_LPAREN] = ACTIONS(2775), + [anon_sym_RPAREN] = ACTIONS(2775), + [anon_sym_fn] = ACTIONS(2775), + [anon_sym_PLUS] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2775), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_SLASH] = ACTIONS(2775), + [anon_sym_PERCENT] = ACTIONS(2775), + [anon_sym_LT] = ACTIONS(2775), + [anon_sym_GT] = ACTIONS(2775), + [anon_sym_EQ_EQ] = ACTIONS(2775), + [anon_sym_BANG_EQ] = ACTIONS(2775), + [anon_sym_LT_EQ] = ACTIONS(2775), + [anon_sym_GT_EQ] = ACTIONS(2775), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2775), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_struct] = ACTIONS(2775), + [anon_sym_mut] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_QMARK] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_go] = ACTIONS(2775), + [anon_sym_spawn] = ACTIONS(2775), + [anon_sym_json_DOTdecode] = ACTIONS(2775), + [anon_sym_PIPE] = ACTIONS(2775), + [anon_sym_LBRACK2] = ACTIONS(2775), + [anon_sym_TILDE] = ACTIONS(2775), + [anon_sym_CARET] = ACTIONS(2775), + [anon_sym_AMP] = ACTIONS(2775), + [anon_sym_LT_DASH] = ACTIONS(2775), + [anon_sym_LT_LT] = ACTIONS(2775), + [anon_sym_GT_GT] = ACTIONS(2775), + [anon_sym_GT_GT_GT] = ACTIONS(2775), + [anon_sym_AMP_CARET] = ACTIONS(2775), + [anon_sym_AMP_AMP] = ACTIONS(2775), + [anon_sym_PIPE_PIPE] = ACTIONS(2775), + [anon_sym_or] = ACTIONS(2775), + [sym_none] = ACTIONS(2775), + [sym_true] = ACTIONS(2775), + [sym_false] = ACTIONS(2775), + [sym_nil] = ACTIONS(2775), + [anon_sym_QMARK_DOT] = ACTIONS(2775), + [anon_sym_POUND_LBRACK] = ACTIONS(2775), + [anon_sym_if] = ACTIONS(2775), + [anon_sym_DOLLARif] = ACTIONS(2775), + [anon_sym_is] = ACTIONS(2775), + [anon_sym_BANGis] = ACTIONS(2775), + [anon_sym_in] = ACTIONS(2775), + [anon_sym_BANGin] = ACTIONS(2775), + [anon_sym_match] = ACTIONS(2775), + [anon_sym_select] = ACTIONS(2775), + [anon_sym_lock] = ACTIONS(2775), + [anon_sym_rlock] = ACTIONS(2775), + [anon_sym_unsafe] = ACTIONS(2775), + [anon_sym_sql] = ACTIONS(2775), + [sym_int_literal] = ACTIONS(2775), + [sym_float_literal] = ACTIONS(2775), + [sym_rune_literal] = ACTIONS(2775), + [anon_sym_SQUOTE] = ACTIONS(2775), + [anon_sym_DQUOTE] = ACTIONS(2775), + [anon_sym_c_SQUOTE] = ACTIONS(2775), + [anon_sym_c_DQUOTE] = ACTIONS(2775), + [anon_sym_r_SQUOTE] = ACTIONS(2775), + [anon_sym_r_DQUOTE] = ACTIONS(2775), + [sym_pseudo_compile_time_identifier] = ACTIONS(2775), + [anon_sym_shared] = ACTIONS(2775), + [anon_sym_map_LBRACK] = ACTIONS(2775), + [anon_sym_chan] = ACTIONS(2775), + [anon_sym_thread] = ACTIONS(2775), + [anon_sym_atomic] = ACTIONS(2775), + }, + [1252] = { + [sym_line_comment] = STATE(1252), + [sym_block_comment] = STATE(1252), + [sym_identifier] = ACTIONS(2683), + [anon_sym_LF] = ACTIONS(2683), + [anon_sym_CR] = ACTIONS(2683), + [anon_sym_CR_LF] = ACTIONS(2683), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2683), + [anon_sym_DOT] = ACTIONS(2683), + [anon_sym_as] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_COMMA] = ACTIONS(2683), + [anon_sym_RBRACE] = ACTIONS(2683), + [anon_sym_LPAREN] = ACTIONS(2683), + [anon_sym_RPAREN] = ACTIONS(2683), + [anon_sym_fn] = ACTIONS(2683), + [anon_sym_PLUS] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(2683), + [anon_sym_SLASH] = ACTIONS(2683), + [anon_sym_PERCENT] = ACTIONS(2683), + [anon_sym_LT] = ACTIONS(2683), + [anon_sym_GT] = ACTIONS(2683), + [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_DOT_DOT_DOT] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_mut] = ACTIONS(2683), + [anon_sym_PLUS_PLUS] = ACTIONS(2683), + [anon_sym_DASH_DASH] = ACTIONS(2683), + [anon_sym_QMARK] = ACTIONS(2683), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_go] = ACTIONS(2683), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(2683), + [anon_sym_PIPE] = ACTIONS(2683), + [anon_sym_LBRACK2] = ACTIONS(2683), + [anon_sym_TILDE] = ACTIONS(2683), + [anon_sym_CARET] = ACTIONS(2683), + [anon_sym_AMP] = ACTIONS(2683), + [anon_sym_LT_DASH] = ACTIONS(2683), + [anon_sym_LT_LT] = ACTIONS(2683), + [anon_sym_GT_GT] = ACTIONS(2683), + [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(2683), + [sym_none] = ACTIONS(2683), + [sym_true] = ACTIONS(2683), + [sym_false] = ACTIONS(2683), + [sym_nil] = ACTIONS(2683), + [anon_sym_QMARK_DOT] = ACTIONS(2683), + [anon_sym_POUND_LBRACK] = ACTIONS(2683), + [anon_sym_if] = ACTIONS(2683), + [anon_sym_DOLLARif] = ACTIONS(2683), + [anon_sym_is] = ACTIONS(2683), + [anon_sym_BANGis] = ACTIONS(2683), + [anon_sym_in] = ACTIONS(2683), + [anon_sym_BANGin] = ACTIONS(2683), + [anon_sym_match] = ACTIONS(2683), + [anon_sym_select] = ACTIONS(2683), + [anon_sym_lock] = ACTIONS(2683), + [anon_sym_rlock] = ACTIONS(2683), + [anon_sym_unsafe] = ACTIONS(2683), + [anon_sym_sql] = ACTIONS(2683), + [sym_int_literal] = ACTIONS(2683), + [sym_float_literal] = ACTIONS(2683), + [sym_rune_literal] = ACTIONS(2683), + [anon_sym_SQUOTE] = ACTIONS(2683), + [anon_sym_DQUOTE] = ACTIONS(2683), + [anon_sym_c_SQUOTE] = ACTIONS(2683), + [anon_sym_c_DQUOTE] = ACTIONS(2683), + [anon_sym_r_SQUOTE] = ACTIONS(2683), + [anon_sym_r_DQUOTE] = ACTIONS(2683), + [sym_pseudo_compile_time_identifier] = ACTIONS(2683), + [anon_sym_shared] = ACTIONS(2683), + [anon_sym_map_LBRACK] = ACTIONS(2683), + [anon_sym_chan] = ACTIONS(2683), + [anon_sym_thread] = ACTIONS(2683), + [anon_sym_atomic] = ACTIONS(2683), + }, + [1253] = { + [sym_line_comment] = STATE(1253), + [sym_block_comment] = STATE(1253), + [sym_identifier] = ACTIONS(2111), + [anon_sym_LF] = ACTIONS(2111), + [anon_sym_CR] = ACTIONS(2111), + [anon_sym_CR_LF] = ACTIONS(2111), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_DOT] = ACTIONS(2111), + [anon_sym_as] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_COMMA] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_RPAREN] = ACTIONS(2111), + [anon_sym_fn] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_PERCENT] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_GT] = ACTIONS(2111), + [anon_sym_EQ_EQ] = ACTIONS(2111), + [anon_sym_BANG_EQ] = ACTIONS(2111), + [anon_sym_LT_EQ] = ACTIONS(2111), + [anon_sym_GT_EQ] = ACTIONS(2111), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_struct] = ACTIONS(2111), + [anon_sym_mut] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [anon_sym_QMARK] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_go] = ACTIONS(2111), + [anon_sym_spawn] = ACTIONS(2111), + [anon_sym_json_DOTdecode] = ACTIONS(2111), + [anon_sym_PIPE] = ACTIONS(2111), + [anon_sym_LBRACK2] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_CARET] = ACTIONS(2111), + [anon_sym_AMP] = ACTIONS(2111), + [anon_sym_LT_DASH] = ACTIONS(2111), + [anon_sym_LT_LT] = ACTIONS(2111), + [anon_sym_GT_GT] = ACTIONS(2111), + [anon_sym_GT_GT_GT] = ACTIONS(2111), + [anon_sym_AMP_CARET] = ACTIONS(2111), + [anon_sym_AMP_AMP] = ACTIONS(2111), + [anon_sym_PIPE_PIPE] = ACTIONS(2111), + [anon_sym_or] = ACTIONS(2111), + [sym_none] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_nil] = ACTIONS(2111), + [anon_sym_QMARK_DOT] = ACTIONS(2111), + [anon_sym_POUND_LBRACK] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_DOLLARif] = ACTIONS(2111), + [anon_sym_is] = ACTIONS(2111), + [anon_sym_BANGis] = ACTIONS(2111), + [anon_sym_in] = ACTIONS(2111), + [anon_sym_BANGin] = ACTIONS(2111), + [anon_sym_match] = ACTIONS(2111), + [anon_sym_select] = ACTIONS(2111), + [anon_sym_lock] = ACTIONS(2111), + [anon_sym_rlock] = ACTIONS(2111), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(2111), + [sym_int_literal] = ACTIONS(2111), + [sym_float_literal] = ACTIONS(2111), + [sym_rune_literal] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_c_SQUOTE] = ACTIONS(2111), + [anon_sym_c_DQUOTE] = ACTIONS(2111), + [anon_sym_r_SQUOTE] = ACTIONS(2111), + [anon_sym_r_DQUOTE] = ACTIONS(2111), + [sym_pseudo_compile_time_identifier] = ACTIONS(2111), + [anon_sym_shared] = ACTIONS(2111), + [anon_sym_map_LBRACK] = ACTIONS(2111), + [anon_sym_chan] = ACTIONS(2111), + [anon_sym_thread] = ACTIONS(2111), + [anon_sym_atomic] = ACTIONS(2111), }, [1254] = { [sym_line_comment] = STATE(1254), [sym_block_comment] = STATE(1254), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LF] = ACTIONS(2139), - [anon_sym_CR] = ACTIONS(2139), - [anon_sym_CR_LF] = ACTIONS(2139), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LF] = ACTIONS(2095), + [anon_sym_CR] = ACTIONS(2095), + [anon_sym_CR_LF] = ACTIONS(2095), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2139), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_as] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_COMMA] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_RPAREN] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(2139), - [anon_sym_fn] = ACTIONS(2139), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_SLASH] = ACTIONS(2139), - [anon_sym_PERCENT] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_GT] = ACTIONS(2139), - [anon_sym_EQ_EQ] = ACTIONS(2139), - [anon_sym_BANG_EQ] = ACTIONS(2139), - [anon_sym_LT_EQ] = ACTIONS(2139), - [anon_sym_GT_EQ] = ACTIONS(2139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2139), - [anon_sym_mut] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_QMARK] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(2139), - [anon_sym_spawn] = ACTIONS(2139), - [anon_sym_json_DOTdecode] = ACTIONS(2139), - [anon_sym_LBRACK2] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_LT_DASH] = ACTIONS(2139), - [anon_sym_LT_LT] = ACTIONS(2139), - [anon_sym_GT_GT] = ACTIONS(2139), - [anon_sym_GT_GT_GT] = ACTIONS(2139), - [anon_sym_AMP_CARET] = ACTIONS(2139), - [anon_sym_AMP_AMP] = ACTIONS(2139), - [anon_sym_PIPE_PIPE] = ACTIONS(2139), - [anon_sym_or] = ACTIONS(2139), - [sym_none] = ACTIONS(2139), - [sym_true] = ACTIONS(2139), - [sym_false] = ACTIONS(2139), - [sym_nil] = ACTIONS(2139), - [anon_sym_QMARK_DOT] = ACTIONS(2139), - [anon_sym_POUND_LBRACK] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2139), - [anon_sym_DOLLARif] = ACTIONS(2139), - [anon_sym_is] = ACTIONS(2139), - [anon_sym_BANGis] = ACTIONS(2139), - [anon_sym_in] = ACTIONS(2139), - [anon_sym_BANGin] = ACTIONS(2139), - [anon_sym_match] = ACTIONS(2139), - [anon_sym_select] = ACTIONS(2139), - [anon_sym_lock] = ACTIONS(2139), - [anon_sym_rlock] = ACTIONS(2139), - [anon_sym_unsafe] = ACTIONS(2139), - [anon_sym_sql] = ACTIONS(2139), - [sym_int_literal] = ACTIONS(2139), - [sym_float_literal] = ACTIONS(2139), - [sym_rune_literal] = ACTIONS(2139), - [anon_sym_SQUOTE] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2139), - [anon_sym_c_SQUOTE] = ACTIONS(2139), - [anon_sym_c_DQUOTE] = ACTIONS(2139), - [anon_sym_r_SQUOTE] = ACTIONS(2139), - [anon_sym_r_DQUOTE] = ACTIONS(2139), - [sym_pseudo_compile_time_identifier] = ACTIONS(2139), - [anon_sym_shared] = ACTIONS(2139), - [anon_sym_map_LBRACK] = ACTIONS(2139), - [anon_sym_chan] = ACTIONS(2139), - [anon_sym_thread] = ACTIONS(2139), - [anon_sym_atomic] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_DOT] = ACTIONS(2095), + [anon_sym_as] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_COMMA] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_RPAREN] = ACTIONS(2095), + [anon_sym_fn] = ACTIONS(2095), + [anon_sym_PLUS] = ACTIONS(2095), + [anon_sym_DASH] = ACTIONS(2095), + [anon_sym_STAR] = ACTIONS(2095), + [anon_sym_SLASH] = ACTIONS(2095), + [anon_sym_PERCENT] = ACTIONS(2095), + [anon_sym_LT] = ACTIONS(2095), + [anon_sym_GT] = ACTIONS(2095), + [anon_sym_EQ_EQ] = ACTIONS(2095), + [anon_sym_BANG_EQ] = ACTIONS(2095), + [anon_sym_LT_EQ] = ACTIONS(2095), + [anon_sym_GT_EQ] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2095), + [anon_sym_mut] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_QMARK] = ACTIONS(2095), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_go] = ACTIONS(2095), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(2095), + [anon_sym_PIPE] = ACTIONS(2095), + [anon_sym_LBRACK2] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_LT_DASH] = ACTIONS(2095), + [anon_sym_LT_LT] = ACTIONS(2095), + [anon_sym_GT_GT] = ACTIONS(2095), + [anon_sym_GT_GT_GT] = ACTIONS(2095), + [anon_sym_AMP_CARET] = ACTIONS(2095), + [anon_sym_AMP_AMP] = ACTIONS(2095), + [anon_sym_PIPE_PIPE] = ACTIONS(2095), + [anon_sym_or] = ACTIONS(2095), + [sym_none] = ACTIONS(2095), + [sym_true] = ACTIONS(2095), + [sym_false] = ACTIONS(2095), + [sym_nil] = ACTIONS(2095), + [anon_sym_QMARK_DOT] = ACTIONS(2095), + [anon_sym_POUND_LBRACK] = ACTIONS(2095), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_DOLLARif] = ACTIONS(2095), + [anon_sym_is] = ACTIONS(2095), + [anon_sym_BANGis] = ACTIONS(2095), + [anon_sym_in] = ACTIONS(2095), + [anon_sym_BANGin] = ACTIONS(2095), + [anon_sym_match] = ACTIONS(2095), + [anon_sym_select] = ACTIONS(2095), + [anon_sym_lock] = ACTIONS(2095), + [anon_sym_rlock] = ACTIONS(2095), + [anon_sym_unsafe] = ACTIONS(2095), + [anon_sym_sql] = ACTIONS(2095), + [sym_int_literal] = ACTIONS(2095), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [anon_sym_SQUOTE] = ACTIONS(2095), + [anon_sym_DQUOTE] = ACTIONS(2095), + [anon_sym_c_SQUOTE] = ACTIONS(2095), + [anon_sym_c_DQUOTE] = ACTIONS(2095), + [anon_sym_r_SQUOTE] = ACTIONS(2095), + [anon_sym_r_DQUOTE] = ACTIONS(2095), + [sym_pseudo_compile_time_identifier] = ACTIONS(2095), + [anon_sym_shared] = ACTIONS(2095), + [anon_sym_map_LBRACK] = ACTIONS(2095), + [anon_sym_chan] = ACTIONS(2095), + [anon_sym_thread] = ACTIONS(2095), + [anon_sym_atomic] = ACTIONS(2095), }, [1255] = { [sym_line_comment] = STATE(1255), [sym_block_comment] = STATE(1255), - [sym_type_parameters] = STATE(4063), - [sym_argument_list] = STATE(1354), - [sym_or_block] = STATE(1355), - [sym_identifier] = ACTIONS(1791), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3825), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_COMMA] = ACTIONS(1789), - [anon_sym_RBRACE] = ACTIONS(1789), - [anon_sym_LPAREN] = ACTIONS(3827), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1791), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_STAR] = ACTIONS(1789), - [anon_sym_SLASH] = ACTIONS(1791), - [anon_sym_PERCENT] = ACTIONS(1789), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1789), - [anon_sym_BANG_EQ] = ACTIONS(1789), - [anon_sym_LT_EQ] = ACTIONS(1789), - [anon_sym_GT_EQ] = ACTIONS(1789), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_RBRACK] = ACTIONS(1789), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_COLON] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_QMARK] = ACTIONS(3831), - [anon_sym_BANG] = ACTIONS(3833), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1789), - [anon_sym_LBRACK2] = ACTIONS(3835), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_CARET] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_LT_DASH] = ACTIONS(1789), - [anon_sym_LT_LT] = ACTIONS(1789), - [anon_sym_GT_GT] = ACTIONS(1791), - [anon_sym_GT_GT_GT] = ACTIONS(1789), - [anon_sym_AMP_CARET] = ACTIONS(1789), - [anon_sym_AMP_AMP] = ACTIONS(1789), - [anon_sym_PIPE_PIPE] = ACTIONS(1789), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(3837), - [anon_sym_POUND_LBRACK] = ACTIONS(3839), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1789), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_BANGin] = ACTIONS(1789), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1789), - [sym_rune_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1789), - [anon_sym_DQUOTE] = ACTIONS(1789), - [anon_sym_c_SQUOTE] = ACTIONS(1789), - [anon_sym_c_DQUOTE] = ACTIONS(1789), - [anon_sym_r_SQUOTE] = ACTIONS(1789), - [anon_sym_r_DQUOTE] = ACTIONS(1789), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1789), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), + [sym_identifier] = ACTIONS(2653), + [anon_sym_LF] = ACTIONS(2653), + [anon_sym_CR] = ACTIONS(2653), + [anon_sym_CR_LF] = ACTIONS(2653), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2653), + [anon_sym_DOT] = ACTIONS(2653), + [anon_sym_as] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_COMMA] = ACTIONS(2653), + [anon_sym_RBRACE] = ACTIONS(2653), + [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_RPAREN] = ACTIONS(2653), + [anon_sym_fn] = ACTIONS(2653), + [anon_sym_PLUS] = ACTIONS(2653), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_STAR] = ACTIONS(2653), + [anon_sym_SLASH] = ACTIONS(2653), + [anon_sym_PERCENT] = ACTIONS(2653), + [anon_sym_LT] = ACTIONS(2653), + [anon_sym_GT] = ACTIONS(2653), + [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_DOT_DOT_DOT] = ACTIONS(2653), + [anon_sym_LBRACK] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_mut] = ACTIONS(2653), + [anon_sym_PLUS_PLUS] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2653), + [anon_sym_QMARK] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2653), + [anon_sym_go] = ACTIONS(2653), + [anon_sym_spawn] = ACTIONS(2653), + [anon_sym_json_DOTdecode] = ACTIONS(2653), + [anon_sym_PIPE] = ACTIONS(2653), + [anon_sym_LBRACK2] = ACTIONS(2653), + [anon_sym_TILDE] = ACTIONS(2653), + [anon_sym_CARET] = ACTIONS(2653), + [anon_sym_AMP] = ACTIONS(2653), + [anon_sym_LT_DASH] = ACTIONS(2653), + [anon_sym_LT_LT] = ACTIONS(2653), + [anon_sym_GT_GT] = ACTIONS(2653), + [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(2653), + [sym_none] = ACTIONS(2653), + [sym_true] = ACTIONS(2653), + [sym_false] = ACTIONS(2653), + [sym_nil] = ACTIONS(2653), + [anon_sym_QMARK_DOT] = ACTIONS(2653), + [anon_sym_POUND_LBRACK] = ACTIONS(2653), + [anon_sym_if] = ACTIONS(2653), + [anon_sym_DOLLARif] = ACTIONS(2653), + [anon_sym_is] = ACTIONS(2653), + [anon_sym_BANGis] = ACTIONS(2653), + [anon_sym_in] = ACTIONS(2653), + [anon_sym_BANGin] = ACTIONS(2653), + [anon_sym_match] = ACTIONS(2653), + [anon_sym_select] = ACTIONS(2653), + [anon_sym_lock] = ACTIONS(2653), + [anon_sym_rlock] = ACTIONS(2653), + [anon_sym_unsafe] = ACTIONS(2653), + [anon_sym_sql] = ACTIONS(2653), + [sym_int_literal] = ACTIONS(2653), + [sym_float_literal] = ACTIONS(2653), + [sym_rune_literal] = ACTIONS(2653), + [anon_sym_SQUOTE] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2653), + [anon_sym_c_SQUOTE] = ACTIONS(2653), + [anon_sym_c_DQUOTE] = ACTIONS(2653), + [anon_sym_r_SQUOTE] = ACTIONS(2653), + [anon_sym_r_DQUOTE] = ACTIONS(2653), + [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_shared] = ACTIONS(2653), + [anon_sym_map_LBRACK] = ACTIONS(2653), + [anon_sym_chan] = ACTIONS(2653), + [anon_sym_thread] = ACTIONS(2653), + [anon_sym_atomic] = ACTIONS(2653), }, [1256] = { [sym_line_comment] = STATE(1256), [sym_block_comment] = STATE(1256), - [sym_type_parameters] = STATE(4063), - [sym_argument_list] = STATE(1354), - [sym_or_block] = STATE(1355), - [sym_identifier] = ACTIONS(1783), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3825), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_COMMA] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(3827), - [anon_sym_PIPE] = ACTIONS(1783), - [anon_sym_fn] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_SLASH] = ACTIONS(1783), - [anon_sym_PERCENT] = ACTIONS(1781), - [anon_sym_LT] = ACTIONS(1783), - [anon_sym_GT] = ACTIONS(1783), - [anon_sym_EQ_EQ] = ACTIONS(1781), - [anon_sym_BANG_EQ] = ACTIONS(1781), - [anon_sym_LT_EQ] = ACTIONS(1781), - [anon_sym_GT_EQ] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_RBRACK] = ACTIONS(1781), - [anon_sym_struct] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_COLON] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_QMARK] = ACTIONS(3831), - [anon_sym_BANG] = ACTIONS(3833), - [anon_sym_go] = ACTIONS(1783), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1781), - [anon_sym_LBRACK2] = ACTIONS(3835), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_CARET] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_LT_DASH] = ACTIONS(1781), - [anon_sym_LT_LT] = ACTIONS(1781), - [anon_sym_GT_GT] = ACTIONS(1783), - [anon_sym_GT_GT_GT] = ACTIONS(1781), - [anon_sym_AMP_CARET] = ACTIONS(1781), - [anon_sym_AMP_AMP] = ACTIONS(1781), - [anon_sym_PIPE_PIPE] = ACTIONS(1781), - [anon_sym_or] = ACTIONS(1783), - [sym_none] = ACTIONS(1783), - [sym_true] = ACTIONS(1783), - [sym_false] = ACTIONS(1783), - [sym_nil] = ACTIONS(1783), - [anon_sym_QMARK_DOT] = ACTIONS(3837), - [anon_sym_POUND_LBRACK] = ACTIONS(3839), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_DOLLARif] = ACTIONS(1783), - [anon_sym_is] = ACTIONS(1783), - [anon_sym_BANGis] = ACTIONS(1781), - [anon_sym_in] = ACTIONS(1783), - [anon_sym_BANGin] = ACTIONS(1781), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_select] = ACTIONS(1783), - [anon_sym_lock] = ACTIONS(1783), - [anon_sym_rlock] = ACTIONS(1783), - [anon_sym_unsafe] = ACTIONS(1783), - [anon_sym_sql] = ACTIONS(1783), - [sym_int_literal] = ACTIONS(1783), - [sym_float_literal] = ACTIONS(1781), - [sym_rune_literal] = ACTIONS(1781), - [anon_sym_SQUOTE] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [anon_sym_c_SQUOTE] = ACTIONS(1781), - [anon_sym_c_DQUOTE] = ACTIONS(1781), - [anon_sym_r_SQUOTE] = ACTIONS(1781), - [anon_sym_r_DQUOTE] = ACTIONS(1781), - [sym_pseudo_compile_time_identifier] = ACTIONS(1783), - [anon_sym_shared] = ACTIONS(1783), - [anon_sym_map_LBRACK] = ACTIONS(1781), - [anon_sym_chan] = ACTIONS(1783), - [anon_sym_thread] = ACTIONS(1783), - [anon_sym_atomic] = ACTIONS(1783), + [sym_identifier] = ACTIONS(2643), + [anon_sym_LF] = ACTIONS(2643), + [anon_sym_CR] = ACTIONS(2643), + [anon_sym_CR_LF] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [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_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_PIPE] = 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_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), + [anon_sym_SQUOTE] = ACTIONS(2643), + [anon_sym_DQUOTE] = ACTIONS(2643), + [anon_sym_c_SQUOTE] = ACTIONS(2643), + [anon_sym_c_DQUOTE] = ACTIONS(2643), + [anon_sym_r_SQUOTE] = ACTIONS(2643), + [anon_sym_r_DQUOTE] = 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), }, [1257] = { [sym_line_comment] = STATE(1257), [sym_block_comment] = STATE(1257), - [sym_type_parameters] = STATE(4063), - [sym_argument_list] = STATE(1354), - [sym_or_block] = STATE(1355), - [sym_identifier] = ACTIONS(1769), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3825), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_COMMA] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(3827), - [anon_sym_PIPE] = ACTIONS(1769), - [anon_sym_fn] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_SLASH] = ACTIONS(1769), - [anon_sym_PERCENT] = ACTIONS(1767), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1769), - [anon_sym_EQ_EQ] = ACTIONS(1767), - [anon_sym_BANG_EQ] = ACTIONS(1767), - [anon_sym_LT_EQ] = ACTIONS(1767), - [anon_sym_GT_EQ] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_RBRACK] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_COLON] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_QMARK] = ACTIONS(3831), - [anon_sym_BANG] = ACTIONS(3833), - [anon_sym_go] = ACTIONS(1769), - [anon_sym_spawn] = ACTIONS(1769), - [anon_sym_json_DOTdecode] = ACTIONS(1767), - [anon_sym_LBRACK2] = ACTIONS(3835), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_LT_DASH] = ACTIONS(1767), - [anon_sym_LT_LT] = ACTIONS(1767), - [anon_sym_GT_GT] = ACTIONS(1769), - [anon_sym_GT_GT_GT] = ACTIONS(1767), - [anon_sym_AMP_CARET] = ACTIONS(1767), - [anon_sym_AMP_AMP] = ACTIONS(1767), - [anon_sym_PIPE_PIPE] = ACTIONS(1767), - [anon_sym_or] = ACTIONS(1769), - [sym_none] = ACTIONS(1769), - [sym_true] = ACTIONS(1769), - [sym_false] = ACTIONS(1769), - [sym_nil] = ACTIONS(1769), - [anon_sym_QMARK_DOT] = ACTIONS(3837), - [anon_sym_POUND_LBRACK] = ACTIONS(3839), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_DOLLARif] = ACTIONS(1769), - [anon_sym_is] = ACTIONS(1769), - [anon_sym_BANGis] = ACTIONS(1767), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_BANGin] = ACTIONS(1767), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_select] = ACTIONS(1769), - [anon_sym_lock] = ACTIONS(1769), - [anon_sym_rlock] = ACTIONS(1769), - [anon_sym_unsafe] = ACTIONS(1769), - [anon_sym_sql] = ACTIONS(1769), - [sym_int_literal] = ACTIONS(1769), - [sym_float_literal] = ACTIONS(1767), - [sym_rune_literal] = ACTIONS(1767), - [anon_sym_SQUOTE] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [anon_sym_c_SQUOTE] = ACTIONS(1767), - [anon_sym_c_DQUOTE] = ACTIONS(1767), - [anon_sym_r_SQUOTE] = ACTIONS(1767), - [anon_sym_r_DQUOTE] = ACTIONS(1767), - [sym_pseudo_compile_time_identifier] = ACTIONS(1769), - [anon_sym_shared] = ACTIONS(1769), - [anon_sym_map_LBRACK] = ACTIONS(1767), - [anon_sym_chan] = ACTIONS(1769), - [anon_sym_thread] = ACTIONS(1769), - [anon_sym_atomic] = ACTIONS(1769), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LF] = ACTIONS(2961), + [anon_sym_CR] = ACTIONS(2961), + [anon_sym_CR_LF] = ACTIONS(2961), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_DOT] = ACTIONS(2961), + [anon_sym_as] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2961), + [anon_sym_COMMA] = ACTIONS(2961), + [anon_sym_RBRACE] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2961), + [anon_sym_RPAREN] = ACTIONS(2961), + [anon_sym_fn] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2961), + [anon_sym_SLASH] = ACTIONS(2961), + [anon_sym_PERCENT] = ACTIONS(2961), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_EQ_EQ] = ACTIONS(2961), + [anon_sym_BANG_EQ] = ACTIONS(2961), + [anon_sym_LT_EQ] = ACTIONS(2961), + [anon_sym_GT_EQ] = ACTIONS(2961), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2959), + [anon_sym_struct] = ACTIONS(2961), + [anon_sym_mut] = ACTIONS(2961), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_DASH_DASH] = ACTIONS(2961), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_BANG] = ACTIONS(2961), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2961), + [anon_sym_json_DOTdecode] = ACTIONS(2961), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_LBRACK2] = ACTIONS(2961), + [anon_sym_TILDE] = ACTIONS(2961), + [anon_sym_CARET] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2961), + [anon_sym_LT_LT] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(2961), + [anon_sym_GT_GT_GT] = ACTIONS(2961), + [anon_sym_AMP_CARET] = ACTIONS(2961), + [anon_sym_AMP_AMP] = ACTIONS(2961), + [anon_sym_PIPE_PIPE] = ACTIONS(2961), + [anon_sym_or] = ACTIONS(2961), + [sym_none] = ACTIONS(2961), + [sym_true] = ACTIONS(2961), + [sym_false] = ACTIONS(2961), + [sym_nil] = ACTIONS(2961), + [anon_sym_QMARK_DOT] = ACTIONS(2961), + [anon_sym_POUND_LBRACK] = ACTIONS(2961), + [anon_sym_if] = ACTIONS(2961), + [anon_sym_DOLLARif] = ACTIONS(2961), + [anon_sym_is] = ACTIONS(2961), + [anon_sym_BANGis] = ACTIONS(2961), + [anon_sym_in] = ACTIONS(2961), + [anon_sym_BANGin] = ACTIONS(2961), + [anon_sym_match] = ACTIONS(2961), + [anon_sym_select] = ACTIONS(2961), + [anon_sym_lock] = ACTIONS(2961), + [anon_sym_rlock] = ACTIONS(2961), + [anon_sym_unsafe] = ACTIONS(2961), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2961), + [sym_float_literal] = ACTIONS(2961), + [sym_rune_literal] = ACTIONS(2961), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_DQUOTE] = ACTIONS(2961), + [anon_sym_c_SQUOTE] = ACTIONS(2961), + [anon_sym_c_DQUOTE] = ACTIONS(2961), + [anon_sym_r_SQUOTE] = ACTIONS(2961), + [anon_sym_r_DQUOTE] = ACTIONS(2961), + [sym_pseudo_compile_time_identifier] = ACTIONS(2961), + [anon_sym_shared] = ACTIONS(2961), + [anon_sym_map_LBRACK] = ACTIONS(2961), + [anon_sym_chan] = ACTIONS(2961), + [anon_sym_thread] = ACTIONS(2961), + [anon_sym_atomic] = ACTIONS(2961), }, [1258] = { [sym_line_comment] = STATE(1258), [sym_block_comment] = STATE(1258), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(605), + [sym_type_parameters] = STATE(4349), + [sym_argument_list] = STATE(1357), + [sym_or_block] = STATE(1358), + [sym_identifier] = ACTIONS(1789), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(603), - [anon_sym_DOT] = ACTIONS(603), - [anon_sym_as] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_COMMA] = ACTIONS(1787), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_fn] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_SLASH] = ACTIONS(1789), + [anon_sym_PERCENT] = ACTIONS(1787), + [anon_sym_LT] = ACTIONS(1789), + [anon_sym_GT] = ACTIONS(1789), + [anon_sym_EQ_EQ] = ACTIONS(1787), + [anon_sym_BANG_EQ] = ACTIONS(1787), + [anon_sym_LT_EQ] = ACTIONS(1787), + [anon_sym_GT_EQ] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(3861), + [anon_sym_RBRACK] = ACTIONS(1787), + [anon_sym_struct] = ACTIONS(1789), + [anon_sym_mut] = ACTIONS(1789), + [anon_sym_COLON] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1787), + [anon_sym_DASH_DASH] = ACTIONS(1787), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_BANG] = ACTIONS(3865), + [anon_sym_go] = ACTIONS(1789), + [anon_sym_spawn] = ACTIONS(1789), + [anon_sym_json_DOTdecode] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1789), + [anon_sym_LBRACK2] = ACTIONS(3867), + [anon_sym_TILDE] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1789), + [anon_sym_LT_DASH] = ACTIONS(1787), + [anon_sym_LT_LT] = ACTIONS(1787), + [anon_sym_GT_GT] = ACTIONS(1789), + [anon_sym_GT_GT_GT] = ACTIONS(1787), + [anon_sym_AMP_CARET] = ACTIONS(1787), + [anon_sym_AMP_AMP] = ACTIONS(1787), + [anon_sym_PIPE_PIPE] = ACTIONS(1787), + [anon_sym_or] = ACTIONS(1789), + [sym_none] = ACTIONS(1789), + [sym_true] = ACTIONS(1789), + [sym_false] = ACTIONS(1789), + [sym_nil] = ACTIONS(1789), + [anon_sym_QMARK_DOT] = ACTIONS(3869), + [anon_sym_POUND_LBRACK] = ACTIONS(3871), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1789), + [anon_sym_is] = ACTIONS(1789), + [anon_sym_BANGis] = ACTIONS(1787), + [anon_sym_in] = ACTIONS(1789), + [anon_sym_BANGin] = ACTIONS(1787), + [anon_sym_match] = ACTIONS(1789), + [anon_sym_select] = ACTIONS(1789), + [anon_sym_lock] = ACTIONS(1789), + [anon_sym_rlock] = ACTIONS(1789), + [anon_sym_unsafe] = ACTIONS(1789), + [anon_sym_sql] = ACTIONS(1789), + [sym_int_literal] = ACTIONS(1789), + [sym_float_literal] = ACTIONS(1787), + [sym_rune_literal] = ACTIONS(1787), + [anon_sym_SQUOTE] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1787), + [anon_sym_c_SQUOTE] = ACTIONS(1787), + [anon_sym_c_DQUOTE] = ACTIONS(1787), + [anon_sym_r_SQUOTE] = ACTIONS(1787), + [anon_sym_r_DQUOTE] = ACTIONS(1787), + [sym_pseudo_compile_time_identifier] = ACTIONS(1789), + [anon_sym_shared] = ACTIONS(1789), + [anon_sym_map_LBRACK] = ACTIONS(1787), + [anon_sym_chan] = ACTIONS(1789), + [anon_sym_thread] = ACTIONS(1789), + [anon_sym_atomic] = ACTIONS(1789), + }, + [1259] = { + [sym_line_comment] = STATE(1259), + [sym_block_comment] = STATE(1259), + [sym_identifier] = ACTIONS(2629), + [anon_sym_LF] = ACTIONS(2629), + [anon_sym_CR] = ACTIONS(2629), + [anon_sym_CR_LF] = ACTIONS(2629), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym_DOT] = ACTIONS(2629), + [anon_sym_as] = ACTIONS(2629), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_COMMA] = ACTIONS(2629), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_RPAREN] = ACTIONS(2629), + [anon_sym_fn] = ACTIONS(2629), + [anon_sym_PLUS] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2629), + [anon_sym_mut] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_QMARK] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_go] = ACTIONS(2629), + [anon_sym_spawn] = ACTIONS(2629), + [anon_sym_json_DOTdecode] = ACTIONS(2629), + [anon_sym_PIPE] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2629), + [anon_sym_LT_DASH] = ACTIONS(2629), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT] = ACTIONS(2629), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_AMP_CARET] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_or] = ACTIONS(2629), + [sym_none] = ACTIONS(2629), + [sym_true] = ACTIONS(2629), + [sym_false] = ACTIONS(2629), + [sym_nil] = ACTIONS(2629), + [anon_sym_QMARK_DOT] = ACTIONS(2629), + [anon_sym_POUND_LBRACK] = ACTIONS(2629), + [anon_sym_if] = ACTIONS(2629), + [anon_sym_DOLLARif] = ACTIONS(2629), + [anon_sym_is] = ACTIONS(2629), + [anon_sym_BANGis] = ACTIONS(2629), + [anon_sym_in] = ACTIONS(2629), + [anon_sym_BANGin] = ACTIONS(2629), + [anon_sym_match] = ACTIONS(2629), + [anon_sym_select] = ACTIONS(2629), + [anon_sym_lock] = ACTIONS(2629), + [anon_sym_rlock] = ACTIONS(2629), + [anon_sym_unsafe] = ACTIONS(2629), + [anon_sym_sql] = ACTIONS(2629), + [sym_int_literal] = ACTIONS(2629), + [sym_float_literal] = ACTIONS(2629), + [sym_rune_literal] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [anon_sym_c_SQUOTE] = ACTIONS(2629), + [anon_sym_c_DQUOTE] = ACTIONS(2629), + [anon_sym_r_SQUOTE] = ACTIONS(2629), + [anon_sym_r_DQUOTE] = ACTIONS(2629), + [sym_pseudo_compile_time_identifier] = ACTIONS(2629), + [anon_sym_shared] = ACTIONS(2629), + [anon_sym_map_LBRACK] = ACTIONS(2629), + [anon_sym_chan] = ACTIONS(2629), + [anon_sym_thread] = ACTIONS(2629), + [anon_sym_atomic] = ACTIONS(2629), + }, + [1260] = { + [sym_line_comment] = STATE(1260), + [sym_block_comment] = STATE(1260), + [sym_type_parameters] = STATE(4349), + [sym_argument_list] = STATE(1357), + [sym_or_block] = STATE(1358), + [sym_identifier] = ACTIONS(1767), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1795), + [anon_sym_COMMA] = ACTIONS(1795), + [anon_sym_RBRACE] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1795), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_PERCENT] = ACTIONS(1795), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_EQ_EQ] = ACTIONS(1795), + [anon_sym_BANG_EQ] = ACTIONS(1795), + [anon_sym_LT_EQ] = ACTIONS(1795), + [anon_sym_GT_EQ] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(3861), + [anon_sym_RBRACK] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_COLON] = ACTIONS(1795), + [anon_sym_PLUS_PLUS] = ACTIONS(1795), + [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_BANG] = ACTIONS(3865), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1795), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK2] = ACTIONS(3867), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_CARET] = ACTIONS(1795), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym_LT_DASH] = ACTIONS(1795), + [anon_sym_LT_LT] = ACTIONS(1795), + [anon_sym_GT_GT] = ACTIONS(1767), + [anon_sym_GT_GT_GT] = ACTIONS(1795), + [anon_sym_AMP_CARET] = ACTIONS(1795), + [anon_sym_AMP_AMP] = ACTIONS(1795), + [anon_sym_PIPE_PIPE] = ACTIONS(1795), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(3869), + [anon_sym_POUND_LBRACK] = ACTIONS(3871), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1795), + [anon_sym_in] = ACTIONS(1767), + [anon_sym_BANGin] = ACTIONS(1795), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1795), + [sym_rune_literal] = ACTIONS(1795), + [anon_sym_SQUOTE] = ACTIONS(1795), + [anon_sym_DQUOTE] = ACTIONS(1795), + [anon_sym_c_SQUOTE] = ACTIONS(1795), + [anon_sym_c_DQUOTE] = ACTIONS(1795), + [anon_sym_r_SQUOTE] = ACTIONS(1795), + [anon_sym_r_DQUOTE] = ACTIONS(1795), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1795), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), + }, + [1261] = { + [sym_line_comment] = STATE(1261), + [sym_block_comment] = STATE(1261), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2421), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(609), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(607), + [anon_sym_as] = ACTIONS(611), + [anon_sym_COMMA] = ACTIONS(607), [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_EQ] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_LT_EQ] = ACTIONS(603), - [anon_sym_GT_EQ] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_EQ] = ACTIONS(611), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_LT_EQ] = ACTIONS(607), + [anon_sym_GT_EQ] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(607), [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3841), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_GT_GT_GT] = ACTIONS(607), - [anon_sym_AMP_CARET] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(603), - [anon_sym_PIPE_PIPE] = ACTIONS(603), - [anon_sym_or] = ACTIONS(607), - [anon_sym_QMARK_DOT] = ACTIONS(603), - [anon_sym_POUND_LBRACK] = ACTIONS(603), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(603), - [anon_sym_in] = ACTIONS(607), - [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(623), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(611), + [anon_sym_AMP_CARET] = ACTIONS(611), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [anon_sym_or] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(607), + [anon_sym_POUND_LBRACK] = ACTIONS(607), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(607), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(607), + [anon_sym_STAR_EQ] = ACTIONS(607), + [anon_sym_SLASH_EQ] = ACTIONS(607), + [anon_sym_PERCENT_EQ] = ACTIONS(607), + [anon_sym_LT_LT_EQ] = ACTIONS(607), + [anon_sym_GT_GT_EQ] = ACTIONS(607), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(607), + [anon_sym_AMP_EQ] = ACTIONS(607), + [anon_sym_AMP_CARET_EQ] = ACTIONS(607), + [anon_sym_PLUS_EQ] = ACTIONS(607), + [anon_sym_DASH_EQ] = ACTIONS(607), + [anon_sym_PIPE_EQ] = ACTIONS(607), + [anon_sym_CARET_EQ] = ACTIONS(607), + [anon_sym_COLON_EQ] = ACTIONS(607), + [anon_sym_shared] = ACTIONS(627), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [1259] = { - [sym_line_comment] = STATE(1259), - [sym_block_comment] = STATE(1259), - [sym_type_parameters] = STATE(4063), - [sym_argument_list] = STATE(1354), - [sym_or_block] = STATE(1355), - [sym_format_specifier] = STATE(4426), - [sym_identifier] = ACTIONS(3843), + [1262] = { + [sym_line_comment] = STATE(1262), + [sym_block_comment] = STATE(1262), + [sym_type_parameters] = STATE(4349), + [sym_argument_list] = STATE(1357), + [sym_or_block] = STATE(1358), + [sym_identifier] = ACTIONS(1771), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3825), - [anon_sym_as] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(3847), - [anon_sym_RBRACE] = ACTIONS(3847), - [anon_sym_LPAREN] = ACTIONS(3827), - [anon_sym_PIPE] = ACTIONS(3849), - [anon_sym_fn] = ACTIONS(3843), - [anon_sym_PLUS] = ACTIONS(3849), - [anon_sym_DASH] = ACTIONS(3849), - [anon_sym_STAR] = ACTIONS(3851), - [anon_sym_SLASH] = ACTIONS(3853), - [anon_sym_PERCENT] = ACTIONS(3851), - [anon_sym_LT] = ACTIONS(3855), - [anon_sym_GT] = ACTIONS(3855), - [anon_sym_EQ_EQ] = ACTIONS(3857), - [anon_sym_BANG_EQ] = ACTIONS(3857), - [anon_sym_LT_EQ] = ACTIONS(3857), - [anon_sym_GT_EQ] = ACTIONS(3857), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_struct] = ACTIONS(3843), - [anon_sym_mut] = ACTIONS(3843), - [anon_sym_COLON] = ACTIONS(3859), - [anon_sym_PLUS_PLUS] = ACTIONS(3861), - [anon_sym_DASH_DASH] = ACTIONS(3863), - [anon_sym_QMARK] = ACTIONS(3831), - [anon_sym_BANG] = ACTIONS(3833), - [anon_sym_go] = ACTIONS(3843), - [anon_sym_spawn] = ACTIONS(3843), - [anon_sym_json_DOTdecode] = ACTIONS(3847), - [anon_sym_LBRACK2] = ACTIONS(3835), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_CARET] = ACTIONS(3865), - [anon_sym_AMP] = ACTIONS(3853), - [anon_sym_LT_DASH] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3851), - [anon_sym_GT_GT] = ACTIONS(3853), - [anon_sym_GT_GT_GT] = ACTIONS(3851), - [anon_sym_AMP_CARET] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3867), - [anon_sym_PIPE_PIPE] = ACTIONS(3869), - [anon_sym_or] = ACTIONS(3871), - [sym_none] = ACTIONS(3843), - [sym_true] = ACTIONS(3843), - [sym_false] = ACTIONS(3843), - [sym_nil] = ACTIONS(3843), - [anon_sym_QMARK_DOT] = ACTIONS(3837), - [anon_sym_POUND_LBRACK] = ACTIONS(3839), - [anon_sym_if] = ACTIONS(3843), - [anon_sym_DOLLARif] = ACTIONS(3843), - [anon_sym_is] = ACTIONS(3873), - [anon_sym_BANGis] = ACTIONS(3875), - [anon_sym_in] = ACTIONS(3877), - [anon_sym_BANGin] = ACTIONS(3879), - [anon_sym_match] = ACTIONS(3843), - [anon_sym_select] = ACTIONS(3843), - [anon_sym_lock] = ACTIONS(3843), - [anon_sym_rlock] = ACTIONS(3843), - [anon_sym_unsafe] = ACTIONS(3843), - [anon_sym_sql] = ACTIONS(3843), - [sym_int_literal] = ACTIONS(3843), - [sym_float_literal] = ACTIONS(3847), - [sym_rune_literal] = ACTIONS(3847), - [anon_sym_SQUOTE] = ACTIONS(3847), - [anon_sym_DQUOTE] = ACTIONS(3847), - [anon_sym_c_SQUOTE] = ACTIONS(3847), - [anon_sym_c_DQUOTE] = ACTIONS(3847), - [anon_sym_r_SQUOTE] = ACTIONS(3847), - [anon_sym_r_DQUOTE] = ACTIONS(3847), - [sym_pseudo_compile_time_identifier] = ACTIONS(3843), - [anon_sym_shared] = ACTIONS(3843), - [anon_sym_map_LBRACK] = ACTIONS(3847), - [anon_sym_chan] = ACTIONS(3843), - [anon_sym_thread] = ACTIONS(3843), - [anon_sym_atomic] = ACTIONS(3843), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1769), + [anon_sym_COMMA] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_fn] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1771), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_SLASH] = ACTIONS(1771), + [anon_sym_PERCENT] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1771), + [anon_sym_GT] = ACTIONS(1771), + [anon_sym_EQ_EQ] = ACTIONS(1769), + [anon_sym_BANG_EQ] = ACTIONS(1769), + [anon_sym_LT_EQ] = ACTIONS(1769), + [anon_sym_GT_EQ] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(3861), + [anon_sym_RBRACK] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1771), + [anon_sym_mut] = ACTIONS(1771), + [anon_sym_COLON] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1769), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_BANG] = ACTIONS(3865), + [anon_sym_go] = ACTIONS(1771), + [anon_sym_spawn] = ACTIONS(1771), + [anon_sym_json_DOTdecode] = ACTIONS(1769), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_LBRACK2] = ACTIONS(3867), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_LT_DASH] = ACTIONS(1769), + [anon_sym_LT_LT] = ACTIONS(1769), + [anon_sym_GT_GT] = ACTIONS(1771), + [anon_sym_GT_GT_GT] = ACTIONS(1769), + [anon_sym_AMP_CARET] = ACTIONS(1769), + [anon_sym_AMP_AMP] = ACTIONS(1769), + [anon_sym_PIPE_PIPE] = ACTIONS(1769), + [anon_sym_or] = ACTIONS(1771), + [sym_none] = ACTIONS(1771), + [sym_true] = ACTIONS(1771), + [sym_false] = ACTIONS(1771), + [sym_nil] = ACTIONS(1771), + [anon_sym_QMARK_DOT] = ACTIONS(3869), + [anon_sym_POUND_LBRACK] = ACTIONS(3871), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_DOLLARif] = ACTIONS(1771), + [anon_sym_is] = ACTIONS(1771), + [anon_sym_BANGis] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1771), + [anon_sym_BANGin] = ACTIONS(1769), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_select] = ACTIONS(1771), + [anon_sym_lock] = ACTIONS(1771), + [anon_sym_rlock] = ACTIONS(1771), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1771), + [sym_int_literal] = ACTIONS(1771), + [sym_float_literal] = ACTIONS(1769), + [sym_rune_literal] = ACTIONS(1769), + [anon_sym_SQUOTE] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(1769), + [anon_sym_c_SQUOTE] = ACTIONS(1769), + [anon_sym_c_DQUOTE] = ACTIONS(1769), + [anon_sym_r_SQUOTE] = ACTIONS(1769), + [anon_sym_r_DQUOTE] = ACTIONS(1769), + [sym_pseudo_compile_time_identifier] = ACTIONS(1771), + [anon_sym_shared] = ACTIONS(1771), + [anon_sym_map_LBRACK] = ACTIONS(1769), + [anon_sym_chan] = ACTIONS(1771), + [anon_sym_thread] = ACTIONS(1771), + [anon_sym_atomic] = ACTIONS(1771), }, - [1260] = { - [sym_line_comment] = STATE(1260), - [sym_block_comment] = STATE(1260), - [sym_else_branch] = STATE(1356), + [1263] = { + [sym_line_comment] = STATE(1263), + [sym_block_comment] = STATE(1263), + [sym_type_parameters] = STATE(4349), + [sym_argument_list] = STATE(1357), + [sym_or_block] = STATE(1358), + [sym_format_specifier] = STATE(4387), + [sym_identifier] = ACTIONS(3875), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(3879), + [anon_sym_RBRACE] = ACTIONS(3879), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_fn] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3881), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_SLASH] = ACTIONS(3885), + [anon_sym_PERCENT] = ACTIONS(3883), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_EQ_EQ] = ACTIONS(3889), + [anon_sym_BANG_EQ] = ACTIONS(3889), + [anon_sym_LT_EQ] = ACTIONS(3889), + [anon_sym_GT_EQ] = ACTIONS(3889), + [anon_sym_LBRACK] = ACTIONS(3861), + [anon_sym_struct] = ACTIONS(3875), + [anon_sym_mut] = ACTIONS(3875), + [anon_sym_COLON] = ACTIONS(3891), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_BANG] = ACTIONS(3865), + [anon_sym_go] = ACTIONS(3875), + [anon_sym_spawn] = ACTIONS(3875), + [anon_sym_json_DOTdecode] = ACTIONS(3879), + [anon_sym_PIPE] = ACTIONS(3881), + [anon_sym_LBRACK2] = ACTIONS(3867), + [anon_sym_TILDE] = ACTIONS(3879), + [anon_sym_CARET] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3885), + [anon_sym_LT_DASH] = ACTIONS(3879), + [anon_sym_LT_LT] = ACTIONS(3883), + [anon_sym_GT_GT] = ACTIONS(3885), + [anon_sym_GT_GT_GT] = ACTIONS(3883), + [anon_sym_AMP_CARET] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(3899), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_or] = ACTIONS(3903), + [sym_none] = ACTIONS(3875), + [sym_true] = ACTIONS(3875), + [sym_false] = ACTIONS(3875), + [sym_nil] = ACTIONS(3875), + [anon_sym_QMARK_DOT] = ACTIONS(3869), + [anon_sym_POUND_LBRACK] = ACTIONS(3871), + [anon_sym_if] = ACTIONS(3875), + [anon_sym_DOLLARif] = ACTIONS(3875), + [anon_sym_is] = ACTIONS(3905), + [anon_sym_BANGis] = ACTIONS(3907), + [anon_sym_in] = ACTIONS(3909), + [anon_sym_BANGin] = ACTIONS(3911), + [anon_sym_match] = ACTIONS(3875), + [anon_sym_select] = ACTIONS(3875), + [anon_sym_lock] = ACTIONS(3875), + [anon_sym_rlock] = ACTIONS(3875), + [anon_sym_unsafe] = ACTIONS(3875), + [anon_sym_sql] = ACTIONS(3875), + [sym_int_literal] = ACTIONS(3875), + [sym_float_literal] = ACTIONS(3879), + [sym_rune_literal] = ACTIONS(3879), + [anon_sym_SQUOTE] = ACTIONS(3879), + [anon_sym_DQUOTE] = ACTIONS(3879), + [anon_sym_c_SQUOTE] = ACTIONS(3879), + [anon_sym_c_DQUOTE] = ACTIONS(3879), + [anon_sym_r_SQUOTE] = ACTIONS(3879), + [anon_sym_r_DQUOTE] = ACTIONS(3879), + [sym_pseudo_compile_time_identifier] = ACTIONS(3875), + [anon_sym_shared] = ACTIONS(3875), + [anon_sym_map_LBRACK] = ACTIONS(3879), + [anon_sym_chan] = ACTIONS(3875), + [anon_sym_thread] = ACTIONS(3875), + [anon_sym_atomic] = ACTIONS(3875), + }, + [1264] = { + [sym_line_comment] = STATE(1264), + [sym_block_comment] = STATE(1264), + [sym_type_parameters] = STATE(4349), + [sym_argument_list] = STATE(1357), + [sym_or_block] = STATE(1358), + [sym_format_specifier] = STATE(4693), + [sym_identifier] = ACTIONS(3875), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(3879), + [anon_sym_RBRACE] = ACTIONS(3879), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_fn] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3881), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_SLASH] = ACTIONS(3885), + [anon_sym_PERCENT] = ACTIONS(3883), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_EQ_EQ] = ACTIONS(3889), + [anon_sym_BANG_EQ] = ACTIONS(3889), + [anon_sym_LT_EQ] = ACTIONS(3889), + [anon_sym_GT_EQ] = ACTIONS(3889), + [anon_sym_LBRACK] = ACTIONS(3861), + [anon_sym_struct] = ACTIONS(3875), + [anon_sym_mut] = ACTIONS(3875), + [anon_sym_COLON] = ACTIONS(3891), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_BANG] = ACTIONS(3865), + [anon_sym_go] = ACTIONS(3875), + [anon_sym_spawn] = ACTIONS(3875), + [anon_sym_json_DOTdecode] = ACTIONS(3879), + [anon_sym_PIPE] = ACTIONS(3881), + [anon_sym_LBRACK2] = ACTIONS(3867), + [anon_sym_TILDE] = ACTIONS(3879), + [anon_sym_CARET] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3885), + [anon_sym_LT_DASH] = ACTIONS(3879), + [anon_sym_LT_LT] = ACTIONS(3883), + [anon_sym_GT_GT] = ACTIONS(3885), + [anon_sym_GT_GT_GT] = ACTIONS(3883), + [anon_sym_AMP_CARET] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(3899), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_or] = ACTIONS(3903), + [sym_none] = ACTIONS(3875), + [sym_true] = ACTIONS(3875), + [sym_false] = ACTIONS(3875), + [sym_nil] = ACTIONS(3875), + [anon_sym_QMARK_DOT] = ACTIONS(3869), + [anon_sym_POUND_LBRACK] = ACTIONS(3871), + [anon_sym_if] = ACTIONS(3875), + [anon_sym_DOLLARif] = ACTIONS(3875), + [anon_sym_is] = ACTIONS(3905), + [anon_sym_BANGis] = ACTIONS(3907), + [anon_sym_in] = ACTIONS(3909), + [anon_sym_BANGin] = ACTIONS(3911), + [anon_sym_match] = ACTIONS(3875), + [anon_sym_select] = ACTIONS(3875), + [anon_sym_lock] = ACTIONS(3875), + [anon_sym_rlock] = ACTIONS(3875), + [anon_sym_unsafe] = ACTIONS(3875), + [anon_sym_sql] = ACTIONS(3875), + [sym_int_literal] = ACTIONS(3875), + [sym_float_literal] = ACTIONS(3879), + [sym_rune_literal] = ACTIONS(3879), + [anon_sym_SQUOTE] = ACTIONS(3879), + [anon_sym_DQUOTE] = ACTIONS(3879), + [anon_sym_c_SQUOTE] = ACTIONS(3879), + [anon_sym_c_DQUOTE] = ACTIONS(3879), + [anon_sym_r_SQUOTE] = ACTIONS(3879), + [anon_sym_r_DQUOTE] = ACTIONS(3879), + [sym_pseudo_compile_time_identifier] = ACTIONS(3875), + [anon_sym_shared] = ACTIONS(3875), + [anon_sym_map_LBRACK] = ACTIONS(3879), + [anon_sym_chan] = ACTIONS(3875), + [anon_sym_thread] = ACTIONS(3875), + [anon_sym_atomic] = ACTIONS(3875), + }, + [1265] = { + [sym_line_comment] = STATE(1265), + [sym_block_comment] = STATE(1265), + [sym_else_branch] = STATE(1323), [sym_identifier] = ACTIONS(1805), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -161537,7 +162320,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(1803), [anon_sym_RBRACE] = ACTIONS(1803), [anon_sym_LPAREN] = ACTIONS(1803), - [anon_sym_PIPE] = ACTIONS(1805), [anon_sym_fn] = ACTIONS(1805), [anon_sym_PLUS] = ACTIONS(1805), [anon_sym_DASH] = ACTIONS(1805), @@ -161562,6 +162344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(1805), [anon_sym_spawn] = ACTIONS(1805), [anon_sym_json_DOTdecode] = ACTIONS(1803), + [anon_sym_PIPE] = ACTIONS(1805), [anon_sym_LBRACK2] = ACTIONS(1805), [anon_sym_TILDE] = ACTIONS(1803), [anon_sym_CARET] = ACTIONS(1803), @@ -161581,7 +162364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_DOT] = ACTIONS(1803), [anon_sym_POUND_LBRACK] = ACTIONS(1803), [anon_sym_if] = ACTIONS(1805), - [anon_sym_else] = ACTIONS(3881), + [anon_sym_else] = ACTIONS(3913), [anon_sym_DOLLARif] = ACTIONS(1805), [anon_sym_is] = ACTIONS(1805), [anon_sym_BANGis] = ACTIONS(1803), @@ -161609,10 +162392,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(1805), [anon_sym_atomic] = ACTIONS(1805), }, - [1261] = { - [sym_line_comment] = STATE(1261), - [sym_block_comment] = STATE(1261), - [sym_else_branch] = STATE(1364), + [1266] = { + [sym_line_comment] = STATE(1266), + [sym_block_comment] = STATE(1266), + [sym_else_branch] = STATE(1320), [sym_identifier] = ACTIONS(1799), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -161622,7 +162405,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(1797), [anon_sym_RBRACE] = ACTIONS(1797), [anon_sym_LPAREN] = ACTIONS(1797), - [anon_sym_PIPE] = ACTIONS(1799), [anon_sym_fn] = ACTIONS(1799), [anon_sym_PLUS] = ACTIONS(1799), [anon_sym_DASH] = ACTIONS(1799), @@ -161647,6 +162429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(1799), [anon_sym_spawn] = ACTIONS(1799), [anon_sym_json_DOTdecode] = ACTIONS(1797), + [anon_sym_PIPE] = ACTIONS(1799), [anon_sym_LBRACK2] = ACTIONS(1799), [anon_sym_TILDE] = ACTIONS(1797), [anon_sym_CARET] = ACTIONS(1797), @@ -161666,7 +162449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_DOT] = ACTIONS(1797), [anon_sym_POUND_LBRACK] = ACTIONS(1797), [anon_sym_if] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(3881), + [anon_sym_else] = ACTIONS(3913), [anon_sym_DOLLARif] = ACTIONS(1799), [anon_sym_is] = ACTIONS(1799), [anon_sym_BANGis] = ACTIONS(1797), @@ -161694,2001 +162477,1916 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(1799), [anon_sym_atomic] = ACTIONS(1799), }, - [1262] = { - [sym_line_comment] = STATE(1262), - [sym_block_comment] = STATE(1262), - [sym_type_parameters] = STATE(4063), - [sym_argument_list] = STATE(1354), - [sym_or_block] = STATE(1355), - [sym_format_specifier] = STATE(4491), - [sym_identifier] = ACTIONS(3843), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3825), - [anon_sym_as] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(3847), - [anon_sym_RBRACE] = ACTIONS(3847), - [anon_sym_LPAREN] = ACTIONS(3827), - [anon_sym_PIPE] = ACTIONS(3849), - [anon_sym_fn] = ACTIONS(3843), - [anon_sym_PLUS] = ACTIONS(3849), - [anon_sym_DASH] = ACTIONS(3849), - [anon_sym_STAR] = ACTIONS(3851), - [anon_sym_SLASH] = ACTIONS(3853), - [anon_sym_PERCENT] = ACTIONS(3851), - [anon_sym_LT] = ACTIONS(3855), - [anon_sym_GT] = ACTIONS(3855), - [anon_sym_EQ_EQ] = ACTIONS(3857), - [anon_sym_BANG_EQ] = ACTIONS(3857), - [anon_sym_LT_EQ] = ACTIONS(3857), - [anon_sym_GT_EQ] = ACTIONS(3857), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_struct] = ACTIONS(3843), - [anon_sym_mut] = ACTIONS(3843), - [anon_sym_COLON] = ACTIONS(3859), - [anon_sym_PLUS_PLUS] = ACTIONS(3861), - [anon_sym_DASH_DASH] = ACTIONS(3863), - [anon_sym_QMARK] = ACTIONS(3831), - [anon_sym_BANG] = ACTIONS(3833), - [anon_sym_go] = ACTIONS(3843), - [anon_sym_spawn] = ACTIONS(3843), - [anon_sym_json_DOTdecode] = ACTIONS(3847), - [anon_sym_LBRACK2] = ACTIONS(3835), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_CARET] = ACTIONS(3865), - [anon_sym_AMP] = ACTIONS(3853), - [anon_sym_LT_DASH] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3851), - [anon_sym_GT_GT] = ACTIONS(3853), - [anon_sym_GT_GT_GT] = ACTIONS(3851), - [anon_sym_AMP_CARET] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3867), - [anon_sym_PIPE_PIPE] = ACTIONS(3869), - [anon_sym_or] = ACTIONS(3871), - [sym_none] = ACTIONS(3843), - [sym_true] = ACTIONS(3843), - [sym_false] = ACTIONS(3843), - [sym_nil] = ACTIONS(3843), - [anon_sym_QMARK_DOT] = ACTIONS(3837), - [anon_sym_POUND_LBRACK] = ACTIONS(3839), - [anon_sym_if] = ACTIONS(3843), - [anon_sym_DOLLARif] = ACTIONS(3843), - [anon_sym_is] = ACTIONS(3873), - [anon_sym_BANGis] = ACTIONS(3875), - [anon_sym_in] = ACTIONS(3877), - [anon_sym_BANGin] = ACTIONS(3879), - [anon_sym_match] = ACTIONS(3843), - [anon_sym_select] = ACTIONS(3843), - [anon_sym_lock] = ACTIONS(3843), - [anon_sym_rlock] = ACTIONS(3843), - [anon_sym_unsafe] = ACTIONS(3843), - [anon_sym_sql] = ACTIONS(3843), - [sym_int_literal] = ACTIONS(3843), - [sym_float_literal] = ACTIONS(3847), - [sym_rune_literal] = ACTIONS(3847), - [anon_sym_SQUOTE] = ACTIONS(3847), - [anon_sym_DQUOTE] = ACTIONS(3847), - [anon_sym_c_SQUOTE] = ACTIONS(3847), - [anon_sym_c_DQUOTE] = ACTIONS(3847), - [anon_sym_r_SQUOTE] = ACTIONS(3847), - [anon_sym_r_DQUOTE] = ACTIONS(3847), - [sym_pseudo_compile_time_identifier] = ACTIONS(3843), - [anon_sym_shared] = ACTIONS(3843), - [anon_sym_map_LBRACK] = ACTIONS(3847), - [anon_sym_chan] = ACTIONS(3843), - [anon_sym_thread] = ACTIONS(3843), - [anon_sym_atomic] = ACTIONS(3843), - }, - [1263] = { - [sym_line_comment] = STATE(1263), - [sym_block_comment] = STATE(1263), - [sym_identifier] = ACTIONS(2779), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2777), - [anon_sym_DOT] = ACTIONS(2779), - [anon_sym_as] = ACTIONS(2779), - [anon_sym_LBRACE] = ACTIONS(2777), - [anon_sym_COMMA] = ACTIONS(2777), - [anon_sym_RBRACE] = ACTIONS(2777), - [anon_sym_LPAREN] = ACTIONS(2777), - [anon_sym_PIPE] = ACTIONS(2779), - [anon_sym_fn] = ACTIONS(2779), - [anon_sym_PLUS] = ACTIONS(2779), - [anon_sym_DASH] = ACTIONS(2779), - [anon_sym_STAR] = ACTIONS(2777), - [anon_sym_SLASH] = ACTIONS(2779), - [anon_sym_PERCENT] = ACTIONS(2777), - [anon_sym_LT] = ACTIONS(2779), - [anon_sym_GT] = ACTIONS(2779), - [anon_sym_EQ_EQ] = ACTIONS(2777), - [anon_sym_BANG_EQ] = ACTIONS(2777), - [anon_sym_LT_EQ] = ACTIONS(2777), - [anon_sym_GT_EQ] = ACTIONS(2777), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_RBRACK] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2779), - [anon_sym_mut] = ACTIONS(2779), - [anon_sym_COLON] = ACTIONS(2777), - [anon_sym_PLUS_PLUS] = ACTIONS(2777), - [anon_sym_DASH_DASH] = ACTIONS(2777), - [anon_sym_QMARK] = ACTIONS(2779), - [anon_sym_BANG] = ACTIONS(2779), - [anon_sym_go] = ACTIONS(2779), - [anon_sym_spawn] = ACTIONS(2779), - [anon_sym_json_DOTdecode] = ACTIONS(2777), - [anon_sym_LBRACK2] = ACTIONS(2779), - [anon_sym_TILDE] = ACTIONS(2777), - [anon_sym_CARET] = ACTIONS(2777), - [anon_sym_AMP] = ACTIONS(2779), - [anon_sym_LT_DASH] = ACTIONS(2777), - [anon_sym_LT_LT] = ACTIONS(2777), - [anon_sym_GT_GT] = ACTIONS(2779), - [anon_sym_GT_GT_GT] = ACTIONS(2777), - [anon_sym_AMP_CARET] = ACTIONS(2777), - [anon_sym_AMP_AMP] = ACTIONS(2777), - [anon_sym_PIPE_PIPE] = ACTIONS(2777), - [anon_sym_or] = ACTIONS(2779), - [sym_none] = ACTIONS(2779), - [sym_true] = ACTIONS(2779), - [sym_false] = ACTIONS(2779), - [sym_nil] = ACTIONS(2779), - [anon_sym_QMARK_DOT] = ACTIONS(2777), - [anon_sym_POUND_LBRACK] = ACTIONS(2777), - [anon_sym_if] = ACTIONS(2779), - [anon_sym_DOLLARif] = ACTIONS(2779), - [anon_sym_is] = ACTIONS(2779), - [anon_sym_BANGis] = ACTIONS(2777), - [anon_sym_in] = ACTIONS(2779), - [anon_sym_BANGin] = ACTIONS(2777), - [anon_sym_match] = ACTIONS(2779), - [anon_sym_select] = ACTIONS(2779), - [anon_sym_lock] = ACTIONS(2779), - [anon_sym_rlock] = ACTIONS(2779), - [anon_sym_unsafe] = ACTIONS(2779), - [anon_sym_sql] = ACTIONS(2779), - [sym_int_literal] = ACTIONS(2779), - [sym_float_literal] = ACTIONS(2777), - [sym_rune_literal] = ACTIONS(2777), - [anon_sym_SQUOTE] = ACTIONS(2777), - [anon_sym_DQUOTE] = ACTIONS(2777), - [anon_sym_c_SQUOTE] = ACTIONS(2777), - [anon_sym_c_DQUOTE] = ACTIONS(2777), - [anon_sym_r_SQUOTE] = ACTIONS(2777), - [anon_sym_r_DQUOTE] = ACTIONS(2777), - [sym_pseudo_compile_time_identifier] = ACTIONS(2779), - [anon_sym_shared] = ACTIONS(2779), - [anon_sym_map_LBRACK] = ACTIONS(2777), - [anon_sym_chan] = ACTIONS(2779), - [anon_sym_thread] = ACTIONS(2779), - [anon_sym_atomic] = ACTIONS(2779), - }, - [1264] = { - [sym_line_comment] = STATE(1264), - [sym_block_comment] = STATE(1264), - [sym_identifier] = ACTIONS(1809), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_as] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_COMMA] = ACTIONS(1807), - [anon_sym_RBRACE] = ACTIONS(1807), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_fn] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1807), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_PERCENT] = ACTIONS(1807), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_EQ_EQ] = ACTIONS(1807), - [anon_sym_BANG_EQ] = ACTIONS(1807), - [anon_sym_LT_EQ] = ACTIONS(1807), - [anon_sym_GT_EQ] = ACTIONS(1807), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_RBRACK] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_mut] = ACTIONS(1809), - [anon_sym_COLON] = ACTIONS(1807), - [anon_sym_PLUS_PLUS] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1807), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1809), - [anon_sym_json_DOTdecode] = ACTIONS(1807), - [anon_sym_LBRACK2] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1807), - [anon_sym_CARET] = ACTIONS(1807), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_LT_DASH] = ACTIONS(1807), - [anon_sym_LT_LT] = ACTIONS(1807), - [anon_sym_GT_GT] = ACTIONS(1809), - [anon_sym_GT_GT_GT] = ACTIONS(1807), - [anon_sym_AMP_CARET] = ACTIONS(1807), - [anon_sym_AMP_AMP] = ACTIONS(1807), - [anon_sym_PIPE_PIPE] = ACTIONS(1807), - [anon_sym_or] = ACTIONS(1809), - [sym_none] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_nil] = ACTIONS(1809), - [anon_sym_QMARK_DOT] = ACTIONS(1807), - [anon_sym_POUND_LBRACK] = ACTIONS(1807), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_DOLLARif] = ACTIONS(1809), - [anon_sym_DOLLARelse] = ACTIONS(1809), - [anon_sym_is] = ACTIONS(1809), - [anon_sym_BANGis] = ACTIONS(1807), - [anon_sym_in] = ACTIONS(1809), - [anon_sym_BANGin] = ACTIONS(1807), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_select] = ACTIONS(1809), - [anon_sym_lock] = ACTIONS(1809), - [anon_sym_rlock] = ACTIONS(1809), - [anon_sym_unsafe] = ACTIONS(1809), - [anon_sym_sql] = ACTIONS(1809), - [sym_int_literal] = ACTIONS(1809), - [sym_float_literal] = ACTIONS(1807), - [sym_rune_literal] = ACTIONS(1807), - [anon_sym_SQUOTE] = ACTIONS(1807), - [anon_sym_DQUOTE] = ACTIONS(1807), - [anon_sym_c_SQUOTE] = ACTIONS(1807), - [anon_sym_c_DQUOTE] = ACTIONS(1807), - [anon_sym_r_SQUOTE] = ACTIONS(1807), - [anon_sym_r_DQUOTE] = ACTIONS(1807), - [sym_pseudo_compile_time_identifier] = ACTIONS(1809), - [anon_sym_shared] = ACTIONS(1809), - [anon_sym_map_LBRACK] = ACTIONS(1807), - [anon_sym_chan] = ACTIONS(1809), - [anon_sym_thread] = ACTIONS(1809), - [anon_sym_atomic] = ACTIONS(1809), - }, - [1265] = { - [sym_line_comment] = STATE(1265), - [sym_block_comment] = STATE(1265), - [sym_type_parameters] = STATE(4063), - [sym_argument_list] = STATE(1354), - [sym_or_block] = STATE(1355), - [sym_identifier] = ACTIONS(1791), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3825), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_COMMA] = ACTIONS(1789), - [anon_sym_LPAREN] = ACTIONS(3827), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_SLASH] = ACTIONS(3887), - [anon_sym_PERCENT] = ACTIONS(3885), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1789), - [anon_sym_BANG_EQ] = ACTIONS(1789), - [anon_sym_LT_EQ] = ACTIONS(1789), - [anon_sym_GT_EQ] = ACTIONS(1789), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_RBRACK] = ACTIONS(1789), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_QMARK] = ACTIONS(3831), - [anon_sym_BANG] = ACTIONS(3833), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1789), - [anon_sym_LBRACK2] = ACTIONS(3835), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_CARET] = ACTIONS(3889), - [anon_sym_AMP] = ACTIONS(3887), - [anon_sym_LT_DASH] = ACTIONS(1789), - [anon_sym_LT_LT] = ACTIONS(3885), - [anon_sym_GT_GT] = ACTIONS(3887), - [anon_sym_GT_GT_GT] = ACTIONS(3885), - [anon_sym_AMP_CARET] = ACTIONS(3885), - [anon_sym_AMP_AMP] = ACTIONS(1789), - [anon_sym_PIPE_PIPE] = ACTIONS(1789), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(3837), - [anon_sym_POUND_LBRACK] = ACTIONS(3839), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1789), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_BANGin] = ACTIONS(1789), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1789), - [sym_rune_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1789), - [anon_sym_DQUOTE] = ACTIONS(1789), - [anon_sym_c_SQUOTE] = ACTIONS(1789), - [anon_sym_c_DQUOTE] = ACTIONS(1789), - [anon_sym_r_SQUOTE] = ACTIONS(1789), - [anon_sym_r_DQUOTE] = ACTIONS(1789), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1789), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), - }, - [1266] = { - [sym_line_comment] = STATE(1266), - [sym_block_comment] = STATE(1266), - [sym_identifier] = ACTIONS(1809), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_as] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_COMMA] = ACTIONS(1807), - [anon_sym_RBRACE] = ACTIONS(1807), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_fn] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1807), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_PERCENT] = ACTIONS(1807), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_EQ_EQ] = ACTIONS(1807), - [anon_sym_BANG_EQ] = ACTIONS(1807), - [anon_sym_LT_EQ] = ACTIONS(1807), - [anon_sym_GT_EQ] = ACTIONS(1807), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_RBRACK] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_mut] = ACTIONS(1809), - [anon_sym_COLON] = ACTIONS(1807), - [anon_sym_PLUS_PLUS] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1807), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1809), - [anon_sym_json_DOTdecode] = ACTIONS(1807), - [anon_sym_LBRACK2] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1807), - [anon_sym_CARET] = ACTIONS(1807), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_LT_DASH] = ACTIONS(1807), - [anon_sym_LT_LT] = ACTIONS(1807), - [anon_sym_GT_GT] = ACTIONS(1809), - [anon_sym_GT_GT_GT] = ACTIONS(1807), - [anon_sym_AMP_CARET] = ACTIONS(1807), - [anon_sym_AMP_AMP] = ACTIONS(1807), - [anon_sym_PIPE_PIPE] = ACTIONS(1807), - [anon_sym_or] = ACTIONS(1809), - [sym_none] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_nil] = ACTIONS(1809), - [anon_sym_QMARK_DOT] = ACTIONS(1807), - [anon_sym_POUND_LBRACK] = ACTIONS(1807), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_else] = ACTIONS(1809), - [anon_sym_DOLLARif] = ACTIONS(1809), - [anon_sym_is] = ACTIONS(1809), - [anon_sym_BANGis] = ACTIONS(1807), - [anon_sym_in] = ACTIONS(1809), - [anon_sym_BANGin] = ACTIONS(1807), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_select] = ACTIONS(1809), - [anon_sym_lock] = ACTIONS(1809), - [anon_sym_rlock] = ACTIONS(1809), - [anon_sym_unsafe] = ACTIONS(1809), - [anon_sym_sql] = ACTIONS(1809), - [sym_int_literal] = ACTIONS(1809), - [sym_float_literal] = ACTIONS(1807), - [sym_rune_literal] = ACTIONS(1807), - [anon_sym_SQUOTE] = ACTIONS(1807), - [anon_sym_DQUOTE] = ACTIONS(1807), - [anon_sym_c_SQUOTE] = ACTIONS(1807), - [anon_sym_c_DQUOTE] = ACTIONS(1807), - [anon_sym_r_SQUOTE] = ACTIONS(1807), - [anon_sym_r_DQUOTE] = ACTIONS(1807), - [sym_pseudo_compile_time_identifier] = ACTIONS(1809), - [anon_sym_shared] = ACTIONS(1809), - [anon_sym_map_LBRACK] = ACTIONS(1807), - [anon_sym_chan] = ACTIONS(1809), - [anon_sym_thread] = ACTIONS(1809), - [anon_sym_atomic] = ACTIONS(1809), - }, [1267] = { [sym_line_comment] = STATE(1267), [sym_block_comment] = STATE(1267), - [sym_type_parameters] = STATE(4063), - [sym_argument_list] = STATE(1354), - [sym_or_block] = STATE(1355), - [sym_identifier] = ACTIONS(1765), + [sym_type_parameters] = STATE(4349), + [sym_argument_list] = STATE(1357), + [sym_or_block] = STATE(1358), + [sym_identifier] = ACTIONS(1767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3825), - [anon_sym_as] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(3827), - [anon_sym_PIPE] = ACTIONS(3849), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(3849), - [anon_sym_DASH] = ACTIONS(3849), - [anon_sym_STAR] = ACTIONS(3851), - [anon_sym_SLASH] = ACTIONS(3853), - [anon_sym_PERCENT] = ACTIONS(3851), - [anon_sym_LT] = ACTIONS(3855), - [anon_sym_GT] = ACTIONS(3855), - [anon_sym_EQ_EQ] = ACTIONS(3857), - [anon_sym_BANG_EQ] = ACTIONS(3857), - [anon_sym_LT_EQ] = ACTIONS(3857), - [anon_sym_GT_EQ] = ACTIONS(3857), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_COLON] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(3861), - [anon_sym_DASH_DASH] = ACTIONS(3863), - [anon_sym_QMARK] = ACTIONS(3831), - [anon_sym_BANG] = ACTIONS(3833), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1763), - [anon_sym_LBRACK2] = ACTIONS(3835), - [anon_sym_TILDE] = ACTIONS(1763), - [anon_sym_CARET] = ACTIONS(3865), - [anon_sym_AMP] = ACTIONS(3853), - [anon_sym_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(3851), - [anon_sym_GT_GT] = ACTIONS(3853), - [anon_sym_GT_GT_GT] = ACTIONS(3851), - [anon_sym_AMP_CARET] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3867), - [anon_sym_PIPE_PIPE] = ACTIONS(3869), - [anon_sym_or] = ACTIONS(3871), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3837), - [anon_sym_POUND_LBRACK] = ACTIONS(3839), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(3873), - [anon_sym_BANGis] = ACTIONS(3875), - [anon_sym_in] = ACTIONS(3877), - [anon_sym_BANGin] = ACTIONS(3879), - [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(1763), - [sym_rune_literal] = ACTIONS(1763), - [anon_sym_SQUOTE] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_c_SQUOTE] = ACTIONS(1763), - [anon_sym_c_DQUOTE] = ACTIONS(1763), - [anon_sym_r_SQUOTE] = ACTIONS(1763), - [anon_sym_r_DQUOTE] = ACTIONS(1763), - [sym_pseudo_compile_time_identifier] = ACTIONS(1765), - [anon_sym_shared] = ACTIONS(1765), - [anon_sym_map_LBRACK] = ACTIONS(1763), - [anon_sym_chan] = ACTIONS(1765), - [anon_sym_thread] = ACTIONS(1765), - [anon_sym_atomic] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1795), + [anon_sym_COMMA] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(3915), + [anon_sym_DASH] = ACTIONS(3915), + [anon_sym_STAR] = ACTIONS(3917), + [anon_sym_SLASH] = ACTIONS(3919), + [anon_sym_PERCENT] = ACTIONS(3917), + [anon_sym_LT] = ACTIONS(3921), + [anon_sym_GT] = ACTIONS(3921), + [anon_sym_EQ_EQ] = ACTIONS(3923), + [anon_sym_BANG_EQ] = ACTIONS(3923), + [anon_sym_LT_EQ] = ACTIONS(3923), + [anon_sym_GT_EQ] = ACTIONS(3923), + [anon_sym_LBRACK] = ACTIONS(3861), + [anon_sym_RBRACK] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1795), + [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_BANG] = ACTIONS(3865), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1795), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_LBRACK2] = ACTIONS(3867), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_CARET] = ACTIONS(3925), + [anon_sym_AMP] = ACTIONS(3919), + [anon_sym_LT_DASH] = ACTIONS(1795), + [anon_sym_LT_LT] = ACTIONS(3917), + [anon_sym_GT_GT] = ACTIONS(3919), + [anon_sym_GT_GT_GT] = ACTIONS(3917), + [anon_sym_AMP_CARET] = ACTIONS(3917), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(1795), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(3869), + [anon_sym_POUND_LBRACK] = ACTIONS(3871), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1795), + [anon_sym_in] = ACTIONS(3929), + [anon_sym_BANGin] = ACTIONS(3931), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1795), + [sym_rune_literal] = ACTIONS(1795), + [anon_sym_SQUOTE] = ACTIONS(1795), + [anon_sym_DQUOTE] = ACTIONS(1795), + [anon_sym_c_SQUOTE] = ACTIONS(1795), + [anon_sym_c_DQUOTE] = ACTIONS(1795), + [anon_sym_r_SQUOTE] = ACTIONS(1795), + [anon_sym_r_DQUOTE] = ACTIONS(1795), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1795), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), }, [1268] = { [sym_line_comment] = STATE(1268), [sym_block_comment] = STATE(1268), - [sym_type_parameters] = STATE(4063), - [sym_argument_list] = STATE(1354), - [sym_or_block] = STATE(1355), - [sym_identifier] = ACTIONS(1791), + [sym_identifier] = ACTIONS(1877), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3825), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_COMMA] = ACTIONS(1789), - [anon_sym_LPAREN] = ACTIONS(3827), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_SLASH] = ACTIONS(3887), - [anon_sym_PERCENT] = ACTIONS(3885), - [anon_sym_LT] = ACTIONS(3891), - [anon_sym_GT] = ACTIONS(3891), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_RBRACK] = ACTIONS(1789), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_QMARK] = ACTIONS(3831), - [anon_sym_BANG] = ACTIONS(3833), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1789), - [anon_sym_LBRACK2] = ACTIONS(3835), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_CARET] = ACTIONS(3889), - [anon_sym_AMP] = ACTIONS(3887), - [anon_sym_LT_DASH] = ACTIONS(1789), - [anon_sym_LT_LT] = ACTIONS(3885), - [anon_sym_GT_GT] = ACTIONS(3887), - [anon_sym_GT_GT_GT] = ACTIONS(3885), - [anon_sym_AMP_CARET] = ACTIONS(3885), - [anon_sym_AMP_AMP] = ACTIONS(1789), - [anon_sym_PIPE_PIPE] = ACTIONS(1789), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(3837), - [anon_sym_POUND_LBRACK] = ACTIONS(3839), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1789), - [anon_sym_in] = ACTIONS(3895), - [anon_sym_BANGin] = ACTIONS(3897), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1789), - [sym_rune_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1789), - [anon_sym_DQUOTE] = ACTIONS(1789), - [anon_sym_c_SQUOTE] = ACTIONS(1789), - [anon_sym_c_DQUOTE] = ACTIONS(1789), - [anon_sym_r_SQUOTE] = ACTIONS(1789), - [anon_sym_r_DQUOTE] = ACTIONS(1789), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1789), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), + [anon_sym_DOT] = ACTIONS(1877), + [anon_sym_as] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1875), + [anon_sym_COMMA] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1875), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1875), + [anon_sym_BANG_EQ] = ACTIONS(1875), + [anon_sym_LT_EQ] = ACTIONS(1875), + [anon_sym_GT_EQ] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_RBRACK] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1877), + [anon_sym_mut] = ACTIONS(1877), + [anon_sym_COLON] = ACTIONS(1875), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1875), + [anon_sym_QMARK] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_go] = ACTIONS(1877), + [anon_sym_spawn] = ACTIONS(1877), + [anon_sym_json_DOTdecode] = ACTIONS(1875), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_LBRACK2] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_CARET] = ACTIONS(1875), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1875), + [anon_sym_LT_LT] = ACTIONS(1875), + [anon_sym_GT_GT] = ACTIONS(1877), + [anon_sym_GT_GT_GT] = ACTIONS(1875), + [anon_sym_AMP_CARET] = ACTIONS(1875), + [anon_sym_AMP_AMP] = ACTIONS(1875), + [anon_sym_PIPE_PIPE] = ACTIONS(1875), + [anon_sym_or] = ACTIONS(1877), + [sym_none] = ACTIONS(1877), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [sym_nil] = ACTIONS(1877), + [anon_sym_QMARK_DOT] = ACTIONS(1875), + [anon_sym_POUND_LBRACK] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_else] = ACTIONS(1877), + [anon_sym_DOLLARif] = ACTIONS(1877), + [anon_sym_is] = ACTIONS(1877), + [anon_sym_BANGis] = ACTIONS(1875), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_BANGin] = ACTIONS(1875), + [anon_sym_match] = ACTIONS(1877), + [anon_sym_select] = ACTIONS(1877), + [anon_sym_lock] = ACTIONS(1877), + [anon_sym_rlock] = ACTIONS(1877), + [anon_sym_unsafe] = ACTIONS(1877), + [anon_sym_sql] = ACTIONS(1877), + [sym_int_literal] = ACTIONS(1877), + [sym_float_literal] = ACTIONS(1875), + [sym_rune_literal] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [anon_sym_c_SQUOTE] = ACTIONS(1875), + [anon_sym_c_DQUOTE] = ACTIONS(1875), + [anon_sym_r_SQUOTE] = ACTIONS(1875), + [anon_sym_r_DQUOTE] = ACTIONS(1875), + [sym_pseudo_compile_time_identifier] = ACTIONS(1877), + [anon_sym_shared] = ACTIONS(1877), + [anon_sym_map_LBRACK] = ACTIONS(1875), + [anon_sym_chan] = ACTIONS(1877), + [anon_sym_thread] = ACTIONS(1877), + [anon_sym_atomic] = ACTIONS(1877), }, [1269] = { [sym_line_comment] = STATE(1269), [sym_block_comment] = STATE(1269), - [sym_type_parameters] = STATE(4063), - [sym_argument_list] = STATE(1354), - [sym_or_block] = STATE(1355), - [sym_identifier] = ACTIONS(1779), + [sym_type_parameters] = STATE(4349), + [sym_argument_list] = STATE(1357), + [sym_or_block] = STATE(1358), + [sym_identifier] = ACTIONS(1793), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3825), - [anon_sym_as] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(1777), - [anon_sym_RBRACE] = ACTIONS(1777), - [anon_sym_LPAREN] = ACTIONS(3827), - [anon_sym_PIPE] = ACTIONS(3849), - [anon_sym_fn] = ACTIONS(1779), - [anon_sym_PLUS] = ACTIONS(3849), - [anon_sym_DASH] = ACTIONS(3849), - [anon_sym_STAR] = ACTIONS(3851), - [anon_sym_SLASH] = ACTIONS(3853), - [anon_sym_PERCENT] = ACTIONS(3851), - [anon_sym_LT] = ACTIONS(3855), - [anon_sym_GT] = ACTIONS(3855), - [anon_sym_EQ_EQ] = ACTIONS(3857), - [anon_sym_BANG_EQ] = ACTIONS(3857), - [anon_sym_LT_EQ] = ACTIONS(3857), - [anon_sym_GT_EQ] = ACTIONS(3857), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_struct] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_COLON] = ACTIONS(1777), - [anon_sym_PLUS_PLUS] = ACTIONS(3861), - [anon_sym_DASH_DASH] = ACTIONS(3863), - [anon_sym_QMARK] = ACTIONS(3831), - [anon_sym_BANG] = ACTIONS(3833), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1779), - [anon_sym_json_DOTdecode] = ACTIONS(1777), - [anon_sym_LBRACK2] = ACTIONS(3835), - [anon_sym_TILDE] = ACTIONS(1777), - [anon_sym_CARET] = ACTIONS(3865), - [anon_sym_AMP] = ACTIONS(3853), - [anon_sym_LT_DASH] = ACTIONS(1777), - [anon_sym_LT_LT] = ACTIONS(3851), - [anon_sym_GT_GT] = ACTIONS(3853), - [anon_sym_GT_GT_GT] = ACTIONS(3851), - [anon_sym_AMP_CARET] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3867), - [anon_sym_PIPE_PIPE] = ACTIONS(3869), - [anon_sym_or] = ACTIONS(3871), - [sym_none] = ACTIONS(1779), - [sym_true] = ACTIONS(1779), - [sym_false] = ACTIONS(1779), - [sym_nil] = ACTIONS(1779), - [anon_sym_QMARK_DOT] = ACTIONS(3837), - [anon_sym_POUND_LBRACK] = ACTIONS(3839), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_DOLLARif] = ACTIONS(1779), - [anon_sym_is] = ACTIONS(3873), - [anon_sym_BANGis] = ACTIONS(3875), - [anon_sym_in] = ACTIONS(3877), - [anon_sym_BANGin] = ACTIONS(3879), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_select] = ACTIONS(1779), - [anon_sym_lock] = ACTIONS(1779), - [anon_sym_rlock] = ACTIONS(1779), - [anon_sym_unsafe] = ACTIONS(1779), - [anon_sym_sql] = ACTIONS(1779), - [sym_int_literal] = ACTIONS(1779), - [sym_float_literal] = ACTIONS(1777), - [sym_rune_literal] = ACTIONS(1777), - [anon_sym_SQUOTE] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(1777), - [anon_sym_c_SQUOTE] = ACTIONS(1777), - [anon_sym_c_DQUOTE] = ACTIONS(1777), - [anon_sym_r_SQUOTE] = ACTIONS(1777), - [anon_sym_r_DQUOTE] = ACTIONS(1777), - [sym_pseudo_compile_time_identifier] = ACTIONS(1779), - [anon_sym_shared] = ACTIONS(1779), - [anon_sym_map_LBRACK] = ACTIONS(1777), - [anon_sym_chan] = ACTIONS(1779), - [anon_sym_thread] = ACTIONS(1779), - [anon_sym_atomic] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_COMMA] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_fn] = ACTIONS(1793), + [anon_sym_PLUS] = ACTIONS(3915), + [anon_sym_DASH] = ACTIONS(3915), + [anon_sym_STAR] = ACTIONS(3917), + [anon_sym_SLASH] = ACTIONS(3919), + [anon_sym_PERCENT] = ACTIONS(3917), + [anon_sym_LT] = ACTIONS(1793), + [anon_sym_GT] = ACTIONS(1793), + [anon_sym_EQ_EQ] = ACTIONS(1791), + [anon_sym_BANG_EQ] = ACTIONS(1791), + [anon_sym_LT_EQ] = ACTIONS(1791), + [anon_sym_GT_EQ] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(3861), + [anon_sym_RBRACK] = ACTIONS(1791), + [anon_sym_struct] = ACTIONS(1793), + [anon_sym_mut] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1791), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_BANG] = ACTIONS(3865), + [anon_sym_go] = ACTIONS(1793), + [anon_sym_spawn] = ACTIONS(1793), + [anon_sym_json_DOTdecode] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_LBRACK2] = ACTIONS(3867), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(3925), + [anon_sym_AMP] = ACTIONS(3919), + [anon_sym_LT_DASH] = ACTIONS(1791), + [anon_sym_LT_LT] = ACTIONS(3917), + [anon_sym_GT_GT] = ACTIONS(3919), + [anon_sym_GT_GT_GT] = ACTIONS(3917), + [anon_sym_AMP_CARET] = ACTIONS(3917), + [anon_sym_AMP_AMP] = ACTIONS(1791), + [anon_sym_PIPE_PIPE] = ACTIONS(1791), + [anon_sym_or] = ACTIONS(1793), + [sym_none] = ACTIONS(1793), + [sym_true] = ACTIONS(1793), + [sym_false] = ACTIONS(1793), + [sym_nil] = ACTIONS(1793), + [anon_sym_QMARK_DOT] = ACTIONS(3869), + [anon_sym_POUND_LBRACK] = ACTIONS(3871), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1793), + [anon_sym_is] = ACTIONS(1793), + [anon_sym_BANGis] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(1793), + [anon_sym_BANGin] = ACTIONS(1791), + [anon_sym_match] = ACTIONS(1793), + [anon_sym_select] = ACTIONS(1793), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1793), + [anon_sym_sql] = ACTIONS(1793), + [sym_int_literal] = ACTIONS(1793), + [sym_float_literal] = ACTIONS(1791), + [sym_rune_literal] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [anon_sym_c_SQUOTE] = ACTIONS(1791), + [anon_sym_c_DQUOTE] = ACTIONS(1791), + [anon_sym_r_SQUOTE] = ACTIONS(1791), + [anon_sym_r_DQUOTE] = ACTIONS(1791), + [sym_pseudo_compile_time_identifier] = ACTIONS(1793), + [anon_sym_shared] = ACTIONS(1793), + [anon_sym_map_LBRACK] = ACTIONS(1791), + [anon_sym_chan] = ACTIONS(1793), + [anon_sym_thread] = ACTIONS(1793), + [anon_sym_atomic] = ACTIONS(1793), }, [1270] = { [sym_line_comment] = STATE(1270), [sym_block_comment] = STATE(1270), - [sym_identifier] = ACTIONS(1889), + [sym_type_parameters] = STATE(4349), + [sym_argument_list] = STATE(1357), + [sym_or_block] = STATE(1358), + [sym_identifier] = ACTIONS(1767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1889), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_PERCENT] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1887), - [anon_sym_BANG_EQ] = ACTIONS(1887), - [anon_sym_LT_EQ] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_COLON] = ACTIONS(1887), - [anon_sym_PLUS_PLUS] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1887), - [anon_sym_QMARK] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1887), - [anon_sym_LBRACK2] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1887), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_LT_DASH] = ACTIONS(1887), - [anon_sym_LT_LT] = ACTIONS(1887), - [anon_sym_GT_GT] = ACTIONS(1889), - [anon_sym_GT_GT_GT] = ACTIONS(1887), - [anon_sym_AMP_CARET] = ACTIONS(1887), - [anon_sym_AMP_AMP] = ACTIONS(1887), - [anon_sym_PIPE_PIPE] = ACTIONS(1887), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(1887), - [anon_sym_POUND_LBRACK] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_else] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1887), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1887), - [sym_rune_literal] = ACTIONS(1887), - [anon_sym_SQUOTE] = ACTIONS(1887), - [anon_sym_DQUOTE] = ACTIONS(1887), - [anon_sym_c_SQUOTE] = ACTIONS(1887), - [anon_sym_c_DQUOTE] = ACTIONS(1887), - [anon_sym_r_SQUOTE] = ACTIONS(1887), - [anon_sym_r_DQUOTE] = ACTIONS(1887), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1887), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1795), + [anon_sym_COMMA] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(3915), + [anon_sym_DASH] = ACTIONS(3915), + [anon_sym_STAR] = ACTIONS(3917), + [anon_sym_SLASH] = ACTIONS(3919), + [anon_sym_PERCENT] = ACTIONS(3917), + [anon_sym_LT] = ACTIONS(3921), + [anon_sym_GT] = ACTIONS(3921), + [anon_sym_EQ_EQ] = ACTIONS(3923), + [anon_sym_BANG_EQ] = ACTIONS(3923), + [anon_sym_LT_EQ] = ACTIONS(3923), + [anon_sym_GT_EQ] = ACTIONS(3923), + [anon_sym_LBRACK] = ACTIONS(3861), + [anon_sym_RBRACK] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1795), + [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_BANG] = ACTIONS(3865), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1795), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_LBRACK2] = ACTIONS(3867), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_CARET] = ACTIONS(3925), + [anon_sym_AMP] = ACTIONS(3919), + [anon_sym_LT_DASH] = ACTIONS(1795), + [anon_sym_LT_LT] = ACTIONS(3917), + [anon_sym_GT_GT] = ACTIONS(3919), + [anon_sym_GT_GT_GT] = ACTIONS(3917), + [anon_sym_AMP_CARET] = ACTIONS(3917), + [anon_sym_AMP_AMP] = ACTIONS(1795), + [anon_sym_PIPE_PIPE] = ACTIONS(1795), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(3869), + [anon_sym_POUND_LBRACK] = ACTIONS(3871), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1795), + [anon_sym_in] = ACTIONS(3929), + [anon_sym_BANGin] = ACTIONS(3931), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1795), + [sym_rune_literal] = ACTIONS(1795), + [anon_sym_SQUOTE] = ACTIONS(1795), + [anon_sym_DQUOTE] = ACTIONS(1795), + [anon_sym_c_SQUOTE] = ACTIONS(1795), + [anon_sym_c_DQUOTE] = ACTIONS(1795), + [anon_sym_r_SQUOTE] = ACTIONS(1795), + [anon_sym_r_DQUOTE] = ACTIONS(1795), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1795), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), }, [1271] = { [sym_line_comment] = STATE(1271), [sym_block_comment] = STATE(1271), - [sym_identifier] = ACTIONS(2775), + [sym_type_parameters] = STATE(4349), + [sym_argument_list] = STATE(1357), + [sym_or_block] = STATE(1358), + [sym_identifier] = ACTIONS(1767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2773), - [anon_sym_DOT] = ACTIONS(2775), - [anon_sym_as] = ACTIONS(2775), - [anon_sym_LBRACE] = ACTIONS(2773), - [anon_sym_COMMA] = ACTIONS(2773), - [anon_sym_RBRACE] = ACTIONS(2773), - [anon_sym_LPAREN] = ACTIONS(2773), - [anon_sym_PIPE] = ACTIONS(2775), - [anon_sym_fn] = ACTIONS(2775), - [anon_sym_PLUS] = ACTIONS(2775), - [anon_sym_DASH] = ACTIONS(2775), - [anon_sym_STAR] = ACTIONS(2773), - [anon_sym_SLASH] = ACTIONS(2775), - [anon_sym_PERCENT] = ACTIONS(2773), - [anon_sym_LT] = ACTIONS(2775), - [anon_sym_GT] = ACTIONS(2775), - [anon_sym_EQ_EQ] = ACTIONS(2773), - [anon_sym_BANG_EQ] = ACTIONS(2773), - [anon_sym_LT_EQ] = ACTIONS(2773), - [anon_sym_GT_EQ] = ACTIONS(2773), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_RBRACK] = ACTIONS(2773), - [anon_sym_struct] = ACTIONS(2775), - [anon_sym_mut] = ACTIONS(2775), - [anon_sym_COLON] = ACTIONS(2773), - [anon_sym_PLUS_PLUS] = ACTIONS(2773), - [anon_sym_DASH_DASH] = ACTIONS(2773), - [anon_sym_QMARK] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_go] = ACTIONS(2775), - [anon_sym_spawn] = ACTIONS(2775), - [anon_sym_json_DOTdecode] = ACTIONS(2773), - [anon_sym_LBRACK2] = ACTIONS(2775), - [anon_sym_TILDE] = ACTIONS(2773), - [anon_sym_CARET] = ACTIONS(2773), - [anon_sym_AMP] = ACTIONS(2775), - [anon_sym_LT_DASH] = ACTIONS(2773), - [anon_sym_LT_LT] = ACTIONS(2773), - [anon_sym_GT_GT] = ACTIONS(2775), - [anon_sym_GT_GT_GT] = ACTIONS(2773), - [anon_sym_AMP_CARET] = ACTIONS(2773), - [anon_sym_AMP_AMP] = ACTIONS(2773), - [anon_sym_PIPE_PIPE] = ACTIONS(2773), - [anon_sym_or] = ACTIONS(2775), - [sym_none] = ACTIONS(2775), - [sym_true] = ACTIONS(2775), - [sym_false] = ACTIONS(2775), - [sym_nil] = ACTIONS(2775), - [anon_sym_QMARK_DOT] = ACTIONS(2773), - [anon_sym_POUND_LBRACK] = ACTIONS(2773), - [anon_sym_if] = ACTIONS(2775), - [anon_sym_DOLLARif] = ACTIONS(2775), - [anon_sym_is] = ACTIONS(2775), - [anon_sym_BANGis] = ACTIONS(2773), - [anon_sym_in] = ACTIONS(2775), - [anon_sym_BANGin] = ACTIONS(2773), - [anon_sym_match] = ACTIONS(2775), - [anon_sym_select] = ACTIONS(2775), - [anon_sym_lock] = ACTIONS(2775), - [anon_sym_rlock] = ACTIONS(2775), - [anon_sym_unsafe] = ACTIONS(2775), - [anon_sym_sql] = ACTIONS(2775), - [sym_int_literal] = ACTIONS(2775), - [sym_float_literal] = ACTIONS(2773), - [sym_rune_literal] = ACTIONS(2773), - [anon_sym_SQUOTE] = ACTIONS(2773), - [anon_sym_DQUOTE] = ACTIONS(2773), - [anon_sym_c_SQUOTE] = ACTIONS(2773), - [anon_sym_c_DQUOTE] = ACTIONS(2773), - [anon_sym_r_SQUOTE] = ACTIONS(2773), - [anon_sym_r_DQUOTE] = ACTIONS(2773), - [sym_pseudo_compile_time_identifier] = ACTIONS(2775), - [anon_sym_shared] = ACTIONS(2775), - [anon_sym_map_LBRACK] = ACTIONS(2773), - [anon_sym_chan] = ACTIONS(2775), - [anon_sym_thread] = ACTIONS(2775), - [anon_sym_atomic] = ACTIONS(2775), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1795), + [anon_sym_COMMA] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(3915), + [anon_sym_DASH] = ACTIONS(3915), + [anon_sym_STAR] = ACTIONS(3917), + [anon_sym_SLASH] = ACTIONS(3919), + [anon_sym_PERCENT] = ACTIONS(3917), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_EQ_EQ] = ACTIONS(1795), + [anon_sym_BANG_EQ] = ACTIONS(1795), + [anon_sym_LT_EQ] = ACTIONS(1795), + [anon_sym_GT_EQ] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(3861), + [anon_sym_RBRACK] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1795), + [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_BANG] = ACTIONS(3865), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1795), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_LBRACK2] = ACTIONS(3867), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_CARET] = ACTIONS(3925), + [anon_sym_AMP] = ACTIONS(3919), + [anon_sym_LT_DASH] = ACTIONS(1795), + [anon_sym_LT_LT] = ACTIONS(3917), + [anon_sym_GT_GT] = ACTIONS(3919), + [anon_sym_GT_GT_GT] = ACTIONS(3917), + [anon_sym_AMP_CARET] = ACTIONS(3917), + [anon_sym_AMP_AMP] = ACTIONS(1795), + [anon_sym_PIPE_PIPE] = ACTIONS(1795), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(3869), + [anon_sym_POUND_LBRACK] = ACTIONS(3871), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1795), + [anon_sym_in] = ACTIONS(1767), + [anon_sym_BANGin] = ACTIONS(1795), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1795), + [sym_rune_literal] = ACTIONS(1795), + [anon_sym_SQUOTE] = ACTIONS(1795), + [anon_sym_DQUOTE] = ACTIONS(1795), + [anon_sym_c_SQUOTE] = ACTIONS(1795), + [anon_sym_c_DQUOTE] = ACTIONS(1795), + [anon_sym_r_SQUOTE] = ACTIONS(1795), + [anon_sym_r_DQUOTE] = ACTIONS(1795), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1795), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), }, [1272] = { [sym_line_comment] = STATE(1272), [sym_block_comment] = STATE(1272), - [sym_identifier] = ACTIONS(2763), + [sym_type_parameters] = STATE(4349), + [sym_argument_list] = STATE(1357), + [sym_or_block] = STATE(1358), + [sym_identifier] = ACTIONS(1767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2761), - [anon_sym_DOT] = ACTIONS(2763), - [anon_sym_as] = ACTIONS(2763), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_COMMA] = ACTIONS(2761), - [anon_sym_RBRACE] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2761), - [anon_sym_PIPE] = ACTIONS(2763), - [anon_sym_fn] = ACTIONS(2763), - [anon_sym_PLUS] = ACTIONS(2763), - [anon_sym_DASH] = ACTIONS(2763), - [anon_sym_STAR] = ACTIONS(2761), - [anon_sym_SLASH] = ACTIONS(2763), - [anon_sym_PERCENT] = ACTIONS(2761), - [anon_sym_LT] = ACTIONS(2763), - [anon_sym_GT] = ACTIONS(2763), - [anon_sym_EQ_EQ] = ACTIONS(2761), - [anon_sym_BANG_EQ] = ACTIONS(2761), - [anon_sym_LT_EQ] = ACTIONS(2761), - [anon_sym_GT_EQ] = ACTIONS(2761), - [anon_sym_LBRACK] = ACTIONS(2761), - [anon_sym_RBRACK] = ACTIONS(2761), - [anon_sym_struct] = ACTIONS(2763), - [anon_sym_mut] = ACTIONS(2763), - [anon_sym_COLON] = ACTIONS(2761), - [anon_sym_PLUS_PLUS] = ACTIONS(2761), - [anon_sym_DASH_DASH] = ACTIONS(2761), - [anon_sym_QMARK] = ACTIONS(2763), - [anon_sym_BANG] = ACTIONS(2763), - [anon_sym_go] = ACTIONS(2763), - [anon_sym_spawn] = ACTIONS(2763), - [anon_sym_json_DOTdecode] = ACTIONS(2761), - [anon_sym_LBRACK2] = ACTIONS(2763), - [anon_sym_TILDE] = ACTIONS(2761), - [anon_sym_CARET] = ACTIONS(2761), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_LT_DASH] = ACTIONS(2761), - [anon_sym_LT_LT] = ACTIONS(2761), - [anon_sym_GT_GT] = ACTIONS(2763), - [anon_sym_GT_GT_GT] = ACTIONS(2761), - [anon_sym_AMP_CARET] = ACTIONS(2761), - [anon_sym_AMP_AMP] = ACTIONS(2761), - [anon_sym_PIPE_PIPE] = ACTIONS(2761), - [anon_sym_or] = ACTIONS(2763), - [sym_none] = ACTIONS(2763), - [sym_true] = ACTIONS(2763), - [sym_false] = ACTIONS(2763), - [sym_nil] = ACTIONS(2763), - [anon_sym_QMARK_DOT] = ACTIONS(2761), - [anon_sym_POUND_LBRACK] = ACTIONS(2761), - [anon_sym_if] = ACTIONS(2763), - [anon_sym_DOLLARif] = ACTIONS(2763), - [anon_sym_is] = ACTIONS(2763), - [anon_sym_BANGis] = ACTIONS(2761), - [anon_sym_in] = ACTIONS(2763), - [anon_sym_BANGin] = ACTIONS(2761), - [anon_sym_match] = ACTIONS(2763), - [anon_sym_select] = ACTIONS(2763), - [anon_sym_lock] = ACTIONS(2763), - [anon_sym_rlock] = ACTIONS(2763), - [anon_sym_unsafe] = ACTIONS(2763), - [anon_sym_sql] = ACTIONS(2763), - [sym_int_literal] = ACTIONS(2763), - [sym_float_literal] = ACTIONS(2761), - [sym_rune_literal] = ACTIONS(2761), - [anon_sym_SQUOTE] = ACTIONS(2761), - [anon_sym_DQUOTE] = ACTIONS(2761), - [anon_sym_c_SQUOTE] = ACTIONS(2761), - [anon_sym_c_DQUOTE] = ACTIONS(2761), - [anon_sym_r_SQUOTE] = ACTIONS(2761), - [anon_sym_r_DQUOTE] = ACTIONS(2761), - [sym_pseudo_compile_time_identifier] = ACTIONS(2763), - [anon_sym_shared] = ACTIONS(2763), - [anon_sym_map_LBRACK] = ACTIONS(2761), - [anon_sym_chan] = ACTIONS(2763), - [anon_sym_thread] = ACTIONS(2763), - [anon_sym_atomic] = ACTIONS(2763), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1795), + [anon_sym_COMMA] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(3917), + [anon_sym_SLASH] = ACTIONS(3919), + [anon_sym_PERCENT] = ACTIONS(3917), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_EQ_EQ] = ACTIONS(1795), + [anon_sym_BANG_EQ] = ACTIONS(1795), + [anon_sym_LT_EQ] = ACTIONS(1795), + [anon_sym_GT_EQ] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(3861), + [anon_sym_RBRACK] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1795), + [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_BANG] = ACTIONS(3865), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1795), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK2] = ACTIONS(3867), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_CARET] = ACTIONS(1795), + [anon_sym_AMP] = ACTIONS(3919), + [anon_sym_LT_DASH] = ACTIONS(1795), + [anon_sym_LT_LT] = ACTIONS(3917), + [anon_sym_GT_GT] = ACTIONS(3919), + [anon_sym_GT_GT_GT] = ACTIONS(3917), + [anon_sym_AMP_CARET] = ACTIONS(3917), + [anon_sym_AMP_AMP] = ACTIONS(1795), + [anon_sym_PIPE_PIPE] = ACTIONS(1795), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(3869), + [anon_sym_POUND_LBRACK] = ACTIONS(3871), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1795), + [anon_sym_in] = ACTIONS(1767), + [anon_sym_BANGin] = ACTIONS(1795), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1795), + [sym_rune_literal] = ACTIONS(1795), + [anon_sym_SQUOTE] = ACTIONS(1795), + [anon_sym_DQUOTE] = ACTIONS(1795), + [anon_sym_c_SQUOTE] = ACTIONS(1795), + [anon_sym_c_DQUOTE] = ACTIONS(1795), + [anon_sym_r_SQUOTE] = ACTIONS(1795), + [anon_sym_r_DQUOTE] = ACTIONS(1795), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1795), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), }, [1273] = { [sym_line_comment] = STATE(1273), [sym_block_comment] = STATE(1273), - [sym_type_parameters] = STATE(4063), - [sym_argument_list] = STATE(1354), - [sym_or_block] = STATE(1355), - [sym_identifier] = ACTIONS(1791), + [sym_identifier] = ACTIONS(2731), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3825), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_COMMA] = ACTIONS(1789), - [anon_sym_LPAREN] = ACTIONS(3827), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_SLASH] = ACTIONS(3887), - [anon_sym_PERCENT] = ACTIONS(3885), - [anon_sym_LT] = ACTIONS(3891), - [anon_sym_GT] = ACTIONS(3891), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_RBRACK] = ACTIONS(1789), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_QMARK] = ACTIONS(3831), - [anon_sym_BANG] = ACTIONS(3833), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1789), - [anon_sym_LBRACK2] = ACTIONS(3835), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_CARET] = ACTIONS(3889), - [anon_sym_AMP] = ACTIONS(3887), - [anon_sym_LT_DASH] = ACTIONS(1789), - [anon_sym_LT_LT] = ACTIONS(3885), - [anon_sym_GT_GT] = ACTIONS(3887), - [anon_sym_GT_GT_GT] = ACTIONS(3885), - [anon_sym_AMP_CARET] = ACTIONS(3885), - [anon_sym_AMP_AMP] = ACTIONS(3899), - [anon_sym_PIPE_PIPE] = ACTIONS(1789), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(3837), - [anon_sym_POUND_LBRACK] = ACTIONS(3839), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1789), - [anon_sym_in] = ACTIONS(3895), - [anon_sym_BANGin] = ACTIONS(3897), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1789), - [sym_rune_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1789), - [anon_sym_DQUOTE] = ACTIONS(1789), - [anon_sym_c_SQUOTE] = ACTIONS(1789), - [anon_sym_c_DQUOTE] = ACTIONS(1789), - [anon_sym_r_SQUOTE] = ACTIONS(1789), - [anon_sym_r_DQUOTE] = ACTIONS(1789), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1789), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), + [anon_sym_SEMI] = ACTIONS(2729), + [anon_sym_DOT] = ACTIONS(2731), + [anon_sym_as] = ACTIONS(2731), + [anon_sym_LBRACE] = ACTIONS(2729), + [anon_sym_COMMA] = ACTIONS(2729), + [anon_sym_RBRACE] = ACTIONS(2729), + [anon_sym_LPAREN] = ACTIONS(2729), + [anon_sym_fn] = ACTIONS(2731), + [anon_sym_PLUS] = ACTIONS(2731), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2729), + [anon_sym_SLASH] = ACTIONS(2731), + [anon_sym_PERCENT] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(2731), + [anon_sym_GT] = ACTIONS(2731), + [anon_sym_EQ_EQ] = ACTIONS(2729), + [anon_sym_BANG_EQ] = ACTIONS(2729), + [anon_sym_LT_EQ] = ACTIONS(2729), + [anon_sym_GT_EQ] = ACTIONS(2729), + [anon_sym_LBRACK] = ACTIONS(2729), + [anon_sym_RBRACK] = ACTIONS(2729), + [anon_sym_struct] = ACTIONS(2731), + [anon_sym_mut] = ACTIONS(2731), + [anon_sym_COLON] = ACTIONS(2729), + [anon_sym_PLUS_PLUS] = ACTIONS(2729), + [anon_sym_DASH_DASH] = ACTIONS(2729), + [anon_sym_QMARK] = ACTIONS(2731), + [anon_sym_BANG] = ACTIONS(2731), + [anon_sym_go] = ACTIONS(2731), + [anon_sym_spawn] = ACTIONS(2731), + [anon_sym_json_DOTdecode] = ACTIONS(2729), + [anon_sym_PIPE] = ACTIONS(2731), + [anon_sym_LBRACK2] = ACTIONS(2731), + [anon_sym_TILDE] = ACTIONS(2729), + [anon_sym_CARET] = ACTIONS(2729), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_LT_DASH] = ACTIONS(2729), + [anon_sym_LT_LT] = ACTIONS(2729), + [anon_sym_GT_GT] = ACTIONS(2731), + [anon_sym_GT_GT_GT] = ACTIONS(2729), + [anon_sym_AMP_CARET] = ACTIONS(2729), + [anon_sym_AMP_AMP] = ACTIONS(2729), + [anon_sym_PIPE_PIPE] = ACTIONS(2729), + [anon_sym_or] = ACTIONS(2731), + [sym_none] = ACTIONS(2731), + [sym_true] = ACTIONS(2731), + [sym_false] = ACTIONS(2731), + [sym_nil] = ACTIONS(2731), + [anon_sym_QMARK_DOT] = ACTIONS(2729), + [anon_sym_POUND_LBRACK] = ACTIONS(2729), + [anon_sym_if] = ACTIONS(2731), + [anon_sym_DOLLARif] = ACTIONS(2731), + [anon_sym_is] = ACTIONS(2731), + [anon_sym_BANGis] = ACTIONS(2729), + [anon_sym_in] = ACTIONS(2731), + [anon_sym_BANGin] = ACTIONS(2729), + [anon_sym_match] = ACTIONS(2731), + [anon_sym_select] = ACTIONS(2731), + [anon_sym_lock] = ACTIONS(2731), + [anon_sym_rlock] = ACTIONS(2731), + [anon_sym_unsafe] = ACTIONS(2731), + [anon_sym_sql] = ACTIONS(2731), + [sym_int_literal] = ACTIONS(2731), + [sym_float_literal] = ACTIONS(2729), + [sym_rune_literal] = ACTIONS(2729), + [anon_sym_SQUOTE] = ACTIONS(2729), + [anon_sym_DQUOTE] = ACTIONS(2729), + [anon_sym_c_SQUOTE] = ACTIONS(2729), + [anon_sym_c_DQUOTE] = ACTIONS(2729), + [anon_sym_r_SQUOTE] = ACTIONS(2729), + [anon_sym_r_DQUOTE] = ACTIONS(2729), + [sym_pseudo_compile_time_identifier] = ACTIONS(2731), + [anon_sym_shared] = ACTIONS(2731), + [anon_sym_map_LBRACK] = ACTIONS(2729), + [anon_sym_chan] = ACTIONS(2731), + [anon_sym_thread] = ACTIONS(2731), + [anon_sym_atomic] = ACTIONS(2731), }, [1274] = { [sym_line_comment] = STATE(1274), [sym_block_comment] = STATE(1274), - [sym_identifier] = ACTIONS(2079), + [sym_identifier] = ACTIONS(1887), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2079), - [anon_sym_as] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2079), - [anon_sym_fn] = ACTIONS(2079), - [anon_sym_PLUS] = ACTIONS(2079), - [anon_sym_DASH] = ACTIONS(2079), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2079), - [anon_sym_PERCENT] = ACTIONS(2077), - [anon_sym_LT] = ACTIONS(2079), - [anon_sym_GT] = ACTIONS(2079), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_RBRACK] = ACTIONS(2077), - [anon_sym_struct] = ACTIONS(2079), - [anon_sym_mut] = ACTIONS(2079), - [anon_sym_COLON] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [anon_sym_QMARK] = ACTIONS(2079), - [anon_sym_BANG] = ACTIONS(2079), - [anon_sym_go] = ACTIONS(2079), - [anon_sym_spawn] = ACTIONS(2079), - [anon_sym_json_DOTdecode] = ACTIONS(2077), - [anon_sym_LBRACK2] = ACTIONS(2079), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_CARET] = ACTIONS(2077), - [anon_sym_AMP] = ACTIONS(2079), - [anon_sym_LT_DASH] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2079), - [anon_sym_GT_GT_GT] = ACTIONS(2077), - [anon_sym_AMP_CARET] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_or] = ACTIONS(2079), - [sym_none] = ACTIONS(2079), - [sym_true] = ACTIONS(2079), - [sym_false] = ACTIONS(2079), - [sym_nil] = ACTIONS(2079), - [anon_sym_QMARK_DOT] = ACTIONS(2077), - [anon_sym_POUND_LBRACK] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_DOLLARif] = ACTIONS(2079), - [anon_sym_DOLLARelse] = ACTIONS(3901), - [anon_sym_is] = ACTIONS(2079), - [anon_sym_BANGis] = ACTIONS(2077), - [anon_sym_in] = ACTIONS(2079), - [anon_sym_BANGin] = ACTIONS(2077), - [anon_sym_match] = ACTIONS(2079), - [anon_sym_select] = ACTIONS(2079), - [anon_sym_lock] = ACTIONS(2079), - [anon_sym_rlock] = ACTIONS(2079), - [anon_sym_unsafe] = ACTIONS(2079), - [anon_sym_sql] = ACTIONS(2079), - [sym_int_literal] = ACTIONS(2079), - [sym_float_literal] = ACTIONS(2077), - [sym_rune_literal] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(2077), - [anon_sym_DQUOTE] = ACTIONS(2077), - [anon_sym_c_SQUOTE] = ACTIONS(2077), - [anon_sym_c_DQUOTE] = ACTIONS(2077), - [anon_sym_r_SQUOTE] = ACTIONS(2077), - [anon_sym_r_DQUOTE] = ACTIONS(2077), - [sym_pseudo_compile_time_identifier] = ACTIONS(2079), - [anon_sym_shared] = ACTIONS(2079), - [anon_sym_map_LBRACK] = ACTIONS(2077), - [anon_sym_chan] = ACTIONS(2079), - [anon_sym_thread] = ACTIONS(2079), - [anon_sym_atomic] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(1885), + [anon_sym_DOT] = ACTIONS(1887), + [anon_sym_as] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1885), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_fn] = ACTIONS(1887), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_SLASH] = ACTIONS(1887), + [anon_sym_PERCENT] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(1887), + [anon_sym_GT] = ACTIONS(1887), + [anon_sym_EQ_EQ] = ACTIONS(1885), + [anon_sym_BANG_EQ] = ACTIONS(1885), + [anon_sym_LT_EQ] = ACTIONS(1885), + [anon_sym_GT_EQ] = ACTIONS(1885), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1885), + [anon_sym_struct] = ACTIONS(1887), + [anon_sym_mut] = ACTIONS(1887), + [anon_sym_COLON] = ACTIONS(1885), + [anon_sym_PLUS_PLUS] = ACTIONS(1885), + [anon_sym_DASH_DASH] = ACTIONS(1885), + [anon_sym_QMARK] = ACTIONS(1887), + [anon_sym_BANG] = ACTIONS(1887), + [anon_sym_go] = ACTIONS(1887), + [anon_sym_spawn] = ACTIONS(1887), + [anon_sym_json_DOTdecode] = ACTIONS(1885), + [anon_sym_PIPE] = ACTIONS(1887), + [anon_sym_LBRACK2] = ACTIONS(1887), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(1885), + [anon_sym_AMP] = ACTIONS(1887), + [anon_sym_LT_DASH] = ACTIONS(1885), + [anon_sym_LT_LT] = ACTIONS(1885), + [anon_sym_GT_GT] = ACTIONS(1887), + [anon_sym_GT_GT_GT] = ACTIONS(1885), + [anon_sym_AMP_CARET] = ACTIONS(1885), + [anon_sym_AMP_AMP] = ACTIONS(1885), + [anon_sym_PIPE_PIPE] = ACTIONS(1885), + [anon_sym_or] = ACTIONS(1887), + [sym_none] = ACTIONS(1887), + [sym_true] = ACTIONS(1887), + [sym_false] = ACTIONS(1887), + [sym_nil] = ACTIONS(1887), + [anon_sym_QMARK_DOT] = ACTIONS(1885), + [anon_sym_POUND_LBRACK] = ACTIONS(1885), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_DOLLARif] = ACTIONS(1887), + [anon_sym_is] = ACTIONS(1887), + [anon_sym_BANGis] = ACTIONS(1885), + [anon_sym_in] = ACTIONS(1887), + [anon_sym_BANGin] = ACTIONS(1885), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_select] = ACTIONS(1887), + [anon_sym_lock] = ACTIONS(1887), + [anon_sym_rlock] = ACTIONS(1887), + [anon_sym_unsafe] = ACTIONS(1887), + [anon_sym_sql] = ACTIONS(1887), + [sym_int_literal] = ACTIONS(1887), + [sym_float_literal] = ACTIONS(1885), + [sym_rune_literal] = ACTIONS(1885), + [anon_sym_SQUOTE] = ACTIONS(1885), + [anon_sym_DQUOTE] = ACTIONS(1885), + [anon_sym_c_SQUOTE] = ACTIONS(1885), + [anon_sym_c_DQUOTE] = ACTIONS(1885), + [anon_sym_r_SQUOTE] = ACTIONS(1885), + [anon_sym_r_DQUOTE] = ACTIONS(1885), + [sym_pseudo_compile_time_identifier] = ACTIONS(1887), + [anon_sym_shared] = ACTIONS(1887), + [anon_sym_map_LBRACK] = ACTIONS(1885), + [anon_sym_chan] = ACTIONS(1887), + [anon_sym_thread] = ACTIONS(1887), + [anon_sym_atomic] = ACTIONS(1887), }, [1275] = { [sym_line_comment] = STATE(1275), [sym_block_comment] = STATE(1275), - [sym_type_parameters] = STATE(4063), - [sym_argument_list] = STATE(1354), - [sym_or_block] = STATE(1355), - [sym_identifier] = ACTIONS(1787), + [sym_identifier] = ACTIONS(2727), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3825), - [anon_sym_as] = ACTIONS(1787), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(3827), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_fn] = ACTIONS(1787), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_SLASH] = ACTIONS(3887), - [anon_sym_PERCENT] = ACTIONS(3885), - [anon_sym_LT] = ACTIONS(1787), - [anon_sym_GT] = ACTIONS(1787), - [anon_sym_EQ_EQ] = ACTIONS(1785), - [anon_sym_BANG_EQ] = ACTIONS(1785), - [anon_sym_LT_EQ] = ACTIONS(1785), - [anon_sym_GT_EQ] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_RBRACK] = ACTIONS(1785), - [anon_sym_struct] = ACTIONS(1787), - [anon_sym_mut] = ACTIONS(1787), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(3831), - [anon_sym_BANG] = ACTIONS(3833), - [anon_sym_go] = ACTIONS(1787), - [anon_sym_spawn] = ACTIONS(1787), - [anon_sym_json_DOTdecode] = ACTIONS(1785), - [anon_sym_LBRACK2] = ACTIONS(3835), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(3889), - [anon_sym_AMP] = ACTIONS(3887), - [anon_sym_LT_DASH] = ACTIONS(1785), - [anon_sym_LT_LT] = ACTIONS(3885), - [anon_sym_GT_GT] = ACTIONS(3887), - [anon_sym_GT_GT_GT] = ACTIONS(3885), - [anon_sym_AMP_CARET] = ACTIONS(3885), - [anon_sym_AMP_AMP] = ACTIONS(1785), - [anon_sym_PIPE_PIPE] = ACTIONS(1785), - [anon_sym_or] = ACTIONS(1787), - [sym_none] = ACTIONS(1787), - [sym_true] = ACTIONS(1787), - [sym_false] = ACTIONS(1787), - [sym_nil] = ACTIONS(1787), - [anon_sym_QMARK_DOT] = ACTIONS(3837), - [anon_sym_POUND_LBRACK] = ACTIONS(3839), - [anon_sym_if] = ACTIONS(1787), - [anon_sym_DOLLARif] = ACTIONS(1787), - [anon_sym_is] = ACTIONS(1787), - [anon_sym_BANGis] = ACTIONS(1785), - [anon_sym_in] = ACTIONS(1787), - [anon_sym_BANGin] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1787), - [anon_sym_select] = ACTIONS(1787), - [anon_sym_lock] = ACTIONS(1787), - [anon_sym_rlock] = ACTIONS(1787), - [anon_sym_unsafe] = ACTIONS(1787), - [anon_sym_sql] = ACTIONS(1787), - [sym_int_literal] = ACTIONS(1787), - [sym_float_literal] = ACTIONS(1785), - [sym_rune_literal] = ACTIONS(1785), - [anon_sym_SQUOTE] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [anon_sym_c_SQUOTE] = ACTIONS(1785), - [anon_sym_c_DQUOTE] = ACTIONS(1785), - [anon_sym_r_SQUOTE] = ACTIONS(1785), - [anon_sym_r_DQUOTE] = ACTIONS(1785), - [sym_pseudo_compile_time_identifier] = ACTIONS(1787), - [anon_sym_shared] = ACTIONS(1787), - [anon_sym_map_LBRACK] = ACTIONS(1785), - [anon_sym_chan] = ACTIONS(1787), - [anon_sym_thread] = ACTIONS(1787), - [anon_sym_atomic] = ACTIONS(1787), + [anon_sym_SEMI] = ACTIONS(2725), + [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_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_PIPE] = ACTIONS(2727), + [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), + [anon_sym_SQUOTE] = ACTIONS(2725), + [anon_sym_DQUOTE] = ACTIONS(2725), + [anon_sym_c_SQUOTE] = ACTIONS(2725), + [anon_sym_c_DQUOTE] = ACTIONS(2725), + [anon_sym_r_SQUOTE] = ACTIONS(2725), + [anon_sym_r_DQUOTE] = 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), }, [1276] = { [sym_line_comment] = STATE(1276), [sym_block_comment] = STATE(1276), - [sym_identifier] = ACTIONS(2041), + [sym_identifier] = ACTIONS(2715), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2041), - [anon_sym_as] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(2039), - [anon_sym_COMMA] = ACTIONS(2039), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_PIPE] = ACTIONS(2041), - [anon_sym_fn] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_SLASH] = ACTIONS(2041), - [anon_sym_PERCENT] = ACTIONS(2039), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_GT] = ACTIONS(2041), - [anon_sym_EQ_EQ] = ACTIONS(2039), - [anon_sym_BANG_EQ] = ACTIONS(2039), - [anon_sym_LT_EQ] = ACTIONS(2039), - [anon_sym_GT_EQ] = ACTIONS(2039), - [anon_sym_LBRACK] = ACTIONS(2039), - [anon_sym_RBRACK] = ACTIONS(2039), - [anon_sym_struct] = ACTIONS(2041), - [anon_sym_mut] = ACTIONS(2041), - [anon_sym_COLON] = ACTIONS(2039), - [anon_sym_PLUS_PLUS] = ACTIONS(2039), - [anon_sym_DASH_DASH] = ACTIONS(2039), - [anon_sym_QMARK] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(2041), - [anon_sym_go] = ACTIONS(2041), - [anon_sym_spawn] = ACTIONS(2041), - [anon_sym_json_DOTdecode] = ACTIONS(2039), - [anon_sym_LBRACK2] = ACTIONS(2041), - [anon_sym_TILDE] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2039), - [anon_sym_AMP] = ACTIONS(2041), - [anon_sym_LT_DASH] = ACTIONS(2039), - [anon_sym_LT_LT] = ACTIONS(2039), - [anon_sym_GT_GT] = ACTIONS(2041), - [anon_sym_GT_GT_GT] = ACTIONS(2039), - [anon_sym_AMP_CARET] = ACTIONS(2039), - [anon_sym_AMP_AMP] = ACTIONS(2039), - [anon_sym_PIPE_PIPE] = ACTIONS(2039), - [anon_sym_or] = ACTIONS(2041), - [sym_none] = ACTIONS(2041), - [sym_true] = ACTIONS(2041), - [sym_false] = ACTIONS(2041), - [sym_nil] = ACTIONS(2041), - [anon_sym_QMARK_DOT] = ACTIONS(2039), - [anon_sym_POUND_LBRACK] = ACTIONS(2039), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_DOLLARif] = ACTIONS(2041), - [anon_sym_DOLLARelse] = ACTIONS(3903), - [anon_sym_is] = ACTIONS(2041), - [anon_sym_BANGis] = ACTIONS(2039), - [anon_sym_in] = ACTIONS(2041), - [anon_sym_BANGin] = ACTIONS(2039), - [anon_sym_match] = ACTIONS(2041), - [anon_sym_select] = ACTIONS(2041), - [anon_sym_lock] = ACTIONS(2041), - [anon_sym_rlock] = ACTIONS(2041), - [anon_sym_unsafe] = ACTIONS(2041), - [anon_sym_sql] = ACTIONS(2041), - [sym_int_literal] = ACTIONS(2041), - [sym_float_literal] = ACTIONS(2039), - [sym_rune_literal] = ACTIONS(2039), - [anon_sym_SQUOTE] = ACTIONS(2039), - [anon_sym_DQUOTE] = ACTIONS(2039), - [anon_sym_c_SQUOTE] = ACTIONS(2039), - [anon_sym_c_DQUOTE] = ACTIONS(2039), - [anon_sym_r_SQUOTE] = ACTIONS(2039), - [anon_sym_r_DQUOTE] = ACTIONS(2039), - [sym_pseudo_compile_time_identifier] = ACTIONS(2041), - [anon_sym_shared] = ACTIONS(2041), - [anon_sym_map_LBRACK] = ACTIONS(2039), - [anon_sym_chan] = ACTIONS(2041), - [anon_sym_thread] = ACTIONS(2041), - [anon_sym_atomic] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2713), + [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_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_PIPE] = ACTIONS(2715), + [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), + [anon_sym_SQUOTE] = ACTIONS(2713), + [anon_sym_DQUOTE] = ACTIONS(2713), + [anon_sym_c_SQUOTE] = ACTIONS(2713), + [anon_sym_c_DQUOTE] = ACTIONS(2713), + [anon_sym_r_SQUOTE] = ACTIONS(2713), + [anon_sym_r_DQUOTE] = 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), }, [1277] = { [sym_line_comment] = STATE(1277), [sym_block_comment] = STATE(1277), - [sym_type_parameters] = STATE(1308), - [sym_identifier] = ACTIONS(1899), + [sym_identifier] = ACTIONS(1853), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1899), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_COMMA] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_fn] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1897), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1897), - [anon_sym_BANG_EQ] = ACTIONS(1897), - [anon_sym_LT_EQ] = ACTIONS(1897), - [anon_sym_GT_EQ] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_RBRACK] = ACTIONS(1897), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_mut] = ACTIONS(1899), - [anon_sym_COLON] = ACTIONS(1897), - [anon_sym_PLUS_PLUS] = ACTIONS(1897), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [anon_sym_QMARK] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_go] = ACTIONS(1899), - [anon_sym_spawn] = ACTIONS(1899), - [anon_sym_json_DOTdecode] = ACTIONS(1897), - [anon_sym_LBRACK2] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_LT_DASH] = ACTIONS(1897), - [anon_sym_LT_LT] = ACTIONS(1897), - [anon_sym_GT_GT] = ACTIONS(1899), - [anon_sym_GT_GT_GT] = ACTIONS(1897), - [anon_sym_AMP_CARET] = ACTIONS(1897), - [anon_sym_AMP_AMP] = ACTIONS(1897), - [anon_sym_PIPE_PIPE] = ACTIONS(1897), - [anon_sym_or] = ACTIONS(1899), - [sym_none] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_nil] = ACTIONS(1899), - [anon_sym_QMARK_DOT] = ACTIONS(1897), - [anon_sym_POUND_LBRACK] = ACTIONS(1897), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_DOLLARif] = ACTIONS(1899), - [anon_sym_is] = ACTIONS(1899), - [anon_sym_BANGis] = ACTIONS(1897), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_BANGin] = ACTIONS(1897), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_select] = ACTIONS(1899), - [anon_sym_lock] = ACTIONS(1899), - [anon_sym_rlock] = ACTIONS(1899), - [anon_sym_unsafe] = ACTIONS(1899), - [anon_sym_sql] = ACTIONS(1899), - [sym_int_literal] = ACTIONS(1899), - [sym_float_literal] = ACTIONS(1897), - [sym_rune_literal] = ACTIONS(1897), - [anon_sym_SQUOTE] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(1897), - [anon_sym_c_SQUOTE] = ACTIONS(1897), - [anon_sym_c_DQUOTE] = ACTIONS(1897), - [anon_sym_r_SQUOTE] = ACTIONS(1897), - [anon_sym_r_DQUOTE] = ACTIONS(1897), - [sym_pseudo_compile_time_identifier] = ACTIONS(1899), - [anon_sym_shared] = ACTIONS(1899), - [anon_sym_map_LBRACK] = ACTIONS(1897), - [anon_sym_chan] = ACTIONS(1899), - [anon_sym_thread] = ACTIONS(1899), - [anon_sym_atomic] = ACTIONS(1899), + [anon_sym_DOT] = ACTIONS(1853), + [anon_sym_as] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_COMMA] = ACTIONS(1851), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1851), + [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(1851), + [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(1853), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_go] = ACTIONS(1853), + [anon_sym_spawn] = ACTIONS(1853), + [anon_sym_json_DOTdecode] = ACTIONS(1851), + [anon_sym_PIPE] = ACTIONS(1853), + [anon_sym_LBRACK2] = ACTIONS(1853), + [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(1851), + [anon_sym_POUND_LBRACK] = ACTIONS(1851), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_DOLLARif] = ACTIONS(1853), + [anon_sym_DOLLARelse] = ACTIONS(3933), + [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), + [anon_sym_SQUOTE] = ACTIONS(1851), + [anon_sym_DQUOTE] = ACTIONS(1851), + [anon_sym_c_SQUOTE] = ACTIONS(1851), + [anon_sym_c_DQUOTE] = ACTIONS(1851), + [anon_sym_r_SQUOTE] = ACTIONS(1851), + [anon_sym_r_DQUOTE] = 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), }, [1278] = { [sym_line_comment] = STATE(1278), [sym_block_comment] = STATE(1278), - [sym_type_parameters] = STATE(4063), - [sym_argument_list] = STATE(1354), - [sym_or_block] = STATE(1355), - [sym_identifier] = ACTIONS(1791), + [sym_type_parameters] = STATE(4349), + [sym_argument_list] = STATE(1357), + [sym_or_block] = STATE(1358), + [sym_identifier] = ACTIONS(1793), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3825), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_RBRACE] = ACTIONS(1789), - [anon_sym_LPAREN] = ACTIONS(3827), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1791), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_STAR] = ACTIONS(3851), - [anon_sym_SLASH] = ACTIONS(3853), - [anon_sym_PERCENT] = ACTIONS(3851), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1789), - [anon_sym_BANG_EQ] = ACTIONS(1789), - [anon_sym_LT_EQ] = ACTIONS(1789), - [anon_sym_GT_EQ] = ACTIONS(1789), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_COLON] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_QMARK] = ACTIONS(3831), - [anon_sym_BANG] = ACTIONS(3833), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1789), - [anon_sym_LBRACK2] = ACTIONS(3835), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_CARET] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(3853), - [anon_sym_LT_DASH] = ACTIONS(1789), - [anon_sym_LT_LT] = ACTIONS(3851), - [anon_sym_GT_GT] = ACTIONS(3853), - [anon_sym_GT_GT_GT] = ACTIONS(3851), - [anon_sym_AMP_CARET] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(1789), - [anon_sym_PIPE_PIPE] = ACTIONS(1789), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(3837), - [anon_sym_POUND_LBRACK] = ACTIONS(3839), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1789), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_BANGin] = ACTIONS(1789), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1789), - [sym_rune_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1789), - [anon_sym_DQUOTE] = ACTIONS(1789), - [anon_sym_c_SQUOTE] = ACTIONS(1789), - [anon_sym_c_DQUOTE] = ACTIONS(1789), - [anon_sym_r_SQUOTE] = ACTIONS(1789), - [anon_sym_r_DQUOTE] = ACTIONS(1789), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1789), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_RBRACE] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_fn] = ACTIONS(1793), + [anon_sym_PLUS] = ACTIONS(3881), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_SLASH] = ACTIONS(3885), + [anon_sym_PERCENT] = ACTIONS(3883), + [anon_sym_LT] = ACTIONS(1793), + [anon_sym_GT] = ACTIONS(1793), + [anon_sym_EQ_EQ] = ACTIONS(1791), + [anon_sym_BANG_EQ] = ACTIONS(1791), + [anon_sym_LT_EQ] = ACTIONS(1791), + [anon_sym_GT_EQ] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(3861), + [anon_sym_struct] = ACTIONS(1793), + [anon_sym_mut] = ACTIONS(1793), + [anon_sym_COLON] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1791), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_BANG] = ACTIONS(3865), + [anon_sym_go] = ACTIONS(1793), + [anon_sym_spawn] = ACTIONS(1793), + [anon_sym_json_DOTdecode] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(3881), + [anon_sym_LBRACK2] = ACTIONS(3867), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3885), + [anon_sym_LT_DASH] = ACTIONS(1791), + [anon_sym_LT_LT] = ACTIONS(3883), + [anon_sym_GT_GT] = ACTIONS(3885), + [anon_sym_GT_GT_GT] = ACTIONS(3883), + [anon_sym_AMP_CARET] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(1791), + [anon_sym_PIPE_PIPE] = ACTIONS(1791), + [anon_sym_or] = ACTIONS(1793), + [sym_none] = ACTIONS(1793), + [sym_true] = ACTIONS(1793), + [sym_false] = ACTIONS(1793), + [sym_nil] = ACTIONS(1793), + [anon_sym_QMARK_DOT] = ACTIONS(3869), + [anon_sym_POUND_LBRACK] = ACTIONS(3871), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_DOLLARif] = ACTIONS(1793), + [anon_sym_is] = ACTIONS(1793), + [anon_sym_BANGis] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(1793), + [anon_sym_BANGin] = ACTIONS(1791), + [anon_sym_match] = ACTIONS(1793), + [anon_sym_select] = ACTIONS(1793), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1793), + [anon_sym_sql] = ACTIONS(1793), + [sym_int_literal] = ACTIONS(1793), + [sym_float_literal] = ACTIONS(1791), + [sym_rune_literal] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [anon_sym_c_SQUOTE] = ACTIONS(1791), + [anon_sym_c_DQUOTE] = ACTIONS(1791), + [anon_sym_r_SQUOTE] = ACTIONS(1791), + [anon_sym_r_DQUOTE] = ACTIONS(1791), + [sym_pseudo_compile_time_identifier] = ACTIONS(1793), + [anon_sym_shared] = ACTIONS(1793), + [anon_sym_map_LBRACK] = ACTIONS(1791), + [anon_sym_chan] = ACTIONS(1793), + [anon_sym_thread] = ACTIONS(1793), + [anon_sym_atomic] = ACTIONS(1793), }, [1279] = { [sym_line_comment] = STATE(1279), [sym_block_comment] = STATE(1279), - [sym_identifier] = ACTIONS(2805), + [sym_type_parameters] = STATE(4349), + [sym_argument_list] = STATE(1357), + [sym_or_block] = STATE(1358), + [sym_identifier] = ACTIONS(1767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2803), - [anon_sym_DOT] = ACTIONS(2805), - [anon_sym_as] = ACTIONS(2805), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_COMMA] = ACTIONS(2803), - [anon_sym_RBRACE] = ACTIONS(2803), - [anon_sym_LPAREN] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2805), - [anon_sym_fn] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2805), - [anon_sym_DASH] = ACTIONS(2805), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_SLASH] = ACTIONS(2805), - [anon_sym_PERCENT] = ACTIONS(2803), - [anon_sym_LT] = ACTIONS(2805), - [anon_sym_GT] = ACTIONS(2805), - [anon_sym_EQ_EQ] = ACTIONS(2803), - [anon_sym_BANG_EQ] = ACTIONS(2803), - [anon_sym_LT_EQ] = ACTIONS(2803), - [anon_sym_GT_EQ] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_RBRACK] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2805), - [anon_sym_mut] = ACTIONS(2805), - [anon_sym_COLON] = ACTIONS(2803), - [anon_sym_PLUS_PLUS] = ACTIONS(2803), - [anon_sym_DASH_DASH] = ACTIONS(2803), - [anon_sym_QMARK] = ACTIONS(2805), - [anon_sym_BANG] = ACTIONS(2805), - [anon_sym_go] = ACTIONS(2805), - [anon_sym_spawn] = ACTIONS(2805), - [anon_sym_json_DOTdecode] = ACTIONS(2803), - [anon_sym_LBRACK2] = ACTIONS(2805), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_CARET] = ACTIONS(2803), - [anon_sym_AMP] = ACTIONS(2805), - [anon_sym_LT_DASH] = ACTIONS(2803), - [anon_sym_LT_LT] = ACTIONS(2803), - [anon_sym_GT_GT] = ACTIONS(2805), - [anon_sym_GT_GT_GT] = ACTIONS(2803), - [anon_sym_AMP_CARET] = ACTIONS(2803), - [anon_sym_AMP_AMP] = ACTIONS(2803), - [anon_sym_PIPE_PIPE] = ACTIONS(2803), - [anon_sym_or] = ACTIONS(2805), - [sym_none] = ACTIONS(2805), - [sym_true] = ACTIONS(2805), - [sym_false] = ACTIONS(2805), - [sym_nil] = ACTIONS(2805), - [anon_sym_QMARK_DOT] = ACTIONS(2803), - [anon_sym_POUND_LBRACK] = ACTIONS(2803), - [anon_sym_if] = ACTIONS(2805), - [anon_sym_DOLLARif] = ACTIONS(2805), - [anon_sym_is] = ACTIONS(2805), - [anon_sym_BANGis] = ACTIONS(2803), - [anon_sym_in] = ACTIONS(2805), - [anon_sym_BANGin] = ACTIONS(2803), - [anon_sym_match] = ACTIONS(2805), - [anon_sym_select] = ACTIONS(2805), - [anon_sym_lock] = ACTIONS(2805), - [anon_sym_rlock] = ACTIONS(2805), - [anon_sym_unsafe] = ACTIONS(2805), - [anon_sym_sql] = ACTIONS(2805), - [sym_int_literal] = ACTIONS(2805), - [sym_float_literal] = ACTIONS(2803), - [sym_rune_literal] = ACTIONS(2803), - [anon_sym_SQUOTE] = ACTIONS(2803), - [anon_sym_DQUOTE] = ACTIONS(2803), - [anon_sym_c_SQUOTE] = ACTIONS(2803), - [anon_sym_c_DQUOTE] = ACTIONS(2803), - [anon_sym_r_SQUOTE] = ACTIONS(2803), - [anon_sym_r_DQUOTE] = ACTIONS(2803), - [sym_pseudo_compile_time_identifier] = ACTIONS(2805), - [anon_sym_shared] = ACTIONS(2805), - [anon_sym_map_LBRACK] = ACTIONS(2803), - [anon_sym_chan] = ACTIONS(2805), - [anon_sym_thread] = ACTIONS(2805), - [anon_sym_atomic] = ACTIONS(2805), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1795), + [anon_sym_RBRACE] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(3881), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_SLASH] = ACTIONS(3885), + [anon_sym_PERCENT] = ACTIONS(3883), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_EQ_EQ] = ACTIONS(3889), + [anon_sym_BANG_EQ] = ACTIONS(3889), + [anon_sym_LT_EQ] = ACTIONS(3889), + [anon_sym_GT_EQ] = ACTIONS(3889), + [anon_sym_LBRACK] = ACTIONS(3861), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_COLON] = ACTIONS(1795), + [anon_sym_PLUS_PLUS] = ACTIONS(1795), + [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_BANG] = ACTIONS(3865), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1795), + [anon_sym_PIPE] = ACTIONS(3881), + [anon_sym_LBRACK2] = ACTIONS(3867), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_CARET] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3885), + [anon_sym_LT_DASH] = ACTIONS(1795), + [anon_sym_LT_LT] = ACTIONS(3883), + [anon_sym_GT_GT] = ACTIONS(3885), + [anon_sym_GT_GT_GT] = ACTIONS(3883), + [anon_sym_AMP_CARET] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(3899), + [anon_sym_PIPE_PIPE] = ACTIONS(1795), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(3869), + [anon_sym_POUND_LBRACK] = ACTIONS(3871), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1795), + [anon_sym_in] = ACTIONS(3909), + [anon_sym_BANGin] = ACTIONS(3911), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1795), + [sym_rune_literal] = ACTIONS(1795), + [anon_sym_SQUOTE] = ACTIONS(1795), + [anon_sym_DQUOTE] = ACTIONS(1795), + [anon_sym_c_SQUOTE] = ACTIONS(1795), + [anon_sym_c_DQUOTE] = ACTIONS(1795), + [anon_sym_r_SQUOTE] = ACTIONS(1795), + [anon_sym_r_DQUOTE] = ACTIONS(1795), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1795), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), }, [1280] = { [sym_line_comment] = STATE(1280), [sym_block_comment] = STATE(1280), - [sym_identifier] = ACTIONS(2877), + [sym_type_parameters] = STATE(4349), + [sym_argument_list] = STATE(1357), + [sym_or_block] = STATE(1358), + [sym_identifier] = ACTIONS(1767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym_DOT] = ACTIONS(2877), - [anon_sym_as] = ACTIONS(2877), - [anon_sym_LBRACE] = ACTIONS(2875), - [anon_sym_COMMA] = ACTIONS(2875), - [anon_sym_RBRACE] = ACTIONS(2875), - [anon_sym_LPAREN] = ACTIONS(2875), - [anon_sym_PIPE] = ACTIONS(2877), - [anon_sym_fn] = ACTIONS(2877), - [anon_sym_PLUS] = ACTIONS(2877), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_STAR] = ACTIONS(2875), - [anon_sym_SLASH] = ACTIONS(2877), - [anon_sym_PERCENT] = ACTIONS(2875), - [anon_sym_LT] = ACTIONS(2877), - [anon_sym_GT] = ACTIONS(2877), - [anon_sym_EQ_EQ] = ACTIONS(2875), - [anon_sym_BANG_EQ] = ACTIONS(2875), - [anon_sym_LT_EQ] = ACTIONS(2875), - [anon_sym_GT_EQ] = ACTIONS(2875), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(2875), - [anon_sym_struct] = ACTIONS(2877), - [anon_sym_mut] = ACTIONS(2877), - [anon_sym_COLON] = ACTIONS(2875), - [anon_sym_PLUS_PLUS] = ACTIONS(2875), - [anon_sym_DASH_DASH] = ACTIONS(2875), - [anon_sym_QMARK] = ACTIONS(2877), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_go] = ACTIONS(2877), - [anon_sym_spawn] = ACTIONS(2877), - [anon_sym_json_DOTdecode] = ACTIONS(2875), - [anon_sym_LBRACK2] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2875), - [anon_sym_CARET] = ACTIONS(2875), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_LT_DASH] = ACTIONS(2875), - [anon_sym_LT_LT] = ACTIONS(2875), - [anon_sym_GT_GT] = ACTIONS(2877), - [anon_sym_GT_GT_GT] = ACTIONS(2875), - [anon_sym_AMP_CARET] = ACTIONS(2875), - [anon_sym_AMP_AMP] = ACTIONS(2875), - [anon_sym_PIPE_PIPE] = ACTIONS(2875), - [anon_sym_or] = ACTIONS(2877), - [sym_none] = ACTIONS(2877), - [sym_true] = ACTIONS(2877), - [sym_false] = ACTIONS(2877), - [sym_nil] = ACTIONS(2877), - [anon_sym_QMARK_DOT] = ACTIONS(2875), - [anon_sym_POUND_LBRACK] = ACTIONS(2875), - [anon_sym_if] = ACTIONS(2877), - [anon_sym_DOLLARif] = ACTIONS(2877), - [anon_sym_is] = ACTIONS(2877), - [anon_sym_BANGis] = ACTIONS(2875), - [anon_sym_in] = ACTIONS(2877), - [anon_sym_BANGin] = ACTIONS(2875), - [anon_sym_match] = ACTIONS(2877), - [anon_sym_select] = ACTIONS(2877), - [anon_sym_lock] = ACTIONS(2877), - [anon_sym_rlock] = ACTIONS(2877), - [anon_sym_unsafe] = ACTIONS(2877), - [anon_sym_sql] = ACTIONS(2877), - [sym_int_literal] = ACTIONS(2877), - [sym_float_literal] = ACTIONS(2875), - [sym_rune_literal] = ACTIONS(2875), - [anon_sym_SQUOTE] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2875), - [anon_sym_c_SQUOTE] = ACTIONS(2875), - [anon_sym_c_DQUOTE] = ACTIONS(2875), - [anon_sym_r_SQUOTE] = ACTIONS(2875), - [anon_sym_r_DQUOTE] = ACTIONS(2875), - [sym_pseudo_compile_time_identifier] = ACTIONS(2877), - [anon_sym_shared] = ACTIONS(2877), - [anon_sym_map_LBRACK] = ACTIONS(2875), - [anon_sym_chan] = ACTIONS(2877), - [anon_sym_thread] = ACTIONS(2877), - [anon_sym_atomic] = ACTIONS(2877), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1795), + [anon_sym_RBRACE] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(3881), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_SLASH] = ACTIONS(3885), + [anon_sym_PERCENT] = ACTIONS(3883), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_EQ_EQ] = ACTIONS(3889), + [anon_sym_BANG_EQ] = ACTIONS(3889), + [anon_sym_LT_EQ] = ACTIONS(3889), + [anon_sym_GT_EQ] = ACTIONS(3889), + [anon_sym_LBRACK] = ACTIONS(3861), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_COLON] = ACTIONS(1795), + [anon_sym_PLUS_PLUS] = ACTIONS(1795), + [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_BANG] = ACTIONS(3865), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1795), + [anon_sym_PIPE] = ACTIONS(3881), + [anon_sym_LBRACK2] = ACTIONS(3867), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_CARET] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3885), + [anon_sym_LT_DASH] = ACTIONS(1795), + [anon_sym_LT_LT] = ACTIONS(3883), + [anon_sym_GT_GT] = ACTIONS(3885), + [anon_sym_GT_GT_GT] = ACTIONS(3883), + [anon_sym_AMP_CARET] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(1795), + [anon_sym_PIPE_PIPE] = ACTIONS(1795), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(3869), + [anon_sym_POUND_LBRACK] = ACTIONS(3871), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1795), + [anon_sym_in] = ACTIONS(3909), + [anon_sym_BANGin] = ACTIONS(3911), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1795), + [sym_rune_literal] = ACTIONS(1795), + [anon_sym_SQUOTE] = ACTIONS(1795), + [anon_sym_DQUOTE] = ACTIONS(1795), + [anon_sym_c_SQUOTE] = ACTIONS(1795), + [anon_sym_c_DQUOTE] = ACTIONS(1795), + [anon_sym_r_SQUOTE] = ACTIONS(1795), + [anon_sym_r_DQUOTE] = ACTIONS(1795), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1795), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), }, [1281] = { [sym_line_comment] = STATE(1281), [sym_block_comment] = STATE(1281), - [sym_identifier] = ACTIONS(2093), + [sym_identifier] = ACTIONS(1837), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2091), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2091), - [anon_sym_COMMA] = ACTIONS(2091), - [anon_sym_RBRACE] = ACTIONS(2091), - [anon_sym_LPAREN] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2091), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2091), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2091), - [anon_sym_BANG_EQ] = ACTIONS(2091), - [anon_sym_LT_EQ] = ACTIONS(2091), - [anon_sym_GT_EQ] = ACTIONS(2091), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_RBRACK] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_mut] = ACTIONS(2093), - [anon_sym_COLON] = ACTIONS(2091), - [anon_sym_PLUS_PLUS] = ACTIONS(2091), - [anon_sym_DASH_DASH] = ACTIONS(2091), - [anon_sym_QMARK] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_go] = ACTIONS(2093), - [anon_sym_spawn] = ACTIONS(2093), - [anon_sym_json_DOTdecode] = ACTIONS(2091), - [anon_sym_LBRACK2] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_LT_DASH] = ACTIONS(2091), - [anon_sym_LT_LT] = ACTIONS(2091), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2091), - [anon_sym_AMP_CARET] = ACTIONS(2091), - [anon_sym_AMP_AMP] = ACTIONS(2091), - [anon_sym_PIPE_PIPE] = ACTIONS(2091), - [anon_sym_or] = ACTIONS(2093), - [sym_none] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_nil] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2091), - [anon_sym_POUND_LBRACK] = ACTIONS(2091), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_DOLLARif] = ACTIONS(2093), - [anon_sym_is] = ACTIONS(2093), - [anon_sym_BANGis] = ACTIONS(2091), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_BANGin] = ACTIONS(2091), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_select] = ACTIONS(2093), - [anon_sym_lock] = ACTIONS(2093), - [anon_sym_rlock] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_sql] = ACTIONS(2093), - [sym_int_literal] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2091), - [sym_rune_literal] = ACTIONS(2091), - [anon_sym_SQUOTE] = ACTIONS(2091), - [anon_sym_DQUOTE] = ACTIONS(2091), - [anon_sym_c_SQUOTE] = ACTIONS(2091), - [anon_sym_c_DQUOTE] = ACTIONS(2091), - [anon_sym_r_SQUOTE] = ACTIONS(2091), - [anon_sym_r_DQUOTE] = ACTIONS(2091), - [sym_pseudo_compile_time_identifier] = ACTIONS(2093), - [anon_sym_shared] = ACTIONS(2093), - [anon_sym_map_LBRACK] = ACTIONS(2091), - [anon_sym_chan] = ACTIONS(2093), - [anon_sym_thread] = ACTIONS(2093), - [anon_sym_atomic] = ACTIONS(2093), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_as] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_COMMA] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1835), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1835), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1835), + [anon_sym_BANG_EQ] = ACTIONS(1835), + [anon_sym_LT_EQ] = ACTIONS(1835), + [anon_sym_GT_EQ] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_RBRACK] = ACTIONS(1835), + [anon_sym_struct] = ACTIONS(1837), + [anon_sym_mut] = ACTIONS(1837), + [anon_sym_COLON] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_QMARK] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_go] = ACTIONS(1837), + [anon_sym_spawn] = ACTIONS(1837), + [anon_sym_json_DOTdecode] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_LBRACK2] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1835), + [anon_sym_LT_LT] = ACTIONS(1835), + [anon_sym_GT_GT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1835), + [anon_sym_AMP_CARET] = ACTIONS(1835), + [anon_sym_AMP_AMP] = ACTIONS(1835), + [anon_sym_PIPE_PIPE] = ACTIONS(1835), + [anon_sym_or] = ACTIONS(1837), + [sym_none] = ACTIONS(1837), + [sym_true] = ACTIONS(1837), + [sym_false] = ACTIONS(1837), + [sym_nil] = ACTIONS(1837), + [anon_sym_QMARK_DOT] = ACTIONS(1835), + [anon_sym_POUND_LBRACK] = ACTIONS(1835), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_DOLLARif] = ACTIONS(1837), + [anon_sym_DOLLARelse] = ACTIONS(1837), + [anon_sym_is] = ACTIONS(1837), + [anon_sym_BANGis] = ACTIONS(1835), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_BANGin] = ACTIONS(1835), + [anon_sym_match] = ACTIONS(1837), + [anon_sym_select] = ACTIONS(1837), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1837), + [anon_sym_sql] = ACTIONS(1837), + [sym_int_literal] = ACTIONS(1837), + [sym_float_literal] = ACTIONS(1835), + [sym_rune_literal] = ACTIONS(1835), + [anon_sym_SQUOTE] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(1835), + [anon_sym_c_SQUOTE] = ACTIONS(1835), + [anon_sym_c_DQUOTE] = ACTIONS(1835), + [anon_sym_r_SQUOTE] = ACTIONS(1835), + [anon_sym_r_DQUOTE] = ACTIONS(1835), + [sym_pseudo_compile_time_identifier] = ACTIONS(1837), + [anon_sym_shared] = ACTIONS(1837), + [anon_sym_map_LBRACK] = ACTIONS(1835), + [anon_sym_chan] = ACTIONS(1837), + [anon_sym_thread] = ACTIONS(1837), + [anon_sym_atomic] = ACTIONS(1837), }, [1282] = { [sym_line_comment] = STATE(1282), [sym_block_comment] = STATE(1282), - [sym_identifier] = ACTIONS(1889), + [sym_type_parameters] = STATE(4349), + [sym_argument_list] = STATE(1357), + [sym_or_block] = STATE(1358), + [sym_identifier] = ACTIONS(3935), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1889), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_PERCENT] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1887), - [anon_sym_BANG_EQ] = ACTIONS(1887), - [anon_sym_LT_EQ] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_COLON] = ACTIONS(1887), - [anon_sym_PLUS_PLUS] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1887), - [anon_sym_QMARK] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1887), - [anon_sym_LBRACK2] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1887), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_LT_DASH] = ACTIONS(1887), - [anon_sym_LT_LT] = ACTIONS(1887), - [anon_sym_GT_GT] = ACTIONS(1889), - [anon_sym_GT_GT_GT] = ACTIONS(1887), - [anon_sym_AMP_CARET] = ACTIONS(1887), - [anon_sym_AMP_AMP] = ACTIONS(1887), - [anon_sym_PIPE_PIPE] = ACTIONS(1887), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(1887), - [anon_sym_POUND_LBRACK] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_DOLLARelse] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1887), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1887), - [sym_rune_literal] = ACTIONS(1887), - [anon_sym_SQUOTE] = ACTIONS(1887), - [anon_sym_DQUOTE] = ACTIONS(1887), - [anon_sym_c_SQUOTE] = ACTIONS(1887), - [anon_sym_c_DQUOTE] = ACTIONS(1887), - [anon_sym_r_SQUOTE] = ACTIONS(1887), - [anon_sym_r_DQUOTE] = ACTIONS(1887), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1887), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(3937), + [anon_sym_COMMA] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_fn] = ACTIONS(3935), + [anon_sym_PLUS] = ACTIONS(3915), + [anon_sym_DASH] = ACTIONS(3915), + [anon_sym_STAR] = ACTIONS(3917), + [anon_sym_SLASH] = ACTIONS(3919), + [anon_sym_PERCENT] = ACTIONS(3917), + [anon_sym_LT] = ACTIONS(3921), + [anon_sym_GT] = ACTIONS(3921), + [anon_sym_EQ_EQ] = ACTIONS(3923), + [anon_sym_BANG_EQ] = ACTIONS(3923), + [anon_sym_LT_EQ] = ACTIONS(3923), + [anon_sym_GT_EQ] = ACTIONS(3923), + [anon_sym_LBRACK] = ACTIONS(3861), + [anon_sym_RBRACK] = ACTIONS(3937), + [anon_sym_struct] = ACTIONS(3935), + [anon_sym_mut] = ACTIONS(3935), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_BANG] = ACTIONS(3865), + [anon_sym_go] = ACTIONS(3935), + [anon_sym_spawn] = ACTIONS(3935), + [anon_sym_json_DOTdecode] = ACTIONS(3937), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_LBRACK2] = ACTIONS(3867), + [anon_sym_TILDE] = ACTIONS(3937), + [anon_sym_CARET] = ACTIONS(3925), + [anon_sym_AMP] = ACTIONS(3919), + [anon_sym_LT_DASH] = ACTIONS(3937), + [anon_sym_LT_LT] = ACTIONS(3917), + [anon_sym_GT_GT] = ACTIONS(3919), + [anon_sym_GT_GT_GT] = ACTIONS(3917), + [anon_sym_AMP_CARET] = ACTIONS(3917), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3941), + [anon_sym_or] = ACTIONS(3903), + [sym_none] = ACTIONS(3935), + [sym_true] = ACTIONS(3935), + [sym_false] = ACTIONS(3935), + [sym_nil] = ACTIONS(3935), + [anon_sym_QMARK_DOT] = ACTIONS(3869), + [anon_sym_POUND_LBRACK] = ACTIONS(3871), + [anon_sym_if] = ACTIONS(3935), + [anon_sym_DOLLARif] = ACTIONS(3935), + [anon_sym_is] = ACTIONS(3905), + [anon_sym_BANGis] = ACTIONS(3907), + [anon_sym_in] = ACTIONS(3929), + [anon_sym_BANGin] = ACTIONS(3931), + [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), + [anon_sym_SQUOTE] = ACTIONS(3937), + [anon_sym_DQUOTE] = ACTIONS(3937), + [anon_sym_c_SQUOTE] = ACTIONS(3937), + [anon_sym_c_DQUOTE] = ACTIONS(3937), + [anon_sym_r_SQUOTE] = ACTIONS(3937), + [anon_sym_r_DQUOTE] = 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), + }, + [1283] = { + [sym_line_comment] = STATE(1283), + [sym_block_comment] = STATE(1283), + [sym_type_parameters] = STATE(4349), + [sym_argument_list] = STATE(1357), + [sym_or_block] = STATE(1358), + [sym_identifier] = ACTIONS(1767), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1795), + [anon_sym_RBRACE] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(3881), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_SLASH] = ACTIONS(3885), + [anon_sym_PERCENT] = ACTIONS(3883), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_EQ_EQ] = ACTIONS(1795), + [anon_sym_BANG_EQ] = ACTIONS(1795), + [anon_sym_LT_EQ] = ACTIONS(1795), + [anon_sym_GT_EQ] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(3861), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_COLON] = ACTIONS(1795), + [anon_sym_PLUS_PLUS] = ACTIONS(1795), + [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_BANG] = ACTIONS(3865), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1795), + [anon_sym_PIPE] = ACTIONS(3881), + [anon_sym_LBRACK2] = ACTIONS(3867), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_CARET] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3885), + [anon_sym_LT_DASH] = ACTIONS(1795), + [anon_sym_LT_LT] = ACTIONS(3883), + [anon_sym_GT_GT] = ACTIONS(3885), + [anon_sym_GT_GT_GT] = ACTIONS(3883), + [anon_sym_AMP_CARET] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(1795), + [anon_sym_PIPE_PIPE] = ACTIONS(1795), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(3869), + [anon_sym_POUND_LBRACK] = ACTIONS(3871), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1795), + [anon_sym_in] = ACTIONS(1767), + [anon_sym_BANGin] = ACTIONS(1795), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1795), + [sym_rune_literal] = ACTIONS(1795), + [anon_sym_SQUOTE] = ACTIONS(1795), + [anon_sym_DQUOTE] = ACTIONS(1795), + [anon_sym_c_SQUOTE] = ACTIONS(1795), + [anon_sym_c_DQUOTE] = ACTIONS(1795), + [anon_sym_r_SQUOTE] = ACTIONS(1795), + [anon_sym_r_DQUOTE] = ACTIONS(1795), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1795), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), + }, + [1284] = { + [sym_line_comment] = STATE(1284), + [sym_block_comment] = STATE(1284), + [sym_identifier] = ACTIONS(2105), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(2103), + [anon_sym_DOT] = ACTIONS(2105), + [anon_sym_as] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_COMMA] = ACTIONS(2103), + [anon_sym_RBRACE] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_fn] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2103), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_PERCENT] = ACTIONS(2103), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_GT] = ACTIONS(2105), + [anon_sym_EQ_EQ] = ACTIONS(2103), + [anon_sym_BANG_EQ] = ACTIONS(2103), + [anon_sym_LT_EQ] = ACTIONS(2103), + [anon_sym_GT_EQ] = ACTIONS(2103), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_RBRACK] = ACTIONS(2103), + [anon_sym_struct] = ACTIONS(2105), + [anon_sym_mut] = ACTIONS(2105), + [anon_sym_COLON] = ACTIONS(2103), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [anon_sym_QMARK] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_go] = ACTIONS(2105), + [anon_sym_spawn] = ACTIONS(2105), + [anon_sym_json_DOTdecode] = ACTIONS(2103), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_LBRACK2] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_LT_DASH] = ACTIONS(2103), + [anon_sym_LT_LT] = ACTIONS(2103), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2103), + [anon_sym_AMP_CARET] = ACTIONS(2103), + [anon_sym_AMP_AMP] = ACTIONS(2103), + [anon_sym_PIPE_PIPE] = ACTIONS(2103), + [anon_sym_or] = ACTIONS(2105), + [sym_none] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_nil] = ACTIONS(2105), + [anon_sym_QMARK_DOT] = ACTIONS(2103), + [anon_sym_POUND_LBRACK] = ACTIONS(2103), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_DOLLARif] = ACTIONS(2105), + [anon_sym_is] = ACTIONS(2105), + [anon_sym_BANGis] = ACTIONS(2103), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_BANGin] = ACTIONS(2103), + [anon_sym_match] = ACTIONS(2105), + [anon_sym_select] = ACTIONS(2105), + [anon_sym_lock] = ACTIONS(2105), + [anon_sym_rlock] = ACTIONS(2105), + [anon_sym_unsafe] = ACTIONS(2105), + [anon_sym_sql] = ACTIONS(2105), + [sym_int_literal] = ACTIONS(2105), + [sym_float_literal] = ACTIONS(2103), + [sym_rune_literal] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_DQUOTE] = ACTIONS(2103), + [anon_sym_c_SQUOTE] = ACTIONS(2103), + [anon_sym_c_DQUOTE] = ACTIONS(2103), + [anon_sym_r_SQUOTE] = ACTIONS(2103), + [anon_sym_r_DQUOTE] = ACTIONS(2103), + [sym_pseudo_compile_time_identifier] = ACTIONS(2105), + [anon_sym_shared] = ACTIONS(2105), + [anon_sym_map_LBRACK] = ACTIONS(2103), + [anon_sym_chan] = ACTIONS(2105), + [anon_sym_thread] = ACTIONS(2105), + [anon_sym_atomic] = ACTIONS(2105), + }, + [1285] = { + [sym_line_comment] = STATE(1285), + [sym_block_comment] = STATE(1285), + [sym_type_parameters] = STATE(4349), + [sym_argument_list] = STATE(1357), + [sym_or_block] = STATE(1358), + [sym_identifier] = ACTIONS(1767), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1795), + [anon_sym_RBRACE] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_SLASH] = ACTIONS(3885), + [anon_sym_PERCENT] = ACTIONS(3883), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_EQ_EQ] = ACTIONS(1795), + [anon_sym_BANG_EQ] = ACTIONS(1795), + [anon_sym_LT_EQ] = ACTIONS(1795), + [anon_sym_GT_EQ] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(3861), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_COLON] = ACTIONS(1795), + [anon_sym_PLUS_PLUS] = ACTIONS(1795), + [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_BANG] = ACTIONS(3865), + [anon_sym_go] = ACTIONS(1767), + [anon_sym_spawn] = ACTIONS(1767), + [anon_sym_json_DOTdecode] = ACTIONS(1795), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK2] = ACTIONS(3867), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_CARET] = ACTIONS(1795), + [anon_sym_AMP] = ACTIONS(3885), + [anon_sym_LT_DASH] = ACTIONS(1795), + [anon_sym_LT_LT] = ACTIONS(3883), + [anon_sym_GT_GT] = ACTIONS(3885), + [anon_sym_GT_GT_GT] = ACTIONS(3883), + [anon_sym_AMP_CARET] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(1795), + [anon_sym_PIPE_PIPE] = ACTIONS(1795), + [anon_sym_or] = ACTIONS(1767), + [sym_none] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_nil] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(3869), + [anon_sym_POUND_LBRACK] = ACTIONS(3871), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_DOLLARif] = ACTIONS(1767), + [anon_sym_is] = ACTIONS(1767), + [anon_sym_BANGis] = ACTIONS(1795), + [anon_sym_in] = ACTIONS(1767), + [anon_sym_BANGin] = ACTIONS(1795), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_select] = ACTIONS(1767), + [anon_sym_lock] = ACTIONS(1767), + [anon_sym_rlock] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_sql] = ACTIONS(1767), + [sym_int_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1795), + [sym_rune_literal] = ACTIONS(1795), + [anon_sym_SQUOTE] = ACTIONS(1795), + [anon_sym_DQUOTE] = ACTIONS(1795), + [anon_sym_c_SQUOTE] = ACTIONS(1795), + [anon_sym_c_DQUOTE] = ACTIONS(1795), + [anon_sym_r_SQUOTE] = ACTIONS(1795), + [anon_sym_r_DQUOTE] = ACTIONS(1795), + [sym_pseudo_compile_time_identifier] = ACTIONS(1767), + [anon_sym_shared] = ACTIONS(1767), + [anon_sym_map_LBRACK] = ACTIONS(1795), + [anon_sym_chan] = ACTIONS(1767), + [anon_sym_thread] = ACTIONS(1767), + [anon_sym_atomic] = ACTIONS(1767), + }, + [1286] = { + [sym_line_comment] = STATE(1286), + [sym_block_comment] = STATE(1286), + [sym_type_parameters] = STATE(1333), + [sym_identifier] = ACTIONS(1945), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1945), + [anon_sym_as] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1943), + [anon_sym_COMMA] = ACTIONS(1943), + [anon_sym_RBRACE] = ACTIONS(1943), + [anon_sym_LPAREN] = ACTIONS(1943), + [anon_sym_fn] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1945), + [anon_sym_STAR] = ACTIONS(1943), + [anon_sym_SLASH] = ACTIONS(1945), + [anon_sym_PERCENT] = ACTIONS(1943), + [anon_sym_LT] = ACTIONS(1945), + [anon_sym_GT] = ACTIONS(1945), + [anon_sym_EQ_EQ] = ACTIONS(1943), + [anon_sym_BANG_EQ] = ACTIONS(1943), + [anon_sym_LT_EQ] = ACTIONS(1943), + [anon_sym_GT_EQ] = ACTIONS(1943), + [anon_sym_LBRACK] = ACTIONS(1943), + [anon_sym_RBRACK] = ACTIONS(1943), + [anon_sym_struct] = ACTIONS(1945), + [anon_sym_mut] = ACTIONS(1945), + [anon_sym_COLON] = ACTIONS(1943), + [anon_sym_PLUS_PLUS] = ACTIONS(1943), + [anon_sym_DASH_DASH] = ACTIONS(1943), + [anon_sym_QMARK] = ACTIONS(1945), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_go] = ACTIONS(1945), + [anon_sym_spawn] = ACTIONS(1945), + [anon_sym_json_DOTdecode] = ACTIONS(1943), + [anon_sym_PIPE] = ACTIONS(1945), + [anon_sym_LBRACK2] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1943), + [anon_sym_CARET] = ACTIONS(1943), + [anon_sym_AMP] = ACTIONS(1945), + [anon_sym_LT_DASH] = ACTIONS(1943), + [anon_sym_LT_LT] = ACTIONS(1943), + [anon_sym_GT_GT] = ACTIONS(1945), + [anon_sym_GT_GT_GT] = ACTIONS(1943), + [anon_sym_AMP_CARET] = ACTIONS(1943), + [anon_sym_AMP_AMP] = ACTIONS(1943), + [anon_sym_PIPE_PIPE] = ACTIONS(1943), + [anon_sym_or] = ACTIONS(1945), + [sym_none] = ACTIONS(1945), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_nil] = ACTIONS(1945), + [anon_sym_QMARK_DOT] = ACTIONS(1943), + [anon_sym_POUND_LBRACK] = ACTIONS(1943), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_DOLLARif] = ACTIONS(1945), + [anon_sym_is] = ACTIONS(1945), + [anon_sym_BANGis] = ACTIONS(1943), + [anon_sym_in] = ACTIONS(1945), + [anon_sym_BANGin] = ACTIONS(1943), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_select] = ACTIONS(1945), + [anon_sym_lock] = ACTIONS(1945), + [anon_sym_rlock] = ACTIONS(1945), + [anon_sym_unsafe] = ACTIONS(1945), + [anon_sym_sql] = ACTIONS(1945), + [sym_int_literal] = ACTIONS(1945), + [sym_float_literal] = ACTIONS(1943), + [sym_rune_literal] = ACTIONS(1943), + [anon_sym_SQUOTE] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [anon_sym_c_SQUOTE] = ACTIONS(1943), + [anon_sym_c_DQUOTE] = ACTIONS(1943), + [anon_sym_r_SQUOTE] = ACTIONS(1943), + [anon_sym_r_DQUOTE] = ACTIONS(1943), + [sym_pseudo_compile_time_identifier] = ACTIONS(1945), + [anon_sym_shared] = ACTIONS(1945), + [anon_sym_map_LBRACK] = ACTIONS(1943), + [anon_sym_chan] = ACTIONS(1945), + [anon_sym_thread] = ACTIONS(1945), + [anon_sym_atomic] = ACTIONS(1945), }, - [1283] = { - [sym_line_comment] = STATE(1283), - [sym_block_comment] = STATE(1283), - [sym_type_parameters] = STATE(4063), - [sym_argument_list] = STATE(1354), - [sym_or_block] = STATE(1355), - [sym_identifier] = ACTIONS(1791), + [1287] = { + [sym_line_comment] = STATE(1287), + [sym_block_comment] = STATE(1287), + [sym_identifier] = ACTIONS(1877), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3825), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_RBRACE] = ACTIONS(1789), - [anon_sym_LPAREN] = ACTIONS(3827), - [anon_sym_PIPE] = ACTIONS(3849), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(3849), - [anon_sym_DASH] = ACTIONS(3849), - [anon_sym_STAR] = ACTIONS(3851), - [anon_sym_SLASH] = ACTIONS(3853), - [anon_sym_PERCENT] = ACTIONS(3851), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1789), - [anon_sym_BANG_EQ] = ACTIONS(1789), - [anon_sym_LT_EQ] = ACTIONS(1789), - [anon_sym_GT_EQ] = ACTIONS(1789), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_COLON] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_QMARK] = ACTIONS(3831), - [anon_sym_BANG] = ACTIONS(3833), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1789), - [anon_sym_LBRACK2] = ACTIONS(3835), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_CARET] = ACTIONS(3865), - [anon_sym_AMP] = ACTIONS(3853), - [anon_sym_LT_DASH] = ACTIONS(1789), - [anon_sym_LT_LT] = ACTIONS(3851), - [anon_sym_GT_GT] = ACTIONS(3853), - [anon_sym_GT_GT_GT] = ACTIONS(3851), - [anon_sym_AMP_CARET] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(1789), - [anon_sym_PIPE_PIPE] = ACTIONS(1789), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(3837), - [anon_sym_POUND_LBRACK] = ACTIONS(3839), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1789), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_BANGin] = ACTIONS(1789), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1789), - [sym_rune_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1789), - [anon_sym_DQUOTE] = ACTIONS(1789), - [anon_sym_c_SQUOTE] = ACTIONS(1789), - [anon_sym_c_DQUOTE] = ACTIONS(1789), - [anon_sym_r_SQUOTE] = ACTIONS(1789), - [anon_sym_r_DQUOTE] = ACTIONS(1789), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1789), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), + [anon_sym_DOT] = ACTIONS(1877), + [anon_sym_as] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1875), + [anon_sym_COMMA] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1875), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1875), + [anon_sym_BANG_EQ] = ACTIONS(1875), + [anon_sym_LT_EQ] = ACTIONS(1875), + [anon_sym_GT_EQ] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_RBRACK] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1877), + [anon_sym_mut] = ACTIONS(1877), + [anon_sym_COLON] = ACTIONS(1875), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1875), + [anon_sym_QMARK] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_go] = ACTIONS(1877), + [anon_sym_spawn] = ACTIONS(1877), + [anon_sym_json_DOTdecode] = ACTIONS(1875), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_LBRACK2] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_CARET] = ACTIONS(1875), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1875), + [anon_sym_LT_LT] = ACTIONS(1875), + [anon_sym_GT_GT] = ACTIONS(1877), + [anon_sym_GT_GT_GT] = ACTIONS(1875), + [anon_sym_AMP_CARET] = ACTIONS(1875), + [anon_sym_AMP_AMP] = ACTIONS(1875), + [anon_sym_PIPE_PIPE] = ACTIONS(1875), + [anon_sym_or] = ACTIONS(1877), + [sym_none] = ACTIONS(1877), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [sym_nil] = ACTIONS(1877), + [anon_sym_QMARK_DOT] = ACTIONS(1875), + [anon_sym_POUND_LBRACK] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_DOLLARif] = ACTIONS(1877), + [anon_sym_DOLLARelse] = ACTIONS(1877), + [anon_sym_is] = ACTIONS(1877), + [anon_sym_BANGis] = ACTIONS(1875), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_BANGin] = ACTIONS(1875), + [anon_sym_match] = ACTIONS(1877), + [anon_sym_select] = ACTIONS(1877), + [anon_sym_lock] = ACTIONS(1877), + [anon_sym_rlock] = ACTIONS(1877), + [anon_sym_unsafe] = ACTIONS(1877), + [anon_sym_sql] = ACTIONS(1877), + [sym_int_literal] = ACTIONS(1877), + [sym_float_literal] = ACTIONS(1875), + [sym_rune_literal] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [anon_sym_c_SQUOTE] = ACTIONS(1875), + [anon_sym_c_DQUOTE] = ACTIONS(1875), + [anon_sym_r_SQUOTE] = ACTIONS(1875), + [anon_sym_r_DQUOTE] = ACTIONS(1875), + [sym_pseudo_compile_time_identifier] = ACTIONS(1877), + [anon_sym_shared] = ACTIONS(1877), + [anon_sym_map_LBRACK] = ACTIONS(1875), + [anon_sym_chan] = ACTIONS(1877), + [anon_sym_thread] = ACTIONS(1877), + [anon_sym_atomic] = ACTIONS(1877), }, - [1284] = { - [sym_line_comment] = STATE(1284), - [sym_block_comment] = STATE(1284), - [sym_type_parameters] = STATE(4063), - [sym_argument_list] = STATE(1354), - [sym_or_block] = STATE(1355), - [sym_identifier] = ACTIONS(1791), + [1288] = { + [sym_line_comment] = STATE(1288), + [sym_block_comment] = STATE(1288), + [sym_type_parameters] = STATE(4349), + [sym_argument_list] = STATE(1357), + [sym_or_block] = STATE(1358), + [sym_identifier] = ACTIONS(1775), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3825), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_RBRACE] = ACTIONS(1789), - [anon_sym_LPAREN] = ACTIONS(3827), - [anon_sym_PIPE] = ACTIONS(3849), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(3849), - [anon_sym_DASH] = ACTIONS(3849), - [anon_sym_STAR] = ACTIONS(3851), - [anon_sym_SLASH] = ACTIONS(3853), - [anon_sym_PERCENT] = ACTIONS(3851), - [anon_sym_LT] = ACTIONS(3855), - [anon_sym_GT] = ACTIONS(3855), - [anon_sym_EQ_EQ] = ACTIONS(3857), - [anon_sym_BANG_EQ] = ACTIONS(3857), - [anon_sym_LT_EQ] = ACTIONS(3857), - [anon_sym_GT_EQ] = ACTIONS(3857), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_COLON] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_QMARK] = ACTIONS(3831), - [anon_sym_BANG] = ACTIONS(3833), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1789), - [anon_sym_LBRACK2] = ACTIONS(3835), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_CARET] = ACTIONS(3865), - [anon_sym_AMP] = ACTIONS(3853), - [anon_sym_LT_DASH] = ACTIONS(1789), - [anon_sym_LT_LT] = ACTIONS(3851), - [anon_sym_GT_GT] = ACTIONS(3853), - [anon_sym_GT_GT_GT] = ACTIONS(3851), - [anon_sym_AMP_CARET] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(1789), - [anon_sym_PIPE_PIPE] = ACTIONS(1789), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(3837), - [anon_sym_POUND_LBRACK] = ACTIONS(3839), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1789), - [anon_sym_in] = ACTIONS(3877), - [anon_sym_BANGin] = ACTIONS(3879), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1789), - [sym_rune_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1789), - [anon_sym_DQUOTE] = ACTIONS(1789), - [anon_sym_c_SQUOTE] = ACTIONS(1789), - [anon_sym_c_DQUOTE] = ACTIONS(1789), - [anon_sym_r_SQUOTE] = ACTIONS(1789), - [anon_sym_r_DQUOTE] = ACTIONS(1789), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1789), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_COMMA] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_fn] = ACTIONS(1775), + [anon_sym_PLUS] = ACTIONS(3915), + [anon_sym_DASH] = ACTIONS(3915), + [anon_sym_STAR] = ACTIONS(3917), + [anon_sym_SLASH] = ACTIONS(3919), + [anon_sym_PERCENT] = ACTIONS(3917), + [anon_sym_LT] = ACTIONS(3921), + [anon_sym_GT] = ACTIONS(3921), + [anon_sym_EQ_EQ] = ACTIONS(3923), + [anon_sym_BANG_EQ] = ACTIONS(3923), + [anon_sym_LT_EQ] = ACTIONS(3923), + [anon_sym_GT_EQ] = ACTIONS(3923), + [anon_sym_LBRACK] = ACTIONS(3861), + [anon_sym_RBRACK] = ACTIONS(1773), + [anon_sym_struct] = ACTIONS(1775), + [anon_sym_mut] = ACTIONS(1775), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_BANG] = ACTIONS(3865), + [anon_sym_go] = ACTIONS(1775), + [anon_sym_spawn] = ACTIONS(1775), + [anon_sym_json_DOTdecode] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_LBRACK2] = ACTIONS(3867), + [anon_sym_TILDE] = ACTIONS(1773), + [anon_sym_CARET] = ACTIONS(3925), + [anon_sym_AMP] = ACTIONS(3919), + [anon_sym_LT_DASH] = ACTIONS(1773), + [anon_sym_LT_LT] = ACTIONS(3917), + [anon_sym_GT_GT] = ACTIONS(3919), + [anon_sym_GT_GT_GT] = ACTIONS(3917), + [anon_sym_AMP_CARET] = ACTIONS(3917), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3941), + [anon_sym_or] = ACTIONS(3903), + [sym_none] = ACTIONS(1775), + [sym_true] = ACTIONS(1775), + [sym_false] = ACTIONS(1775), + [sym_nil] = ACTIONS(1775), + [anon_sym_QMARK_DOT] = ACTIONS(3869), + [anon_sym_POUND_LBRACK] = ACTIONS(3871), + [anon_sym_if] = ACTIONS(1775), + [anon_sym_DOLLARif] = ACTIONS(1775), + [anon_sym_is] = ACTIONS(3905), + [anon_sym_BANGis] = ACTIONS(3907), + [anon_sym_in] = ACTIONS(3929), + [anon_sym_BANGin] = ACTIONS(3931), + [anon_sym_match] = ACTIONS(1775), + [anon_sym_select] = ACTIONS(1775), + [anon_sym_lock] = ACTIONS(1775), + [anon_sym_rlock] = ACTIONS(1775), + [anon_sym_unsafe] = ACTIONS(1775), + [anon_sym_sql] = ACTIONS(1775), + [sym_int_literal] = ACTIONS(1775), + [sym_float_literal] = ACTIONS(1773), + [sym_rune_literal] = ACTIONS(1773), + [anon_sym_SQUOTE] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [anon_sym_c_SQUOTE] = ACTIONS(1773), + [anon_sym_c_DQUOTE] = ACTIONS(1773), + [anon_sym_r_SQUOTE] = ACTIONS(1773), + [anon_sym_r_DQUOTE] = ACTIONS(1773), + [sym_pseudo_compile_time_identifier] = ACTIONS(1775), + [anon_sym_shared] = ACTIONS(1775), + [anon_sym_map_LBRACK] = ACTIONS(1773), + [anon_sym_chan] = ACTIONS(1775), + [anon_sym_thread] = ACTIONS(1775), + [anon_sym_atomic] = ACTIONS(1775), }, - [1285] = { - [sym_line_comment] = STATE(1285), - [sym_block_comment] = STATE(1285), - [sym_type_parameters] = STATE(4063), - [sym_argument_list] = STATE(1354), - [sym_or_block] = STATE(1355), + [1289] = { + [sym_line_comment] = STATE(1289), + [sym_block_comment] = STATE(1289), + [sym_type_parameters] = STATE(4349), + [sym_argument_list] = STATE(1357), + [sym_or_block] = STATE(1358), [sym_identifier] = ACTIONS(1779), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3825), - [anon_sym_as] = ACTIONS(3845), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3877), [anon_sym_LBRACE] = ACTIONS(1777), [anon_sym_COMMA] = ACTIONS(1777), - [anon_sym_LPAREN] = ACTIONS(3827), - [anon_sym_PIPE] = ACTIONS(3883), + [anon_sym_LPAREN] = ACTIONS(3859), [anon_sym_fn] = ACTIONS(1779), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_SLASH] = ACTIONS(3887), - [anon_sym_PERCENT] = ACTIONS(3885), - [anon_sym_LT] = ACTIONS(3891), - [anon_sym_GT] = ACTIONS(3891), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(3915), + [anon_sym_DASH] = ACTIONS(3915), + [anon_sym_STAR] = ACTIONS(3917), + [anon_sym_SLASH] = ACTIONS(3919), + [anon_sym_PERCENT] = ACTIONS(3917), + [anon_sym_LT] = ACTIONS(3921), + [anon_sym_GT] = ACTIONS(3921), + [anon_sym_EQ_EQ] = ACTIONS(3923), + [anon_sym_BANG_EQ] = ACTIONS(3923), + [anon_sym_LT_EQ] = ACTIONS(3923), + [anon_sym_GT_EQ] = ACTIONS(3923), + [anon_sym_LBRACK] = ACTIONS(3861), [anon_sym_RBRACK] = ACTIONS(1777), [anon_sym_struct] = ACTIONS(1779), [anon_sym_mut] = ACTIONS(1779), - [anon_sym_PLUS_PLUS] = ACTIONS(3861), - [anon_sym_DASH_DASH] = ACTIONS(3863), - [anon_sym_QMARK] = ACTIONS(3831), - [anon_sym_BANG] = ACTIONS(3833), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_BANG] = ACTIONS(3865), [anon_sym_go] = ACTIONS(1779), [anon_sym_spawn] = ACTIONS(1779), [anon_sym_json_DOTdecode] = ACTIONS(1777), - [anon_sym_LBRACK2] = ACTIONS(3835), + [anon_sym_PIPE] = ACTIONS(3915), + [anon_sym_LBRACK2] = ACTIONS(3867), [anon_sym_TILDE] = ACTIONS(1777), - [anon_sym_CARET] = ACTIONS(3889), - [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_CARET] = ACTIONS(3925), + [anon_sym_AMP] = ACTIONS(3919), [anon_sym_LT_DASH] = ACTIONS(1777), - [anon_sym_LT_LT] = ACTIONS(3885), - [anon_sym_GT_GT] = ACTIONS(3887), - [anon_sym_GT_GT_GT] = ACTIONS(3885), - [anon_sym_AMP_CARET] = ACTIONS(3885), - [anon_sym_AMP_AMP] = ACTIONS(3899), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_or] = ACTIONS(3871), + [anon_sym_LT_LT] = ACTIONS(3917), + [anon_sym_GT_GT] = ACTIONS(3919), + [anon_sym_GT_GT_GT] = ACTIONS(3917), + [anon_sym_AMP_CARET] = ACTIONS(3917), + [anon_sym_AMP_AMP] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3941), + [anon_sym_or] = ACTIONS(3903), [sym_none] = ACTIONS(1779), [sym_true] = ACTIONS(1779), [sym_false] = ACTIONS(1779), [sym_nil] = ACTIONS(1779), - [anon_sym_QMARK_DOT] = ACTIONS(3837), - [anon_sym_POUND_LBRACK] = ACTIONS(3839), + [anon_sym_QMARK_DOT] = ACTIONS(3869), + [anon_sym_POUND_LBRACK] = ACTIONS(3871), [anon_sym_if] = ACTIONS(1779), [anon_sym_DOLLARif] = ACTIONS(1779), - [anon_sym_is] = ACTIONS(3873), - [anon_sym_BANGis] = ACTIONS(3875), - [anon_sym_in] = ACTIONS(3895), - [anon_sym_BANGin] = ACTIONS(3897), + [anon_sym_is] = ACTIONS(3905), + [anon_sym_BANGis] = ACTIONS(3907), + [anon_sym_in] = ACTIONS(3929), + [anon_sym_BANGin] = ACTIONS(3931), [anon_sym_match] = ACTIONS(1779), [anon_sym_select] = ACTIONS(1779), [anon_sym_lock] = ACTIONS(1779), @@ -163711,4083 +164409,2091 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(1779), [anon_sym_atomic] = ACTIONS(1779), }, - [1286] = { - [sym_line_comment] = STATE(1286), - [sym_block_comment] = STATE(1286), - [sym_type_parameters] = STATE(4063), - [sym_argument_list] = STATE(1354), - [sym_or_block] = STATE(1355), - [sym_identifier] = ACTIONS(1765), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3825), - [anon_sym_as] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_COMMA] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(3827), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_SLASH] = ACTIONS(3887), - [anon_sym_PERCENT] = ACTIONS(3885), - [anon_sym_LT] = ACTIONS(3891), - [anon_sym_GT] = ACTIONS(3891), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_RBRACK] = ACTIONS(1763), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(3861), - [anon_sym_DASH_DASH] = ACTIONS(3863), - [anon_sym_QMARK] = ACTIONS(3831), - [anon_sym_BANG] = ACTIONS(3833), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1763), - [anon_sym_LBRACK2] = ACTIONS(3835), - [anon_sym_TILDE] = ACTIONS(1763), - [anon_sym_CARET] = ACTIONS(3889), - [anon_sym_AMP] = ACTIONS(3887), - [anon_sym_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(3885), - [anon_sym_GT_GT] = ACTIONS(3887), - [anon_sym_GT_GT_GT] = ACTIONS(3885), - [anon_sym_AMP_CARET] = ACTIONS(3885), - [anon_sym_AMP_AMP] = ACTIONS(3899), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_or] = ACTIONS(3871), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3837), - [anon_sym_POUND_LBRACK] = ACTIONS(3839), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(3873), - [anon_sym_BANGis] = ACTIONS(3875), - [anon_sym_in] = ACTIONS(3895), - [anon_sym_BANGin] = ACTIONS(3897), - [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(1763), - [sym_rune_literal] = ACTIONS(1763), - [anon_sym_SQUOTE] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_c_SQUOTE] = ACTIONS(1763), - [anon_sym_c_DQUOTE] = ACTIONS(1763), - [anon_sym_r_SQUOTE] = ACTIONS(1763), - [anon_sym_r_DQUOTE] = ACTIONS(1763), - [sym_pseudo_compile_time_identifier] = ACTIONS(1765), - [anon_sym_shared] = ACTIONS(1765), - [anon_sym_map_LBRACK] = ACTIONS(1763), - [anon_sym_chan] = ACTIONS(1765), - [anon_sym_thread] = ACTIONS(1765), - [anon_sym_atomic] = ACTIONS(1765), - }, - [1287] = { - [sym_line_comment] = STATE(1287), - [sym_block_comment] = STATE(1287), - [sym_type_parameters] = STATE(4063), - [sym_argument_list] = STATE(1354), - [sym_or_block] = STATE(1355), - [sym_identifier] = ACTIONS(1787), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3825), - [anon_sym_as] = ACTIONS(1787), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(3827), - [anon_sym_PIPE] = ACTIONS(3849), - [anon_sym_fn] = ACTIONS(1787), - [anon_sym_PLUS] = ACTIONS(3849), - [anon_sym_DASH] = ACTIONS(3849), - [anon_sym_STAR] = ACTIONS(3851), - [anon_sym_SLASH] = ACTIONS(3853), - [anon_sym_PERCENT] = ACTIONS(3851), - [anon_sym_LT] = ACTIONS(1787), - [anon_sym_GT] = ACTIONS(1787), - [anon_sym_EQ_EQ] = ACTIONS(1785), - [anon_sym_BANG_EQ] = ACTIONS(1785), - [anon_sym_LT_EQ] = ACTIONS(1785), - [anon_sym_GT_EQ] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_struct] = ACTIONS(1787), - [anon_sym_mut] = ACTIONS(1787), - [anon_sym_COLON] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(3831), - [anon_sym_BANG] = ACTIONS(3833), - [anon_sym_go] = ACTIONS(1787), - [anon_sym_spawn] = ACTIONS(1787), - [anon_sym_json_DOTdecode] = ACTIONS(1785), - [anon_sym_LBRACK2] = ACTIONS(3835), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(3865), - [anon_sym_AMP] = ACTIONS(3853), - [anon_sym_LT_DASH] = ACTIONS(1785), - [anon_sym_LT_LT] = ACTIONS(3851), - [anon_sym_GT_GT] = ACTIONS(3853), - [anon_sym_GT_GT_GT] = ACTIONS(3851), - [anon_sym_AMP_CARET] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(1785), - [anon_sym_PIPE_PIPE] = ACTIONS(1785), - [anon_sym_or] = ACTIONS(1787), - [sym_none] = ACTIONS(1787), - [sym_true] = ACTIONS(1787), - [sym_false] = ACTIONS(1787), - [sym_nil] = ACTIONS(1787), - [anon_sym_QMARK_DOT] = ACTIONS(3837), - [anon_sym_POUND_LBRACK] = ACTIONS(3839), - [anon_sym_if] = ACTIONS(1787), - [anon_sym_DOLLARif] = ACTIONS(1787), - [anon_sym_is] = ACTIONS(1787), - [anon_sym_BANGis] = ACTIONS(1785), - [anon_sym_in] = ACTIONS(1787), - [anon_sym_BANGin] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1787), - [anon_sym_select] = ACTIONS(1787), - [anon_sym_lock] = ACTIONS(1787), - [anon_sym_rlock] = ACTIONS(1787), - [anon_sym_unsafe] = ACTIONS(1787), - [anon_sym_sql] = ACTIONS(1787), - [sym_int_literal] = ACTIONS(1787), - [sym_float_literal] = ACTIONS(1785), - [sym_rune_literal] = ACTIONS(1785), - [anon_sym_SQUOTE] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [anon_sym_c_SQUOTE] = ACTIONS(1785), - [anon_sym_c_DQUOTE] = ACTIONS(1785), - [anon_sym_r_SQUOTE] = ACTIONS(1785), - [anon_sym_r_DQUOTE] = ACTIONS(1785), - [sym_pseudo_compile_time_identifier] = ACTIONS(1787), - [anon_sym_shared] = ACTIONS(1787), - [anon_sym_map_LBRACK] = ACTIONS(1785), - [anon_sym_chan] = ACTIONS(1787), - [anon_sym_thread] = ACTIONS(1787), - [anon_sym_atomic] = ACTIONS(1787), - }, - [1288] = { - [sym_line_comment] = STATE(1288), - [sym_block_comment] = STATE(1288), - [sym_identifier] = ACTIONS(2055), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2053), - [anon_sym_DOT] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_COMMA] = ACTIONS(2053), - [anon_sym_RBRACE] = ACTIONS(2053), - [anon_sym_LPAREN] = ACTIONS(2053), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2053), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2053), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2053), - [anon_sym_BANG_EQ] = ACTIONS(2053), - [anon_sym_LT_EQ] = ACTIONS(2053), - [anon_sym_GT_EQ] = ACTIONS(2053), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_RBRACK] = ACTIONS(2053), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_COLON] = ACTIONS(2053), - [anon_sym_PLUS_PLUS] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(2053), - [anon_sym_QMARK] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2053), - [anon_sym_LBRACK2] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2053), - [anon_sym_CARET] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_LT_DASH] = ACTIONS(2053), - [anon_sym_LT_LT] = ACTIONS(2053), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2053), - [anon_sym_AMP_CARET] = ACTIONS(2053), - [anon_sym_AMP_AMP] = ACTIONS(2053), - [anon_sym_PIPE_PIPE] = ACTIONS(2053), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(2053), - [anon_sym_POUND_LBRACK] = ACTIONS(2053), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2053), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2053), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2053), - [sym_rune_literal] = ACTIONS(2053), - [anon_sym_SQUOTE] = ACTIONS(2053), - [anon_sym_DQUOTE] = ACTIONS(2053), - [anon_sym_c_SQUOTE] = ACTIONS(2053), - [anon_sym_c_DQUOTE] = ACTIONS(2053), - [anon_sym_r_SQUOTE] = ACTIONS(2053), - [anon_sym_r_DQUOTE] = ACTIONS(2053), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2053), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), - }, - [1289] = { - [sym_line_comment] = STATE(1289), - [sym_block_comment] = STATE(1289), - [sym_type_parameters] = STATE(4063), - [sym_argument_list] = STATE(1354), - [sym_or_block] = STATE(1355), - [sym_identifier] = ACTIONS(1791), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3825), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_COMMA] = ACTIONS(1789), - [anon_sym_LPAREN] = ACTIONS(3827), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1791), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_SLASH] = ACTIONS(3887), - [anon_sym_PERCENT] = ACTIONS(3885), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1789), - [anon_sym_BANG_EQ] = ACTIONS(1789), - [anon_sym_LT_EQ] = ACTIONS(1789), - [anon_sym_GT_EQ] = ACTIONS(1789), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_RBRACK] = ACTIONS(1789), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_QMARK] = ACTIONS(3831), - [anon_sym_BANG] = ACTIONS(3833), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1789), - [anon_sym_LBRACK2] = ACTIONS(3835), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_CARET] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(3887), - [anon_sym_LT_DASH] = ACTIONS(1789), - [anon_sym_LT_LT] = ACTIONS(3885), - [anon_sym_GT_GT] = ACTIONS(3887), - [anon_sym_GT_GT_GT] = ACTIONS(3885), - [anon_sym_AMP_CARET] = ACTIONS(3885), - [anon_sym_AMP_AMP] = ACTIONS(1789), - [anon_sym_PIPE_PIPE] = ACTIONS(1789), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(3837), - [anon_sym_POUND_LBRACK] = ACTIONS(3839), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1789), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_BANGin] = ACTIONS(1789), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1789), - [sym_rune_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1789), - [anon_sym_DQUOTE] = ACTIONS(1789), - [anon_sym_c_SQUOTE] = ACTIONS(1789), - [anon_sym_c_DQUOTE] = ACTIONS(1789), - [anon_sym_r_SQUOTE] = ACTIONS(1789), - [anon_sym_r_DQUOTE] = ACTIONS(1789), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1789), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), - }, [1290] = { [sym_line_comment] = STATE(1290), [sym_block_comment] = STATE(1290), - [sym_identifier] = ACTIONS(2507), + [sym_type_parameters] = STATE(4349), + [sym_argument_list] = STATE(1357), + [sym_or_block] = STATE(1358), + [sym_identifier] = ACTIONS(1779), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2505), - [anon_sym_DOT] = ACTIONS(2507), - [anon_sym_as] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_COMMA] = ACTIONS(2505), - [anon_sym_RBRACE] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_PIPE] = ACTIONS(2507), - [anon_sym_fn] = ACTIONS(2507), - [anon_sym_PLUS] = ACTIONS(2507), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_STAR] = ACTIONS(2505), - [anon_sym_SLASH] = ACTIONS(2507), - [anon_sym_PERCENT] = ACTIONS(2505), - [anon_sym_LT] = ACTIONS(2507), - [anon_sym_GT] = ACTIONS(2507), - [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(2505), - [anon_sym_RBRACK] = ACTIONS(2505), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_mut] = ACTIONS(2507), - [anon_sym_COLON] = ACTIONS(2505), - [anon_sym_PLUS_PLUS] = ACTIONS(2505), - [anon_sym_DASH_DASH] = ACTIONS(2505), - [anon_sym_QMARK] = ACTIONS(2507), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_go] = ACTIONS(2507), - [anon_sym_spawn] = ACTIONS(2507), - [anon_sym_json_DOTdecode] = ACTIONS(2505), - [anon_sym_LBRACK2] = ACTIONS(2507), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_CARET] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2507), - [anon_sym_LT_DASH] = ACTIONS(2505), - [anon_sym_LT_LT] = ACTIONS(2505), - [anon_sym_GT_GT] = ACTIONS(2507), - [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(2507), - [sym_none] = ACTIONS(2507), - [sym_true] = ACTIONS(2507), - [sym_false] = ACTIONS(2507), - [sym_nil] = ACTIONS(2507), - [anon_sym_QMARK_DOT] = ACTIONS(2505), - [anon_sym_POUND_LBRACK] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_DOLLARif] = ACTIONS(2507), - [anon_sym_is] = ACTIONS(2507), - [anon_sym_BANGis] = ACTIONS(2505), - [anon_sym_in] = ACTIONS(2507), - [anon_sym_BANGin] = ACTIONS(2505), - [anon_sym_match] = ACTIONS(2507), - [anon_sym_select] = ACTIONS(2507), - [anon_sym_lock] = ACTIONS(2507), - [anon_sym_rlock] = ACTIONS(2507), - [anon_sym_unsafe] = ACTIONS(2507), - [anon_sym_sql] = ACTIONS(2507), - [sym_int_literal] = ACTIONS(2507), - [sym_float_literal] = ACTIONS(2505), - [sym_rune_literal] = ACTIONS(2505), - [anon_sym_SQUOTE] = ACTIONS(2505), - [anon_sym_DQUOTE] = ACTIONS(2505), - [anon_sym_c_SQUOTE] = ACTIONS(2505), - [anon_sym_c_DQUOTE] = ACTIONS(2505), - [anon_sym_r_SQUOTE] = ACTIONS(2505), - [anon_sym_r_DQUOTE] = ACTIONS(2505), - [sym_pseudo_compile_time_identifier] = ACTIONS(2507), - [anon_sym_shared] = ACTIONS(2507), - [anon_sym_map_LBRACK] = ACTIONS(2505), - [anon_sym_chan] = ACTIONS(2507), - [anon_sym_thread] = ACTIONS(2507), - [anon_sym_atomic] = ACTIONS(2507), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(1777), + [anon_sym_RBRACE] = ACTIONS(1777), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_fn] = ACTIONS(1779), + [anon_sym_PLUS] = ACTIONS(3881), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_SLASH] = ACTIONS(3885), + [anon_sym_PERCENT] = ACTIONS(3883), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_EQ_EQ] = ACTIONS(3889), + [anon_sym_BANG_EQ] = ACTIONS(3889), + [anon_sym_LT_EQ] = ACTIONS(3889), + [anon_sym_GT_EQ] = ACTIONS(3889), + [anon_sym_LBRACK] = ACTIONS(3861), + [anon_sym_struct] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_COLON] = ACTIONS(1777), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_BANG] = ACTIONS(3865), + [anon_sym_go] = ACTIONS(1779), + [anon_sym_spawn] = ACTIONS(1779), + [anon_sym_json_DOTdecode] = ACTIONS(1777), + [anon_sym_PIPE] = ACTIONS(3881), + [anon_sym_LBRACK2] = ACTIONS(3867), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_CARET] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3885), + [anon_sym_LT_DASH] = ACTIONS(1777), + [anon_sym_LT_LT] = ACTIONS(3883), + [anon_sym_GT_GT] = ACTIONS(3885), + [anon_sym_GT_GT_GT] = ACTIONS(3883), + [anon_sym_AMP_CARET] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(3899), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_or] = ACTIONS(3903), + [sym_none] = ACTIONS(1779), + [sym_true] = ACTIONS(1779), + [sym_false] = ACTIONS(1779), + [sym_nil] = ACTIONS(1779), + [anon_sym_QMARK_DOT] = ACTIONS(3869), + [anon_sym_POUND_LBRACK] = ACTIONS(3871), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1779), + [anon_sym_is] = ACTIONS(3905), + [anon_sym_BANGis] = ACTIONS(3907), + [anon_sym_in] = ACTIONS(3909), + [anon_sym_BANGin] = ACTIONS(3911), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_select] = ACTIONS(1779), + [anon_sym_lock] = ACTIONS(1779), + [anon_sym_rlock] = ACTIONS(1779), + [anon_sym_unsafe] = ACTIONS(1779), + [anon_sym_sql] = ACTIONS(1779), + [sym_int_literal] = ACTIONS(1779), + [sym_float_literal] = ACTIONS(1777), + [sym_rune_literal] = ACTIONS(1777), + [anon_sym_SQUOTE] = ACTIONS(1777), + [anon_sym_DQUOTE] = ACTIONS(1777), + [anon_sym_c_SQUOTE] = ACTIONS(1777), + [anon_sym_c_DQUOTE] = ACTIONS(1777), + [anon_sym_r_SQUOTE] = ACTIONS(1777), + [anon_sym_r_DQUOTE] = ACTIONS(1777), + [sym_pseudo_compile_time_identifier] = ACTIONS(1779), + [anon_sym_shared] = ACTIONS(1779), + [anon_sym_map_LBRACK] = ACTIONS(1777), + [anon_sym_chan] = ACTIONS(1779), + [anon_sym_thread] = ACTIONS(1779), + [anon_sym_atomic] = ACTIONS(1779), }, [1291] = { [sym_line_comment] = STATE(1291), [sym_block_comment] = STATE(1291), - [sym_type_parameters] = STATE(4063), - [sym_argument_list] = STATE(1354), - [sym_or_block] = STATE(1355), - [sym_identifier] = ACTIONS(3907), + [sym_type_parameters] = STATE(4349), + [sym_argument_list] = STATE(1357), + [sym_or_block] = STATE(1358), + [sym_identifier] = ACTIONS(1775), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3825), - [anon_sym_as] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(3909), - [anon_sym_COMMA] = ACTIONS(3911), - [anon_sym_LPAREN] = ACTIONS(3827), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_fn] = ACTIONS(3907), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_SLASH] = ACTIONS(3887), - [anon_sym_PERCENT] = ACTIONS(3885), - [anon_sym_LT] = ACTIONS(3891), - [anon_sym_GT] = ACTIONS(3891), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_RBRACK] = ACTIONS(3909), - [anon_sym_struct] = ACTIONS(3907), - [anon_sym_mut] = ACTIONS(3907), - [anon_sym_PLUS_PLUS] = ACTIONS(3861), - [anon_sym_DASH_DASH] = ACTIONS(3863), - [anon_sym_QMARK] = ACTIONS(3831), - [anon_sym_BANG] = ACTIONS(3833), - [anon_sym_go] = ACTIONS(3907), - [anon_sym_spawn] = ACTIONS(3907), - [anon_sym_json_DOTdecode] = ACTIONS(3909), - [anon_sym_LBRACK2] = ACTIONS(3835), - [anon_sym_TILDE] = ACTIONS(3909), - [anon_sym_CARET] = ACTIONS(3889), - [anon_sym_AMP] = ACTIONS(3887), - [anon_sym_LT_DASH] = ACTIONS(3909), - [anon_sym_LT_LT] = ACTIONS(3885), - [anon_sym_GT_GT] = ACTIONS(3887), - [anon_sym_GT_GT_GT] = ACTIONS(3885), - [anon_sym_AMP_CARET] = ACTIONS(3885), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_fn] = ACTIONS(1775), + [anon_sym_PLUS] = ACTIONS(3881), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_SLASH] = ACTIONS(3885), + [anon_sym_PERCENT] = ACTIONS(3883), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_EQ_EQ] = ACTIONS(3889), + [anon_sym_BANG_EQ] = ACTIONS(3889), + [anon_sym_LT_EQ] = ACTIONS(3889), + [anon_sym_GT_EQ] = ACTIONS(3889), + [anon_sym_LBRACK] = ACTIONS(3861), + [anon_sym_struct] = ACTIONS(1775), + [anon_sym_mut] = ACTIONS(1775), + [anon_sym_COLON] = ACTIONS(1773), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_BANG] = ACTIONS(3865), + [anon_sym_go] = ACTIONS(1775), + [anon_sym_spawn] = ACTIONS(1775), + [anon_sym_json_DOTdecode] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(3881), + [anon_sym_LBRACK2] = ACTIONS(3867), + [anon_sym_TILDE] = ACTIONS(1773), + [anon_sym_CARET] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3885), + [anon_sym_LT_DASH] = ACTIONS(1773), + [anon_sym_LT_LT] = ACTIONS(3883), + [anon_sym_GT_GT] = ACTIONS(3885), + [anon_sym_GT_GT_GT] = ACTIONS(3883), + [anon_sym_AMP_CARET] = ACTIONS(3883), [anon_sym_AMP_AMP] = ACTIONS(3899), - [anon_sym_PIPE_PIPE] = ACTIONS(3905), - [anon_sym_or] = ACTIONS(3871), - [sym_none] = ACTIONS(3907), - [sym_true] = ACTIONS(3907), - [sym_false] = ACTIONS(3907), - [sym_nil] = ACTIONS(3907), - [anon_sym_QMARK_DOT] = ACTIONS(3837), - [anon_sym_POUND_LBRACK] = ACTIONS(3839), - [anon_sym_if] = ACTIONS(3907), - [anon_sym_DOLLARif] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3873), - [anon_sym_BANGis] = ACTIONS(3875), - [anon_sym_in] = ACTIONS(3895), - [anon_sym_BANGin] = ACTIONS(3897), - [anon_sym_match] = ACTIONS(3907), - [anon_sym_select] = ACTIONS(3907), - [anon_sym_lock] = ACTIONS(3907), - [anon_sym_rlock] = ACTIONS(3907), - [anon_sym_unsafe] = ACTIONS(3907), - [anon_sym_sql] = ACTIONS(3907), - [sym_int_literal] = ACTIONS(3907), - [sym_float_literal] = ACTIONS(3909), - [sym_rune_literal] = ACTIONS(3909), - [anon_sym_SQUOTE] = ACTIONS(3909), - [anon_sym_DQUOTE] = ACTIONS(3909), - [anon_sym_c_SQUOTE] = ACTIONS(3909), - [anon_sym_c_DQUOTE] = ACTIONS(3909), - [anon_sym_r_SQUOTE] = ACTIONS(3909), - [anon_sym_r_DQUOTE] = ACTIONS(3909), - [sym_pseudo_compile_time_identifier] = ACTIONS(3907), - [anon_sym_shared] = ACTIONS(3907), - [anon_sym_map_LBRACK] = ACTIONS(3909), - [anon_sym_chan] = ACTIONS(3907), - [anon_sym_thread] = ACTIONS(3907), - [anon_sym_atomic] = ACTIONS(3907), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_or] = ACTIONS(3903), + [sym_none] = ACTIONS(1775), + [sym_true] = ACTIONS(1775), + [sym_false] = ACTIONS(1775), + [sym_nil] = ACTIONS(1775), + [anon_sym_QMARK_DOT] = ACTIONS(3869), + [anon_sym_POUND_LBRACK] = ACTIONS(3871), + [anon_sym_if] = ACTIONS(1775), + [anon_sym_DOLLARif] = ACTIONS(1775), + [anon_sym_is] = ACTIONS(3905), + [anon_sym_BANGis] = ACTIONS(3907), + [anon_sym_in] = ACTIONS(3909), + [anon_sym_BANGin] = ACTIONS(3911), + [anon_sym_match] = ACTIONS(1775), + [anon_sym_select] = ACTIONS(1775), + [anon_sym_lock] = ACTIONS(1775), + [anon_sym_rlock] = ACTIONS(1775), + [anon_sym_unsafe] = ACTIONS(1775), + [anon_sym_sql] = ACTIONS(1775), + [sym_int_literal] = ACTIONS(1775), + [sym_float_literal] = ACTIONS(1773), + [sym_rune_literal] = ACTIONS(1773), + [anon_sym_SQUOTE] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [anon_sym_c_SQUOTE] = ACTIONS(1773), + [anon_sym_c_DQUOTE] = ACTIONS(1773), + [anon_sym_r_SQUOTE] = ACTIONS(1773), + [anon_sym_r_DQUOTE] = ACTIONS(1773), + [sym_pseudo_compile_time_identifier] = ACTIONS(1775), + [anon_sym_shared] = ACTIONS(1775), + [anon_sym_map_LBRACK] = ACTIONS(1773), + [anon_sym_chan] = ACTIONS(1775), + [anon_sym_thread] = ACTIONS(1775), + [anon_sym_atomic] = ACTIONS(1775), }, [1292] = { [sym_line_comment] = STATE(1292), [sym_block_comment] = STATE(1292), - [sym_type_parameters] = STATE(4063), - [sym_argument_list] = STATE(1354), - [sym_or_block] = STATE(1355), - [sym_identifier] = ACTIONS(1791), + [sym_identifier] = ACTIONS(2949), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3825), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_RBRACE] = ACTIONS(1789), - [anon_sym_LPAREN] = ACTIONS(3827), - [anon_sym_PIPE] = ACTIONS(3849), - [anon_sym_fn] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(3849), - [anon_sym_DASH] = ACTIONS(3849), - [anon_sym_STAR] = ACTIONS(3851), - [anon_sym_SLASH] = ACTIONS(3853), - [anon_sym_PERCENT] = ACTIONS(3851), - [anon_sym_LT] = ACTIONS(3855), - [anon_sym_GT] = ACTIONS(3855), - [anon_sym_EQ_EQ] = ACTIONS(3857), - [anon_sym_BANG_EQ] = ACTIONS(3857), - [anon_sym_LT_EQ] = ACTIONS(3857), - [anon_sym_GT_EQ] = ACTIONS(3857), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_mut] = ACTIONS(1791), - [anon_sym_COLON] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_QMARK] = ACTIONS(3831), - [anon_sym_BANG] = ACTIONS(3833), - [anon_sym_go] = ACTIONS(1791), - [anon_sym_spawn] = ACTIONS(1791), - [anon_sym_json_DOTdecode] = ACTIONS(1789), - [anon_sym_LBRACK2] = ACTIONS(3835), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_CARET] = ACTIONS(3865), - [anon_sym_AMP] = ACTIONS(3853), - [anon_sym_LT_DASH] = ACTIONS(1789), - [anon_sym_LT_LT] = ACTIONS(3851), - [anon_sym_GT_GT] = ACTIONS(3853), - [anon_sym_GT_GT_GT] = ACTIONS(3851), - [anon_sym_AMP_CARET] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3867), - [anon_sym_PIPE_PIPE] = ACTIONS(1789), - [anon_sym_or] = ACTIONS(1791), - [sym_none] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_nil] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(3837), - [anon_sym_POUND_LBRACK] = ACTIONS(3839), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1789), - [anon_sym_in] = ACTIONS(3877), - [anon_sym_BANGin] = ACTIONS(3879), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_select] = ACTIONS(1791), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1791), - [anon_sym_sql] = ACTIONS(1791), - [sym_int_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1789), - [sym_rune_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1789), - [anon_sym_DQUOTE] = ACTIONS(1789), - [anon_sym_c_SQUOTE] = ACTIONS(1789), - [anon_sym_c_DQUOTE] = ACTIONS(1789), - [anon_sym_r_SQUOTE] = ACTIONS(1789), - [anon_sym_r_DQUOTE] = ACTIONS(1789), - [sym_pseudo_compile_time_identifier] = ACTIONS(1791), - [anon_sym_shared] = ACTIONS(1791), - [anon_sym_map_LBRACK] = ACTIONS(1789), - [anon_sym_chan] = ACTIONS(1791), - [anon_sym_thread] = ACTIONS(1791), - [anon_sym_atomic] = ACTIONS(1791), + [anon_sym_SEMI] = ACTIONS(2947), + [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_fn] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2947), + [anon_sym_SLASH] = ACTIONS(2949), + [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_PIPE] = ACTIONS(2949), + [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), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_c_SQUOTE] = ACTIONS(2947), + [anon_sym_c_DQUOTE] = ACTIONS(2947), + [anon_sym_r_SQUOTE] = ACTIONS(2947), + [anon_sym_r_DQUOTE] = 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), }, [1293] = { [sym_line_comment] = STATE(1293), [sym_block_comment] = STATE(1293), - [sym_identifier] = ACTIONS(2817), + [sym_identifier] = ACTIONS(2933), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2817), - [anon_sym_as] = ACTIONS(2817), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_COMMA] = ACTIONS(2815), - [anon_sym_RBRACE] = ACTIONS(2815), - [anon_sym_LPAREN] = ACTIONS(2815), - [anon_sym_PIPE] = ACTIONS(2817), - [anon_sym_fn] = ACTIONS(2817), - [anon_sym_PLUS] = ACTIONS(2817), - [anon_sym_DASH] = ACTIONS(2817), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_SLASH] = ACTIONS(2817), - [anon_sym_PERCENT] = ACTIONS(2815), - [anon_sym_LT] = ACTIONS(2817), - [anon_sym_GT] = ACTIONS(2817), - [anon_sym_EQ_EQ] = ACTIONS(2815), - [anon_sym_BANG_EQ] = ACTIONS(2815), - [anon_sym_LT_EQ] = ACTIONS(2815), - [anon_sym_GT_EQ] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2815), - [anon_sym_RBRACK] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(2817), - [anon_sym_mut] = ACTIONS(2817), - [anon_sym_COLON] = ACTIONS(2815), - [anon_sym_PLUS_PLUS] = ACTIONS(2815), - [anon_sym_DASH_DASH] = ACTIONS(2815), - [anon_sym_QMARK] = ACTIONS(2817), - [anon_sym_BANG] = ACTIONS(2817), - [anon_sym_go] = ACTIONS(2817), - [anon_sym_spawn] = ACTIONS(2817), - [anon_sym_json_DOTdecode] = ACTIONS(2815), - [anon_sym_LBRACK2] = ACTIONS(2817), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_CARET] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2817), - [anon_sym_LT_DASH] = ACTIONS(2815), - [anon_sym_LT_LT] = ACTIONS(2815), - [anon_sym_GT_GT] = ACTIONS(2817), - [anon_sym_GT_GT_GT] = ACTIONS(2815), - [anon_sym_AMP_CARET] = ACTIONS(2815), - [anon_sym_AMP_AMP] = ACTIONS(2815), - [anon_sym_PIPE_PIPE] = ACTIONS(2815), - [anon_sym_or] = ACTIONS(2817), - [sym_none] = ACTIONS(2817), - [sym_true] = ACTIONS(2817), - [sym_false] = ACTIONS(2817), - [sym_nil] = ACTIONS(2817), - [anon_sym_QMARK_DOT] = ACTIONS(2815), - [anon_sym_POUND_LBRACK] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_DOLLARif] = ACTIONS(2817), - [anon_sym_is] = ACTIONS(2817), - [anon_sym_BANGis] = ACTIONS(2815), - [anon_sym_in] = ACTIONS(2817), - [anon_sym_BANGin] = ACTIONS(2815), - [anon_sym_match] = ACTIONS(2817), - [anon_sym_select] = ACTIONS(2817), - [anon_sym_lock] = ACTIONS(2817), - [anon_sym_rlock] = ACTIONS(2817), - [anon_sym_unsafe] = ACTIONS(2817), - [anon_sym_sql] = ACTIONS(2817), - [sym_int_literal] = ACTIONS(2817), - [sym_float_literal] = ACTIONS(2815), - [sym_rune_literal] = ACTIONS(2815), - [anon_sym_SQUOTE] = ACTIONS(2815), - [anon_sym_DQUOTE] = ACTIONS(2815), - [anon_sym_c_SQUOTE] = ACTIONS(2815), - [anon_sym_c_DQUOTE] = ACTIONS(2815), - [anon_sym_r_SQUOTE] = ACTIONS(2815), - [anon_sym_r_DQUOTE] = ACTIONS(2815), - [sym_pseudo_compile_time_identifier] = ACTIONS(2817), - [anon_sym_shared] = ACTIONS(2817), - [anon_sym_map_LBRACK] = ACTIONS(2815), - [anon_sym_chan] = ACTIONS(2817), - [anon_sym_thread] = ACTIONS(2817), - [anon_sym_atomic] = ACTIONS(2817), + [anon_sym_SEMI] = ACTIONS(2931), + [anon_sym_DOT] = ACTIONS(2933), + [anon_sym_as] = ACTIONS(2933), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_COMMA] = ACTIONS(2931), + [anon_sym_RBRACE] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2931), + [anon_sym_fn] = ACTIONS(2933), + [anon_sym_PLUS] = ACTIONS(2933), + [anon_sym_DASH] = ACTIONS(2933), + [anon_sym_STAR] = ACTIONS(2931), + [anon_sym_SLASH] = ACTIONS(2933), + [anon_sym_PERCENT] = ACTIONS(2931), + [anon_sym_LT] = ACTIONS(2933), + [anon_sym_GT] = ACTIONS(2933), + [anon_sym_EQ_EQ] = ACTIONS(2931), + [anon_sym_BANG_EQ] = ACTIONS(2931), + [anon_sym_LT_EQ] = ACTIONS(2931), + [anon_sym_GT_EQ] = ACTIONS(2931), + [anon_sym_LBRACK] = ACTIONS(2931), + [anon_sym_RBRACK] = ACTIONS(2931), + [anon_sym_struct] = ACTIONS(2933), + [anon_sym_mut] = ACTIONS(2933), + [anon_sym_COLON] = ACTIONS(2931), + [anon_sym_PLUS_PLUS] = ACTIONS(2931), + [anon_sym_DASH_DASH] = ACTIONS(2931), + [anon_sym_QMARK] = ACTIONS(2933), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_go] = ACTIONS(2933), + [anon_sym_spawn] = ACTIONS(2933), + [anon_sym_json_DOTdecode] = ACTIONS(2931), + [anon_sym_PIPE] = ACTIONS(2933), + [anon_sym_LBRACK2] = ACTIONS(2933), + [anon_sym_TILDE] = ACTIONS(2931), + [anon_sym_CARET] = ACTIONS(2931), + [anon_sym_AMP] = ACTIONS(2933), + [anon_sym_LT_DASH] = ACTIONS(2931), + [anon_sym_LT_LT] = ACTIONS(2931), + [anon_sym_GT_GT] = ACTIONS(2933), + [anon_sym_GT_GT_GT] = ACTIONS(2931), + [anon_sym_AMP_CARET] = ACTIONS(2931), + [anon_sym_AMP_AMP] = ACTIONS(2931), + [anon_sym_PIPE_PIPE] = ACTIONS(2931), + [anon_sym_or] = ACTIONS(2933), + [sym_none] = ACTIONS(2933), + [sym_true] = ACTIONS(2933), + [sym_false] = ACTIONS(2933), + [sym_nil] = ACTIONS(2933), + [anon_sym_QMARK_DOT] = ACTIONS(2931), + [anon_sym_POUND_LBRACK] = ACTIONS(2931), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_DOLLARif] = ACTIONS(2933), + [anon_sym_is] = ACTIONS(2933), + [anon_sym_BANGis] = ACTIONS(2931), + [anon_sym_in] = ACTIONS(2933), + [anon_sym_BANGin] = ACTIONS(2931), + [anon_sym_match] = ACTIONS(2933), + [anon_sym_select] = ACTIONS(2933), + [anon_sym_lock] = ACTIONS(2933), + [anon_sym_rlock] = ACTIONS(2933), + [anon_sym_unsafe] = ACTIONS(2933), + [anon_sym_sql] = ACTIONS(2933), + [sym_int_literal] = ACTIONS(2933), + [sym_float_literal] = ACTIONS(2931), + [sym_rune_literal] = ACTIONS(2931), + [anon_sym_SQUOTE] = ACTIONS(2931), + [anon_sym_DQUOTE] = ACTIONS(2931), + [anon_sym_c_SQUOTE] = ACTIONS(2931), + [anon_sym_c_DQUOTE] = ACTIONS(2931), + [anon_sym_r_SQUOTE] = ACTIONS(2931), + [anon_sym_r_DQUOTE] = ACTIONS(2931), + [sym_pseudo_compile_time_identifier] = ACTIONS(2933), + [anon_sym_shared] = ACTIONS(2933), + [anon_sym_map_LBRACK] = ACTIONS(2931), + [anon_sym_chan] = ACTIONS(2933), + [anon_sym_thread] = ACTIONS(2933), + [anon_sym_atomic] = ACTIONS(2933), }, [1294] = { [sym_line_comment] = STATE(1294), [sym_block_comment] = STATE(1294), - [sym_identifier] = ACTIONS(2821), + [sym_identifier] = ACTIONS(2899), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [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_SLASH] = ACTIONS(2821), - [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_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), - [anon_sym_SQUOTE] = ACTIONS(2819), - [anon_sym_DQUOTE] = ACTIONS(2819), - [anon_sym_c_SQUOTE] = ACTIONS(2819), - [anon_sym_c_DQUOTE] = ACTIONS(2819), - [anon_sym_r_SQUOTE] = ACTIONS(2819), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_SEMI] = ACTIONS(2897), + [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_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_PIPE] = ACTIONS(2899), + [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), + [anon_sym_SQUOTE] = ACTIONS(2897), + [anon_sym_DQUOTE] = ACTIONS(2897), + [anon_sym_c_SQUOTE] = ACTIONS(2897), + [anon_sym_c_DQUOTE] = ACTIONS(2897), + [anon_sym_r_SQUOTE] = ACTIONS(2897), + [anon_sym_r_DQUOTE] = 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), }, [1295] = { [sym_line_comment] = STATE(1295), [sym_block_comment] = STATE(1295), - [sym_identifier] = ACTIONS(2801), + [sym_identifier] = ACTIONS(2079), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2801), - [anon_sym_as] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_COMMA] = ACTIONS(2799), - [anon_sym_RBRACE] = ACTIONS(2799), - [anon_sym_LPAREN] = ACTIONS(2799), - [anon_sym_PIPE] = ACTIONS(2801), - [anon_sym_fn] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_SLASH] = ACTIONS(2801), - [anon_sym_PERCENT] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(2801), - [anon_sym_GT] = ACTIONS(2801), - [anon_sym_EQ_EQ] = ACTIONS(2799), - [anon_sym_BANG_EQ] = ACTIONS(2799), - [anon_sym_LT_EQ] = ACTIONS(2799), - [anon_sym_GT_EQ] = ACTIONS(2799), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_RBRACK] = ACTIONS(2799), - [anon_sym_struct] = ACTIONS(2801), - [anon_sym_mut] = ACTIONS(2801), - [anon_sym_COLON] = ACTIONS(2799), - [anon_sym_PLUS_PLUS] = ACTIONS(2799), - [anon_sym_DASH_DASH] = ACTIONS(2799), - [anon_sym_QMARK] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_go] = ACTIONS(2801), - [anon_sym_spawn] = ACTIONS(2801), - [anon_sym_json_DOTdecode] = ACTIONS(2799), - [anon_sym_LBRACK2] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2799), - [anon_sym_CARET] = ACTIONS(2799), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_LT_DASH] = ACTIONS(2799), - [anon_sym_LT_LT] = ACTIONS(2799), - [anon_sym_GT_GT] = ACTIONS(2801), - [anon_sym_GT_GT_GT] = ACTIONS(2799), - [anon_sym_AMP_CARET] = ACTIONS(2799), - [anon_sym_AMP_AMP] = ACTIONS(2799), - [anon_sym_PIPE_PIPE] = ACTIONS(2799), - [anon_sym_or] = ACTIONS(2801), - [sym_none] = ACTIONS(2801), - [sym_true] = ACTIONS(2801), - [sym_false] = ACTIONS(2801), - [sym_nil] = ACTIONS(2801), - [anon_sym_QMARK_DOT] = ACTIONS(2799), - [anon_sym_POUND_LBRACK] = ACTIONS(2799), - [anon_sym_if] = ACTIONS(2801), - [anon_sym_DOLLARif] = ACTIONS(2801), - [anon_sym_is] = ACTIONS(2801), - [anon_sym_BANGis] = ACTIONS(2799), - [anon_sym_in] = ACTIONS(2801), - [anon_sym_BANGin] = ACTIONS(2799), - [anon_sym_match] = ACTIONS(2801), - [anon_sym_select] = ACTIONS(2801), - [anon_sym_lock] = ACTIONS(2801), - [anon_sym_rlock] = ACTIONS(2801), - [anon_sym_unsafe] = ACTIONS(2801), - [anon_sym_sql] = ACTIONS(2801), - [sym_int_literal] = ACTIONS(2801), - [sym_float_literal] = ACTIONS(2799), - [sym_rune_literal] = ACTIONS(2799), - [anon_sym_SQUOTE] = ACTIONS(2799), - [anon_sym_DQUOTE] = ACTIONS(2799), - [anon_sym_c_SQUOTE] = ACTIONS(2799), - [anon_sym_c_DQUOTE] = ACTIONS(2799), - [anon_sym_r_SQUOTE] = ACTIONS(2799), - [anon_sym_r_DQUOTE] = ACTIONS(2799), - [sym_pseudo_compile_time_identifier] = ACTIONS(2801), - [anon_sym_shared] = ACTIONS(2801), - [anon_sym_map_LBRACK] = ACTIONS(2799), - [anon_sym_chan] = ACTIONS(2801), - [anon_sym_thread] = ACTIONS(2801), - [anon_sym_atomic] = ACTIONS(2801), + [anon_sym_DOT] = ACTIONS(2079), + [anon_sym_as] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_COMMA] = ACTIONS(2077), + [anon_sym_RBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_fn] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(2077), + [anon_sym_SLASH] = ACTIONS(2079), + [anon_sym_PERCENT] = ACTIONS(2077), + [anon_sym_LT] = ACTIONS(2079), + [anon_sym_GT] = ACTIONS(2079), + [anon_sym_EQ_EQ] = ACTIONS(2077), + [anon_sym_BANG_EQ] = ACTIONS(2077), + [anon_sym_LT_EQ] = ACTIONS(2077), + [anon_sym_GT_EQ] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2077), + [anon_sym_RBRACK] = ACTIONS(2077), + [anon_sym_struct] = ACTIONS(2079), + [anon_sym_mut] = ACTIONS(2079), + [anon_sym_COLON] = ACTIONS(2077), + [anon_sym_PLUS_PLUS] = ACTIONS(2077), + [anon_sym_DASH_DASH] = ACTIONS(2077), + [anon_sym_QMARK] = ACTIONS(2079), + [anon_sym_BANG] = ACTIONS(2079), + [anon_sym_go] = ACTIONS(2079), + [anon_sym_spawn] = ACTIONS(2079), + [anon_sym_json_DOTdecode] = ACTIONS(2077), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2079), + [anon_sym_TILDE] = ACTIONS(2077), + [anon_sym_CARET] = ACTIONS(2077), + [anon_sym_AMP] = ACTIONS(2079), + [anon_sym_LT_DASH] = ACTIONS(2077), + [anon_sym_LT_LT] = ACTIONS(2077), + [anon_sym_GT_GT] = ACTIONS(2079), + [anon_sym_GT_GT_GT] = ACTIONS(2077), + [anon_sym_AMP_CARET] = ACTIONS(2077), + [anon_sym_AMP_AMP] = ACTIONS(2077), + [anon_sym_PIPE_PIPE] = ACTIONS(2077), + [anon_sym_or] = ACTIONS(2079), + [sym_none] = ACTIONS(2079), + [sym_true] = ACTIONS(2079), + [sym_false] = ACTIONS(2079), + [sym_nil] = ACTIONS(2079), + [anon_sym_QMARK_DOT] = ACTIONS(2077), + [anon_sym_POUND_LBRACK] = ACTIONS(2077), + [anon_sym_if] = ACTIONS(2079), + [anon_sym_DOLLARif] = ACTIONS(2079), + [anon_sym_DOLLARelse] = ACTIONS(3943), + [anon_sym_is] = ACTIONS(2079), + [anon_sym_BANGis] = ACTIONS(2077), + [anon_sym_in] = ACTIONS(2079), + [anon_sym_BANGin] = ACTIONS(2077), + [anon_sym_match] = ACTIONS(2079), + [anon_sym_select] = ACTIONS(2079), + [anon_sym_lock] = ACTIONS(2079), + [anon_sym_rlock] = ACTIONS(2079), + [anon_sym_unsafe] = ACTIONS(2079), + [anon_sym_sql] = ACTIONS(2079), + [sym_int_literal] = ACTIONS(2079), + [sym_float_literal] = ACTIONS(2077), + [sym_rune_literal] = ACTIONS(2077), + [anon_sym_SQUOTE] = ACTIONS(2077), + [anon_sym_DQUOTE] = ACTIONS(2077), + [anon_sym_c_SQUOTE] = ACTIONS(2077), + [anon_sym_c_DQUOTE] = ACTIONS(2077), + [anon_sym_r_SQUOTE] = ACTIONS(2077), + [anon_sym_r_DQUOTE] = ACTIONS(2077), + [sym_pseudo_compile_time_identifier] = ACTIONS(2079), + [anon_sym_shared] = ACTIONS(2079), + [anon_sym_map_LBRACK] = ACTIONS(2077), + [anon_sym_chan] = ACTIONS(2079), + [anon_sym_thread] = ACTIONS(2079), + [anon_sym_atomic] = ACTIONS(2079), }, [1296] = { [sym_line_comment] = STATE(1296), [sym_block_comment] = STATE(1296), - [sym_identifier] = ACTIONS(2427), + [sym_identifier] = ACTIONS(1837), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2427), - [anon_sym_as] = ACTIONS(2427), - [anon_sym_LBRACE] = ACTIONS(2425), - [anon_sym_COMMA] = ACTIONS(2425), - [anon_sym_RBRACE] = ACTIONS(2425), - [anon_sym_LPAREN] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(2427), - [anon_sym_fn] = ACTIONS(2427), - [anon_sym_PLUS] = ACTIONS(2427), - [anon_sym_DASH] = ACTIONS(2427), - [anon_sym_STAR] = ACTIONS(2425), - [anon_sym_SLASH] = ACTIONS(2427), - [anon_sym_PERCENT] = ACTIONS(2425), - [anon_sym_LT] = ACTIONS(2427), - [anon_sym_GT] = ACTIONS(2427), - [anon_sym_EQ_EQ] = ACTIONS(2425), - [anon_sym_BANG_EQ] = ACTIONS(2425), - [anon_sym_LT_EQ] = ACTIONS(2425), - [anon_sym_GT_EQ] = ACTIONS(2425), - [anon_sym_LBRACK] = ACTIONS(2425), - [anon_sym_RBRACK] = ACTIONS(2425), - [anon_sym_struct] = ACTIONS(2427), - [anon_sym_mut] = ACTIONS(2427), - [anon_sym_COLON] = ACTIONS(2425), - [anon_sym_PLUS_PLUS] = ACTIONS(2425), - [anon_sym_DASH_DASH] = ACTIONS(2425), - [anon_sym_QMARK] = ACTIONS(2427), - [anon_sym_BANG] = ACTIONS(2427), - [anon_sym_go] = ACTIONS(2427), - [anon_sym_spawn] = ACTIONS(2427), - [anon_sym_json_DOTdecode] = ACTIONS(2425), - [anon_sym_LBRACK2] = ACTIONS(2427), - [anon_sym_TILDE] = ACTIONS(2425), - [anon_sym_CARET] = ACTIONS(2425), - [anon_sym_AMP] = ACTIONS(2427), - [anon_sym_LT_DASH] = ACTIONS(2425), - [anon_sym_LT_LT] = ACTIONS(2425), - [anon_sym_GT_GT] = ACTIONS(2427), - [anon_sym_GT_GT_GT] = ACTIONS(2425), - [anon_sym_AMP_CARET] = ACTIONS(2425), - [anon_sym_AMP_AMP] = ACTIONS(2425), - [anon_sym_PIPE_PIPE] = ACTIONS(2425), - [anon_sym_or] = ACTIONS(2427), - [sym_none] = ACTIONS(2427), - [sym_true] = ACTIONS(2427), - [sym_false] = ACTIONS(2427), - [sym_nil] = ACTIONS(2427), - [anon_sym_QMARK_DOT] = ACTIONS(2425), - [anon_sym_POUND_LBRACK] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2427), - [anon_sym_DOLLARif] = ACTIONS(2427), - [anon_sym_is] = ACTIONS(2427), - [anon_sym_BANGis] = ACTIONS(2425), - [anon_sym_in] = ACTIONS(2427), - [anon_sym_BANGin] = ACTIONS(2425), - [anon_sym_match] = ACTIONS(2427), - [anon_sym_select] = ACTIONS(2427), - [anon_sym_lock] = ACTIONS(2427), - [anon_sym_rlock] = ACTIONS(2427), - [anon_sym_unsafe] = ACTIONS(2427), - [anon_sym_sql] = ACTIONS(2427), - [sym_int_literal] = ACTIONS(2427), - [sym_float_literal] = ACTIONS(2425), - [sym_rune_literal] = ACTIONS(2425), - [anon_sym_SQUOTE] = ACTIONS(2425), - [anon_sym_DQUOTE] = ACTIONS(2425), - [anon_sym_c_SQUOTE] = ACTIONS(2425), - [anon_sym_c_DQUOTE] = ACTIONS(2425), - [anon_sym_r_SQUOTE] = ACTIONS(2425), - [anon_sym_r_DQUOTE] = ACTIONS(2425), - [sym_pseudo_compile_time_identifier] = ACTIONS(2427), - [anon_sym_shared] = ACTIONS(2427), - [anon_sym_map_LBRACK] = ACTIONS(2425), - [anon_sym_chan] = ACTIONS(2427), - [anon_sym_thread] = ACTIONS(2427), - [anon_sym_atomic] = ACTIONS(2427), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_as] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_COMMA] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1835), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1835), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1835), + [anon_sym_BANG_EQ] = ACTIONS(1835), + [anon_sym_LT_EQ] = ACTIONS(1835), + [anon_sym_GT_EQ] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_RBRACK] = ACTIONS(1835), + [anon_sym_struct] = ACTIONS(1837), + [anon_sym_mut] = ACTIONS(1837), + [anon_sym_COLON] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_QMARK] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_go] = ACTIONS(1837), + [anon_sym_spawn] = ACTIONS(1837), + [anon_sym_json_DOTdecode] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_LBRACK2] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1835), + [anon_sym_LT_LT] = ACTIONS(1835), + [anon_sym_GT_GT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1835), + [anon_sym_AMP_CARET] = ACTIONS(1835), + [anon_sym_AMP_AMP] = ACTIONS(1835), + [anon_sym_PIPE_PIPE] = ACTIONS(1835), + [anon_sym_or] = ACTIONS(1837), + [sym_none] = ACTIONS(1837), + [sym_true] = ACTIONS(1837), + [sym_false] = ACTIONS(1837), + [sym_nil] = ACTIONS(1837), + [anon_sym_QMARK_DOT] = ACTIONS(1835), + [anon_sym_POUND_LBRACK] = ACTIONS(1835), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_else] = ACTIONS(1837), + [anon_sym_DOLLARif] = ACTIONS(1837), + [anon_sym_is] = ACTIONS(1837), + [anon_sym_BANGis] = ACTIONS(1835), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_BANGin] = ACTIONS(1835), + [anon_sym_match] = ACTIONS(1837), + [anon_sym_select] = ACTIONS(1837), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1837), + [anon_sym_sql] = ACTIONS(1837), + [sym_int_literal] = ACTIONS(1837), + [sym_float_literal] = ACTIONS(1835), + [sym_rune_literal] = ACTIONS(1835), + [anon_sym_SQUOTE] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(1835), + [anon_sym_c_SQUOTE] = ACTIONS(1835), + [anon_sym_c_DQUOTE] = ACTIONS(1835), + [anon_sym_r_SQUOTE] = ACTIONS(1835), + [anon_sym_r_DQUOTE] = ACTIONS(1835), + [sym_pseudo_compile_time_identifier] = ACTIONS(1837), + [anon_sym_shared] = ACTIONS(1837), + [anon_sym_map_LBRACK] = ACTIONS(1835), + [anon_sym_chan] = ACTIONS(1837), + [anon_sym_thread] = ACTIONS(1837), + [anon_sym_atomic] = ACTIONS(1837), }, [1297] = { [sym_line_comment] = STATE(1297), [sym_block_comment] = STATE(1297), - [sym_identifier] = ACTIONS(2809), + [sym_identifier] = ACTIONS(2111), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2809), - [anon_sym_as] = ACTIONS(2809), - [anon_sym_LBRACE] = ACTIONS(2807), - [anon_sym_COMMA] = ACTIONS(2807), - [anon_sym_RBRACE] = ACTIONS(2807), - [anon_sym_LPAREN] = ACTIONS(2807), - [anon_sym_PIPE] = ACTIONS(2809), - [anon_sym_fn] = ACTIONS(2809), - [anon_sym_PLUS] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2807), - [anon_sym_SLASH] = ACTIONS(2809), - [anon_sym_PERCENT] = ACTIONS(2807), - [anon_sym_LT] = ACTIONS(2809), - [anon_sym_GT] = ACTIONS(2809), - [anon_sym_EQ_EQ] = ACTIONS(2807), - [anon_sym_BANG_EQ] = ACTIONS(2807), - [anon_sym_LT_EQ] = ACTIONS(2807), - [anon_sym_GT_EQ] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_RBRACK] = ACTIONS(2807), - [anon_sym_struct] = ACTIONS(2809), - [anon_sym_mut] = ACTIONS(2809), - [anon_sym_COLON] = ACTIONS(2807), - [anon_sym_PLUS_PLUS] = ACTIONS(2807), - [anon_sym_DASH_DASH] = ACTIONS(2807), - [anon_sym_QMARK] = ACTIONS(2809), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_go] = ACTIONS(2809), - [anon_sym_spawn] = ACTIONS(2809), - [anon_sym_json_DOTdecode] = ACTIONS(2807), - [anon_sym_LBRACK2] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2807), - [anon_sym_CARET] = ACTIONS(2807), - [anon_sym_AMP] = ACTIONS(2809), - [anon_sym_LT_DASH] = ACTIONS(2807), - [anon_sym_LT_LT] = ACTIONS(2807), - [anon_sym_GT_GT] = ACTIONS(2809), - [anon_sym_GT_GT_GT] = ACTIONS(2807), - [anon_sym_AMP_CARET] = ACTIONS(2807), - [anon_sym_AMP_AMP] = ACTIONS(2807), - [anon_sym_PIPE_PIPE] = ACTIONS(2807), - [anon_sym_or] = ACTIONS(2809), - [sym_none] = ACTIONS(2809), - [sym_true] = ACTIONS(2809), - [sym_false] = ACTIONS(2809), - [sym_nil] = ACTIONS(2809), - [anon_sym_QMARK_DOT] = ACTIONS(2807), - [anon_sym_POUND_LBRACK] = ACTIONS(2807), - [anon_sym_if] = ACTIONS(2809), - [anon_sym_DOLLARif] = ACTIONS(2809), - [anon_sym_is] = ACTIONS(2809), - [anon_sym_BANGis] = ACTIONS(2807), - [anon_sym_in] = ACTIONS(2809), - [anon_sym_BANGin] = ACTIONS(2807), - [anon_sym_match] = ACTIONS(2809), - [anon_sym_select] = ACTIONS(2809), - [anon_sym_lock] = ACTIONS(2809), - [anon_sym_rlock] = ACTIONS(2809), - [anon_sym_unsafe] = ACTIONS(2809), - [anon_sym_sql] = ACTIONS(2809), - [sym_int_literal] = ACTIONS(2809), - [sym_float_literal] = ACTIONS(2807), - [sym_rune_literal] = ACTIONS(2807), - [anon_sym_SQUOTE] = ACTIONS(2807), - [anon_sym_DQUOTE] = ACTIONS(2807), - [anon_sym_c_SQUOTE] = ACTIONS(2807), - [anon_sym_c_DQUOTE] = ACTIONS(2807), - [anon_sym_r_SQUOTE] = ACTIONS(2807), - [anon_sym_r_DQUOTE] = ACTIONS(2807), - [sym_pseudo_compile_time_identifier] = ACTIONS(2809), - [anon_sym_shared] = ACTIONS(2809), - [anon_sym_map_LBRACK] = ACTIONS(2807), - [anon_sym_chan] = ACTIONS(2809), - [anon_sym_thread] = ACTIONS(2809), - [anon_sym_atomic] = ACTIONS(2809), + [anon_sym_DOT] = ACTIONS(2111), + [anon_sym_as] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_COMMA] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_fn] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(2109), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_PERCENT] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_GT] = ACTIONS(2111), + [anon_sym_EQ_EQ] = ACTIONS(2109), + [anon_sym_BANG_EQ] = ACTIONS(2109), + [anon_sym_LT_EQ] = ACTIONS(2109), + [anon_sym_GT_EQ] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_RBRACK] = ACTIONS(2109), + [anon_sym_struct] = ACTIONS(2111), + [anon_sym_mut] = ACTIONS(2111), + [anon_sym_COLON] = ACTIONS(2109), + [anon_sym_PLUS_PLUS] = ACTIONS(2109), + [anon_sym_DASH_DASH] = ACTIONS(2109), + [anon_sym_QMARK] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_go] = ACTIONS(2111), + [anon_sym_spawn] = ACTIONS(2111), + [anon_sym_json_DOTdecode] = ACTIONS(2109), + [anon_sym_PIPE] = ACTIONS(2111), + [anon_sym_LBRACK2] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2111), + [anon_sym_LT_DASH] = ACTIONS(2109), + [anon_sym_LT_LT] = ACTIONS(2109), + [anon_sym_GT_GT] = ACTIONS(2111), + [anon_sym_GT_GT_GT] = ACTIONS(2109), + [anon_sym_AMP_CARET] = ACTIONS(2109), + [anon_sym_AMP_AMP] = ACTIONS(2109), + [anon_sym_PIPE_PIPE] = ACTIONS(2109), + [anon_sym_or] = ACTIONS(2111), + [sym_none] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_nil] = ACTIONS(2111), + [anon_sym_QMARK_DOT] = ACTIONS(2109), + [anon_sym_POUND_LBRACK] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_DOLLARif] = ACTIONS(2111), + [anon_sym_is] = ACTIONS(2111), + [anon_sym_BANGis] = ACTIONS(2109), + [anon_sym_in] = ACTIONS(2111), + [anon_sym_BANGin] = ACTIONS(2109), + [anon_sym_match] = ACTIONS(2111), + [anon_sym_select] = ACTIONS(2111), + [anon_sym_lock] = ACTIONS(2111), + [anon_sym_rlock] = ACTIONS(2111), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(2111), + [sym_int_literal] = ACTIONS(2111), + [sym_float_literal] = ACTIONS(2109), + [sym_rune_literal] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_c_SQUOTE] = ACTIONS(2109), + [anon_sym_c_DQUOTE] = ACTIONS(2109), + [anon_sym_r_SQUOTE] = ACTIONS(2109), + [anon_sym_r_DQUOTE] = ACTIONS(2109), + [sym_pseudo_compile_time_identifier] = ACTIONS(2111), + [anon_sym_shared] = ACTIONS(2111), + [anon_sym_map_LBRACK] = ACTIONS(2109), + [anon_sym_chan] = ACTIONS(2111), + [anon_sym_thread] = ACTIONS(2111), + [anon_sym_atomic] = ACTIONS(2111), }, [1298] = { [sym_line_comment] = STATE(1298), [sym_block_comment] = STATE(1298), - [sym_identifier] = ACTIONS(2859), + [sym_identifier] = ACTIONS(2709), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2859), - [anon_sym_as] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2857), - [anon_sym_COMMA] = ACTIONS(2857), - [anon_sym_RBRACE] = ACTIONS(2857), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_PIPE] = ACTIONS(2859), - [anon_sym_fn] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2857), - [anon_sym_SLASH] = ACTIONS(2859), - [anon_sym_PERCENT] = ACTIONS(2857), - [anon_sym_LT] = ACTIONS(2859), - [anon_sym_GT] = ACTIONS(2859), - [anon_sym_EQ_EQ] = ACTIONS(2857), - [anon_sym_BANG_EQ] = ACTIONS(2857), - [anon_sym_LT_EQ] = ACTIONS(2857), - [anon_sym_GT_EQ] = ACTIONS(2857), - [anon_sym_LBRACK] = ACTIONS(2857), - [anon_sym_RBRACK] = ACTIONS(2857), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_mut] = ACTIONS(2859), - [anon_sym_COLON] = ACTIONS(2857), - [anon_sym_PLUS_PLUS] = ACTIONS(2857), - [anon_sym_DASH_DASH] = ACTIONS(2857), - [anon_sym_QMARK] = ACTIONS(2859), - [anon_sym_BANG] = ACTIONS(2859), - [anon_sym_go] = ACTIONS(2859), - [anon_sym_spawn] = ACTIONS(2859), - [anon_sym_json_DOTdecode] = ACTIONS(2857), - [anon_sym_LBRACK2] = ACTIONS(2859), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_CARET] = ACTIONS(2857), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_LT_DASH] = ACTIONS(2857), - [anon_sym_LT_LT] = ACTIONS(2857), - [anon_sym_GT_GT] = ACTIONS(2859), - [anon_sym_GT_GT_GT] = ACTIONS(2857), - [anon_sym_AMP_CARET] = ACTIONS(2857), - [anon_sym_AMP_AMP] = ACTIONS(2857), - [anon_sym_PIPE_PIPE] = ACTIONS(2857), - [anon_sym_or] = ACTIONS(2859), - [sym_none] = ACTIONS(2859), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [sym_nil] = ACTIONS(2859), - [anon_sym_QMARK_DOT] = ACTIONS(2857), - [anon_sym_POUND_LBRACK] = ACTIONS(2857), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_DOLLARif] = ACTIONS(2859), - [anon_sym_is] = ACTIONS(2859), - [anon_sym_BANGis] = ACTIONS(2857), - [anon_sym_in] = ACTIONS(2859), - [anon_sym_BANGin] = ACTIONS(2857), - [anon_sym_match] = ACTIONS(2859), - [anon_sym_select] = ACTIONS(2859), - [anon_sym_lock] = ACTIONS(2859), - [anon_sym_rlock] = ACTIONS(2859), - [anon_sym_unsafe] = ACTIONS(2859), - [anon_sym_sql] = ACTIONS(2859), - [sym_int_literal] = ACTIONS(2859), - [sym_float_literal] = ACTIONS(2857), - [sym_rune_literal] = ACTIONS(2857), - [anon_sym_SQUOTE] = ACTIONS(2857), - [anon_sym_DQUOTE] = ACTIONS(2857), - [anon_sym_c_SQUOTE] = ACTIONS(2857), - [anon_sym_c_DQUOTE] = ACTIONS(2857), - [anon_sym_r_SQUOTE] = ACTIONS(2857), - [anon_sym_r_DQUOTE] = ACTIONS(2857), - [sym_pseudo_compile_time_identifier] = ACTIONS(2859), - [anon_sym_shared] = ACTIONS(2859), - [anon_sym_map_LBRACK] = ACTIONS(2857), - [anon_sym_chan] = ACTIONS(2859), - [anon_sym_thread] = ACTIONS(2859), - [anon_sym_atomic] = ACTIONS(2859), + [anon_sym_DOT] = ACTIONS(2709), + [anon_sym_as] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2707), + [anon_sym_COMMA] = ACTIONS(2707), + [anon_sym_RBRACE] = ACTIONS(2707), + [anon_sym_LPAREN] = ACTIONS(2707), + [anon_sym_fn] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2707), + [anon_sym_SLASH] = ACTIONS(2709), + [anon_sym_PERCENT] = ACTIONS(2707), + [anon_sym_LT] = ACTIONS(2709), + [anon_sym_GT] = ACTIONS(2709), + [anon_sym_EQ_EQ] = ACTIONS(2707), + [anon_sym_BANG_EQ] = ACTIONS(2707), + [anon_sym_LT_EQ] = ACTIONS(2707), + [anon_sym_GT_EQ] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2707), + [anon_sym_RBRACK] = ACTIONS(2707), + [anon_sym_struct] = ACTIONS(2709), + [anon_sym_mut] = ACTIONS(2709), + [anon_sym_COLON] = ACTIONS(2707), + [anon_sym_PLUS_PLUS] = ACTIONS(2707), + [anon_sym_DASH_DASH] = ACTIONS(2707), + [anon_sym_QMARK] = ACTIONS(2709), + [anon_sym_BANG] = ACTIONS(2709), + [anon_sym_go] = ACTIONS(2709), + [anon_sym_spawn] = ACTIONS(2709), + [anon_sym_json_DOTdecode] = ACTIONS(2707), + [anon_sym_PIPE] = ACTIONS(2709), + [anon_sym_LBRACK2] = ACTIONS(2709), + [anon_sym_TILDE] = ACTIONS(2707), + [anon_sym_CARET] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_LT_DASH] = ACTIONS(2707), + [anon_sym_LT_LT] = ACTIONS(2707), + [anon_sym_GT_GT] = ACTIONS(2709), + [anon_sym_GT_GT_GT] = ACTIONS(2707), + [anon_sym_AMP_CARET] = ACTIONS(2707), + [anon_sym_AMP_AMP] = ACTIONS(2707), + [anon_sym_PIPE_PIPE] = ACTIONS(2707), + [anon_sym_or] = ACTIONS(2709), + [sym_none] = ACTIONS(2709), + [sym_true] = ACTIONS(2709), + [sym_false] = ACTIONS(2709), + [sym_nil] = ACTIONS(2709), + [anon_sym_QMARK_DOT] = ACTIONS(2707), + [anon_sym_POUND_LBRACK] = ACTIONS(2707), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_DOLLARif] = ACTIONS(2709), + [anon_sym_is] = ACTIONS(2709), + [anon_sym_BANGis] = ACTIONS(2707), + [anon_sym_in] = ACTIONS(2709), + [anon_sym_BANGin] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(2709), + [anon_sym_select] = ACTIONS(2709), + [anon_sym_lock] = ACTIONS(2709), + [anon_sym_rlock] = ACTIONS(2709), + [anon_sym_unsafe] = ACTIONS(2709), + [anon_sym_sql] = ACTIONS(2709), + [sym_int_literal] = ACTIONS(2709), + [sym_float_literal] = ACTIONS(2707), + [sym_rune_literal] = ACTIONS(2707), + [anon_sym_SQUOTE] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2707), + [anon_sym_c_SQUOTE] = ACTIONS(2707), + [anon_sym_c_DQUOTE] = ACTIONS(2707), + [anon_sym_r_SQUOTE] = ACTIONS(2707), + [anon_sym_r_DQUOTE] = ACTIONS(2707), + [sym_pseudo_compile_time_identifier] = ACTIONS(2709), + [anon_sym_shared] = ACTIONS(2709), + [anon_sym_map_LBRACK] = ACTIONS(2707), + [anon_sym_chan] = ACTIONS(2709), + [anon_sym_thread] = ACTIONS(2709), + [anon_sym_atomic] = ACTIONS(2709), }, [1299] = { [sym_line_comment] = STATE(1299), [sym_block_comment] = STATE(1299), - [sym_identifier] = ACTIONS(1899), + [sym_identifier] = ACTIONS(2749), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1899), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_COMMA] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_fn] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1897), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1897), - [anon_sym_BANG_EQ] = ACTIONS(1897), - [anon_sym_LT_EQ] = ACTIONS(1897), - [anon_sym_GT_EQ] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_RBRACK] = ACTIONS(1897), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_mut] = ACTIONS(1899), - [anon_sym_COLON] = ACTIONS(1897), - [anon_sym_PLUS_PLUS] = ACTIONS(1897), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [anon_sym_QMARK] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_go] = ACTIONS(1899), - [anon_sym_spawn] = ACTIONS(1899), - [anon_sym_json_DOTdecode] = ACTIONS(1897), - [anon_sym_LBRACK2] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_LT_DASH] = ACTIONS(1897), - [anon_sym_LT_LT] = ACTIONS(1897), - [anon_sym_GT_GT] = ACTIONS(1899), - [anon_sym_GT_GT_GT] = ACTIONS(1897), - [anon_sym_AMP_CARET] = ACTIONS(1897), - [anon_sym_AMP_AMP] = ACTIONS(1897), - [anon_sym_PIPE_PIPE] = ACTIONS(1897), - [anon_sym_or] = ACTIONS(1899), - [sym_none] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_nil] = ACTIONS(1899), - [anon_sym_QMARK_DOT] = ACTIONS(1897), - [anon_sym_POUND_LBRACK] = ACTIONS(1897), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_DOLLARif] = ACTIONS(1899), - [anon_sym_is] = ACTIONS(1899), - [anon_sym_BANGis] = ACTIONS(1897), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_BANGin] = ACTIONS(1897), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_select] = ACTIONS(1899), - [anon_sym_lock] = ACTIONS(1899), - [anon_sym_rlock] = ACTIONS(1899), - [anon_sym_unsafe] = ACTIONS(1899), - [anon_sym_sql] = ACTIONS(1899), - [sym_int_literal] = ACTIONS(1899), - [sym_float_literal] = ACTIONS(1897), - [sym_rune_literal] = ACTIONS(1897), - [anon_sym_SQUOTE] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(1897), - [anon_sym_c_SQUOTE] = ACTIONS(1897), - [anon_sym_c_DQUOTE] = ACTIONS(1897), - [anon_sym_r_SQUOTE] = ACTIONS(1897), - [anon_sym_r_DQUOTE] = ACTIONS(1897), - [sym_pseudo_compile_time_identifier] = ACTIONS(1899), - [anon_sym_shared] = ACTIONS(1899), - [anon_sym_map_LBRACK] = ACTIONS(1897), - [anon_sym_chan] = ACTIONS(1899), - [anon_sym_thread] = ACTIONS(1899), - [anon_sym_atomic] = ACTIONS(1899), + [anon_sym_DOT] = ACTIONS(2749), + [anon_sym_as] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(2747), + [anon_sym_COMMA] = ACTIONS(2747), + [anon_sym_RBRACE] = ACTIONS(2747), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_fn] = ACTIONS(2749), + [anon_sym_PLUS] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2749), + [anon_sym_STAR] = ACTIONS(2747), + [anon_sym_SLASH] = ACTIONS(2749), + [anon_sym_PERCENT] = ACTIONS(2747), + [anon_sym_LT] = ACTIONS(2749), + [anon_sym_GT] = ACTIONS(2749), + [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(2747), + [anon_sym_RBRACK] = ACTIONS(2747), + [anon_sym_struct] = ACTIONS(2749), + [anon_sym_mut] = ACTIONS(2749), + [anon_sym_COLON] = ACTIONS(2747), + [anon_sym_PLUS_PLUS] = ACTIONS(2747), + [anon_sym_DASH_DASH] = ACTIONS(2747), + [anon_sym_QMARK] = ACTIONS(2749), + [anon_sym_BANG] = ACTIONS(2749), + [anon_sym_go] = ACTIONS(2749), + [anon_sym_spawn] = ACTIONS(2749), + [anon_sym_json_DOTdecode] = ACTIONS(2747), + [anon_sym_PIPE] = ACTIONS(2749), + [anon_sym_LBRACK2] = ACTIONS(2749), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_CARET] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2749), + [anon_sym_LT_DASH] = ACTIONS(2747), + [anon_sym_LT_LT] = ACTIONS(2747), + [anon_sym_GT_GT] = ACTIONS(2749), + [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(2749), + [sym_none] = ACTIONS(2749), + [sym_true] = ACTIONS(2749), + [sym_false] = ACTIONS(2749), + [sym_nil] = ACTIONS(2749), + [anon_sym_QMARK_DOT] = ACTIONS(2747), + [anon_sym_POUND_LBRACK] = ACTIONS(2747), + [anon_sym_if] = ACTIONS(2749), + [anon_sym_DOLLARif] = ACTIONS(2749), + [anon_sym_is] = ACTIONS(2749), + [anon_sym_BANGis] = ACTIONS(2747), + [anon_sym_in] = ACTIONS(2749), + [anon_sym_BANGin] = ACTIONS(2747), + [anon_sym_match] = ACTIONS(2749), + [anon_sym_select] = ACTIONS(2749), + [anon_sym_lock] = ACTIONS(2749), + [anon_sym_rlock] = ACTIONS(2749), + [anon_sym_unsafe] = ACTIONS(2749), + [anon_sym_sql] = ACTIONS(2749), + [sym_int_literal] = ACTIONS(2749), + [sym_float_literal] = ACTIONS(2747), + [sym_rune_literal] = ACTIONS(2747), + [anon_sym_SQUOTE] = ACTIONS(2747), + [anon_sym_DQUOTE] = ACTIONS(2747), + [anon_sym_c_SQUOTE] = ACTIONS(2747), + [anon_sym_c_DQUOTE] = ACTIONS(2747), + [anon_sym_r_SQUOTE] = ACTIONS(2747), + [anon_sym_r_DQUOTE] = ACTIONS(2747), + [sym_pseudo_compile_time_identifier] = ACTIONS(2749), + [anon_sym_shared] = ACTIONS(2749), + [anon_sym_map_LBRACK] = ACTIONS(2747), + [anon_sym_chan] = ACTIONS(2749), + [anon_sym_thread] = ACTIONS(2749), + [anon_sym_atomic] = ACTIONS(2749), }, [1300] = { [sym_line_comment] = STATE(1300), [sym_block_comment] = STATE(1300), - [sym_identifier] = ACTIONS(2813), + [sym_identifier] = ACTIONS(2449), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2813), - [anon_sym_as] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2811), - [anon_sym_COMMA] = ACTIONS(2811), - [anon_sym_RBRACE] = ACTIONS(2811), - [anon_sym_LPAREN] = ACTIONS(2811), - [anon_sym_PIPE] = ACTIONS(2813), - [anon_sym_fn] = ACTIONS(2813), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_SLASH] = ACTIONS(2813), - [anon_sym_PERCENT] = ACTIONS(2811), - [anon_sym_LT] = ACTIONS(2813), - [anon_sym_GT] = ACTIONS(2813), - [anon_sym_EQ_EQ] = ACTIONS(2811), - [anon_sym_BANG_EQ] = ACTIONS(2811), - [anon_sym_LT_EQ] = ACTIONS(2811), - [anon_sym_GT_EQ] = ACTIONS(2811), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_RBRACK] = ACTIONS(2811), - [anon_sym_struct] = ACTIONS(2813), - [anon_sym_mut] = ACTIONS(2813), - [anon_sym_COLON] = ACTIONS(2811), - [anon_sym_PLUS_PLUS] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2811), - [anon_sym_QMARK] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(2813), - [anon_sym_go] = ACTIONS(2813), - [anon_sym_spawn] = ACTIONS(2813), - [anon_sym_json_DOTdecode] = ACTIONS(2811), - [anon_sym_LBRACK2] = ACTIONS(2813), - [anon_sym_TILDE] = ACTIONS(2811), - [anon_sym_CARET] = ACTIONS(2811), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_LT_DASH] = ACTIONS(2811), - [anon_sym_LT_LT] = ACTIONS(2811), - [anon_sym_GT_GT] = ACTIONS(2813), - [anon_sym_GT_GT_GT] = ACTIONS(2811), - [anon_sym_AMP_CARET] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(2811), - [anon_sym_PIPE_PIPE] = ACTIONS(2811), - [anon_sym_or] = ACTIONS(2813), - [sym_none] = ACTIONS(2813), - [sym_true] = ACTIONS(2813), - [sym_false] = ACTIONS(2813), - [sym_nil] = ACTIONS(2813), - [anon_sym_QMARK_DOT] = ACTIONS(2811), - [anon_sym_POUND_LBRACK] = ACTIONS(2811), - [anon_sym_if] = ACTIONS(2813), - [anon_sym_DOLLARif] = ACTIONS(2813), - [anon_sym_is] = ACTIONS(2813), - [anon_sym_BANGis] = ACTIONS(2811), - [anon_sym_in] = ACTIONS(2813), - [anon_sym_BANGin] = ACTIONS(2811), - [anon_sym_match] = ACTIONS(2813), - [anon_sym_select] = ACTIONS(2813), - [anon_sym_lock] = ACTIONS(2813), - [anon_sym_rlock] = ACTIONS(2813), - [anon_sym_unsafe] = ACTIONS(2813), - [anon_sym_sql] = ACTIONS(2813), - [sym_int_literal] = ACTIONS(2813), - [sym_float_literal] = ACTIONS(2811), - [sym_rune_literal] = ACTIONS(2811), - [anon_sym_SQUOTE] = ACTIONS(2811), - [anon_sym_DQUOTE] = ACTIONS(2811), - [anon_sym_c_SQUOTE] = ACTIONS(2811), - [anon_sym_c_DQUOTE] = ACTIONS(2811), - [anon_sym_r_SQUOTE] = ACTIONS(2811), - [anon_sym_r_DQUOTE] = ACTIONS(2811), - [sym_pseudo_compile_time_identifier] = ACTIONS(2813), - [anon_sym_shared] = ACTIONS(2813), - [anon_sym_map_LBRACK] = ACTIONS(2811), - [anon_sym_chan] = ACTIONS(2813), - [anon_sym_thread] = ACTIONS(2813), - [anon_sym_atomic] = ACTIONS(2813), + [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_fn] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2447), + [anon_sym_SLASH] = ACTIONS(2449), + [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_PIPE] = ACTIONS(2449), + [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_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), + [anon_sym_SQUOTE] = ACTIONS(2447), + [anon_sym_DQUOTE] = ACTIONS(2447), + [anon_sym_c_SQUOTE] = ACTIONS(2447), + [anon_sym_c_DQUOTE] = ACTIONS(2447), + [anon_sym_r_SQUOTE] = ACTIONS(2447), + [anon_sym_r_DQUOTE] = 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), }, [1301] = { [sym_line_comment] = STATE(1301), [sym_block_comment] = STATE(1301), - [sym_identifier] = ACTIONS(2423), + [sym_identifier] = ACTIONS(2723), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2423), - [anon_sym_as] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2421), - [anon_sym_COMMA] = ACTIONS(2421), - [anon_sym_RBRACE] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2421), - [anon_sym_PIPE] = ACTIONS(2423), - [anon_sym_fn] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2423), - [anon_sym_DASH] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_SLASH] = ACTIONS(2423), - [anon_sym_PERCENT] = ACTIONS(2421), - [anon_sym_LT] = ACTIONS(2423), - [anon_sym_GT] = ACTIONS(2423), - [anon_sym_EQ_EQ] = ACTIONS(2421), - [anon_sym_BANG_EQ] = ACTIONS(2421), - [anon_sym_LT_EQ] = ACTIONS(2421), - [anon_sym_GT_EQ] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_RBRACK] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(2423), - [anon_sym_mut] = ACTIONS(2423), - [anon_sym_COLON] = ACTIONS(2421), - [anon_sym_PLUS_PLUS] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(2421), - [anon_sym_QMARK] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2423), - [anon_sym_spawn] = ACTIONS(2423), - [anon_sym_json_DOTdecode] = ACTIONS(2421), - [anon_sym_LBRACK2] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2421), - [anon_sym_CARET] = ACTIONS(2421), - [anon_sym_AMP] = ACTIONS(2423), - [anon_sym_LT_DASH] = ACTIONS(2421), - [anon_sym_LT_LT] = ACTIONS(2421), - [anon_sym_GT_GT] = ACTIONS(2423), - [anon_sym_GT_GT_GT] = ACTIONS(2421), - [anon_sym_AMP_CARET] = ACTIONS(2421), - [anon_sym_AMP_AMP] = ACTIONS(2421), - [anon_sym_PIPE_PIPE] = ACTIONS(2421), - [anon_sym_or] = ACTIONS(2423), - [sym_none] = ACTIONS(2423), - [sym_true] = ACTIONS(2423), - [sym_false] = ACTIONS(2423), - [sym_nil] = ACTIONS(2423), - [anon_sym_QMARK_DOT] = ACTIONS(2421), - [anon_sym_POUND_LBRACK] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2423), - [anon_sym_DOLLARif] = ACTIONS(2423), - [anon_sym_is] = ACTIONS(2423), - [anon_sym_BANGis] = ACTIONS(2421), - [anon_sym_in] = ACTIONS(2423), - [anon_sym_BANGin] = ACTIONS(2421), - [anon_sym_match] = ACTIONS(2423), - [anon_sym_select] = ACTIONS(2423), - [anon_sym_lock] = ACTIONS(2423), - [anon_sym_rlock] = ACTIONS(2423), - [anon_sym_unsafe] = ACTIONS(2423), - [anon_sym_sql] = ACTIONS(2423), - [sym_int_literal] = ACTIONS(2423), - [sym_float_literal] = ACTIONS(2421), - [sym_rune_literal] = ACTIONS(2421), - [anon_sym_SQUOTE] = ACTIONS(2421), - [anon_sym_DQUOTE] = ACTIONS(2421), - [anon_sym_c_SQUOTE] = ACTIONS(2421), - [anon_sym_c_DQUOTE] = ACTIONS(2421), - [anon_sym_r_SQUOTE] = ACTIONS(2421), - [anon_sym_r_DQUOTE] = ACTIONS(2421), - [sym_pseudo_compile_time_identifier] = ACTIONS(2423), - [anon_sym_shared] = ACTIONS(2423), - [anon_sym_map_LBRACK] = ACTIONS(2421), - [anon_sym_chan] = ACTIONS(2423), - [anon_sym_thread] = ACTIONS(2423), - [anon_sym_atomic] = ACTIONS(2423), + [anon_sym_DOT] = ACTIONS(2723), + [anon_sym_as] = ACTIONS(2723), + [anon_sym_LBRACE] = ACTIONS(2721), + [anon_sym_COMMA] = ACTIONS(2721), + [anon_sym_RBRACE] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(2721), + [anon_sym_fn] = ACTIONS(2723), + [anon_sym_PLUS] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2723), + [anon_sym_STAR] = ACTIONS(2721), + [anon_sym_SLASH] = ACTIONS(2723), + [anon_sym_PERCENT] = ACTIONS(2721), + [anon_sym_LT] = ACTIONS(2723), + [anon_sym_GT] = ACTIONS(2723), + [anon_sym_EQ_EQ] = ACTIONS(2721), + [anon_sym_BANG_EQ] = ACTIONS(2721), + [anon_sym_LT_EQ] = ACTIONS(2721), + [anon_sym_GT_EQ] = ACTIONS(2721), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_RBRACK] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2723), + [anon_sym_mut] = ACTIONS(2723), + [anon_sym_COLON] = ACTIONS(2721), + [anon_sym_PLUS_PLUS] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2721), + [anon_sym_QMARK] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_go] = ACTIONS(2723), + [anon_sym_spawn] = ACTIONS(2723), + [anon_sym_json_DOTdecode] = ACTIONS(2721), + [anon_sym_PIPE] = ACTIONS(2723), + [anon_sym_LBRACK2] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2721), + [anon_sym_CARET] = ACTIONS(2721), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_LT_DASH] = ACTIONS(2721), + [anon_sym_LT_LT] = ACTIONS(2721), + [anon_sym_GT_GT] = ACTIONS(2723), + [anon_sym_GT_GT_GT] = ACTIONS(2721), + [anon_sym_AMP_CARET] = ACTIONS(2721), + [anon_sym_AMP_AMP] = ACTIONS(2721), + [anon_sym_PIPE_PIPE] = ACTIONS(2721), + [anon_sym_or] = ACTIONS(2723), + [sym_none] = ACTIONS(2723), + [sym_true] = ACTIONS(2723), + [sym_false] = ACTIONS(2723), + [sym_nil] = ACTIONS(2723), + [anon_sym_QMARK_DOT] = ACTIONS(2721), + [anon_sym_POUND_LBRACK] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2723), + [anon_sym_DOLLARif] = ACTIONS(2723), + [anon_sym_is] = ACTIONS(2723), + [anon_sym_BANGis] = ACTIONS(2721), + [anon_sym_in] = ACTIONS(2723), + [anon_sym_BANGin] = ACTIONS(2721), + [anon_sym_match] = ACTIONS(2723), + [anon_sym_select] = ACTIONS(2723), + [anon_sym_lock] = ACTIONS(2723), + [anon_sym_rlock] = ACTIONS(2723), + [anon_sym_unsafe] = ACTIONS(2723), + [anon_sym_sql] = ACTIONS(2723), + [sym_int_literal] = ACTIONS(2723), + [sym_float_literal] = ACTIONS(2721), + [sym_rune_literal] = ACTIONS(2721), + [anon_sym_SQUOTE] = ACTIONS(2721), + [anon_sym_DQUOTE] = ACTIONS(2721), + [anon_sym_c_SQUOTE] = ACTIONS(2721), + [anon_sym_c_DQUOTE] = ACTIONS(2721), + [anon_sym_r_SQUOTE] = ACTIONS(2721), + [anon_sym_r_DQUOTE] = ACTIONS(2721), + [sym_pseudo_compile_time_identifier] = ACTIONS(2723), + [anon_sym_shared] = ACTIONS(2723), + [anon_sym_map_LBRACK] = ACTIONS(2721), + [anon_sym_chan] = ACTIONS(2723), + [anon_sym_thread] = ACTIONS(2723), + [anon_sym_atomic] = ACTIONS(2723), }, [1302] = { [sym_line_comment] = STATE(1302), [sym_block_comment] = STATE(1302), - [sym_identifier] = ACTIONS(2273), + [sym_identifier] = ACTIONS(2315), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2273), - [anon_sym_as] = ACTIONS(2273), - [anon_sym_LBRACE] = ACTIONS(2271), - [anon_sym_COMMA] = ACTIONS(2271), - [anon_sym_RBRACE] = ACTIONS(2271), - [anon_sym_LPAREN] = ACTIONS(2271), - [anon_sym_PIPE] = ACTIONS(2273), - [anon_sym_fn] = ACTIONS(2273), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_STAR] = ACTIONS(2271), - [anon_sym_SLASH] = ACTIONS(2273), - [anon_sym_PERCENT] = ACTIONS(2271), - [anon_sym_LT] = ACTIONS(2273), - [anon_sym_GT] = ACTIONS(2273), - [anon_sym_EQ_EQ] = ACTIONS(2271), - [anon_sym_BANG_EQ] = ACTIONS(2271), - [anon_sym_LT_EQ] = ACTIONS(2271), - [anon_sym_GT_EQ] = ACTIONS(2271), - [anon_sym_LBRACK] = ACTIONS(2271), - [anon_sym_RBRACK] = ACTIONS(2271), - [anon_sym_struct] = ACTIONS(2273), - [anon_sym_mut] = ACTIONS(2273), - [anon_sym_COLON] = ACTIONS(2271), - [anon_sym_PLUS_PLUS] = ACTIONS(2271), - [anon_sym_DASH_DASH] = ACTIONS(2271), - [anon_sym_QMARK] = ACTIONS(2273), - [anon_sym_BANG] = ACTIONS(2273), - [anon_sym_go] = ACTIONS(2273), - [anon_sym_spawn] = ACTIONS(2273), - [anon_sym_json_DOTdecode] = ACTIONS(2271), - [anon_sym_LBRACK2] = ACTIONS(2273), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(2273), - [anon_sym_LT_DASH] = ACTIONS(2271), - [anon_sym_LT_LT] = ACTIONS(2271), - [anon_sym_GT_GT] = ACTIONS(2273), - [anon_sym_GT_GT_GT] = ACTIONS(2271), - [anon_sym_AMP_CARET] = ACTIONS(2271), - [anon_sym_AMP_AMP] = ACTIONS(2271), - [anon_sym_PIPE_PIPE] = ACTIONS(2271), - [anon_sym_or] = ACTIONS(2273), - [sym_none] = ACTIONS(2273), - [sym_true] = ACTIONS(2273), - [sym_false] = ACTIONS(2273), - [sym_nil] = ACTIONS(2273), - [anon_sym_QMARK_DOT] = ACTIONS(2271), - [anon_sym_POUND_LBRACK] = ACTIONS(2271), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_DOLLARif] = ACTIONS(2273), - [anon_sym_is] = ACTIONS(2273), - [anon_sym_BANGis] = ACTIONS(2271), - [anon_sym_in] = ACTIONS(2273), - [anon_sym_BANGin] = ACTIONS(2271), - [anon_sym_match] = ACTIONS(2273), - [anon_sym_select] = ACTIONS(2273), - [anon_sym_lock] = ACTIONS(2273), - [anon_sym_rlock] = ACTIONS(2273), - [anon_sym_unsafe] = ACTIONS(2273), - [anon_sym_sql] = ACTIONS(2273), - [sym_int_literal] = ACTIONS(2273), - [sym_float_literal] = ACTIONS(2271), - [sym_rune_literal] = ACTIONS(2271), - [anon_sym_SQUOTE] = ACTIONS(2271), - [anon_sym_DQUOTE] = ACTIONS(2271), - [anon_sym_c_SQUOTE] = ACTIONS(2271), - [anon_sym_c_DQUOTE] = ACTIONS(2271), - [anon_sym_r_SQUOTE] = ACTIONS(2271), - [anon_sym_r_DQUOTE] = ACTIONS(2271), - [sym_pseudo_compile_time_identifier] = ACTIONS(2273), - [anon_sym_shared] = ACTIONS(2273), - [anon_sym_map_LBRACK] = ACTIONS(2271), - [anon_sym_chan] = ACTIONS(2273), - [anon_sym_thread] = ACTIONS(2273), - [anon_sym_atomic] = ACTIONS(2273), + [anon_sym_DOT] = ACTIONS(2315), + [anon_sym_as] = ACTIONS(2315), + [anon_sym_LBRACE] = ACTIONS(2313), + [anon_sym_COMMA] = ACTIONS(2313), + [anon_sym_RBRACE] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2313), + [anon_sym_fn] = ACTIONS(2315), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2313), + [anon_sym_SLASH] = ACTIONS(2315), + [anon_sym_PERCENT] = ACTIONS(2313), + [anon_sym_LT] = ACTIONS(2315), + [anon_sym_GT] = ACTIONS(2315), + [anon_sym_EQ_EQ] = ACTIONS(2313), + [anon_sym_BANG_EQ] = ACTIONS(2313), + [anon_sym_LT_EQ] = ACTIONS(2313), + [anon_sym_GT_EQ] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_RBRACK] = ACTIONS(2313), + [anon_sym_struct] = ACTIONS(2315), + [anon_sym_mut] = ACTIONS(2315), + [anon_sym_COLON] = ACTIONS(2313), + [anon_sym_PLUS_PLUS] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2313), + [anon_sym_QMARK] = ACTIONS(2315), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_go] = ACTIONS(2315), + [anon_sym_spawn] = ACTIONS(2315), + [anon_sym_json_DOTdecode] = ACTIONS(2313), + [anon_sym_PIPE] = ACTIONS(2315), + [anon_sym_LBRACK2] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2313), + [anon_sym_CARET] = ACTIONS(2313), + [anon_sym_AMP] = ACTIONS(2315), + [anon_sym_LT_DASH] = ACTIONS(2313), + [anon_sym_LT_LT] = ACTIONS(2313), + [anon_sym_GT_GT] = ACTIONS(2315), + [anon_sym_GT_GT_GT] = ACTIONS(2313), + [anon_sym_AMP_CARET] = ACTIONS(2313), + [anon_sym_AMP_AMP] = ACTIONS(2313), + [anon_sym_PIPE_PIPE] = ACTIONS(2313), + [anon_sym_or] = ACTIONS(2315), + [sym_none] = ACTIONS(2315), + [sym_true] = ACTIONS(2315), + [sym_false] = ACTIONS(2315), + [sym_nil] = ACTIONS(2315), + [anon_sym_QMARK_DOT] = ACTIONS(2313), + [anon_sym_POUND_LBRACK] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2315), + [anon_sym_DOLLARif] = ACTIONS(2315), + [anon_sym_is] = ACTIONS(2315), + [anon_sym_BANGis] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2315), + [anon_sym_BANGin] = ACTIONS(2313), + [anon_sym_match] = ACTIONS(2315), + [anon_sym_select] = ACTIONS(2315), + [anon_sym_lock] = ACTIONS(2315), + [anon_sym_rlock] = ACTIONS(2315), + [anon_sym_unsafe] = ACTIONS(2315), + [anon_sym_sql] = ACTIONS(2315), + [sym_int_literal] = ACTIONS(2315), + [sym_float_literal] = ACTIONS(2313), + [sym_rune_literal] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_DQUOTE] = ACTIONS(2313), + [anon_sym_c_SQUOTE] = ACTIONS(2313), + [anon_sym_c_DQUOTE] = ACTIONS(2313), + [anon_sym_r_SQUOTE] = ACTIONS(2313), + [anon_sym_r_DQUOTE] = ACTIONS(2313), + [sym_pseudo_compile_time_identifier] = ACTIONS(2315), + [anon_sym_shared] = ACTIONS(2315), + [anon_sym_map_LBRACK] = ACTIONS(2313), + [anon_sym_chan] = ACTIONS(2315), + [anon_sym_thread] = ACTIONS(2315), + [anon_sym_atomic] = ACTIONS(2315), }, [1303] = { [sym_line_comment] = STATE(1303), [sym_block_comment] = STATE(1303), - [sym_identifier] = ACTIONS(2269), + [sym_identifier] = ACTIONS(2095), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2269), - [anon_sym_as] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_COMMA] = ACTIONS(2267), - [anon_sym_RBRACE] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_PIPE] = ACTIONS(2269), - [anon_sym_fn] = ACTIONS(2269), - [anon_sym_PLUS] = ACTIONS(2269), - [anon_sym_DASH] = ACTIONS(2269), - [anon_sym_STAR] = ACTIONS(2267), - [anon_sym_SLASH] = ACTIONS(2269), - [anon_sym_PERCENT] = ACTIONS(2267), - [anon_sym_LT] = ACTIONS(2269), - [anon_sym_GT] = ACTIONS(2269), - [anon_sym_EQ_EQ] = ACTIONS(2267), - [anon_sym_BANG_EQ] = ACTIONS(2267), - [anon_sym_LT_EQ] = ACTIONS(2267), - [anon_sym_GT_EQ] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_RBRACK] = ACTIONS(2267), - [anon_sym_struct] = ACTIONS(2269), - [anon_sym_mut] = ACTIONS(2269), - [anon_sym_COLON] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_QMARK] = ACTIONS(2269), - [anon_sym_BANG] = ACTIONS(2269), - [anon_sym_go] = ACTIONS(2269), - [anon_sym_spawn] = ACTIONS(2269), - [anon_sym_json_DOTdecode] = ACTIONS(2267), - [anon_sym_LBRACK2] = ACTIONS(2269), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2269), - [anon_sym_LT_DASH] = ACTIONS(2267), - [anon_sym_LT_LT] = ACTIONS(2267), - [anon_sym_GT_GT] = ACTIONS(2269), - [anon_sym_GT_GT_GT] = ACTIONS(2267), - [anon_sym_AMP_CARET] = ACTIONS(2267), - [anon_sym_AMP_AMP] = ACTIONS(2267), - [anon_sym_PIPE_PIPE] = ACTIONS(2267), - [anon_sym_or] = ACTIONS(2269), - [sym_none] = ACTIONS(2269), - [sym_true] = ACTIONS(2269), - [sym_false] = ACTIONS(2269), - [sym_nil] = ACTIONS(2269), - [anon_sym_QMARK_DOT] = ACTIONS(2267), - [anon_sym_POUND_LBRACK] = ACTIONS(2267), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_DOLLARif] = ACTIONS(2269), - [anon_sym_is] = ACTIONS(2269), - [anon_sym_BANGis] = ACTIONS(2267), - [anon_sym_in] = ACTIONS(2269), - [anon_sym_BANGin] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(2269), - [anon_sym_select] = ACTIONS(2269), - [anon_sym_lock] = ACTIONS(2269), - [anon_sym_rlock] = ACTIONS(2269), - [anon_sym_unsafe] = ACTIONS(2269), - [anon_sym_sql] = ACTIONS(2269), - [sym_int_literal] = ACTIONS(2269), - [sym_float_literal] = ACTIONS(2267), - [sym_rune_literal] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2267), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_c_SQUOTE] = ACTIONS(2267), - [anon_sym_c_DQUOTE] = ACTIONS(2267), - [anon_sym_r_SQUOTE] = ACTIONS(2267), - [anon_sym_r_DQUOTE] = ACTIONS(2267), - [sym_pseudo_compile_time_identifier] = ACTIONS(2269), - [anon_sym_shared] = ACTIONS(2269), - [anon_sym_map_LBRACK] = ACTIONS(2267), - [anon_sym_chan] = ACTIONS(2269), - [anon_sym_thread] = ACTIONS(2269), - [anon_sym_atomic] = ACTIONS(2269), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_COMMA] = ACTIONS(2093), + [anon_sym_RBRACE] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2093), + [anon_sym_fn] = ACTIONS(2095), + [anon_sym_PLUS] = ACTIONS(2095), + [anon_sym_DASH] = ACTIONS(2095), + [anon_sym_STAR] = ACTIONS(2093), + [anon_sym_SLASH] = ACTIONS(2095), + [anon_sym_PERCENT] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2095), + [anon_sym_GT] = ACTIONS(2095), + [anon_sym_EQ_EQ] = ACTIONS(2093), + [anon_sym_BANG_EQ] = ACTIONS(2093), + [anon_sym_LT_EQ] = ACTIONS(2093), + [anon_sym_GT_EQ] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_RBRACK] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2095), + [anon_sym_mut] = ACTIONS(2095), + [anon_sym_COLON] = ACTIONS(2093), + [anon_sym_PLUS_PLUS] = ACTIONS(2093), + [anon_sym_DASH_DASH] = ACTIONS(2093), + [anon_sym_QMARK] = ACTIONS(2095), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_go] = ACTIONS(2095), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(2093), + [anon_sym_PIPE] = ACTIONS(2095), + [anon_sym_LBRACK2] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2093), + [anon_sym_CARET] = ACTIONS(2093), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_LT_DASH] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_GT_GT] = ACTIONS(2095), + [anon_sym_GT_GT_GT] = ACTIONS(2093), + [anon_sym_AMP_CARET] = ACTIONS(2093), + [anon_sym_AMP_AMP] = ACTIONS(2093), + [anon_sym_PIPE_PIPE] = ACTIONS(2093), + [anon_sym_or] = ACTIONS(2095), + [sym_none] = ACTIONS(2095), + [sym_true] = ACTIONS(2095), + [sym_false] = ACTIONS(2095), + [sym_nil] = ACTIONS(2095), + [anon_sym_QMARK_DOT] = ACTIONS(2093), + [anon_sym_POUND_LBRACK] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_DOLLARif] = ACTIONS(2095), + [anon_sym_is] = ACTIONS(2095), + [anon_sym_BANGis] = ACTIONS(2093), + [anon_sym_in] = ACTIONS(2095), + [anon_sym_BANGin] = ACTIONS(2093), + [anon_sym_match] = ACTIONS(2095), + [anon_sym_select] = ACTIONS(2095), + [anon_sym_lock] = ACTIONS(2095), + [anon_sym_rlock] = ACTIONS(2095), + [anon_sym_unsafe] = ACTIONS(2095), + [anon_sym_sql] = ACTIONS(2095), + [sym_int_literal] = ACTIONS(2095), + [sym_float_literal] = ACTIONS(2093), + [sym_rune_literal] = ACTIONS(2093), + [anon_sym_SQUOTE] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(2093), + [anon_sym_c_SQUOTE] = ACTIONS(2093), + [anon_sym_c_DQUOTE] = ACTIONS(2093), + [anon_sym_r_SQUOTE] = ACTIONS(2093), + [anon_sym_r_DQUOTE] = ACTIONS(2093), + [sym_pseudo_compile_time_identifier] = ACTIONS(2095), + [anon_sym_shared] = ACTIONS(2095), + [anon_sym_map_LBRACK] = ACTIONS(2093), + [anon_sym_chan] = ACTIONS(2095), + [anon_sym_thread] = ACTIONS(2095), + [anon_sym_atomic] = ACTIONS(2095), }, [1304] = { [sym_line_comment] = STATE(1304), [sym_block_comment] = STATE(1304), - [sym_identifier] = ACTIONS(2261), + [sym_identifier] = ACTIONS(2741), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2261), - [anon_sym_as] = ACTIONS(2261), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_COMMA] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2259), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_PIPE] = ACTIONS(2261), - [anon_sym_fn] = ACTIONS(2261), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2259), - [anon_sym_SLASH] = ACTIONS(2261), - [anon_sym_PERCENT] = ACTIONS(2259), - [anon_sym_LT] = ACTIONS(2261), - [anon_sym_GT] = ACTIONS(2261), - [anon_sym_EQ_EQ] = ACTIONS(2259), - [anon_sym_BANG_EQ] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(2259), - [anon_sym_GT_EQ] = ACTIONS(2259), - [anon_sym_LBRACK] = ACTIONS(2259), - [anon_sym_RBRACK] = ACTIONS(2259), - [anon_sym_struct] = ACTIONS(2261), - [anon_sym_mut] = ACTIONS(2261), - [anon_sym_COLON] = ACTIONS(2259), - [anon_sym_PLUS_PLUS] = ACTIONS(2259), - [anon_sym_DASH_DASH] = ACTIONS(2259), - [anon_sym_QMARK] = ACTIONS(2261), - [anon_sym_BANG] = ACTIONS(2261), - [anon_sym_go] = ACTIONS(2261), - [anon_sym_spawn] = ACTIONS(2261), - [anon_sym_json_DOTdecode] = ACTIONS(2259), - [anon_sym_LBRACK2] = ACTIONS(2261), - [anon_sym_TILDE] = ACTIONS(2259), - [anon_sym_CARET] = ACTIONS(2259), - [anon_sym_AMP] = ACTIONS(2261), - [anon_sym_LT_DASH] = ACTIONS(2259), - [anon_sym_LT_LT] = ACTIONS(2259), - [anon_sym_GT_GT] = ACTIONS(2261), - [anon_sym_GT_GT_GT] = ACTIONS(2259), - [anon_sym_AMP_CARET] = ACTIONS(2259), - [anon_sym_AMP_AMP] = ACTIONS(2259), - [anon_sym_PIPE_PIPE] = ACTIONS(2259), - [anon_sym_or] = ACTIONS(2261), - [sym_none] = ACTIONS(2261), - [sym_true] = ACTIONS(2261), - [sym_false] = ACTIONS(2261), - [sym_nil] = ACTIONS(2261), - [anon_sym_QMARK_DOT] = ACTIONS(2259), - [anon_sym_POUND_LBRACK] = ACTIONS(2259), - [anon_sym_if] = ACTIONS(2261), - [anon_sym_DOLLARif] = ACTIONS(2261), - [anon_sym_is] = ACTIONS(2261), - [anon_sym_BANGis] = ACTIONS(2259), - [anon_sym_in] = ACTIONS(2261), - [anon_sym_BANGin] = ACTIONS(2259), - [anon_sym_match] = ACTIONS(2261), - [anon_sym_select] = ACTIONS(2261), - [anon_sym_lock] = ACTIONS(2261), - [anon_sym_rlock] = ACTIONS(2261), - [anon_sym_unsafe] = ACTIONS(2261), - [anon_sym_sql] = ACTIONS(2261), - [sym_int_literal] = ACTIONS(2261), - [sym_float_literal] = ACTIONS(2259), - [sym_rune_literal] = ACTIONS(2259), - [anon_sym_SQUOTE] = ACTIONS(2259), - [anon_sym_DQUOTE] = ACTIONS(2259), - [anon_sym_c_SQUOTE] = ACTIONS(2259), - [anon_sym_c_DQUOTE] = ACTIONS(2259), - [anon_sym_r_SQUOTE] = ACTIONS(2259), - [anon_sym_r_DQUOTE] = ACTIONS(2259), - [sym_pseudo_compile_time_identifier] = ACTIONS(2261), - [anon_sym_shared] = ACTIONS(2261), - [anon_sym_map_LBRACK] = ACTIONS(2259), - [anon_sym_chan] = ACTIONS(2261), - [anon_sym_thread] = ACTIONS(2261), - [anon_sym_atomic] = ACTIONS(2261), + [anon_sym_DOT] = ACTIONS(2741), + [anon_sym_as] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2739), + [anon_sym_COMMA] = ACTIONS(2739), + [anon_sym_RBRACE] = ACTIONS(2739), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_fn] = ACTIONS(2741), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_STAR] = ACTIONS(2739), + [anon_sym_SLASH] = ACTIONS(2741), + [anon_sym_PERCENT] = ACTIONS(2739), + [anon_sym_LT] = ACTIONS(2741), + [anon_sym_GT] = ACTIONS(2741), + [anon_sym_EQ_EQ] = ACTIONS(2739), + [anon_sym_BANG_EQ] = ACTIONS(2739), + [anon_sym_LT_EQ] = ACTIONS(2739), + [anon_sym_GT_EQ] = ACTIONS(2739), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_RBRACK] = ACTIONS(2739), + [anon_sym_struct] = ACTIONS(2741), + [anon_sym_mut] = ACTIONS(2741), + [anon_sym_COLON] = ACTIONS(2739), + [anon_sym_PLUS_PLUS] = ACTIONS(2739), + [anon_sym_DASH_DASH] = ACTIONS(2739), + [anon_sym_QMARK] = ACTIONS(2741), + [anon_sym_BANG] = ACTIONS(2741), + [anon_sym_go] = ACTIONS(2741), + [anon_sym_spawn] = ACTIONS(2741), + [anon_sym_json_DOTdecode] = ACTIONS(2739), + [anon_sym_PIPE] = ACTIONS(2741), + [anon_sym_LBRACK2] = ACTIONS(2741), + [anon_sym_TILDE] = ACTIONS(2739), + [anon_sym_CARET] = ACTIONS(2739), + [anon_sym_AMP] = ACTIONS(2741), + [anon_sym_LT_DASH] = ACTIONS(2739), + [anon_sym_LT_LT] = ACTIONS(2739), + [anon_sym_GT_GT] = ACTIONS(2741), + [anon_sym_GT_GT_GT] = ACTIONS(2739), + [anon_sym_AMP_CARET] = ACTIONS(2739), + [anon_sym_AMP_AMP] = ACTIONS(2739), + [anon_sym_PIPE_PIPE] = ACTIONS(2739), + [anon_sym_or] = ACTIONS(2741), + [sym_none] = ACTIONS(2741), + [sym_true] = ACTIONS(2741), + [sym_false] = ACTIONS(2741), + [sym_nil] = ACTIONS(2741), + [anon_sym_QMARK_DOT] = ACTIONS(2739), + [anon_sym_POUND_LBRACK] = ACTIONS(2739), + [anon_sym_if] = ACTIONS(2741), + [anon_sym_DOLLARif] = ACTIONS(2741), + [anon_sym_is] = ACTIONS(2741), + [anon_sym_BANGis] = ACTIONS(2739), + [anon_sym_in] = ACTIONS(2741), + [anon_sym_BANGin] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(2741), + [anon_sym_select] = ACTIONS(2741), + [anon_sym_lock] = ACTIONS(2741), + [anon_sym_rlock] = ACTIONS(2741), + [anon_sym_unsafe] = ACTIONS(2741), + [anon_sym_sql] = ACTIONS(2741), + [sym_int_literal] = ACTIONS(2741), + [sym_float_literal] = ACTIONS(2739), + [sym_rune_literal] = ACTIONS(2739), + [anon_sym_SQUOTE] = ACTIONS(2739), + [anon_sym_DQUOTE] = ACTIONS(2739), + [anon_sym_c_SQUOTE] = ACTIONS(2739), + [anon_sym_c_DQUOTE] = ACTIONS(2739), + [anon_sym_r_SQUOTE] = ACTIONS(2739), + [anon_sym_r_DQUOTE] = ACTIONS(2739), + [sym_pseudo_compile_time_identifier] = ACTIONS(2741), + [anon_sym_shared] = ACTIONS(2741), + [anon_sym_map_LBRACK] = ACTIONS(2739), + [anon_sym_chan] = ACTIONS(2741), + [anon_sym_thread] = ACTIONS(2741), + [anon_sym_atomic] = ACTIONS(2741), }, [1305] = { [sym_line_comment] = STATE(1305), [sym_block_comment] = STATE(1305), - [sym_identifier] = ACTIONS(2253), + [sym_identifier] = ACTIONS(2689), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2253), - [anon_sym_as] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_COMMA] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_PIPE] = ACTIONS(2253), - [anon_sym_fn] = ACTIONS(2253), - [anon_sym_PLUS] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_STAR] = ACTIONS(2251), - [anon_sym_SLASH] = ACTIONS(2253), - [anon_sym_PERCENT] = ACTIONS(2251), - [anon_sym_LT] = ACTIONS(2253), - [anon_sym_GT] = ACTIONS(2253), - [anon_sym_EQ_EQ] = ACTIONS(2251), - [anon_sym_BANG_EQ] = ACTIONS(2251), - [anon_sym_LT_EQ] = ACTIONS(2251), - [anon_sym_GT_EQ] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_RBRACK] = ACTIONS(2251), - [anon_sym_struct] = ACTIONS(2253), - [anon_sym_mut] = ACTIONS(2253), - [anon_sym_COLON] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [anon_sym_QMARK] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(2253), - [anon_sym_go] = ACTIONS(2253), - [anon_sym_spawn] = ACTIONS(2253), - [anon_sym_json_DOTdecode] = ACTIONS(2251), - [anon_sym_LBRACK2] = ACTIONS(2253), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2253), - [anon_sym_LT_DASH] = ACTIONS(2251), - [anon_sym_LT_LT] = ACTIONS(2251), - [anon_sym_GT_GT] = ACTIONS(2253), - [anon_sym_GT_GT_GT] = ACTIONS(2251), - [anon_sym_AMP_CARET] = ACTIONS(2251), - [anon_sym_AMP_AMP] = ACTIONS(2251), - [anon_sym_PIPE_PIPE] = ACTIONS(2251), - [anon_sym_or] = ACTIONS(2253), - [sym_none] = ACTIONS(2253), - [sym_true] = ACTIONS(2253), - [sym_false] = ACTIONS(2253), - [sym_nil] = ACTIONS(2253), - [anon_sym_QMARK_DOT] = ACTIONS(2251), - [anon_sym_POUND_LBRACK] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2253), - [anon_sym_DOLLARif] = ACTIONS(2253), - [anon_sym_is] = ACTIONS(2253), - [anon_sym_BANGis] = ACTIONS(2251), - [anon_sym_in] = ACTIONS(2253), - [anon_sym_BANGin] = ACTIONS(2251), - [anon_sym_match] = ACTIONS(2253), - [anon_sym_select] = ACTIONS(2253), - [anon_sym_lock] = ACTIONS(2253), - [anon_sym_rlock] = ACTIONS(2253), - [anon_sym_unsafe] = ACTIONS(2253), - [anon_sym_sql] = ACTIONS(2253), - [sym_int_literal] = ACTIONS(2253), - [sym_float_literal] = ACTIONS(2251), - [sym_rune_literal] = ACTIONS(2251), - [anon_sym_SQUOTE] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(2251), - [anon_sym_c_SQUOTE] = ACTIONS(2251), - [anon_sym_c_DQUOTE] = ACTIONS(2251), - [anon_sym_r_SQUOTE] = ACTIONS(2251), - [anon_sym_r_DQUOTE] = ACTIONS(2251), - [sym_pseudo_compile_time_identifier] = ACTIONS(2253), - [anon_sym_shared] = ACTIONS(2253), - [anon_sym_map_LBRACK] = ACTIONS(2251), - [anon_sym_chan] = ACTIONS(2253), - [anon_sym_thread] = ACTIONS(2253), - [anon_sym_atomic] = ACTIONS(2253), + [anon_sym_DOT] = ACTIONS(2689), + [anon_sym_as] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_COMMA] = ACTIONS(2687), + [anon_sym_RBRACE] = ACTIONS(2687), + [anon_sym_LPAREN] = ACTIONS(2687), + [anon_sym_fn] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_SLASH] = ACTIONS(2689), + [anon_sym_PERCENT] = ACTIONS(2687), + [anon_sym_LT] = ACTIONS(2689), + [anon_sym_GT] = ACTIONS(2689), + [anon_sym_EQ_EQ] = ACTIONS(2687), + [anon_sym_BANG_EQ] = ACTIONS(2687), + [anon_sym_LT_EQ] = ACTIONS(2687), + [anon_sym_GT_EQ] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2687), + [anon_sym_RBRACK] = ACTIONS(2687), + [anon_sym_struct] = ACTIONS(2689), + [anon_sym_mut] = ACTIONS(2689), + [anon_sym_COLON] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_QMARK] = ACTIONS(2689), + [anon_sym_BANG] = ACTIONS(2689), + [anon_sym_go] = ACTIONS(2689), + [anon_sym_spawn] = ACTIONS(2689), + [anon_sym_json_DOTdecode] = ACTIONS(2687), + [anon_sym_PIPE] = ACTIONS(2689), + [anon_sym_LBRACK2] = ACTIONS(2689), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_LT_DASH] = ACTIONS(2687), + [anon_sym_LT_LT] = ACTIONS(2687), + [anon_sym_GT_GT] = ACTIONS(2689), + [anon_sym_GT_GT_GT] = ACTIONS(2687), + [anon_sym_AMP_CARET] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_PIPE_PIPE] = ACTIONS(2687), + [anon_sym_or] = ACTIONS(2689), + [sym_none] = ACTIONS(2689), + [sym_true] = ACTIONS(2689), + [sym_false] = ACTIONS(2689), + [sym_nil] = ACTIONS(2689), + [anon_sym_QMARK_DOT] = ACTIONS(2687), + [anon_sym_POUND_LBRACK] = ACTIONS(2687), + [anon_sym_if] = ACTIONS(2689), + [anon_sym_DOLLARif] = ACTIONS(2689), + [anon_sym_is] = ACTIONS(2689), + [anon_sym_BANGis] = ACTIONS(2687), + [anon_sym_in] = ACTIONS(2689), + [anon_sym_BANGin] = ACTIONS(2687), + [anon_sym_match] = ACTIONS(2689), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2689), + [anon_sym_rlock] = ACTIONS(2689), + [anon_sym_unsafe] = ACTIONS(2689), + [anon_sym_sql] = ACTIONS(2689), + [sym_int_literal] = ACTIONS(2689), + [sym_float_literal] = ACTIONS(2687), + [sym_rune_literal] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2687), + [anon_sym_c_SQUOTE] = ACTIONS(2687), + [anon_sym_c_DQUOTE] = ACTIONS(2687), + [anon_sym_r_SQUOTE] = ACTIONS(2687), + [anon_sym_r_DQUOTE] = ACTIONS(2687), + [sym_pseudo_compile_time_identifier] = ACTIONS(2689), + [anon_sym_shared] = ACTIONS(2689), + [anon_sym_map_LBRACK] = ACTIONS(2687), + [anon_sym_chan] = ACTIONS(2689), + [anon_sym_thread] = ACTIONS(2689), + [anon_sym_atomic] = ACTIONS(2689), }, [1306] = { [sym_line_comment] = STATE(1306), [sym_block_comment] = STATE(1306), - [sym_identifier] = ACTIONS(2249), + [sym_identifier] = ACTIONS(2331), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2249), - [anon_sym_as] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_COMMA] = ACTIONS(2247), - [anon_sym_RBRACE] = ACTIONS(2247), - [anon_sym_LPAREN] = ACTIONS(2247), - [anon_sym_PIPE] = ACTIONS(2249), - [anon_sym_fn] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2247), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_PERCENT] = ACTIONS(2247), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_GT] = ACTIONS(2249), - [anon_sym_EQ_EQ] = ACTIONS(2247), - [anon_sym_BANG_EQ] = ACTIONS(2247), - [anon_sym_LT_EQ] = ACTIONS(2247), - [anon_sym_GT_EQ] = ACTIONS(2247), - [anon_sym_LBRACK] = ACTIONS(2247), - [anon_sym_RBRACK] = ACTIONS(2247), - [anon_sym_struct] = ACTIONS(2249), - [anon_sym_mut] = ACTIONS(2249), - [anon_sym_COLON] = ACTIONS(2247), - [anon_sym_PLUS_PLUS] = ACTIONS(2247), - [anon_sym_DASH_DASH] = ACTIONS(2247), - [anon_sym_QMARK] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(2249), - [anon_sym_go] = ACTIONS(2249), - [anon_sym_spawn] = ACTIONS(2249), - [anon_sym_json_DOTdecode] = ACTIONS(2247), - [anon_sym_LBRACK2] = ACTIONS(2249), - [anon_sym_TILDE] = ACTIONS(2247), - [anon_sym_CARET] = ACTIONS(2247), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_DASH] = ACTIONS(2247), - [anon_sym_LT_LT] = ACTIONS(2247), - [anon_sym_GT_GT] = ACTIONS(2249), - [anon_sym_GT_GT_GT] = ACTIONS(2247), - [anon_sym_AMP_CARET] = ACTIONS(2247), - [anon_sym_AMP_AMP] = ACTIONS(2247), - [anon_sym_PIPE_PIPE] = ACTIONS(2247), - [anon_sym_or] = ACTIONS(2249), - [sym_none] = ACTIONS(2249), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [sym_nil] = ACTIONS(2249), - [anon_sym_QMARK_DOT] = ACTIONS(2247), - [anon_sym_POUND_LBRACK] = ACTIONS(2247), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_DOLLARif] = ACTIONS(2249), - [anon_sym_is] = ACTIONS(2249), - [anon_sym_BANGis] = ACTIONS(2247), - [anon_sym_in] = ACTIONS(2249), - [anon_sym_BANGin] = ACTIONS(2247), - [anon_sym_match] = ACTIONS(2249), - [anon_sym_select] = ACTIONS(2249), - [anon_sym_lock] = ACTIONS(2249), - [anon_sym_rlock] = ACTIONS(2249), - [anon_sym_unsafe] = ACTIONS(2249), - [anon_sym_sql] = ACTIONS(2249), - [sym_int_literal] = ACTIONS(2249), - [sym_float_literal] = ACTIONS(2247), - [sym_rune_literal] = ACTIONS(2247), - [anon_sym_SQUOTE] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [anon_sym_c_SQUOTE] = ACTIONS(2247), - [anon_sym_c_DQUOTE] = ACTIONS(2247), - [anon_sym_r_SQUOTE] = ACTIONS(2247), - [anon_sym_r_DQUOTE] = ACTIONS(2247), - [sym_pseudo_compile_time_identifier] = ACTIONS(2249), - [anon_sym_shared] = ACTIONS(2249), - [anon_sym_map_LBRACK] = ACTIONS(2247), - [anon_sym_chan] = ACTIONS(2249), - [anon_sym_thread] = ACTIONS(2249), - [anon_sym_atomic] = ACTIONS(2249), + [anon_sym_DOT] = ACTIONS(2331), + [anon_sym_as] = ACTIONS(2331), + [anon_sym_LBRACE] = ACTIONS(2329), + [anon_sym_COMMA] = ACTIONS(2329), + [anon_sym_RBRACE] = ACTIONS(2329), + [anon_sym_LPAREN] = ACTIONS(2329), + [anon_sym_fn] = ACTIONS(2331), + [anon_sym_PLUS] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2331), + [anon_sym_STAR] = ACTIONS(2329), + [anon_sym_SLASH] = ACTIONS(2331), + [anon_sym_PERCENT] = ACTIONS(2329), + [anon_sym_LT] = ACTIONS(2331), + [anon_sym_GT] = ACTIONS(2331), + [anon_sym_EQ_EQ] = ACTIONS(2329), + [anon_sym_BANG_EQ] = ACTIONS(2329), + [anon_sym_LT_EQ] = ACTIONS(2329), + [anon_sym_GT_EQ] = ACTIONS(2329), + [anon_sym_LBRACK] = ACTIONS(2329), + [anon_sym_RBRACK] = ACTIONS(2329), + [anon_sym_struct] = ACTIONS(2331), + [anon_sym_mut] = ACTIONS(2331), + [anon_sym_COLON] = ACTIONS(2329), + [anon_sym_PLUS_PLUS] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(2329), + [anon_sym_QMARK] = ACTIONS(2331), + [anon_sym_BANG] = ACTIONS(2331), + [anon_sym_go] = ACTIONS(2331), + [anon_sym_spawn] = ACTIONS(2331), + [anon_sym_json_DOTdecode] = ACTIONS(2329), + [anon_sym_PIPE] = ACTIONS(2331), + [anon_sym_LBRACK2] = ACTIONS(2331), + [anon_sym_TILDE] = ACTIONS(2329), + [anon_sym_CARET] = ACTIONS(2329), + [anon_sym_AMP] = ACTIONS(2331), + [anon_sym_LT_DASH] = ACTIONS(2329), + [anon_sym_LT_LT] = ACTIONS(2329), + [anon_sym_GT_GT] = ACTIONS(2331), + [anon_sym_GT_GT_GT] = ACTIONS(2329), + [anon_sym_AMP_CARET] = ACTIONS(2329), + [anon_sym_AMP_AMP] = ACTIONS(2329), + [anon_sym_PIPE_PIPE] = ACTIONS(2329), + [anon_sym_or] = ACTIONS(2331), + [sym_none] = ACTIONS(2331), + [sym_true] = ACTIONS(2331), + [sym_false] = ACTIONS(2331), + [sym_nil] = ACTIONS(2331), + [anon_sym_QMARK_DOT] = ACTIONS(2329), + [anon_sym_POUND_LBRACK] = ACTIONS(2329), + [anon_sym_if] = ACTIONS(2331), + [anon_sym_DOLLARif] = ACTIONS(2331), + [anon_sym_is] = ACTIONS(2331), + [anon_sym_BANGis] = ACTIONS(2329), + [anon_sym_in] = ACTIONS(2331), + [anon_sym_BANGin] = ACTIONS(2329), + [anon_sym_match] = ACTIONS(2331), + [anon_sym_select] = ACTIONS(2331), + [anon_sym_lock] = ACTIONS(2331), + [anon_sym_rlock] = ACTIONS(2331), + [anon_sym_unsafe] = ACTIONS(2331), + [anon_sym_sql] = ACTIONS(2331), + [sym_int_literal] = ACTIONS(2331), + [sym_float_literal] = ACTIONS(2329), + [sym_rune_literal] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_DQUOTE] = ACTIONS(2329), + [anon_sym_c_SQUOTE] = ACTIONS(2329), + [anon_sym_c_DQUOTE] = ACTIONS(2329), + [anon_sym_r_SQUOTE] = ACTIONS(2329), + [anon_sym_r_DQUOTE] = ACTIONS(2329), + [sym_pseudo_compile_time_identifier] = ACTIONS(2331), + [anon_sym_shared] = ACTIONS(2331), + [anon_sym_map_LBRACK] = ACTIONS(2329), + [anon_sym_chan] = ACTIONS(2331), + [anon_sym_thread] = ACTIONS(2331), + [anon_sym_atomic] = ACTIONS(2331), }, [1307] = { [sym_line_comment] = STATE(1307), [sym_block_comment] = STATE(1307), - [sym_identifier] = ACTIONS(2855), + [sym_identifier] = ACTIONS(2401), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2855), - [anon_sym_as] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2853), - [anon_sym_COMMA] = ACTIONS(2853), - [anon_sym_RBRACE] = ACTIONS(2853), - [anon_sym_LPAREN] = ACTIONS(2853), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_fn] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_STAR] = ACTIONS(2853), - [anon_sym_SLASH] = ACTIONS(2855), - [anon_sym_PERCENT] = ACTIONS(2853), - [anon_sym_LT] = ACTIONS(2855), - [anon_sym_GT] = ACTIONS(2855), - [anon_sym_EQ_EQ] = ACTIONS(2853), - [anon_sym_BANG_EQ] = ACTIONS(2853), - [anon_sym_LT_EQ] = ACTIONS(2853), - [anon_sym_GT_EQ] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_RBRACK] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_mut] = ACTIONS(2855), - [anon_sym_COLON] = ACTIONS(2853), - [anon_sym_PLUS_PLUS] = ACTIONS(2853), - [anon_sym_DASH_DASH] = ACTIONS(2853), - [anon_sym_QMARK] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_go] = ACTIONS(2855), - [anon_sym_spawn] = ACTIONS(2855), - [anon_sym_json_DOTdecode] = ACTIONS(2853), - [anon_sym_LBRACK2] = ACTIONS(2855), - [anon_sym_TILDE] = ACTIONS(2853), - [anon_sym_CARET] = ACTIONS(2853), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_LT_DASH] = ACTIONS(2853), - [anon_sym_LT_LT] = ACTIONS(2853), - [anon_sym_GT_GT] = ACTIONS(2855), - [anon_sym_GT_GT_GT] = ACTIONS(2853), - [anon_sym_AMP_CARET] = ACTIONS(2853), - [anon_sym_AMP_AMP] = ACTIONS(2853), - [anon_sym_PIPE_PIPE] = ACTIONS(2853), - [anon_sym_or] = ACTIONS(2855), - [sym_none] = ACTIONS(2855), - [sym_true] = ACTIONS(2855), - [sym_false] = ACTIONS(2855), - [sym_nil] = ACTIONS(2855), - [anon_sym_QMARK_DOT] = ACTIONS(2853), - [anon_sym_POUND_LBRACK] = ACTIONS(2853), - [anon_sym_if] = ACTIONS(2855), - [anon_sym_DOLLARif] = ACTIONS(2855), - [anon_sym_is] = ACTIONS(2855), - [anon_sym_BANGis] = ACTIONS(2853), - [anon_sym_in] = ACTIONS(2855), - [anon_sym_BANGin] = ACTIONS(2853), - [anon_sym_match] = ACTIONS(2855), - [anon_sym_select] = ACTIONS(2855), - [anon_sym_lock] = ACTIONS(2855), - [anon_sym_rlock] = ACTIONS(2855), - [anon_sym_unsafe] = ACTIONS(2855), - [anon_sym_sql] = ACTIONS(2855), - [sym_int_literal] = ACTIONS(2855), - [sym_float_literal] = ACTIONS(2853), - [sym_rune_literal] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_DQUOTE] = ACTIONS(2853), - [anon_sym_c_SQUOTE] = ACTIONS(2853), - [anon_sym_c_DQUOTE] = ACTIONS(2853), - [anon_sym_r_SQUOTE] = ACTIONS(2853), - [anon_sym_r_DQUOTE] = ACTIONS(2853), - [sym_pseudo_compile_time_identifier] = ACTIONS(2855), - [anon_sym_shared] = ACTIONS(2855), - [anon_sym_map_LBRACK] = ACTIONS(2853), - [anon_sym_chan] = ACTIONS(2855), - [anon_sym_thread] = ACTIONS(2855), - [anon_sym_atomic] = ACTIONS(2855), + [anon_sym_DOT] = ACTIONS(2401), + [anon_sym_as] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_COMMA] = ACTIONS(2399), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_LPAREN] = ACTIONS(2399), + [anon_sym_fn] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2399), + [anon_sym_SLASH] = ACTIONS(2401), + [anon_sym_PERCENT] = ACTIONS(2399), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_GT] = ACTIONS(2401), + [anon_sym_EQ_EQ] = ACTIONS(2399), + [anon_sym_BANG_EQ] = ACTIONS(2399), + [anon_sym_LT_EQ] = ACTIONS(2399), + [anon_sym_GT_EQ] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_RBRACK] = ACTIONS(2399), + [anon_sym_struct] = ACTIONS(2401), + [anon_sym_mut] = ACTIONS(2401), + [anon_sym_COLON] = ACTIONS(2399), + [anon_sym_PLUS_PLUS] = ACTIONS(2399), + [anon_sym_DASH_DASH] = ACTIONS(2399), + [anon_sym_QMARK] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2401), + [anon_sym_go] = ACTIONS(2401), + [anon_sym_spawn] = ACTIONS(2401), + [anon_sym_json_DOTdecode] = ACTIONS(2399), + [anon_sym_PIPE] = ACTIONS(2401), + [anon_sym_LBRACK2] = ACTIONS(2401), + [anon_sym_TILDE] = ACTIONS(2399), + [anon_sym_CARET] = ACTIONS(2399), + [anon_sym_AMP] = ACTIONS(2401), + [anon_sym_LT_DASH] = ACTIONS(2399), + [anon_sym_LT_LT] = ACTIONS(2399), + [anon_sym_GT_GT] = ACTIONS(2401), + [anon_sym_GT_GT_GT] = ACTIONS(2399), + [anon_sym_AMP_CARET] = ACTIONS(2399), + [anon_sym_AMP_AMP] = ACTIONS(2399), + [anon_sym_PIPE_PIPE] = ACTIONS(2399), + [anon_sym_or] = ACTIONS(2401), + [sym_none] = ACTIONS(2401), + [sym_true] = ACTIONS(2401), + [sym_false] = ACTIONS(2401), + [sym_nil] = ACTIONS(2401), + [anon_sym_QMARK_DOT] = ACTIONS(2399), + [anon_sym_POUND_LBRACK] = ACTIONS(2399), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_DOLLARif] = ACTIONS(2401), + [anon_sym_is] = ACTIONS(2401), + [anon_sym_BANGis] = ACTIONS(2399), + [anon_sym_in] = ACTIONS(2401), + [anon_sym_BANGin] = ACTIONS(2399), + [anon_sym_match] = ACTIONS(2401), + [anon_sym_select] = ACTIONS(2401), + [anon_sym_lock] = ACTIONS(2401), + [anon_sym_rlock] = ACTIONS(2401), + [anon_sym_unsafe] = ACTIONS(2401), + [anon_sym_sql] = ACTIONS(2401), + [sym_int_literal] = ACTIONS(2401), + [sym_float_literal] = ACTIONS(2399), + [sym_rune_literal] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2399), + [anon_sym_DQUOTE] = ACTIONS(2399), + [anon_sym_c_SQUOTE] = ACTIONS(2399), + [anon_sym_c_DQUOTE] = ACTIONS(2399), + [anon_sym_r_SQUOTE] = ACTIONS(2399), + [anon_sym_r_DQUOTE] = ACTIONS(2399), + [sym_pseudo_compile_time_identifier] = ACTIONS(2401), + [anon_sym_shared] = ACTIONS(2401), + [anon_sym_map_LBRACK] = ACTIONS(2399), + [anon_sym_chan] = ACTIONS(2401), + [anon_sym_thread] = ACTIONS(2401), + [anon_sym_atomic] = ACTIONS(2401), }, [1308] = { [sym_line_comment] = STATE(1308), [sym_block_comment] = STATE(1308), - [sym_identifier] = ACTIONS(2163), + [sym_identifier] = ACTIONS(2337), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2163), - [anon_sym_as] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2161), - [anon_sym_COMMA] = ACTIONS(2161), - [anon_sym_RBRACE] = ACTIONS(2161), - [anon_sym_LPAREN] = ACTIONS(2161), - [anon_sym_PIPE] = ACTIONS(2163), - [anon_sym_fn] = ACTIONS(2163), - [anon_sym_PLUS] = ACTIONS(2163), - [anon_sym_DASH] = ACTIONS(2163), - [anon_sym_STAR] = ACTIONS(2161), - [anon_sym_SLASH] = ACTIONS(2163), - [anon_sym_PERCENT] = ACTIONS(2161), - [anon_sym_LT] = ACTIONS(2163), - [anon_sym_GT] = ACTIONS(2163), - [anon_sym_EQ_EQ] = ACTIONS(2161), - [anon_sym_BANG_EQ] = ACTIONS(2161), - [anon_sym_LT_EQ] = ACTIONS(2161), - [anon_sym_GT_EQ] = ACTIONS(2161), - [anon_sym_LBRACK] = ACTIONS(2161), - [anon_sym_RBRACK] = ACTIONS(2161), - [anon_sym_struct] = ACTIONS(2163), - [anon_sym_mut] = ACTIONS(2163), - [anon_sym_COLON] = ACTIONS(2161), - [anon_sym_PLUS_PLUS] = ACTIONS(2161), - [anon_sym_DASH_DASH] = ACTIONS(2161), - [anon_sym_QMARK] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(2163), - [anon_sym_go] = ACTIONS(2163), - [anon_sym_spawn] = ACTIONS(2163), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2161), - [anon_sym_CARET] = ACTIONS(2161), - [anon_sym_AMP] = ACTIONS(2163), - [anon_sym_LT_DASH] = ACTIONS(2161), - [anon_sym_LT_LT] = ACTIONS(2161), - [anon_sym_GT_GT] = ACTIONS(2163), - [anon_sym_GT_GT_GT] = ACTIONS(2161), - [anon_sym_AMP_CARET] = ACTIONS(2161), - [anon_sym_AMP_AMP] = ACTIONS(2161), - [anon_sym_PIPE_PIPE] = ACTIONS(2161), - [anon_sym_or] = ACTIONS(2163), - [sym_none] = ACTIONS(2163), - [sym_true] = ACTIONS(2163), - [sym_false] = ACTIONS(2163), - [sym_nil] = ACTIONS(2163), - [anon_sym_QMARK_DOT] = ACTIONS(2161), - [anon_sym_POUND_LBRACK] = ACTIONS(2161), - [anon_sym_if] = ACTIONS(2163), - [anon_sym_DOLLARif] = ACTIONS(2163), - [anon_sym_is] = ACTIONS(2163), - [anon_sym_BANGis] = ACTIONS(2161), - [anon_sym_in] = ACTIONS(2163), - [anon_sym_BANGin] = ACTIONS(2161), - [anon_sym_match] = ACTIONS(2163), - [anon_sym_select] = ACTIONS(2163), - [anon_sym_lock] = ACTIONS(2163), - [anon_sym_rlock] = ACTIONS(2163), - [anon_sym_unsafe] = ACTIONS(2163), - [anon_sym_sql] = ACTIONS(2163), - [sym_int_literal] = ACTIONS(2163), - [sym_float_literal] = ACTIONS(2161), - [sym_rune_literal] = ACTIONS(2161), - [anon_sym_SQUOTE] = ACTIONS(2161), - [anon_sym_DQUOTE] = ACTIONS(2161), - [anon_sym_c_SQUOTE] = ACTIONS(2161), - [anon_sym_c_DQUOTE] = ACTIONS(2161), - [anon_sym_r_SQUOTE] = ACTIONS(2161), - [anon_sym_r_DQUOTE] = ACTIONS(2161), - [sym_pseudo_compile_time_identifier] = ACTIONS(2163), - [anon_sym_shared] = ACTIONS(2163), - [anon_sym_map_LBRACK] = ACTIONS(2161), - [anon_sym_chan] = ACTIONS(2163), - [anon_sym_thread] = ACTIONS(2163), - [anon_sym_atomic] = ACTIONS(2163), + [anon_sym_DOT] = ACTIONS(2337), + [anon_sym_as] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_COMMA] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_fn] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_SLASH] = ACTIONS(2337), + [anon_sym_PERCENT] = ACTIONS(2335), + [anon_sym_LT] = ACTIONS(2337), + [anon_sym_GT] = ACTIONS(2337), + [anon_sym_EQ_EQ] = ACTIONS(2335), + [anon_sym_BANG_EQ] = ACTIONS(2335), + [anon_sym_LT_EQ] = ACTIONS(2335), + [anon_sym_GT_EQ] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2335), + [anon_sym_RBRACK] = ACTIONS(2335), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_mut] = ACTIONS(2337), + [anon_sym_COLON] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [anon_sym_QMARK] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(2337), + [anon_sym_go] = ACTIONS(2337), + [anon_sym_spawn] = ACTIONS(2337), + [anon_sym_json_DOTdecode] = ACTIONS(2335), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_LBRACK2] = ACTIONS(2337), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_CARET] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_LT_DASH] = ACTIONS(2335), + [anon_sym_LT_LT] = ACTIONS(2335), + [anon_sym_GT_GT] = ACTIONS(2337), + [anon_sym_GT_GT_GT] = ACTIONS(2335), + [anon_sym_AMP_CARET] = ACTIONS(2335), + [anon_sym_AMP_AMP] = ACTIONS(2335), + [anon_sym_PIPE_PIPE] = ACTIONS(2335), + [anon_sym_or] = ACTIONS(2337), + [sym_none] = ACTIONS(2337), + [sym_true] = ACTIONS(2337), + [sym_false] = ACTIONS(2337), + [sym_nil] = ACTIONS(2337), + [anon_sym_QMARK_DOT] = ACTIONS(2335), + [anon_sym_POUND_LBRACK] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_DOLLARif] = ACTIONS(2337), + [anon_sym_is] = ACTIONS(2337), + [anon_sym_BANGis] = ACTIONS(2335), + [anon_sym_in] = ACTIONS(2337), + [anon_sym_BANGin] = ACTIONS(2335), + [anon_sym_match] = ACTIONS(2337), + [anon_sym_select] = ACTIONS(2337), + [anon_sym_lock] = ACTIONS(2337), + [anon_sym_rlock] = ACTIONS(2337), + [anon_sym_unsafe] = ACTIONS(2337), + [anon_sym_sql] = ACTIONS(2337), + [sym_int_literal] = ACTIONS(2337), + [sym_float_literal] = ACTIONS(2335), + [sym_rune_literal] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [anon_sym_c_SQUOTE] = ACTIONS(2335), + [anon_sym_c_DQUOTE] = ACTIONS(2335), + [anon_sym_r_SQUOTE] = ACTIONS(2335), + [anon_sym_r_DQUOTE] = ACTIONS(2335), + [sym_pseudo_compile_time_identifier] = ACTIONS(2337), + [anon_sym_shared] = ACTIONS(2337), + [anon_sym_map_LBRACK] = ACTIONS(2335), + [anon_sym_chan] = ACTIONS(2337), + [anon_sym_thread] = ACTIONS(2337), + [anon_sym_atomic] = ACTIONS(2337), }, [1309] = { [sym_line_comment] = STATE(1309), [sym_block_comment] = STATE(1309), - [sym_identifier] = ACTIONS(2863), + [sym_identifier] = ACTIONS(2341), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2863), - [anon_sym_as] = ACTIONS(2863), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_COMMA] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_LPAREN] = ACTIONS(2861), - [anon_sym_PIPE] = ACTIONS(2863), - [anon_sym_fn] = ACTIONS(2863), - [anon_sym_PLUS] = ACTIONS(2863), - [anon_sym_DASH] = ACTIONS(2863), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_SLASH] = ACTIONS(2863), - [anon_sym_PERCENT] = ACTIONS(2861), - [anon_sym_LT] = ACTIONS(2863), - [anon_sym_GT] = ACTIONS(2863), - [anon_sym_EQ_EQ] = ACTIONS(2861), - [anon_sym_BANG_EQ] = ACTIONS(2861), - [anon_sym_LT_EQ] = ACTIONS(2861), - [anon_sym_GT_EQ] = ACTIONS(2861), - [anon_sym_LBRACK] = ACTIONS(2861), - [anon_sym_RBRACK] = ACTIONS(2861), - [anon_sym_struct] = ACTIONS(2863), - [anon_sym_mut] = ACTIONS(2863), - [anon_sym_COLON] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_QMARK] = ACTIONS(2863), - [anon_sym_BANG] = ACTIONS(2863), - [anon_sym_go] = ACTIONS(2863), - [anon_sym_spawn] = ACTIONS(2863), - [anon_sym_json_DOTdecode] = ACTIONS(2861), - [anon_sym_LBRACK2] = ACTIONS(2863), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_CARET] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2863), - [anon_sym_LT_DASH] = ACTIONS(2861), - [anon_sym_LT_LT] = ACTIONS(2861), - [anon_sym_GT_GT] = ACTIONS(2863), - [anon_sym_GT_GT_GT] = ACTIONS(2861), - [anon_sym_AMP_CARET] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_PIPE_PIPE] = ACTIONS(2861), - [anon_sym_or] = ACTIONS(2863), - [sym_none] = ACTIONS(2863), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [sym_nil] = ACTIONS(2863), - [anon_sym_QMARK_DOT] = ACTIONS(2861), - [anon_sym_POUND_LBRACK] = ACTIONS(2861), - [anon_sym_if] = ACTIONS(2863), - [anon_sym_DOLLARif] = ACTIONS(2863), - [anon_sym_is] = ACTIONS(2863), - [anon_sym_BANGis] = ACTIONS(2861), - [anon_sym_in] = ACTIONS(2863), - [anon_sym_BANGin] = ACTIONS(2861), - [anon_sym_match] = ACTIONS(2863), - [anon_sym_select] = ACTIONS(2863), - [anon_sym_lock] = ACTIONS(2863), - [anon_sym_rlock] = ACTIONS(2863), - [anon_sym_unsafe] = ACTIONS(2863), - [anon_sym_sql] = ACTIONS(2863), - [sym_int_literal] = ACTIONS(2863), - [sym_float_literal] = ACTIONS(2861), - [sym_rune_literal] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [anon_sym_c_SQUOTE] = ACTIONS(2861), - [anon_sym_c_DQUOTE] = ACTIONS(2861), - [anon_sym_r_SQUOTE] = ACTIONS(2861), - [anon_sym_r_DQUOTE] = ACTIONS(2861), - [sym_pseudo_compile_time_identifier] = ACTIONS(2863), - [anon_sym_shared] = ACTIONS(2863), - [anon_sym_map_LBRACK] = ACTIONS(2861), - [anon_sym_chan] = ACTIONS(2863), - [anon_sym_thread] = ACTIONS(2863), - [anon_sym_atomic] = ACTIONS(2863), + [anon_sym_DOT] = ACTIONS(2341), + [anon_sym_as] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2339), + [anon_sym_COMMA] = ACTIONS(2339), + [anon_sym_RBRACE] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(2339), + [anon_sym_fn] = ACTIONS(2341), + [anon_sym_PLUS] = ACTIONS(2341), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_STAR] = ACTIONS(2339), + [anon_sym_SLASH] = ACTIONS(2341), + [anon_sym_PERCENT] = ACTIONS(2339), + [anon_sym_LT] = ACTIONS(2341), + [anon_sym_GT] = ACTIONS(2341), + [anon_sym_EQ_EQ] = ACTIONS(2339), + [anon_sym_BANG_EQ] = ACTIONS(2339), + [anon_sym_LT_EQ] = ACTIONS(2339), + [anon_sym_GT_EQ] = ACTIONS(2339), + [anon_sym_LBRACK] = ACTIONS(2339), + [anon_sym_RBRACK] = ACTIONS(2339), + [anon_sym_struct] = ACTIONS(2341), + [anon_sym_mut] = ACTIONS(2341), + [anon_sym_COLON] = ACTIONS(2339), + [anon_sym_PLUS_PLUS] = ACTIONS(2339), + [anon_sym_DASH_DASH] = ACTIONS(2339), + [anon_sym_QMARK] = ACTIONS(2341), + [anon_sym_BANG] = ACTIONS(2341), + [anon_sym_go] = ACTIONS(2341), + [anon_sym_spawn] = ACTIONS(2341), + [anon_sym_json_DOTdecode] = ACTIONS(2339), + [anon_sym_PIPE] = ACTIONS(2341), + [anon_sym_LBRACK2] = ACTIONS(2341), + [anon_sym_TILDE] = ACTIONS(2339), + [anon_sym_CARET] = ACTIONS(2339), + [anon_sym_AMP] = ACTIONS(2341), + [anon_sym_LT_DASH] = ACTIONS(2339), + [anon_sym_LT_LT] = ACTIONS(2339), + [anon_sym_GT_GT] = ACTIONS(2341), + [anon_sym_GT_GT_GT] = ACTIONS(2339), + [anon_sym_AMP_CARET] = ACTIONS(2339), + [anon_sym_AMP_AMP] = ACTIONS(2339), + [anon_sym_PIPE_PIPE] = ACTIONS(2339), + [anon_sym_or] = ACTIONS(2341), + [sym_none] = ACTIONS(2341), + [sym_true] = ACTIONS(2341), + [sym_false] = ACTIONS(2341), + [sym_nil] = ACTIONS(2341), + [anon_sym_QMARK_DOT] = ACTIONS(2339), + [anon_sym_POUND_LBRACK] = ACTIONS(2339), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_DOLLARif] = ACTIONS(2341), + [anon_sym_is] = ACTIONS(2341), + [anon_sym_BANGis] = ACTIONS(2339), + [anon_sym_in] = ACTIONS(2341), + [anon_sym_BANGin] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(2341), + [anon_sym_select] = ACTIONS(2341), + [anon_sym_lock] = ACTIONS(2341), + [anon_sym_rlock] = ACTIONS(2341), + [anon_sym_unsafe] = ACTIONS(2341), + [anon_sym_sql] = ACTIONS(2341), + [sym_int_literal] = ACTIONS(2341), + [sym_float_literal] = ACTIONS(2339), + [sym_rune_literal] = ACTIONS(2339), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_DQUOTE] = ACTIONS(2339), + [anon_sym_c_SQUOTE] = ACTIONS(2339), + [anon_sym_c_DQUOTE] = ACTIONS(2339), + [anon_sym_r_SQUOTE] = ACTIONS(2339), + [anon_sym_r_DQUOTE] = ACTIONS(2339), + [sym_pseudo_compile_time_identifier] = ACTIONS(2341), + [anon_sym_shared] = ACTIONS(2341), + [anon_sym_map_LBRACK] = ACTIONS(2339), + [anon_sym_chan] = ACTIONS(2341), + [anon_sym_thread] = ACTIONS(2341), + [anon_sym_atomic] = ACTIONS(2341), }, [1310] = { [sym_line_comment] = STATE(1310), [sym_block_comment] = STATE(1310), - [sym_identifier] = ACTIONS(2245), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2245), - [anon_sym_as] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_COMMA] = ACTIONS(2243), - [anon_sym_RBRACE] = ACTIONS(2243), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_fn] = ACTIONS(2245), - [anon_sym_PLUS] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_SLASH] = ACTIONS(2245), - [anon_sym_PERCENT] = ACTIONS(2243), - [anon_sym_LT] = ACTIONS(2245), - [anon_sym_GT] = ACTIONS(2245), - [anon_sym_EQ_EQ] = ACTIONS(2243), - [anon_sym_BANG_EQ] = ACTIONS(2243), - [anon_sym_LT_EQ] = ACTIONS(2243), - [anon_sym_GT_EQ] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2243), - [anon_sym_RBRACK] = ACTIONS(2243), - [anon_sym_struct] = ACTIONS(2245), - [anon_sym_mut] = ACTIONS(2245), - [anon_sym_COLON] = ACTIONS(2243), - [anon_sym_PLUS_PLUS] = ACTIONS(2243), - [anon_sym_DASH_DASH] = ACTIONS(2243), - [anon_sym_QMARK] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(2245), - [anon_sym_go] = ACTIONS(2245), - [anon_sym_spawn] = ACTIONS(2245), - [anon_sym_json_DOTdecode] = ACTIONS(2243), - [anon_sym_LBRACK2] = ACTIONS(2245), - [anon_sym_TILDE] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2243), - [anon_sym_AMP] = ACTIONS(2245), - [anon_sym_LT_DASH] = ACTIONS(2243), - [anon_sym_LT_LT] = ACTIONS(2243), - [anon_sym_GT_GT] = ACTIONS(2245), - [anon_sym_GT_GT_GT] = ACTIONS(2243), - [anon_sym_AMP_CARET] = ACTIONS(2243), - [anon_sym_AMP_AMP] = ACTIONS(2243), - [anon_sym_PIPE_PIPE] = ACTIONS(2243), - [anon_sym_or] = ACTIONS(2245), - [sym_none] = ACTIONS(2245), - [sym_true] = ACTIONS(2245), - [sym_false] = ACTIONS(2245), - [sym_nil] = ACTIONS(2245), - [anon_sym_QMARK_DOT] = ACTIONS(2243), - [anon_sym_POUND_LBRACK] = ACTIONS(2243), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_DOLLARif] = ACTIONS(2245), - [anon_sym_is] = ACTIONS(2245), - [anon_sym_BANGis] = ACTIONS(2243), - [anon_sym_in] = ACTIONS(2245), - [anon_sym_BANGin] = ACTIONS(2243), - [anon_sym_match] = ACTIONS(2245), - [anon_sym_select] = ACTIONS(2245), - [anon_sym_lock] = ACTIONS(2245), - [anon_sym_rlock] = ACTIONS(2245), - [anon_sym_unsafe] = ACTIONS(2245), - [anon_sym_sql] = ACTIONS(2245), - [sym_int_literal] = ACTIONS(2245), - [sym_float_literal] = ACTIONS(2243), - [sym_rune_literal] = ACTIONS(2243), - [anon_sym_SQUOTE] = ACTIONS(2243), - [anon_sym_DQUOTE] = ACTIONS(2243), - [anon_sym_c_SQUOTE] = ACTIONS(2243), - [anon_sym_c_DQUOTE] = ACTIONS(2243), - [anon_sym_r_SQUOTE] = ACTIONS(2243), - [anon_sym_r_DQUOTE] = ACTIONS(2243), - [sym_pseudo_compile_time_identifier] = ACTIONS(2245), - [anon_sym_shared] = ACTIONS(2245), - [anon_sym_map_LBRACK] = ACTIONS(2243), - [anon_sym_chan] = ACTIONS(2245), - [anon_sym_thread] = ACTIONS(2245), - [anon_sym_atomic] = ACTIONS(2245), - }, - [1311] = { - [sym_line_comment] = STATE(1311), - [sym_block_comment] = STATE(1311), - [sym_identifier] = ACTIONS(2229), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2229), - [anon_sym_as] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2227), - [anon_sym_COMMA] = ACTIONS(2227), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_LPAREN] = ACTIONS(2227), - [anon_sym_PIPE] = ACTIONS(2229), - [anon_sym_fn] = ACTIONS(2229), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_STAR] = ACTIONS(2227), - [anon_sym_SLASH] = ACTIONS(2229), - [anon_sym_PERCENT] = ACTIONS(2227), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_GT] = ACTIONS(2229), - [anon_sym_EQ_EQ] = ACTIONS(2227), - [anon_sym_BANG_EQ] = ACTIONS(2227), - [anon_sym_LT_EQ] = ACTIONS(2227), - [anon_sym_GT_EQ] = ACTIONS(2227), - [anon_sym_LBRACK] = ACTIONS(2227), - [anon_sym_RBRACK] = ACTIONS(2227), - [anon_sym_struct] = ACTIONS(2229), - [anon_sym_mut] = ACTIONS(2229), - [anon_sym_COLON] = ACTIONS(2227), - [anon_sym_PLUS_PLUS] = ACTIONS(2227), - [anon_sym_DASH_DASH] = ACTIONS(2227), - [anon_sym_QMARK] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2229), - [anon_sym_go] = ACTIONS(2229), - [anon_sym_spawn] = ACTIONS(2229), - [anon_sym_json_DOTdecode] = ACTIONS(2227), - [anon_sym_LBRACK2] = ACTIONS(2229), - [anon_sym_TILDE] = ACTIONS(2227), - [anon_sym_CARET] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(2229), - [anon_sym_LT_DASH] = ACTIONS(2227), - [anon_sym_LT_LT] = ACTIONS(2227), - [anon_sym_GT_GT] = ACTIONS(2229), - [anon_sym_GT_GT_GT] = ACTIONS(2227), - [anon_sym_AMP_CARET] = ACTIONS(2227), - [anon_sym_AMP_AMP] = ACTIONS(2227), - [anon_sym_PIPE_PIPE] = ACTIONS(2227), - [anon_sym_or] = ACTIONS(2229), - [sym_none] = ACTIONS(2229), - [sym_true] = ACTIONS(2229), - [sym_false] = ACTIONS(2229), - [sym_nil] = ACTIONS(2229), - [anon_sym_QMARK_DOT] = ACTIONS(2227), - [anon_sym_POUND_LBRACK] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_DOLLARif] = ACTIONS(2229), - [anon_sym_is] = ACTIONS(2229), - [anon_sym_BANGis] = ACTIONS(2227), - [anon_sym_in] = ACTIONS(2229), - [anon_sym_BANGin] = ACTIONS(2227), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_select] = ACTIONS(2229), - [anon_sym_lock] = ACTIONS(2229), - [anon_sym_rlock] = ACTIONS(2229), - [anon_sym_unsafe] = ACTIONS(2229), - [anon_sym_sql] = ACTIONS(2229), - [sym_int_literal] = ACTIONS(2229), - [sym_float_literal] = ACTIONS(2227), - [sym_rune_literal] = ACTIONS(2227), - [anon_sym_SQUOTE] = ACTIONS(2227), - [anon_sym_DQUOTE] = ACTIONS(2227), - [anon_sym_c_SQUOTE] = ACTIONS(2227), - [anon_sym_c_DQUOTE] = ACTIONS(2227), - [anon_sym_r_SQUOTE] = ACTIONS(2227), - [anon_sym_r_DQUOTE] = ACTIONS(2227), - [sym_pseudo_compile_time_identifier] = ACTIONS(2229), - [anon_sym_shared] = ACTIONS(2229), - [anon_sym_map_LBRACK] = ACTIONS(2227), - [anon_sym_chan] = ACTIONS(2229), - [anon_sym_thread] = ACTIONS(2229), - [anon_sym_atomic] = ACTIONS(2229), - }, - [1312] = { - [sym_line_comment] = STATE(1312), - [sym_block_comment] = STATE(1312), - [sym_identifier] = ACTIONS(2225), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2225), - [anon_sym_as] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_COMMA] = ACTIONS(2223), - [anon_sym_RBRACE] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_PIPE] = ACTIONS(2225), - [anon_sym_fn] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_STAR] = ACTIONS(2223), - [anon_sym_SLASH] = ACTIONS(2225), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_GT] = ACTIONS(2225), - [anon_sym_EQ_EQ] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2223), - [anon_sym_LT_EQ] = ACTIONS(2223), - [anon_sym_GT_EQ] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_RBRACK] = ACTIONS(2223), - [anon_sym_struct] = ACTIONS(2225), - [anon_sym_mut] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2223), - [anon_sym_PLUS_PLUS] = ACTIONS(2223), - [anon_sym_DASH_DASH] = ACTIONS(2223), - [anon_sym_QMARK] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_go] = ACTIONS(2225), - [anon_sym_spawn] = ACTIONS(2225), - [anon_sym_json_DOTdecode] = ACTIONS(2223), - [anon_sym_LBRACK2] = ACTIONS(2225), - [anon_sym_TILDE] = ACTIONS(2223), - [anon_sym_CARET] = ACTIONS(2223), - [anon_sym_AMP] = ACTIONS(2225), - [anon_sym_LT_DASH] = ACTIONS(2223), - [anon_sym_LT_LT] = ACTIONS(2223), - [anon_sym_GT_GT] = ACTIONS(2225), - [anon_sym_GT_GT_GT] = ACTIONS(2223), - [anon_sym_AMP_CARET] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_or] = ACTIONS(2225), - [sym_none] = ACTIONS(2225), - [sym_true] = ACTIONS(2225), - [sym_false] = ACTIONS(2225), - [sym_nil] = ACTIONS(2225), - [anon_sym_QMARK_DOT] = ACTIONS(2223), - [anon_sym_POUND_LBRACK] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_DOLLARif] = ACTIONS(2225), - [anon_sym_is] = ACTIONS(2225), - [anon_sym_BANGis] = ACTIONS(2223), - [anon_sym_in] = ACTIONS(2225), - [anon_sym_BANGin] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2225), - [anon_sym_select] = ACTIONS(2225), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(2225), - [anon_sym_sql] = ACTIONS(2225), - [sym_int_literal] = ACTIONS(2225), - [sym_float_literal] = ACTIONS(2223), - [sym_rune_literal] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_c_SQUOTE] = ACTIONS(2223), - [anon_sym_c_DQUOTE] = ACTIONS(2223), - [anon_sym_r_SQUOTE] = ACTIONS(2223), - [anon_sym_r_DQUOTE] = ACTIONS(2223), - [sym_pseudo_compile_time_identifier] = ACTIONS(2225), - [anon_sym_shared] = ACTIONS(2225), - [anon_sym_map_LBRACK] = ACTIONS(2223), - [anon_sym_chan] = ACTIONS(2225), - [anon_sym_thread] = ACTIONS(2225), - [anon_sym_atomic] = ACTIONS(2225), - }, - [1313] = { - [sym_line_comment] = STATE(1313), - [sym_block_comment] = STATE(1313), - [sym_identifier] = ACTIONS(2883), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2883), - [anon_sym_as] = ACTIONS(2883), - [anon_sym_LBRACE] = ACTIONS(2881), - [anon_sym_COMMA] = ACTIONS(2881), - [anon_sym_RBRACE] = ACTIONS(2881), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_fn] = ACTIONS(2883), - [anon_sym_PLUS] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2883), - [anon_sym_STAR] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_PERCENT] = ACTIONS(2881), - [anon_sym_LT] = ACTIONS(2883), - [anon_sym_GT] = ACTIONS(2883), - [anon_sym_EQ_EQ] = ACTIONS(2881), - [anon_sym_BANG_EQ] = ACTIONS(2881), - [anon_sym_LT_EQ] = ACTIONS(2881), - [anon_sym_GT_EQ] = ACTIONS(2881), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_RBRACK] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2883), - [anon_sym_mut] = ACTIONS(2883), - [anon_sym_COLON] = ACTIONS(2881), - [anon_sym_PLUS_PLUS] = ACTIONS(2881), - [anon_sym_DASH_DASH] = ACTIONS(2881), - [anon_sym_QMARK] = ACTIONS(2883), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_go] = ACTIONS(2883), - [anon_sym_spawn] = ACTIONS(2883), - [anon_sym_json_DOTdecode] = ACTIONS(2881), - [anon_sym_LBRACK2] = ACTIONS(2883), - [anon_sym_TILDE] = ACTIONS(2881), - [anon_sym_CARET] = ACTIONS(2881), - [anon_sym_AMP] = ACTIONS(2883), - [anon_sym_LT_DASH] = ACTIONS(2881), - [anon_sym_LT_LT] = ACTIONS(2881), - [anon_sym_GT_GT] = ACTIONS(2883), - [anon_sym_GT_GT_GT] = ACTIONS(2881), - [anon_sym_AMP_CARET] = ACTIONS(2881), - [anon_sym_AMP_AMP] = ACTIONS(2881), - [anon_sym_PIPE_PIPE] = ACTIONS(2881), - [anon_sym_or] = ACTIONS(2883), - [sym_none] = ACTIONS(2883), - [sym_true] = ACTIONS(2883), - [sym_false] = ACTIONS(2883), - [sym_nil] = ACTIONS(2883), - [anon_sym_QMARK_DOT] = ACTIONS(2881), - [anon_sym_POUND_LBRACK] = ACTIONS(2881), - [anon_sym_if] = ACTIONS(2883), - [anon_sym_DOLLARif] = ACTIONS(2883), - [anon_sym_is] = ACTIONS(2883), - [anon_sym_BANGis] = ACTIONS(2881), - [anon_sym_in] = ACTIONS(2883), - [anon_sym_BANGin] = ACTIONS(2881), - [anon_sym_match] = ACTIONS(2883), - [anon_sym_select] = ACTIONS(2883), - [anon_sym_lock] = ACTIONS(2883), - [anon_sym_rlock] = ACTIONS(2883), - [anon_sym_unsafe] = ACTIONS(2883), - [anon_sym_sql] = ACTIONS(2883), - [sym_int_literal] = ACTIONS(2883), - [sym_float_literal] = ACTIONS(2881), - [sym_rune_literal] = ACTIONS(2881), - [anon_sym_SQUOTE] = ACTIONS(2881), - [anon_sym_DQUOTE] = ACTIONS(2881), - [anon_sym_c_SQUOTE] = ACTIONS(2881), - [anon_sym_c_DQUOTE] = ACTIONS(2881), - [anon_sym_r_SQUOTE] = ACTIONS(2881), - [anon_sym_r_DQUOTE] = ACTIONS(2881), - [sym_pseudo_compile_time_identifier] = ACTIONS(2883), - [anon_sym_shared] = ACTIONS(2883), - [anon_sym_map_LBRACK] = ACTIONS(2881), - [anon_sym_chan] = ACTIONS(2883), - [anon_sym_thread] = ACTIONS(2883), - [anon_sym_atomic] = ACTIONS(2883), - }, - [1314] = { - [sym_line_comment] = STATE(1314), - [sym_block_comment] = STATE(1314), - [sym_identifier] = ACTIONS(2887), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2887), - [anon_sym_as] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2885), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_RBRACE] = ACTIONS(2885), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2887), - [anon_sym_fn] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2885), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2885), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_EQ_EQ] = ACTIONS(2885), - [anon_sym_BANG_EQ] = ACTIONS(2885), - [anon_sym_LT_EQ] = ACTIONS(2885), - [anon_sym_GT_EQ] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_RBRACK] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2887), - [anon_sym_mut] = ACTIONS(2887), - [anon_sym_COLON] = ACTIONS(2885), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_QMARK] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_go] = ACTIONS(2887), - [anon_sym_spawn] = ACTIONS(2887), - [anon_sym_json_DOTdecode] = ACTIONS(2885), - [anon_sym_LBRACK2] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2885), - [anon_sym_CARET] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2885), - [anon_sym_LT_LT] = ACTIONS(2885), - [anon_sym_GT_GT] = ACTIONS(2887), - [anon_sym_GT_GT_GT] = ACTIONS(2885), - [anon_sym_AMP_CARET] = ACTIONS(2885), - [anon_sym_AMP_AMP] = ACTIONS(2885), - [anon_sym_PIPE_PIPE] = ACTIONS(2885), - [anon_sym_or] = ACTIONS(2887), - [sym_none] = ACTIONS(2887), - [sym_true] = ACTIONS(2887), - [sym_false] = ACTIONS(2887), - [sym_nil] = ACTIONS(2887), - [anon_sym_QMARK_DOT] = ACTIONS(2885), - [anon_sym_POUND_LBRACK] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_DOLLARif] = ACTIONS(2887), - [anon_sym_is] = ACTIONS(2887), - [anon_sym_BANGis] = ACTIONS(2885), - [anon_sym_in] = ACTIONS(2887), - [anon_sym_BANGin] = ACTIONS(2885), - [anon_sym_match] = ACTIONS(2887), - [anon_sym_select] = ACTIONS(2887), - [anon_sym_lock] = ACTIONS(2887), - [anon_sym_rlock] = ACTIONS(2887), - [anon_sym_unsafe] = ACTIONS(2887), - [anon_sym_sql] = ACTIONS(2887), - [sym_int_literal] = ACTIONS(2887), - [sym_float_literal] = ACTIONS(2885), - [sym_rune_literal] = ACTIONS(2885), - [anon_sym_SQUOTE] = ACTIONS(2885), - [anon_sym_DQUOTE] = ACTIONS(2885), - [anon_sym_c_SQUOTE] = ACTIONS(2885), - [anon_sym_c_DQUOTE] = ACTIONS(2885), - [anon_sym_r_SQUOTE] = ACTIONS(2885), - [anon_sym_r_DQUOTE] = ACTIONS(2885), - [sym_pseudo_compile_time_identifier] = ACTIONS(2887), - [anon_sym_shared] = ACTIONS(2887), - [anon_sym_map_LBRACK] = ACTIONS(2885), - [anon_sym_chan] = ACTIONS(2887), - [anon_sym_thread] = ACTIONS(2887), - [anon_sym_atomic] = ACTIONS(2887), - }, - [1315] = { - [sym_line_comment] = STATE(1315), - [sym_block_comment] = STATE(1315), - [sym_identifier] = ACTIONS(2891), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2891), - [anon_sym_as] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2889), - [anon_sym_COMMA] = ACTIONS(2889), - [anon_sym_RBRACE] = ACTIONS(2889), - [anon_sym_LPAREN] = ACTIONS(2889), - [anon_sym_PIPE] = ACTIONS(2891), - [anon_sym_fn] = ACTIONS(2891), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(2889), - [anon_sym_SLASH] = ACTIONS(2891), - [anon_sym_PERCENT] = ACTIONS(2889), - [anon_sym_LT] = ACTIONS(2891), - [anon_sym_GT] = ACTIONS(2891), - [anon_sym_EQ_EQ] = ACTIONS(2889), - [anon_sym_BANG_EQ] = ACTIONS(2889), - [anon_sym_LT_EQ] = ACTIONS(2889), - [anon_sym_GT_EQ] = ACTIONS(2889), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_RBRACK] = ACTIONS(2889), - [anon_sym_struct] = ACTIONS(2891), - [anon_sym_mut] = ACTIONS(2891), - [anon_sym_COLON] = ACTIONS(2889), - [anon_sym_PLUS_PLUS] = ACTIONS(2889), - [anon_sym_DASH_DASH] = ACTIONS(2889), - [anon_sym_QMARK] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2891), - [anon_sym_go] = ACTIONS(2891), - [anon_sym_spawn] = ACTIONS(2891), - [anon_sym_json_DOTdecode] = ACTIONS(2889), - [anon_sym_LBRACK2] = ACTIONS(2891), - [anon_sym_TILDE] = ACTIONS(2889), - [anon_sym_CARET] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_LT_DASH] = ACTIONS(2889), - [anon_sym_LT_LT] = ACTIONS(2889), - [anon_sym_GT_GT] = ACTIONS(2891), - [anon_sym_GT_GT_GT] = ACTIONS(2889), - [anon_sym_AMP_CARET] = ACTIONS(2889), - [anon_sym_AMP_AMP] = ACTIONS(2889), - [anon_sym_PIPE_PIPE] = ACTIONS(2889), - [anon_sym_or] = ACTIONS(2891), - [sym_none] = ACTIONS(2891), - [sym_true] = ACTIONS(2891), - [sym_false] = ACTIONS(2891), - [sym_nil] = ACTIONS(2891), - [anon_sym_QMARK_DOT] = ACTIONS(2889), - [anon_sym_POUND_LBRACK] = ACTIONS(2889), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_DOLLARif] = ACTIONS(2891), - [anon_sym_is] = ACTIONS(2891), - [anon_sym_BANGis] = ACTIONS(2889), - [anon_sym_in] = ACTIONS(2891), - [anon_sym_BANGin] = ACTIONS(2889), - [anon_sym_match] = ACTIONS(2891), - [anon_sym_select] = ACTIONS(2891), - [anon_sym_lock] = ACTIONS(2891), - [anon_sym_rlock] = ACTIONS(2891), - [anon_sym_unsafe] = ACTIONS(2891), - [anon_sym_sql] = ACTIONS(2891), - [sym_int_literal] = ACTIONS(2891), - [sym_float_literal] = ACTIONS(2889), - [sym_rune_literal] = ACTIONS(2889), - [anon_sym_SQUOTE] = ACTIONS(2889), - [anon_sym_DQUOTE] = ACTIONS(2889), - [anon_sym_c_SQUOTE] = ACTIONS(2889), - [anon_sym_c_DQUOTE] = ACTIONS(2889), - [anon_sym_r_SQUOTE] = ACTIONS(2889), - [anon_sym_r_DQUOTE] = 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), - }, - [1316] = { - [sym_line_comment] = STATE(1316), - [sym_block_comment] = STATE(1316), - [sym_identifier] = ACTIONS(2221), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2221), - [anon_sym_as] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_COMMA] = ACTIONS(2219), - [anon_sym_RBRACE] = ACTIONS(2219), - [anon_sym_LPAREN] = ACTIONS(2219), - [anon_sym_PIPE] = ACTIONS(2221), - [anon_sym_fn] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_PERCENT] = ACTIONS(2219), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_GT] = ACTIONS(2221), - [anon_sym_EQ_EQ] = ACTIONS(2219), - [anon_sym_BANG_EQ] = ACTIONS(2219), - [anon_sym_LT_EQ] = ACTIONS(2219), - [anon_sym_GT_EQ] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2219), - [anon_sym_RBRACK] = ACTIONS(2219), - [anon_sym_struct] = ACTIONS(2221), - [anon_sym_mut] = ACTIONS(2221), - [anon_sym_COLON] = ACTIONS(2219), - [anon_sym_PLUS_PLUS] = ACTIONS(2219), - [anon_sym_DASH_DASH] = ACTIONS(2219), - [anon_sym_QMARK] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_go] = ACTIONS(2221), - [anon_sym_spawn] = ACTIONS(2221), - [anon_sym_json_DOTdecode] = ACTIONS(2219), - [anon_sym_LBRACK2] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2219), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_LT_DASH] = ACTIONS(2219), - [anon_sym_LT_LT] = ACTIONS(2219), - [anon_sym_GT_GT] = ACTIONS(2221), - [anon_sym_GT_GT_GT] = ACTIONS(2219), - [anon_sym_AMP_CARET] = ACTIONS(2219), - [anon_sym_AMP_AMP] = ACTIONS(2219), - [anon_sym_PIPE_PIPE] = ACTIONS(2219), - [anon_sym_or] = ACTIONS(2221), - [sym_none] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_nil] = ACTIONS(2221), - [anon_sym_QMARK_DOT] = ACTIONS(2219), - [anon_sym_POUND_LBRACK] = ACTIONS(2219), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_DOLLARif] = ACTIONS(2221), - [anon_sym_is] = ACTIONS(2221), - [anon_sym_BANGis] = ACTIONS(2219), - [anon_sym_in] = ACTIONS(2221), - [anon_sym_BANGin] = ACTIONS(2219), - [anon_sym_match] = ACTIONS(2221), - [anon_sym_select] = ACTIONS(2221), - [anon_sym_lock] = ACTIONS(2221), - [anon_sym_rlock] = ACTIONS(2221), - [anon_sym_unsafe] = ACTIONS(2221), - [anon_sym_sql] = ACTIONS(2221), - [sym_int_literal] = ACTIONS(2221), - [sym_float_literal] = ACTIONS(2219), - [sym_rune_literal] = ACTIONS(2219), - [anon_sym_SQUOTE] = ACTIONS(2219), - [anon_sym_DQUOTE] = ACTIONS(2219), - [anon_sym_c_SQUOTE] = ACTIONS(2219), - [anon_sym_c_DQUOTE] = ACTIONS(2219), - [anon_sym_r_SQUOTE] = ACTIONS(2219), - [anon_sym_r_DQUOTE] = ACTIONS(2219), - [sym_pseudo_compile_time_identifier] = ACTIONS(2221), - [anon_sym_shared] = ACTIONS(2221), - [anon_sym_map_LBRACK] = ACTIONS(2219), - [anon_sym_chan] = ACTIONS(2221), - [anon_sym_thread] = ACTIONS(2221), - [anon_sym_atomic] = ACTIONS(2221), - }, - [1317] = { - [sym_line_comment] = STATE(1317), - [sym_block_comment] = STATE(1317), - [sym_identifier] = ACTIONS(3025), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3025), - [anon_sym_as] = ACTIONS(3025), - [anon_sym_LBRACE] = ACTIONS(3023), - [anon_sym_COMMA] = ACTIONS(3023), - [anon_sym_RBRACE] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3025), - [anon_sym_fn] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_SLASH] = ACTIONS(3025), - [anon_sym_PERCENT] = ACTIONS(3023), - [anon_sym_LT] = ACTIONS(3025), - [anon_sym_GT] = ACTIONS(3025), - [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(3023), - [anon_sym_RBRACK] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_mut] = ACTIONS(3025), - [anon_sym_COLON] = ACTIONS(3023), - [anon_sym_PLUS_PLUS] = ACTIONS(3023), - [anon_sym_DASH_DASH] = ACTIONS(3023), - [anon_sym_QMARK] = ACTIONS(3025), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_go] = ACTIONS(3025), - [anon_sym_spawn] = ACTIONS(3025), - [anon_sym_json_DOTdecode] = ACTIONS(3023), - [anon_sym_LBRACK2] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3023), - [anon_sym_CARET] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3025), - [anon_sym_LT_DASH] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3023), - [anon_sym_GT_GT] = ACTIONS(3025), - [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(3025), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_QMARK_DOT] = ACTIONS(3023), - [anon_sym_POUND_LBRACK] = ACTIONS(3023), - [anon_sym_if] = ACTIONS(3025), - [anon_sym_DOLLARif] = ACTIONS(3025), - [anon_sym_is] = ACTIONS(3025), - [anon_sym_BANGis] = ACTIONS(3023), - [anon_sym_in] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(3023), - [anon_sym_match] = ACTIONS(3025), - [anon_sym_select] = ACTIONS(3025), - [anon_sym_lock] = ACTIONS(3025), - [anon_sym_rlock] = ACTIONS(3025), - [anon_sym_unsafe] = ACTIONS(3025), - [anon_sym_sql] = ACTIONS(3025), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3023), - [sym_rune_literal] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3023), - [anon_sym_DQUOTE] = ACTIONS(3023), - [anon_sym_c_SQUOTE] = ACTIONS(3023), - [anon_sym_c_DQUOTE] = ACTIONS(3023), - [anon_sym_r_SQUOTE] = ACTIONS(3023), - [anon_sym_r_DQUOTE] = ACTIONS(3023), - [sym_pseudo_compile_time_identifier] = ACTIONS(3025), - [anon_sym_shared] = ACTIONS(3025), - [anon_sym_map_LBRACK] = ACTIONS(3023), - [anon_sym_chan] = ACTIONS(3025), - [anon_sym_thread] = ACTIONS(3025), - [anon_sym_atomic] = ACTIONS(3025), - }, - [1318] = { - [sym_line_comment] = STATE(1318), - [sym_block_comment] = STATE(1318), - [sym_identifier] = ACTIONS(3029), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_as] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(3027), - [anon_sym_COMMA] = ACTIONS(3027), - [anon_sym_RBRACE] = ACTIONS(3027), - [anon_sym_LPAREN] = ACTIONS(3027), - [anon_sym_PIPE] = ACTIONS(3029), - [anon_sym_fn] = ACTIONS(3029), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3027), - [anon_sym_LT] = ACTIONS(3029), - [anon_sym_GT] = ACTIONS(3029), - [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(3027), - [anon_sym_RBRACK] = ACTIONS(3027), - [anon_sym_struct] = ACTIONS(3029), - [anon_sym_mut] = ACTIONS(3029), - [anon_sym_COLON] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_QMARK] = ACTIONS(3029), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_go] = ACTIONS(3029), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(3027), - [anon_sym_LBRACK2] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3027), - [anon_sym_CARET] = ACTIONS(3027), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LT_DASH] = ACTIONS(3027), - [anon_sym_LT_LT] = ACTIONS(3027), - [anon_sym_GT_GT] = ACTIONS(3029), - [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(3029), - [sym_none] = ACTIONS(3029), - [sym_true] = ACTIONS(3029), - [sym_false] = ACTIONS(3029), - [sym_nil] = ACTIONS(3029), - [anon_sym_QMARK_DOT] = ACTIONS(3027), - [anon_sym_POUND_LBRACK] = ACTIONS(3027), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3027), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_BANGin] = ACTIONS(3027), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_select] = ACTIONS(3029), - [anon_sym_lock] = ACTIONS(3029), - [anon_sym_rlock] = ACTIONS(3029), - [anon_sym_unsafe] = ACTIONS(3029), - [anon_sym_sql] = ACTIONS(3029), - [sym_int_literal] = ACTIONS(3029), - [sym_float_literal] = ACTIONS(3027), - [sym_rune_literal] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3027), - [anon_sym_DQUOTE] = ACTIONS(3027), - [anon_sym_c_SQUOTE] = ACTIONS(3027), - [anon_sym_c_DQUOTE] = ACTIONS(3027), - [anon_sym_r_SQUOTE] = ACTIONS(3027), - [anon_sym_r_DQUOTE] = ACTIONS(3027), - [sym_pseudo_compile_time_identifier] = ACTIONS(3029), - [anon_sym_shared] = ACTIONS(3029), - [anon_sym_map_LBRACK] = ACTIONS(3027), - [anon_sym_chan] = ACTIONS(3029), - [anon_sym_thread] = ACTIONS(3029), - [anon_sym_atomic] = ACTIONS(3029), - }, - [1319] = { - [sym_line_comment] = STATE(1319), - [sym_block_comment] = STATE(1319), - [sym_identifier] = ACTIONS(3046), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3046), - [anon_sym_as] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3044), - [anon_sym_RBRACE] = ACTIONS(3044), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_PIPE] = ACTIONS(3046), - [anon_sym_fn] = ACTIONS(3046), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_STAR] = ACTIONS(3044), - [anon_sym_SLASH] = ACTIONS(3046), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_GT] = ACTIONS(3046), - [anon_sym_EQ_EQ] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3044), - [anon_sym_LT_EQ] = ACTIONS(3044), - [anon_sym_GT_EQ] = ACTIONS(3044), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_RBRACK] = ACTIONS(3044), - [anon_sym_struct] = ACTIONS(3046), - [anon_sym_mut] = ACTIONS(3046), - [anon_sym_COLON] = ACTIONS(3044), - [anon_sym_PLUS_PLUS] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3046), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_go] = ACTIONS(3046), - [anon_sym_spawn] = ACTIONS(3046), - [anon_sym_json_DOTdecode] = ACTIONS(3044), - [anon_sym_LBRACK2] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3044), - [anon_sym_CARET] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_LT_LT] = ACTIONS(3044), - [anon_sym_GT_GT] = ACTIONS(3046), - [anon_sym_GT_GT_GT] = ACTIONS(3044), - [anon_sym_AMP_CARET] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_or] = ACTIONS(3046), - [sym_none] = ACTIONS(3046), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_nil] = ACTIONS(3046), - [anon_sym_QMARK_DOT] = ACTIONS(3044), - [anon_sym_POUND_LBRACK] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3046), - [anon_sym_DOLLARif] = ACTIONS(3046), - [anon_sym_is] = ACTIONS(3046), - [anon_sym_BANGis] = ACTIONS(3044), - [anon_sym_in] = ACTIONS(3046), - [anon_sym_BANGin] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3046), - [anon_sym_select] = ACTIONS(3046), - [anon_sym_lock] = ACTIONS(3046), - [anon_sym_rlock] = ACTIONS(3046), - [anon_sym_unsafe] = ACTIONS(3046), - [anon_sym_sql] = ACTIONS(3046), - [sym_int_literal] = ACTIONS(3046), - [sym_float_literal] = ACTIONS(3044), - [sym_rune_literal] = ACTIONS(3044), - [anon_sym_SQUOTE] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_c_SQUOTE] = ACTIONS(3044), - [anon_sym_c_DQUOTE] = ACTIONS(3044), - [anon_sym_r_SQUOTE] = ACTIONS(3044), - [anon_sym_r_DQUOTE] = ACTIONS(3044), - [sym_pseudo_compile_time_identifier] = ACTIONS(3046), - [anon_sym_shared] = ACTIONS(3046), - [anon_sym_map_LBRACK] = ACTIONS(3044), - [anon_sym_chan] = ACTIONS(3046), - [anon_sym_thread] = ACTIONS(3046), - [anon_sym_atomic] = ACTIONS(3046), - }, - [1320] = { - [sym_line_comment] = STATE(1320), - [sym_block_comment] = STATE(1320), - [sym_identifier] = ACTIONS(2837), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2837), - [anon_sym_as] = ACTIONS(2837), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_COMMA] = ACTIONS(2835), - [anon_sym_RBRACE] = ACTIONS(2835), - [anon_sym_LPAREN] = ACTIONS(2835), - [anon_sym_PIPE] = ACTIONS(2837), - [anon_sym_fn] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2837), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_SLASH] = ACTIONS(2837), - [anon_sym_PERCENT] = ACTIONS(2835), - [anon_sym_LT] = ACTIONS(2837), - [anon_sym_GT] = ACTIONS(2837), - [anon_sym_EQ_EQ] = ACTIONS(2835), - [anon_sym_BANG_EQ] = ACTIONS(2835), - [anon_sym_LT_EQ] = ACTIONS(2835), - [anon_sym_GT_EQ] = ACTIONS(2835), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_RBRACK] = ACTIONS(2835), - [anon_sym_struct] = ACTIONS(2837), - [anon_sym_mut] = ACTIONS(2837), - [anon_sym_COLON] = ACTIONS(2835), - [anon_sym_PLUS_PLUS] = ACTIONS(2835), - [anon_sym_DASH_DASH] = ACTIONS(2835), - [anon_sym_QMARK] = ACTIONS(2837), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_go] = ACTIONS(2837), - [anon_sym_spawn] = ACTIONS(2837), - [anon_sym_json_DOTdecode] = ACTIONS(2835), - [anon_sym_LBRACK2] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2835), - [anon_sym_CARET] = ACTIONS(2835), - [anon_sym_AMP] = ACTIONS(2837), - [anon_sym_LT_DASH] = ACTIONS(2835), - [anon_sym_LT_LT] = ACTIONS(2835), - [anon_sym_GT_GT] = ACTIONS(2837), - [anon_sym_GT_GT_GT] = ACTIONS(2835), - [anon_sym_AMP_CARET] = ACTIONS(2835), - [anon_sym_AMP_AMP] = ACTIONS(2835), - [anon_sym_PIPE_PIPE] = ACTIONS(2835), - [anon_sym_or] = ACTIONS(2837), - [sym_none] = ACTIONS(2837), - [sym_true] = ACTIONS(2837), - [sym_false] = ACTIONS(2837), - [sym_nil] = ACTIONS(2837), - [anon_sym_QMARK_DOT] = ACTIONS(2835), - [anon_sym_POUND_LBRACK] = ACTIONS(2835), - [anon_sym_if] = ACTIONS(2837), - [anon_sym_DOLLARif] = ACTIONS(2837), - [anon_sym_is] = ACTIONS(2837), - [anon_sym_BANGis] = ACTIONS(2835), - [anon_sym_in] = ACTIONS(2837), - [anon_sym_BANGin] = ACTIONS(2835), - [anon_sym_match] = ACTIONS(2837), - [anon_sym_select] = ACTIONS(2837), - [anon_sym_lock] = ACTIONS(2837), - [anon_sym_rlock] = ACTIONS(2837), - [anon_sym_unsafe] = ACTIONS(2837), - [anon_sym_sql] = ACTIONS(2837), - [sym_int_literal] = ACTIONS(2837), - [sym_float_literal] = ACTIONS(2835), - [sym_rune_literal] = ACTIONS(2835), - [anon_sym_SQUOTE] = ACTIONS(2835), - [anon_sym_DQUOTE] = ACTIONS(2835), - [anon_sym_c_SQUOTE] = ACTIONS(2835), - [anon_sym_c_DQUOTE] = ACTIONS(2835), - [anon_sym_r_SQUOTE] = ACTIONS(2835), - [anon_sym_r_DQUOTE] = ACTIONS(2835), - [sym_pseudo_compile_time_identifier] = ACTIONS(2837), - [anon_sym_shared] = ACTIONS(2837), - [anon_sym_map_LBRACK] = ACTIONS(2835), - [anon_sym_chan] = ACTIONS(2837), - [anon_sym_thread] = ACTIONS(2837), - [anon_sym_atomic] = ACTIONS(2837), - }, - [1321] = { - [sym_line_comment] = STATE(1321), - [sym_block_comment] = STATE(1321), - [sym_identifier] = ACTIONS(2237), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2237), - [anon_sym_as] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_COMMA] = ACTIONS(2235), - [anon_sym_RBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2235), - [anon_sym_PIPE] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(2235), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_PERCENT] = ACTIONS(2235), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_GT] = ACTIONS(2237), - [anon_sym_EQ_EQ] = ACTIONS(2235), - [anon_sym_BANG_EQ] = ACTIONS(2235), - [anon_sym_LT_EQ] = ACTIONS(2235), - [anon_sym_GT_EQ] = ACTIONS(2235), - [anon_sym_LBRACK] = ACTIONS(2235), - [anon_sym_RBRACK] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2237), - [anon_sym_mut] = ACTIONS(2237), - [anon_sym_COLON] = ACTIONS(2235), - [anon_sym_PLUS_PLUS] = ACTIONS(2235), - [anon_sym_DASH_DASH] = ACTIONS(2235), - [anon_sym_QMARK] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_go] = ACTIONS(2237), - [anon_sym_spawn] = ACTIONS(2237), - [anon_sym_json_DOTdecode] = ACTIONS(2235), - [anon_sym_LBRACK2] = ACTIONS(2237), - [anon_sym_TILDE] = ACTIONS(2235), - [anon_sym_CARET] = ACTIONS(2235), - [anon_sym_AMP] = ACTIONS(2237), - [anon_sym_LT_DASH] = ACTIONS(2235), - [anon_sym_LT_LT] = ACTIONS(2235), - [anon_sym_GT_GT] = ACTIONS(2237), - [anon_sym_GT_GT_GT] = ACTIONS(2235), - [anon_sym_AMP_CARET] = ACTIONS(2235), - [anon_sym_AMP_AMP] = ACTIONS(2235), - [anon_sym_PIPE_PIPE] = ACTIONS(2235), - [anon_sym_or] = ACTIONS(2237), - [sym_none] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_nil] = ACTIONS(2237), - [anon_sym_QMARK_DOT] = ACTIONS(2235), - [anon_sym_POUND_LBRACK] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_DOLLARif] = ACTIONS(2237), - [anon_sym_is] = ACTIONS(2237), - [anon_sym_BANGis] = ACTIONS(2235), - [anon_sym_in] = ACTIONS(2237), - [anon_sym_BANGin] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2237), - [anon_sym_select] = ACTIONS(2237), - [anon_sym_lock] = ACTIONS(2237), - [anon_sym_rlock] = ACTIONS(2237), - [anon_sym_unsafe] = ACTIONS(2237), - [anon_sym_sql] = ACTIONS(2237), - [sym_int_literal] = ACTIONS(2237), - [sym_float_literal] = ACTIONS(2235), - [sym_rune_literal] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2235), - [anon_sym_DQUOTE] = ACTIONS(2235), - [anon_sym_c_SQUOTE] = ACTIONS(2235), - [anon_sym_c_DQUOTE] = ACTIONS(2235), - [anon_sym_r_SQUOTE] = ACTIONS(2235), - [anon_sym_r_DQUOTE] = ACTIONS(2235), - [sym_pseudo_compile_time_identifier] = ACTIONS(2237), - [anon_sym_shared] = ACTIONS(2237), - [anon_sym_map_LBRACK] = ACTIONS(2235), - [anon_sym_chan] = ACTIONS(2237), - [anon_sym_thread] = ACTIONS(2237), - [anon_sym_atomic] = ACTIONS(2237), - }, - [1322] = { - [sym_line_comment] = STATE(1322), - [sym_block_comment] = STATE(1322), - [sym_identifier] = ACTIONS(2217), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_as] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2215), - [anon_sym_COMMA] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_PIPE] = ACTIONS(2217), - [anon_sym_fn] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2217), - [anon_sym_DASH] = ACTIONS(2217), - [anon_sym_STAR] = ACTIONS(2215), - [anon_sym_SLASH] = ACTIONS(2217), - [anon_sym_PERCENT] = ACTIONS(2215), - [anon_sym_LT] = ACTIONS(2217), - [anon_sym_GT] = ACTIONS(2217), - [anon_sym_EQ_EQ] = ACTIONS(2215), - [anon_sym_BANG_EQ] = ACTIONS(2215), - [anon_sym_LT_EQ] = ACTIONS(2215), - [anon_sym_GT_EQ] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_RBRACK] = ACTIONS(2215), - [anon_sym_struct] = ACTIONS(2217), - [anon_sym_mut] = ACTIONS(2217), - [anon_sym_COLON] = ACTIONS(2215), - [anon_sym_PLUS_PLUS] = ACTIONS(2215), - [anon_sym_DASH_DASH] = ACTIONS(2215), - [anon_sym_QMARK] = ACTIONS(2217), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_go] = ACTIONS(2217), - [anon_sym_spawn] = ACTIONS(2217), - [anon_sym_json_DOTdecode] = ACTIONS(2215), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2215), - [anon_sym_CARET] = ACTIONS(2215), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_LT_DASH] = ACTIONS(2215), - [anon_sym_LT_LT] = ACTIONS(2215), - [anon_sym_GT_GT] = ACTIONS(2217), - [anon_sym_GT_GT_GT] = ACTIONS(2215), - [anon_sym_AMP_CARET] = ACTIONS(2215), - [anon_sym_AMP_AMP] = ACTIONS(2215), - [anon_sym_PIPE_PIPE] = ACTIONS(2215), - [anon_sym_or] = ACTIONS(2217), - [sym_none] = ACTIONS(2217), - [sym_true] = ACTIONS(2217), - [sym_false] = ACTIONS(2217), - [sym_nil] = ACTIONS(2217), - [anon_sym_QMARK_DOT] = ACTIONS(2215), - [anon_sym_POUND_LBRACK] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_DOLLARif] = ACTIONS(2217), - [anon_sym_is] = ACTIONS(2217), - [anon_sym_BANGis] = ACTIONS(2215), - [anon_sym_in] = ACTIONS(2217), - [anon_sym_BANGin] = ACTIONS(2215), - [anon_sym_match] = ACTIONS(2217), - [anon_sym_select] = ACTIONS(2217), - [anon_sym_lock] = ACTIONS(2217), - [anon_sym_rlock] = ACTIONS(2217), - [anon_sym_unsafe] = ACTIONS(2217), - [anon_sym_sql] = ACTIONS(2217), - [sym_int_literal] = ACTIONS(2217), - [sym_float_literal] = ACTIONS(2215), - [sym_rune_literal] = ACTIONS(2215), - [anon_sym_SQUOTE] = ACTIONS(2215), - [anon_sym_DQUOTE] = ACTIONS(2215), - [anon_sym_c_SQUOTE] = ACTIONS(2215), - [anon_sym_c_DQUOTE] = ACTIONS(2215), - [anon_sym_r_SQUOTE] = ACTIONS(2215), - [anon_sym_r_DQUOTE] = ACTIONS(2215), - [sym_pseudo_compile_time_identifier] = ACTIONS(2217), - [anon_sym_shared] = ACTIONS(2217), - [anon_sym_map_LBRACK] = ACTIONS(2215), - [anon_sym_chan] = ACTIONS(2217), - [anon_sym_thread] = ACTIONS(2217), - [anon_sym_atomic] = ACTIONS(2217), - }, - [1323] = { - [sym_line_comment] = STATE(1323), - [sym_block_comment] = STATE(1323), - [sym_identifier] = ACTIONS(2213), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2213), - [anon_sym_as] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_COMMA] = ACTIONS(2211), - [anon_sym_RBRACE] = ACTIONS(2211), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_PIPE] = ACTIONS(2213), - [anon_sym_fn] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_STAR] = ACTIONS(2211), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_PERCENT] = ACTIONS(2211), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_GT] = ACTIONS(2213), - [anon_sym_EQ_EQ] = ACTIONS(2211), - [anon_sym_BANG_EQ] = ACTIONS(2211), - [anon_sym_LT_EQ] = ACTIONS(2211), - [anon_sym_GT_EQ] = ACTIONS(2211), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_RBRACK] = ACTIONS(2211), - [anon_sym_struct] = ACTIONS(2213), - [anon_sym_mut] = ACTIONS(2213), - [anon_sym_COLON] = ACTIONS(2211), - [anon_sym_PLUS_PLUS] = ACTIONS(2211), - [anon_sym_DASH_DASH] = ACTIONS(2211), - [anon_sym_QMARK] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2213), - [anon_sym_json_DOTdecode] = ACTIONS(2211), - [anon_sym_LBRACK2] = ACTIONS(2213), - [anon_sym_TILDE] = ACTIONS(2211), - [anon_sym_CARET] = ACTIONS(2211), - [anon_sym_AMP] = ACTIONS(2213), - [anon_sym_LT_DASH] = ACTIONS(2211), - [anon_sym_LT_LT] = ACTIONS(2211), - [anon_sym_GT_GT] = ACTIONS(2213), - [anon_sym_GT_GT_GT] = ACTIONS(2211), - [anon_sym_AMP_CARET] = ACTIONS(2211), - [anon_sym_AMP_AMP] = ACTIONS(2211), - [anon_sym_PIPE_PIPE] = ACTIONS(2211), - [anon_sym_or] = ACTIONS(2213), - [sym_none] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_nil] = ACTIONS(2213), - [anon_sym_QMARK_DOT] = ACTIONS(2211), - [anon_sym_POUND_LBRACK] = ACTIONS(2211), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_DOLLARif] = ACTIONS(2213), - [anon_sym_is] = ACTIONS(2213), - [anon_sym_BANGis] = ACTIONS(2211), - [anon_sym_in] = ACTIONS(2213), - [anon_sym_BANGin] = ACTIONS(2211), - [anon_sym_match] = ACTIONS(2213), - [anon_sym_select] = ACTIONS(2213), - [anon_sym_lock] = ACTIONS(2213), - [anon_sym_rlock] = ACTIONS(2213), - [anon_sym_unsafe] = ACTIONS(2213), - [anon_sym_sql] = ACTIONS(2213), - [sym_int_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2211), - [sym_rune_literal] = ACTIONS(2211), - [anon_sym_SQUOTE] = ACTIONS(2211), - [anon_sym_DQUOTE] = ACTIONS(2211), - [anon_sym_c_SQUOTE] = ACTIONS(2211), - [anon_sym_c_DQUOTE] = ACTIONS(2211), - [anon_sym_r_SQUOTE] = ACTIONS(2211), - [anon_sym_r_DQUOTE] = ACTIONS(2211), - [sym_pseudo_compile_time_identifier] = ACTIONS(2213), - [anon_sym_shared] = ACTIONS(2213), - [anon_sym_map_LBRACK] = ACTIONS(2211), - [anon_sym_chan] = ACTIONS(2213), - [anon_sym_thread] = ACTIONS(2213), - [anon_sym_atomic] = ACTIONS(2213), - }, - [1324] = { - [sym_line_comment] = STATE(1324), - [sym_block_comment] = STATE(1324), - [sym_identifier] = ACTIONS(2209), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_as] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_COMMA] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2207), - [anon_sym_LPAREN] = ACTIONS(2207), - [anon_sym_PIPE] = ACTIONS(2209), - [anon_sym_fn] = ACTIONS(2209), - [anon_sym_PLUS] = ACTIONS(2209), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_STAR] = ACTIONS(2207), - [anon_sym_SLASH] = ACTIONS(2209), - [anon_sym_PERCENT] = ACTIONS(2207), - [anon_sym_LT] = ACTIONS(2209), - [anon_sym_GT] = ACTIONS(2209), - [anon_sym_EQ_EQ] = ACTIONS(2207), - [anon_sym_BANG_EQ] = ACTIONS(2207), - [anon_sym_LT_EQ] = ACTIONS(2207), - [anon_sym_GT_EQ] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2207), - [anon_sym_RBRACK] = ACTIONS(2207), - [anon_sym_struct] = ACTIONS(2209), - [anon_sym_mut] = ACTIONS(2209), - [anon_sym_COLON] = ACTIONS(2207), - [anon_sym_PLUS_PLUS] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2207), - [anon_sym_QMARK] = ACTIONS(2209), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_go] = ACTIONS(2209), - [anon_sym_spawn] = ACTIONS(2209), - [anon_sym_json_DOTdecode] = ACTIONS(2207), - [anon_sym_LBRACK2] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_LT_DASH] = ACTIONS(2207), - [anon_sym_LT_LT] = ACTIONS(2207), - [anon_sym_GT_GT] = ACTIONS(2209), - [anon_sym_GT_GT_GT] = ACTIONS(2207), - [anon_sym_AMP_CARET] = ACTIONS(2207), - [anon_sym_AMP_AMP] = ACTIONS(2207), - [anon_sym_PIPE_PIPE] = ACTIONS(2207), - [anon_sym_or] = ACTIONS(2209), - [sym_none] = ACTIONS(2209), - [sym_true] = ACTIONS(2209), - [sym_false] = ACTIONS(2209), - [sym_nil] = ACTIONS(2209), - [anon_sym_QMARK_DOT] = ACTIONS(2207), - [anon_sym_POUND_LBRACK] = ACTIONS(2207), - [anon_sym_if] = ACTIONS(2209), - [anon_sym_DOLLARif] = ACTIONS(2209), - [anon_sym_is] = ACTIONS(2209), - [anon_sym_BANGis] = ACTIONS(2207), - [anon_sym_in] = ACTIONS(2209), - [anon_sym_BANGin] = ACTIONS(2207), - [anon_sym_match] = ACTIONS(2209), - [anon_sym_select] = ACTIONS(2209), - [anon_sym_lock] = ACTIONS(2209), - [anon_sym_rlock] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(2209), - [anon_sym_sql] = ACTIONS(2209), - [sym_int_literal] = ACTIONS(2209), - [sym_float_literal] = ACTIONS(2207), - [sym_rune_literal] = ACTIONS(2207), - [anon_sym_SQUOTE] = ACTIONS(2207), - [anon_sym_DQUOTE] = ACTIONS(2207), - [anon_sym_c_SQUOTE] = ACTIONS(2207), - [anon_sym_c_DQUOTE] = ACTIONS(2207), - [anon_sym_r_SQUOTE] = ACTIONS(2207), - [anon_sym_r_DQUOTE] = ACTIONS(2207), - [sym_pseudo_compile_time_identifier] = ACTIONS(2209), - [anon_sym_shared] = ACTIONS(2209), - [anon_sym_map_LBRACK] = ACTIONS(2207), - [anon_sym_chan] = ACTIONS(2209), - [anon_sym_thread] = ACTIONS(2209), - [anon_sym_atomic] = ACTIONS(2209), - }, - [1325] = { - [sym_line_comment] = STATE(1325), - [sym_block_comment] = STATE(1325), - [sym_identifier] = ACTIONS(3052), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3052), - [anon_sym_as] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(3050), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3050), - [anon_sym_PIPE] = ACTIONS(3052), - [anon_sym_fn] = ACTIONS(3052), - [anon_sym_PLUS] = ACTIONS(3052), - [anon_sym_DASH] = ACTIONS(3052), - [anon_sym_STAR] = ACTIONS(3050), - [anon_sym_SLASH] = ACTIONS(3052), - [anon_sym_PERCENT] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(3052), - [anon_sym_GT] = ACTIONS(3052), - [anon_sym_EQ_EQ] = ACTIONS(3050), - [anon_sym_BANG_EQ] = ACTIONS(3050), - [anon_sym_LT_EQ] = ACTIONS(3050), - [anon_sym_GT_EQ] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(3050), - [anon_sym_RBRACK] = ACTIONS(3050), - [anon_sym_struct] = ACTIONS(3052), - [anon_sym_mut] = ACTIONS(3052), - [anon_sym_COLON] = ACTIONS(3050), - [anon_sym_PLUS_PLUS] = ACTIONS(3050), - [anon_sym_DASH_DASH] = ACTIONS(3050), - [anon_sym_QMARK] = ACTIONS(3052), - [anon_sym_BANG] = ACTIONS(3052), - [anon_sym_go] = ACTIONS(3052), - [anon_sym_spawn] = ACTIONS(3052), - [anon_sym_json_DOTdecode] = ACTIONS(3050), - [anon_sym_LBRACK2] = ACTIONS(3052), - [anon_sym_TILDE] = ACTIONS(3050), - [anon_sym_CARET] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3052), - [anon_sym_LT_DASH] = ACTIONS(3050), - [anon_sym_LT_LT] = ACTIONS(3050), - [anon_sym_GT_GT] = ACTIONS(3052), - [anon_sym_GT_GT_GT] = ACTIONS(3050), - [anon_sym_AMP_CARET] = ACTIONS(3050), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_or] = ACTIONS(3052), - [sym_none] = ACTIONS(3052), - [sym_true] = ACTIONS(3052), - [sym_false] = ACTIONS(3052), - [sym_nil] = ACTIONS(3052), - [anon_sym_QMARK_DOT] = ACTIONS(3050), - [anon_sym_POUND_LBRACK] = ACTIONS(3050), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_DOLLARif] = ACTIONS(3052), - [anon_sym_is] = ACTIONS(3052), - [anon_sym_BANGis] = ACTIONS(3050), - [anon_sym_in] = ACTIONS(3052), - [anon_sym_BANGin] = ACTIONS(3050), - [anon_sym_match] = ACTIONS(3052), - [anon_sym_select] = ACTIONS(3052), - [anon_sym_lock] = ACTIONS(3052), - [anon_sym_rlock] = ACTIONS(3052), - [anon_sym_unsafe] = ACTIONS(3052), - [anon_sym_sql] = ACTIONS(3052), - [sym_int_literal] = ACTIONS(3052), - [sym_float_literal] = ACTIONS(3050), - [sym_rune_literal] = ACTIONS(3050), - [anon_sym_SQUOTE] = ACTIONS(3050), - [anon_sym_DQUOTE] = ACTIONS(3050), - [anon_sym_c_SQUOTE] = ACTIONS(3050), - [anon_sym_c_DQUOTE] = ACTIONS(3050), - [anon_sym_r_SQUOTE] = ACTIONS(3050), - [anon_sym_r_DQUOTE] = ACTIONS(3050), - [sym_pseudo_compile_time_identifier] = ACTIONS(3052), - [anon_sym_shared] = ACTIONS(3052), - [anon_sym_map_LBRACK] = ACTIONS(3050), - [anon_sym_chan] = ACTIONS(3052), - [anon_sym_thread] = ACTIONS(3052), - [anon_sym_atomic] = ACTIONS(3052), - }, - [1326] = { - [sym_line_comment] = STATE(1326), - [sym_block_comment] = STATE(1326), - [sym_identifier] = ACTIONS(2205), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2205), - [anon_sym_as] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_COMMA] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_PIPE] = ACTIONS(2205), - [anon_sym_fn] = ACTIONS(2205), - [anon_sym_PLUS] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_STAR] = ACTIONS(2203), - [anon_sym_SLASH] = ACTIONS(2205), - [anon_sym_PERCENT] = ACTIONS(2203), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_GT] = ACTIONS(2205), - [anon_sym_EQ_EQ] = ACTIONS(2203), - [anon_sym_BANG_EQ] = ACTIONS(2203), - [anon_sym_LT_EQ] = ACTIONS(2203), - [anon_sym_GT_EQ] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_RBRACK] = ACTIONS(2203), - [anon_sym_struct] = ACTIONS(2205), - [anon_sym_mut] = ACTIONS(2205), - [anon_sym_COLON] = ACTIONS(2203), - [anon_sym_PLUS_PLUS] = ACTIONS(2203), - [anon_sym_DASH_DASH] = ACTIONS(2203), - [anon_sym_QMARK] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_go] = ACTIONS(2205), - [anon_sym_spawn] = ACTIONS(2205), - [anon_sym_json_DOTdecode] = ACTIONS(2203), - [anon_sym_LBRACK2] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_CARET] = ACTIONS(2203), - [anon_sym_AMP] = ACTIONS(2205), - [anon_sym_LT_DASH] = ACTIONS(2203), - [anon_sym_LT_LT] = ACTIONS(2203), - [anon_sym_GT_GT] = ACTIONS(2205), - [anon_sym_GT_GT_GT] = ACTIONS(2203), - [anon_sym_AMP_CARET] = ACTIONS(2203), - [anon_sym_AMP_AMP] = ACTIONS(2203), - [anon_sym_PIPE_PIPE] = ACTIONS(2203), - [anon_sym_or] = ACTIONS(2205), - [sym_none] = ACTIONS(2205), - [sym_true] = ACTIONS(2205), - [sym_false] = ACTIONS(2205), - [sym_nil] = ACTIONS(2205), - [anon_sym_QMARK_DOT] = ACTIONS(2203), - [anon_sym_POUND_LBRACK] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_DOLLARif] = ACTIONS(2205), - [anon_sym_is] = ACTIONS(2205), - [anon_sym_BANGis] = ACTIONS(2203), - [anon_sym_in] = ACTIONS(2205), - [anon_sym_BANGin] = ACTIONS(2203), - [anon_sym_match] = ACTIONS(2205), - [anon_sym_select] = ACTIONS(2205), - [anon_sym_lock] = ACTIONS(2205), - [anon_sym_rlock] = ACTIONS(2205), - [anon_sym_unsafe] = ACTIONS(2205), - [anon_sym_sql] = ACTIONS(2205), - [sym_int_literal] = ACTIONS(2205), - [sym_float_literal] = ACTIONS(2203), - [sym_rune_literal] = ACTIONS(2203), - [anon_sym_SQUOTE] = ACTIONS(2203), - [anon_sym_DQUOTE] = ACTIONS(2203), - [anon_sym_c_SQUOTE] = ACTIONS(2203), - [anon_sym_c_DQUOTE] = ACTIONS(2203), - [anon_sym_r_SQUOTE] = ACTIONS(2203), - [anon_sym_r_DQUOTE] = ACTIONS(2203), - [sym_pseudo_compile_time_identifier] = ACTIONS(2205), - [anon_sym_shared] = ACTIONS(2205), - [anon_sym_map_LBRACK] = ACTIONS(2203), - [anon_sym_chan] = ACTIONS(2205), - [anon_sym_thread] = ACTIONS(2205), - [anon_sym_atomic] = ACTIONS(2205), - }, - [1327] = { - [sym_line_comment] = STATE(1327), - [sym_block_comment] = STATE(1327), - [sym_identifier] = ACTIONS(2137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_as] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_COMMA] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_PIPE] = ACTIONS(2139), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2139), - [anon_sym_PERCENT] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_GT] = ACTIONS(2139), - [anon_sym_EQ_EQ] = ACTIONS(2142), - [anon_sym_BANG_EQ] = ACTIONS(2142), - [anon_sym_LT_EQ] = ACTIONS(2142), - [anon_sym_GT_EQ] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_RBRACK] = ACTIONS(2135), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_mut] = ACTIONS(2137), - [anon_sym_COLON] = ACTIONS(2135), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [anon_sym_QMARK] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_go] = ACTIONS(2137), - [anon_sym_spawn] = ACTIONS(2137), - [anon_sym_json_DOTdecode] = ACTIONS(2135), - [anon_sym_LBRACK2] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2135), - [anon_sym_CARET] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_LT_DASH] = ACTIONS(2135), - [anon_sym_LT_LT] = ACTIONS(2142), - [anon_sym_GT_GT] = ACTIONS(2139), - [anon_sym_GT_GT_GT] = ACTIONS(2142), - [anon_sym_AMP_CARET] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_PIPE_PIPE] = ACTIONS(2142), - [anon_sym_or] = ACTIONS(2139), - [sym_none] = ACTIONS(2137), - [sym_true] = ACTIONS(2137), - [sym_false] = ACTIONS(2137), - [sym_nil] = ACTIONS(2137), - [anon_sym_QMARK_DOT] = ACTIONS(2142), - [anon_sym_POUND_LBRACK] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_DOLLARif] = ACTIONS(2137), - [anon_sym_is] = ACTIONS(2139), - [anon_sym_BANGis] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2139), - [anon_sym_BANGin] = ACTIONS(2142), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_select] = ACTIONS(2137), - [anon_sym_lock] = ACTIONS(2137), - [anon_sym_rlock] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_sql] = ACTIONS(2137), - [sym_int_literal] = ACTIONS(2137), - [sym_float_literal] = ACTIONS(2135), - [sym_rune_literal] = ACTIONS(2135), - [anon_sym_SQUOTE] = ACTIONS(2135), - [anon_sym_DQUOTE] = ACTIONS(2135), - [anon_sym_c_SQUOTE] = ACTIONS(2135), - [anon_sym_c_DQUOTE] = ACTIONS(2135), - [anon_sym_r_SQUOTE] = ACTIONS(2135), - [anon_sym_r_DQUOTE] = ACTIONS(2135), - [sym_pseudo_compile_time_identifier] = ACTIONS(2137), - [anon_sym_shared] = ACTIONS(2137), - [anon_sym_map_LBRACK] = ACTIONS(2135), - [anon_sym_chan] = ACTIONS(2137), - [anon_sym_thread] = ACTIONS(2137), - [anon_sym_atomic] = ACTIONS(2137), - }, - [1328] = { - [sym_line_comment] = STATE(1328), - [sym_block_comment] = STATE(1328), - [sym_identifier] = ACTIONS(2745), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2745), - [anon_sym_as] = ACTIONS(2745), - [anon_sym_LBRACE] = ACTIONS(2743), - [anon_sym_COMMA] = ACTIONS(2743), - [anon_sym_RBRACE] = ACTIONS(2743), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_PIPE] = ACTIONS(2745), - [anon_sym_fn] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2745), - [anon_sym_STAR] = ACTIONS(2743), - [anon_sym_SLASH] = ACTIONS(2745), - [anon_sym_PERCENT] = ACTIONS(2743), - [anon_sym_LT] = ACTIONS(2745), - [anon_sym_GT] = ACTIONS(2745), - [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(2743), - [anon_sym_RBRACK] = ACTIONS(2743), - [anon_sym_struct] = ACTIONS(2745), - [anon_sym_mut] = ACTIONS(2745), - [anon_sym_COLON] = ACTIONS(2743), - [anon_sym_PLUS_PLUS] = ACTIONS(2743), - [anon_sym_DASH_DASH] = ACTIONS(2743), - [anon_sym_QMARK] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_go] = ACTIONS(2745), - [anon_sym_spawn] = ACTIONS(2745), - [anon_sym_json_DOTdecode] = ACTIONS(2743), - [anon_sym_LBRACK2] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2743), - [anon_sym_CARET] = ACTIONS(2743), - [anon_sym_AMP] = ACTIONS(2745), - [anon_sym_LT_DASH] = ACTIONS(2743), - [anon_sym_LT_LT] = ACTIONS(2743), - [anon_sym_GT_GT] = ACTIONS(2745), - [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(2745), - [sym_none] = ACTIONS(2745), - [sym_true] = ACTIONS(2745), - [sym_false] = ACTIONS(2745), - [sym_nil] = ACTIONS(2745), - [anon_sym_QMARK_DOT] = ACTIONS(2743), - [anon_sym_POUND_LBRACK] = ACTIONS(2743), - [anon_sym_if] = ACTIONS(2745), - [anon_sym_DOLLARif] = ACTIONS(2745), - [anon_sym_is] = ACTIONS(2745), - [anon_sym_BANGis] = ACTIONS(2743), - [anon_sym_in] = ACTIONS(2745), - [anon_sym_BANGin] = ACTIONS(2743), - [anon_sym_match] = ACTIONS(2745), - [anon_sym_select] = ACTIONS(2745), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), - [anon_sym_unsafe] = ACTIONS(2745), - [anon_sym_sql] = ACTIONS(2745), - [sym_int_literal] = ACTIONS(2745), - [sym_float_literal] = ACTIONS(2743), - [sym_rune_literal] = ACTIONS(2743), - [anon_sym_SQUOTE] = ACTIONS(2743), - [anon_sym_DQUOTE] = ACTIONS(2743), - [anon_sym_c_SQUOTE] = ACTIONS(2743), - [anon_sym_c_DQUOTE] = ACTIONS(2743), - [anon_sym_r_SQUOTE] = ACTIONS(2743), - [anon_sym_r_DQUOTE] = ACTIONS(2743), - [sym_pseudo_compile_time_identifier] = ACTIONS(2745), - [anon_sym_shared] = ACTIONS(2745), - [anon_sym_map_LBRACK] = ACTIONS(2743), - [anon_sym_chan] = ACTIONS(2745), - [anon_sym_thread] = ACTIONS(2745), - [anon_sym_atomic] = ACTIONS(2745), - }, - [1329] = { - [sym_line_comment] = STATE(1329), - [sym_block_comment] = STATE(1329), - [sym_identifier] = ACTIONS(2101), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2101), - [anon_sym_as] = ACTIONS(2101), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_COMMA] = ACTIONS(2099), - [anon_sym_RBRACE] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(2099), - [anon_sym_PIPE] = ACTIONS(2101), - [anon_sym_fn] = ACTIONS(2101), - [anon_sym_PLUS] = ACTIONS(2101), - [anon_sym_DASH] = ACTIONS(2101), - [anon_sym_STAR] = ACTIONS(2099), - [anon_sym_SLASH] = ACTIONS(2101), - [anon_sym_PERCENT] = ACTIONS(2099), - [anon_sym_LT] = ACTIONS(2101), - [anon_sym_GT] = ACTIONS(2101), - [anon_sym_EQ_EQ] = ACTIONS(2099), - [anon_sym_BANG_EQ] = ACTIONS(2099), - [anon_sym_LT_EQ] = ACTIONS(2099), - [anon_sym_GT_EQ] = ACTIONS(2099), - [anon_sym_LBRACK] = ACTIONS(2099), - [anon_sym_RBRACK] = ACTIONS(2099), - [anon_sym_struct] = ACTIONS(2101), - [anon_sym_mut] = ACTIONS(2101), - [anon_sym_COLON] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2099), - [anon_sym_DASH_DASH] = ACTIONS(2099), - [anon_sym_QMARK] = ACTIONS(2101), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_go] = ACTIONS(2101), - [anon_sym_spawn] = ACTIONS(2101), - [anon_sym_json_DOTdecode] = ACTIONS(2099), - [anon_sym_LBRACK2] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_LT_DASH] = ACTIONS(2099), - [anon_sym_LT_LT] = ACTIONS(2099), - [anon_sym_GT_GT] = ACTIONS(2101), - [anon_sym_GT_GT_GT] = ACTIONS(2099), - [anon_sym_AMP_CARET] = ACTIONS(2099), - [anon_sym_AMP_AMP] = ACTIONS(2099), - [anon_sym_PIPE_PIPE] = ACTIONS(2099), - [anon_sym_or] = ACTIONS(2101), - [sym_none] = ACTIONS(2101), - [sym_true] = ACTIONS(2101), - [sym_false] = ACTIONS(2101), - [sym_nil] = ACTIONS(2101), - [anon_sym_QMARK_DOT] = ACTIONS(2099), - [anon_sym_POUND_LBRACK] = ACTIONS(2099), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_DOLLARif] = ACTIONS(2101), - [anon_sym_is] = ACTIONS(2101), - [anon_sym_BANGis] = ACTIONS(2099), - [anon_sym_in] = ACTIONS(2101), - [anon_sym_BANGin] = ACTIONS(2099), - [anon_sym_match] = ACTIONS(2101), - [anon_sym_select] = ACTIONS(2101), - [anon_sym_lock] = ACTIONS(2101), - [anon_sym_rlock] = ACTIONS(2101), - [anon_sym_unsafe] = ACTIONS(2101), - [anon_sym_sql] = ACTIONS(2101), - [sym_int_literal] = ACTIONS(2101), - [sym_float_literal] = ACTIONS(2099), - [sym_rune_literal] = ACTIONS(2099), - [anon_sym_SQUOTE] = ACTIONS(2099), - [anon_sym_DQUOTE] = ACTIONS(2099), - [anon_sym_c_SQUOTE] = ACTIONS(2099), - [anon_sym_c_DQUOTE] = ACTIONS(2099), - [anon_sym_r_SQUOTE] = ACTIONS(2099), - [anon_sym_r_DQUOTE] = ACTIONS(2099), - [sym_pseudo_compile_time_identifier] = ACTIONS(2101), - [anon_sym_shared] = ACTIONS(2101), - [anon_sym_map_LBRACK] = ACTIONS(2099), - [anon_sym_chan] = ACTIONS(2101), - [anon_sym_thread] = ACTIONS(2101), - [anon_sym_atomic] = ACTIONS(2101), - }, - [1330] = { - [sym_line_comment] = STATE(1330), - [sym_block_comment] = STATE(1330), - [sym_identifier] = ACTIONS(2737), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2737), - [anon_sym_as] = ACTIONS(2737), - [anon_sym_LBRACE] = ACTIONS(2735), - [anon_sym_COMMA] = ACTIONS(2735), - [anon_sym_RBRACE] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(2737), - [anon_sym_fn] = ACTIONS(2737), - [anon_sym_PLUS] = ACTIONS(2737), - [anon_sym_DASH] = ACTIONS(2737), - [anon_sym_STAR] = ACTIONS(2735), - [anon_sym_SLASH] = ACTIONS(2737), - [anon_sym_PERCENT] = ACTIONS(2735), - [anon_sym_LT] = ACTIONS(2737), - [anon_sym_GT] = ACTIONS(2737), - [anon_sym_EQ_EQ] = ACTIONS(2735), - [anon_sym_BANG_EQ] = ACTIONS(2735), - [anon_sym_LT_EQ] = ACTIONS(2735), - [anon_sym_GT_EQ] = ACTIONS(2735), - [anon_sym_LBRACK] = ACTIONS(2735), - [anon_sym_RBRACK] = ACTIONS(2735), - [anon_sym_struct] = ACTIONS(2737), - [anon_sym_mut] = ACTIONS(2737), - [anon_sym_COLON] = ACTIONS(2735), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_QMARK] = ACTIONS(2737), - [anon_sym_BANG] = ACTIONS(2737), - [anon_sym_go] = ACTIONS(2737), - [anon_sym_spawn] = ACTIONS(2737), - [anon_sym_json_DOTdecode] = ACTIONS(2735), - [anon_sym_LBRACK2] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2735), - [anon_sym_CARET] = ACTIONS(2735), - [anon_sym_AMP] = ACTIONS(2737), - [anon_sym_LT_DASH] = ACTIONS(2735), - [anon_sym_LT_LT] = ACTIONS(2735), - [anon_sym_GT_GT] = ACTIONS(2737), - [anon_sym_GT_GT_GT] = ACTIONS(2735), - [anon_sym_AMP_CARET] = ACTIONS(2735), - [anon_sym_AMP_AMP] = ACTIONS(2735), - [anon_sym_PIPE_PIPE] = ACTIONS(2735), - [anon_sym_or] = ACTIONS(2737), - [sym_none] = ACTIONS(2737), - [sym_true] = ACTIONS(2737), - [sym_false] = ACTIONS(2737), - [sym_nil] = ACTIONS(2737), - [anon_sym_QMARK_DOT] = ACTIONS(2735), - [anon_sym_POUND_LBRACK] = ACTIONS(2735), - [anon_sym_if] = ACTIONS(2737), - [anon_sym_DOLLARif] = ACTIONS(2737), - [anon_sym_is] = ACTIONS(2737), - [anon_sym_BANGis] = ACTIONS(2735), - [anon_sym_in] = ACTIONS(2737), - [anon_sym_BANGin] = ACTIONS(2735), - [anon_sym_match] = ACTIONS(2737), - [anon_sym_select] = ACTIONS(2737), - [anon_sym_lock] = ACTIONS(2737), - [anon_sym_rlock] = ACTIONS(2737), - [anon_sym_unsafe] = ACTIONS(2737), - [anon_sym_sql] = ACTIONS(2737), - [sym_int_literal] = ACTIONS(2737), - [sym_float_literal] = ACTIONS(2735), - [sym_rune_literal] = ACTIONS(2735), - [anon_sym_SQUOTE] = ACTIONS(2735), - [anon_sym_DQUOTE] = ACTIONS(2735), - [anon_sym_c_SQUOTE] = ACTIONS(2735), - [anon_sym_c_DQUOTE] = ACTIONS(2735), - [anon_sym_r_SQUOTE] = ACTIONS(2735), - [anon_sym_r_DQUOTE] = ACTIONS(2735), - [sym_pseudo_compile_time_identifier] = ACTIONS(2737), - [anon_sym_shared] = ACTIONS(2737), - [anon_sym_map_LBRACK] = ACTIONS(2735), - [anon_sym_chan] = ACTIONS(2737), - [anon_sym_thread] = ACTIONS(2737), - [anon_sym_atomic] = ACTIONS(2737), - }, - [1331] = { - [sym_line_comment] = STATE(1331), - [sym_block_comment] = STATE(1331), - [sym_identifier] = ACTIONS(3056), + [sym_identifier] = ACTIONS(2099), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3056), - [anon_sym_as] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_fn] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3056), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_SLASH] = ACTIONS(3056), - [anon_sym_PERCENT] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_EQ_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_RBRACK] = ACTIONS(3054), - [anon_sym_struct] = ACTIONS(3056), - [anon_sym_mut] = ACTIONS(3056), - [anon_sym_COLON] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3054), - [anon_sym_DASH_DASH] = ACTIONS(3054), - [anon_sym_QMARK] = ACTIONS(3056), - [anon_sym_BANG] = ACTIONS(3056), - [anon_sym_go] = ACTIONS(3056), - [anon_sym_spawn] = ACTIONS(3056), - [anon_sym_json_DOTdecode] = ACTIONS(3054), - [anon_sym_LBRACK2] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3054), - [anon_sym_CARET] = ACTIONS(3054), - [anon_sym_AMP] = ACTIONS(3056), - [anon_sym_LT_DASH] = ACTIONS(3054), - [anon_sym_LT_LT] = ACTIONS(3054), - [anon_sym_GT_GT] = ACTIONS(3056), - [anon_sym_GT_GT_GT] = ACTIONS(3054), - [anon_sym_AMP_CARET] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_or] = ACTIONS(3056), - [sym_none] = ACTIONS(3056), - [sym_true] = ACTIONS(3056), - [sym_false] = ACTIONS(3056), - [sym_nil] = ACTIONS(3056), - [anon_sym_QMARK_DOT] = ACTIONS(3054), - [anon_sym_POUND_LBRACK] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3056), - [anon_sym_DOLLARif] = ACTIONS(3056), - [anon_sym_is] = ACTIONS(3056), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_in] = ACTIONS(3056), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_match] = ACTIONS(3056), - [anon_sym_select] = ACTIONS(3056), - [anon_sym_lock] = ACTIONS(3056), - [anon_sym_rlock] = ACTIONS(3056), - [anon_sym_unsafe] = ACTIONS(3056), - [anon_sym_sql] = ACTIONS(3056), - [sym_int_literal] = ACTIONS(3056), - [sym_float_literal] = ACTIONS(3054), - [sym_rune_literal] = ACTIONS(3054), - [anon_sym_SQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE] = ACTIONS(3054), - [anon_sym_c_SQUOTE] = ACTIONS(3054), - [anon_sym_c_DQUOTE] = ACTIONS(3054), - [anon_sym_r_SQUOTE] = ACTIONS(3054), - [anon_sym_r_DQUOTE] = ACTIONS(3054), - [sym_pseudo_compile_time_identifier] = ACTIONS(3056), - [anon_sym_shared] = ACTIONS(3056), - [anon_sym_map_LBRACK] = ACTIONS(3054), - [anon_sym_chan] = ACTIONS(3056), - [anon_sym_thread] = ACTIONS(3056), - [anon_sym_atomic] = ACTIONS(3056), + [anon_sym_DOT] = ACTIONS(2099), + [anon_sym_as] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_COMMA] = ACTIONS(2097), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_fn] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(2099), + [anon_sym_DASH] = ACTIONS(2099), + [anon_sym_STAR] = ACTIONS(2097), + [anon_sym_SLASH] = ACTIONS(2099), + [anon_sym_PERCENT] = ACTIONS(2097), + [anon_sym_LT] = ACTIONS(2099), + [anon_sym_GT] = ACTIONS(2099), + [anon_sym_EQ_EQ] = ACTIONS(2097), + [anon_sym_BANG_EQ] = ACTIONS(2097), + [anon_sym_LT_EQ] = ACTIONS(2097), + [anon_sym_GT_EQ] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_RBRACK] = ACTIONS(2097), + [anon_sym_struct] = ACTIONS(2099), + [anon_sym_mut] = ACTIONS(2099), + [anon_sym_COLON] = ACTIONS(2097), + [anon_sym_PLUS_PLUS] = ACTIONS(2097), + [anon_sym_DASH_DASH] = ACTIONS(2097), + [anon_sym_QMARK] = ACTIONS(2099), + [anon_sym_BANG] = ACTIONS(2099), + [anon_sym_go] = ACTIONS(2099), + [anon_sym_spawn] = ACTIONS(2099), + [anon_sym_json_DOTdecode] = ACTIONS(2097), + [anon_sym_PIPE] = ACTIONS(2099), + [anon_sym_LBRACK2] = ACTIONS(2099), + [anon_sym_TILDE] = ACTIONS(2097), + [anon_sym_CARET] = ACTIONS(2097), + [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_LT_DASH] = ACTIONS(2097), + [anon_sym_LT_LT] = ACTIONS(2097), + [anon_sym_GT_GT] = ACTIONS(2099), + [anon_sym_GT_GT_GT] = ACTIONS(2097), + [anon_sym_AMP_CARET] = ACTIONS(2097), + [anon_sym_AMP_AMP] = ACTIONS(2097), + [anon_sym_PIPE_PIPE] = ACTIONS(2097), + [anon_sym_or] = ACTIONS(2099), + [sym_none] = ACTIONS(2099), + [sym_true] = ACTIONS(2099), + [sym_false] = ACTIONS(2099), + [sym_nil] = ACTIONS(2099), + [anon_sym_QMARK_DOT] = ACTIONS(2097), + [anon_sym_POUND_LBRACK] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(2099), + [anon_sym_is] = ACTIONS(2099), + [anon_sym_BANGis] = ACTIONS(2097), + [anon_sym_in] = ACTIONS(2099), + [anon_sym_BANGin] = ACTIONS(2097), + [anon_sym_match] = ACTIONS(2099), + [anon_sym_select] = ACTIONS(2099), + [anon_sym_lock] = ACTIONS(2099), + [anon_sym_rlock] = ACTIONS(2099), + [anon_sym_unsafe] = ACTIONS(2099), + [anon_sym_sql] = ACTIONS(2099), + [sym_int_literal] = ACTIONS(2099), + [sym_float_literal] = ACTIONS(2097), + [sym_rune_literal] = ACTIONS(2097), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(2097), + [anon_sym_c_SQUOTE] = ACTIONS(2097), + [anon_sym_c_DQUOTE] = ACTIONS(2097), + [anon_sym_r_SQUOTE] = ACTIONS(2097), + [anon_sym_r_DQUOTE] = ACTIONS(2097), + [sym_pseudo_compile_time_identifier] = ACTIONS(2099), + [anon_sym_shared] = ACTIONS(2099), + [anon_sym_map_LBRACK] = ACTIONS(2097), + [anon_sym_chan] = ACTIONS(2099), + [anon_sym_thread] = ACTIONS(2099), + [anon_sym_atomic] = ACTIONS(2099), }, - [1332] = { - [sym_line_comment] = STATE(1332), - [sym_block_comment] = STATE(1332), - [sym_identifier] = ACTIONS(2833), + [1311] = { + [sym_line_comment] = STATE(1311), + [sym_block_comment] = STATE(1311), + [sym_identifier] = ACTIONS(2321), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [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_SLASH] = ACTIONS(2833), - [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), - [anon_sym_SQUOTE] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2831), - [anon_sym_c_SQUOTE] = ACTIONS(2831), - [anon_sym_c_DQUOTE] = ACTIONS(2831), - [anon_sym_r_SQUOTE] = ACTIONS(2831), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(2321), + [anon_sym_as] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_fn] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(2321), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2319), + [anon_sym_SLASH] = ACTIONS(2321), + [anon_sym_PERCENT] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_GT] = ACTIONS(2321), + [anon_sym_EQ_EQ] = ACTIONS(2319), + [anon_sym_BANG_EQ] = ACTIONS(2319), + [anon_sym_LT_EQ] = ACTIONS(2319), + [anon_sym_GT_EQ] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2319), + [anon_sym_RBRACK] = ACTIONS(2319), + [anon_sym_struct] = ACTIONS(2321), + [anon_sym_mut] = ACTIONS(2321), + [anon_sym_COLON] = ACTIONS(2319), + [anon_sym_PLUS_PLUS] = ACTIONS(2319), + [anon_sym_DASH_DASH] = ACTIONS(2319), + [anon_sym_QMARK] = ACTIONS(2321), + [anon_sym_BANG] = ACTIONS(2321), + [anon_sym_go] = ACTIONS(2321), + [anon_sym_spawn] = ACTIONS(2321), + [anon_sym_json_DOTdecode] = ACTIONS(2319), + [anon_sym_PIPE] = ACTIONS(2321), + [anon_sym_LBRACK2] = ACTIONS(2321), + [anon_sym_TILDE] = ACTIONS(2319), + [anon_sym_CARET] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2321), + [anon_sym_LT_DASH] = ACTIONS(2319), + [anon_sym_LT_LT] = ACTIONS(2319), + [anon_sym_GT_GT] = ACTIONS(2321), + [anon_sym_GT_GT_GT] = ACTIONS(2319), + [anon_sym_AMP_CARET] = ACTIONS(2319), + [anon_sym_AMP_AMP] = ACTIONS(2319), + [anon_sym_PIPE_PIPE] = ACTIONS(2319), + [anon_sym_or] = ACTIONS(2321), + [sym_none] = ACTIONS(2321), + [sym_true] = ACTIONS(2321), + [sym_false] = ACTIONS(2321), + [sym_nil] = ACTIONS(2321), + [anon_sym_QMARK_DOT] = ACTIONS(2319), + [anon_sym_POUND_LBRACK] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_DOLLARif] = ACTIONS(2321), + [anon_sym_is] = ACTIONS(2321), + [anon_sym_BANGis] = ACTIONS(2319), + [anon_sym_in] = ACTIONS(2321), + [anon_sym_BANGin] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2321), + [anon_sym_select] = ACTIONS(2321), + [anon_sym_lock] = ACTIONS(2321), + [anon_sym_rlock] = ACTIONS(2321), + [anon_sym_unsafe] = ACTIONS(2321), + [anon_sym_sql] = ACTIONS(2321), + [sym_int_literal] = ACTIONS(2321), + [sym_float_literal] = ACTIONS(2319), + [sym_rune_literal] = ACTIONS(2319), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [anon_sym_c_SQUOTE] = ACTIONS(2319), + [anon_sym_c_DQUOTE] = ACTIONS(2319), + [anon_sym_r_SQUOTE] = ACTIONS(2319), + [anon_sym_r_DQUOTE] = ACTIONS(2319), + [sym_pseudo_compile_time_identifier] = ACTIONS(2321), + [anon_sym_shared] = ACTIONS(2321), + [anon_sym_map_LBRACK] = ACTIONS(2319), + [anon_sym_chan] = ACTIONS(2321), + [anon_sym_thread] = ACTIONS(2321), + [anon_sym_atomic] = ACTIONS(2321), }, - [1333] = { - [sym_line_comment] = STATE(1333), - [sym_block_comment] = STATE(1333), - [sym_identifier] = ACTIONS(2729), + [1312] = { + [sym_line_comment] = STATE(1312), + [sym_block_comment] = STATE(1312), + [sym_identifier] = ACTIONS(2937), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2729), - [anon_sym_as] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2727), - [anon_sym_COMMA] = ACTIONS(2727), - [anon_sym_RBRACE] = ACTIONS(2727), - [anon_sym_LPAREN] = ACTIONS(2727), - [anon_sym_PIPE] = ACTIONS(2729), - [anon_sym_fn] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_STAR] = ACTIONS(2727), - [anon_sym_SLASH] = ACTIONS(2729), - [anon_sym_PERCENT] = ACTIONS(2727), - [anon_sym_LT] = ACTIONS(2729), - [anon_sym_GT] = ACTIONS(2729), - [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(2727), - [anon_sym_RBRACK] = ACTIONS(2727), - [anon_sym_struct] = ACTIONS(2729), - [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(2729), - [anon_sym_BANG] = ACTIONS(2729), - [anon_sym_go] = ACTIONS(2729), - [anon_sym_spawn] = ACTIONS(2729), - [anon_sym_json_DOTdecode] = ACTIONS(2727), - [anon_sym_LBRACK2] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_LT_DASH] = ACTIONS(2727), - [anon_sym_LT_LT] = ACTIONS(2727), - [anon_sym_GT_GT] = ACTIONS(2729), - [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(2729), - [sym_none] = ACTIONS(2729), - [sym_true] = ACTIONS(2729), - [sym_false] = ACTIONS(2729), - [sym_nil] = ACTIONS(2729), - [anon_sym_QMARK_DOT] = ACTIONS(2727), - [anon_sym_POUND_LBRACK] = ACTIONS(2727), - [anon_sym_if] = ACTIONS(2729), - [anon_sym_DOLLARif] = ACTIONS(2729), - [anon_sym_is] = ACTIONS(2729), - [anon_sym_BANGis] = ACTIONS(2727), - [anon_sym_in] = ACTIONS(2729), - [anon_sym_BANGin] = ACTIONS(2727), - [anon_sym_match] = ACTIONS(2729), - [anon_sym_select] = ACTIONS(2729), - [anon_sym_lock] = ACTIONS(2729), - [anon_sym_rlock] = ACTIONS(2729), - [anon_sym_unsafe] = ACTIONS(2729), - [anon_sym_sql] = ACTIONS(2729), - [sym_int_literal] = ACTIONS(2729), - [sym_float_literal] = ACTIONS(2727), - [sym_rune_literal] = ACTIONS(2727), - [anon_sym_SQUOTE] = ACTIONS(2727), - [anon_sym_DQUOTE] = ACTIONS(2727), - [anon_sym_c_SQUOTE] = ACTIONS(2727), - [anon_sym_c_DQUOTE] = ACTIONS(2727), - [anon_sym_r_SQUOTE] = ACTIONS(2727), - [anon_sym_r_DQUOTE] = ACTIONS(2727), - [sym_pseudo_compile_time_identifier] = ACTIONS(2729), - [anon_sym_shared] = ACTIONS(2729), - [anon_sym_map_LBRACK] = ACTIONS(2727), - [anon_sym_chan] = ACTIONS(2729), - [anon_sym_thread] = ACTIONS(2729), - [anon_sym_atomic] = ACTIONS(2729), + [anon_sym_DOT] = ACTIONS(2937), + [anon_sym_as] = ACTIONS(2937), + [anon_sym_LBRACE] = ACTIONS(2935), + [anon_sym_COMMA] = ACTIONS(2935), + [anon_sym_RBRACE] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2935), + [anon_sym_fn] = ACTIONS(2937), + [anon_sym_PLUS] = ACTIONS(2937), + [anon_sym_DASH] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_SLASH] = ACTIONS(2937), + [anon_sym_PERCENT] = ACTIONS(2935), + [anon_sym_LT] = ACTIONS(2937), + [anon_sym_GT] = ACTIONS(2937), + [anon_sym_EQ_EQ] = ACTIONS(2935), + [anon_sym_BANG_EQ] = ACTIONS(2935), + [anon_sym_LT_EQ] = ACTIONS(2935), + [anon_sym_GT_EQ] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2935), + [anon_sym_RBRACK] = ACTIONS(2935), + [anon_sym_struct] = ACTIONS(2937), + [anon_sym_mut] = ACTIONS(2937), + [anon_sym_COLON] = ACTIONS(2935), + [anon_sym_PLUS_PLUS] = ACTIONS(2935), + [anon_sym_DASH_DASH] = ACTIONS(2935), + [anon_sym_QMARK] = ACTIONS(2937), + [anon_sym_BANG] = ACTIONS(2937), + [anon_sym_go] = ACTIONS(2937), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2935), + [anon_sym_PIPE] = ACTIONS(2937), + [anon_sym_LBRACK2] = ACTIONS(2937), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_CARET] = ACTIONS(2935), + [anon_sym_AMP] = ACTIONS(2937), + [anon_sym_LT_DASH] = ACTIONS(2935), + [anon_sym_LT_LT] = ACTIONS(2935), + [anon_sym_GT_GT] = ACTIONS(2937), + [anon_sym_GT_GT_GT] = ACTIONS(2935), + [anon_sym_AMP_CARET] = ACTIONS(2935), + [anon_sym_AMP_AMP] = ACTIONS(2935), + [anon_sym_PIPE_PIPE] = ACTIONS(2935), + [anon_sym_or] = ACTIONS(2937), + [sym_none] = ACTIONS(2937), + [sym_true] = ACTIONS(2937), + [sym_false] = ACTIONS(2937), + [sym_nil] = ACTIONS(2937), + [anon_sym_QMARK_DOT] = ACTIONS(2935), + [anon_sym_POUND_LBRACK] = ACTIONS(2935), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_DOLLARif] = ACTIONS(2937), + [anon_sym_is] = ACTIONS(2937), + [anon_sym_BANGis] = ACTIONS(2935), + [anon_sym_in] = ACTIONS(2937), + [anon_sym_BANGin] = ACTIONS(2935), + [anon_sym_match] = ACTIONS(2937), + [anon_sym_select] = ACTIONS(2937), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(2937), + [anon_sym_sql] = ACTIONS(2937), + [sym_int_literal] = ACTIONS(2937), + [sym_float_literal] = ACTIONS(2935), + [sym_rune_literal] = ACTIONS(2935), + [anon_sym_SQUOTE] = ACTIONS(2935), + [anon_sym_DQUOTE] = ACTIONS(2935), + [anon_sym_c_SQUOTE] = ACTIONS(2935), + [anon_sym_c_DQUOTE] = ACTIONS(2935), + [anon_sym_r_SQUOTE] = ACTIONS(2935), + [anon_sym_r_DQUOTE] = ACTIONS(2935), + [sym_pseudo_compile_time_identifier] = ACTIONS(2937), + [anon_sym_shared] = ACTIONS(2937), + [anon_sym_map_LBRACK] = ACTIONS(2935), + [anon_sym_chan] = ACTIONS(2937), + [anon_sym_thread] = ACTIONS(2937), + [anon_sym_atomic] = ACTIONS(2937), }, - [1334] = { - [sym_line_comment] = STATE(1334), - [sym_block_comment] = STATE(1334), - [sym_identifier] = ACTIONS(2767), + [1313] = { + [sym_line_comment] = STATE(1313), + [sym_block_comment] = STATE(1313), + [sym_identifier] = ACTIONS(2985), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2767), - [anon_sym_as] = ACTIONS(2767), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_COMMA] = ACTIONS(2765), - [anon_sym_RBRACE] = ACTIONS(2765), - [anon_sym_LPAREN] = ACTIONS(2765), - [anon_sym_PIPE] = ACTIONS(2767), - [anon_sym_fn] = ACTIONS(2767), - [anon_sym_PLUS] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2765), - [anon_sym_SLASH] = ACTIONS(2767), - [anon_sym_PERCENT] = ACTIONS(2765), - [anon_sym_LT] = ACTIONS(2767), - [anon_sym_GT] = ACTIONS(2767), - [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(2765), - [anon_sym_RBRACK] = ACTIONS(2765), - [anon_sym_struct] = ACTIONS(2767), - [anon_sym_mut] = ACTIONS(2767), - [anon_sym_COLON] = ACTIONS(2765), - [anon_sym_PLUS_PLUS] = ACTIONS(2765), - [anon_sym_DASH_DASH] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2767), - [anon_sym_BANG] = ACTIONS(2767), - [anon_sym_go] = ACTIONS(2767), - [anon_sym_spawn] = ACTIONS(2767), - [anon_sym_json_DOTdecode] = ACTIONS(2765), - [anon_sym_LBRACK2] = ACTIONS(2767), - [anon_sym_TILDE] = ACTIONS(2765), - [anon_sym_CARET] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_LT_DASH] = ACTIONS(2765), - [anon_sym_LT_LT] = ACTIONS(2765), - [anon_sym_GT_GT] = ACTIONS(2767), - [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(2767), - [sym_none] = ACTIONS(2767), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [sym_nil] = ACTIONS(2767), - [anon_sym_QMARK_DOT] = ACTIONS(2765), - [anon_sym_POUND_LBRACK] = ACTIONS(2765), - [anon_sym_if] = ACTIONS(2767), - [anon_sym_DOLLARif] = ACTIONS(2767), - [anon_sym_is] = ACTIONS(2767), - [anon_sym_BANGis] = ACTIONS(2765), - [anon_sym_in] = ACTIONS(2767), - [anon_sym_BANGin] = ACTIONS(2765), - [anon_sym_match] = ACTIONS(2767), - [anon_sym_select] = ACTIONS(2767), - [anon_sym_lock] = ACTIONS(2767), - [anon_sym_rlock] = ACTIONS(2767), - [anon_sym_unsafe] = ACTIONS(2767), - [anon_sym_sql] = ACTIONS(2767), - [sym_int_literal] = ACTIONS(2767), - [sym_float_literal] = ACTIONS(2765), - [sym_rune_literal] = ACTIONS(2765), - [anon_sym_SQUOTE] = ACTIONS(2765), - [anon_sym_DQUOTE] = ACTIONS(2765), - [anon_sym_c_SQUOTE] = ACTIONS(2765), - [anon_sym_c_DQUOTE] = ACTIONS(2765), - [anon_sym_r_SQUOTE] = ACTIONS(2765), - [anon_sym_r_DQUOTE] = ACTIONS(2765), - [sym_pseudo_compile_time_identifier] = ACTIONS(2767), - [anon_sym_shared] = ACTIONS(2767), - [anon_sym_map_LBRACK] = ACTIONS(2765), - [anon_sym_chan] = ACTIONS(2767), - [anon_sym_thread] = ACTIONS(2767), - [anon_sym_atomic] = ACTIONS(2767), + [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_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_PIPE] = ACTIONS(2985), + [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), + [anon_sym_SQUOTE] = ACTIONS(2983), + [anon_sym_DQUOTE] = ACTIONS(2983), + [anon_sym_c_SQUOTE] = ACTIONS(2983), + [anon_sym_c_DQUOTE] = ACTIONS(2983), + [anon_sym_r_SQUOTE] = ACTIONS(2983), + [anon_sym_r_DQUOTE] = 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), }, - [1335] = { - [sym_line_comment] = STATE(1335), - [sym_block_comment] = STATE(1335), + [1314] = { + [sym_line_comment] = STATE(1314), + [sym_block_comment] = STATE(1314), + [sym_identifier] = ACTIONS(2705), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2705), + [anon_sym_as] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_COMMA] = ACTIONS(2703), + [anon_sym_RBRACE] = ACTIONS(2703), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_fn] = ACTIONS(2705), + [anon_sym_PLUS] = ACTIONS(2705), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_SLASH] = ACTIONS(2705), + [anon_sym_PERCENT] = ACTIONS(2703), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_GT] = ACTIONS(2705), + [anon_sym_EQ_EQ] = ACTIONS(2703), + [anon_sym_BANG_EQ] = ACTIONS(2703), + [anon_sym_LT_EQ] = ACTIONS(2703), + [anon_sym_GT_EQ] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_RBRACK] = ACTIONS(2703), + [anon_sym_struct] = ACTIONS(2705), + [anon_sym_mut] = ACTIONS(2705), + [anon_sym_COLON] = ACTIONS(2703), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_QMARK] = ACTIONS(2705), + [anon_sym_BANG] = ACTIONS(2705), + [anon_sym_go] = ACTIONS(2705), + [anon_sym_spawn] = ACTIONS(2705), + [anon_sym_json_DOTdecode] = ACTIONS(2703), + [anon_sym_PIPE] = ACTIONS(2705), + [anon_sym_LBRACK2] = ACTIONS(2705), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_CARET] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_LT_DASH] = ACTIONS(2703), + [anon_sym_LT_LT] = ACTIONS(2703), + [anon_sym_GT_GT] = ACTIONS(2705), + [anon_sym_GT_GT_GT] = ACTIONS(2703), + [anon_sym_AMP_CARET] = ACTIONS(2703), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_PIPE_PIPE] = ACTIONS(2703), + [anon_sym_or] = ACTIONS(2705), + [sym_none] = ACTIONS(2705), + [sym_true] = ACTIONS(2705), + [sym_false] = ACTIONS(2705), + [sym_nil] = ACTIONS(2705), + [anon_sym_QMARK_DOT] = ACTIONS(2703), + [anon_sym_POUND_LBRACK] = ACTIONS(2703), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_DOLLARif] = ACTIONS(2705), + [anon_sym_is] = ACTIONS(2705), + [anon_sym_BANGis] = ACTIONS(2703), + [anon_sym_in] = ACTIONS(2705), + [anon_sym_BANGin] = ACTIONS(2703), + [anon_sym_match] = ACTIONS(2705), + [anon_sym_select] = ACTIONS(2705), + [anon_sym_lock] = ACTIONS(2705), + [anon_sym_rlock] = ACTIONS(2705), + [anon_sym_unsafe] = ACTIONS(2705), + [anon_sym_sql] = ACTIONS(2705), + [sym_int_literal] = ACTIONS(2705), + [sym_float_literal] = ACTIONS(2703), + [sym_rune_literal] = ACTIONS(2703), + [anon_sym_SQUOTE] = ACTIONS(2703), + [anon_sym_DQUOTE] = ACTIONS(2703), + [anon_sym_c_SQUOTE] = ACTIONS(2703), + [anon_sym_c_DQUOTE] = ACTIONS(2703), + [anon_sym_r_SQUOTE] = ACTIONS(2703), + [anon_sym_r_DQUOTE] = ACTIONS(2703), + [sym_pseudo_compile_time_identifier] = ACTIONS(2705), + [anon_sym_shared] = ACTIONS(2705), + [anon_sym_map_LBRACK] = ACTIONS(2703), + [anon_sym_chan] = ACTIONS(2705), + [anon_sym_thread] = ACTIONS(2705), + [anon_sym_atomic] = ACTIONS(2705), + }, + [1315] = { + [sym_line_comment] = STATE(1315), + [sym_block_comment] = STATE(1315), [sym_identifier] = ACTIONS(2771), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -167797,7 +166503,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(2769), [anon_sym_RBRACE] = ACTIONS(2769), [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_PIPE] = ACTIONS(2771), [anon_sym_fn] = ACTIONS(2771), [anon_sym_PLUS] = ACTIONS(2771), [anon_sym_DASH] = ACTIONS(2771), @@ -167822,6 +166527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(2771), [anon_sym_spawn] = ACTIONS(2771), [anon_sym_json_DOTdecode] = ACTIONS(2769), + [anon_sym_PIPE] = ACTIONS(2771), [anon_sym_LBRACK2] = ACTIONS(2771), [anon_sym_TILDE] = ACTIONS(2769), [anon_sym_CARET] = ACTIONS(2769), @@ -167868,2582 +166574,2084 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(2771), [anon_sym_atomic] = ACTIONS(2771), }, - [1336] = { - [sym_line_comment] = STATE(1336), - [sym_block_comment] = STATE(1336), - [sym_identifier] = ACTIONS(2851), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2851), - [anon_sym_as] = ACTIONS(2851), - [anon_sym_LBRACE] = ACTIONS(2849), - [anon_sym_COMMA] = ACTIONS(2849), - [anon_sym_RBRACE] = ACTIONS(2849), - [anon_sym_LPAREN] = ACTIONS(2849), - [anon_sym_PIPE] = ACTIONS(2851), - [anon_sym_fn] = ACTIONS(2851), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2851), - [anon_sym_STAR] = ACTIONS(2849), - [anon_sym_SLASH] = ACTIONS(2851), - [anon_sym_PERCENT] = ACTIONS(2849), - [anon_sym_LT] = ACTIONS(2851), - [anon_sym_GT] = ACTIONS(2851), - [anon_sym_EQ_EQ] = ACTIONS(2849), - [anon_sym_BANG_EQ] = ACTIONS(2849), - [anon_sym_LT_EQ] = ACTIONS(2849), - [anon_sym_GT_EQ] = ACTIONS(2849), - [anon_sym_LBRACK] = ACTIONS(2849), - [anon_sym_RBRACK] = ACTIONS(2849), - [anon_sym_struct] = ACTIONS(2851), - [anon_sym_mut] = ACTIONS(2851), - [anon_sym_COLON] = ACTIONS(2849), - [anon_sym_PLUS_PLUS] = ACTIONS(2849), - [anon_sym_DASH_DASH] = ACTIONS(2849), - [anon_sym_QMARK] = ACTIONS(2851), - [anon_sym_BANG] = ACTIONS(2851), - [anon_sym_go] = ACTIONS(2851), - [anon_sym_spawn] = ACTIONS(2851), - [anon_sym_json_DOTdecode] = ACTIONS(2849), - [anon_sym_LBRACK2] = ACTIONS(2851), - [anon_sym_TILDE] = ACTIONS(2849), - [anon_sym_CARET] = ACTIONS(2849), - [anon_sym_AMP] = ACTIONS(2851), - [anon_sym_LT_DASH] = ACTIONS(2849), - [anon_sym_LT_LT] = ACTIONS(2849), - [anon_sym_GT_GT] = ACTIONS(2851), - [anon_sym_GT_GT_GT] = ACTIONS(2849), - [anon_sym_AMP_CARET] = ACTIONS(2849), - [anon_sym_AMP_AMP] = ACTIONS(2849), - [anon_sym_PIPE_PIPE] = ACTIONS(2849), - [anon_sym_or] = ACTIONS(2851), - [sym_none] = ACTIONS(2851), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [sym_nil] = ACTIONS(2851), - [anon_sym_QMARK_DOT] = ACTIONS(2849), - [anon_sym_POUND_LBRACK] = ACTIONS(2849), - [anon_sym_if] = ACTIONS(2851), - [anon_sym_DOLLARif] = ACTIONS(2851), - [anon_sym_is] = ACTIONS(2851), - [anon_sym_BANGis] = ACTIONS(2849), - [anon_sym_in] = ACTIONS(2851), - [anon_sym_BANGin] = ACTIONS(2849), - [anon_sym_match] = ACTIONS(2851), - [anon_sym_select] = ACTIONS(2851), - [anon_sym_lock] = ACTIONS(2851), - [anon_sym_rlock] = ACTIONS(2851), - [anon_sym_unsafe] = ACTIONS(2851), - [anon_sym_sql] = ACTIONS(2851), - [sym_int_literal] = ACTIONS(2851), - [sym_float_literal] = ACTIONS(2849), - [sym_rune_literal] = ACTIONS(2849), - [anon_sym_SQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [anon_sym_c_SQUOTE] = ACTIONS(2849), - [anon_sym_c_DQUOTE] = ACTIONS(2849), - [anon_sym_r_SQUOTE] = ACTIONS(2849), - [anon_sym_r_DQUOTE] = ACTIONS(2849), - [sym_pseudo_compile_time_identifier] = ACTIONS(2851), - [anon_sym_shared] = ACTIONS(2851), - [anon_sym_map_LBRACK] = ACTIONS(2849), - [anon_sym_chan] = ACTIONS(2851), - [anon_sym_thread] = ACTIONS(2851), - [anon_sym_atomic] = ACTIONS(2851), - }, - [1337] = { - [sym_line_comment] = STATE(1337), - [sym_block_comment] = STATE(1337), - [sym_identifier] = ACTIONS(2887), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3039), - [anon_sym_as] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2885), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2887), - [anon_sym_fn] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2885), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2885), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_EQ_EQ] = ACTIONS(2885), - [anon_sym_BANG_EQ] = ACTIONS(2885), - [anon_sym_LT_EQ] = ACTIONS(2885), - [anon_sym_GT_EQ] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_RBRACK] = ACTIONS(3913), - [anon_sym_struct] = ACTIONS(2887), - [anon_sym_mut] = ACTIONS(2887), - [anon_sym_COLON] = ACTIONS(3913), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_QMARK] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_go] = ACTIONS(2887), - [anon_sym_spawn] = ACTIONS(2887), - [anon_sym_json_DOTdecode] = ACTIONS(2885), - [anon_sym_LBRACK2] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2885), - [anon_sym_CARET] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2885), - [anon_sym_LT_LT] = ACTIONS(2885), - [anon_sym_GT_GT] = ACTIONS(2887), - [anon_sym_GT_GT_GT] = ACTIONS(2885), - [anon_sym_AMP_CARET] = ACTIONS(2885), - [anon_sym_AMP_AMP] = ACTIONS(2885), - [anon_sym_PIPE_PIPE] = ACTIONS(2885), - [anon_sym_or] = ACTIONS(2887), - [sym_none] = ACTIONS(2887), - [sym_true] = ACTIONS(2887), - [sym_false] = ACTIONS(2887), - [sym_nil] = ACTIONS(2887), - [anon_sym_QMARK_DOT] = ACTIONS(2885), - [anon_sym_POUND_LBRACK] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_DOLLARif] = ACTIONS(2887), - [anon_sym_is] = ACTIONS(2887), - [anon_sym_BANGis] = ACTIONS(2885), - [anon_sym_in] = ACTIONS(2887), - [anon_sym_BANGin] = ACTIONS(2885), - [anon_sym_match] = ACTIONS(2887), - [anon_sym_select] = ACTIONS(2887), - [anon_sym_lock] = ACTIONS(2887), - [anon_sym_rlock] = ACTIONS(2887), - [anon_sym_unsafe] = ACTIONS(2887), - [anon_sym_sql] = ACTIONS(2887), - [sym_int_literal] = ACTIONS(2887), - [sym_float_literal] = ACTIONS(2885), - [sym_rune_literal] = ACTIONS(2885), - [anon_sym_SQUOTE] = ACTIONS(2885), - [anon_sym_DQUOTE] = ACTIONS(2885), - [anon_sym_c_SQUOTE] = ACTIONS(2885), - [anon_sym_c_DQUOTE] = ACTIONS(2885), - [anon_sym_r_SQUOTE] = ACTIONS(2885), - [anon_sym_r_DQUOTE] = ACTIONS(2885), - [sym_pseudo_compile_time_identifier] = ACTIONS(2887), - [anon_sym_shared] = ACTIONS(2887), - [anon_sym_map_LBRACK] = ACTIONS(2885), - [anon_sym_chan] = ACTIONS(2887), - [anon_sym_thread] = ACTIONS(2887), - [anon_sym_atomic] = ACTIONS(2887), - }, - [1338] = { - [sym_line_comment] = STATE(1338), - [sym_block_comment] = STATE(1338), - [sym_identifier] = ACTIONS(2725), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2725), - [anon_sym_as] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2723), - [anon_sym_COMMA] = ACTIONS(2723), - [anon_sym_RBRACE] = ACTIONS(2723), - [anon_sym_LPAREN] = ACTIONS(2723), - [anon_sym_PIPE] = ACTIONS(2725), - [anon_sym_fn] = ACTIONS(2725), - [anon_sym_PLUS] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2725), - [anon_sym_STAR] = ACTIONS(2723), - [anon_sym_SLASH] = ACTIONS(2725), - [anon_sym_PERCENT] = ACTIONS(2723), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_GT] = ACTIONS(2725), - [anon_sym_EQ_EQ] = ACTIONS(2723), - [anon_sym_BANG_EQ] = ACTIONS(2723), - [anon_sym_LT_EQ] = ACTIONS(2723), - [anon_sym_GT_EQ] = ACTIONS(2723), - [anon_sym_LBRACK] = ACTIONS(2723), - [anon_sym_RBRACK] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_mut] = ACTIONS(2725), - [anon_sym_COLON] = ACTIONS(2723), - [anon_sym_PLUS_PLUS] = ACTIONS(2723), - [anon_sym_DASH_DASH] = ACTIONS(2723), - [anon_sym_QMARK] = ACTIONS(2725), - [anon_sym_BANG] = ACTIONS(2725), - [anon_sym_go] = ACTIONS(2725), - [anon_sym_spawn] = ACTIONS(2725), - [anon_sym_json_DOTdecode] = ACTIONS(2723), - [anon_sym_LBRACK2] = ACTIONS(2725), - [anon_sym_TILDE] = ACTIONS(2723), - [anon_sym_CARET] = ACTIONS(2723), - [anon_sym_AMP] = ACTIONS(2725), - [anon_sym_LT_DASH] = ACTIONS(2723), - [anon_sym_LT_LT] = ACTIONS(2723), - [anon_sym_GT_GT] = ACTIONS(2725), - [anon_sym_GT_GT_GT] = ACTIONS(2723), - [anon_sym_AMP_CARET] = ACTIONS(2723), - [anon_sym_AMP_AMP] = ACTIONS(2723), - [anon_sym_PIPE_PIPE] = ACTIONS(2723), - [anon_sym_or] = ACTIONS(2725), - [sym_none] = ACTIONS(2725), - [sym_true] = ACTIONS(2725), - [sym_false] = ACTIONS(2725), - [sym_nil] = ACTIONS(2725), - [anon_sym_QMARK_DOT] = ACTIONS(2723), - [anon_sym_POUND_LBRACK] = ACTIONS(2723), - [anon_sym_if] = ACTIONS(2725), - [anon_sym_DOLLARif] = ACTIONS(2725), - [anon_sym_is] = ACTIONS(2725), - [anon_sym_BANGis] = ACTIONS(2723), - [anon_sym_in] = ACTIONS(2725), - [anon_sym_BANGin] = ACTIONS(2723), - [anon_sym_match] = ACTIONS(2725), - [anon_sym_select] = ACTIONS(2725), - [anon_sym_lock] = ACTIONS(2725), - [anon_sym_rlock] = ACTIONS(2725), - [anon_sym_unsafe] = ACTIONS(2725), - [anon_sym_sql] = ACTIONS(2725), - [sym_int_literal] = ACTIONS(2725), - [sym_float_literal] = ACTIONS(2723), - [sym_rune_literal] = ACTIONS(2723), - [anon_sym_SQUOTE] = ACTIONS(2723), - [anon_sym_DQUOTE] = ACTIONS(2723), - [anon_sym_c_SQUOTE] = ACTIONS(2723), - [anon_sym_c_DQUOTE] = ACTIONS(2723), - [anon_sym_r_SQUOTE] = ACTIONS(2723), - [anon_sym_r_DQUOTE] = ACTIONS(2723), - [sym_pseudo_compile_time_identifier] = ACTIONS(2725), - [anon_sym_shared] = ACTIONS(2725), - [anon_sym_map_LBRACK] = ACTIONS(2723), - [anon_sym_chan] = ACTIONS(2725), - [anon_sym_thread] = ACTIONS(2725), - [anon_sym_atomic] = ACTIONS(2725), - }, - [1339] = { - [sym_line_comment] = STATE(1339), - [sym_block_comment] = STATE(1339), - [sym_identifier] = ACTIONS(2719), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2719), - [anon_sym_as] = ACTIONS(2719), - [anon_sym_LBRACE] = ACTIONS(2717), - [anon_sym_COMMA] = ACTIONS(2717), - [anon_sym_RBRACE] = ACTIONS(2717), - [anon_sym_LPAREN] = ACTIONS(2717), - [anon_sym_PIPE] = ACTIONS(2719), - [anon_sym_fn] = ACTIONS(2719), - [anon_sym_PLUS] = ACTIONS(2719), - [anon_sym_DASH] = ACTIONS(2719), - [anon_sym_STAR] = ACTIONS(2717), - [anon_sym_SLASH] = ACTIONS(2719), - [anon_sym_PERCENT] = ACTIONS(2717), - [anon_sym_LT] = ACTIONS(2719), - [anon_sym_GT] = ACTIONS(2719), - [anon_sym_EQ_EQ] = ACTIONS(2717), - [anon_sym_BANG_EQ] = ACTIONS(2717), - [anon_sym_LT_EQ] = ACTIONS(2717), - [anon_sym_GT_EQ] = ACTIONS(2717), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_RBRACK] = ACTIONS(2717), - [anon_sym_struct] = ACTIONS(2719), - [anon_sym_mut] = ACTIONS(2719), - [anon_sym_COLON] = ACTIONS(2717), - [anon_sym_PLUS_PLUS] = ACTIONS(2717), - [anon_sym_DASH_DASH] = ACTIONS(2717), - [anon_sym_QMARK] = ACTIONS(2719), - [anon_sym_BANG] = ACTIONS(2719), - [anon_sym_go] = ACTIONS(2719), - [anon_sym_spawn] = ACTIONS(2719), - [anon_sym_json_DOTdecode] = ACTIONS(2717), - [anon_sym_LBRACK2] = ACTIONS(2719), - [anon_sym_TILDE] = ACTIONS(2717), - [anon_sym_CARET] = ACTIONS(2717), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_LT_DASH] = ACTIONS(2717), - [anon_sym_LT_LT] = ACTIONS(2717), - [anon_sym_GT_GT] = ACTIONS(2719), - [anon_sym_GT_GT_GT] = ACTIONS(2717), - [anon_sym_AMP_CARET] = ACTIONS(2717), - [anon_sym_AMP_AMP] = ACTIONS(2717), - [anon_sym_PIPE_PIPE] = ACTIONS(2717), - [anon_sym_or] = ACTIONS(2719), - [sym_none] = ACTIONS(2719), - [sym_true] = ACTIONS(2719), - [sym_false] = ACTIONS(2719), - [sym_nil] = ACTIONS(2719), - [anon_sym_QMARK_DOT] = ACTIONS(2717), - [anon_sym_POUND_LBRACK] = ACTIONS(2717), - [anon_sym_if] = ACTIONS(2719), - [anon_sym_DOLLARif] = ACTIONS(2719), - [anon_sym_is] = ACTIONS(2719), - [anon_sym_BANGis] = ACTIONS(2717), - [anon_sym_in] = ACTIONS(2719), - [anon_sym_BANGin] = ACTIONS(2717), - [anon_sym_match] = ACTIONS(2719), - [anon_sym_select] = ACTIONS(2719), - [anon_sym_lock] = ACTIONS(2719), - [anon_sym_rlock] = ACTIONS(2719), - [anon_sym_unsafe] = ACTIONS(2719), - [anon_sym_sql] = ACTIONS(2719), - [sym_int_literal] = ACTIONS(2719), - [sym_float_literal] = ACTIONS(2717), - [sym_rune_literal] = ACTIONS(2717), - [anon_sym_SQUOTE] = ACTIONS(2717), - [anon_sym_DQUOTE] = ACTIONS(2717), - [anon_sym_c_SQUOTE] = ACTIONS(2717), - [anon_sym_c_DQUOTE] = ACTIONS(2717), - [anon_sym_r_SQUOTE] = ACTIONS(2717), - [anon_sym_r_DQUOTE] = ACTIONS(2717), - [sym_pseudo_compile_time_identifier] = ACTIONS(2719), - [anon_sym_shared] = ACTIONS(2719), - [anon_sym_map_LBRACK] = ACTIONS(2717), - [anon_sym_chan] = ACTIONS(2719), - [anon_sym_thread] = ACTIONS(2719), - [anon_sym_atomic] = ACTIONS(2719), - }, - [1340] = { - [sym_line_comment] = STATE(1340), - [sym_block_comment] = STATE(1340), - [sym_identifier] = ACTIONS(2887), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3039), - [anon_sym_as] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2885), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_RBRACE] = ACTIONS(2885), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2887), - [anon_sym_fn] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2885), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2885), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_EQ_EQ] = ACTIONS(2885), - [anon_sym_BANG_EQ] = ACTIONS(2885), - [anon_sym_LT_EQ] = ACTIONS(2885), - [anon_sym_GT_EQ] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_RBRACK] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2887), - [anon_sym_mut] = ACTIONS(2887), - [anon_sym_COLON] = ACTIONS(2885), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_QMARK] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_go] = ACTIONS(2887), - [anon_sym_spawn] = ACTIONS(2887), - [anon_sym_json_DOTdecode] = ACTIONS(2885), - [anon_sym_LBRACK2] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2885), - [anon_sym_CARET] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2885), - [anon_sym_LT_LT] = ACTIONS(2885), - [anon_sym_GT_GT] = ACTIONS(2887), - [anon_sym_GT_GT_GT] = ACTIONS(2885), - [anon_sym_AMP_CARET] = ACTIONS(2885), - [anon_sym_AMP_AMP] = ACTIONS(2885), - [anon_sym_PIPE_PIPE] = ACTIONS(2885), - [anon_sym_or] = ACTIONS(2887), - [sym_none] = ACTIONS(2887), - [sym_true] = ACTIONS(2887), - [sym_false] = ACTIONS(2887), - [sym_nil] = ACTIONS(2887), - [anon_sym_QMARK_DOT] = ACTIONS(2885), - [anon_sym_POUND_LBRACK] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_DOLLARif] = ACTIONS(2887), - [anon_sym_is] = ACTIONS(2887), - [anon_sym_BANGis] = ACTIONS(2885), - [anon_sym_in] = ACTIONS(2887), - [anon_sym_BANGin] = ACTIONS(2885), - [anon_sym_match] = ACTIONS(2887), - [anon_sym_select] = ACTIONS(2887), - [anon_sym_lock] = ACTIONS(2887), - [anon_sym_rlock] = ACTIONS(2887), - [anon_sym_unsafe] = ACTIONS(2887), - [anon_sym_sql] = ACTIONS(2887), - [sym_int_literal] = ACTIONS(2887), - [sym_float_literal] = ACTIONS(2885), - [sym_rune_literal] = ACTIONS(2885), - [anon_sym_SQUOTE] = ACTIONS(2885), - [anon_sym_DQUOTE] = ACTIONS(2885), - [anon_sym_c_SQUOTE] = ACTIONS(2885), - [anon_sym_c_DQUOTE] = ACTIONS(2885), - [anon_sym_r_SQUOTE] = ACTIONS(2885), - [anon_sym_r_DQUOTE] = ACTIONS(2885), - [sym_pseudo_compile_time_identifier] = ACTIONS(2887), - [anon_sym_shared] = ACTIONS(2887), - [anon_sym_map_LBRACK] = ACTIONS(2885), - [anon_sym_chan] = ACTIONS(2887), - [anon_sym_thread] = ACTIONS(2887), - [anon_sym_atomic] = ACTIONS(2887), - }, - [1341] = { - [sym_line_comment] = STATE(1341), - [sym_block_comment] = STATE(1341), - [sym_identifier] = ACTIONS(2197), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_COMMA] = ACTIONS(2195), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2197), - [anon_sym_fn] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2195), - [anon_sym_SLASH] = ACTIONS(2197), - [anon_sym_PERCENT] = ACTIONS(2195), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_GT] = ACTIONS(2197), - [anon_sym_EQ_EQ] = ACTIONS(2195), - [anon_sym_BANG_EQ] = ACTIONS(2195), - [anon_sym_LT_EQ] = ACTIONS(2195), - [anon_sym_GT_EQ] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_RBRACK] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2197), - [anon_sym_mut] = ACTIONS(2197), - [anon_sym_COLON] = ACTIONS(2195), - [anon_sym_PLUS_PLUS] = ACTIONS(2195), - [anon_sym_DASH_DASH] = ACTIONS(2195), - [anon_sym_QMARK] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_go] = ACTIONS(2197), - [anon_sym_spawn] = ACTIONS(2197), - [anon_sym_json_DOTdecode] = ACTIONS(2195), - [anon_sym_LBRACK2] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2195), - [anon_sym_CARET] = ACTIONS(2195), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_LT_DASH] = ACTIONS(2195), - [anon_sym_LT_LT] = ACTIONS(2195), - [anon_sym_GT_GT] = ACTIONS(2197), - [anon_sym_GT_GT_GT] = ACTIONS(2195), - [anon_sym_AMP_CARET] = ACTIONS(2195), - [anon_sym_AMP_AMP] = ACTIONS(2195), - [anon_sym_PIPE_PIPE] = ACTIONS(2195), - [anon_sym_or] = ACTIONS(2197), - [sym_none] = ACTIONS(2197), - [sym_true] = ACTIONS(2197), - [sym_false] = ACTIONS(2197), - [sym_nil] = ACTIONS(2197), - [anon_sym_QMARK_DOT] = ACTIONS(2195), - [anon_sym_POUND_LBRACK] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_DOLLARif] = ACTIONS(2197), - [anon_sym_is] = ACTIONS(2197), - [anon_sym_BANGis] = ACTIONS(2195), - [anon_sym_in] = ACTIONS(2197), - [anon_sym_BANGin] = ACTIONS(2195), - [anon_sym_match] = ACTIONS(2197), - [anon_sym_select] = ACTIONS(2197), - [anon_sym_lock] = ACTIONS(2197), - [anon_sym_rlock] = ACTIONS(2197), - [anon_sym_unsafe] = ACTIONS(2197), - [anon_sym_sql] = ACTIONS(2197), - [sym_int_literal] = ACTIONS(2197), - [sym_float_literal] = ACTIONS(2195), - [sym_rune_literal] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_DQUOTE] = ACTIONS(2195), - [anon_sym_c_SQUOTE] = ACTIONS(2195), - [anon_sym_c_DQUOTE] = ACTIONS(2195), - [anon_sym_r_SQUOTE] = ACTIONS(2195), - [anon_sym_r_DQUOTE] = ACTIONS(2195), - [sym_pseudo_compile_time_identifier] = ACTIONS(2197), - [anon_sym_shared] = ACTIONS(2197), - [anon_sym_map_LBRACK] = ACTIONS(2195), - [anon_sym_chan] = ACTIONS(2197), - [anon_sym_thread] = ACTIONS(2197), - [anon_sym_atomic] = ACTIONS(2197), - }, - [1342] = { - [sym_line_comment] = STATE(1342), - [sym_block_comment] = STATE(1342), - [sym_identifier] = ACTIONS(2749), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2749), - [anon_sym_as] = ACTIONS(2749), - [anon_sym_LBRACE] = ACTIONS(2747), - [anon_sym_COMMA] = ACTIONS(2747), - [anon_sym_RBRACE] = ACTIONS(2747), - [anon_sym_LPAREN] = ACTIONS(2747), - [anon_sym_PIPE] = ACTIONS(2749), - [anon_sym_fn] = ACTIONS(2749), - [anon_sym_PLUS] = ACTIONS(2749), - [anon_sym_DASH] = ACTIONS(2749), - [anon_sym_STAR] = ACTIONS(2747), - [anon_sym_SLASH] = ACTIONS(2749), - [anon_sym_PERCENT] = ACTIONS(2747), - [anon_sym_LT] = ACTIONS(2749), - [anon_sym_GT] = ACTIONS(2749), - [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(2747), - [anon_sym_RBRACK] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2749), - [anon_sym_mut] = ACTIONS(2749), - [anon_sym_COLON] = ACTIONS(2747), - [anon_sym_PLUS_PLUS] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2747), - [anon_sym_QMARK] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2749), - [anon_sym_go] = ACTIONS(2749), - [anon_sym_spawn] = ACTIONS(2749), - [anon_sym_json_DOTdecode] = ACTIONS(2747), - [anon_sym_LBRACK2] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2749), - [anon_sym_LT_DASH] = ACTIONS(2747), - [anon_sym_LT_LT] = ACTIONS(2747), - [anon_sym_GT_GT] = ACTIONS(2749), - [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(2749), - [sym_none] = ACTIONS(2749), - [sym_true] = ACTIONS(2749), - [sym_false] = ACTIONS(2749), - [sym_nil] = ACTIONS(2749), - [anon_sym_QMARK_DOT] = ACTIONS(2747), - [anon_sym_POUND_LBRACK] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2749), - [anon_sym_DOLLARif] = ACTIONS(2749), - [anon_sym_is] = ACTIONS(2749), - [anon_sym_BANGis] = ACTIONS(2747), - [anon_sym_in] = ACTIONS(2749), - [anon_sym_BANGin] = ACTIONS(2747), - [anon_sym_match] = ACTIONS(2749), - [anon_sym_select] = ACTIONS(2749), - [anon_sym_lock] = ACTIONS(2749), - [anon_sym_rlock] = ACTIONS(2749), - [anon_sym_unsafe] = ACTIONS(2749), - [anon_sym_sql] = ACTIONS(2749), - [sym_int_literal] = ACTIONS(2749), - [sym_float_literal] = ACTIONS(2747), - [sym_rune_literal] = ACTIONS(2747), - [anon_sym_SQUOTE] = ACTIONS(2747), - [anon_sym_DQUOTE] = ACTIONS(2747), - [anon_sym_c_SQUOTE] = ACTIONS(2747), - [anon_sym_c_DQUOTE] = ACTIONS(2747), - [anon_sym_r_SQUOTE] = ACTIONS(2747), - [anon_sym_r_DQUOTE] = ACTIONS(2747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2749), - [anon_sym_shared] = ACTIONS(2749), - [anon_sym_map_LBRACK] = ACTIONS(2747), - [anon_sym_chan] = ACTIONS(2749), - [anon_sym_thread] = ACTIONS(2749), - [anon_sym_atomic] = ACTIONS(2749), - }, - [1343] = { - [sym_line_comment] = STATE(1343), - [sym_block_comment] = STATE(1343), - [sym_identifier] = ACTIONS(2193), + [1316] = { + [sym_line_comment] = STATE(1316), + [sym_block_comment] = STATE(1316), + [sym_identifier] = ACTIONS(2627), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2193), - [anon_sym_as] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2191), - [anon_sym_COMMA] = ACTIONS(2191), - [anon_sym_RBRACE] = ACTIONS(2191), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_PIPE] = ACTIONS(2193), - [anon_sym_fn] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_PERCENT] = ACTIONS(2191), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_GT] = ACTIONS(2193), - [anon_sym_EQ_EQ] = ACTIONS(2191), - [anon_sym_BANG_EQ] = ACTIONS(2191), - [anon_sym_LT_EQ] = ACTIONS(2191), - [anon_sym_GT_EQ] = ACTIONS(2191), - [anon_sym_LBRACK] = ACTIONS(2191), - [anon_sym_RBRACK] = ACTIONS(2191), - [anon_sym_struct] = ACTIONS(2193), - [anon_sym_mut] = ACTIONS(2193), - [anon_sym_COLON] = ACTIONS(2191), - [anon_sym_PLUS_PLUS] = ACTIONS(2191), - [anon_sym_DASH_DASH] = ACTIONS(2191), - [anon_sym_QMARK] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2193), - [anon_sym_go] = ACTIONS(2193), - [anon_sym_spawn] = ACTIONS(2193), - [anon_sym_json_DOTdecode] = ACTIONS(2191), - [anon_sym_LBRACK2] = ACTIONS(2193), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2193), - [anon_sym_LT_DASH] = ACTIONS(2191), - [anon_sym_LT_LT] = ACTIONS(2191), - [anon_sym_GT_GT] = ACTIONS(2193), - [anon_sym_GT_GT_GT] = ACTIONS(2191), - [anon_sym_AMP_CARET] = ACTIONS(2191), - [anon_sym_AMP_AMP] = ACTIONS(2191), - [anon_sym_PIPE_PIPE] = ACTIONS(2191), - [anon_sym_or] = ACTIONS(2193), - [sym_none] = ACTIONS(2193), - [sym_true] = ACTIONS(2193), - [sym_false] = ACTIONS(2193), - [sym_nil] = ACTIONS(2193), - [anon_sym_QMARK_DOT] = ACTIONS(2191), - [anon_sym_POUND_LBRACK] = ACTIONS(2191), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_DOLLARif] = ACTIONS(2193), - [anon_sym_is] = ACTIONS(2193), - [anon_sym_BANGis] = ACTIONS(2191), - [anon_sym_in] = ACTIONS(2193), - [anon_sym_BANGin] = ACTIONS(2191), - [anon_sym_match] = ACTIONS(2193), - [anon_sym_select] = ACTIONS(2193), - [anon_sym_lock] = ACTIONS(2193), - [anon_sym_rlock] = ACTIONS(2193), - [anon_sym_unsafe] = ACTIONS(2193), - [anon_sym_sql] = ACTIONS(2193), - [sym_int_literal] = ACTIONS(2193), - [sym_float_literal] = ACTIONS(2191), - [sym_rune_literal] = ACTIONS(2191), - [anon_sym_SQUOTE] = ACTIONS(2191), - [anon_sym_DQUOTE] = ACTIONS(2191), - [anon_sym_c_SQUOTE] = ACTIONS(2191), - [anon_sym_c_DQUOTE] = ACTIONS(2191), - [anon_sym_r_SQUOTE] = ACTIONS(2191), - [anon_sym_r_DQUOTE] = ACTIONS(2191), - [sym_pseudo_compile_time_identifier] = ACTIONS(2193), - [anon_sym_shared] = ACTIONS(2193), - [anon_sym_map_LBRACK] = ACTIONS(2191), - [anon_sym_chan] = ACTIONS(2193), - [anon_sym_thread] = ACTIONS(2193), - [anon_sym_atomic] = ACTIONS(2193), + [anon_sym_DOT] = ACTIONS(2629), + [anon_sym_as] = ACTIONS(2629), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_COMMA] = ACTIONS(2625), + [anon_sym_RBRACE] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2632), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_SLASH] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2632), + [anon_sym_LT] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2632), + [anon_sym_BANG_EQ] = ACTIONS(2632), + [anon_sym_LT_EQ] = ACTIONS(2632), + [anon_sym_GT_EQ] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_RBRACK] = ACTIONS(2625), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_mut] = ACTIONS(2627), + [anon_sym_COLON] = ACTIONS(2625), + [anon_sym_PLUS_PLUS] = ACTIONS(2632), + [anon_sym_DASH_DASH] = ACTIONS(2632), + [anon_sym_QMARK] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_go] = ACTIONS(2627), + [anon_sym_spawn] = ACTIONS(2627), + [anon_sym_json_DOTdecode] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2625), + [anon_sym_CARET] = ACTIONS(2632), + [anon_sym_AMP] = ACTIONS(2629), + [anon_sym_LT_DASH] = ACTIONS(2625), + [anon_sym_LT_LT] = ACTIONS(2632), + [anon_sym_GT_GT] = ACTIONS(2629), + [anon_sym_GT_GT_GT] = ACTIONS(2632), + [anon_sym_AMP_CARET] = ACTIONS(2632), + [anon_sym_AMP_AMP] = ACTIONS(2632), + [anon_sym_PIPE_PIPE] = ACTIONS(2632), + [anon_sym_or] = ACTIONS(2629), + [sym_none] = ACTIONS(2627), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [sym_nil] = ACTIONS(2627), + [anon_sym_QMARK_DOT] = ACTIONS(2632), + [anon_sym_POUND_LBRACK] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_DOLLARif] = ACTIONS(2627), + [anon_sym_is] = ACTIONS(2629), + [anon_sym_BANGis] = ACTIONS(2632), + [anon_sym_in] = ACTIONS(2629), + [anon_sym_BANGin] = ACTIONS(2632), + [anon_sym_match] = ACTIONS(2627), + [anon_sym_select] = ACTIONS(2627), + [anon_sym_lock] = ACTIONS(2627), + [anon_sym_rlock] = ACTIONS(2627), + [anon_sym_unsafe] = ACTIONS(2627), + [anon_sym_sql] = ACTIONS(2627), + [sym_int_literal] = ACTIONS(2627), + [sym_float_literal] = ACTIONS(2625), + [sym_rune_literal] = ACTIONS(2625), + [anon_sym_SQUOTE] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(2625), + [anon_sym_c_SQUOTE] = ACTIONS(2625), + [anon_sym_c_DQUOTE] = ACTIONS(2625), + [anon_sym_r_SQUOTE] = ACTIONS(2625), + [anon_sym_r_DQUOTE] = ACTIONS(2625), + [sym_pseudo_compile_time_identifier] = ACTIONS(2627), + [anon_sym_shared] = ACTIONS(2627), + [anon_sym_map_LBRACK] = ACTIONS(2625), + [anon_sym_chan] = ACTIONS(2627), + [anon_sym_thread] = ACTIONS(2627), + [anon_sym_atomic] = ACTIONS(2627), }, - [1344] = { - [sym_line_comment] = STATE(1344), - [sym_block_comment] = STATE(1344), - [sym_identifier] = ACTIONS(2707), + [1317] = { + [sym_line_comment] = STATE(1317), + [sym_block_comment] = STATE(1317), + [sym_identifier] = ACTIONS(3022), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2707), - [anon_sym_as] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_COMMA] = ACTIONS(2705), - [anon_sym_RBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_PIPE] = ACTIONS(2707), - [anon_sym_fn] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2705), - [anon_sym_SLASH] = ACTIONS(2707), - [anon_sym_PERCENT] = ACTIONS(2705), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_GT] = ACTIONS(2707), - [anon_sym_EQ_EQ] = ACTIONS(2705), - [anon_sym_BANG_EQ] = ACTIONS(2705), - [anon_sym_LT_EQ] = ACTIONS(2705), - [anon_sym_GT_EQ] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2705), - [anon_sym_RBRACK] = ACTIONS(2705), - [anon_sym_struct] = ACTIONS(2707), - [anon_sym_mut] = ACTIONS(2707), - [anon_sym_COLON] = ACTIONS(2705), - [anon_sym_PLUS_PLUS] = ACTIONS(2705), - [anon_sym_DASH_DASH] = ACTIONS(2705), - [anon_sym_QMARK] = ACTIONS(2707), - [anon_sym_BANG] = ACTIONS(2707), - [anon_sym_go] = ACTIONS(2707), - [anon_sym_spawn] = ACTIONS(2707), - [anon_sym_json_DOTdecode] = ACTIONS(2705), - [anon_sym_LBRACK2] = ACTIONS(2707), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_CARET] = ACTIONS(2705), - [anon_sym_AMP] = ACTIONS(2707), - [anon_sym_LT_DASH] = ACTIONS(2705), - [anon_sym_LT_LT] = ACTIONS(2705), - [anon_sym_GT_GT] = ACTIONS(2707), - [anon_sym_GT_GT_GT] = ACTIONS(2705), - [anon_sym_AMP_CARET] = ACTIONS(2705), - [anon_sym_AMP_AMP] = ACTIONS(2705), - [anon_sym_PIPE_PIPE] = ACTIONS(2705), - [anon_sym_or] = ACTIONS(2707), - [sym_none] = ACTIONS(2707), - [sym_true] = ACTIONS(2707), - [sym_false] = ACTIONS(2707), - [sym_nil] = ACTIONS(2707), - [anon_sym_QMARK_DOT] = ACTIONS(2705), - [anon_sym_POUND_LBRACK] = ACTIONS(2705), - [anon_sym_if] = ACTIONS(2707), - [anon_sym_DOLLARif] = ACTIONS(2707), - [anon_sym_is] = ACTIONS(2707), - [anon_sym_BANGis] = ACTIONS(2705), - [anon_sym_in] = ACTIONS(2707), - [anon_sym_BANGin] = ACTIONS(2705), - [anon_sym_match] = ACTIONS(2707), - [anon_sym_select] = ACTIONS(2707), - [anon_sym_lock] = ACTIONS(2707), - [anon_sym_rlock] = ACTIONS(2707), - [anon_sym_unsafe] = ACTIONS(2707), - [anon_sym_sql] = ACTIONS(2707), - [sym_int_literal] = ACTIONS(2707), - [sym_float_literal] = ACTIONS(2705), - [sym_rune_literal] = ACTIONS(2705), - [anon_sym_SQUOTE] = ACTIONS(2705), - [anon_sym_DQUOTE] = ACTIONS(2705), - [anon_sym_c_SQUOTE] = ACTIONS(2705), - [anon_sym_c_DQUOTE] = ACTIONS(2705), - [anon_sym_r_SQUOTE] = ACTIONS(2705), - [anon_sym_r_DQUOTE] = ACTIONS(2705), - [sym_pseudo_compile_time_identifier] = ACTIONS(2707), - [anon_sym_shared] = ACTIONS(2707), - [anon_sym_map_LBRACK] = ACTIONS(2705), - [anon_sym_chan] = ACTIONS(2707), - [anon_sym_thread] = ACTIONS(2707), - [anon_sym_atomic] = ACTIONS(2707), + [anon_sym_DOT] = ACTIONS(3022), + [anon_sym_as] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_COMMA] = ACTIONS(3020), + [anon_sym_RBRACE] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3020), + [anon_sym_fn] = ACTIONS(3022), + [anon_sym_PLUS] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(3020), + [anon_sym_SLASH] = ACTIONS(3022), + [anon_sym_PERCENT] = ACTIONS(3020), + [anon_sym_LT] = ACTIONS(3022), + [anon_sym_GT] = ACTIONS(3022), + [anon_sym_EQ_EQ] = ACTIONS(3020), + [anon_sym_BANG_EQ] = ACTIONS(3020), + [anon_sym_LT_EQ] = ACTIONS(3020), + [anon_sym_GT_EQ] = ACTIONS(3020), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_RBRACK] = ACTIONS(3020), + [anon_sym_struct] = ACTIONS(3022), + [anon_sym_mut] = ACTIONS(3022), + [anon_sym_COLON] = ACTIONS(3020), + [anon_sym_PLUS_PLUS] = ACTIONS(3020), + [anon_sym_DASH_DASH] = ACTIONS(3020), + [anon_sym_QMARK] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_go] = ACTIONS(3022), + [anon_sym_spawn] = ACTIONS(3022), + [anon_sym_json_DOTdecode] = ACTIONS(3020), + [anon_sym_PIPE] = ACTIONS(3022), + [anon_sym_LBRACK2] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3020), + [anon_sym_CARET] = ACTIONS(3020), + [anon_sym_AMP] = ACTIONS(3022), + [anon_sym_LT_DASH] = ACTIONS(3020), + [anon_sym_LT_LT] = ACTIONS(3020), + [anon_sym_GT_GT] = ACTIONS(3022), + [anon_sym_GT_GT_GT] = ACTIONS(3020), + [anon_sym_AMP_CARET] = ACTIONS(3020), + [anon_sym_AMP_AMP] = ACTIONS(3020), + [anon_sym_PIPE_PIPE] = ACTIONS(3020), + [anon_sym_or] = ACTIONS(3022), + [sym_none] = ACTIONS(3022), + [sym_true] = ACTIONS(3022), + [sym_false] = ACTIONS(3022), + [sym_nil] = ACTIONS(3022), + [anon_sym_QMARK_DOT] = ACTIONS(3020), + [anon_sym_POUND_LBRACK] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_DOLLARif] = ACTIONS(3022), + [anon_sym_is] = ACTIONS(3022), + [anon_sym_BANGis] = ACTIONS(3020), + [anon_sym_in] = ACTIONS(3022), + [anon_sym_BANGin] = ACTIONS(3020), + [anon_sym_match] = ACTIONS(3022), + [anon_sym_select] = ACTIONS(3022), + [anon_sym_lock] = ACTIONS(3022), + [anon_sym_rlock] = ACTIONS(3022), + [anon_sym_unsafe] = ACTIONS(3022), + [anon_sym_sql] = ACTIONS(3022), + [sym_int_literal] = ACTIONS(3022), + [sym_float_literal] = ACTIONS(3020), + [sym_rune_literal] = ACTIONS(3020), + [anon_sym_SQUOTE] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3020), + [anon_sym_c_SQUOTE] = ACTIONS(3020), + [anon_sym_c_DQUOTE] = ACTIONS(3020), + [anon_sym_r_SQUOTE] = ACTIONS(3020), + [anon_sym_r_DQUOTE] = ACTIONS(3020), + [sym_pseudo_compile_time_identifier] = ACTIONS(3022), + [anon_sym_shared] = ACTIONS(3022), + [anon_sym_map_LBRACK] = ACTIONS(3020), + [anon_sym_chan] = ACTIONS(3022), + [anon_sym_thread] = ACTIONS(3022), + [anon_sym_atomic] = ACTIONS(3022), }, - [1345] = { - [sym_line_comment] = STATE(1345), - [sym_block_comment] = STATE(1345), - [sym_identifier] = ACTIONS(2475), + [1318] = { + [sym_line_comment] = STATE(1318), + [sym_block_comment] = STATE(1318), + [sym_identifier] = ACTIONS(1845), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2475), - [anon_sym_as] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_COMMA] = ACTIONS(2473), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_PIPE] = ACTIONS(2475), - [anon_sym_fn] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2475), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_RBRACK] = ACTIONS(2473), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_mut] = ACTIONS(2475), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_PLUS_PLUS] = ACTIONS(2473), - [anon_sym_DASH_DASH] = ACTIONS(2473), - [anon_sym_QMARK] = ACTIONS(2475), - [anon_sym_BANG] = ACTIONS(2475), - [anon_sym_go] = ACTIONS(2475), - [anon_sym_spawn] = ACTIONS(2475), - [anon_sym_json_DOTdecode] = ACTIONS(2473), - [anon_sym_LBRACK2] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2473), - [anon_sym_CARET] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2475), - [anon_sym_LT_DASH] = ACTIONS(2473), - [anon_sym_LT_LT] = ACTIONS(2473), - [anon_sym_GT_GT] = ACTIONS(2475), - [anon_sym_GT_GT_GT] = ACTIONS(2473), - [anon_sym_AMP_CARET] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_or] = ACTIONS(2475), - [sym_none] = ACTIONS(2475), - [sym_true] = ACTIONS(2475), - [sym_false] = ACTIONS(2475), - [sym_nil] = ACTIONS(2475), - [anon_sym_QMARK_DOT] = ACTIONS(2473), - [anon_sym_POUND_LBRACK] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_DOLLARif] = ACTIONS(2475), - [anon_sym_is] = ACTIONS(2475), - [anon_sym_BANGis] = ACTIONS(2473), - [anon_sym_in] = ACTIONS(2475), - [anon_sym_BANGin] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_lock] = ACTIONS(2475), - [anon_sym_rlock] = ACTIONS(2475), - [anon_sym_unsafe] = ACTIONS(2475), - [anon_sym_sql] = ACTIONS(2475), - [sym_int_literal] = ACTIONS(2475), - [sym_float_literal] = ACTIONS(2473), - [sym_rune_literal] = ACTIONS(2473), - [anon_sym_SQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_c_SQUOTE] = ACTIONS(2473), - [anon_sym_c_DQUOTE] = ACTIONS(2473), - [anon_sym_r_SQUOTE] = ACTIONS(2473), - [anon_sym_r_DQUOTE] = ACTIONS(2473), - [sym_pseudo_compile_time_identifier] = ACTIONS(2475), - [anon_sym_shared] = ACTIONS(2475), - [anon_sym_map_LBRACK] = ACTIONS(2473), - [anon_sym_chan] = ACTIONS(2475), - [anon_sym_thread] = ACTIONS(2475), - [anon_sym_atomic] = ACTIONS(2475), + [anon_sym_DOT] = ACTIONS(1845), + [anon_sym_as] = ACTIONS(1845), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_COMMA] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1847), + [anon_sym_fn] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_SLASH] = ACTIONS(1845), + [anon_sym_PERCENT] = ACTIONS(1847), + [anon_sym_LT] = ACTIONS(1845), + [anon_sym_GT] = ACTIONS(1845), + [anon_sym_EQ_EQ] = ACTIONS(1847), + [anon_sym_BANG_EQ] = ACTIONS(1847), + [anon_sym_LT_EQ] = ACTIONS(1847), + [anon_sym_GT_EQ] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(1847), + [anon_sym_RBRACK] = ACTIONS(1847), + [anon_sym_struct] = ACTIONS(1845), + [anon_sym_mut] = ACTIONS(1845), + [anon_sym_COLON] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [anon_sym_QMARK] = ACTIONS(1845), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_go] = ACTIONS(1845), + [anon_sym_spawn] = ACTIONS(1845), + [anon_sym_json_DOTdecode] = ACTIONS(1847), + [anon_sym_PIPE] = ACTIONS(1845), + [anon_sym_LBRACK2] = ACTIONS(1845), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_LT_DASH] = ACTIONS(1847), + [anon_sym_LT_LT] = ACTIONS(1847), + [anon_sym_GT_GT] = ACTIONS(1845), + [anon_sym_GT_GT_GT] = ACTIONS(1847), + [anon_sym_AMP_CARET] = ACTIONS(1847), + [anon_sym_AMP_AMP] = ACTIONS(1847), + [anon_sym_PIPE_PIPE] = ACTIONS(1847), + [anon_sym_or] = ACTIONS(1845), + [sym_none] = ACTIONS(1845), + [sym_true] = ACTIONS(1845), + [sym_false] = ACTIONS(1845), + [sym_nil] = ACTIONS(1845), + [anon_sym_QMARK_DOT] = ACTIONS(1847), + [anon_sym_POUND_LBRACK] = ACTIONS(1847), + [anon_sym_if] = ACTIONS(1845), + [anon_sym_DOLLARif] = ACTIONS(1845), + [anon_sym_is] = ACTIONS(1845), + [anon_sym_BANGis] = ACTIONS(1847), + [anon_sym_in] = ACTIONS(1845), + [anon_sym_BANGin] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1845), + [anon_sym_select] = ACTIONS(1845), + [anon_sym_lock] = ACTIONS(1845), + [anon_sym_rlock] = ACTIONS(1845), + [anon_sym_unsafe] = ACTIONS(1845), + [anon_sym_sql] = ACTIONS(1845), + [sym_int_literal] = ACTIONS(1845), + [sym_float_literal] = ACTIONS(1847), + [sym_rune_literal] = ACTIONS(1847), + [anon_sym_SQUOTE] = ACTIONS(1847), + [anon_sym_DQUOTE] = ACTIONS(1847), + [anon_sym_c_SQUOTE] = ACTIONS(1847), + [anon_sym_c_DQUOTE] = ACTIONS(1847), + [anon_sym_r_SQUOTE] = ACTIONS(1847), + [anon_sym_r_DQUOTE] = ACTIONS(1847), + [sym_pseudo_compile_time_identifier] = ACTIONS(1845), + [anon_sym_shared] = ACTIONS(1845), + [anon_sym_map_LBRACK] = ACTIONS(1847), + [anon_sym_chan] = ACTIONS(1845), + [anon_sym_thread] = ACTIONS(1845), + [anon_sym_atomic] = ACTIONS(1845), }, - [1346] = { - [sym_line_comment] = STATE(1346), - [sym_block_comment] = STATE(1346), - [sym_identifier] = ACTIONS(2159), + [1319] = { + [sym_line_comment] = STATE(1319), + [sym_block_comment] = STATE(1319), + [sym_identifier] = ACTIONS(2363), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_as] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2157), - [anon_sym_COMMA] = ACTIONS(2157), - [anon_sym_RBRACE] = ACTIONS(2157), - [anon_sym_LPAREN] = ACTIONS(2157), - [anon_sym_PIPE] = ACTIONS(2159), - [anon_sym_fn] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_PERCENT] = ACTIONS(2157), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_GT] = ACTIONS(2159), - [anon_sym_EQ_EQ] = ACTIONS(2157), - [anon_sym_BANG_EQ] = ACTIONS(2157), - [anon_sym_LT_EQ] = ACTIONS(2157), - [anon_sym_GT_EQ] = ACTIONS(2157), - [anon_sym_LBRACK] = ACTIONS(2157), - [anon_sym_RBRACK] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2159), - [anon_sym_mut] = ACTIONS(2159), - [anon_sym_COLON] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_QMARK] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(2159), - [anon_sym_spawn] = ACTIONS(2159), - [anon_sym_json_DOTdecode] = ACTIONS(2157), - [anon_sym_LBRACK2] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2157), - [anon_sym_LT_LT] = ACTIONS(2157), - [anon_sym_GT_GT] = ACTIONS(2159), - [anon_sym_GT_GT_GT] = ACTIONS(2157), - [anon_sym_AMP_CARET] = ACTIONS(2157), - [anon_sym_AMP_AMP] = ACTIONS(2157), - [anon_sym_PIPE_PIPE] = ACTIONS(2157), - [anon_sym_or] = ACTIONS(2159), - [sym_none] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_nil] = ACTIONS(2159), - [anon_sym_QMARK_DOT] = ACTIONS(2157), - [anon_sym_POUND_LBRACK] = ACTIONS(2157), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_DOLLARif] = ACTIONS(2159), - [anon_sym_is] = ACTIONS(2159), - [anon_sym_BANGis] = ACTIONS(2157), - [anon_sym_in] = ACTIONS(2159), - [anon_sym_BANGin] = ACTIONS(2157), - [anon_sym_match] = ACTIONS(2159), - [anon_sym_select] = ACTIONS(2159), - [anon_sym_lock] = ACTIONS(2159), - [anon_sym_rlock] = ACTIONS(2159), - [anon_sym_unsafe] = ACTIONS(2159), - [anon_sym_sql] = ACTIONS(2159), - [sym_int_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2157), - [sym_rune_literal] = ACTIONS(2157), - [anon_sym_SQUOTE] = ACTIONS(2157), - [anon_sym_DQUOTE] = ACTIONS(2157), - [anon_sym_c_SQUOTE] = ACTIONS(2157), - [anon_sym_c_DQUOTE] = ACTIONS(2157), - [anon_sym_r_SQUOTE] = ACTIONS(2157), - [anon_sym_r_DQUOTE] = ACTIONS(2157), - [sym_pseudo_compile_time_identifier] = ACTIONS(2159), - [anon_sym_shared] = ACTIONS(2159), - [anon_sym_map_LBRACK] = ACTIONS(2157), - [anon_sym_chan] = ACTIONS(2159), - [anon_sym_thread] = ACTIONS(2159), - [anon_sym_atomic] = ACTIONS(2159), + [anon_sym_DOT] = ACTIONS(2363), + [anon_sym_as] = ACTIONS(2363), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_COMMA] = ACTIONS(2361), + [anon_sym_RBRACE] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2361), + [anon_sym_fn] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(2361), + [anon_sym_SLASH] = ACTIONS(2363), + [anon_sym_PERCENT] = ACTIONS(2361), + [anon_sym_LT] = ACTIONS(2363), + [anon_sym_GT] = ACTIONS(2363), + [anon_sym_EQ_EQ] = ACTIONS(2361), + [anon_sym_BANG_EQ] = ACTIONS(2361), + [anon_sym_LT_EQ] = ACTIONS(2361), + [anon_sym_GT_EQ] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_RBRACK] = ACTIONS(2361), + [anon_sym_struct] = ACTIONS(2363), + [anon_sym_mut] = ACTIONS(2363), + [anon_sym_COLON] = ACTIONS(2361), + [anon_sym_PLUS_PLUS] = ACTIONS(2361), + [anon_sym_DASH_DASH] = ACTIONS(2361), + [anon_sym_QMARK] = ACTIONS(2363), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_go] = ACTIONS(2363), + [anon_sym_spawn] = ACTIONS(2363), + [anon_sym_json_DOTdecode] = ACTIONS(2361), + [anon_sym_PIPE] = ACTIONS(2363), + [anon_sym_LBRACK2] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2361), + [anon_sym_CARET] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2363), + [anon_sym_LT_DASH] = ACTIONS(2361), + [anon_sym_LT_LT] = ACTIONS(2361), + [anon_sym_GT_GT] = ACTIONS(2363), + [anon_sym_GT_GT_GT] = ACTIONS(2361), + [anon_sym_AMP_CARET] = ACTIONS(2361), + [anon_sym_AMP_AMP] = ACTIONS(2361), + [anon_sym_PIPE_PIPE] = ACTIONS(2361), + [anon_sym_or] = ACTIONS(2363), + [sym_none] = ACTIONS(2363), + [sym_true] = ACTIONS(2363), + [sym_false] = ACTIONS(2363), + [sym_nil] = ACTIONS(2363), + [anon_sym_QMARK_DOT] = ACTIONS(2361), + [anon_sym_POUND_LBRACK] = ACTIONS(2361), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_DOLLARif] = ACTIONS(2363), + [anon_sym_is] = ACTIONS(2363), + [anon_sym_BANGis] = ACTIONS(2361), + [anon_sym_in] = ACTIONS(2363), + [anon_sym_BANGin] = ACTIONS(2361), + [anon_sym_match] = ACTIONS(2363), + [anon_sym_select] = ACTIONS(2363), + [anon_sym_lock] = ACTIONS(2363), + [anon_sym_rlock] = ACTIONS(2363), + [anon_sym_unsafe] = ACTIONS(2363), + [anon_sym_sql] = ACTIONS(2363), + [sym_int_literal] = ACTIONS(2363), + [sym_float_literal] = ACTIONS(2361), + [sym_rune_literal] = ACTIONS(2361), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_DQUOTE] = ACTIONS(2361), + [anon_sym_c_SQUOTE] = ACTIONS(2361), + [anon_sym_c_DQUOTE] = ACTIONS(2361), + [anon_sym_r_SQUOTE] = ACTIONS(2361), + [anon_sym_r_DQUOTE] = ACTIONS(2361), + [sym_pseudo_compile_time_identifier] = ACTIONS(2363), + [anon_sym_shared] = ACTIONS(2363), + [anon_sym_map_LBRACK] = ACTIONS(2361), + [anon_sym_chan] = ACTIONS(2363), + [anon_sym_thread] = ACTIONS(2363), + [anon_sym_atomic] = ACTIONS(2363), }, - [1347] = { - [sym_line_comment] = STATE(1347), - [sym_block_comment] = STATE(1347), - [sym_identifier] = ACTIONS(2105), + [1320] = { + [sym_line_comment] = STATE(1320), + [sym_block_comment] = STATE(1320), + [sym_identifier] = ACTIONS(2621), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_as] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2103), - [anon_sym_COMMA] = ACTIONS(2103), - [anon_sym_RBRACE] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(2103), - [anon_sym_PIPE] = ACTIONS(2105), - [anon_sym_fn] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_PERCENT] = ACTIONS(2103), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_GT] = ACTIONS(2105), - [anon_sym_EQ_EQ] = ACTIONS(2103), - [anon_sym_BANG_EQ] = ACTIONS(2103), - [anon_sym_LT_EQ] = ACTIONS(2103), - [anon_sym_GT_EQ] = ACTIONS(2103), - [anon_sym_LBRACK] = ACTIONS(2103), - [anon_sym_RBRACK] = ACTIONS(2103), - [anon_sym_struct] = ACTIONS(2105), - [anon_sym_mut] = ACTIONS(2105), - [anon_sym_COLON] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2103), - [anon_sym_DASH_DASH] = ACTIONS(2103), - [anon_sym_QMARK] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_go] = ACTIONS(2105), - [anon_sym_spawn] = ACTIONS(2105), - [anon_sym_json_DOTdecode] = ACTIONS(2103), - [anon_sym_LBRACK2] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2105), - [anon_sym_LT_DASH] = ACTIONS(2103), - [anon_sym_LT_LT] = ACTIONS(2103), - [anon_sym_GT_GT] = ACTIONS(2105), - [anon_sym_GT_GT_GT] = ACTIONS(2103), - [anon_sym_AMP_CARET] = ACTIONS(2103), - [anon_sym_AMP_AMP] = ACTIONS(2103), - [anon_sym_PIPE_PIPE] = ACTIONS(2103), - [anon_sym_or] = ACTIONS(2105), - [sym_none] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_nil] = ACTIONS(2105), - [anon_sym_QMARK_DOT] = ACTIONS(2103), - [anon_sym_POUND_LBRACK] = ACTIONS(2103), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_DOLLARif] = ACTIONS(2105), - [anon_sym_is] = ACTIONS(2105), - [anon_sym_BANGis] = ACTIONS(2103), - [anon_sym_in] = ACTIONS(2105), - [anon_sym_BANGin] = ACTIONS(2103), - [anon_sym_match] = ACTIONS(2105), - [anon_sym_select] = ACTIONS(2105), - [anon_sym_lock] = ACTIONS(2105), - [anon_sym_rlock] = ACTIONS(2105), - [anon_sym_unsafe] = ACTIONS(2105), - [anon_sym_sql] = ACTIONS(2105), - [sym_int_literal] = ACTIONS(2105), - [sym_float_literal] = ACTIONS(2103), - [sym_rune_literal] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_DQUOTE] = ACTIONS(2103), - [anon_sym_c_SQUOTE] = ACTIONS(2103), - [anon_sym_c_DQUOTE] = ACTIONS(2103), - [anon_sym_r_SQUOTE] = ACTIONS(2103), - [anon_sym_r_DQUOTE] = ACTIONS(2103), - [sym_pseudo_compile_time_identifier] = ACTIONS(2105), - [anon_sym_shared] = ACTIONS(2105), - [anon_sym_map_LBRACK] = ACTIONS(2103), - [anon_sym_chan] = ACTIONS(2105), - [anon_sym_thread] = ACTIONS(2105), - [anon_sym_atomic] = ACTIONS(2105), + [anon_sym_DOT] = ACTIONS(2621), + [anon_sym_as] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2619), + [anon_sym_RBRACE] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_fn] = ACTIONS(2621), + [anon_sym_PLUS] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2619), + [anon_sym_SLASH] = ACTIONS(2621), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_GT] = ACTIONS(2621), + [anon_sym_EQ_EQ] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2619), + [anon_sym_LT_EQ] = ACTIONS(2619), + [anon_sym_GT_EQ] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_RBRACK] = ACTIONS(2619), + [anon_sym_struct] = ACTIONS(2621), + [anon_sym_mut] = ACTIONS(2621), + [anon_sym_COLON] = ACTIONS(2619), + [anon_sym_PLUS_PLUS] = ACTIONS(2619), + [anon_sym_DASH_DASH] = ACTIONS(2619), + [anon_sym_QMARK] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_go] = ACTIONS(2621), + [anon_sym_spawn] = ACTIONS(2621), + [anon_sym_json_DOTdecode] = ACTIONS(2619), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_LBRACK2] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2619), + [anon_sym_CARET] = ACTIONS(2619), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_LT_LT] = ACTIONS(2619), + [anon_sym_GT_GT] = ACTIONS(2621), + [anon_sym_GT_GT_GT] = ACTIONS(2619), + [anon_sym_AMP_CARET] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_or] = ACTIONS(2621), + [sym_none] = ACTIONS(2621), + [sym_true] = ACTIONS(2621), + [sym_false] = ACTIONS(2621), + [sym_nil] = ACTIONS(2621), + [anon_sym_QMARK_DOT] = ACTIONS(2619), + [anon_sym_POUND_LBRACK] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2621), + [anon_sym_DOLLARif] = ACTIONS(2621), + [anon_sym_is] = ACTIONS(2621), + [anon_sym_BANGis] = ACTIONS(2619), + [anon_sym_in] = ACTIONS(2621), + [anon_sym_BANGin] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2621), + [anon_sym_select] = ACTIONS(2621), + [anon_sym_lock] = ACTIONS(2621), + [anon_sym_rlock] = ACTIONS(2621), + [anon_sym_unsafe] = ACTIONS(2621), + [anon_sym_sql] = ACTIONS(2621), + [sym_int_literal] = ACTIONS(2621), + [sym_float_literal] = ACTIONS(2619), + [sym_rune_literal] = ACTIONS(2619), + [anon_sym_SQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_c_SQUOTE] = ACTIONS(2619), + [anon_sym_c_DQUOTE] = ACTIONS(2619), + [anon_sym_r_SQUOTE] = ACTIONS(2619), + [anon_sym_r_DQUOTE] = ACTIONS(2619), + [sym_pseudo_compile_time_identifier] = ACTIONS(2621), + [anon_sym_shared] = ACTIONS(2621), + [anon_sym_map_LBRACK] = ACTIONS(2619), + [anon_sym_chan] = ACTIONS(2621), + [anon_sym_thread] = ACTIONS(2621), + [anon_sym_atomic] = ACTIONS(2621), }, - [1348] = { - [sym_line_comment] = STATE(1348), - [sym_block_comment] = STATE(1348), - [sym_identifier] = ACTIONS(2127), + [1321] = { + [sym_line_comment] = STATE(1321), + [sym_block_comment] = STATE(1321), + [sym_identifier] = ACTIONS(3062), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2127), - [anon_sym_as] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_COMMA] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_PIPE] = ACTIONS(2127), - [anon_sym_fn] = ACTIONS(2127), - [anon_sym_PLUS] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2127), - [anon_sym_STAR] = ACTIONS(2125), - [anon_sym_SLASH] = ACTIONS(2127), - [anon_sym_PERCENT] = ACTIONS(2125), - [anon_sym_LT] = ACTIONS(2127), - [anon_sym_GT] = ACTIONS(2127), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2125), - [anon_sym_GT_EQ] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_RBRACK] = ACTIONS(2125), - [anon_sym_struct] = ACTIONS(2127), - [anon_sym_mut] = ACTIONS(2127), - [anon_sym_COLON] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2125), - [anon_sym_QMARK] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_go] = ACTIONS(2127), - [anon_sym_spawn] = ACTIONS(2127), - [anon_sym_json_DOTdecode] = ACTIONS(2125), - [anon_sym_LBRACK2] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2125), - [anon_sym_CARET] = ACTIONS(2125), - [anon_sym_AMP] = ACTIONS(2127), - [anon_sym_LT_DASH] = ACTIONS(2125), - [anon_sym_LT_LT] = ACTIONS(2125), - [anon_sym_GT_GT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2125), - [anon_sym_AMP_CARET] = ACTIONS(2125), - [anon_sym_AMP_AMP] = ACTIONS(2125), - [anon_sym_PIPE_PIPE] = ACTIONS(2125), - [anon_sym_or] = ACTIONS(2127), - [sym_none] = ACTIONS(2127), - [sym_true] = ACTIONS(2127), - [sym_false] = ACTIONS(2127), - [sym_nil] = ACTIONS(2127), - [anon_sym_QMARK_DOT] = ACTIONS(2125), - [anon_sym_POUND_LBRACK] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2127), - [anon_sym_DOLLARif] = ACTIONS(2127), - [anon_sym_is] = ACTIONS(2127), - [anon_sym_BANGis] = ACTIONS(2125), - [anon_sym_in] = ACTIONS(2127), - [anon_sym_BANGin] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2127), - [anon_sym_select] = ACTIONS(2127), - [anon_sym_lock] = ACTIONS(2127), - [anon_sym_rlock] = ACTIONS(2127), - [anon_sym_unsafe] = ACTIONS(2127), - [anon_sym_sql] = ACTIONS(2127), - [sym_int_literal] = ACTIONS(2127), - [sym_float_literal] = ACTIONS(2125), - [sym_rune_literal] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2125), - [anon_sym_c_SQUOTE] = ACTIONS(2125), - [anon_sym_c_DQUOTE] = ACTIONS(2125), - [anon_sym_r_SQUOTE] = ACTIONS(2125), - [anon_sym_r_DQUOTE] = ACTIONS(2125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2127), - [anon_sym_shared] = ACTIONS(2127), - [anon_sym_map_LBRACK] = ACTIONS(2125), - [anon_sym_chan] = ACTIONS(2127), - [anon_sym_thread] = ACTIONS(2127), - [anon_sym_atomic] = ACTIONS(2127), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_as] = ACTIONS(3062), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_fn] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3062), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_GT] = ACTIONS(3062), + [anon_sym_EQ_EQ] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_RBRACK] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_mut] = ACTIONS(3062), + [anon_sym_COLON] = ACTIONS(3060), + [anon_sym_PLUS_PLUS] = ACTIONS(3060), + [anon_sym_DASH_DASH] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3062), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_go] = ACTIONS(3062), + [anon_sym_spawn] = ACTIONS(3062), + [anon_sym_json_DOTdecode] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_LBRACK2] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3060), + [anon_sym_CARET] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_LT_LT] = ACTIONS(3060), + [anon_sym_GT_GT] = ACTIONS(3062), + [anon_sym_GT_GT_GT] = ACTIONS(3060), + [anon_sym_AMP_CARET] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_or] = ACTIONS(3062), + [sym_none] = ACTIONS(3062), + [sym_true] = ACTIONS(3062), + [sym_false] = ACTIONS(3062), + [sym_nil] = ACTIONS(3062), + [anon_sym_QMARK_DOT] = ACTIONS(3060), + [anon_sym_POUND_LBRACK] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_DOLLARif] = ACTIONS(3062), + [anon_sym_is] = ACTIONS(3062), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_in] = ACTIONS(3062), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_select] = ACTIONS(3062), + [anon_sym_lock] = ACTIONS(3062), + [anon_sym_rlock] = ACTIONS(3062), + [anon_sym_unsafe] = ACTIONS(3062), + [anon_sym_sql] = ACTIONS(3062), + [sym_int_literal] = ACTIONS(3062), + [sym_float_literal] = ACTIONS(3060), + [sym_rune_literal] = ACTIONS(3060), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_DQUOTE] = ACTIONS(3060), + [anon_sym_c_SQUOTE] = ACTIONS(3060), + [anon_sym_c_DQUOTE] = ACTIONS(3060), + [anon_sym_r_SQUOTE] = ACTIONS(3060), + [anon_sym_r_DQUOTE] = ACTIONS(3060), + [sym_pseudo_compile_time_identifier] = ACTIONS(3062), + [anon_sym_shared] = ACTIONS(3062), + [anon_sym_map_LBRACK] = ACTIONS(3060), + [anon_sym_chan] = ACTIONS(3062), + [anon_sym_thread] = ACTIONS(3062), + [anon_sym_atomic] = ACTIONS(3062), }, - [1349] = { - [sym_line_comment] = STATE(1349), - [sym_block_comment] = STATE(1349), - [sym_identifier] = ACTIONS(2123), + [1322] = { + [sym_line_comment] = STATE(1322), + [sym_block_comment] = STATE(1322), + [sym_type_parameters] = STATE(4349), + [sym_argument_list] = STATE(1357), + [sym_or_block] = STATE(1358), + [sym_identifier] = ACTIONS(3875), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2123), - [anon_sym_as] = ACTIONS(2123), - [anon_sym_LBRACE] = ACTIONS(2121), - [anon_sym_COMMA] = ACTIONS(2121), - [anon_sym_RBRACE] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2121), - [anon_sym_PIPE] = ACTIONS(2123), - [anon_sym_fn] = ACTIONS(2123), - [anon_sym_PLUS] = ACTIONS(2123), - [anon_sym_DASH] = ACTIONS(2123), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_SLASH] = ACTIONS(2123), - [anon_sym_PERCENT] = ACTIONS(2121), - [anon_sym_LT] = ACTIONS(2123), - [anon_sym_GT] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2121), - [anon_sym_BANG_EQ] = ACTIONS(2121), - [anon_sym_LT_EQ] = ACTIONS(2121), - [anon_sym_GT_EQ] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2121), - [anon_sym_RBRACK] = ACTIONS(2121), - [anon_sym_struct] = ACTIONS(2123), - [anon_sym_mut] = ACTIONS(2123), - [anon_sym_COLON] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2121), - [anon_sym_DASH_DASH] = ACTIONS(2121), - [anon_sym_QMARK] = ACTIONS(2123), - [anon_sym_BANG] = ACTIONS(2123), - [anon_sym_go] = ACTIONS(2123), - [anon_sym_spawn] = ACTIONS(2123), - [anon_sym_json_DOTdecode] = ACTIONS(2121), - [anon_sym_LBRACK2] = ACTIONS(2123), - [anon_sym_TILDE] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2121), - [anon_sym_AMP] = ACTIONS(2123), - [anon_sym_LT_DASH] = ACTIONS(2121), - [anon_sym_LT_LT] = ACTIONS(2121), - [anon_sym_GT_GT] = ACTIONS(2123), - [anon_sym_GT_GT_GT] = ACTIONS(2121), - [anon_sym_AMP_CARET] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2121), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2123), - [sym_none] = ACTIONS(2123), - [sym_true] = ACTIONS(2123), - [sym_false] = ACTIONS(2123), - [sym_nil] = ACTIONS(2123), - [anon_sym_QMARK_DOT] = ACTIONS(2121), - [anon_sym_POUND_LBRACK] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2123), - [anon_sym_DOLLARif] = ACTIONS(2123), - [anon_sym_is] = ACTIONS(2123), - [anon_sym_BANGis] = ACTIONS(2121), - [anon_sym_in] = ACTIONS(2123), - [anon_sym_BANGin] = ACTIONS(2121), - [anon_sym_match] = ACTIONS(2123), - [anon_sym_select] = ACTIONS(2123), - [anon_sym_lock] = ACTIONS(2123), - [anon_sym_rlock] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2123), - [anon_sym_sql] = ACTIONS(2123), - [sym_int_literal] = ACTIONS(2123), - [sym_float_literal] = ACTIONS(2121), - [sym_rune_literal] = ACTIONS(2121), - [anon_sym_SQUOTE] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2121), - [anon_sym_c_SQUOTE] = ACTIONS(2121), - [anon_sym_c_DQUOTE] = ACTIONS(2121), - [anon_sym_r_SQUOTE] = ACTIONS(2121), - [anon_sym_r_DQUOTE] = ACTIONS(2121), - [sym_pseudo_compile_time_identifier] = ACTIONS(2123), - [anon_sym_shared] = ACTIONS(2123), - [anon_sym_map_LBRACK] = ACTIONS(2121), - [anon_sym_chan] = ACTIONS(2123), - [anon_sym_thread] = ACTIONS(2123), - [anon_sym_atomic] = ACTIONS(2123), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_as] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(3879), + [anon_sym_RBRACE] = ACTIONS(3879), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_fn] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3881), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_SLASH] = ACTIONS(3885), + [anon_sym_PERCENT] = ACTIONS(3883), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [anon_sym_EQ_EQ] = ACTIONS(3889), + [anon_sym_BANG_EQ] = ACTIONS(3889), + [anon_sym_LT_EQ] = ACTIONS(3889), + [anon_sym_GT_EQ] = ACTIONS(3889), + [anon_sym_LBRACK] = ACTIONS(3861), + [anon_sym_struct] = ACTIONS(3875), + [anon_sym_mut] = ACTIONS(3875), + [anon_sym_PLUS_PLUS] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_BANG] = ACTIONS(3865), + [anon_sym_go] = ACTIONS(3875), + [anon_sym_spawn] = ACTIONS(3875), + [anon_sym_json_DOTdecode] = ACTIONS(3879), + [anon_sym_PIPE] = ACTIONS(3881), + [anon_sym_LBRACK2] = ACTIONS(3867), + [anon_sym_TILDE] = ACTIONS(3879), + [anon_sym_CARET] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3885), + [anon_sym_LT_DASH] = ACTIONS(3879), + [anon_sym_LT_LT] = ACTIONS(3883), + [anon_sym_GT_GT] = ACTIONS(3885), + [anon_sym_GT_GT_GT] = ACTIONS(3883), + [anon_sym_AMP_CARET] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(3899), + [anon_sym_PIPE_PIPE] = ACTIONS(3901), + [anon_sym_or] = ACTIONS(3903), + [sym_none] = ACTIONS(3875), + [sym_true] = ACTIONS(3875), + [sym_false] = ACTIONS(3875), + [sym_nil] = ACTIONS(3875), + [anon_sym_QMARK_DOT] = ACTIONS(3869), + [anon_sym_POUND_LBRACK] = ACTIONS(3871), + [anon_sym_if] = ACTIONS(3875), + [anon_sym_DOLLARif] = ACTIONS(3875), + [anon_sym_is] = ACTIONS(3905), + [anon_sym_BANGis] = ACTIONS(3907), + [anon_sym_in] = ACTIONS(3909), + [anon_sym_BANGin] = ACTIONS(3911), + [anon_sym_match] = ACTIONS(3875), + [anon_sym_select] = ACTIONS(3875), + [anon_sym_lock] = ACTIONS(3875), + [anon_sym_rlock] = ACTIONS(3875), + [anon_sym_unsafe] = ACTIONS(3875), + [anon_sym_sql] = ACTIONS(3875), + [sym_int_literal] = ACTIONS(3875), + [sym_float_literal] = ACTIONS(3879), + [sym_rune_literal] = ACTIONS(3879), + [anon_sym_SQUOTE] = ACTIONS(3879), + [anon_sym_DQUOTE] = ACTIONS(3879), + [anon_sym_c_SQUOTE] = ACTIONS(3879), + [anon_sym_c_DQUOTE] = ACTIONS(3879), + [anon_sym_r_SQUOTE] = ACTIONS(3879), + [anon_sym_r_DQUOTE] = ACTIONS(3879), + [sym_pseudo_compile_time_identifier] = ACTIONS(3875), + [anon_sym_shared] = ACTIONS(3875), + [anon_sym_map_LBRACK] = ACTIONS(3879), + [anon_sym_chan] = ACTIONS(3875), + [anon_sym_thread] = ACTIONS(3875), + [anon_sym_atomic] = ACTIONS(3875), }, - [1350] = { - [sym_line_comment] = STATE(1350), - [sym_block_comment] = STATE(1350), - [sym_identifier] = ACTIONS(2097), + [1323] = { + [sym_line_comment] = STATE(1323), + [sym_block_comment] = STATE(1323), + [sym_identifier] = ACTIONS(2465), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2095), - [anon_sym_COMMA] = ACTIONS(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_PIPE] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2095), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_PERCENT] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2097), - [anon_sym_EQ_EQ] = ACTIONS(2095), - [anon_sym_BANG_EQ] = ACTIONS(2095), - [anon_sym_LT_EQ] = ACTIONS(2095), - [anon_sym_GT_EQ] = ACTIONS(2095), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_RBRACK] = ACTIONS(2095), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_mut] = ACTIONS(2097), - [anon_sym_COLON] = ACTIONS(2095), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2095), - [anon_sym_QMARK] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2097), - [anon_sym_json_DOTdecode] = ACTIONS(2095), - [anon_sym_LBRACK2] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_CARET] = ACTIONS(2095), - [anon_sym_AMP] = ACTIONS(2097), - [anon_sym_LT_DASH] = ACTIONS(2095), - [anon_sym_LT_LT] = ACTIONS(2095), - [anon_sym_GT_GT] = ACTIONS(2097), - [anon_sym_GT_GT_GT] = ACTIONS(2095), - [anon_sym_AMP_CARET] = ACTIONS(2095), - [anon_sym_AMP_AMP] = ACTIONS(2095), - [anon_sym_PIPE_PIPE] = ACTIONS(2095), - [anon_sym_or] = ACTIONS(2097), - [sym_none] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_nil] = ACTIONS(2097), - [anon_sym_QMARK_DOT] = ACTIONS(2095), - [anon_sym_POUND_LBRACK] = ACTIONS(2095), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_DOLLARif] = ACTIONS(2097), - [anon_sym_is] = ACTIONS(2097), - [anon_sym_BANGis] = ACTIONS(2095), - [anon_sym_in] = ACTIONS(2097), - [anon_sym_BANGin] = ACTIONS(2095), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_select] = ACTIONS(2097), - [anon_sym_lock] = ACTIONS(2097), - [anon_sym_rlock] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_sql] = ACTIONS(2097), - [sym_int_literal] = ACTIONS(2097), - [sym_float_literal] = ACTIONS(2095), - [sym_rune_literal] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), - [anon_sym_DQUOTE] = ACTIONS(2095), - [anon_sym_c_SQUOTE] = ACTIONS(2095), - [anon_sym_c_DQUOTE] = ACTIONS(2095), - [anon_sym_r_SQUOTE] = ACTIONS(2095), - [anon_sym_r_DQUOTE] = ACTIONS(2095), - [sym_pseudo_compile_time_identifier] = ACTIONS(2097), - [anon_sym_shared] = ACTIONS(2097), - [anon_sym_map_LBRACK] = ACTIONS(2095), - [anon_sym_chan] = ACTIONS(2097), - [anon_sym_thread] = ACTIONS(2097), - [anon_sym_atomic] = ACTIONS(2097), + [anon_sym_DOT] = ACTIONS(2465), + [anon_sym_as] = ACTIONS(2465), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_COMMA] = ACTIONS(2463), + [anon_sym_RBRACE] = ACTIONS(2463), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_fn] = ACTIONS(2465), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2463), + [anon_sym_SLASH] = ACTIONS(2465), + [anon_sym_PERCENT] = ACTIONS(2463), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_EQ_EQ] = ACTIONS(2463), + [anon_sym_BANG_EQ] = ACTIONS(2463), + [anon_sym_LT_EQ] = ACTIONS(2463), + [anon_sym_GT_EQ] = ACTIONS(2463), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_RBRACK] = ACTIONS(2463), + [anon_sym_struct] = ACTIONS(2465), + [anon_sym_mut] = ACTIONS(2465), + [anon_sym_COLON] = ACTIONS(2463), + [anon_sym_PLUS_PLUS] = ACTIONS(2463), + [anon_sym_DASH_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2465), + [anon_sym_BANG] = ACTIONS(2465), + [anon_sym_go] = ACTIONS(2465), + [anon_sym_spawn] = ACTIONS(2465), + [anon_sym_json_DOTdecode] = ACTIONS(2463), + [anon_sym_PIPE] = ACTIONS(2465), + [anon_sym_LBRACK2] = ACTIONS(2465), + [anon_sym_TILDE] = ACTIONS(2463), + [anon_sym_CARET] = ACTIONS(2463), + [anon_sym_AMP] = ACTIONS(2465), + [anon_sym_LT_DASH] = ACTIONS(2463), + [anon_sym_LT_LT] = ACTIONS(2463), + [anon_sym_GT_GT] = ACTIONS(2465), + [anon_sym_GT_GT_GT] = ACTIONS(2463), + [anon_sym_AMP_CARET] = ACTIONS(2463), + [anon_sym_AMP_AMP] = ACTIONS(2463), + [anon_sym_PIPE_PIPE] = ACTIONS(2463), + [anon_sym_or] = ACTIONS(2465), + [sym_none] = ACTIONS(2465), + [sym_true] = ACTIONS(2465), + [sym_false] = ACTIONS(2465), + [sym_nil] = ACTIONS(2465), + [anon_sym_QMARK_DOT] = ACTIONS(2463), + [anon_sym_POUND_LBRACK] = ACTIONS(2463), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_DOLLARif] = ACTIONS(2465), + [anon_sym_is] = ACTIONS(2465), + [anon_sym_BANGis] = ACTIONS(2463), + [anon_sym_in] = ACTIONS(2465), + [anon_sym_BANGin] = ACTIONS(2463), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_lock] = ACTIONS(2465), + [anon_sym_rlock] = ACTIONS(2465), + [anon_sym_unsafe] = ACTIONS(2465), + [anon_sym_sql] = ACTIONS(2465), + [sym_int_literal] = ACTIONS(2465), + [sym_float_literal] = ACTIONS(2463), + [sym_rune_literal] = ACTIONS(2463), + [anon_sym_SQUOTE] = ACTIONS(2463), + [anon_sym_DQUOTE] = ACTIONS(2463), + [anon_sym_c_SQUOTE] = ACTIONS(2463), + [anon_sym_c_DQUOTE] = ACTIONS(2463), + [anon_sym_r_SQUOTE] = ACTIONS(2463), + [anon_sym_r_DQUOTE] = ACTIONS(2463), + [sym_pseudo_compile_time_identifier] = ACTIONS(2465), + [anon_sym_shared] = ACTIONS(2465), + [anon_sym_map_LBRACK] = ACTIONS(2463), + [anon_sym_chan] = ACTIONS(2465), + [anon_sym_thread] = ACTIONS(2465), + [anon_sym_atomic] = ACTIONS(2465), }, - [1351] = { - [sym_line_comment] = STATE(1351), - [sym_block_comment] = STATE(1351), - [sym_identifier] = ACTIONS(2171), + [1324] = { + [sym_line_comment] = STATE(1324), + [sym_block_comment] = STATE(1324), + [sym_identifier] = ACTIONS(2765), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_as] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_COMMA] = ACTIONS(2169), - [anon_sym_RBRACE] = ACTIONS(2169), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_PIPE] = ACTIONS(2171), - [anon_sym_fn] = ACTIONS(2171), - [anon_sym_PLUS] = ACTIONS(2171), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_SLASH] = ACTIONS(2171), - [anon_sym_PERCENT] = ACTIONS(2169), - [anon_sym_LT] = ACTIONS(2171), - [anon_sym_GT] = ACTIONS(2171), - [anon_sym_EQ_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ] = ACTIONS(2169), - [anon_sym_LT_EQ] = ACTIONS(2169), - [anon_sym_GT_EQ] = ACTIONS(2169), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_RBRACK] = ACTIONS(2169), - [anon_sym_struct] = ACTIONS(2171), - [anon_sym_mut] = ACTIONS(2171), - [anon_sym_COLON] = ACTIONS(2169), - [anon_sym_PLUS_PLUS] = ACTIONS(2169), - [anon_sym_DASH_DASH] = ACTIONS(2169), - [anon_sym_QMARK] = ACTIONS(2171), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_go] = ACTIONS(2171), - [anon_sym_spawn] = ACTIONS(2171), - [anon_sym_json_DOTdecode] = ACTIONS(2169), - [anon_sym_LBRACK2] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2169), - [anon_sym_CARET] = ACTIONS(2169), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_LT_DASH] = ACTIONS(2169), - [anon_sym_LT_LT] = ACTIONS(2169), - [anon_sym_GT_GT] = ACTIONS(2171), - [anon_sym_GT_GT_GT] = ACTIONS(2169), - [anon_sym_AMP_CARET] = ACTIONS(2169), - [anon_sym_AMP_AMP] = ACTIONS(2169), - [anon_sym_PIPE_PIPE] = ACTIONS(2169), - [anon_sym_or] = ACTIONS(2171), - [sym_none] = ACTIONS(2171), - [sym_true] = ACTIONS(2171), - [sym_false] = ACTIONS(2171), - [sym_nil] = ACTIONS(2171), - [anon_sym_QMARK_DOT] = ACTIONS(2169), - [anon_sym_POUND_LBRACK] = ACTIONS(2169), - [anon_sym_if] = ACTIONS(2171), - [anon_sym_DOLLARif] = ACTIONS(2171), - [anon_sym_is] = ACTIONS(2171), - [anon_sym_BANGis] = ACTIONS(2169), - [anon_sym_in] = ACTIONS(2171), - [anon_sym_BANGin] = ACTIONS(2169), - [anon_sym_match] = ACTIONS(2171), - [anon_sym_select] = ACTIONS(2171), - [anon_sym_lock] = ACTIONS(2171), - [anon_sym_rlock] = ACTIONS(2171), - [anon_sym_unsafe] = ACTIONS(2171), - [anon_sym_sql] = ACTIONS(2171), - [sym_int_literal] = ACTIONS(2171), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [anon_sym_SQUOTE] = ACTIONS(2169), - [anon_sym_DQUOTE] = ACTIONS(2169), - [anon_sym_c_SQUOTE] = ACTIONS(2169), - [anon_sym_c_DQUOTE] = ACTIONS(2169), - [anon_sym_r_SQUOTE] = ACTIONS(2169), - [anon_sym_r_DQUOTE] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(2171), - [anon_sym_shared] = ACTIONS(2171), - [anon_sym_map_LBRACK] = ACTIONS(2169), - [anon_sym_chan] = ACTIONS(2171), - [anon_sym_thread] = ACTIONS(2171), - [anon_sym_atomic] = ACTIONS(2171), + [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_fn] = ACTIONS(2765), + [anon_sym_PLUS] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(2765), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_SLASH] = ACTIONS(2765), + [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_PIPE] = ACTIONS(2765), + [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_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), + [anon_sym_SQUOTE] = ACTIONS(2763), + [anon_sym_DQUOTE] = ACTIONS(2763), + [anon_sym_c_SQUOTE] = ACTIONS(2763), + [anon_sym_c_DQUOTE] = ACTIONS(2763), + [anon_sym_r_SQUOTE] = ACTIONS(2763), + [anon_sym_r_DQUOTE] = 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), }, - [1352] = { - [sym_line_comment] = STATE(1352), - [sym_block_comment] = STATE(1352), - [sym_identifier] = ACTIONS(2155), + [1325] = { + [sym_line_comment] = STATE(1325), + [sym_block_comment] = STATE(1325), + [sym_identifier] = ACTIONS(1887), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2155), - [anon_sym_as] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_COMMA] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_PIPE] = ACTIONS(2155), - [anon_sym_fn] = ACTIONS(2155), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_SLASH] = ACTIONS(2155), - [anon_sym_PERCENT] = ACTIONS(2153), - [anon_sym_LT] = ACTIONS(2155), - [anon_sym_GT] = ACTIONS(2155), - [anon_sym_EQ_EQ] = ACTIONS(2153), - [anon_sym_BANG_EQ] = ACTIONS(2153), - [anon_sym_LT_EQ] = ACTIONS(2153), - [anon_sym_GT_EQ] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2153), - [anon_sym_RBRACK] = ACTIONS(2153), - [anon_sym_struct] = ACTIONS(2155), - [anon_sym_mut] = ACTIONS(2155), - [anon_sym_COLON] = ACTIONS(2153), - [anon_sym_PLUS_PLUS] = ACTIONS(2153), - [anon_sym_DASH_DASH] = ACTIONS(2153), - [anon_sym_QMARK] = ACTIONS(2155), - [anon_sym_BANG] = ACTIONS(2155), - [anon_sym_go] = ACTIONS(2155), - [anon_sym_spawn] = ACTIONS(2155), - [anon_sym_json_DOTdecode] = ACTIONS(2153), - [anon_sym_LBRACK2] = ACTIONS(2155), - [anon_sym_TILDE] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2153), - [anon_sym_AMP] = ACTIONS(2155), - [anon_sym_LT_DASH] = ACTIONS(2153), - [anon_sym_LT_LT] = ACTIONS(2153), - [anon_sym_GT_GT] = ACTIONS(2155), - [anon_sym_GT_GT_GT] = ACTIONS(2153), - [anon_sym_AMP_CARET] = ACTIONS(2153), - [anon_sym_AMP_AMP] = ACTIONS(2153), - [anon_sym_PIPE_PIPE] = ACTIONS(2153), - [anon_sym_or] = ACTIONS(2155), - [sym_none] = ACTIONS(2155), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [sym_nil] = ACTIONS(2155), - [anon_sym_QMARK_DOT] = ACTIONS(2153), - [anon_sym_POUND_LBRACK] = ACTIONS(2153), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_DOLLARif] = ACTIONS(2155), - [anon_sym_is] = ACTIONS(2155), - [anon_sym_BANGis] = ACTIONS(2153), - [anon_sym_in] = ACTIONS(2155), - [anon_sym_BANGin] = ACTIONS(2153), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2155), - [anon_sym_lock] = ACTIONS(2155), - [anon_sym_rlock] = ACTIONS(2155), - [anon_sym_unsafe] = ACTIONS(2155), - [anon_sym_sql] = ACTIONS(2155), - [sym_int_literal] = ACTIONS(2155), - [sym_float_literal] = ACTIONS(2153), - [sym_rune_literal] = ACTIONS(2153), - [anon_sym_SQUOTE] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(2153), - [anon_sym_c_SQUOTE] = ACTIONS(2153), - [anon_sym_c_DQUOTE] = ACTIONS(2153), - [anon_sym_r_SQUOTE] = ACTIONS(2153), - [anon_sym_r_DQUOTE] = ACTIONS(2153), - [sym_pseudo_compile_time_identifier] = ACTIONS(2155), - [anon_sym_shared] = ACTIONS(2155), - [anon_sym_map_LBRACK] = ACTIONS(2153), - [anon_sym_chan] = ACTIONS(2155), - [anon_sym_thread] = ACTIONS(2155), - [anon_sym_atomic] = ACTIONS(2155), + [anon_sym_DOT] = ACTIONS(1887), + [anon_sym_as] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1885), + [anon_sym_COMMA] = ACTIONS(1885), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_fn] = ACTIONS(1887), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_SLASH] = ACTIONS(1887), + [anon_sym_PERCENT] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(1887), + [anon_sym_GT] = ACTIONS(1887), + [anon_sym_EQ_EQ] = ACTIONS(1885), + [anon_sym_BANG_EQ] = ACTIONS(1885), + [anon_sym_LT_EQ] = ACTIONS(1885), + [anon_sym_GT_EQ] = ACTIONS(1885), + [anon_sym_LBRACK] = ACTIONS(1885), + [anon_sym_RBRACK] = ACTIONS(1885), + [anon_sym_struct] = ACTIONS(1887), + [anon_sym_mut] = ACTIONS(1887), + [anon_sym_COLON] = ACTIONS(1885), + [anon_sym_PLUS_PLUS] = ACTIONS(1885), + [anon_sym_DASH_DASH] = ACTIONS(1885), + [anon_sym_QMARK] = ACTIONS(1887), + [anon_sym_BANG] = ACTIONS(1887), + [anon_sym_go] = ACTIONS(1887), + [anon_sym_spawn] = ACTIONS(1887), + [anon_sym_json_DOTdecode] = ACTIONS(1885), + [anon_sym_PIPE] = ACTIONS(1887), + [anon_sym_LBRACK2] = ACTIONS(1887), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_CARET] = ACTIONS(1885), + [anon_sym_AMP] = ACTIONS(1887), + [anon_sym_LT_DASH] = ACTIONS(1885), + [anon_sym_LT_LT] = ACTIONS(1885), + [anon_sym_GT_GT] = ACTIONS(1887), + [anon_sym_GT_GT_GT] = ACTIONS(1885), + [anon_sym_AMP_CARET] = ACTIONS(1885), + [anon_sym_AMP_AMP] = ACTIONS(1885), + [anon_sym_PIPE_PIPE] = ACTIONS(1885), + [anon_sym_or] = ACTIONS(1887), + [sym_none] = ACTIONS(1887), + [sym_true] = ACTIONS(1887), + [sym_false] = ACTIONS(1887), + [sym_nil] = ACTIONS(1887), + [anon_sym_QMARK_DOT] = ACTIONS(1885), + [anon_sym_POUND_LBRACK] = ACTIONS(1885), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_DOLLARif] = ACTIONS(1887), + [anon_sym_is] = ACTIONS(1887), + [anon_sym_BANGis] = ACTIONS(1885), + [anon_sym_in] = ACTIONS(1887), + [anon_sym_BANGin] = ACTIONS(1885), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_select] = ACTIONS(1887), + [anon_sym_lock] = ACTIONS(1887), + [anon_sym_rlock] = ACTIONS(1887), + [anon_sym_unsafe] = ACTIONS(1887), + [anon_sym_sql] = ACTIONS(1887), + [sym_int_literal] = ACTIONS(1887), + [sym_float_literal] = ACTIONS(1885), + [sym_rune_literal] = ACTIONS(1885), + [anon_sym_SQUOTE] = ACTIONS(1885), + [anon_sym_DQUOTE] = ACTIONS(1885), + [anon_sym_c_SQUOTE] = ACTIONS(1885), + [anon_sym_c_DQUOTE] = ACTIONS(1885), + [anon_sym_r_SQUOTE] = ACTIONS(1885), + [anon_sym_r_DQUOTE] = ACTIONS(1885), + [sym_pseudo_compile_time_identifier] = ACTIONS(1887), + [anon_sym_shared] = ACTIONS(1887), + [anon_sym_map_LBRACK] = ACTIONS(1885), + [anon_sym_chan] = ACTIONS(1887), + [anon_sym_thread] = ACTIONS(1887), + [anon_sym_atomic] = ACTIONS(1887), }, - [1353] = { - [sym_line_comment] = STATE(1353), - [sym_block_comment] = STATE(1353), - [sym_identifier] = ACTIONS(2201), + [1326] = { + [sym_line_comment] = STATE(1326), + [sym_block_comment] = STATE(1326), + [sym_identifier] = ACTIONS(3003), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2201), - [anon_sym_as] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_COMMA] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_PIPE] = ACTIONS(2201), - [anon_sym_fn] = ACTIONS(2201), - [anon_sym_PLUS] = ACTIONS(2201), - [anon_sym_DASH] = ACTIONS(2201), - [anon_sym_STAR] = ACTIONS(2199), - [anon_sym_SLASH] = ACTIONS(2201), - [anon_sym_PERCENT] = ACTIONS(2199), - [anon_sym_LT] = ACTIONS(2201), - [anon_sym_GT] = ACTIONS(2201), - [anon_sym_EQ_EQ] = ACTIONS(2199), - [anon_sym_BANG_EQ] = ACTIONS(2199), - [anon_sym_LT_EQ] = ACTIONS(2199), - [anon_sym_GT_EQ] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2199), - [anon_sym_RBRACK] = ACTIONS(2199), - [anon_sym_struct] = ACTIONS(2201), - [anon_sym_mut] = ACTIONS(2201), - [anon_sym_COLON] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [anon_sym_QMARK] = ACTIONS(2201), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_go] = ACTIONS(2201), - [anon_sym_spawn] = ACTIONS(2201), - [anon_sym_json_DOTdecode] = ACTIONS(2199), - [anon_sym_LBRACK2] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_LT_DASH] = ACTIONS(2199), - [anon_sym_LT_LT] = ACTIONS(2199), - [anon_sym_GT_GT] = ACTIONS(2201), - [anon_sym_GT_GT_GT] = ACTIONS(2199), - [anon_sym_AMP_CARET] = ACTIONS(2199), - [anon_sym_AMP_AMP] = ACTIONS(2199), - [anon_sym_PIPE_PIPE] = ACTIONS(2199), - [anon_sym_or] = ACTIONS(2201), - [sym_none] = ACTIONS(2201), - [sym_true] = ACTIONS(2201), - [sym_false] = ACTIONS(2201), - [sym_nil] = ACTIONS(2201), - [anon_sym_QMARK_DOT] = ACTIONS(2199), - [anon_sym_POUND_LBRACK] = ACTIONS(2199), - [anon_sym_if] = ACTIONS(2201), - [anon_sym_DOLLARif] = ACTIONS(2201), - [anon_sym_is] = ACTIONS(2201), - [anon_sym_BANGis] = ACTIONS(2199), - [anon_sym_in] = ACTIONS(2201), - [anon_sym_BANGin] = ACTIONS(2199), - [anon_sym_match] = ACTIONS(2201), - [anon_sym_select] = ACTIONS(2201), - [anon_sym_lock] = ACTIONS(2201), - [anon_sym_rlock] = ACTIONS(2201), - [anon_sym_unsafe] = ACTIONS(2201), - [anon_sym_sql] = ACTIONS(2201), - [sym_int_literal] = ACTIONS(2201), - [sym_float_literal] = ACTIONS(2199), - [sym_rune_literal] = ACTIONS(2199), - [anon_sym_SQUOTE] = ACTIONS(2199), - [anon_sym_DQUOTE] = ACTIONS(2199), - [anon_sym_c_SQUOTE] = ACTIONS(2199), - [anon_sym_c_DQUOTE] = ACTIONS(2199), - [anon_sym_r_SQUOTE] = ACTIONS(2199), - [anon_sym_r_DQUOTE] = ACTIONS(2199), - [sym_pseudo_compile_time_identifier] = ACTIONS(2201), - [anon_sym_shared] = ACTIONS(2201), - [anon_sym_map_LBRACK] = ACTIONS(2199), - [anon_sym_chan] = ACTIONS(2201), - [anon_sym_thread] = ACTIONS(2201), - [anon_sym_atomic] = ACTIONS(2201), + [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_fn] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3003), + [anon_sym_DASH] = ACTIONS(3003), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_SLASH] = ACTIONS(3003), + [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_PIPE] = ACTIONS(3003), + [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), + [anon_sym_SQUOTE] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(3001), + [anon_sym_c_SQUOTE] = ACTIONS(3001), + [anon_sym_c_DQUOTE] = ACTIONS(3001), + [anon_sym_r_SQUOTE] = ACTIONS(3001), + [anon_sym_r_DQUOTE] = 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), }, - [1354] = { - [sym_line_comment] = STATE(1354), - [sym_block_comment] = STATE(1354), - [sym_identifier] = ACTIONS(2431), + [1327] = { + [sym_line_comment] = STATE(1327), + [sym_block_comment] = STATE(1327), + [sym_identifier] = ACTIONS(2999), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2431), - [anon_sym_as] = ACTIONS(2431), - [anon_sym_LBRACE] = ACTIONS(2429), - [anon_sym_COMMA] = ACTIONS(2429), - [anon_sym_RBRACE] = ACTIONS(2429), - [anon_sym_LPAREN] = ACTIONS(2429), - [anon_sym_PIPE] = ACTIONS(2431), - [anon_sym_fn] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2431), - [anon_sym_DASH] = ACTIONS(2431), - [anon_sym_STAR] = ACTIONS(2429), - [anon_sym_SLASH] = ACTIONS(2431), - [anon_sym_PERCENT] = ACTIONS(2429), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_GT] = ACTIONS(2431), - [anon_sym_EQ_EQ] = ACTIONS(2429), - [anon_sym_BANG_EQ] = ACTIONS(2429), - [anon_sym_LT_EQ] = ACTIONS(2429), - [anon_sym_GT_EQ] = ACTIONS(2429), - [anon_sym_LBRACK] = ACTIONS(2429), - [anon_sym_RBRACK] = ACTIONS(2429), - [anon_sym_struct] = ACTIONS(2431), - [anon_sym_mut] = ACTIONS(2431), - [anon_sym_COLON] = ACTIONS(2429), - [anon_sym_PLUS_PLUS] = ACTIONS(2429), - [anon_sym_DASH_DASH] = ACTIONS(2429), - [anon_sym_QMARK] = ACTIONS(2431), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_go] = ACTIONS(2431), - [anon_sym_spawn] = ACTIONS(2431), - [anon_sym_json_DOTdecode] = ACTIONS(2429), - [anon_sym_LBRACK2] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2429), - [anon_sym_CARET] = ACTIONS(2429), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_LT_DASH] = ACTIONS(2429), - [anon_sym_LT_LT] = ACTIONS(2429), - [anon_sym_GT_GT] = ACTIONS(2431), - [anon_sym_GT_GT_GT] = ACTIONS(2429), - [anon_sym_AMP_CARET] = ACTIONS(2429), - [anon_sym_AMP_AMP] = ACTIONS(2429), - [anon_sym_PIPE_PIPE] = ACTIONS(2429), - [anon_sym_or] = ACTIONS(2431), - [sym_none] = ACTIONS(2431), - [sym_true] = ACTIONS(2431), - [sym_false] = ACTIONS(2431), - [sym_nil] = ACTIONS(2431), - [anon_sym_QMARK_DOT] = ACTIONS(2429), - [anon_sym_POUND_LBRACK] = ACTIONS(2429), - [anon_sym_if] = ACTIONS(2431), - [anon_sym_DOLLARif] = ACTIONS(2431), - [anon_sym_is] = ACTIONS(2431), - [anon_sym_BANGis] = ACTIONS(2429), - [anon_sym_in] = ACTIONS(2431), - [anon_sym_BANGin] = ACTIONS(2429), - [anon_sym_match] = ACTIONS(2431), - [anon_sym_select] = ACTIONS(2431), - [anon_sym_lock] = ACTIONS(2431), - [anon_sym_rlock] = ACTIONS(2431), - [anon_sym_unsafe] = ACTIONS(2431), - [anon_sym_sql] = ACTIONS(2431), - [sym_int_literal] = ACTIONS(2431), - [sym_float_literal] = ACTIONS(2429), - [sym_rune_literal] = ACTIONS(2429), - [anon_sym_SQUOTE] = ACTIONS(2429), - [anon_sym_DQUOTE] = ACTIONS(2429), - [anon_sym_c_SQUOTE] = ACTIONS(2429), - [anon_sym_c_DQUOTE] = ACTIONS(2429), - [anon_sym_r_SQUOTE] = ACTIONS(2429), - [anon_sym_r_DQUOTE] = ACTIONS(2429), - [sym_pseudo_compile_time_identifier] = ACTIONS(2431), - [anon_sym_shared] = ACTIONS(2431), - [anon_sym_map_LBRACK] = ACTIONS(2429), - [anon_sym_chan] = ACTIONS(2431), - [anon_sym_thread] = ACTIONS(2431), - [anon_sym_atomic] = ACTIONS(2431), + [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_fn] = ACTIONS(2999), + [anon_sym_PLUS] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(2997), + [anon_sym_SLASH] = ACTIONS(2999), + [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_PIPE] = ACTIONS(2999), + [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), + [anon_sym_SQUOTE] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_c_SQUOTE] = ACTIONS(2997), + [anon_sym_c_DQUOTE] = ACTIONS(2997), + [anon_sym_r_SQUOTE] = ACTIONS(2997), + [anon_sym_r_DQUOTE] = 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), }, - [1355] = { - [sym_line_comment] = STATE(1355), - [sym_block_comment] = STATE(1355), - [sym_identifier] = ACTIONS(2547), + [1328] = { + [sym_line_comment] = STATE(1328), + [sym_block_comment] = STATE(1328), + [sym_identifier] = ACTIONS(2995), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2545), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_RBRACE] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_fn] = ACTIONS(2547), - [anon_sym_PLUS] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_STAR] = ACTIONS(2545), - [anon_sym_SLASH] = ACTIONS(2547), - [anon_sym_PERCENT] = ACTIONS(2545), - [anon_sym_LT] = ACTIONS(2547), - [anon_sym_GT] = ACTIONS(2547), - [anon_sym_EQ_EQ] = ACTIONS(2545), - [anon_sym_BANG_EQ] = ACTIONS(2545), - [anon_sym_LT_EQ] = ACTIONS(2545), - [anon_sym_GT_EQ] = ACTIONS(2545), - [anon_sym_LBRACK] = ACTIONS(2545), - [anon_sym_RBRACK] = ACTIONS(2545), - [anon_sym_struct] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_COLON] = ACTIONS(2545), - [anon_sym_PLUS_PLUS] = ACTIONS(2545), - [anon_sym_DASH_DASH] = ACTIONS(2545), - [anon_sym_QMARK] = ACTIONS(2547), - [anon_sym_BANG] = ACTIONS(2547), - [anon_sym_go] = ACTIONS(2547), - [anon_sym_spawn] = ACTIONS(2547), - [anon_sym_json_DOTdecode] = ACTIONS(2545), - [anon_sym_LBRACK2] = ACTIONS(2547), - [anon_sym_TILDE] = ACTIONS(2545), - [anon_sym_CARET] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2547), - [anon_sym_LT_DASH] = ACTIONS(2545), - [anon_sym_LT_LT] = ACTIONS(2545), - [anon_sym_GT_GT] = ACTIONS(2547), - [anon_sym_GT_GT_GT] = ACTIONS(2545), - [anon_sym_AMP_CARET] = ACTIONS(2545), - [anon_sym_AMP_AMP] = ACTIONS(2545), - [anon_sym_PIPE_PIPE] = ACTIONS(2545), - [anon_sym_or] = ACTIONS(2547), - [sym_none] = ACTIONS(2547), - [sym_true] = ACTIONS(2547), - [sym_false] = ACTIONS(2547), - [sym_nil] = ACTIONS(2547), - [anon_sym_QMARK_DOT] = ACTIONS(2545), - [anon_sym_POUND_LBRACK] = ACTIONS(2545), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_DOLLARif] = ACTIONS(2547), - [anon_sym_is] = ACTIONS(2547), - [anon_sym_BANGis] = ACTIONS(2545), - [anon_sym_in] = ACTIONS(2547), - [anon_sym_BANGin] = ACTIONS(2545), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_select] = ACTIONS(2547), - [anon_sym_lock] = ACTIONS(2547), - [anon_sym_rlock] = ACTIONS(2547), - [anon_sym_unsafe] = ACTIONS(2547), - [anon_sym_sql] = ACTIONS(2547), - [sym_int_literal] = ACTIONS(2547), - [sym_float_literal] = ACTIONS(2545), - [sym_rune_literal] = ACTIONS(2545), - [anon_sym_SQUOTE] = ACTIONS(2545), - [anon_sym_DQUOTE] = ACTIONS(2545), - [anon_sym_c_SQUOTE] = ACTIONS(2545), - [anon_sym_c_DQUOTE] = ACTIONS(2545), - [anon_sym_r_SQUOTE] = ACTIONS(2545), - [anon_sym_r_DQUOTE] = ACTIONS(2545), - [sym_pseudo_compile_time_identifier] = ACTIONS(2547), - [anon_sym_shared] = ACTIONS(2547), - [anon_sym_map_LBRACK] = ACTIONS(2545), - [anon_sym_chan] = ACTIONS(2547), - [anon_sym_thread] = ACTIONS(2547), - [anon_sym_atomic] = ACTIONS(2547), + [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_fn] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(2993), + [anon_sym_SLASH] = ACTIONS(2995), + [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_PIPE] = ACTIONS(2995), + [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), + [anon_sym_SQUOTE] = ACTIONS(2993), + [anon_sym_DQUOTE] = ACTIONS(2993), + [anon_sym_c_SQUOTE] = ACTIONS(2993), + [anon_sym_c_DQUOTE] = ACTIONS(2993), + [anon_sym_r_SQUOTE] = ACTIONS(2993), + [anon_sym_r_DQUOTE] = 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), }, - [1356] = { - [sym_line_comment] = STATE(1356), - [sym_block_comment] = STATE(1356), - [sym_identifier] = ACTIONS(2463), + [1329] = { + [sym_line_comment] = STATE(1329), + [sym_block_comment] = STATE(1329), + [sym_identifier] = ACTIONS(2469), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2463), - [anon_sym_as] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_COMMA] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2461), - [anon_sym_PIPE] = ACTIONS(2463), - [anon_sym_fn] = ACTIONS(2463), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(2463), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_SLASH] = ACTIONS(2463), - [anon_sym_PERCENT] = ACTIONS(2461), - [anon_sym_LT] = ACTIONS(2463), - [anon_sym_GT] = ACTIONS(2463), - [anon_sym_EQ_EQ] = ACTIONS(2461), - [anon_sym_BANG_EQ] = ACTIONS(2461), - [anon_sym_LT_EQ] = ACTIONS(2461), - [anon_sym_GT_EQ] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2461), - [anon_sym_RBRACK] = ACTIONS(2461), - [anon_sym_struct] = ACTIONS(2463), - [anon_sym_mut] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_QMARK] = ACTIONS(2463), - [anon_sym_BANG] = ACTIONS(2463), - [anon_sym_go] = ACTIONS(2463), - [anon_sym_spawn] = ACTIONS(2463), - [anon_sym_json_DOTdecode] = ACTIONS(2461), - [anon_sym_LBRACK2] = ACTIONS(2463), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_CARET] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2463), - [anon_sym_LT_DASH] = ACTIONS(2461), - [anon_sym_LT_LT] = ACTIONS(2461), - [anon_sym_GT_GT] = ACTIONS(2463), - [anon_sym_GT_GT_GT] = ACTIONS(2461), - [anon_sym_AMP_CARET] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_PIPE_PIPE] = ACTIONS(2461), - [anon_sym_or] = ACTIONS(2463), - [sym_none] = ACTIONS(2463), - [sym_true] = ACTIONS(2463), - [sym_false] = ACTIONS(2463), - [sym_nil] = ACTIONS(2463), - [anon_sym_QMARK_DOT] = ACTIONS(2461), - [anon_sym_POUND_LBRACK] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2463), - [anon_sym_DOLLARif] = ACTIONS(2463), - [anon_sym_is] = ACTIONS(2463), - [anon_sym_BANGis] = ACTIONS(2461), - [anon_sym_in] = ACTIONS(2463), - [anon_sym_BANGin] = ACTIONS(2461), - [anon_sym_match] = ACTIONS(2463), - [anon_sym_select] = ACTIONS(2463), - [anon_sym_lock] = ACTIONS(2463), - [anon_sym_rlock] = ACTIONS(2463), - [anon_sym_unsafe] = ACTIONS(2463), - [anon_sym_sql] = ACTIONS(2463), - [sym_int_literal] = ACTIONS(2463), - [sym_float_literal] = ACTIONS(2461), - [sym_rune_literal] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [anon_sym_c_SQUOTE] = ACTIONS(2461), - [anon_sym_c_DQUOTE] = ACTIONS(2461), - [anon_sym_r_SQUOTE] = ACTIONS(2461), - [anon_sym_r_DQUOTE] = ACTIONS(2461), - [sym_pseudo_compile_time_identifier] = ACTIONS(2463), - [anon_sym_shared] = ACTIONS(2463), - [anon_sym_map_LBRACK] = ACTIONS(2461), - [anon_sym_chan] = ACTIONS(2463), - [anon_sym_thread] = ACTIONS(2463), - [anon_sym_atomic] = ACTIONS(2463), + [anon_sym_DOT] = ACTIONS(2469), + [anon_sym_as] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2467), + [anon_sym_COMMA] = ACTIONS(2467), + [anon_sym_RBRACE] = ACTIONS(2467), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_fn] = ACTIONS(2469), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_STAR] = ACTIONS(2467), + [anon_sym_SLASH] = ACTIONS(2469), + [anon_sym_PERCENT] = ACTIONS(2467), + [anon_sym_LT] = ACTIONS(2469), + [anon_sym_GT] = ACTIONS(2469), + [anon_sym_EQ_EQ] = ACTIONS(2467), + [anon_sym_BANG_EQ] = ACTIONS(2467), + [anon_sym_LT_EQ] = ACTIONS(2467), + [anon_sym_GT_EQ] = ACTIONS(2467), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(2467), + [anon_sym_struct] = ACTIONS(2469), + [anon_sym_mut] = ACTIONS(2469), + [anon_sym_COLON] = ACTIONS(2467), + [anon_sym_PLUS_PLUS] = ACTIONS(2467), + [anon_sym_DASH_DASH] = ACTIONS(2467), + [anon_sym_QMARK] = ACTIONS(2469), + [anon_sym_BANG] = ACTIONS(2469), + [anon_sym_go] = ACTIONS(2469), + [anon_sym_spawn] = ACTIONS(2469), + [anon_sym_json_DOTdecode] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(2469), + [anon_sym_LBRACK2] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2467), + [anon_sym_CARET] = ACTIONS(2467), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_LT_DASH] = ACTIONS(2467), + [anon_sym_LT_LT] = ACTIONS(2467), + [anon_sym_GT_GT] = ACTIONS(2469), + [anon_sym_GT_GT_GT] = ACTIONS(2467), + [anon_sym_AMP_CARET] = ACTIONS(2467), + [anon_sym_AMP_AMP] = ACTIONS(2467), + [anon_sym_PIPE_PIPE] = ACTIONS(2467), + [anon_sym_or] = ACTIONS(2469), + [sym_none] = ACTIONS(2469), + [sym_true] = ACTIONS(2469), + [sym_false] = ACTIONS(2469), + [sym_nil] = ACTIONS(2469), + [anon_sym_QMARK_DOT] = ACTIONS(2467), + [anon_sym_POUND_LBRACK] = ACTIONS(2467), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_DOLLARif] = ACTIONS(2469), + [anon_sym_is] = ACTIONS(2469), + [anon_sym_BANGis] = ACTIONS(2467), + [anon_sym_in] = ACTIONS(2469), + [anon_sym_BANGin] = ACTIONS(2467), + [anon_sym_match] = ACTIONS(2469), + [anon_sym_select] = ACTIONS(2469), + [anon_sym_lock] = ACTIONS(2469), + [anon_sym_rlock] = ACTIONS(2469), + [anon_sym_unsafe] = ACTIONS(2469), + [anon_sym_sql] = ACTIONS(2469), + [sym_int_literal] = ACTIONS(2469), + [sym_float_literal] = ACTIONS(2467), + [sym_rune_literal] = ACTIONS(2467), + [anon_sym_SQUOTE] = ACTIONS(2467), + [anon_sym_DQUOTE] = ACTIONS(2467), + [anon_sym_c_SQUOTE] = ACTIONS(2467), + [anon_sym_c_DQUOTE] = ACTIONS(2467), + [anon_sym_r_SQUOTE] = ACTIONS(2467), + [anon_sym_r_DQUOTE] = ACTIONS(2467), + [sym_pseudo_compile_time_identifier] = ACTIONS(2469), + [anon_sym_shared] = ACTIONS(2469), + [anon_sym_map_LBRACK] = ACTIONS(2467), + [anon_sym_chan] = ACTIONS(2469), + [anon_sym_thread] = ACTIONS(2469), + [anon_sym_atomic] = ACTIONS(2469), }, - [1357] = { - [sym_line_comment] = STATE(1357), - [sym_block_comment] = STATE(1357), - [sym_identifier] = ACTIONS(2189), + [1330] = { + [sym_line_comment] = STATE(1330), + [sym_block_comment] = STATE(1330), + [sym_identifier] = ACTIONS(2371), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2189), - [anon_sym_as] = ACTIONS(2189), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_COMMA] = ACTIONS(2187), - [anon_sym_RBRACE] = ACTIONS(2187), - [anon_sym_LPAREN] = ACTIONS(2187), - [anon_sym_PIPE] = ACTIONS(2189), - [anon_sym_fn] = ACTIONS(2189), - [anon_sym_PLUS] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2189), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_SLASH] = ACTIONS(2189), - [anon_sym_PERCENT] = ACTIONS(2187), - [anon_sym_LT] = ACTIONS(2189), - [anon_sym_GT] = ACTIONS(2189), - [anon_sym_EQ_EQ] = ACTIONS(2187), - [anon_sym_BANG_EQ] = ACTIONS(2187), - [anon_sym_LT_EQ] = ACTIONS(2187), - [anon_sym_GT_EQ] = ACTIONS(2187), - [anon_sym_LBRACK] = ACTIONS(2187), - [anon_sym_RBRACK] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(2189), - [anon_sym_mut] = ACTIONS(2189), - [anon_sym_COLON] = ACTIONS(2187), - [anon_sym_PLUS_PLUS] = ACTIONS(2187), - [anon_sym_DASH_DASH] = ACTIONS(2187), - [anon_sym_QMARK] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_go] = ACTIONS(2189), - [anon_sym_spawn] = ACTIONS(2189), - [anon_sym_json_DOTdecode] = ACTIONS(2187), - [anon_sym_LBRACK2] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2187), - [anon_sym_CARET] = ACTIONS(2187), - [anon_sym_AMP] = ACTIONS(2189), - [anon_sym_LT_DASH] = ACTIONS(2187), - [anon_sym_LT_LT] = ACTIONS(2187), - [anon_sym_GT_GT] = ACTIONS(2189), - [anon_sym_GT_GT_GT] = ACTIONS(2187), - [anon_sym_AMP_CARET] = ACTIONS(2187), - [anon_sym_AMP_AMP] = ACTIONS(2187), - [anon_sym_PIPE_PIPE] = ACTIONS(2187), - [anon_sym_or] = ACTIONS(2189), - [sym_none] = ACTIONS(2189), - [sym_true] = ACTIONS(2189), - [sym_false] = ACTIONS(2189), - [sym_nil] = ACTIONS(2189), - [anon_sym_QMARK_DOT] = ACTIONS(2187), - [anon_sym_POUND_LBRACK] = ACTIONS(2187), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_DOLLARif] = ACTIONS(2189), - [anon_sym_is] = ACTIONS(2189), - [anon_sym_BANGis] = ACTIONS(2187), - [anon_sym_in] = ACTIONS(2189), - [anon_sym_BANGin] = ACTIONS(2187), - [anon_sym_match] = ACTIONS(2189), - [anon_sym_select] = ACTIONS(2189), - [anon_sym_lock] = ACTIONS(2189), - [anon_sym_rlock] = ACTIONS(2189), - [anon_sym_unsafe] = ACTIONS(2189), - [anon_sym_sql] = ACTIONS(2189), - [sym_int_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2187), - [sym_rune_literal] = ACTIONS(2187), - [anon_sym_SQUOTE] = ACTIONS(2187), - [anon_sym_DQUOTE] = ACTIONS(2187), - [anon_sym_c_SQUOTE] = ACTIONS(2187), - [anon_sym_c_DQUOTE] = ACTIONS(2187), - [anon_sym_r_SQUOTE] = ACTIONS(2187), - [anon_sym_r_DQUOTE] = ACTIONS(2187), - [sym_pseudo_compile_time_identifier] = ACTIONS(2189), - [anon_sym_shared] = ACTIONS(2189), - [anon_sym_map_LBRACK] = ACTIONS(2187), - [anon_sym_chan] = ACTIONS(2189), - [anon_sym_thread] = ACTIONS(2189), - [anon_sym_atomic] = ACTIONS(2189), + [anon_sym_DOT] = ACTIONS(2371), + [anon_sym_as] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_COMMA] = ACTIONS(2369), + [anon_sym_RBRACE] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2369), + [anon_sym_fn] = ACTIONS(2371), + [anon_sym_PLUS] = ACTIONS(2371), + [anon_sym_DASH] = ACTIONS(2371), + [anon_sym_STAR] = ACTIONS(2369), + [anon_sym_SLASH] = ACTIONS(2371), + [anon_sym_PERCENT] = ACTIONS(2369), + [anon_sym_LT] = ACTIONS(2371), + [anon_sym_GT] = ACTIONS(2371), + [anon_sym_EQ_EQ] = ACTIONS(2369), + [anon_sym_BANG_EQ] = ACTIONS(2369), + [anon_sym_LT_EQ] = ACTIONS(2369), + [anon_sym_GT_EQ] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(2369), + [anon_sym_RBRACK] = ACTIONS(2369), + [anon_sym_struct] = ACTIONS(2371), + [anon_sym_mut] = ACTIONS(2371), + [anon_sym_COLON] = ACTIONS(2369), + [anon_sym_PLUS_PLUS] = ACTIONS(2369), + [anon_sym_DASH_DASH] = ACTIONS(2369), + [anon_sym_QMARK] = ACTIONS(2371), + [anon_sym_BANG] = ACTIONS(2371), + [anon_sym_go] = ACTIONS(2371), + [anon_sym_spawn] = ACTIONS(2371), + [anon_sym_json_DOTdecode] = ACTIONS(2369), + [anon_sym_PIPE] = ACTIONS(2371), + [anon_sym_LBRACK2] = ACTIONS(2371), + [anon_sym_TILDE] = ACTIONS(2369), + [anon_sym_CARET] = ACTIONS(2369), + [anon_sym_AMP] = ACTIONS(2371), + [anon_sym_LT_DASH] = ACTIONS(2369), + [anon_sym_LT_LT] = ACTIONS(2369), + [anon_sym_GT_GT] = ACTIONS(2371), + [anon_sym_GT_GT_GT] = ACTIONS(2369), + [anon_sym_AMP_CARET] = ACTIONS(2369), + [anon_sym_AMP_AMP] = ACTIONS(2369), + [anon_sym_PIPE_PIPE] = ACTIONS(2369), + [anon_sym_or] = ACTIONS(2371), + [sym_none] = ACTIONS(2371), + [sym_true] = ACTIONS(2371), + [sym_false] = ACTIONS(2371), + [sym_nil] = ACTIONS(2371), + [anon_sym_QMARK_DOT] = ACTIONS(2369), + [anon_sym_POUND_LBRACK] = ACTIONS(2369), + [anon_sym_if] = ACTIONS(2371), + [anon_sym_DOLLARif] = ACTIONS(2371), + [anon_sym_is] = ACTIONS(2371), + [anon_sym_BANGis] = ACTIONS(2369), + [anon_sym_in] = ACTIONS(2371), + [anon_sym_BANGin] = ACTIONS(2369), + [anon_sym_match] = ACTIONS(2371), + [anon_sym_select] = ACTIONS(2371), + [anon_sym_lock] = ACTIONS(2371), + [anon_sym_rlock] = ACTIONS(2371), + [anon_sym_unsafe] = ACTIONS(2371), + [anon_sym_sql] = ACTIONS(2371), + [sym_int_literal] = ACTIONS(2371), + [sym_float_literal] = ACTIONS(2369), + [sym_rune_literal] = ACTIONS(2369), + [anon_sym_SQUOTE] = ACTIONS(2369), + [anon_sym_DQUOTE] = ACTIONS(2369), + [anon_sym_c_SQUOTE] = ACTIONS(2369), + [anon_sym_c_DQUOTE] = ACTIONS(2369), + [anon_sym_r_SQUOTE] = ACTIONS(2369), + [anon_sym_r_DQUOTE] = ACTIONS(2369), + [sym_pseudo_compile_time_identifier] = ACTIONS(2371), + [anon_sym_shared] = ACTIONS(2371), + [anon_sym_map_LBRACK] = ACTIONS(2369), + [anon_sym_chan] = ACTIONS(2371), + [anon_sym_thread] = ACTIONS(2371), + [anon_sym_atomic] = ACTIONS(2371), }, - [1358] = { - [sym_line_comment] = STATE(1358), - [sym_block_comment] = STATE(1358), - [sym_identifier] = ACTIONS(2471), + [1331] = { + [sym_line_comment] = STATE(1331), + [sym_block_comment] = STATE(1331), + [sym_identifier] = ACTIONS(2989), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2471), - [anon_sym_as] = ACTIONS(2471), - [anon_sym_LBRACE] = ACTIONS(2469), - [anon_sym_COMMA] = ACTIONS(2469), - [anon_sym_RBRACE] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(2469), - [anon_sym_PIPE] = ACTIONS(2471), - [anon_sym_fn] = ACTIONS(2471), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_STAR] = ACTIONS(2469), - [anon_sym_SLASH] = ACTIONS(2471), - [anon_sym_PERCENT] = ACTIONS(2469), - [anon_sym_LT] = ACTIONS(2471), - [anon_sym_GT] = ACTIONS(2471), - [anon_sym_EQ_EQ] = ACTIONS(2469), - [anon_sym_BANG_EQ] = ACTIONS(2469), - [anon_sym_LT_EQ] = ACTIONS(2469), - [anon_sym_GT_EQ] = ACTIONS(2469), - [anon_sym_LBRACK] = ACTIONS(2469), - [anon_sym_RBRACK] = ACTIONS(2469), - [anon_sym_struct] = ACTIONS(2471), - [anon_sym_mut] = ACTIONS(2471), - [anon_sym_COLON] = ACTIONS(2469), - [anon_sym_PLUS_PLUS] = ACTIONS(2469), - [anon_sym_DASH_DASH] = ACTIONS(2469), - [anon_sym_QMARK] = ACTIONS(2471), - [anon_sym_BANG] = ACTIONS(2471), - [anon_sym_go] = ACTIONS(2471), - [anon_sym_spawn] = ACTIONS(2471), - [anon_sym_json_DOTdecode] = ACTIONS(2469), - [anon_sym_LBRACK2] = ACTIONS(2471), - [anon_sym_TILDE] = ACTIONS(2469), - [anon_sym_CARET] = ACTIONS(2469), - [anon_sym_AMP] = ACTIONS(2471), - [anon_sym_LT_DASH] = ACTIONS(2469), - [anon_sym_LT_LT] = ACTIONS(2469), - [anon_sym_GT_GT] = ACTIONS(2471), - [anon_sym_GT_GT_GT] = ACTIONS(2469), - [anon_sym_AMP_CARET] = ACTIONS(2469), - [anon_sym_AMP_AMP] = ACTIONS(2469), - [anon_sym_PIPE_PIPE] = ACTIONS(2469), - [anon_sym_or] = ACTIONS(2471), - [sym_none] = ACTIONS(2471), - [sym_true] = ACTIONS(2471), - [sym_false] = ACTIONS(2471), - [sym_nil] = ACTIONS(2471), - [anon_sym_QMARK_DOT] = ACTIONS(2469), - [anon_sym_POUND_LBRACK] = ACTIONS(2469), - [anon_sym_if] = ACTIONS(2471), - [anon_sym_DOLLARif] = ACTIONS(2471), - [anon_sym_is] = ACTIONS(2471), - [anon_sym_BANGis] = ACTIONS(2469), - [anon_sym_in] = ACTIONS(2471), - [anon_sym_BANGin] = ACTIONS(2469), - [anon_sym_match] = ACTIONS(2471), - [anon_sym_select] = ACTIONS(2471), - [anon_sym_lock] = ACTIONS(2471), - [anon_sym_rlock] = ACTIONS(2471), - [anon_sym_unsafe] = ACTIONS(2471), - [anon_sym_sql] = ACTIONS(2471), - [sym_int_literal] = ACTIONS(2471), - [sym_float_literal] = ACTIONS(2469), - [sym_rune_literal] = ACTIONS(2469), - [anon_sym_SQUOTE] = ACTIONS(2469), - [anon_sym_DQUOTE] = ACTIONS(2469), - [anon_sym_c_SQUOTE] = ACTIONS(2469), - [anon_sym_c_DQUOTE] = ACTIONS(2469), - [anon_sym_r_SQUOTE] = ACTIONS(2469), - [anon_sym_r_DQUOTE] = ACTIONS(2469), - [sym_pseudo_compile_time_identifier] = ACTIONS(2471), - [anon_sym_shared] = ACTIONS(2471), - [anon_sym_map_LBRACK] = ACTIONS(2469), - [anon_sym_chan] = ACTIONS(2471), - [anon_sym_thread] = ACTIONS(2471), - [anon_sym_atomic] = ACTIONS(2471), + [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_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_PIPE] = ACTIONS(2989), + [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), + [anon_sym_SQUOTE] = ACTIONS(2987), + [anon_sym_DQUOTE] = ACTIONS(2987), + [anon_sym_c_SQUOTE] = ACTIONS(2987), + [anon_sym_c_DQUOTE] = ACTIONS(2987), + [anon_sym_r_SQUOTE] = ACTIONS(2987), + [anon_sym_r_DQUOTE] = 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), }, - [1359] = { - [sym_line_comment] = STATE(1359), - [sym_block_comment] = STATE(1359), - [sym_identifier] = ACTIONS(2185), + [1332] = { + [sym_line_comment] = STATE(1332), + [sym_block_comment] = STATE(1332), + [sym_identifier] = ACTIONS(2969), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_COMMA] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_PIPE] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(2183), - [anon_sym_SLASH] = ACTIONS(2185), - [anon_sym_PERCENT] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2185), - [anon_sym_GT] = ACTIONS(2185), - [anon_sym_EQ_EQ] = ACTIONS(2183), - [anon_sym_BANG_EQ] = ACTIONS(2183), - [anon_sym_LT_EQ] = ACTIONS(2183), - [anon_sym_GT_EQ] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2183), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_mut] = ACTIONS(2185), - [anon_sym_COLON] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2183), - [anon_sym_QMARK] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_go] = ACTIONS(2185), - [anon_sym_spawn] = ACTIONS(2185), - [anon_sym_json_DOTdecode] = ACTIONS(2183), - [anon_sym_LBRACK2] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_CARET] = ACTIONS(2183), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_LT_DASH] = ACTIONS(2183), - [anon_sym_LT_LT] = ACTIONS(2183), - [anon_sym_GT_GT] = ACTIONS(2185), - [anon_sym_GT_GT_GT] = ACTIONS(2183), - [anon_sym_AMP_CARET] = ACTIONS(2183), - [anon_sym_AMP_AMP] = ACTIONS(2183), - [anon_sym_PIPE_PIPE] = ACTIONS(2183), - [anon_sym_or] = ACTIONS(2185), - [sym_none] = ACTIONS(2185), - [sym_true] = ACTIONS(2185), - [sym_false] = ACTIONS(2185), - [sym_nil] = ACTIONS(2185), - [anon_sym_QMARK_DOT] = ACTIONS(2183), - [anon_sym_POUND_LBRACK] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_DOLLARif] = ACTIONS(2185), - [anon_sym_is] = ACTIONS(2185), - [anon_sym_BANGis] = ACTIONS(2183), - [anon_sym_in] = ACTIONS(2185), - [anon_sym_BANGin] = ACTIONS(2183), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_select] = ACTIONS(2185), - [anon_sym_lock] = ACTIONS(2185), - [anon_sym_rlock] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_sql] = ACTIONS(2185), - [sym_int_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2183), - [sym_rune_literal] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [anon_sym_c_SQUOTE] = ACTIONS(2183), - [anon_sym_c_DQUOTE] = ACTIONS(2183), - [anon_sym_r_SQUOTE] = ACTIONS(2183), - [anon_sym_r_DQUOTE] = ACTIONS(2183), - [sym_pseudo_compile_time_identifier] = ACTIONS(2185), - [anon_sym_shared] = ACTIONS(2185), - [anon_sym_map_LBRACK] = ACTIONS(2183), - [anon_sym_chan] = ACTIONS(2185), - [anon_sym_thread] = ACTIONS(2185), - [anon_sym_atomic] = ACTIONS(2185), + [anon_sym_DOT] = ACTIONS(2969), + [anon_sym_as] = ACTIONS(2969), + [anon_sym_LBRACE] = ACTIONS(2967), + [anon_sym_COMMA] = ACTIONS(2967), + [anon_sym_RBRACE] = ACTIONS(2967), + [anon_sym_LPAREN] = ACTIONS(2967), + [anon_sym_fn] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(2967), + [anon_sym_SLASH] = ACTIONS(2969), + [anon_sym_PERCENT] = ACTIONS(2967), + [anon_sym_LT] = ACTIONS(2969), + [anon_sym_GT] = ACTIONS(2969), + [anon_sym_EQ_EQ] = ACTIONS(2967), + [anon_sym_BANG_EQ] = ACTIONS(2967), + [anon_sym_LT_EQ] = ACTIONS(2967), + [anon_sym_GT_EQ] = ACTIONS(2967), + [anon_sym_LBRACK] = ACTIONS(2967), + [anon_sym_RBRACK] = ACTIONS(2967), + [anon_sym_struct] = ACTIONS(2969), + [anon_sym_mut] = ACTIONS(2969), + [anon_sym_COLON] = ACTIONS(2967), + [anon_sym_PLUS_PLUS] = ACTIONS(2967), + [anon_sym_DASH_DASH] = ACTIONS(2967), + [anon_sym_QMARK] = ACTIONS(2969), + [anon_sym_BANG] = ACTIONS(2969), + [anon_sym_go] = ACTIONS(2969), + [anon_sym_spawn] = ACTIONS(2969), + [anon_sym_json_DOTdecode] = ACTIONS(2967), + [anon_sym_PIPE] = ACTIONS(2969), + [anon_sym_LBRACK2] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2967), + [anon_sym_CARET] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2969), + [anon_sym_LT_DASH] = ACTIONS(2967), + [anon_sym_LT_LT] = ACTIONS(2967), + [anon_sym_GT_GT] = ACTIONS(2969), + [anon_sym_GT_GT_GT] = ACTIONS(2967), + [anon_sym_AMP_CARET] = ACTIONS(2967), + [anon_sym_AMP_AMP] = ACTIONS(2967), + [anon_sym_PIPE_PIPE] = ACTIONS(2967), + [anon_sym_or] = ACTIONS(2969), + [sym_none] = ACTIONS(2969), + [sym_true] = ACTIONS(2969), + [sym_false] = ACTIONS(2969), + [sym_nil] = ACTIONS(2969), + [anon_sym_QMARK_DOT] = ACTIONS(2967), + [anon_sym_POUND_LBRACK] = ACTIONS(2967), + [anon_sym_if] = ACTIONS(2969), + [anon_sym_DOLLARif] = ACTIONS(2969), + [anon_sym_is] = ACTIONS(2969), + [anon_sym_BANGis] = ACTIONS(2967), + [anon_sym_in] = ACTIONS(2969), + [anon_sym_BANGin] = ACTIONS(2967), + [anon_sym_match] = ACTIONS(2969), + [anon_sym_select] = ACTIONS(2969), + [anon_sym_lock] = ACTIONS(2969), + [anon_sym_rlock] = ACTIONS(2969), + [anon_sym_unsafe] = ACTIONS(2969), + [anon_sym_sql] = ACTIONS(2969), + [sym_int_literal] = ACTIONS(2969), + [sym_float_literal] = ACTIONS(2967), + [sym_rune_literal] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2967), + [anon_sym_DQUOTE] = ACTIONS(2967), + [anon_sym_c_SQUOTE] = ACTIONS(2967), + [anon_sym_c_DQUOTE] = ACTIONS(2967), + [anon_sym_r_SQUOTE] = ACTIONS(2967), + [anon_sym_r_DQUOTE] = ACTIONS(2967), + [sym_pseudo_compile_time_identifier] = ACTIONS(2969), + [anon_sym_shared] = ACTIONS(2969), + [anon_sym_map_LBRACK] = ACTIONS(2967), + [anon_sym_chan] = ACTIONS(2969), + [anon_sym_thread] = ACTIONS(2969), + [anon_sym_atomic] = ACTIONS(2969), }, - [1360] = { - [sym_line_comment] = STATE(1360), - [sym_block_comment] = STATE(1360), - [sym_identifier] = ACTIONS(2181), + [1333] = { + [sym_line_comment] = STATE(1333), + [sym_block_comment] = STATE(1333), + [sym_identifier] = ACTIONS(2745), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2181), - [anon_sym_as] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_COMMA] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2179), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_PIPE] = ACTIONS(2181), - [anon_sym_fn] = ACTIONS(2181), - [anon_sym_PLUS] = ACTIONS(2181), - [anon_sym_DASH] = ACTIONS(2181), - [anon_sym_STAR] = ACTIONS(2179), - [anon_sym_SLASH] = ACTIONS(2181), - [anon_sym_PERCENT] = ACTIONS(2179), - [anon_sym_LT] = ACTIONS(2181), - [anon_sym_GT] = ACTIONS(2181), - [anon_sym_EQ_EQ] = ACTIONS(2179), - [anon_sym_BANG_EQ] = ACTIONS(2179), - [anon_sym_LT_EQ] = ACTIONS(2179), - [anon_sym_GT_EQ] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2179), - [anon_sym_RBRACK] = ACTIONS(2179), - [anon_sym_struct] = ACTIONS(2181), - [anon_sym_mut] = ACTIONS(2181), - [anon_sym_COLON] = ACTIONS(2179), - [anon_sym_PLUS_PLUS] = ACTIONS(2179), - [anon_sym_DASH_DASH] = ACTIONS(2179), - [anon_sym_QMARK] = ACTIONS(2181), - [anon_sym_BANG] = ACTIONS(2181), - [anon_sym_go] = ACTIONS(2181), - [anon_sym_spawn] = ACTIONS(2181), - [anon_sym_json_DOTdecode] = ACTIONS(2179), - [anon_sym_LBRACK2] = ACTIONS(2181), - [anon_sym_TILDE] = ACTIONS(2179), - [anon_sym_CARET] = ACTIONS(2179), - [anon_sym_AMP] = ACTIONS(2181), - [anon_sym_LT_DASH] = ACTIONS(2179), - [anon_sym_LT_LT] = ACTIONS(2179), - [anon_sym_GT_GT] = ACTIONS(2181), - [anon_sym_GT_GT_GT] = ACTIONS(2179), - [anon_sym_AMP_CARET] = ACTIONS(2179), - [anon_sym_AMP_AMP] = ACTIONS(2179), - [anon_sym_PIPE_PIPE] = ACTIONS(2179), - [anon_sym_or] = ACTIONS(2181), - [sym_none] = ACTIONS(2181), - [sym_true] = ACTIONS(2181), - [sym_false] = ACTIONS(2181), - [sym_nil] = ACTIONS(2181), - [anon_sym_QMARK_DOT] = ACTIONS(2179), - [anon_sym_POUND_LBRACK] = ACTIONS(2179), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_DOLLARif] = ACTIONS(2181), - [anon_sym_is] = ACTIONS(2181), - [anon_sym_BANGis] = ACTIONS(2179), - [anon_sym_in] = ACTIONS(2181), - [anon_sym_BANGin] = ACTIONS(2179), - [anon_sym_match] = ACTIONS(2181), - [anon_sym_select] = ACTIONS(2181), - [anon_sym_lock] = ACTIONS(2181), - [anon_sym_rlock] = ACTIONS(2181), - [anon_sym_unsafe] = ACTIONS(2181), - [anon_sym_sql] = ACTIONS(2181), - [sym_int_literal] = ACTIONS(2181), - [sym_float_literal] = ACTIONS(2179), - [sym_rune_literal] = ACTIONS(2179), - [anon_sym_SQUOTE] = ACTIONS(2179), - [anon_sym_DQUOTE] = ACTIONS(2179), - [anon_sym_c_SQUOTE] = ACTIONS(2179), - [anon_sym_c_DQUOTE] = ACTIONS(2179), - [anon_sym_r_SQUOTE] = ACTIONS(2179), - [anon_sym_r_DQUOTE] = ACTIONS(2179), - [sym_pseudo_compile_time_identifier] = ACTIONS(2181), - [anon_sym_shared] = ACTIONS(2181), - [anon_sym_map_LBRACK] = ACTIONS(2179), - [anon_sym_chan] = ACTIONS(2181), - [anon_sym_thread] = ACTIONS(2181), - [anon_sym_atomic] = ACTIONS(2181), + [anon_sym_DOT] = ACTIONS(2745), + [anon_sym_as] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_RBRACE] = ACTIONS(2743), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_SLASH] = ACTIONS(2745), + [anon_sym_PERCENT] = ACTIONS(2743), + [anon_sym_LT] = ACTIONS(2745), + [anon_sym_GT] = ACTIONS(2745), + [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(2743), + [anon_sym_RBRACK] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2745), + [anon_sym_mut] = ACTIONS(2745), + [anon_sym_COLON] = ACTIONS(2743), + [anon_sym_PLUS_PLUS] = ACTIONS(2743), + [anon_sym_DASH_DASH] = ACTIONS(2743), + [anon_sym_QMARK] = ACTIONS(2745), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_go] = ACTIONS(2745), + [anon_sym_spawn] = ACTIONS(2745), + [anon_sym_json_DOTdecode] = ACTIONS(2743), + [anon_sym_PIPE] = ACTIONS(2745), + [anon_sym_LBRACK2] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2743), + [anon_sym_CARET] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2745), + [anon_sym_LT_DASH] = ACTIONS(2743), + [anon_sym_LT_LT] = ACTIONS(2743), + [anon_sym_GT_GT] = ACTIONS(2745), + [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(2745), + [sym_none] = ACTIONS(2745), + [sym_true] = ACTIONS(2745), + [sym_false] = ACTIONS(2745), + [sym_nil] = ACTIONS(2745), + [anon_sym_QMARK_DOT] = ACTIONS(2743), + [anon_sym_POUND_LBRACK] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2745), + [anon_sym_DOLLARif] = ACTIONS(2745), + [anon_sym_is] = ACTIONS(2745), + [anon_sym_BANGis] = ACTIONS(2743), + [anon_sym_in] = ACTIONS(2745), + [anon_sym_BANGin] = ACTIONS(2743), + [anon_sym_match] = ACTIONS(2745), + [anon_sym_select] = ACTIONS(2745), + [anon_sym_lock] = ACTIONS(2745), + [anon_sym_rlock] = ACTIONS(2745), + [anon_sym_unsafe] = ACTIONS(2745), + [anon_sym_sql] = ACTIONS(2745), + [sym_int_literal] = ACTIONS(2745), + [sym_float_literal] = ACTIONS(2743), + [sym_rune_literal] = ACTIONS(2743), + [anon_sym_SQUOTE] = ACTIONS(2743), + [anon_sym_DQUOTE] = ACTIONS(2743), + [anon_sym_c_SQUOTE] = ACTIONS(2743), + [anon_sym_c_DQUOTE] = ACTIONS(2743), + [anon_sym_r_SQUOTE] = ACTIONS(2743), + [anon_sym_r_DQUOTE] = ACTIONS(2743), + [sym_pseudo_compile_time_identifier] = ACTIONS(2745), + [anon_sym_shared] = ACTIONS(2745), + [anon_sym_map_LBRACK] = ACTIONS(2743), + [anon_sym_chan] = ACTIONS(2745), + [anon_sym_thread] = ACTIONS(2745), + [anon_sym_atomic] = ACTIONS(2745), }, - [1361] = { - [sym_line_comment] = STATE(1361), - [sym_block_comment] = STATE(1361), - [sym_identifier] = ACTIONS(2115), + [1334] = { + [sym_line_comment] = STATE(1334), + [sym_block_comment] = STATE(1334), + [sym_identifier] = ACTIONS(2755), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2115), - [anon_sym_as] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(2113), - [anon_sym_COMMA] = ACTIONS(2113), - [anon_sym_RBRACE] = ACTIONS(2113), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_fn] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2113), - [anon_sym_SLASH] = ACTIONS(2115), - [anon_sym_PERCENT] = ACTIONS(2113), - [anon_sym_LT] = ACTIONS(2115), - [anon_sym_GT] = ACTIONS(2115), - [anon_sym_EQ_EQ] = ACTIONS(2113), - [anon_sym_BANG_EQ] = ACTIONS(2113), - [anon_sym_LT_EQ] = ACTIONS(2113), - [anon_sym_GT_EQ] = ACTIONS(2113), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_RBRACK] = ACTIONS(2113), - [anon_sym_struct] = ACTIONS(2115), - [anon_sym_mut] = ACTIONS(2115), - [anon_sym_COLON] = ACTIONS(2113), - [anon_sym_PLUS_PLUS] = ACTIONS(2113), - [anon_sym_DASH_DASH] = ACTIONS(2113), - [anon_sym_QMARK] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_go] = ACTIONS(2115), - [anon_sym_spawn] = ACTIONS(2115), - [anon_sym_json_DOTdecode] = ACTIONS(2113), - [anon_sym_LBRACK2] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2113), - [anon_sym_CARET] = ACTIONS(2113), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2113), - [anon_sym_LT_LT] = ACTIONS(2113), - [anon_sym_GT_GT] = ACTIONS(2115), - [anon_sym_GT_GT_GT] = ACTIONS(2113), - [anon_sym_AMP_CARET] = ACTIONS(2113), - [anon_sym_AMP_AMP] = ACTIONS(2113), - [anon_sym_PIPE_PIPE] = ACTIONS(2113), - [anon_sym_or] = ACTIONS(2115), - [sym_none] = ACTIONS(2115), - [sym_true] = ACTIONS(2115), - [sym_false] = ACTIONS(2115), - [sym_nil] = ACTIONS(2115), - [anon_sym_QMARK_DOT] = ACTIONS(2113), - [anon_sym_POUND_LBRACK] = ACTIONS(2113), - [anon_sym_if] = ACTIONS(2115), - [anon_sym_DOLLARif] = ACTIONS(2115), - [anon_sym_is] = ACTIONS(2115), - [anon_sym_BANGis] = ACTIONS(2113), - [anon_sym_in] = ACTIONS(2115), - [anon_sym_BANGin] = ACTIONS(2113), - [anon_sym_match] = ACTIONS(2115), - [anon_sym_select] = ACTIONS(2115), - [anon_sym_lock] = ACTIONS(2115), - [anon_sym_rlock] = ACTIONS(2115), - [anon_sym_unsafe] = ACTIONS(2115), - [anon_sym_sql] = ACTIONS(2115), - [sym_int_literal] = ACTIONS(2115), - [sym_float_literal] = ACTIONS(2113), - [sym_rune_literal] = ACTIONS(2113), - [anon_sym_SQUOTE] = ACTIONS(2113), - [anon_sym_DQUOTE] = ACTIONS(2113), - [anon_sym_c_SQUOTE] = ACTIONS(2113), - [anon_sym_c_DQUOTE] = ACTIONS(2113), - [anon_sym_r_SQUOTE] = ACTIONS(2113), - [anon_sym_r_DQUOTE] = ACTIONS(2113), - [sym_pseudo_compile_time_identifier] = ACTIONS(2115), - [anon_sym_shared] = ACTIONS(2115), - [anon_sym_map_LBRACK] = ACTIONS(2113), - [anon_sym_chan] = ACTIONS(2115), - [anon_sym_thread] = ACTIONS(2115), - [anon_sym_atomic] = ACTIONS(2115), + [anon_sym_DOT] = ACTIONS(2755), + [anon_sym_as] = ACTIONS(2755), + [anon_sym_LBRACE] = ACTIONS(2753), + [anon_sym_COMMA] = ACTIONS(2753), + [anon_sym_RBRACE] = ACTIONS(2753), + [anon_sym_LPAREN] = ACTIONS(2753), + [anon_sym_fn] = ACTIONS(2755), + [anon_sym_PLUS] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_STAR] = ACTIONS(2753), + [anon_sym_SLASH] = ACTIONS(2755), + [anon_sym_PERCENT] = ACTIONS(2753), + [anon_sym_LT] = ACTIONS(2755), + [anon_sym_GT] = ACTIONS(2755), + [anon_sym_EQ_EQ] = ACTIONS(2753), + [anon_sym_BANG_EQ] = ACTIONS(2753), + [anon_sym_LT_EQ] = ACTIONS(2753), + [anon_sym_GT_EQ] = ACTIONS(2753), + [anon_sym_LBRACK] = ACTIONS(2753), + [anon_sym_RBRACK] = ACTIONS(2753), + [anon_sym_struct] = ACTIONS(2755), + [anon_sym_mut] = ACTIONS(2755), + [anon_sym_COLON] = ACTIONS(2753), + [anon_sym_PLUS_PLUS] = ACTIONS(2753), + [anon_sym_DASH_DASH] = ACTIONS(2753), + [anon_sym_QMARK] = ACTIONS(2755), + [anon_sym_BANG] = ACTIONS(2755), + [anon_sym_go] = ACTIONS(2755), + [anon_sym_spawn] = ACTIONS(2755), + [anon_sym_json_DOTdecode] = ACTIONS(2753), + [anon_sym_PIPE] = ACTIONS(2755), + [anon_sym_LBRACK2] = ACTIONS(2755), + [anon_sym_TILDE] = ACTIONS(2753), + [anon_sym_CARET] = ACTIONS(2753), + [anon_sym_AMP] = ACTIONS(2755), + [anon_sym_LT_DASH] = ACTIONS(2753), + [anon_sym_LT_LT] = ACTIONS(2753), + [anon_sym_GT_GT] = ACTIONS(2755), + [anon_sym_GT_GT_GT] = ACTIONS(2753), + [anon_sym_AMP_CARET] = ACTIONS(2753), + [anon_sym_AMP_AMP] = ACTIONS(2753), + [anon_sym_PIPE_PIPE] = ACTIONS(2753), + [anon_sym_or] = ACTIONS(2755), + [sym_none] = ACTIONS(2755), + [sym_true] = ACTIONS(2755), + [sym_false] = ACTIONS(2755), + [sym_nil] = ACTIONS(2755), + [anon_sym_QMARK_DOT] = ACTIONS(2753), + [anon_sym_POUND_LBRACK] = ACTIONS(2753), + [anon_sym_if] = ACTIONS(2755), + [anon_sym_DOLLARif] = ACTIONS(2755), + [anon_sym_is] = ACTIONS(2755), + [anon_sym_BANGis] = ACTIONS(2753), + [anon_sym_in] = ACTIONS(2755), + [anon_sym_BANGin] = ACTIONS(2753), + [anon_sym_match] = ACTIONS(2755), + [anon_sym_select] = ACTIONS(2755), + [anon_sym_lock] = ACTIONS(2755), + [anon_sym_rlock] = ACTIONS(2755), + [anon_sym_unsafe] = ACTIONS(2755), + [anon_sym_sql] = ACTIONS(2755), + [sym_int_literal] = ACTIONS(2755), + [sym_float_literal] = ACTIONS(2753), + [sym_rune_literal] = ACTIONS(2753), + [anon_sym_SQUOTE] = ACTIONS(2753), + [anon_sym_DQUOTE] = ACTIONS(2753), + [anon_sym_c_SQUOTE] = ACTIONS(2753), + [anon_sym_c_DQUOTE] = ACTIONS(2753), + [anon_sym_r_SQUOTE] = ACTIONS(2753), + [anon_sym_r_DQUOTE] = ACTIONS(2753), + [sym_pseudo_compile_time_identifier] = ACTIONS(2755), + [anon_sym_shared] = ACTIONS(2755), + [anon_sym_map_LBRACK] = ACTIONS(2753), + [anon_sym_chan] = ACTIONS(2755), + [anon_sym_thread] = ACTIONS(2755), + [anon_sym_atomic] = ACTIONS(2755), }, - [1362] = { - [sym_line_comment] = STATE(1362), - [sym_block_comment] = STATE(1362), - [sym_identifier] = ACTIONS(2151), + [1335] = { + [sym_line_comment] = STATE(1335), + [sym_block_comment] = STATE(1335), + [sym_identifier] = ACTIONS(2379), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2151), - [anon_sym_as] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_COMMA] = ACTIONS(2149), - [anon_sym_RBRACE] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_PIPE] = ACTIONS(2151), - [anon_sym_fn] = ACTIONS(2151), - [anon_sym_PLUS] = ACTIONS(2151), - [anon_sym_DASH] = ACTIONS(2151), - [anon_sym_STAR] = ACTIONS(2149), - [anon_sym_SLASH] = ACTIONS(2151), - [anon_sym_PERCENT] = ACTIONS(2149), - [anon_sym_LT] = ACTIONS(2151), - [anon_sym_GT] = ACTIONS(2151), - [anon_sym_EQ_EQ] = ACTIONS(2149), - [anon_sym_BANG_EQ] = ACTIONS(2149), - [anon_sym_LT_EQ] = ACTIONS(2149), - [anon_sym_GT_EQ] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_RBRACK] = ACTIONS(2149), - [anon_sym_struct] = ACTIONS(2151), - [anon_sym_mut] = ACTIONS(2151), - [anon_sym_COLON] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_QMARK] = ACTIONS(2151), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_go] = ACTIONS(2151), - [anon_sym_spawn] = ACTIONS(2151), - [anon_sym_json_DOTdecode] = ACTIONS(2149), - [anon_sym_LBRACK2] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_LT_DASH] = ACTIONS(2149), - [anon_sym_LT_LT] = ACTIONS(2149), - [anon_sym_GT_GT] = ACTIONS(2151), - [anon_sym_GT_GT_GT] = ACTIONS(2149), - [anon_sym_AMP_CARET] = ACTIONS(2149), - [anon_sym_AMP_AMP] = ACTIONS(2149), - [anon_sym_PIPE_PIPE] = ACTIONS(2149), - [anon_sym_or] = ACTIONS(2151), - [sym_none] = ACTIONS(2151), - [sym_true] = ACTIONS(2151), - [sym_false] = ACTIONS(2151), - [sym_nil] = ACTIONS(2151), - [anon_sym_QMARK_DOT] = ACTIONS(2149), - [anon_sym_POUND_LBRACK] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_DOLLARif] = ACTIONS(2151), - [anon_sym_is] = ACTIONS(2151), - [anon_sym_BANGis] = ACTIONS(2149), - [anon_sym_in] = ACTIONS(2151), - [anon_sym_BANGin] = ACTIONS(2149), - [anon_sym_match] = ACTIONS(2151), - [anon_sym_select] = ACTIONS(2151), - [anon_sym_lock] = ACTIONS(2151), - [anon_sym_rlock] = ACTIONS(2151), - [anon_sym_unsafe] = ACTIONS(2151), - [anon_sym_sql] = ACTIONS(2151), - [sym_int_literal] = ACTIONS(2151), - [sym_float_literal] = ACTIONS(2149), - [sym_rune_literal] = ACTIONS(2149), - [anon_sym_SQUOTE] = ACTIONS(2149), - [anon_sym_DQUOTE] = ACTIONS(2149), - [anon_sym_c_SQUOTE] = ACTIONS(2149), - [anon_sym_c_DQUOTE] = ACTIONS(2149), - [anon_sym_r_SQUOTE] = ACTIONS(2149), - [anon_sym_r_DQUOTE] = ACTIONS(2149), - [sym_pseudo_compile_time_identifier] = ACTIONS(2151), - [anon_sym_shared] = ACTIONS(2151), - [anon_sym_map_LBRACK] = ACTIONS(2149), - [anon_sym_chan] = ACTIONS(2151), - [anon_sym_thread] = ACTIONS(2151), - [anon_sym_atomic] = ACTIONS(2151), + [anon_sym_DOT] = ACTIONS(2379), + [anon_sym_as] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2377), + [anon_sym_COMMA] = ACTIONS(2377), + [anon_sym_RBRACE] = ACTIONS(2377), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_fn] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_STAR] = ACTIONS(2377), + [anon_sym_SLASH] = ACTIONS(2379), + [anon_sym_PERCENT] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2379), + [anon_sym_GT] = ACTIONS(2379), + [anon_sym_EQ_EQ] = ACTIONS(2377), + [anon_sym_BANG_EQ] = ACTIONS(2377), + [anon_sym_LT_EQ] = ACTIONS(2377), + [anon_sym_GT_EQ] = ACTIONS(2377), + [anon_sym_LBRACK] = ACTIONS(2377), + [anon_sym_RBRACK] = ACTIONS(2377), + [anon_sym_struct] = ACTIONS(2379), + [anon_sym_mut] = ACTIONS(2379), + [anon_sym_COLON] = ACTIONS(2377), + [anon_sym_PLUS_PLUS] = ACTIONS(2377), + [anon_sym_DASH_DASH] = ACTIONS(2377), + [anon_sym_QMARK] = ACTIONS(2379), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_go] = ACTIONS(2379), + [anon_sym_spawn] = ACTIONS(2379), + [anon_sym_json_DOTdecode] = ACTIONS(2377), + [anon_sym_PIPE] = ACTIONS(2379), + [anon_sym_LBRACK2] = ACTIONS(2379), + [anon_sym_TILDE] = ACTIONS(2377), + [anon_sym_CARET] = ACTIONS(2377), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_LT_DASH] = ACTIONS(2377), + [anon_sym_LT_LT] = ACTIONS(2377), + [anon_sym_GT_GT] = ACTIONS(2379), + [anon_sym_GT_GT_GT] = ACTIONS(2377), + [anon_sym_AMP_CARET] = ACTIONS(2377), + [anon_sym_AMP_AMP] = ACTIONS(2377), + [anon_sym_PIPE_PIPE] = ACTIONS(2377), + [anon_sym_or] = ACTIONS(2379), + [sym_none] = ACTIONS(2379), + [sym_true] = ACTIONS(2379), + [sym_false] = ACTIONS(2379), + [sym_nil] = ACTIONS(2379), + [anon_sym_QMARK_DOT] = ACTIONS(2377), + [anon_sym_POUND_LBRACK] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_DOLLARif] = ACTIONS(2379), + [anon_sym_is] = ACTIONS(2379), + [anon_sym_BANGis] = ACTIONS(2377), + [anon_sym_in] = ACTIONS(2379), + [anon_sym_BANGin] = ACTIONS(2377), + [anon_sym_match] = ACTIONS(2379), + [anon_sym_select] = ACTIONS(2379), + [anon_sym_lock] = ACTIONS(2379), + [anon_sym_rlock] = ACTIONS(2379), + [anon_sym_unsafe] = ACTIONS(2379), + [anon_sym_sql] = ACTIONS(2379), + [sym_int_literal] = ACTIONS(2379), + [sym_float_literal] = ACTIONS(2377), + [sym_rune_literal] = ACTIONS(2377), + [anon_sym_SQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [anon_sym_c_SQUOTE] = ACTIONS(2377), + [anon_sym_c_DQUOTE] = ACTIONS(2377), + [anon_sym_r_SQUOTE] = ACTIONS(2377), + [anon_sym_r_DQUOTE] = ACTIONS(2377), + [sym_pseudo_compile_time_identifier] = ACTIONS(2379), + [anon_sym_shared] = ACTIONS(2379), + [anon_sym_map_LBRACK] = ACTIONS(2377), + [anon_sym_chan] = ACTIONS(2379), + [anon_sym_thread] = ACTIONS(2379), + [anon_sym_atomic] = ACTIONS(2379), }, - [1363] = { - [sym_line_comment] = STATE(1363), - [sym_block_comment] = STATE(1363), - [sym_identifier] = ACTIONS(2147), + [1336] = { + [sym_line_comment] = STATE(1336), + [sym_block_comment] = STATE(1336), + [sym_identifier] = ACTIONS(2395), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2147), - [anon_sym_as] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_COMMA] = ACTIONS(2145), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2145), - [anon_sym_PIPE] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(2147), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2145), - [anon_sym_SLASH] = ACTIONS(2147), - [anon_sym_PERCENT] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2147), - [anon_sym_GT] = ACTIONS(2147), - [anon_sym_EQ_EQ] = ACTIONS(2145), - [anon_sym_BANG_EQ] = ACTIONS(2145), - [anon_sym_LT_EQ] = ACTIONS(2145), - [anon_sym_GT_EQ] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_RBRACK] = ACTIONS(2145), - [anon_sym_struct] = ACTIONS(2147), - [anon_sym_mut] = ACTIONS(2147), - [anon_sym_COLON] = ACTIONS(2145), - [anon_sym_PLUS_PLUS] = ACTIONS(2145), - [anon_sym_DASH_DASH] = ACTIONS(2145), - [anon_sym_QMARK] = ACTIONS(2147), - [anon_sym_BANG] = ACTIONS(2147), - [anon_sym_go] = ACTIONS(2147), - [anon_sym_spawn] = ACTIONS(2147), - [anon_sym_json_DOTdecode] = ACTIONS(2145), - [anon_sym_LBRACK2] = ACTIONS(2147), - [anon_sym_TILDE] = ACTIONS(2145), - [anon_sym_CARET] = ACTIONS(2145), - [anon_sym_AMP] = ACTIONS(2147), - [anon_sym_LT_DASH] = ACTIONS(2145), - [anon_sym_LT_LT] = ACTIONS(2145), - [anon_sym_GT_GT] = ACTIONS(2147), - [anon_sym_GT_GT_GT] = ACTIONS(2145), - [anon_sym_AMP_CARET] = ACTIONS(2145), - [anon_sym_AMP_AMP] = ACTIONS(2145), - [anon_sym_PIPE_PIPE] = ACTIONS(2145), - [anon_sym_or] = ACTIONS(2147), - [sym_none] = ACTIONS(2147), - [sym_true] = ACTIONS(2147), - [sym_false] = ACTIONS(2147), - [sym_nil] = ACTIONS(2147), - [anon_sym_QMARK_DOT] = ACTIONS(2145), - [anon_sym_POUND_LBRACK] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_DOLLARif] = ACTIONS(2147), - [anon_sym_is] = ACTIONS(2147), - [anon_sym_BANGis] = ACTIONS(2145), - [anon_sym_in] = ACTIONS(2147), - [anon_sym_BANGin] = ACTIONS(2145), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_select] = ACTIONS(2147), - [anon_sym_lock] = ACTIONS(2147), - [anon_sym_rlock] = ACTIONS(2147), - [anon_sym_unsafe] = ACTIONS(2147), - [anon_sym_sql] = ACTIONS(2147), - [sym_int_literal] = ACTIONS(2147), - [sym_float_literal] = ACTIONS(2145), - [sym_rune_literal] = ACTIONS(2145), - [anon_sym_SQUOTE] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2145), - [anon_sym_c_SQUOTE] = ACTIONS(2145), - [anon_sym_c_DQUOTE] = ACTIONS(2145), - [anon_sym_r_SQUOTE] = ACTIONS(2145), - [anon_sym_r_DQUOTE] = ACTIONS(2145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2147), - [anon_sym_shared] = ACTIONS(2147), - [anon_sym_map_LBRACK] = ACTIONS(2145), - [anon_sym_chan] = ACTIONS(2147), - [anon_sym_thread] = ACTIONS(2147), - [anon_sym_atomic] = ACTIONS(2147), + [anon_sym_DOT] = ACTIONS(2395), + [anon_sym_as] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2393), + [anon_sym_COMMA] = ACTIONS(2393), + [anon_sym_RBRACE] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_fn] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2393), + [anon_sym_SLASH] = ACTIONS(2395), + [anon_sym_PERCENT] = ACTIONS(2393), + [anon_sym_LT] = ACTIONS(2395), + [anon_sym_GT] = ACTIONS(2395), + [anon_sym_EQ_EQ] = ACTIONS(2393), + [anon_sym_BANG_EQ] = ACTIONS(2393), + [anon_sym_LT_EQ] = ACTIONS(2393), + [anon_sym_GT_EQ] = ACTIONS(2393), + [anon_sym_LBRACK] = ACTIONS(2393), + [anon_sym_RBRACK] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_mut] = ACTIONS(2395), + [anon_sym_COLON] = ACTIONS(2393), + [anon_sym_PLUS_PLUS] = ACTIONS(2393), + [anon_sym_DASH_DASH] = ACTIONS(2393), + [anon_sym_QMARK] = ACTIONS(2395), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_go] = ACTIONS(2395), + [anon_sym_spawn] = ACTIONS(2395), + [anon_sym_json_DOTdecode] = ACTIONS(2393), + [anon_sym_PIPE] = ACTIONS(2395), + [anon_sym_LBRACK2] = ACTIONS(2395), + [anon_sym_TILDE] = ACTIONS(2393), + [anon_sym_CARET] = ACTIONS(2393), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_LT_DASH] = ACTIONS(2393), + [anon_sym_LT_LT] = ACTIONS(2393), + [anon_sym_GT_GT] = ACTIONS(2395), + [anon_sym_GT_GT_GT] = ACTIONS(2393), + [anon_sym_AMP_CARET] = ACTIONS(2393), + [anon_sym_AMP_AMP] = ACTIONS(2393), + [anon_sym_PIPE_PIPE] = ACTIONS(2393), + [anon_sym_or] = ACTIONS(2395), + [sym_none] = ACTIONS(2395), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_nil] = ACTIONS(2395), + [anon_sym_QMARK_DOT] = ACTIONS(2393), + [anon_sym_POUND_LBRACK] = ACTIONS(2393), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_DOLLARif] = ACTIONS(2395), + [anon_sym_is] = ACTIONS(2395), + [anon_sym_BANGis] = ACTIONS(2393), + [anon_sym_in] = ACTIONS(2395), + [anon_sym_BANGin] = ACTIONS(2393), + [anon_sym_match] = ACTIONS(2395), + [anon_sym_select] = ACTIONS(2395), + [anon_sym_lock] = ACTIONS(2395), + [anon_sym_rlock] = ACTIONS(2395), + [anon_sym_unsafe] = ACTIONS(2395), + [anon_sym_sql] = ACTIONS(2395), + [sym_int_literal] = ACTIONS(2395), + [sym_float_literal] = ACTIONS(2393), + [sym_rune_literal] = ACTIONS(2393), + [anon_sym_SQUOTE] = ACTIONS(2393), + [anon_sym_DQUOTE] = ACTIONS(2393), + [anon_sym_c_SQUOTE] = ACTIONS(2393), + [anon_sym_c_DQUOTE] = ACTIONS(2393), + [anon_sym_r_SQUOTE] = ACTIONS(2393), + [anon_sym_r_DQUOTE] = ACTIONS(2393), + [sym_pseudo_compile_time_identifier] = ACTIONS(2395), + [anon_sym_shared] = ACTIONS(2395), + [anon_sym_map_LBRACK] = ACTIONS(2393), + [anon_sym_chan] = ACTIONS(2395), + [anon_sym_thread] = ACTIONS(2395), + [anon_sym_atomic] = ACTIONS(2395), }, - [1364] = { - [sym_line_comment] = STATE(1364), - [sym_block_comment] = STATE(1364), - [sym_identifier] = ACTIONS(2457), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [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_SLASH] = ACTIONS(2457), - [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_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), - [anon_sym_SQUOTE] = ACTIONS(2455), - [anon_sym_DQUOTE] = ACTIONS(2455), - [anon_sym_c_SQUOTE] = ACTIONS(2455), - [anon_sym_c_DQUOTE] = ACTIONS(2455), - [anon_sym_r_SQUOTE] = ACTIONS(2455), - [anon_sym_r_DQUOTE] = 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), + [1337] = { + [sym_line_comment] = STATE(1337), + [sym_block_comment] = STATE(1337), + [sym_identifier] = ACTIONS(2977), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2977), + [anon_sym_as] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2975), + [anon_sym_COMMA] = ACTIONS(2975), + [anon_sym_RBRACE] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(2975), + [anon_sym_fn] = ACTIONS(2977), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2975), + [anon_sym_SLASH] = ACTIONS(2977), + [anon_sym_PERCENT] = ACTIONS(2975), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_GT] = ACTIONS(2977), + [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(2975), + [anon_sym_RBRACK] = ACTIONS(2975), + [anon_sym_struct] = ACTIONS(2977), + [anon_sym_mut] = ACTIONS(2977), + [anon_sym_COLON] = ACTIONS(2975), + [anon_sym_PLUS_PLUS] = ACTIONS(2975), + [anon_sym_DASH_DASH] = ACTIONS(2975), + [anon_sym_QMARK] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_go] = ACTIONS(2977), + [anon_sym_spawn] = ACTIONS(2977), + [anon_sym_json_DOTdecode] = ACTIONS(2975), + [anon_sym_PIPE] = ACTIONS(2977), + [anon_sym_LBRACK2] = ACTIONS(2977), + [anon_sym_TILDE] = ACTIONS(2975), + [anon_sym_CARET] = ACTIONS(2975), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_LT_DASH] = ACTIONS(2975), + [anon_sym_LT_LT] = ACTIONS(2975), + [anon_sym_GT_GT] = ACTIONS(2977), + [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(2977), + [sym_none] = ACTIONS(2977), + [sym_true] = ACTIONS(2977), + [sym_false] = ACTIONS(2977), + [sym_nil] = ACTIONS(2977), + [anon_sym_QMARK_DOT] = ACTIONS(2975), + [anon_sym_POUND_LBRACK] = ACTIONS(2975), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_DOLLARif] = ACTIONS(2977), + [anon_sym_is] = ACTIONS(2977), + [anon_sym_BANGis] = ACTIONS(2975), + [anon_sym_in] = ACTIONS(2977), + [anon_sym_BANGin] = ACTIONS(2975), + [anon_sym_match] = ACTIONS(2977), + [anon_sym_select] = ACTIONS(2977), + [anon_sym_lock] = ACTIONS(2977), + [anon_sym_rlock] = ACTIONS(2977), + [anon_sym_unsafe] = ACTIONS(2977), + [anon_sym_sql] = ACTIONS(2977), + [sym_int_literal] = ACTIONS(2977), + [sym_float_literal] = ACTIONS(2975), + [sym_rune_literal] = ACTIONS(2975), + [anon_sym_SQUOTE] = ACTIONS(2975), + [anon_sym_DQUOTE] = ACTIONS(2975), + [anon_sym_c_SQUOTE] = ACTIONS(2975), + [anon_sym_c_DQUOTE] = ACTIONS(2975), + [anon_sym_r_SQUOTE] = ACTIONS(2975), + [anon_sym_r_DQUOTE] = ACTIONS(2975), + [sym_pseudo_compile_time_identifier] = ACTIONS(2977), + [anon_sym_shared] = ACTIONS(2977), + [anon_sym_map_LBRACK] = ACTIONS(2975), + [anon_sym_chan] = ACTIONS(2977), + [anon_sym_thread] = ACTIONS(2977), + [anon_sym_atomic] = ACTIONS(2977), }, - [1365] = { - [sym_line_comment] = STATE(1365), - [sym_block_comment] = STATE(1365), - [sym_identifier] = ACTIONS(2029), + [1338] = { + [sym_line_comment] = STATE(1338), + [sym_block_comment] = STATE(1338), + [sym_identifier] = ACTIONS(2973), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2029), - [anon_sym_as] = ACTIONS(2029), - [anon_sym_LBRACE] = ACTIONS(2031), - [anon_sym_COMMA] = ACTIONS(2031), - [anon_sym_RBRACE] = ACTIONS(2031), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_PIPE] = ACTIONS(2029), - [anon_sym_fn] = ACTIONS(2029), - [anon_sym_PLUS] = ACTIONS(2029), - [anon_sym_DASH] = ACTIONS(2029), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_SLASH] = ACTIONS(2029), - [anon_sym_PERCENT] = ACTIONS(2031), - [anon_sym_LT] = ACTIONS(2029), - [anon_sym_GT] = ACTIONS(2029), - [anon_sym_EQ_EQ] = ACTIONS(2031), - [anon_sym_BANG_EQ] = ACTIONS(2031), - [anon_sym_LT_EQ] = ACTIONS(2031), - [anon_sym_GT_EQ] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2031), - [anon_sym_RBRACK] = ACTIONS(2031), - [anon_sym_struct] = ACTIONS(2029), - [anon_sym_mut] = ACTIONS(2029), - [anon_sym_COLON] = ACTIONS(2031), - [anon_sym_PLUS_PLUS] = ACTIONS(2031), - [anon_sym_DASH_DASH] = ACTIONS(2031), - [anon_sym_QMARK] = ACTIONS(2029), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_go] = ACTIONS(2029), - [anon_sym_spawn] = ACTIONS(2029), - [anon_sym_json_DOTdecode] = ACTIONS(2031), - [anon_sym_LBRACK2] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(2031), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_LT_DASH] = ACTIONS(2031), - [anon_sym_LT_LT] = ACTIONS(2031), - [anon_sym_GT_GT] = ACTIONS(2029), - [anon_sym_GT_GT_GT] = ACTIONS(2031), - [anon_sym_AMP_CARET] = ACTIONS(2031), - [anon_sym_AMP_AMP] = ACTIONS(2031), - [anon_sym_PIPE_PIPE] = ACTIONS(2031), - [anon_sym_or] = ACTIONS(2029), - [sym_none] = ACTIONS(2029), - [sym_true] = ACTIONS(2029), - [sym_false] = ACTIONS(2029), - [sym_nil] = ACTIONS(2029), - [anon_sym_QMARK_DOT] = ACTIONS(2031), - [anon_sym_POUND_LBRACK] = ACTIONS(2031), - [anon_sym_if] = ACTIONS(2029), - [anon_sym_DOLLARif] = ACTIONS(2029), - [anon_sym_is] = ACTIONS(2029), - [anon_sym_BANGis] = ACTIONS(2031), - [anon_sym_in] = ACTIONS(2029), - [anon_sym_BANGin] = ACTIONS(2031), - [anon_sym_match] = ACTIONS(2029), - [anon_sym_select] = ACTIONS(2029), - [anon_sym_lock] = ACTIONS(2029), - [anon_sym_rlock] = ACTIONS(2029), - [anon_sym_unsafe] = ACTIONS(2029), - [anon_sym_sql] = ACTIONS(2029), - [sym_int_literal] = ACTIONS(2029), - [sym_float_literal] = ACTIONS(2031), - [sym_rune_literal] = ACTIONS(2031), - [anon_sym_SQUOTE] = ACTIONS(2031), - [anon_sym_DQUOTE] = ACTIONS(2031), - [anon_sym_c_SQUOTE] = ACTIONS(2031), - [anon_sym_c_DQUOTE] = ACTIONS(2031), - [anon_sym_r_SQUOTE] = ACTIONS(2031), - [anon_sym_r_DQUOTE] = ACTIONS(2031), - [sym_pseudo_compile_time_identifier] = ACTIONS(2029), - [anon_sym_shared] = ACTIONS(2029), - [anon_sym_map_LBRACK] = ACTIONS(2031), - [anon_sym_chan] = ACTIONS(2029), - [anon_sym_thread] = ACTIONS(2029), - [anon_sym_atomic] = ACTIONS(2029), + [anon_sym_DOT] = ACTIONS(2973), + [anon_sym_as] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_COMMA] = ACTIONS(2971), + [anon_sym_RBRACE] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_fn] = ACTIONS(2973), + [anon_sym_PLUS] = ACTIONS(2973), + [anon_sym_DASH] = ACTIONS(2973), + [anon_sym_STAR] = ACTIONS(2971), + [anon_sym_SLASH] = ACTIONS(2973), + [anon_sym_PERCENT] = ACTIONS(2971), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_GT] = ACTIONS(2973), + [anon_sym_EQ_EQ] = ACTIONS(2971), + [anon_sym_BANG_EQ] = ACTIONS(2971), + [anon_sym_LT_EQ] = ACTIONS(2971), + [anon_sym_GT_EQ] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(2971), + [anon_sym_RBRACK] = ACTIONS(2971), + [anon_sym_struct] = ACTIONS(2973), + [anon_sym_mut] = ACTIONS(2973), + [anon_sym_COLON] = ACTIONS(2971), + [anon_sym_PLUS_PLUS] = ACTIONS(2971), + [anon_sym_DASH_DASH] = ACTIONS(2971), + [anon_sym_QMARK] = ACTIONS(2973), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_go] = ACTIONS(2973), + [anon_sym_spawn] = ACTIONS(2973), + [anon_sym_json_DOTdecode] = ACTIONS(2971), + [anon_sym_PIPE] = ACTIONS(2973), + [anon_sym_LBRACK2] = ACTIONS(2973), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_CARET] = ACTIONS(2971), + [anon_sym_AMP] = ACTIONS(2973), + [anon_sym_LT_DASH] = ACTIONS(2971), + [anon_sym_LT_LT] = ACTIONS(2971), + [anon_sym_GT_GT] = ACTIONS(2973), + [anon_sym_GT_GT_GT] = ACTIONS(2971), + [anon_sym_AMP_CARET] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [anon_sym_or] = ACTIONS(2973), + [sym_none] = ACTIONS(2973), + [sym_true] = ACTIONS(2973), + [sym_false] = ACTIONS(2973), + [sym_nil] = ACTIONS(2973), + [anon_sym_QMARK_DOT] = ACTIONS(2971), + [anon_sym_POUND_LBRACK] = ACTIONS(2971), + [anon_sym_if] = ACTIONS(2973), + [anon_sym_DOLLARif] = ACTIONS(2973), + [anon_sym_is] = ACTIONS(2973), + [anon_sym_BANGis] = ACTIONS(2971), + [anon_sym_in] = ACTIONS(2973), + [anon_sym_BANGin] = ACTIONS(2971), + [anon_sym_match] = ACTIONS(2973), + [anon_sym_select] = ACTIONS(2973), + [anon_sym_lock] = ACTIONS(2973), + [anon_sym_rlock] = ACTIONS(2973), + [anon_sym_unsafe] = ACTIONS(2973), + [anon_sym_sql] = ACTIONS(2973), + [sym_int_literal] = ACTIONS(2973), + [sym_float_literal] = ACTIONS(2971), + [sym_rune_literal] = ACTIONS(2971), + [anon_sym_SQUOTE] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [anon_sym_c_SQUOTE] = ACTIONS(2971), + [anon_sym_c_DQUOTE] = ACTIONS(2971), + [anon_sym_r_SQUOTE] = ACTIONS(2971), + [anon_sym_r_DQUOTE] = ACTIONS(2971), + [sym_pseudo_compile_time_identifier] = ACTIONS(2973), + [anon_sym_shared] = ACTIONS(2973), + [anon_sym_map_LBRACK] = ACTIONS(2971), + [anon_sym_chan] = ACTIONS(2973), + [anon_sym_thread] = ACTIONS(2973), + [anon_sym_atomic] = ACTIONS(2973), }, - [1366] = { - [sym_line_comment] = STATE(1366), - [sym_block_comment] = STATE(1366), - [sym_identifier] = ACTIONS(2265), + [1339] = { + [sym_line_comment] = STATE(1339), + [sym_block_comment] = STATE(1339), + [sym_identifier] = ACTIONS(2957), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2265), - [anon_sym_as] = ACTIONS(2265), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_COMMA] = ACTIONS(2263), - [anon_sym_RBRACE] = ACTIONS(2263), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_PIPE] = ACTIONS(2265), - [anon_sym_fn] = ACTIONS(2265), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(2263), - [anon_sym_SLASH] = ACTIONS(2265), - [anon_sym_PERCENT] = ACTIONS(2263), - [anon_sym_LT] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(2265), - [anon_sym_EQ_EQ] = ACTIONS(2263), - [anon_sym_BANG_EQ] = ACTIONS(2263), - [anon_sym_LT_EQ] = ACTIONS(2263), - [anon_sym_GT_EQ] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_RBRACK] = ACTIONS(2263), - [anon_sym_struct] = ACTIONS(2265), - [anon_sym_mut] = ACTIONS(2265), - [anon_sym_COLON] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2263), - [anon_sym_QMARK] = ACTIONS(2265), - [anon_sym_BANG] = ACTIONS(2265), - [anon_sym_go] = ACTIONS(2265), - [anon_sym_spawn] = ACTIONS(2265), - [anon_sym_json_DOTdecode] = ACTIONS(2263), - [anon_sym_LBRACK2] = ACTIONS(2265), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2265), - [anon_sym_LT_DASH] = ACTIONS(2263), - [anon_sym_LT_LT] = ACTIONS(2263), - [anon_sym_GT_GT] = ACTIONS(2265), - [anon_sym_GT_GT_GT] = ACTIONS(2263), - [anon_sym_AMP_CARET] = ACTIONS(2263), - [anon_sym_AMP_AMP] = ACTIONS(2263), - [anon_sym_PIPE_PIPE] = ACTIONS(2263), - [anon_sym_or] = ACTIONS(2265), - [sym_none] = ACTIONS(2265), - [sym_true] = ACTIONS(2265), - [sym_false] = ACTIONS(2265), - [sym_nil] = ACTIONS(2265), - [anon_sym_QMARK_DOT] = ACTIONS(2263), - [anon_sym_POUND_LBRACK] = ACTIONS(2263), - [anon_sym_if] = ACTIONS(2265), - [anon_sym_DOLLARif] = ACTIONS(2265), - [anon_sym_is] = ACTIONS(2265), - [anon_sym_BANGis] = ACTIONS(2263), - [anon_sym_in] = ACTIONS(2265), - [anon_sym_BANGin] = ACTIONS(2263), - [anon_sym_match] = ACTIONS(2265), - [anon_sym_select] = ACTIONS(2265), - [anon_sym_lock] = ACTIONS(2265), - [anon_sym_rlock] = ACTIONS(2265), - [anon_sym_unsafe] = ACTIONS(2265), - [anon_sym_sql] = ACTIONS(2265), - [sym_int_literal] = ACTIONS(2265), - [sym_float_literal] = ACTIONS(2263), - [sym_rune_literal] = ACTIONS(2263), - [anon_sym_SQUOTE] = ACTIONS(2263), - [anon_sym_DQUOTE] = ACTIONS(2263), - [anon_sym_c_SQUOTE] = ACTIONS(2263), - [anon_sym_c_DQUOTE] = ACTIONS(2263), - [anon_sym_r_SQUOTE] = ACTIONS(2263), - [anon_sym_r_DQUOTE] = ACTIONS(2263), - [sym_pseudo_compile_time_identifier] = ACTIONS(2265), - [anon_sym_shared] = ACTIONS(2265), - [anon_sym_map_LBRACK] = ACTIONS(2263), - [anon_sym_chan] = ACTIONS(2265), - [anon_sym_thread] = ACTIONS(2265), - [anon_sym_atomic] = ACTIONS(2265), + [anon_sym_DOT] = ACTIONS(2957), + [anon_sym_as] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2955), + [anon_sym_COMMA] = ACTIONS(2955), + [anon_sym_RBRACE] = ACTIONS(2955), + [anon_sym_LPAREN] = ACTIONS(2955), + [anon_sym_fn] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_STAR] = ACTIONS(2955), + [anon_sym_SLASH] = ACTIONS(2957), + [anon_sym_PERCENT] = ACTIONS(2955), + [anon_sym_LT] = ACTIONS(2957), + [anon_sym_GT] = ACTIONS(2957), + [anon_sym_EQ_EQ] = ACTIONS(2955), + [anon_sym_BANG_EQ] = ACTIONS(2955), + [anon_sym_LT_EQ] = ACTIONS(2955), + [anon_sym_GT_EQ] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2955), + [anon_sym_RBRACK] = ACTIONS(2955), + [anon_sym_struct] = ACTIONS(2957), + [anon_sym_mut] = ACTIONS(2957), + [anon_sym_COLON] = ACTIONS(2955), + [anon_sym_PLUS_PLUS] = ACTIONS(2955), + [anon_sym_DASH_DASH] = ACTIONS(2955), + [anon_sym_QMARK] = ACTIONS(2957), + [anon_sym_BANG] = ACTIONS(2957), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2957), + [anon_sym_json_DOTdecode] = ACTIONS(2955), + [anon_sym_PIPE] = ACTIONS(2957), + [anon_sym_LBRACK2] = ACTIONS(2957), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2957), + [anon_sym_LT_DASH] = ACTIONS(2955), + [anon_sym_LT_LT] = ACTIONS(2955), + [anon_sym_GT_GT] = ACTIONS(2957), + [anon_sym_GT_GT_GT] = ACTIONS(2955), + [anon_sym_AMP_CARET] = ACTIONS(2955), + [anon_sym_AMP_AMP] = ACTIONS(2955), + [anon_sym_PIPE_PIPE] = ACTIONS(2955), + [anon_sym_or] = ACTIONS(2957), + [sym_none] = ACTIONS(2957), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_nil] = ACTIONS(2957), + [anon_sym_QMARK_DOT] = ACTIONS(2955), + [anon_sym_POUND_LBRACK] = ACTIONS(2955), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_DOLLARif] = ACTIONS(2957), + [anon_sym_is] = ACTIONS(2957), + [anon_sym_BANGis] = ACTIONS(2955), + [anon_sym_in] = ACTIONS(2957), + [anon_sym_BANGin] = ACTIONS(2955), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_select] = ACTIONS(2957), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_rlock] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2957), + [anon_sym_sql] = ACTIONS(2957), + [sym_int_literal] = ACTIONS(2957), + [sym_float_literal] = ACTIONS(2955), + [sym_rune_literal] = ACTIONS(2955), + [anon_sym_SQUOTE] = ACTIONS(2955), + [anon_sym_DQUOTE] = ACTIONS(2955), + [anon_sym_c_SQUOTE] = ACTIONS(2955), + [anon_sym_c_DQUOTE] = ACTIONS(2955), + [anon_sym_r_SQUOTE] = ACTIONS(2955), + [anon_sym_r_DQUOTE] = ACTIONS(2955), + [sym_pseudo_compile_time_identifier] = ACTIONS(2957), + [anon_sym_shared] = ACTIONS(2957), + [anon_sym_map_LBRACK] = ACTIONS(2955), + [anon_sym_chan] = ACTIONS(2957), + [anon_sym_thread] = ACTIONS(2957), + [anon_sym_atomic] = ACTIONS(2957), }, - [1367] = { - [sym_line_comment] = STATE(1367), - [sym_block_comment] = STATE(1367), + [1340] = { + [sym_line_comment] = STATE(1340), + [sym_block_comment] = STATE(1340), + [sym_identifier] = ACTIONS(1945), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1945), + [anon_sym_as] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1943), + [anon_sym_COMMA] = ACTIONS(1943), + [anon_sym_RBRACE] = ACTIONS(1943), + [anon_sym_LPAREN] = ACTIONS(1943), + [anon_sym_fn] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1945), + [anon_sym_STAR] = ACTIONS(1943), + [anon_sym_SLASH] = ACTIONS(1945), + [anon_sym_PERCENT] = ACTIONS(1943), + [anon_sym_LT] = ACTIONS(1945), + [anon_sym_GT] = ACTIONS(1945), + [anon_sym_EQ_EQ] = ACTIONS(1943), + [anon_sym_BANG_EQ] = ACTIONS(1943), + [anon_sym_LT_EQ] = ACTIONS(1943), + [anon_sym_GT_EQ] = ACTIONS(1943), + [anon_sym_LBRACK] = ACTIONS(1943), + [anon_sym_RBRACK] = ACTIONS(1943), + [anon_sym_struct] = ACTIONS(1945), + [anon_sym_mut] = ACTIONS(1945), + [anon_sym_COLON] = ACTIONS(1943), + [anon_sym_PLUS_PLUS] = ACTIONS(1943), + [anon_sym_DASH_DASH] = ACTIONS(1943), + [anon_sym_QMARK] = ACTIONS(1945), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_go] = ACTIONS(1945), + [anon_sym_spawn] = ACTIONS(1945), + [anon_sym_json_DOTdecode] = ACTIONS(1943), + [anon_sym_PIPE] = ACTIONS(1945), + [anon_sym_LBRACK2] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1943), + [anon_sym_CARET] = ACTIONS(1943), + [anon_sym_AMP] = ACTIONS(1945), + [anon_sym_LT_DASH] = ACTIONS(1943), + [anon_sym_LT_LT] = ACTIONS(1943), + [anon_sym_GT_GT] = ACTIONS(1945), + [anon_sym_GT_GT_GT] = ACTIONS(1943), + [anon_sym_AMP_CARET] = ACTIONS(1943), + [anon_sym_AMP_AMP] = ACTIONS(1943), + [anon_sym_PIPE_PIPE] = ACTIONS(1943), + [anon_sym_or] = ACTIONS(1945), + [sym_none] = ACTIONS(1945), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_nil] = ACTIONS(1945), + [anon_sym_QMARK_DOT] = ACTIONS(1943), + [anon_sym_POUND_LBRACK] = ACTIONS(1943), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_DOLLARif] = ACTIONS(1945), + [anon_sym_is] = ACTIONS(1945), + [anon_sym_BANGis] = ACTIONS(1943), + [anon_sym_in] = ACTIONS(1945), + [anon_sym_BANGin] = ACTIONS(1943), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_select] = ACTIONS(1945), + [anon_sym_lock] = ACTIONS(1945), + [anon_sym_rlock] = ACTIONS(1945), + [anon_sym_unsafe] = ACTIONS(1945), + [anon_sym_sql] = ACTIONS(1945), + [sym_int_literal] = ACTIONS(1945), + [sym_float_literal] = ACTIONS(1943), + [sym_rune_literal] = ACTIONS(1943), + [anon_sym_SQUOTE] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [anon_sym_c_SQUOTE] = ACTIONS(1943), + [anon_sym_c_DQUOTE] = ACTIONS(1943), + [anon_sym_r_SQUOTE] = ACTIONS(1943), + [anon_sym_r_DQUOTE] = ACTIONS(1943), + [sym_pseudo_compile_time_identifier] = ACTIONS(1945), + [anon_sym_shared] = ACTIONS(1945), + [anon_sym_map_LBRACK] = ACTIONS(1943), + [anon_sym_chan] = ACTIONS(1945), + [anon_sym_thread] = ACTIONS(1945), + [anon_sym_atomic] = ACTIONS(1945), + }, + [1341] = { + [sym_line_comment] = STATE(1341), + [sym_block_comment] = STATE(1341), [sym_identifier] = ACTIONS(2453), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -170453,7 +168661,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(2451), [anon_sym_RBRACE] = ACTIONS(2451), [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_PIPE] = ACTIONS(2453), [anon_sym_fn] = ACTIONS(2453), [anon_sym_PLUS] = ACTIONS(2453), [anon_sym_DASH] = ACTIONS(2453), @@ -170478,6 +168685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(2453), [anon_sym_spawn] = ACTIONS(2453), [anon_sym_json_DOTdecode] = ACTIONS(2451), + [anon_sym_PIPE] = ACTIONS(2453), [anon_sym_LBRACK2] = ACTIONS(2453), [anon_sym_TILDE] = ACTIONS(2451), [anon_sym_CARET] = ACTIONS(2451), @@ -170524,590 +168732,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(2453), [anon_sym_atomic] = ACTIONS(2453), }, - [1368] = { - [sym_line_comment] = STATE(1368), - [sym_block_comment] = STATE(1368), - [sym_identifier] = ACTIONS(2439), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2439), - [anon_sym_as] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_COMMA] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2439), - [anon_sym_fn] = ACTIONS(2439), - [anon_sym_PLUS] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2439), - [anon_sym_STAR] = ACTIONS(2437), - [anon_sym_SLASH] = ACTIONS(2439), - [anon_sym_PERCENT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2439), - [anon_sym_GT] = ACTIONS(2439), - [anon_sym_EQ_EQ] = ACTIONS(2437), - [anon_sym_BANG_EQ] = ACTIONS(2437), - [anon_sym_LT_EQ] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2437), - [anon_sym_RBRACK] = ACTIONS(2437), - [anon_sym_struct] = ACTIONS(2439), - [anon_sym_mut] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2437), - [anon_sym_PLUS_PLUS] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2437), - [anon_sym_QMARK] = ACTIONS(2439), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_go] = ACTIONS(2439), - [anon_sym_spawn] = ACTIONS(2439), - [anon_sym_json_DOTdecode] = ACTIONS(2437), - [anon_sym_LBRACK2] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2439), - [anon_sym_LT_DASH] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2437), - [anon_sym_GT_GT] = ACTIONS(2439), - [anon_sym_GT_GT_GT] = ACTIONS(2437), - [anon_sym_AMP_CARET] = ACTIONS(2437), - [anon_sym_AMP_AMP] = ACTIONS(2437), - [anon_sym_PIPE_PIPE] = ACTIONS(2437), - [anon_sym_or] = ACTIONS(2439), - [sym_none] = ACTIONS(2439), - [sym_true] = ACTIONS(2439), - [sym_false] = ACTIONS(2439), - [sym_nil] = ACTIONS(2439), - [anon_sym_QMARK_DOT] = ACTIONS(2437), - [anon_sym_POUND_LBRACK] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2439), - [anon_sym_DOLLARif] = ACTIONS(2439), - [anon_sym_is] = ACTIONS(2439), - [anon_sym_BANGis] = ACTIONS(2437), - [anon_sym_in] = ACTIONS(2439), - [anon_sym_BANGin] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2439), - [anon_sym_select] = ACTIONS(2439), - [anon_sym_lock] = ACTIONS(2439), - [anon_sym_rlock] = ACTIONS(2439), - [anon_sym_unsafe] = ACTIONS(2439), - [anon_sym_sql] = ACTIONS(2439), - [sym_int_literal] = ACTIONS(2439), - [sym_float_literal] = ACTIONS(2437), - [sym_rune_literal] = ACTIONS(2437), - [anon_sym_SQUOTE] = ACTIONS(2437), - [anon_sym_DQUOTE] = ACTIONS(2437), - [anon_sym_c_SQUOTE] = ACTIONS(2437), - [anon_sym_c_DQUOTE] = ACTIONS(2437), - [anon_sym_r_SQUOTE] = ACTIONS(2437), - [anon_sym_r_DQUOTE] = ACTIONS(2437), - [sym_pseudo_compile_time_identifier] = ACTIONS(2439), - [anon_sym_shared] = ACTIONS(2439), - [anon_sym_map_LBRACK] = ACTIONS(2437), - [anon_sym_chan] = ACTIONS(2439), - [anon_sym_thread] = ACTIONS(2439), - [anon_sym_atomic] = ACTIONS(2439), - }, - [1369] = { - [sym_line_comment] = STATE(1369), - [sym_block_comment] = STATE(1369), - [sym_identifier] = ACTIONS(2175), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2173), - [anon_sym_COMMA] = ACTIONS(2173), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_PIPE] = ACTIONS(2175), - [anon_sym_fn] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_SLASH] = ACTIONS(2175), - [anon_sym_PERCENT] = ACTIONS(2173), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_GT] = ACTIONS(2175), - [anon_sym_EQ_EQ] = ACTIONS(2173), - [anon_sym_BANG_EQ] = ACTIONS(2173), - [anon_sym_LT_EQ] = ACTIONS(2173), - [anon_sym_GT_EQ] = ACTIONS(2173), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_RBRACK] = ACTIONS(2173), - [anon_sym_struct] = ACTIONS(2175), - [anon_sym_mut] = ACTIONS(2175), - [anon_sym_COLON] = ACTIONS(2173), - [anon_sym_PLUS_PLUS] = ACTIONS(2173), - [anon_sym_DASH_DASH] = ACTIONS(2173), - [anon_sym_QMARK] = ACTIONS(2175), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_go] = ACTIONS(2175), - [anon_sym_spawn] = ACTIONS(2175), - [anon_sym_json_DOTdecode] = ACTIONS(2173), - [anon_sym_LBRACK2] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2173), - [anon_sym_AMP] = ACTIONS(2175), - [anon_sym_LT_DASH] = ACTIONS(2173), - [anon_sym_LT_LT] = ACTIONS(2173), - [anon_sym_GT_GT] = ACTIONS(2175), - [anon_sym_GT_GT_GT] = ACTIONS(2173), - [anon_sym_AMP_CARET] = ACTIONS(2173), - [anon_sym_AMP_AMP] = ACTIONS(2173), - [anon_sym_PIPE_PIPE] = ACTIONS(2173), - [anon_sym_or] = ACTIONS(2175), - [sym_none] = ACTIONS(2175), - [sym_true] = ACTIONS(2175), - [sym_false] = ACTIONS(2175), - [sym_nil] = ACTIONS(2175), - [anon_sym_QMARK_DOT] = ACTIONS(2173), - [anon_sym_POUND_LBRACK] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_DOLLARif] = ACTIONS(2175), - [anon_sym_is] = ACTIONS(2175), - [anon_sym_BANGis] = ACTIONS(2173), - [anon_sym_in] = ACTIONS(2175), - [anon_sym_BANGin] = ACTIONS(2173), - [anon_sym_match] = ACTIONS(2175), - [anon_sym_select] = ACTIONS(2175), - [anon_sym_lock] = ACTIONS(2175), - [anon_sym_rlock] = ACTIONS(2175), - [anon_sym_unsafe] = ACTIONS(2175), - [anon_sym_sql] = ACTIONS(2175), - [sym_int_literal] = ACTIONS(2175), - [sym_float_literal] = ACTIONS(2173), - [sym_rune_literal] = ACTIONS(2173), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2173), - [anon_sym_c_SQUOTE] = ACTIONS(2173), - [anon_sym_c_DQUOTE] = ACTIONS(2173), - [anon_sym_r_SQUOTE] = ACTIONS(2173), - [anon_sym_r_DQUOTE] = ACTIONS(2173), - [sym_pseudo_compile_time_identifier] = ACTIONS(2175), - [anon_sym_shared] = ACTIONS(2175), - [anon_sym_map_LBRACK] = ACTIONS(2173), - [anon_sym_chan] = ACTIONS(2175), - [anon_sym_thread] = ACTIONS(2175), - [anon_sym_atomic] = ACTIONS(2175), - }, - [1370] = { - [sym_line_comment] = STATE(1370), - [sym_block_comment] = STATE(1370), - [sym_type_parameters] = STATE(4063), - [sym_argument_list] = STATE(1354), - [sym_or_block] = STATE(1355), - [sym_identifier] = ACTIONS(3843), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3825), - [anon_sym_as] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(3847), - [anon_sym_RBRACE] = ACTIONS(3847), - [anon_sym_LPAREN] = ACTIONS(3827), - [anon_sym_PIPE] = ACTIONS(3849), - [anon_sym_fn] = ACTIONS(3843), - [anon_sym_PLUS] = ACTIONS(3849), - [anon_sym_DASH] = ACTIONS(3849), - [anon_sym_STAR] = ACTIONS(3851), - [anon_sym_SLASH] = ACTIONS(3853), - [anon_sym_PERCENT] = ACTIONS(3851), - [anon_sym_LT] = ACTIONS(3855), - [anon_sym_GT] = ACTIONS(3855), - [anon_sym_EQ_EQ] = ACTIONS(3857), - [anon_sym_BANG_EQ] = ACTIONS(3857), - [anon_sym_LT_EQ] = ACTIONS(3857), - [anon_sym_GT_EQ] = ACTIONS(3857), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_struct] = ACTIONS(3843), - [anon_sym_mut] = ACTIONS(3843), - [anon_sym_PLUS_PLUS] = ACTIONS(3861), - [anon_sym_DASH_DASH] = ACTIONS(3863), - [anon_sym_QMARK] = ACTIONS(3831), - [anon_sym_BANG] = ACTIONS(3833), - [anon_sym_go] = ACTIONS(3843), - [anon_sym_spawn] = ACTIONS(3843), - [anon_sym_json_DOTdecode] = ACTIONS(3847), - [anon_sym_LBRACK2] = ACTIONS(3835), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_CARET] = ACTIONS(3865), - [anon_sym_AMP] = ACTIONS(3853), - [anon_sym_LT_DASH] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3851), - [anon_sym_GT_GT] = ACTIONS(3853), - [anon_sym_GT_GT_GT] = ACTIONS(3851), - [anon_sym_AMP_CARET] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3867), - [anon_sym_PIPE_PIPE] = ACTIONS(3869), - [anon_sym_or] = ACTIONS(3871), - [sym_none] = ACTIONS(3843), - [sym_true] = ACTIONS(3843), - [sym_false] = ACTIONS(3843), - [sym_nil] = ACTIONS(3843), - [anon_sym_QMARK_DOT] = ACTIONS(3837), - [anon_sym_POUND_LBRACK] = ACTIONS(3839), - [anon_sym_if] = ACTIONS(3843), - [anon_sym_DOLLARif] = ACTIONS(3843), - [anon_sym_is] = ACTIONS(3873), - [anon_sym_BANGis] = ACTIONS(3875), - [anon_sym_in] = ACTIONS(3877), - [anon_sym_BANGin] = ACTIONS(3879), - [anon_sym_match] = ACTIONS(3843), - [anon_sym_select] = ACTIONS(3843), - [anon_sym_lock] = ACTIONS(3843), - [anon_sym_rlock] = ACTIONS(3843), - [anon_sym_unsafe] = ACTIONS(3843), - [anon_sym_sql] = ACTIONS(3843), - [sym_int_literal] = ACTIONS(3843), - [sym_float_literal] = ACTIONS(3847), - [sym_rune_literal] = ACTIONS(3847), - [anon_sym_SQUOTE] = ACTIONS(3847), - [anon_sym_DQUOTE] = ACTIONS(3847), - [anon_sym_c_SQUOTE] = ACTIONS(3847), - [anon_sym_c_DQUOTE] = ACTIONS(3847), - [anon_sym_r_SQUOTE] = ACTIONS(3847), - [anon_sym_r_DQUOTE] = ACTIONS(3847), - [sym_pseudo_compile_time_identifier] = ACTIONS(3843), - [anon_sym_shared] = ACTIONS(3843), - [anon_sym_map_LBRACK] = ACTIONS(3847), - [anon_sym_chan] = ACTIONS(3843), - [anon_sym_thread] = ACTIONS(3843), - [anon_sym_atomic] = ACTIONS(3843), - }, - [1371] = { - [sym_line_comment] = STATE(1371), - [sym_block_comment] = STATE(1371), - [sym_identifier] = ACTIONS(2257), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2257), - [anon_sym_as] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2255), - [anon_sym_COMMA] = ACTIONS(2255), - [anon_sym_RBRACE] = ACTIONS(2255), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_PIPE] = ACTIONS(2257), - [anon_sym_fn] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2257), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_STAR] = ACTIONS(2255), - [anon_sym_SLASH] = ACTIONS(2257), - [anon_sym_PERCENT] = ACTIONS(2255), - [anon_sym_LT] = ACTIONS(2257), - [anon_sym_GT] = ACTIONS(2257), - [anon_sym_EQ_EQ] = ACTIONS(2255), - [anon_sym_BANG_EQ] = ACTIONS(2255), - [anon_sym_LT_EQ] = ACTIONS(2255), - [anon_sym_GT_EQ] = ACTIONS(2255), - [anon_sym_LBRACK] = ACTIONS(2255), - [anon_sym_RBRACK] = ACTIONS(2255), - [anon_sym_struct] = ACTIONS(2257), - [anon_sym_mut] = ACTIONS(2257), - [anon_sym_COLON] = ACTIONS(2255), - [anon_sym_PLUS_PLUS] = ACTIONS(2255), - [anon_sym_DASH_DASH] = ACTIONS(2255), - [anon_sym_QMARK] = ACTIONS(2257), - [anon_sym_BANG] = ACTIONS(2257), - [anon_sym_go] = ACTIONS(2257), - [anon_sym_spawn] = ACTIONS(2257), - [anon_sym_json_DOTdecode] = ACTIONS(2255), - [anon_sym_LBRACK2] = ACTIONS(2257), - [anon_sym_TILDE] = ACTIONS(2255), - [anon_sym_CARET] = ACTIONS(2255), - [anon_sym_AMP] = ACTIONS(2257), - [anon_sym_LT_DASH] = ACTIONS(2255), - [anon_sym_LT_LT] = ACTIONS(2255), - [anon_sym_GT_GT] = ACTIONS(2257), - [anon_sym_GT_GT_GT] = ACTIONS(2255), - [anon_sym_AMP_CARET] = ACTIONS(2255), - [anon_sym_AMP_AMP] = ACTIONS(2255), - [anon_sym_PIPE_PIPE] = ACTIONS(2255), - [anon_sym_or] = ACTIONS(2257), - [sym_none] = ACTIONS(2257), - [sym_true] = ACTIONS(2257), - [sym_false] = ACTIONS(2257), - [sym_nil] = ACTIONS(2257), - [anon_sym_QMARK_DOT] = ACTIONS(2255), - [anon_sym_POUND_LBRACK] = ACTIONS(2255), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_DOLLARif] = ACTIONS(2257), - [anon_sym_is] = ACTIONS(2257), - [anon_sym_BANGis] = ACTIONS(2255), - [anon_sym_in] = ACTIONS(2257), - [anon_sym_BANGin] = ACTIONS(2255), - [anon_sym_match] = ACTIONS(2257), - [anon_sym_select] = ACTIONS(2257), - [anon_sym_lock] = ACTIONS(2257), - [anon_sym_rlock] = ACTIONS(2257), - [anon_sym_unsafe] = ACTIONS(2257), - [anon_sym_sql] = ACTIONS(2257), - [sym_int_literal] = ACTIONS(2257), - [sym_float_literal] = ACTIONS(2255), - [sym_rune_literal] = ACTIONS(2255), - [anon_sym_SQUOTE] = ACTIONS(2255), - [anon_sym_DQUOTE] = ACTIONS(2255), - [anon_sym_c_SQUOTE] = ACTIONS(2255), - [anon_sym_c_DQUOTE] = ACTIONS(2255), - [anon_sym_r_SQUOTE] = ACTIONS(2255), - [anon_sym_r_DQUOTE] = ACTIONS(2255), - [sym_pseudo_compile_time_identifier] = ACTIONS(2257), - [anon_sym_shared] = ACTIONS(2257), - [anon_sym_map_LBRACK] = ACTIONS(2255), - [anon_sym_chan] = ACTIONS(2257), - [anon_sym_thread] = ACTIONS(2257), - [anon_sym_atomic] = ACTIONS(2257), - }, - [1372] = { - [sym_line_comment] = STATE(1372), - [sym_block_comment] = STATE(1372), - [sym_identifier] = ACTIONS(2241), + [1342] = { + [sym_line_comment] = STATE(1342), + [sym_block_comment] = STATE(1342), + [sym_identifier] = ACTIONS(2775), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2241), - [anon_sym_as] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2239), - [anon_sym_COMMA] = ACTIONS(2239), - [anon_sym_RBRACE] = ACTIONS(2239), - [anon_sym_LPAREN] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(2241), - [anon_sym_fn] = ACTIONS(2241), - [anon_sym_PLUS] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_STAR] = ACTIONS(2239), - [anon_sym_SLASH] = ACTIONS(2241), - [anon_sym_PERCENT] = ACTIONS(2239), - [anon_sym_LT] = ACTIONS(2241), - [anon_sym_GT] = ACTIONS(2241), - [anon_sym_EQ_EQ] = ACTIONS(2239), - [anon_sym_BANG_EQ] = ACTIONS(2239), - [anon_sym_LT_EQ] = ACTIONS(2239), - [anon_sym_GT_EQ] = ACTIONS(2239), - [anon_sym_LBRACK] = ACTIONS(2239), - [anon_sym_RBRACK] = ACTIONS(2239), - [anon_sym_struct] = ACTIONS(2241), - [anon_sym_mut] = ACTIONS(2241), - [anon_sym_COLON] = ACTIONS(2239), - [anon_sym_PLUS_PLUS] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2239), - [anon_sym_QMARK] = ACTIONS(2241), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_go] = ACTIONS(2241), - [anon_sym_spawn] = ACTIONS(2241), - [anon_sym_json_DOTdecode] = ACTIONS(2239), - [anon_sym_LBRACK2] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2241), - [anon_sym_LT_DASH] = ACTIONS(2239), - [anon_sym_LT_LT] = ACTIONS(2239), - [anon_sym_GT_GT] = ACTIONS(2241), - [anon_sym_GT_GT_GT] = ACTIONS(2239), - [anon_sym_AMP_CARET] = ACTIONS(2239), - [anon_sym_AMP_AMP] = ACTIONS(2239), - [anon_sym_PIPE_PIPE] = ACTIONS(2239), - [anon_sym_or] = ACTIONS(2241), - [sym_none] = ACTIONS(2241), - [sym_true] = ACTIONS(2241), - [sym_false] = ACTIONS(2241), - [sym_nil] = ACTIONS(2241), - [anon_sym_QMARK_DOT] = ACTIONS(2239), - [anon_sym_POUND_LBRACK] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_DOLLARif] = ACTIONS(2241), - [anon_sym_is] = ACTIONS(2241), - [anon_sym_BANGis] = ACTIONS(2239), - [anon_sym_in] = ACTIONS(2241), - [anon_sym_BANGin] = ACTIONS(2239), - [anon_sym_match] = ACTIONS(2241), - [anon_sym_select] = ACTIONS(2241), - [anon_sym_lock] = ACTIONS(2241), - [anon_sym_rlock] = ACTIONS(2241), - [anon_sym_unsafe] = ACTIONS(2241), - [anon_sym_sql] = ACTIONS(2241), - [sym_int_literal] = ACTIONS(2241), - [sym_float_literal] = ACTIONS(2239), - [sym_rune_literal] = ACTIONS(2239), - [anon_sym_SQUOTE] = ACTIONS(2239), - [anon_sym_DQUOTE] = ACTIONS(2239), - [anon_sym_c_SQUOTE] = ACTIONS(2239), - [anon_sym_c_DQUOTE] = ACTIONS(2239), - [anon_sym_r_SQUOTE] = ACTIONS(2239), - [anon_sym_r_DQUOTE] = ACTIONS(2239), - [sym_pseudo_compile_time_identifier] = ACTIONS(2241), - [anon_sym_shared] = ACTIONS(2241), - [anon_sym_map_LBRACK] = ACTIONS(2239), - [anon_sym_chan] = ACTIONS(2241), - [anon_sym_thread] = ACTIONS(2241), - [anon_sym_atomic] = ACTIONS(2241), + [anon_sym_DOT] = ACTIONS(2775), + [anon_sym_as] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(2773), + [anon_sym_COMMA] = ACTIONS(2773), + [anon_sym_RBRACE] = ACTIONS(2773), + [anon_sym_LPAREN] = ACTIONS(2773), + [anon_sym_fn] = ACTIONS(2775), + [anon_sym_PLUS] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2775), + [anon_sym_STAR] = ACTIONS(2773), + [anon_sym_SLASH] = ACTIONS(2775), + [anon_sym_PERCENT] = ACTIONS(2773), + [anon_sym_LT] = ACTIONS(2775), + [anon_sym_GT] = ACTIONS(2775), + [anon_sym_EQ_EQ] = ACTIONS(2773), + [anon_sym_BANG_EQ] = ACTIONS(2773), + [anon_sym_LT_EQ] = ACTIONS(2773), + [anon_sym_GT_EQ] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_RBRACK] = ACTIONS(2773), + [anon_sym_struct] = ACTIONS(2775), + [anon_sym_mut] = ACTIONS(2775), + [anon_sym_COLON] = ACTIONS(2773), + [anon_sym_PLUS_PLUS] = ACTIONS(2773), + [anon_sym_DASH_DASH] = ACTIONS(2773), + [anon_sym_QMARK] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_go] = ACTIONS(2775), + [anon_sym_spawn] = ACTIONS(2775), + [anon_sym_json_DOTdecode] = ACTIONS(2773), + [anon_sym_PIPE] = ACTIONS(2775), + [anon_sym_LBRACK2] = ACTIONS(2775), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2775), + [anon_sym_LT_DASH] = ACTIONS(2773), + [anon_sym_LT_LT] = ACTIONS(2773), + [anon_sym_GT_GT] = ACTIONS(2775), + [anon_sym_GT_GT_GT] = ACTIONS(2773), + [anon_sym_AMP_CARET] = ACTIONS(2773), + [anon_sym_AMP_AMP] = ACTIONS(2773), + [anon_sym_PIPE_PIPE] = ACTIONS(2773), + [anon_sym_or] = ACTIONS(2775), + [sym_none] = ACTIONS(2775), + [sym_true] = ACTIONS(2775), + [sym_false] = ACTIONS(2775), + [sym_nil] = ACTIONS(2775), + [anon_sym_QMARK_DOT] = ACTIONS(2773), + [anon_sym_POUND_LBRACK] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(2775), + [anon_sym_DOLLARif] = ACTIONS(2775), + [anon_sym_is] = ACTIONS(2775), + [anon_sym_BANGis] = ACTIONS(2773), + [anon_sym_in] = ACTIONS(2775), + [anon_sym_BANGin] = ACTIONS(2773), + [anon_sym_match] = ACTIONS(2775), + [anon_sym_select] = ACTIONS(2775), + [anon_sym_lock] = ACTIONS(2775), + [anon_sym_rlock] = ACTIONS(2775), + [anon_sym_unsafe] = ACTIONS(2775), + [anon_sym_sql] = ACTIONS(2775), + [sym_int_literal] = ACTIONS(2775), + [sym_float_literal] = ACTIONS(2773), + [sym_rune_literal] = ACTIONS(2773), + [anon_sym_SQUOTE] = ACTIONS(2773), + [anon_sym_DQUOTE] = ACTIONS(2773), + [anon_sym_c_SQUOTE] = ACTIONS(2773), + [anon_sym_c_DQUOTE] = ACTIONS(2773), + [anon_sym_r_SQUOTE] = ACTIONS(2773), + [anon_sym_r_DQUOTE] = ACTIONS(2773), + [sym_pseudo_compile_time_identifier] = ACTIONS(2775), + [anon_sym_shared] = ACTIONS(2775), + [anon_sym_map_LBRACK] = ACTIONS(2773), + [anon_sym_chan] = ACTIONS(2775), + [anon_sym_thread] = ACTIONS(2775), + [anon_sym_atomic] = ACTIONS(2775), }, - [1373] = { - [sym_line_comment] = STATE(1373), - [sym_block_comment] = STATE(1373), - [sym_identifier] = ACTIONS(2233), + [1343] = { + [sym_line_comment] = STATE(1343), + [sym_block_comment] = STATE(1343), + [sym_identifier] = ACTIONS(2683), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_as] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(2231), - [anon_sym_COMMA] = ACTIONS(2231), - [anon_sym_RBRACE] = ACTIONS(2231), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_PIPE] = ACTIONS(2233), - [anon_sym_fn] = ACTIONS(2233), - [anon_sym_PLUS] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2233), - [anon_sym_STAR] = ACTIONS(2231), - [anon_sym_SLASH] = ACTIONS(2233), - [anon_sym_PERCENT] = ACTIONS(2231), - [anon_sym_LT] = ACTIONS(2233), - [anon_sym_GT] = ACTIONS(2233), - [anon_sym_EQ_EQ] = ACTIONS(2231), - [anon_sym_BANG_EQ] = ACTIONS(2231), - [anon_sym_LT_EQ] = ACTIONS(2231), - [anon_sym_GT_EQ] = ACTIONS(2231), - [anon_sym_LBRACK] = ACTIONS(2231), - [anon_sym_RBRACK] = ACTIONS(2231), - [anon_sym_struct] = ACTIONS(2233), - [anon_sym_mut] = ACTIONS(2233), - [anon_sym_COLON] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_QMARK] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2233), - [anon_sym_go] = ACTIONS(2233), - [anon_sym_spawn] = ACTIONS(2233), - [anon_sym_json_DOTdecode] = ACTIONS(2231), - [anon_sym_LBRACK2] = ACTIONS(2233), - [anon_sym_TILDE] = ACTIONS(2231), - [anon_sym_CARET] = ACTIONS(2231), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_LT_DASH] = ACTIONS(2231), - [anon_sym_LT_LT] = ACTIONS(2231), - [anon_sym_GT_GT] = ACTIONS(2233), - [anon_sym_GT_GT_GT] = ACTIONS(2231), - [anon_sym_AMP_CARET] = ACTIONS(2231), - [anon_sym_AMP_AMP] = ACTIONS(2231), - [anon_sym_PIPE_PIPE] = ACTIONS(2231), - [anon_sym_or] = ACTIONS(2233), - [sym_none] = ACTIONS(2233), - [sym_true] = ACTIONS(2233), - [sym_false] = ACTIONS(2233), - [sym_nil] = ACTIONS(2233), - [anon_sym_QMARK_DOT] = ACTIONS(2231), - [anon_sym_POUND_LBRACK] = ACTIONS(2231), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_DOLLARif] = ACTIONS(2233), - [anon_sym_is] = ACTIONS(2233), - [anon_sym_BANGis] = ACTIONS(2231), - [anon_sym_in] = ACTIONS(2233), - [anon_sym_BANGin] = ACTIONS(2231), - [anon_sym_match] = ACTIONS(2233), - [anon_sym_select] = ACTIONS(2233), - [anon_sym_lock] = ACTIONS(2233), - [anon_sym_rlock] = ACTIONS(2233), - [anon_sym_unsafe] = ACTIONS(2233), - [anon_sym_sql] = ACTIONS(2233), - [sym_int_literal] = ACTIONS(2233), - [sym_float_literal] = ACTIONS(2231), - [sym_rune_literal] = ACTIONS(2231), - [anon_sym_SQUOTE] = ACTIONS(2231), - [anon_sym_DQUOTE] = ACTIONS(2231), - [anon_sym_c_SQUOTE] = ACTIONS(2231), - [anon_sym_c_DQUOTE] = ACTIONS(2231), - [anon_sym_r_SQUOTE] = ACTIONS(2231), - [anon_sym_r_DQUOTE] = ACTIONS(2231), - [sym_pseudo_compile_time_identifier] = ACTIONS(2233), - [anon_sym_shared] = ACTIONS(2233), - [anon_sym_map_LBRACK] = ACTIONS(2231), - [anon_sym_chan] = ACTIONS(2233), - [anon_sym_thread] = ACTIONS(2233), - [anon_sym_atomic] = ACTIONS(2233), + [anon_sym_DOT] = ACTIONS(2683), + [anon_sym_as] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2681), + [anon_sym_COMMA] = ACTIONS(2681), + [anon_sym_RBRACE] = ACTIONS(2681), + [anon_sym_LPAREN] = ACTIONS(2681), + [anon_sym_fn] = ACTIONS(2683), + [anon_sym_PLUS] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(2681), + [anon_sym_SLASH] = ACTIONS(2683), + [anon_sym_PERCENT] = ACTIONS(2681), + [anon_sym_LT] = ACTIONS(2683), + [anon_sym_GT] = ACTIONS(2683), + [anon_sym_EQ_EQ] = ACTIONS(2681), + [anon_sym_BANG_EQ] = ACTIONS(2681), + [anon_sym_LT_EQ] = ACTIONS(2681), + [anon_sym_GT_EQ] = ACTIONS(2681), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_RBRACK] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_mut] = ACTIONS(2683), + [anon_sym_COLON] = ACTIONS(2681), + [anon_sym_PLUS_PLUS] = ACTIONS(2681), + [anon_sym_DASH_DASH] = ACTIONS(2681), + [anon_sym_QMARK] = ACTIONS(2683), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_go] = ACTIONS(2683), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(2681), + [anon_sym_PIPE] = ACTIONS(2683), + [anon_sym_LBRACK2] = ACTIONS(2683), + [anon_sym_TILDE] = ACTIONS(2681), + [anon_sym_CARET] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2683), + [anon_sym_LT_DASH] = ACTIONS(2681), + [anon_sym_LT_LT] = ACTIONS(2681), + [anon_sym_GT_GT] = ACTIONS(2683), + [anon_sym_GT_GT_GT] = ACTIONS(2681), + [anon_sym_AMP_CARET] = ACTIONS(2681), + [anon_sym_AMP_AMP] = ACTIONS(2681), + [anon_sym_PIPE_PIPE] = ACTIONS(2681), + [anon_sym_or] = ACTIONS(2683), + [sym_none] = ACTIONS(2683), + [sym_true] = ACTIONS(2683), + [sym_false] = ACTIONS(2683), + [sym_nil] = ACTIONS(2683), + [anon_sym_QMARK_DOT] = ACTIONS(2681), + [anon_sym_POUND_LBRACK] = ACTIONS(2681), + [anon_sym_if] = ACTIONS(2683), + [anon_sym_DOLLARif] = ACTIONS(2683), + [anon_sym_is] = ACTIONS(2683), + [anon_sym_BANGis] = ACTIONS(2681), + [anon_sym_in] = ACTIONS(2683), + [anon_sym_BANGin] = ACTIONS(2681), + [anon_sym_match] = ACTIONS(2683), + [anon_sym_select] = ACTIONS(2683), + [anon_sym_lock] = ACTIONS(2683), + [anon_sym_rlock] = ACTIONS(2683), + [anon_sym_unsafe] = ACTIONS(2683), + [anon_sym_sql] = ACTIONS(2683), + [sym_int_literal] = ACTIONS(2683), + [sym_float_literal] = ACTIONS(2681), + [sym_rune_literal] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2681), + [anon_sym_DQUOTE] = ACTIONS(2681), + [anon_sym_c_SQUOTE] = ACTIONS(2681), + [anon_sym_c_DQUOTE] = ACTIONS(2681), + [anon_sym_r_SQUOTE] = ACTIONS(2681), + [anon_sym_r_DQUOTE] = ACTIONS(2681), + [sym_pseudo_compile_time_identifier] = ACTIONS(2683), + [anon_sym_shared] = ACTIONS(2683), + [anon_sym_map_LBRACK] = ACTIONS(2681), + [anon_sym_chan] = ACTIONS(2683), + [anon_sym_thread] = ACTIONS(2683), + [anon_sym_atomic] = ACTIONS(2683), }, - [1374] = { - [sym_line_comment] = STATE(1374), - [sym_block_comment] = STATE(1374), - [sym_identifier] = ACTIONS(2119), + [1344] = { + [sym_line_comment] = STATE(1344), + [sym_block_comment] = STATE(1344), + [sym_identifier] = ACTIONS(2095), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2119), - [anon_sym_as] = ACTIONS(2119), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_COMMA] = ACTIONS(2117), - [anon_sym_RBRACE] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_PIPE] = ACTIONS(2119), - [anon_sym_fn] = ACTIONS(2119), - [anon_sym_PLUS] = ACTIONS(2119), - [anon_sym_DASH] = ACTIONS(2119), - [anon_sym_STAR] = ACTIONS(2117), - [anon_sym_SLASH] = ACTIONS(2119), - [anon_sym_PERCENT] = ACTIONS(2117), - [anon_sym_LT] = ACTIONS(2119), - [anon_sym_GT] = ACTIONS(2119), - [anon_sym_EQ_EQ] = ACTIONS(2117), - [anon_sym_BANG_EQ] = ACTIONS(2117), - [anon_sym_LT_EQ] = ACTIONS(2117), - [anon_sym_GT_EQ] = ACTIONS(2117), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_RBRACK] = ACTIONS(2117), - [anon_sym_struct] = ACTIONS(2119), - [anon_sym_mut] = ACTIONS(2119), - [anon_sym_COLON] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_QMARK] = ACTIONS(2119), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_go] = ACTIONS(2119), - [anon_sym_spawn] = ACTIONS(2119), - [anon_sym_json_DOTdecode] = ACTIONS(2117), - [anon_sym_LBRACK2] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_LT_DASH] = ACTIONS(2117), - [anon_sym_LT_LT] = ACTIONS(2117), - [anon_sym_GT_GT] = ACTIONS(2119), - [anon_sym_GT_GT_GT] = ACTIONS(2117), - [anon_sym_AMP_CARET] = ACTIONS(2117), - [anon_sym_AMP_AMP] = ACTIONS(2117), - [anon_sym_PIPE_PIPE] = ACTIONS(2117), - [anon_sym_or] = ACTIONS(2119), - [sym_none] = ACTIONS(2119), - [sym_true] = ACTIONS(2119), - [sym_false] = ACTIONS(2119), - [sym_nil] = ACTIONS(2119), - [anon_sym_QMARK_DOT] = ACTIONS(2117), - [anon_sym_POUND_LBRACK] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(2119), - [anon_sym_is] = ACTIONS(2119), - [anon_sym_BANGis] = ACTIONS(2117), - [anon_sym_in] = ACTIONS(2119), - [anon_sym_BANGin] = ACTIONS(2117), - [anon_sym_match] = ACTIONS(2119), - [anon_sym_select] = ACTIONS(2119), - [anon_sym_lock] = ACTIONS(2119), - [anon_sym_rlock] = ACTIONS(2119), - [anon_sym_unsafe] = ACTIONS(2119), - [anon_sym_sql] = ACTIONS(2119), - [sym_int_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2117), - [sym_rune_literal] = ACTIONS(2117), - [anon_sym_SQUOTE] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(2117), - [anon_sym_c_SQUOTE] = ACTIONS(2117), - [anon_sym_c_DQUOTE] = ACTIONS(2117), - [anon_sym_r_SQUOTE] = ACTIONS(2117), - [anon_sym_r_DQUOTE] = ACTIONS(2117), - [sym_pseudo_compile_time_identifier] = ACTIONS(2119), - [anon_sym_shared] = ACTIONS(2119), - [anon_sym_map_LBRACK] = ACTIONS(2117), - [anon_sym_chan] = ACTIONS(2119), - [anon_sym_thread] = ACTIONS(2119), - [anon_sym_atomic] = ACTIONS(2119), + [anon_sym_DOT] = ACTIONS(2095), + [anon_sym_as] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_COMMA] = ACTIONS(2093), + [anon_sym_RBRACE] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2093), + [anon_sym_fn] = ACTIONS(2095), + [anon_sym_PLUS] = ACTIONS(2095), + [anon_sym_DASH] = ACTIONS(2095), + [anon_sym_STAR] = ACTIONS(2093), + [anon_sym_SLASH] = ACTIONS(2095), + [anon_sym_PERCENT] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2095), + [anon_sym_GT] = ACTIONS(2095), + [anon_sym_EQ_EQ] = ACTIONS(2093), + [anon_sym_BANG_EQ] = ACTIONS(2093), + [anon_sym_LT_EQ] = ACTIONS(2093), + [anon_sym_GT_EQ] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_RBRACK] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2095), + [anon_sym_mut] = ACTIONS(2095), + [anon_sym_COLON] = ACTIONS(2093), + [anon_sym_PLUS_PLUS] = ACTIONS(2093), + [anon_sym_DASH_DASH] = ACTIONS(2093), + [anon_sym_QMARK] = ACTIONS(2095), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_go] = ACTIONS(2095), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(2093), + [anon_sym_PIPE] = ACTIONS(2095), + [anon_sym_LBRACK2] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2093), + [anon_sym_CARET] = ACTIONS(2093), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_LT_DASH] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_GT_GT] = ACTIONS(2095), + [anon_sym_GT_GT_GT] = ACTIONS(2093), + [anon_sym_AMP_CARET] = ACTIONS(2093), + [anon_sym_AMP_AMP] = ACTIONS(2093), + [anon_sym_PIPE_PIPE] = ACTIONS(2093), + [anon_sym_or] = ACTIONS(2095), + [sym_none] = ACTIONS(2095), + [sym_true] = ACTIONS(2095), + [sym_false] = ACTIONS(2095), + [sym_nil] = ACTIONS(2095), + [anon_sym_QMARK_DOT] = ACTIONS(2093), + [anon_sym_POUND_LBRACK] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_DOLLARif] = ACTIONS(2095), + [anon_sym_is] = ACTIONS(2095), + [anon_sym_BANGis] = ACTIONS(2093), + [anon_sym_in] = ACTIONS(2095), + [anon_sym_BANGin] = ACTIONS(2093), + [anon_sym_match] = ACTIONS(2095), + [anon_sym_select] = ACTIONS(2095), + [anon_sym_lock] = ACTIONS(2095), + [anon_sym_rlock] = ACTIONS(2095), + [anon_sym_unsafe] = ACTIONS(2095), + [anon_sym_sql] = ACTIONS(2095), + [sym_int_literal] = ACTIONS(2095), + [sym_float_literal] = ACTIONS(2093), + [sym_rune_literal] = ACTIONS(2093), + [anon_sym_SQUOTE] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(2093), + [anon_sym_c_SQUOTE] = ACTIONS(2093), + [anon_sym_c_DQUOTE] = ACTIONS(2093), + [anon_sym_r_SQUOTE] = ACTIONS(2093), + [anon_sym_r_DQUOTE] = ACTIONS(2093), + [sym_pseudo_compile_time_identifier] = ACTIONS(2095), + [anon_sym_shared] = ACTIONS(2095), + [anon_sym_map_LBRACK] = ACTIONS(2093), + [anon_sym_chan] = ACTIONS(2095), + [anon_sym_thread] = ACTIONS(2095), + [anon_sym_atomic] = ACTIONS(2095), }, - [1375] = { - [sym_line_comment] = STATE(1375), - [sym_block_comment] = STATE(1375), + [1345] = { + [sym_line_comment] = STATE(1345), + [sym_block_comment] = STATE(1345), [sym_identifier] = ACTIONS(3066), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -171117,7 +168993,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(3064), [anon_sym_RBRACE] = ACTIONS(3064), [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), [anon_sym_fn] = ACTIONS(3066), [anon_sym_PLUS] = ACTIONS(3066), [anon_sym_DASH] = ACTIONS(3066), @@ -171142,6 +169017,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_go] = ACTIONS(3066), [anon_sym_spawn] = ACTIONS(3066), [anon_sym_json_DOTdecode] = ACTIONS(3064), + [anon_sym_PIPE] = ACTIONS(3066), [anon_sym_LBRACK2] = ACTIONS(3066), [anon_sym_TILDE] = ACTIONS(3064), [anon_sym_CARET] = ACTIONS(3064), @@ -171188,1760 +169064,4012 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread] = ACTIONS(3066), [anon_sym_atomic] = ACTIONS(3066), }, + [1346] = { + [sym_line_comment] = STATE(1346), + [sym_block_comment] = STATE(1346), + [sym_identifier] = ACTIONS(2761), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2761), + [anon_sym_as] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2759), + [anon_sym_COMMA] = ACTIONS(2759), + [anon_sym_RBRACE] = ACTIONS(2759), + [anon_sym_LPAREN] = ACTIONS(2759), + [anon_sym_fn] = ACTIONS(2761), + [anon_sym_PLUS] = ACTIONS(2761), + [anon_sym_DASH] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(2759), + [anon_sym_SLASH] = ACTIONS(2761), + [anon_sym_PERCENT] = ACTIONS(2759), + [anon_sym_LT] = ACTIONS(2761), + [anon_sym_GT] = ACTIONS(2761), + [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(2761), + [anon_sym_mut] = ACTIONS(2761), + [anon_sym_COLON] = ACTIONS(2759), + [anon_sym_PLUS_PLUS] = ACTIONS(2759), + [anon_sym_DASH_DASH] = ACTIONS(2759), + [anon_sym_QMARK] = ACTIONS(2761), + [anon_sym_BANG] = ACTIONS(2761), + [anon_sym_go] = ACTIONS(2761), + [anon_sym_spawn] = ACTIONS(2761), + [anon_sym_json_DOTdecode] = ACTIONS(2759), + [anon_sym_PIPE] = ACTIONS(2761), + [anon_sym_LBRACK2] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2759), + [anon_sym_CARET] = ACTIONS(2759), + [anon_sym_AMP] = ACTIONS(2761), + [anon_sym_LT_DASH] = ACTIONS(2759), + [anon_sym_LT_LT] = ACTIONS(2759), + [anon_sym_GT_GT] = ACTIONS(2761), + [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(2761), + [sym_none] = ACTIONS(2761), + [sym_true] = ACTIONS(2761), + [sym_false] = ACTIONS(2761), + [sym_nil] = ACTIONS(2761), + [anon_sym_QMARK_DOT] = ACTIONS(2759), + [anon_sym_POUND_LBRACK] = ACTIONS(2759), + [anon_sym_if] = ACTIONS(2761), + [anon_sym_DOLLARif] = ACTIONS(2761), + [anon_sym_is] = ACTIONS(2761), + [anon_sym_BANGis] = ACTIONS(2759), + [anon_sym_in] = ACTIONS(2761), + [anon_sym_BANGin] = ACTIONS(2759), + [anon_sym_match] = ACTIONS(2761), + [anon_sym_select] = ACTIONS(2761), + [anon_sym_lock] = ACTIONS(2761), + [anon_sym_rlock] = ACTIONS(2761), + [anon_sym_unsafe] = ACTIONS(2761), + [anon_sym_sql] = ACTIONS(2761), + [sym_int_literal] = ACTIONS(2761), + [sym_float_literal] = ACTIONS(2759), + [sym_rune_literal] = ACTIONS(2759), + [anon_sym_SQUOTE] = ACTIONS(2759), + [anon_sym_DQUOTE] = ACTIONS(2759), + [anon_sym_c_SQUOTE] = ACTIONS(2759), + [anon_sym_c_DQUOTE] = ACTIONS(2759), + [anon_sym_r_SQUOTE] = ACTIONS(2759), + [anon_sym_r_DQUOTE] = ACTIONS(2759), + [sym_pseudo_compile_time_identifier] = ACTIONS(2761), + [anon_sym_shared] = ACTIONS(2761), + [anon_sym_map_LBRACK] = ACTIONS(2759), + [anon_sym_chan] = ACTIONS(2761), + [anon_sym_thread] = ACTIONS(2761), + [anon_sym_atomic] = ACTIONS(2761), + }, + [1347] = { + [sym_line_comment] = STATE(1347), + [sym_block_comment] = STATE(1347), + [sym_identifier] = ACTIONS(3050), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3050), + [anon_sym_as] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3048), + [anon_sym_RBRACE] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_fn] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_SLASH] = ACTIONS(3050), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_EQ_EQ] = ACTIONS(3048), + [anon_sym_BANG_EQ] = ACTIONS(3048), + [anon_sym_LT_EQ] = ACTIONS(3048), + [anon_sym_GT_EQ] = ACTIONS(3048), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_RBRACK] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3050), + [anon_sym_mut] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3048), + [anon_sym_PLUS_PLUS] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_go] = ACTIONS(3050), + [anon_sym_spawn] = ACTIONS(3050), + [anon_sym_json_DOTdecode] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_LBRACK2] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3048), + [anon_sym_CARET] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_LT_DASH] = ACTIONS(3048), + [anon_sym_LT_LT] = ACTIONS(3048), + [anon_sym_GT_GT] = ACTIONS(3050), + [anon_sym_GT_GT_GT] = ACTIONS(3048), + [anon_sym_AMP_CARET] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_PIPE_PIPE] = ACTIONS(3048), + [anon_sym_or] = ACTIONS(3050), + [sym_none] = ACTIONS(3050), + [sym_true] = ACTIONS(3050), + [sym_false] = ACTIONS(3050), + [sym_nil] = ACTIONS(3050), + [anon_sym_QMARK_DOT] = ACTIONS(3048), + [anon_sym_POUND_LBRACK] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3050), + [anon_sym_DOLLARif] = ACTIONS(3050), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3048), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_BANGin] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3050), + [anon_sym_select] = ACTIONS(3050), + [anon_sym_lock] = ACTIONS(3050), + [anon_sym_rlock] = ACTIONS(3050), + [anon_sym_unsafe] = ACTIONS(3050), + [anon_sym_sql] = ACTIONS(3050), + [sym_int_literal] = ACTIONS(3050), + [sym_float_literal] = ACTIONS(3048), + [sym_rune_literal] = ACTIONS(3048), + [anon_sym_SQUOTE] = ACTIONS(3048), + [anon_sym_DQUOTE] = ACTIONS(3048), + [anon_sym_c_SQUOTE] = ACTIONS(3048), + [anon_sym_c_DQUOTE] = ACTIONS(3048), + [anon_sym_r_SQUOTE] = ACTIONS(3048), + [anon_sym_r_DQUOTE] = ACTIONS(3048), + [sym_pseudo_compile_time_identifier] = ACTIONS(3050), + [anon_sym_shared] = ACTIONS(3050), + [anon_sym_map_LBRACK] = ACTIONS(3048), + [anon_sym_chan] = ACTIONS(3050), + [anon_sym_thread] = ACTIONS(3050), + [anon_sym_atomic] = ACTIONS(3050), + }, + [1348] = { + [sym_line_comment] = STATE(1348), + [sym_block_comment] = STATE(1348), + [sym_identifier] = ACTIONS(2779), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2779), + [anon_sym_as] = ACTIONS(2779), + [anon_sym_LBRACE] = ACTIONS(2777), + [anon_sym_COMMA] = ACTIONS(2777), + [anon_sym_RBRACE] = ACTIONS(2777), + [anon_sym_LPAREN] = ACTIONS(2777), + [anon_sym_fn] = ACTIONS(2779), + [anon_sym_PLUS] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_STAR] = ACTIONS(2777), + [anon_sym_SLASH] = ACTIONS(2779), + [anon_sym_PERCENT] = ACTIONS(2777), + [anon_sym_LT] = ACTIONS(2779), + [anon_sym_GT] = ACTIONS(2779), + [anon_sym_EQ_EQ] = ACTIONS(2777), + [anon_sym_BANG_EQ] = ACTIONS(2777), + [anon_sym_LT_EQ] = ACTIONS(2777), + [anon_sym_GT_EQ] = ACTIONS(2777), + [anon_sym_LBRACK] = ACTIONS(2777), + [anon_sym_RBRACK] = ACTIONS(2777), + [anon_sym_struct] = ACTIONS(2779), + [anon_sym_mut] = ACTIONS(2779), + [anon_sym_COLON] = ACTIONS(2777), + [anon_sym_PLUS_PLUS] = ACTIONS(2777), + [anon_sym_DASH_DASH] = ACTIONS(2777), + [anon_sym_QMARK] = ACTIONS(2779), + [anon_sym_BANG] = ACTIONS(2779), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2779), + [anon_sym_json_DOTdecode] = ACTIONS(2777), + [anon_sym_PIPE] = ACTIONS(2779), + [anon_sym_LBRACK2] = ACTIONS(2779), + [anon_sym_TILDE] = ACTIONS(2777), + [anon_sym_CARET] = ACTIONS(2777), + [anon_sym_AMP] = ACTIONS(2779), + [anon_sym_LT_DASH] = ACTIONS(2777), + [anon_sym_LT_LT] = ACTIONS(2777), + [anon_sym_GT_GT] = ACTIONS(2779), + [anon_sym_GT_GT_GT] = ACTIONS(2777), + [anon_sym_AMP_CARET] = ACTIONS(2777), + [anon_sym_AMP_AMP] = ACTIONS(2777), + [anon_sym_PIPE_PIPE] = ACTIONS(2777), + [anon_sym_or] = ACTIONS(2779), + [sym_none] = ACTIONS(2779), + [sym_true] = ACTIONS(2779), + [sym_false] = ACTIONS(2779), + [sym_nil] = ACTIONS(2779), + [anon_sym_QMARK_DOT] = ACTIONS(2777), + [anon_sym_POUND_LBRACK] = ACTIONS(2777), + [anon_sym_if] = ACTIONS(2779), + [anon_sym_DOLLARif] = ACTIONS(2779), + [anon_sym_is] = ACTIONS(2779), + [anon_sym_BANGis] = ACTIONS(2777), + [anon_sym_in] = ACTIONS(2779), + [anon_sym_BANGin] = ACTIONS(2777), + [anon_sym_match] = ACTIONS(2779), + [anon_sym_select] = ACTIONS(2779), + [anon_sym_lock] = ACTIONS(2779), + [anon_sym_rlock] = ACTIONS(2779), + [anon_sym_unsafe] = ACTIONS(2779), + [anon_sym_sql] = ACTIONS(2779), + [sym_int_literal] = ACTIONS(2779), + [sym_float_literal] = ACTIONS(2777), + [sym_rune_literal] = ACTIONS(2777), + [anon_sym_SQUOTE] = ACTIONS(2777), + [anon_sym_DQUOTE] = ACTIONS(2777), + [anon_sym_c_SQUOTE] = ACTIONS(2777), + [anon_sym_c_DQUOTE] = ACTIONS(2777), + [anon_sym_r_SQUOTE] = ACTIONS(2777), + [anon_sym_r_DQUOTE] = ACTIONS(2777), + [sym_pseudo_compile_time_identifier] = ACTIONS(2779), + [anon_sym_shared] = ACTIONS(2779), + [anon_sym_map_LBRACK] = ACTIONS(2777), + [anon_sym_chan] = ACTIONS(2779), + [anon_sym_thread] = ACTIONS(2779), + [anon_sym_atomic] = ACTIONS(2779), + }, + [1349] = { + [sym_line_comment] = STATE(1349), + [sym_block_comment] = STATE(1349), + [sym_identifier] = ACTIONS(3054), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_as] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3052), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_fn] = ACTIONS(3054), + [anon_sym_PLUS] = ACTIONS(3054), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(3052), + [anon_sym_SLASH] = ACTIONS(3054), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3054), + [anon_sym_EQ_EQ] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_RBRACK] = ACTIONS(3052), + [anon_sym_struct] = ACTIONS(3054), + [anon_sym_mut] = ACTIONS(3054), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_PLUS_PLUS] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(3054), + [anon_sym_go] = ACTIONS(3054), + [anon_sym_spawn] = ACTIONS(3054), + [anon_sym_json_DOTdecode] = ACTIONS(3052), + [anon_sym_PIPE] = ACTIONS(3054), + [anon_sym_LBRACK2] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3052), + [anon_sym_CARET] = ACTIONS(3052), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_LT_LT] = ACTIONS(3052), + [anon_sym_GT_GT] = ACTIONS(3054), + [anon_sym_GT_GT_GT] = ACTIONS(3052), + [anon_sym_AMP_CARET] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3054), + [sym_none] = ACTIONS(3054), + [sym_true] = ACTIONS(3054), + [sym_false] = ACTIONS(3054), + [sym_nil] = ACTIONS(3054), + [anon_sym_QMARK_DOT] = ACTIONS(3052), + [anon_sym_POUND_LBRACK] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_DOLLARif] = ACTIONS(3054), + [anon_sym_is] = ACTIONS(3054), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_in] = ACTIONS(3054), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3054), + [anon_sym_select] = ACTIONS(3054), + [anon_sym_lock] = ACTIONS(3054), + [anon_sym_rlock] = ACTIONS(3054), + [anon_sym_unsafe] = ACTIONS(3054), + [anon_sym_sql] = ACTIONS(3054), + [sym_int_literal] = ACTIONS(3054), + [sym_float_literal] = ACTIONS(3052), + [sym_rune_literal] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_c_SQUOTE] = ACTIONS(3052), + [anon_sym_c_DQUOTE] = ACTIONS(3052), + [anon_sym_r_SQUOTE] = ACTIONS(3052), + [anon_sym_r_DQUOTE] = ACTIONS(3052), + [sym_pseudo_compile_time_identifier] = ACTIONS(3054), + [anon_sym_shared] = ACTIONS(3054), + [anon_sym_map_LBRACK] = ACTIONS(3052), + [anon_sym_chan] = ACTIONS(3054), + [anon_sym_thread] = ACTIONS(3054), + [anon_sym_atomic] = ACTIONS(3054), + }, + [1350] = { + [sym_line_comment] = STATE(1350), + [sym_block_comment] = STATE(1350), + [sym_identifier] = ACTIONS(2441), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2441), + [anon_sym_as] = ACTIONS(2441), + [anon_sym_LBRACE] = ACTIONS(2439), + [anon_sym_COMMA] = ACTIONS(2439), + [anon_sym_RBRACE] = ACTIONS(2439), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_fn] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2441), + [anon_sym_DASH] = ACTIONS(2441), + [anon_sym_STAR] = ACTIONS(2439), + [anon_sym_SLASH] = ACTIONS(2441), + [anon_sym_PERCENT] = ACTIONS(2439), + [anon_sym_LT] = ACTIONS(2441), + [anon_sym_GT] = ACTIONS(2441), + [anon_sym_EQ_EQ] = ACTIONS(2439), + [anon_sym_BANG_EQ] = ACTIONS(2439), + [anon_sym_LT_EQ] = ACTIONS(2439), + [anon_sym_GT_EQ] = ACTIONS(2439), + [anon_sym_LBRACK] = ACTIONS(2439), + [anon_sym_RBRACK] = ACTIONS(2439), + [anon_sym_struct] = ACTIONS(2441), + [anon_sym_mut] = ACTIONS(2441), + [anon_sym_COLON] = ACTIONS(2439), + [anon_sym_PLUS_PLUS] = ACTIONS(2439), + [anon_sym_DASH_DASH] = ACTIONS(2439), + [anon_sym_QMARK] = ACTIONS(2441), + [anon_sym_BANG] = ACTIONS(2441), + [anon_sym_go] = ACTIONS(2441), + [anon_sym_spawn] = ACTIONS(2441), + [anon_sym_json_DOTdecode] = ACTIONS(2439), + [anon_sym_PIPE] = ACTIONS(2441), + [anon_sym_LBRACK2] = ACTIONS(2441), + [anon_sym_TILDE] = ACTIONS(2439), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(2441), + [anon_sym_LT_DASH] = ACTIONS(2439), + [anon_sym_LT_LT] = ACTIONS(2439), + [anon_sym_GT_GT] = ACTIONS(2441), + [anon_sym_GT_GT_GT] = ACTIONS(2439), + [anon_sym_AMP_CARET] = ACTIONS(2439), + [anon_sym_AMP_AMP] = ACTIONS(2439), + [anon_sym_PIPE_PIPE] = ACTIONS(2439), + [anon_sym_or] = ACTIONS(2441), + [sym_none] = ACTIONS(2441), + [sym_true] = ACTIONS(2441), + [sym_false] = ACTIONS(2441), + [sym_nil] = ACTIONS(2441), + [anon_sym_QMARK_DOT] = ACTIONS(2439), + [anon_sym_POUND_LBRACK] = ACTIONS(2439), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_DOLLARif] = ACTIONS(2441), + [anon_sym_is] = ACTIONS(2441), + [anon_sym_BANGis] = ACTIONS(2439), + [anon_sym_in] = ACTIONS(2441), + [anon_sym_BANGin] = ACTIONS(2439), + [anon_sym_match] = ACTIONS(2441), + [anon_sym_select] = ACTIONS(2441), + [anon_sym_lock] = ACTIONS(2441), + [anon_sym_rlock] = ACTIONS(2441), + [anon_sym_unsafe] = ACTIONS(2441), + [anon_sym_sql] = ACTIONS(2441), + [sym_int_literal] = ACTIONS(2441), + [sym_float_literal] = ACTIONS(2439), + [sym_rune_literal] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(2439), + [anon_sym_c_SQUOTE] = ACTIONS(2439), + [anon_sym_c_DQUOTE] = ACTIONS(2439), + [anon_sym_r_SQUOTE] = ACTIONS(2439), + [anon_sym_r_DQUOTE] = ACTIONS(2439), + [sym_pseudo_compile_time_identifier] = ACTIONS(2441), + [anon_sym_shared] = ACTIONS(2441), + [anon_sym_map_LBRACK] = ACTIONS(2439), + [anon_sym_chan] = ACTIONS(2441), + [anon_sym_thread] = ACTIONS(2441), + [anon_sym_atomic] = ACTIONS(2441), + }, + [1351] = { + [sym_line_comment] = STATE(1351), + [sym_block_comment] = STATE(1351), + [sym_identifier] = ACTIONS(2433), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2433), + [anon_sym_as] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_COMMA] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(2431), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_fn] = ACTIONS(2433), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2431), + [anon_sym_SLASH] = ACTIONS(2433), + [anon_sym_PERCENT] = ACTIONS(2431), + [anon_sym_LT] = ACTIONS(2433), + [anon_sym_GT] = ACTIONS(2433), + [anon_sym_EQ_EQ] = ACTIONS(2431), + [anon_sym_BANG_EQ] = ACTIONS(2431), + [anon_sym_LT_EQ] = ACTIONS(2431), + [anon_sym_GT_EQ] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2431), + [anon_sym_RBRACK] = ACTIONS(2431), + [anon_sym_struct] = ACTIONS(2433), + [anon_sym_mut] = ACTIONS(2433), + [anon_sym_COLON] = ACTIONS(2431), + [anon_sym_PLUS_PLUS] = ACTIONS(2431), + [anon_sym_DASH_DASH] = ACTIONS(2431), + [anon_sym_QMARK] = ACTIONS(2433), + [anon_sym_BANG] = ACTIONS(2433), + [anon_sym_go] = ACTIONS(2433), + [anon_sym_spawn] = ACTIONS(2433), + [anon_sym_json_DOTdecode] = ACTIONS(2431), + [anon_sym_PIPE] = ACTIONS(2433), + [anon_sym_LBRACK2] = ACTIONS(2433), + [anon_sym_TILDE] = ACTIONS(2431), + [anon_sym_CARET] = ACTIONS(2431), + [anon_sym_AMP] = ACTIONS(2433), + [anon_sym_LT_DASH] = ACTIONS(2431), + [anon_sym_LT_LT] = ACTIONS(2431), + [anon_sym_GT_GT] = ACTIONS(2433), + [anon_sym_GT_GT_GT] = ACTIONS(2431), + [anon_sym_AMP_CARET] = ACTIONS(2431), + [anon_sym_AMP_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2431), + [anon_sym_or] = ACTIONS(2433), + [sym_none] = ACTIONS(2433), + [sym_true] = ACTIONS(2433), + [sym_false] = ACTIONS(2433), + [sym_nil] = ACTIONS(2433), + [anon_sym_QMARK_DOT] = ACTIONS(2431), + [anon_sym_POUND_LBRACK] = ACTIONS(2431), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_DOLLARif] = ACTIONS(2433), + [anon_sym_is] = ACTIONS(2433), + [anon_sym_BANGis] = ACTIONS(2431), + [anon_sym_in] = ACTIONS(2433), + [anon_sym_BANGin] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2433), + [anon_sym_select] = ACTIONS(2433), + [anon_sym_lock] = ACTIONS(2433), + [anon_sym_rlock] = ACTIONS(2433), + [anon_sym_unsafe] = ACTIONS(2433), + [anon_sym_sql] = ACTIONS(2433), + [sym_int_literal] = ACTIONS(2433), + [sym_float_literal] = ACTIONS(2431), + [sym_rune_literal] = ACTIONS(2431), + [anon_sym_SQUOTE] = ACTIONS(2431), + [anon_sym_DQUOTE] = ACTIONS(2431), + [anon_sym_c_SQUOTE] = ACTIONS(2431), + [anon_sym_c_DQUOTE] = ACTIONS(2431), + [anon_sym_r_SQUOTE] = ACTIONS(2431), + [anon_sym_r_DQUOTE] = ACTIONS(2431), + [sym_pseudo_compile_time_identifier] = ACTIONS(2433), + [anon_sym_shared] = ACTIONS(2433), + [anon_sym_map_LBRACK] = ACTIONS(2431), + [anon_sym_chan] = ACTIONS(2433), + [anon_sym_thread] = ACTIONS(2433), + [anon_sym_atomic] = ACTIONS(2433), + }, + [1352] = { + [sym_line_comment] = STATE(1352), + [sym_block_comment] = STATE(1352), + [sym_identifier] = ACTIONS(2425), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2425), + [anon_sym_as] = ACTIONS(2425), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_COMMA] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_fn] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2425), + [anon_sym_DASH] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_SLASH] = ACTIONS(2425), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_LT] = ACTIONS(2425), + [anon_sym_GT] = ACTIONS(2425), + [anon_sym_EQ_EQ] = ACTIONS(2423), + [anon_sym_BANG_EQ] = ACTIONS(2423), + [anon_sym_LT_EQ] = ACTIONS(2423), + [anon_sym_GT_EQ] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(2423), + [anon_sym_RBRACK] = ACTIONS(2423), + [anon_sym_struct] = ACTIONS(2425), + [anon_sym_mut] = ACTIONS(2425), + [anon_sym_COLON] = ACTIONS(2423), + [anon_sym_PLUS_PLUS] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(2423), + [anon_sym_QMARK] = ACTIONS(2425), + [anon_sym_BANG] = ACTIONS(2425), + [anon_sym_go] = ACTIONS(2425), + [anon_sym_spawn] = ACTIONS(2425), + [anon_sym_json_DOTdecode] = ACTIONS(2423), + [anon_sym_PIPE] = ACTIONS(2425), + [anon_sym_LBRACK2] = ACTIONS(2425), + [anon_sym_TILDE] = ACTIONS(2423), + [anon_sym_CARET] = ACTIONS(2423), + [anon_sym_AMP] = ACTIONS(2425), + [anon_sym_LT_DASH] = ACTIONS(2423), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_GT_GT] = ACTIONS(2425), + [anon_sym_GT_GT_GT] = ACTIONS(2423), + [anon_sym_AMP_CARET] = ACTIONS(2423), + [anon_sym_AMP_AMP] = ACTIONS(2423), + [anon_sym_PIPE_PIPE] = ACTIONS(2423), + [anon_sym_or] = ACTIONS(2425), + [sym_none] = ACTIONS(2425), + [sym_true] = ACTIONS(2425), + [sym_false] = ACTIONS(2425), + [sym_nil] = ACTIONS(2425), + [anon_sym_QMARK_DOT] = ACTIONS(2423), + [anon_sym_POUND_LBRACK] = ACTIONS(2423), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_DOLLARif] = ACTIONS(2425), + [anon_sym_is] = ACTIONS(2425), + [anon_sym_BANGis] = ACTIONS(2423), + [anon_sym_in] = ACTIONS(2425), + [anon_sym_BANGin] = ACTIONS(2423), + [anon_sym_match] = ACTIONS(2425), + [anon_sym_select] = ACTIONS(2425), + [anon_sym_lock] = ACTIONS(2425), + [anon_sym_rlock] = ACTIONS(2425), + [anon_sym_unsafe] = ACTIONS(2425), + [anon_sym_sql] = ACTIONS(2425), + [sym_int_literal] = ACTIONS(2425), + [sym_float_literal] = ACTIONS(2423), + [sym_rune_literal] = ACTIONS(2423), + [anon_sym_SQUOTE] = ACTIONS(2423), + [anon_sym_DQUOTE] = ACTIONS(2423), + [anon_sym_c_SQUOTE] = ACTIONS(2423), + [anon_sym_c_DQUOTE] = ACTIONS(2423), + [anon_sym_r_SQUOTE] = ACTIONS(2423), + [anon_sym_r_DQUOTE] = ACTIONS(2423), + [sym_pseudo_compile_time_identifier] = ACTIONS(2425), + [anon_sym_shared] = ACTIONS(2425), + [anon_sym_map_LBRACK] = ACTIONS(2423), + [anon_sym_chan] = ACTIONS(2425), + [anon_sym_thread] = ACTIONS(2425), + [anon_sym_atomic] = ACTIONS(2425), + }, + [1353] = { + [sym_line_comment] = STATE(1353), + [sym_block_comment] = STATE(1353), + [sym_identifier] = ACTIONS(2421), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2421), + [anon_sym_as] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_COMMA] = ACTIONS(2419), + [anon_sym_RBRACE] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_fn] = ACTIONS(2421), + [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_SLASH] = ACTIONS(2421), + [anon_sym_PERCENT] = ACTIONS(2419), + [anon_sym_LT] = ACTIONS(2421), + [anon_sym_GT] = ACTIONS(2421), + [anon_sym_EQ_EQ] = ACTIONS(2419), + [anon_sym_BANG_EQ] = ACTIONS(2419), + [anon_sym_LT_EQ] = ACTIONS(2419), + [anon_sym_GT_EQ] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_RBRACK] = ACTIONS(2419), + [anon_sym_struct] = ACTIONS(2421), + [anon_sym_mut] = ACTIONS(2421), + [anon_sym_COLON] = ACTIONS(2419), + [anon_sym_PLUS_PLUS] = ACTIONS(2419), + [anon_sym_DASH_DASH] = ACTIONS(2419), + [anon_sym_QMARK] = ACTIONS(2421), + [anon_sym_BANG] = ACTIONS(2421), + [anon_sym_go] = ACTIONS(2421), + [anon_sym_spawn] = ACTIONS(2421), + [anon_sym_json_DOTdecode] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2421), + [anon_sym_LBRACK2] = ACTIONS(2421), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_CARET] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2421), + [anon_sym_LT_DASH] = ACTIONS(2419), + [anon_sym_LT_LT] = ACTIONS(2419), + [anon_sym_GT_GT] = ACTIONS(2421), + [anon_sym_GT_GT_GT] = ACTIONS(2419), + [anon_sym_AMP_CARET] = ACTIONS(2419), + [anon_sym_AMP_AMP] = ACTIONS(2419), + [anon_sym_PIPE_PIPE] = ACTIONS(2419), + [anon_sym_or] = ACTIONS(2421), + [sym_none] = ACTIONS(2421), + [sym_true] = ACTIONS(2421), + [sym_false] = ACTIONS(2421), + [sym_nil] = ACTIONS(2421), + [anon_sym_QMARK_DOT] = ACTIONS(2419), + [anon_sym_POUND_LBRACK] = ACTIONS(2419), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_DOLLARif] = ACTIONS(2421), + [anon_sym_is] = ACTIONS(2421), + [anon_sym_BANGis] = ACTIONS(2419), + [anon_sym_in] = ACTIONS(2421), + [anon_sym_BANGin] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2421), + [anon_sym_select] = ACTIONS(2421), + [anon_sym_lock] = ACTIONS(2421), + [anon_sym_rlock] = ACTIONS(2421), + [anon_sym_unsafe] = ACTIONS(2421), + [anon_sym_sql] = ACTIONS(2421), + [sym_int_literal] = ACTIONS(2421), + [sym_float_literal] = ACTIONS(2419), + [sym_rune_literal] = ACTIONS(2419), + [anon_sym_SQUOTE] = ACTIONS(2419), + [anon_sym_DQUOTE] = ACTIONS(2419), + [anon_sym_c_SQUOTE] = ACTIONS(2419), + [anon_sym_c_DQUOTE] = ACTIONS(2419), + [anon_sym_r_SQUOTE] = ACTIONS(2419), + [anon_sym_r_DQUOTE] = ACTIONS(2419), + [sym_pseudo_compile_time_identifier] = ACTIONS(2421), + [anon_sym_shared] = ACTIONS(2421), + [anon_sym_map_LBRACK] = ACTIONS(2419), + [anon_sym_chan] = ACTIONS(2421), + [anon_sym_thread] = ACTIONS(2421), + [anon_sym_atomic] = ACTIONS(2421), + }, + [1354] = { + [sym_line_comment] = STATE(1354), + [sym_block_comment] = STATE(1354), + [sym_identifier] = ACTIONS(2937), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(3945), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_as] = ACTIONS(2937), + [anon_sym_LBRACE] = ACTIONS(2935), + [anon_sym_COMMA] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2935), + [anon_sym_fn] = ACTIONS(2937), + [anon_sym_PLUS] = ACTIONS(2937), + [anon_sym_DASH] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_SLASH] = ACTIONS(2937), + [anon_sym_PERCENT] = ACTIONS(2935), + [anon_sym_LT] = ACTIONS(2937), + [anon_sym_GT] = ACTIONS(2937), + [anon_sym_EQ_EQ] = ACTIONS(2935), + [anon_sym_BANG_EQ] = ACTIONS(2935), + [anon_sym_LT_EQ] = ACTIONS(2935), + [anon_sym_GT_EQ] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2935), + [anon_sym_RBRACK] = ACTIONS(3945), + [anon_sym_struct] = ACTIONS(2937), + [anon_sym_mut] = ACTIONS(2937), + [anon_sym_COLON] = ACTIONS(3945), + [anon_sym_PLUS_PLUS] = ACTIONS(2935), + [anon_sym_DASH_DASH] = ACTIONS(2935), + [anon_sym_QMARK] = ACTIONS(2937), + [anon_sym_BANG] = ACTIONS(2937), + [anon_sym_go] = ACTIONS(2937), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2935), + [anon_sym_PIPE] = ACTIONS(2937), + [anon_sym_LBRACK2] = ACTIONS(2937), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_CARET] = ACTIONS(2935), + [anon_sym_AMP] = ACTIONS(2937), + [anon_sym_LT_DASH] = ACTIONS(2935), + [anon_sym_LT_LT] = ACTIONS(2935), + [anon_sym_GT_GT] = ACTIONS(2937), + [anon_sym_GT_GT_GT] = ACTIONS(2935), + [anon_sym_AMP_CARET] = ACTIONS(2935), + [anon_sym_AMP_AMP] = ACTIONS(2935), + [anon_sym_PIPE_PIPE] = ACTIONS(2935), + [anon_sym_or] = ACTIONS(2937), + [sym_none] = ACTIONS(2937), + [sym_true] = ACTIONS(2937), + [sym_false] = ACTIONS(2937), + [sym_nil] = ACTIONS(2937), + [anon_sym_QMARK_DOT] = ACTIONS(2935), + [anon_sym_POUND_LBRACK] = ACTIONS(2935), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_DOLLARif] = ACTIONS(2937), + [anon_sym_is] = ACTIONS(2937), + [anon_sym_BANGis] = ACTIONS(2935), + [anon_sym_in] = ACTIONS(2937), + [anon_sym_BANGin] = ACTIONS(2935), + [anon_sym_match] = ACTIONS(2937), + [anon_sym_select] = ACTIONS(2937), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(2937), + [anon_sym_sql] = ACTIONS(2937), + [sym_int_literal] = ACTIONS(2937), + [sym_float_literal] = ACTIONS(2935), + [sym_rune_literal] = ACTIONS(2935), + [anon_sym_SQUOTE] = ACTIONS(2935), + [anon_sym_DQUOTE] = ACTIONS(2935), + [anon_sym_c_SQUOTE] = ACTIONS(2935), + [anon_sym_c_DQUOTE] = ACTIONS(2935), + [anon_sym_r_SQUOTE] = ACTIONS(2935), + [anon_sym_r_DQUOTE] = ACTIONS(2935), + [sym_pseudo_compile_time_identifier] = ACTIONS(2937), + [anon_sym_shared] = ACTIONS(2937), + [anon_sym_map_LBRACK] = ACTIONS(2935), + [anon_sym_chan] = ACTIONS(2937), + [anon_sym_thread] = ACTIONS(2937), + [anon_sym_atomic] = ACTIONS(2937), + }, + [1355] = { + [sym_line_comment] = STATE(1355), + [sym_block_comment] = STATE(1355), + [sym_identifier] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2639), + [anon_sym_as] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_COMMA] = ACTIONS(2637), + [anon_sym_RBRACE] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2637), + [anon_sym_fn] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_SLASH] = ACTIONS(2639), + [anon_sym_PERCENT] = ACTIONS(2637), + [anon_sym_LT] = ACTIONS(2639), + [anon_sym_GT] = ACTIONS(2639), + [anon_sym_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ] = ACTIONS(2637), + [anon_sym_LT_EQ] = ACTIONS(2637), + [anon_sym_GT_EQ] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_RBRACK] = ACTIONS(2637), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_mut] = ACTIONS(2639), + [anon_sym_COLON] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_QMARK] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_go] = ACTIONS(2639), + [anon_sym_spawn] = ACTIONS(2639), + [anon_sym_json_DOTdecode] = ACTIONS(2637), + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_LBRACK2] = ACTIONS(2639), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_CARET] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_LT_DASH] = ACTIONS(2637), + [anon_sym_LT_LT] = ACTIONS(2637), + [anon_sym_GT_GT] = ACTIONS(2639), + [anon_sym_GT_GT_GT] = ACTIONS(2637), + [anon_sym_AMP_CARET] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_or] = ACTIONS(2639), + [sym_none] = ACTIONS(2639), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [sym_nil] = ACTIONS(2639), + [anon_sym_QMARK_DOT] = ACTIONS(2637), + [anon_sym_POUND_LBRACK] = ACTIONS(2637), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_DOLLARif] = ACTIONS(2639), + [anon_sym_is] = ACTIONS(2639), + [anon_sym_BANGis] = ACTIONS(2637), + [anon_sym_in] = ACTIONS(2639), + [anon_sym_BANGin] = ACTIONS(2637), + [anon_sym_match] = ACTIONS(2639), + [anon_sym_select] = ACTIONS(2639), + [anon_sym_lock] = ACTIONS(2639), + [anon_sym_rlock] = ACTIONS(2639), + [anon_sym_unsafe] = ACTIONS(2639), + [anon_sym_sql] = ACTIONS(2639), + [sym_int_literal] = ACTIONS(2639), + [sym_float_literal] = ACTIONS(2637), + [sym_rune_literal] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [anon_sym_c_SQUOTE] = ACTIONS(2637), + [anon_sym_c_DQUOTE] = ACTIONS(2637), + [anon_sym_r_SQUOTE] = ACTIONS(2637), + [anon_sym_r_DQUOTE] = ACTIONS(2637), + [sym_pseudo_compile_time_identifier] = ACTIONS(2639), + [anon_sym_shared] = ACTIONS(2639), + [anon_sym_map_LBRACK] = ACTIONS(2637), + [anon_sym_chan] = ACTIONS(2639), + [anon_sym_thread] = ACTIONS(2639), + [anon_sym_atomic] = ACTIONS(2639), + }, + [1356] = { + [sym_line_comment] = STATE(1356), + [sym_block_comment] = STATE(1356), + [sym_identifier] = ACTIONS(2941), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [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_fn] = ACTIONS(2941), + [anon_sym_PLUS] = ACTIONS(2941), + [anon_sym_DASH] = ACTIONS(2941), + [anon_sym_STAR] = ACTIONS(2939), + [anon_sym_SLASH] = ACTIONS(2941), + [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_PIPE] = ACTIONS(2941), + [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), + [anon_sym_SQUOTE] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(2939), + [anon_sym_c_SQUOTE] = ACTIONS(2939), + [anon_sym_c_DQUOTE] = ACTIONS(2939), + [anon_sym_r_SQUOTE] = ACTIONS(2939), + [anon_sym_r_DQUOTE] = 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), + }, + [1357] = { + [sym_line_comment] = STATE(1357), + [sym_block_comment] = STATE(1357), + [sym_identifier] = ACTIONS(2387), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2387), + [anon_sym_as] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2385), + [anon_sym_COMMA] = ACTIONS(2385), + [anon_sym_RBRACE] = ACTIONS(2385), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_fn] = ACTIONS(2387), + [anon_sym_PLUS] = ACTIONS(2387), + [anon_sym_DASH] = ACTIONS(2387), + [anon_sym_STAR] = ACTIONS(2385), + [anon_sym_SLASH] = ACTIONS(2387), + [anon_sym_PERCENT] = ACTIONS(2385), + [anon_sym_LT] = ACTIONS(2387), + [anon_sym_GT] = ACTIONS(2387), + [anon_sym_EQ_EQ] = ACTIONS(2385), + [anon_sym_BANG_EQ] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(2385), + [anon_sym_GT_EQ] = ACTIONS(2385), + [anon_sym_LBRACK] = ACTIONS(2385), + [anon_sym_RBRACK] = ACTIONS(2385), + [anon_sym_struct] = ACTIONS(2387), + [anon_sym_mut] = ACTIONS(2387), + [anon_sym_COLON] = ACTIONS(2385), + [anon_sym_PLUS_PLUS] = ACTIONS(2385), + [anon_sym_DASH_DASH] = ACTIONS(2385), + [anon_sym_QMARK] = ACTIONS(2387), + [anon_sym_BANG] = ACTIONS(2387), + [anon_sym_go] = ACTIONS(2387), + [anon_sym_spawn] = ACTIONS(2387), + [anon_sym_json_DOTdecode] = ACTIONS(2385), + [anon_sym_PIPE] = ACTIONS(2387), + [anon_sym_LBRACK2] = ACTIONS(2387), + [anon_sym_TILDE] = ACTIONS(2385), + [anon_sym_CARET] = ACTIONS(2385), + [anon_sym_AMP] = ACTIONS(2387), + [anon_sym_LT_DASH] = ACTIONS(2385), + [anon_sym_LT_LT] = ACTIONS(2385), + [anon_sym_GT_GT] = ACTIONS(2387), + [anon_sym_GT_GT_GT] = ACTIONS(2385), + [anon_sym_AMP_CARET] = ACTIONS(2385), + [anon_sym_AMP_AMP] = ACTIONS(2385), + [anon_sym_PIPE_PIPE] = ACTIONS(2385), + [anon_sym_or] = ACTIONS(2387), + [sym_none] = ACTIONS(2387), + [sym_true] = ACTIONS(2387), + [sym_false] = ACTIONS(2387), + [sym_nil] = ACTIONS(2387), + [anon_sym_QMARK_DOT] = ACTIONS(2385), + [anon_sym_POUND_LBRACK] = ACTIONS(2385), + [anon_sym_if] = ACTIONS(2387), + [anon_sym_DOLLARif] = ACTIONS(2387), + [anon_sym_is] = ACTIONS(2387), + [anon_sym_BANGis] = ACTIONS(2385), + [anon_sym_in] = ACTIONS(2387), + [anon_sym_BANGin] = ACTIONS(2385), + [anon_sym_match] = ACTIONS(2387), + [anon_sym_select] = ACTIONS(2387), + [anon_sym_lock] = ACTIONS(2387), + [anon_sym_rlock] = ACTIONS(2387), + [anon_sym_unsafe] = ACTIONS(2387), + [anon_sym_sql] = ACTIONS(2387), + [sym_int_literal] = ACTIONS(2387), + [sym_float_literal] = ACTIONS(2385), + [sym_rune_literal] = ACTIONS(2385), + [anon_sym_SQUOTE] = ACTIONS(2385), + [anon_sym_DQUOTE] = ACTIONS(2385), + [anon_sym_c_SQUOTE] = ACTIONS(2385), + [anon_sym_c_DQUOTE] = ACTIONS(2385), + [anon_sym_r_SQUOTE] = ACTIONS(2385), + [anon_sym_r_DQUOTE] = ACTIONS(2385), + [sym_pseudo_compile_time_identifier] = ACTIONS(2387), + [anon_sym_shared] = ACTIONS(2387), + [anon_sym_map_LBRACK] = ACTIONS(2385), + [anon_sym_chan] = ACTIONS(2387), + [anon_sym_thread] = ACTIONS(2387), + [anon_sym_atomic] = ACTIONS(2387), + }, + [1358] = { + [sym_line_comment] = STATE(1358), + [sym_block_comment] = STATE(1358), + [sym_identifier] = ACTIONS(2383), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2383), + [anon_sym_as] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_COMMA] = ACTIONS(2381), + [anon_sym_RBRACE] = ACTIONS(2381), + [anon_sym_LPAREN] = ACTIONS(2381), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_PLUS] = ACTIONS(2383), + [anon_sym_DASH] = ACTIONS(2383), + [anon_sym_STAR] = ACTIONS(2381), + [anon_sym_SLASH] = ACTIONS(2383), + [anon_sym_PERCENT] = ACTIONS(2381), + [anon_sym_LT] = ACTIONS(2383), + [anon_sym_GT] = ACTIONS(2383), + [anon_sym_EQ_EQ] = ACTIONS(2381), + [anon_sym_BANG_EQ] = ACTIONS(2381), + [anon_sym_LT_EQ] = ACTIONS(2381), + [anon_sym_GT_EQ] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2381), + [anon_sym_RBRACK] = ACTIONS(2381), + [anon_sym_struct] = ACTIONS(2383), + [anon_sym_mut] = ACTIONS(2383), + [anon_sym_COLON] = ACTIONS(2381), + [anon_sym_PLUS_PLUS] = ACTIONS(2381), + [anon_sym_DASH_DASH] = ACTIONS(2381), + [anon_sym_QMARK] = ACTIONS(2383), + [anon_sym_BANG] = ACTIONS(2383), + [anon_sym_go] = ACTIONS(2383), + [anon_sym_spawn] = ACTIONS(2383), + [anon_sym_json_DOTdecode] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2383), + [anon_sym_LBRACK2] = ACTIONS(2383), + [anon_sym_TILDE] = ACTIONS(2381), + [anon_sym_CARET] = ACTIONS(2381), + [anon_sym_AMP] = ACTIONS(2383), + [anon_sym_LT_DASH] = ACTIONS(2381), + [anon_sym_LT_LT] = ACTIONS(2381), + [anon_sym_GT_GT] = ACTIONS(2383), + [anon_sym_GT_GT_GT] = ACTIONS(2381), + [anon_sym_AMP_CARET] = ACTIONS(2381), + [anon_sym_AMP_AMP] = ACTIONS(2381), + [anon_sym_PIPE_PIPE] = ACTIONS(2381), + [anon_sym_or] = ACTIONS(2383), + [sym_none] = ACTIONS(2383), + [sym_true] = ACTIONS(2383), + [sym_false] = ACTIONS(2383), + [sym_nil] = ACTIONS(2383), + [anon_sym_QMARK_DOT] = ACTIONS(2381), + [anon_sym_POUND_LBRACK] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2383), + [anon_sym_DOLLARif] = ACTIONS(2383), + [anon_sym_is] = ACTIONS(2383), + [anon_sym_BANGis] = ACTIONS(2381), + [anon_sym_in] = ACTIONS(2383), + [anon_sym_BANGin] = ACTIONS(2381), + [anon_sym_match] = ACTIONS(2383), + [anon_sym_select] = ACTIONS(2383), + [anon_sym_lock] = ACTIONS(2383), + [anon_sym_rlock] = ACTIONS(2383), + [anon_sym_unsafe] = ACTIONS(2383), + [anon_sym_sql] = ACTIONS(2383), + [sym_int_literal] = ACTIONS(2383), + [sym_float_literal] = ACTIONS(2381), + [sym_rune_literal] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(2381), + [anon_sym_DQUOTE] = ACTIONS(2381), + [anon_sym_c_SQUOTE] = ACTIONS(2381), + [anon_sym_c_DQUOTE] = ACTIONS(2381), + [anon_sym_r_SQUOTE] = ACTIONS(2381), + [anon_sym_r_DQUOTE] = ACTIONS(2381), + [sym_pseudo_compile_time_identifier] = ACTIONS(2383), + [anon_sym_shared] = ACTIONS(2383), + [anon_sym_map_LBRACK] = ACTIONS(2381), + [anon_sym_chan] = ACTIONS(2383), + [anon_sym_thread] = ACTIONS(2383), + [anon_sym_atomic] = ACTIONS(2383), + }, + [1359] = { + [sym_line_comment] = STATE(1359), + [sym_block_comment] = STATE(1359), + [sym_identifier] = ACTIONS(2961), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2961), + [anon_sym_as] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_COMMA] = ACTIONS(2959), + [anon_sym_RBRACE] = ACTIONS(2959), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_fn] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2959), + [anon_sym_SLASH] = ACTIONS(2961), + [anon_sym_PERCENT] = ACTIONS(2959), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_EQ_EQ] = ACTIONS(2959), + [anon_sym_BANG_EQ] = ACTIONS(2959), + [anon_sym_LT_EQ] = ACTIONS(2959), + [anon_sym_GT_EQ] = ACTIONS(2959), + [anon_sym_LBRACK] = ACTIONS(2959), + [anon_sym_RBRACK] = ACTIONS(2959), + [anon_sym_struct] = ACTIONS(2961), + [anon_sym_mut] = ACTIONS(2961), + [anon_sym_COLON] = ACTIONS(2959), + [anon_sym_PLUS_PLUS] = ACTIONS(2959), + [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_BANG] = ACTIONS(2961), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2961), + [anon_sym_json_DOTdecode] = ACTIONS(2959), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_LBRACK2] = ACTIONS(2961), + [anon_sym_TILDE] = ACTIONS(2959), + [anon_sym_CARET] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2959), + [anon_sym_LT_LT] = ACTIONS(2959), + [anon_sym_GT_GT] = ACTIONS(2961), + [anon_sym_GT_GT_GT] = ACTIONS(2959), + [anon_sym_AMP_CARET] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_PIPE_PIPE] = ACTIONS(2959), + [anon_sym_or] = ACTIONS(2961), + [sym_none] = ACTIONS(2961), + [sym_true] = ACTIONS(2961), + [sym_false] = ACTIONS(2961), + [sym_nil] = ACTIONS(2961), + [anon_sym_QMARK_DOT] = ACTIONS(2959), + [anon_sym_POUND_LBRACK] = ACTIONS(2959), + [anon_sym_if] = ACTIONS(2961), + [anon_sym_DOLLARif] = ACTIONS(2961), + [anon_sym_is] = ACTIONS(2961), + [anon_sym_BANGis] = ACTIONS(2959), + [anon_sym_in] = ACTIONS(2961), + [anon_sym_BANGin] = ACTIONS(2959), + [anon_sym_match] = ACTIONS(2961), + [anon_sym_select] = ACTIONS(2961), + [anon_sym_lock] = ACTIONS(2961), + [anon_sym_rlock] = ACTIONS(2961), + [anon_sym_unsafe] = ACTIONS(2961), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2961), + [sym_float_literal] = ACTIONS(2959), + [sym_rune_literal] = ACTIONS(2959), + [anon_sym_SQUOTE] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [anon_sym_c_SQUOTE] = ACTIONS(2959), + [anon_sym_c_DQUOTE] = ACTIONS(2959), + [anon_sym_r_SQUOTE] = ACTIONS(2959), + [anon_sym_r_DQUOTE] = ACTIONS(2959), + [sym_pseudo_compile_time_identifier] = ACTIONS(2961), + [anon_sym_shared] = ACTIONS(2961), + [anon_sym_map_LBRACK] = ACTIONS(2959), + [anon_sym_chan] = ACTIONS(2961), + [anon_sym_thread] = ACTIONS(2961), + [anon_sym_atomic] = ACTIONS(2961), + }, + [1360] = { + [sym_line_comment] = STATE(1360), + [sym_block_comment] = STATE(1360), + [sym_identifier] = ACTIONS(2929), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2929), + [anon_sym_as] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2927), + [anon_sym_COMMA] = ACTIONS(2927), + [anon_sym_RBRACE] = ACTIONS(2927), + [anon_sym_LPAREN] = ACTIONS(2927), + [anon_sym_fn] = ACTIONS(2929), + [anon_sym_PLUS] = ACTIONS(2929), + [anon_sym_DASH] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2927), + [anon_sym_SLASH] = ACTIONS(2929), + [anon_sym_PERCENT] = ACTIONS(2927), + [anon_sym_LT] = ACTIONS(2929), + [anon_sym_GT] = ACTIONS(2929), + [anon_sym_EQ_EQ] = ACTIONS(2927), + [anon_sym_BANG_EQ] = ACTIONS(2927), + [anon_sym_LT_EQ] = ACTIONS(2927), + [anon_sym_GT_EQ] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_RBRACK] = ACTIONS(2927), + [anon_sym_struct] = ACTIONS(2929), + [anon_sym_mut] = ACTIONS(2929), + [anon_sym_COLON] = ACTIONS(2927), + [anon_sym_PLUS_PLUS] = ACTIONS(2927), + [anon_sym_DASH_DASH] = ACTIONS(2927), + [anon_sym_QMARK] = ACTIONS(2929), + [anon_sym_BANG] = ACTIONS(2929), + [anon_sym_go] = ACTIONS(2929), + [anon_sym_spawn] = ACTIONS(2929), + [anon_sym_json_DOTdecode] = ACTIONS(2927), + [anon_sym_PIPE] = ACTIONS(2929), + [anon_sym_LBRACK2] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_LT_DASH] = ACTIONS(2927), + [anon_sym_LT_LT] = ACTIONS(2927), + [anon_sym_GT_GT] = ACTIONS(2929), + [anon_sym_GT_GT_GT] = ACTIONS(2927), + [anon_sym_AMP_CARET] = ACTIONS(2927), + [anon_sym_AMP_AMP] = ACTIONS(2927), + [anon_sym_PIPE_PIPE] = ACTIONS(2927), + [anon_sym_or] = ACTIONS(2929), + [sym_none] = ACTIONS(2929), + [sym_true] = ACTIONS(2929), + [sym_false] = ACTIONS(2929), + [sym_nil] = ACTIONS(2929), + [anon_sym_QMARK_DOT] = ACTIONS(2927), + [anon_sym_POUND_LBRACK] = ACTIONS(2927), + [anon_sym_if] = ACTIONS(2929), + [anon_sym_DOLLARif] = ACTIONS(2929), + [anon_sym_is] = ACTIONS(2929), + [anon_sym_BANGis] = ACTIONS(2927), + [anon_sym_in] = ACTIONS(2929), + [anon_sym_BANGin] = ACTIONS(2927), + [anon_sym_match] = ACTIONS(2929), + [anon_sym_select] = ACTIONS(2929), + [anon_sym_lock] = ACTIONS(2929), + [anon_sym_rlock] = ACTIONS(2929), + [anon_sym_unsafe] = ACTIONS(2929), + [anon_sym_sql] = ACTIONS(2929), + [sym_int_literal] = ACTIONS(2929), + [sym_float_literal] = ACTIONS(2927), + [sym_rune_literal] = ACTIONS(2927), + [anon_sym_SQUOTE] = ACTIONS(2927), + [anon_sym_DQUOTE] = ACTIONS(2927), + [anon_sym_c_SQUOTE] = ACTIONS(2927), + [anon_sym_c_DQUOTE] = ACTIONS(2927), + [anon_sym_r_SQUOTE] = ACTIONS(2927), + [anon_sym_r_DQUOTE] = ACTIONS(2927), + [sym_pseudo_compile_time_identifier] = ACTIONS(2929), + [anon_sym_shared] = ACTIONS(2929), + [anon_sym_map_LBRACK] = ACTIONS(2927), + [anon_sym_chan] = ACTIONS(2929), + [anon_sym_thread] = ACTIONS(2929), + [anon_sym_atomic] = ACTIONS(2929), + }, + [1361] = { + [sym_line_comment] = STATE(1361), + [sym_block_comment] = STATE(1361), + [sym_identifier] = ACTIONS(2327), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2327), + [anon_sym_as] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2325), + [anon_sym_COMMA] = ACTIONS(2325), + [anon_sym_RBRACE] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(2325), + [anon_sym_fn] = ACTIONS(2327), + [anon_sym_PLUS] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2327), + [anon_sym_STAR] = ACTIONS(2325), + [anon_sym_SLASH] = ACTIONS(2327), + [anon_sym_PERCENT] = ACTIONS(2325), + [anon_sym_LT] = ACTIONS(2327), + [anon_sym_GT] = ACTIONS(2327), + [anon_sym_EQ_EQ] = ACTIONS(2325), + [anon_sym_BANG_EQ] = ACTIONS(2325), + [anon_sym_LT_EQ] = ACTIONS(2325), + [anon_sym_GT_EQ] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2325), + [anon_sym_RBRACK] = ACTIONS(2325), + [anon_sym_struct] = ACTIONS(2327), + [anon_sym_mut] = ACTIONS(2327), + [anon_sym_COLON] = ACTIONS(2325), + [anon_sym_PLUS_PLUS] = ACTIONS(2325), + [anon_sym_DASH_DASH] = ACTIONS(2325), + [anon_sym_QMARK] = ACTIONS(2327), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_go] = ACTIONS(2327), + [anon_sym_spawn] = ACTIONS(2327), + [anon_sym_json_DOTdecode] = ACTIONS(2325), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_LBRACK2] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2325), + [anon_sym_CARET] = ACTIONS(2325), + [anon_sym_AMP] = ACTIONS(2327), + [anon_sym_LT_DASH] = ACTIONS(2325), + [anon_sym_LT_LT] = ACTIONS(2325), + [anon_sym_GT_GT] = ACTIONS(2327), + [anon_sym_GT_GT_GT] = ACTIONS(2325), + [anon_sym_AMP_CARET] = ACTIONS(2325), + [anon_sym_AMP_AMP] = ACTIONS(2325), + [anon_sym_PIPE_PIPE] = ACTIONS(2325), + [anon_sym_or] = ACTIONS(2327), + [sym_none] = ACTIONS(2327), + [sym_true] = ACTIONS(2327), + [sym_false] = ACTIONS(2327), + [sym_nil] = ACTIONS(2327), + [anon_sym_QMARK_DOT] = ACTIONS(2325), + [anon_sym_POUND_LBRACK] = ACTIONS(2325), + [anon_sym_if] = ACTIONS(2327), + [anon_sym_DOLLARif] = ACTIONS(2327), + [anon_sym_is] = ACTIONS(2327), + [anon_sym_BANGis] = ACTIONS(2325), + [anon_sym_in] = ACTIONS(2327), + [anon_sym_BANGin] = ACTIONS(2325), + [anon_sym_match] = ACTIONS(2327), + [anon_sym_select] = ACTIONS(2327), + [anon_sym_lock] = ACTIONS(2327), + [anon_sym_rlock] = ACTIONS(2327), + [anon_sym_unsafe] = ACTIONS(2327), + [anon_sym_sql] = ACTIONS(2327), + [sym_int_literal] = ACTIONS(2327), + [sym_float_literal] = ACTIONS(2325), + [sym_rune_literal] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_DQUOTE] = ACTIONS(2325), + [anon_sym_c_SQUOTE] = ACTIONS(2325), + [anon_sym_c_DQUOTE] = ACTIONS(2325), + [anon_sym_r_SQUOTE] = ACTIONS(2325), + [anon_sym_r_DQUOTE] = ACTIONS(2325), + [sym_pseudo_compile_time_identifier] = ACTIONS(2327), + [anon_sym_shared] = ACTIONS(2327), + [anon_sym_map_LBRACK] = ACTIONS(2325), + [anon_sym_chan] = ACTIONS(2327), + [anon_sym_thread] = ACTIONS(2327), + [anon_sym_atomic] = ACTIONS(2327), + }, + [1362] = { + [sym_line_comment] = STATE(1362), + [sym_block_comment] = STATE(1362), + [sym_identifier] = ACTIONS(3070), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3070), + [anon_sym_as] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_COMMA] = ACTIONS(3068), + [anon_sym_RBRACE] = ACTIONS(3068), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_fn] = ACTIONS(3070), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(3068), + [anon_sym_SLASH] = ACTIONS(3070), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(3070), + [anon_sym_GT] = ACTIONS(3070), + [anon_sym_EQ_EQ] = ACTIONS(3068), + [anon_sym_BANG_EQ] = ACTIONS(3068), + [anon_sym_LT_EQ] = ACTIONS(3068), + [anon_sym_GT_EQ] = ACTIONS(3068), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_RBRACK] = ACTIONS(3068), + [anon_sym_struct] = ACTIONS(3070), + [anon_sym_mut] = ACTIONS(3070), + [anon_sym_COLON] = ACTIONS(3068), + [anon_sym_PLUS_PLUS] = ACTIONS(3068), + [anon_sym_DASH_DASH] = ACTIONS(3068), + [anon_sym_QMARK] = ACTIONS(3070), + [anon_sym_BANG] = ACTIONS(3070), + [anon_sym_go] = ACTIONS(3070), + [anon_sym_spawn] = ACTIONS(3070), + [anon_sym_json_DOTdecode] = ACTIONS(3068), + [anon_sym_PIPE] = ACTIONS(3070), + [anon_sym_LBRACK2] = ACTIONS(3070), + [anon_sym_TILDE] = ACTIONS(3068), + [anon_sym_CARET] = ACTIONS(3068), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT_DASH] = ACTIONS(3068), + [anon_sym_LT_LT] = ACTIONS(3068), + [anon_sym_GT_GT] = ACTIONS(3070), + [anon_sym_GT_GT_GT] = ACTIONS(3068), + [anon_sym_AMP_CARET] = ACTIONS(3068), + [anon_sym_AMP_AMP] = ACTIONS(3068), + [anon_sym_PIPE_PIPE] = ACTIONS(3068), + [anon_sym_or] = ACTIONS(3070), + [sym_none] = ACTIONS(3070), + [sym_true] = ACTIONS(3070), + [sym_false] = ACTIONS(3070), + [sym_nil] = ACTIONS(3070), + [anon_sym_QMARK_DOT] = ACTIONS(3068), + [anon_sym_POUND_LBRACK] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3070), + [anon_sym_DOLLARif] = ACTIONS(3070), + [anon_sym_is] = ACTIONS(3070), + [anon_sym_BANGis] = ACTIONS(3068), + [anon_sym_in] = ACTIONS(3070), + [anon_sym_BANGin] = ACTIONS(3068), + [anon_sym_match] = ACTIONS(3070), + [anon_sym_select] = ACTIONS(3070), + [anon_sym_lock] = ACTIONS(3070), + [anon_sym_rlock] = ACTIONS(3070), + [anon_sym_unsafe] = ACTIONS(3070), + [anon_sym_sql] = ACTIONS(3070), + [sym_int_literal] = ACTIONS(3070), + [sym_float_literal] = ACTIONS(3068), + [sym_rune_literal] = ACTIONS(3068), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_DQUOTE] = ACTIONS(3068), + [anon_sym_c_SQUOTE] = ACTIONS(3068), + [anon_sym_c_DQUOTE] = ACTIONS(3068), + [anon_sym_r_SQUOTE] = ACTIONS(3068), + [anon_sym_r_DQUOTE] = ACTIONS(3068), + [sym_pseudo_compile_time_identifier] = ACTIONS(3070), + [anon_sym_shared] = ACTIONS(3070), + [anon_sym_map_LBRACK] = ACTIONS(3068), + [anon_sym_chan] = ACTIONS(3070), + [anon_sym_thread] = ACTIONS(3070), + [anon_sym_atomic] = ACTIONS(3070), + }, + [1363] = { + [sym_line_comment] = STATE(1363), + [sym_block_comment] = STATE(1363), + [sym_identifier] = ACTIONS(2965), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_as] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2963), + [anon_sym_COMMA] = ACTIONS(2963), + [anon_sym_RBRACE] = ACTIONS(2963), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_fn] = ACTIONS(2965), + [anon_sym_PLUS] = ACTIONS(2965), + [anon_sym_DASH] = ACTIONS(2965), + [anon_sym_STAR] = ACTIONS(2963), + [anon_sym_SLASH] = ACTIONS(2965), + [anon_sym_PERCENT] = ACTIONS(2963), + [anon_sym_LT] = ACTIONS(2965), + [anon_sym_GT] = ACTIONS(2965), + [anon_sym_EQ_EQ] = ACTIONS(2963), + [anon_sym_BANG_EQ] = ACTIONS(2963), + [anon_sym_LT_EQ] = ACTIONS(2963), + [anon_sym_GT_EQ] = ACTIONS(2963), + [anon_sym_LBRACK] = ACTIONS(2963), + [anon_sym_RBRACK] = ACTIONS(2963), + [anon_sym_struct] = ACTIONS(2965), + [anon_sym_mut] = ACTIONS(2965), + [anon_sym_COLON] = ACTIONS(2963), + [anon_sym_PLUS_PLUS] = ACTIONS(2963), + [anon_sym_DASH_DASH] = ACTIONS(2963), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_BANG] = ACTIONS(2965), + [anon_sym_go] = ACTIONS(2965), + [anon_sym_spawn] = ACTIONS(2965), + [anon_sym_json_DOTdecode] = ACTIONS(2963), + [anon_sym_PIPE] = ACTIONS(2965), + [anon_sym_LBRACK2] = ACTIONS(2965), + [anon_sym_TILDE] = ACTIONS(2963), + [anon_sym_CARET] = ACTIONS(2963), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_LT_DASH] = ACTIONS(2963), + [anon_sym_LT_LT] = ACTIONS(2963), + [anon_sym_GT_GT] = ACTIONS(2965), + [anon_sym_GT_GT_GT] = ACTIONS(2963), + [anon_sym_AMP_CARET] = ACTIONS(2963), + [anon_sym_AMP_AMP] = ACTIONS(2963), + [anon_sym_PIPE_PIPE] = ACTIONS(2963), + [anon_sym_or] = ACTIONS(2965), + [sym_none] = ACTIONS(2965), + [sym_true] = ACTIONS(2965), + [sym_false] = ACTIONS(2965), + [sym_nil] = ACTIONS(2965), + [anon_sym_QMARK_DOT] = ACTIONS(2963), + [anon_sym_POUND_LBRACK] = ACTIONS(2963), + [anon_sym_if] = ACTIONS(2965), + [anon_sym_DOLLARif] = ACTIONS(2965), + [anon_sym_is] = ACTIONS(2965), + [anon_sym_BANGis] = ACTIONS(2963), + [anon_sym_in] = ACTIONS(2965), + [anon_sym_BANGin] = ACTIONS(2963), + [anon_sym_match] = ACTIONS(2965), + [anon_sym_select] = ACTIONS(2965), + [anon_sym_lock] = ACTIONS(2965), + [anon_sym_rlock] = ACTIONS(2965), + [anon_sym_unsafe] = ACTIONS(2965), + [anon_sym_sql] = ACTIONS(2965), + [sym_int_literal] = ACTIONS(2965), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [anon_sym_SQUOTE] = ACTIONS(2963), + [anon_sym_DQUOTE] = ACTIONS(2963), + [anon_sym_c_SQUOTE] = ACTIONS(2963), + [anon_sym_c_DQUOTE] = ACTIONS(2963), + [anon_sym_r_SQUOTE] = ACTIONS(2963), + [anon_sym_r_DQUOTE] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), + [anon_sym_shared] = ACTIONS(2965), + [anon_sym_map_LBRACK] = ACTIONS(2963), + [anon_sym_chan] = ACTIONS(2965), + [anon_sym_thread] = ACTIONS(2965), + [anon_sym_atomic] = ACTIONS(2965), + }, + [1364] = { + [sym_line_comment] = STATE(1364), + [sym_block_comment] = STATE(1364), + [sym_identifier] = ACTIONS(3058), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_as] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3056), + [anon_sym_fn] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(3056), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_LT_EQ] = ACTIONS(3056), + [anon_sym_GT_EQ] = ACTIONS(3056), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_RBRACK] = ACTIONS(3056), + [anon_sym_struct] = ACTIONS(3058), + [anon_sym_mut] = ACTIONS(3058), + [anon_sym_COLON] = ACTIONS(3056), + [anon_sym_PLUS_PLUS] = ACTIONS(3056), + [anon_sym_DASH_DASH] = ACTIONS(3056), + [anon_sym_QMARK] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_go] = ACTIONS(3058), + [anon_sym_spawn] = ACTIONS(3058), + [anon_sym_json_DOTdecode] = ACTIONS(3056), + [anon_sym_PIPE] = ACTIONS(3058), + [anon_sym_LBRACK2] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3056), + [anon_sym_CARET] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT_DASH] = ACTIONS(3056), + [anon_sym_LT_LT] = ACTIONS(3056), + [anon_sym_GT_GT] = ACTIONS(3058), + [anon_sym_GT_GT_GT] = ACTIONS(3056), + [anon_sym_AMP_CARET] = ACTIONS(3056), + [anon_sym_AMP_AMP] = ACTIONS(3056), + [anon_sym_PIPE_PIPE] = ACTIONS(3056), + [anon_sym_or] = ACTIONS(3058), + [sym_none] = ACTIONS(3058), + [sym_true] = ACTIONS(3058), + [sym_false] = ACTIONS(3058), + [sym_nil] = ACTIONS(3058), + [anon_sym_QMARK_DOT] = ACTIONS(3056), + [anon_sym_POUND_LBRACK] = ACTIONS(3056), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_DOLLARif] = ACTIONS(3058), + [anon_sym_is] = ACTIONS(3058), + [anon_sym_BANGis] = ACTIONS(3056), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_BANGin] = ACTIONS(3056), + [anon_sym_match] = ACTIONS(3058), + [anon_sym_select] = ACTIONS(3058), + [anon_sym_lock] = ACTIONS(3058), + [anon_sym_rlock] = ACTIONS(3058), + [anon_sym_unsafe] = ACTIONS(3058), + [anon_sym_sql] = ACTIONS(3058), + [sym_int_literal] = ACTIONS(3058), + [sym_float_literal] = ACTIONS(3056), + [sym_rune_literal] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(3056), + [anon_sym_c_SQUOTE] = ACTIONS(3056), + [anon_sym_c_DQUOTE] = ACTIONS(3056), + [anon_sym_r_SQUOTE] = ACTIONS(3056), + [anon_sym_r_DQUOTE] = ACTIONS(3056), + [sym_pseudo_compile_time_identifier] = ACTIONS(3058), + [anon_sym_shared] = ACTIONS(3058), + [anon_sym_map_LBRACK] = ACTIONS(3056), + [anon_sym_chan] = ACTIONS(3058), + [anon_sym_thread] = ACTIONS(3058), + [anon_sym_atomic] = ACTIONS(3058), + }, + [1365] = { + [sym_line_comment] = STATE(1365), + [sym_block_comment] = STATE(1365), + [sym_identifier] = ACTIONS(3042), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3042), + [anon_sym_as] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3040), + [anon_sym_COMMA] = ACTIONS(3040), + [anon_sym_RBRACE] = ACTIONS(3040), + [anon_sym_LPAREN] = ACTIONS(3040), + [anon_sym_fn] = ACTIONS(3042), + [anon_sym_PLUS] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3040), + [anon_sym_SLASH] = ACTIONS(3042), + [anon_sym_PERCENT] = ACTIONS(3040), + [anon_sym_LT] = ACTIONS(3042), + [anon_sym_GT] = ACTIONS(3042), + [anon_sym_EQ_EQ] = ACTIONS(3040), + [anon_sym_BANG_EQ] = ACTIONS(3040), + [anon_sym_LT_EQ] = ACTIONS(3040), + [anon_sym_GT_EQ] = ACTIONS(3040), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_RBRACK] = ACTIONS(3040), + [anon_sym_struct] = ACTIONS(3042), + [anon_sym_mut] = ACTIONS(3042), + [anon_sym_COLON] = ACTIONS(3040), + [anon_sym_PLUS_PLUS] = ACTIONS(3040), + [anon_sym_DASH_DASH] = ACTIONS(3040), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(3042), + [anon_sym_go] = ACTIONS(3042), + [anon_sym_spawn] = ACTIONS(3042), + [anon_sym_json_DOTdecode] = ACTIONS(3040), + [anon_sym_PIPE] = ACTIONS(3042), + [anon_sym_LBRACK2] = ACTIONS(3042), + [anon_sym_TILDE] = ACTIONS(3040), + [anon_sym_CARET] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3042), + [anon_sym_LT_DASH] = ACTIONS(3040), + [anon_sym_LT_LT] = ACTIONS(3040), + [anon_sym_GT_GT] = ACTIONS(3042), + [anon_sym_GT_GT_GT] = ACTIONS(3040), + [anon_sym_AMP_CARET] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(3040), + [anon_sym_PIPE_PIPE] = ACTIONS(3040), + [anon_sym_or] = ACTIONS(3042), + [sym_none] = ACTIONS(3042), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_nil] = ACTIONS(3042), + [anon_sym_QMARK_DOT] = ACTIONS(3040), + [anon_sym_POUND_LBRACK] = ACTIONS(3040), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_DOLLARif] = ACTIONS(3042), + [anon_sym_is] = ACTIONS(3042), + [anon_sym_BANGis] = ACTIONS(3040), + [anon_sym_in] = ACTIONS(3042), + [anon_sym_BANGin] = ACTIONS(3040), + [anon_sym_match] = ACTIONS(3042), + [anon_sym_select] = ACTIONS(3042), + [anon_sym_lock] = ACTIONS(3042), + [anon_sym_rlock] = ACTIONS(3042), + [anon_sym_unsafe] = ACTIONS(3042), + [anon_sym_sql] = ACTIONS(3042), + [sym_int_literal] = ACTIONS(3042), + [sym_float_literal] = ACTIONS(3040), + [sym_rune_literal] = ACTIONS(3040), + [anon_sym_SQUOTE] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3040), + [anon_sym_c_SQUOTE] = ACTIONS(3040), + [anon_sym_c_DQUOTE] = ACTIONS(3040), + [anon_sym_r_SQUOTE] = ACTIONS(3040), + [anon_sym_r_DQUOTE] = ACTIONS(3040), + [sym_pseudo_compile_time_identifier] = ACTIONS(3042), + [anon_sym_shared] = ACTIONS(3042), + [anon_sym_map_LBRACK] = ACTIONS(3040), + [anon_sym_chan] = ACTIONS(3042), + [anon_sym_thread] = ACTIONS(3042), + [anon_sym_atomic] = ACTIONS(3042), + }, + [1366] = { + [sym_line_comment] = STATE(1366), + [sym_block_comment] = STATE(1366), + [sym_identifier] = ACTIONS(2191), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_as] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_COMMA] = ACTIONS(2189), + [anon_sym_RBRACE] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2189), + [anon_sym_fn] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_PERCENT] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_GT] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2189), + [anon_sym_BANG_EQ] = ACTIONS(2189), + [anon_sym_LT_EQ] = ACTIONS(2189), + [anon_sym_GT_EQ] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_RBRACK] = ACTIONS(2189), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_mut] = ACTIONS(2191), + [anon_sym_COLON] = ACTIONS(2189), + [anon_sym_PLUS_PLUS] = ACTIONS(2189), + [anon_sym_DASH_DASH] = ACTIONS(2189), + [anon_sym_QMARK] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_go] = ACTIONS(2191), + [anon_sym_spawn] = ACTIONS(2191), + [anon_sym_json_DOTdecode] = ACTIONS(2189), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_LBRACK2] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2189), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_LT_DASH] = ACTIONS(2189), + [anon_sym_LT_LT] = ACTIONS(2189), + [anon_sym_GT_GT] = ACTIONS(2191), + [anon_sym_GT_GT_GT] = ACTIONS(2189), + [anon_sym_AMP_CARET] = ACTIONS(2189), + [anon_sym_AMP_AMP] = ACTIONS(2189), + [anon_sym_PIPE_PIPE] = ACTIONS(2189), + [anon_sym_or] = ACTIONS(2191), + [sym_none] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_nil] = ACTIONS(2191), + [anon_sym_QMARK_DOT] = ACTIONS(2189), + [anon_sym_POUND_LBRACK] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_DOLLARif] = ACTIONS(2191), + [anon_sym_is] = ACTIONS(2191), + [anon_sym_BANGis] = ACTIONS(2189), + [anon_sym_in] = ACTIONS(2191), + [anon_sym_BANGin] = ACTIONS(2189), + [anon_sym_match] = ACTIONS(2191), + [anon_sym_select] = ACTIONS(2191), + [anon_sym_lock] = ACTIONS(2191), + [anon_sym_rlock] = ACTIONS(2191), + [anon_sym_unsafe] = ACTIONS(2191), + [anon_sym_sql] = ACTIONS(2191), + [sym_int_literal] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2189), + [sym_rune_literal] = ACTIONS(2189), + [anon_sym_SQUOTE] = ACTIONS(2189), + [anon_sym_DQUOTE] = ACTIONS(2189), + [anon_sym_c_SQUOTE] = ACTIONS(2189), + [anon_sym_c_DQUOTE] = ACTIONS(2189), + [anon_sym_r_SQUOTE] = ACTIONS(2189), + [anon_sym_r_DQUOTE] = ACTIONS(2189), + [sym_pseudo_compile_time_identifier] = ACTIONS(2191), + [anon_sym_shared] = ACTIONS(2191), + [anon_sym_map_LBRACK] = ACTIONS(2189), + [anon_sym_chan] = ACTIONS(2191), + [anon_sym_thread] = ACTIONS(2191), + [anon_sym_atomic] = ACTIONS(2191), + }, + [1367] = { + [sym_line_comment] = STATE(1367), + [sym_block_comment] = STATE(1367), + [sym_identifier] = ACTIONS(3038), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3038), + [anon_sym_as] = ACTIONS(3038), + [anon_sym_LBRACE] = ACTIONS(3036), + [anon_sym_COMMA] = ACTIONS(3036), + [anon_sym_RBRACE] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3036), + [anon_sym_fn] = ACTIONS(3038), + [anon_sym_PLUS] = ACTIONS(3038), + [anon_sym_DASH] = ACTIONS(3038), + [anon_sym_STAR] = ACTIONS(3036), + [anon_sym_SLASH] = ACTIONS(3038), + [anon_sym_PERCENT] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3038), + [anon_sym_EQ_EQ] = ACTIONS(3036), + [anon_sym_BANG_EQ] = ACTIONS(3036), + [anon_sym_LT_EQ] = ACTIONS(3036), + [anon_sym_GT_EQ] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(3036), + [anon_sym_RBRACK] = ACTIONS(3036), + [anon_sym_struct] = ACTIONS(3038), + [anon_sym_mut] = ACTIONS(3038), + [anon_sym_COLON] = ACTIONS(3036), + [anon_sym_PLUS_PLUS] = ACTIONS(3036), + [anon_sym_DASH_DASH] = ACTIONS(3036), + [anon_sym_QMARK] = ACTIONS(3038), + [anon_sym_BANG] = ACTIONS(3038), + [anon_sym_go] = ACTIONS(3038), + [anon_sym_spawn] = ACTIONS(3038), + [anon_sym_json_DOTdecode] = ACTIONS(3036), + [anon_sym_PIPE] = ACTIONS(3038), + [anon_sym_LBRACK2] = ACTIONS(3038), + [anon_sym_TILDE] = ACTIONS(3036), + [anon_sym_CARET] = ACTIONS(3036), + [anon_sym_AMP] = ACTIONS(3038), + [anon_sym_LT_DASH] = ACTIONS(3036), + [anon_sym_LT_LT] = ACTIONS(3036), + [anon_sym_GT_GT] = ACTIONS(3038), + [anon_sym_GT_GT_GT] = ACTIONS(3036), + [anon_sym_AMP_CARET] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [anon_sym_or] = ACTIONS(3038), + [sym_none] = ACTIONS(3038), + [sym_true] = ACTIONS(3038), + [sym_false] = ACTIONS(3038), + [sym_nil] = ACTIONS(3038), + [anon_sym_QMARK_DOT] = ACTIONS(3036), + [anon_sym_POUND_LBRACK] = ACTIONS(3036), + [anon_sym_if] = ACTIONS(3038), + [anon_sym_DOLLARif] = ACTIONS(3038), + [anon_sym_is] = ACTIONS(3038), + [anon_sym_BANGis] = ACTIONS(3036), + [anon_sym_in] = ACTIONS(3038), + [anon_sym_BANGin] = ACTIONS(3036), + [anon_sym_match] = ACTIONS(3038), + [anon_sym_select] = ACTIONS(3038), + [anon_sym_lock] = ACTIONS(3038), + [anon_sym_rlock] = ACTIONS(3038), + [anon_sym_unsafe] = ACTIONS(3038), + [anon_sym_sql] = ACTIONS(3038), + [sym_int_literal] = ACTIONS(3038), + [sym_float_literal] = ACTIONS(3036), + [sym_rune_literal] = ACTIONS(3036), + [anon_sym_SQUOTE] = ACTIONS(3036), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_c_SQUOTE] = ACTIONS(3036), + [anon_sym_c_DQUOTE] = ACTIONS(3036), + [anon_sym_r_SQUOTE] = ACTIONS(3036), + [anon_sym_r_DQUOTE] = ACTIONS(3036), + [sym_pseudo_compile_time_identifier] = ACTIONS(3038), + [anon_sym_shared] = ACTIONS(3038), + [anon_sym_map_LBRACK] = ACTIONS(3036), + [anon_sym_chan] = ACTIONS(3038), + [anon_sym_thread] = ACTIONS(3038), + [anon_sym_atomic] = ACTIONS(3038), + }, + [1368] = { + [sym_line_comment] = STATE(1368), + [sym_block_comment] = STATE(1368), + [sym_identifier] = ACTIONS(2981), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_as] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2979), + [anon_sym_RBRACE] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_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_PIPE] = ACTIONS(2981), + [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), + [anon_sym_SQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [anon_sym_c_SQUOTE] = ACTIONS(2979), + [anon_sym_c_DQUOTE] = ACTIONS(2979), + [anon_sym_r_SQUOTE] = ACTIONS(2979), + [anon_sym_r_DQUOTE] = 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), + }, + [1369] = { + [sym_line_comment] = STATE(1369), + [sym_block_comment] = STATE(1369), + [sym_identifier] = ACTIONS(2367), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2367), + [anon_sym_as] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2365), + [anon_sym_COMMA] = ACTIONS(2365), + [anon_sym_RBRACE] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2365), + [anon_sym_fn] = ACTIONS(2367), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_STAR] = ACTIONS(2365), + [anon_sym_SLASH] = ACTIONS(2367), + [anon_sym_PERCENT] = ACTIONS(2365), + [anon_sym_LT] = ACTIONS(2367), + [anon_sym_GT] = ACTIONS(2367), + [anon_sym_EQ_EQ] = ACTIONS(2365), + [anon_sym_BANG_EQ] = ACTIONS(2365), + [anon_sym_LT_EQ] = ACTIONS(2365), + [anon_sym_GT_EQ] = ACTIONS(2365), + [anon_sym_LBRACK] = ACTIONS(2365), + [anon_sym_RBRACK] = ACTIONS(2365), + [anon_sym_struct] = ACTIONS(2367), + [anon_sym_mut] = ACTIONS(2367), + [anon_sym_COLON] = ACTIONS(2365), + [anon_sym_PLUS_PLUS] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(2365), + [anon_sym_QMARK] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2367), + [anon_sym_go] = ACTIONS(2367), + [anon_sym_spawn] = ACTIONS(2367), + [anon_sym_json_DOTdecode] = ACTIONS(2365), + [anon_sym_PIPE] = ACTIONS(2367), + [anon_sym_LBRACK2] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_CARET] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2367), + [anon_sym_LT_DASH] = ACTIONS(2365), + [anon_sym_LT_LT] = ACTIONS(2365), + [anon_sym_GT_GT] = ACTIONS(2367), + [anon_sym_GT_GT_GT] = ACTIONS(2365), + [anon_sym_AMP_CARET] = ACTIONS(2365), + [anon_sym_AMP_AMP] = ACTIONS(2365), + [anon_sym_PIPE_PIPE] = ACTIONS(2365), + [anon_sym_or] = ACTIONS(2367), + [sym_none] = ACTIONS(2367), + [sym_true] = ACTIONS(2367), + [sym_false] = ACTIONS(2367), + [sym_nil] = ACTIONS(2367), + [anon_sym_QMARK_DOT] = ACTIONS(2365), + [anon_sym_POUND_LBRACK] = ACTIONS(2365), + [anon_sym_if] = ACTIONS(2367), + [anon_sym_DOLLARif] = ACTIONS(2367), + [anon_sym_is] = ACTIONS(2367), + [anon_sym_BANGis] = ACTIONS(2365), + [anon_sym_in] = ACTIONS(2367), + [anon_sym_BANGin] = ACTIONS(2365), + [anon_sym_match] = ACTIONS(2367), + [anon_sym_select] = ACTIONS(2367), + [anon_sym_lock] = ACTIONS(2367), + [anon_sym_rlock] = ACTIONS(2367), + [anon_sym_unsafe] = ACTIONS(2367), + [anon_sym_sql] = ACTIONS(2367), + [sym_int_literal] = ACTIONS(2367), + [sym_float_literal] = ACTIONS(2365), + [sym_rune_literal] = ACTIONS(2365), + [anon_sym_SQUOTE] = ACTIONS(2365), + [anon_sym_DQUOTE] = ACTIONS(2365), + [anon_sym_c_SQUOTE] = ACTIONS(2365), + [anon_sym_c_DQUOTE] = ACTIONS(2365), + [anon_sym_r_SQUOTE] = ACTIONS(2365), + [anon_sym_r_DQUOTE] = ACTIONS(2365), + [sym_pseudo_compile_time_identifier] = ACTIONS(2367), + [anon_sym_shared] = ACTIONS(2367), + [anon_sym_map_LBRACK] = ACTIONS(2365), + [anon_sym_chan] = ACTIONS(2367), + [anon_sym_thread] = ACTIONS(2367), + [anon_sym_atomic] = ACTIONS(2367), + }, + [1370] = { + [sym_line_comment] = STATE(1370), + [sym_block_comment] = STATE(1370), + [sym_identifier] = ACTIONS(3030), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3030), + [anon_sym_as] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3028), + [anon_sym_COMMA] = ACTIONS(3028), + [anon_sym_RBRACE] = ACTIONS(3028), + [anon_sym_LPAREN] = ACTIONS(3028), + [anon_sym_fn] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3028), + [anon_sym_SLASH] = ACTIONS(3030), + [anon_sym_PERCENT] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_GT] = ACTIONS(3030), + [anon_sym_EQ_EQ] = ACTIONS(3028), + [anon_sym_BANG_EQ] = ACTIONS(3028), + [anon_sym_LT_EQ] = ACTIONS(3028), + [anon_sym_GT_EQ] = ACTIONS(3028), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_RBRACK] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3030), + [anon_sym_mut] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(3028), + [anon_sym_PLUS_PLUS] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3028), + [anon_sym_QMARK] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_go] = ACTIONS(3030), + [anon_sym_spawn] = ACTIONS(3030), + [anon_sym_json_DOTdecode] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_LBRACK2] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_CARET] = ACTIONS(3028), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_LT_DASH] = ACTIONS(3028), + [anon_sym_LT_LT] = ACTIONS(3028), + [anon_sym_GT_GT] = ACTIONS(3030), + [anon_sym_GT_GT_GT] = ACTIONS(3028), + [anon_sym_AMP_CARET] = ACTIONS(3028), + [anon_sym_AMP_AMP] = ACTIONS(3028), + [anon_sym_PIPE_PIPE] = ACTIONS(3028), + [anon_sym_or] = ACTIONS(3030), + [sym_none] = ACTIONS(3030), + [sym_true] = ACTIONS(3030), + [sym_false] = ACTIONS(3030), + [sym_nil] = ACTIONS(3030), + [anon_sym_QMARK_DOT] = ACTIONS(3028), + [anon_sym_POUND_LBRACK] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_DOLLARif] = ACTIONS(3030), + [anon_sym_is] = ACTIONS(3030), + [anon_sym_BANGis] = ACTIONS(3028), + [anon_sym_in] = ACTIONS(3030), + [anon_sym_BANGin] = ACTIONS(3028), + [anon_sym_match] = ACTIONS(3030), + [anon_sym_select] = ACTIONS(3030), + [anon_sym_lock] = ACTIONS(3030), + [anon_sym_rlock] = ACTIONS(3030), + [anon_sym_unsafe] = ACTIONS(3030), + [anon_sym_sql] = ACTIONS(3030), + [sym_int_literal] = ACTIONS(3030), + [sym_float_literal] = ACTIONS(3028), + [sym_rune_literal] = ACTIONS(3028), + [anon_sym_SQUOTE] = ACTIONS(3028), + [anon_sym_DQUOTE] = ACTIONS(3028), + [anon_sym_c_SQUOTE] = ACTIONS(3028), + [anon_sym_c_DQUOTE] = ACTIONS(3028), + [anon_sym_r_SQUOTE] = ACTIONS(3028), + [anon_sym_r_DQUOTE] = ACTIONS(3028), + [sym_pseudo_compile_time_identifier] = ACTIONS(3030), + [anon_sym_shared] = ACTIONS(3030), + [anon_sym_map_LBRACK] = ACTIONS(3028), + [anon_sym_chan] = ACTIONS(3030), + [anon_sym_thread] = ACTIONS(3030), + [anon_sym_atomic] = ACTIONS(3030), + }, + [1371] = { + [sym_line_comment] = STATE(1371), + [sym_block_comment] = STATE(1371), + [sym_identifier] = ACTIONS(3026), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3026), + [anon_sym_as] = ACTIONS(3026), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_COMMA] = ACTIONS(3024), + [anon_sym_RBRACE] = ACTIONS(3024), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_fn] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3024), + [anon_sym_SLASH] = ACTIONS(3026), + [anon_sym_PERCENT] = ACTIONS(3024), + [anon_sym_LT] = ACTIONS(3026), + [anon_sym_GT] = ACTIONS(3026), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_LT_EQ] = ACTIONS(3024), + [anon_sym_GT_EQ] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_RBRACK] = ACTIONS(3024), + [anon_sym_struct] = ACTIONS(3026), + [anon_sym_mut] = ACTIONS(3026), + [anon_sym_COLON] = ACTIONS(3024), + [anon_sym_PLUS_PLUS] = ACTIONS(3024), + [anon_sym_DASH_DASH] = ACTIONS(3024), + [anon_sym_QMARK] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_go] = ACTIONS(3026), + [anon_sym_spawn] = ACTIONS(3026), + [anon_sym_json_DOTdecode] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3026), + [anon_sym_LBRACK2] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3024), + [anon_sym_CARET] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_LT_DASH] = ACTIONS(3024), + [anon_sym_LT_LT] = ACTIONS(3024), + [anon_sym_GT_GT] = ACTIONS(3026), + [anon_sym_GT_GT_GT] = ACTIONS(3024), + [anon_sym_AMP_CARET] = ACTIONS(3024), + [anon_sym_AMP_AMP] = ACTIONS(3024), + [anon_sym_PIPE_PIPE] = ACTIONS(3024), + [anon_sym_or] = ACTIONS(3026), + [sym_none] = ACTIONS(3026), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_nil] = ACTIONS(3026), + [anon_sym_QMARK_DOT] = ACTIONS(3024), + [anon_sym_POUND_LBRACK] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_DOLLARif] = ACTIONS(3026), + [anon_sym_is] = ACTIONS(3026), + [anon_sym_BANGis] = ACTIONS(3024), + [anon_sym_in] = ACTIONS(3026), + [anon_sym_BANGin] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3026), + [anon_sym_select] = ACTIONS(3026), + [anon_sym_lock] = ACTIONS(3026), + [anon_sym_rlock] = ACTIONS(3026), + [anon_sym_unsafe] = ACTIONS(3026), + [anon_sym_sql] = ACTIONS(3026), + [sym_int_literal] = ACTIONS(3026), + [sym_float_literal] = ACTIONS(3024), + [sym_rune_literal] = ACTIONS(3024), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_DQUOTE] = ACTIONS(3024), + [anon_sym_c_SQUOTE] = ACTIONS(3024), + [anon_sym_c_DQUOTE] = ACTIONS(3024), + [anon_sym_r_SQUOTE] = ACTIONS(3024), + [anon_sym_r_DQUOTE] = ACTIONS(3024), + [sym_pseudo_compile_time_identifier] = ACTIONS(3026), + [anon_sym_shared] = ACTIONS(3026), + [anon_sym_map_LBRACK] = ACTIONS(3024), + [anon_sym_chan] = ACTIONS(3026), + [anon_sym_thread] = ACTIONS(3026), + [anon_sym_atomic] = ACTIONS(3026), + }, + [1372] = { + [sym_line_comment] = STATE(1372), + [sym_block_comment] = STATE(1372), + [sym_identifier] = ACTIONS(2925), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2925), + [anon_sym_as] = ACTIONS(2925), + [anon_sym_LBRACE] = ACTIONS(2923), + [anon_sym_COMMA] = ACTIONS(2923), + [anon_sym_RBRACE] = ACTIONS(2923), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_SLASH] = ACTIONS(2925), + [anon_sym_PERCENT] = ACTIONS(2923), + [anon_sym_LT] = ACTIONS(2925), + [anon_sym_GT] = ACTIONS(2925), + [anon_sym_EQ_EQ] = ACTIONS(2923), + [anon_sym_BANG_EQ] = ACTIONS(2923), + [anon_sym_LT_EQ] = ACTIONS(2923), + [anon_sym_GT_EQ] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_RBRACK] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2925), + [anon_sym_mut] = ACTIONS(2925), + [anon_sym_COLON] = ACTIONS(2923), + [anon_sym_PLUS_PLUS] = ACTIONS(2923), + [anon_sym_DASH_DASH] = ACTIONS(2923), + [anon_sym_QMARK] = ACTIONS(2925), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2925), + [anon_sym_spawn] = ACTIONS(2925), + [anon_sym_json_DOTdecode] = ACTIONS(2923), + [anon_sym_PIPE] = ACTIONS(2925), + [anon_sym_LBRACK2] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2923), + [anon_sym_CARET] = ACTIONS(2923), + [anon_sym_AMP] = ACTIONS(2925), + [anon_sym_LT_DASH] = ACTIONS(2923), + [anon_sym_LT_LT] = ACTIONS(2923), + [anon_sym_GT_GT] = ACTIONS(2925), + [anon_sym_GT_GT_GT] = ACTIONS(2923), + [anon_sym_AMP_CARET] = ACTIONS(2923), + [anon_sym_AMP_AMP] = ACTIONS(2923), + [anon_sym_PIPE_PIPE] = ACTIONS(2923), + [anon_sym_or] = ACTIONS(2925), + [sym_none] = ACTIONS(2925), + [sym_true] = ACTIONS(2925), + [sym_false] = ACTIONS(2925), + [sym_nil] = ACTIONS(2925), + [anon_sym_QMARK_DOT] = ACTIONS(2923), + [anon_sym_POUND_LBRACK] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2925), + [anon_sym_DOLLARif] = ACTIONS(2925), + [anon_sym_is] = ACTIONS(2925), + [anon_sym_BANGis] = ACTIONS(2923), + [anon_sym_in] = ACTIONS(2925), + [anon_sym_BANGin] = ACTIONS(2923), + [anon_sym_match] = ACTIONS(2925), + [anon_sym_select] = ACTIONS(2925), + [anon_sym_lock] = ACTIONS(2925), + [anon_sym_rlock] = ACTIONS(2925), + [anon_sym_unsafe] = ACTIONS(2925), + [anon_sym_sql] = ACTIONS(2925), + [sym_int_literal] = ACTIONS(2925), + [sym_float_literal] = ACTIONS(2923), + [sym_rune_literal] = ACTIONS(2923), + [anon_sym_SQUOTE] = ACTIONS(2923), + [anon_sym_DQUOTE] = ACTIONS(2923), + [anon_sym_c_SQUOTE] = ACTIONS(2923), + [anon_sym_c_DQUOTE] = ACTIONS(2923), + [anon_sym_r_SQUOTE] = ACTIONS(2923), + [anon_sym_r_DQUOTE] = ACTIONS(2923), + [sym_pseudo_compile_time_identifier] = ACTIONS(2925), + [anon_sym_shared] = ACTIONS(2925), + [anon_sym_map_LBRACK] = ACTIONS(2923), + [anon_sym_chan] = ACTIONS(2925), + [anon_sym_thread] = ACTIONS(2925), + [anon_sym_atomic] = ACTIONS(2925), + }, + [1373] = { + [sym_line_comment] = STATE(1373), + [sym_block_comment] = STATE(1373), + [sym_identifier] = ACTIONS(2345), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2345), + [anon_sym_as] = ACTIONS(2345), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_COMMA] = ACTIONS(2343), + [anon_sym_RBRACE] = ACTIONS(2343), + [anon_sym_LPAREN] = ACTIONS(2343), + [anon_sym_fn] = ACTIONS(2345), + [anon_sym_PLUS] = ACTIONS(2345), + [anon_sym_DASH] = ACTIONS(2345), + [anon_sym_STAR] = ACTIONS(2343), + [anon_sym_SLASH] = ACTIONS(2345), + [anon_sym_PERCENT] = ACTIONS(2343), + [anon_sym_LT] = ACTIONS(2345), + [anon_sym_GT] = ACTIONS(2345), + [anon_sym_EQ_EQ] = ACTIONS(2343), + [anon_sym_BANG_EQ] = ACTIONS(2343), + [anon_sym_LT_EQ] = ACTIONS(2343), + [anon_sym_GT_EQ] = ACTIONS(2343), + [anon_sym_LBRACK] = ACTIONS(2343), + [anon_sym_RBRACK] = ACTIONS(2343), + [anon_sym_struct] = ACTIONS(2345), + [anon_sym_mut] = ACTIONS(2345), + [anon_sym_COLON] = ACTIONS(2343), + [anon_sym_PLUS_PLUS] = ACTIONS(2343), + [anon_sym_DASH_DASH] = ACTIONS(2343), + [anon_sym_QMARK] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(2345), + [anon_sym_go] = ACTIONS(2345), + [anon_sym_spawn] = ACTIONS(2345), + [anon_sym_json_DOTdecode] = ACTIONS(2343), + [anon_sym_PIPE] = ACTIONS(2345), + [anon_sym_LBRACK2] = ACTIONS(2345), + [anon_sym_TILDE] = ACTIONS(2343), + [anon_sym_CARET] = ACTIONS(2343), + [anon_sym_AMP] = ACTIONS(2345), + [anon_sym_LT_DASH] = ACTIONS(2343), + [anon_sym_LT_LT] = ACTIONS(2343), + [anon_sym_GT_GT] = ACTIONS(2345), + [anon_sym_GT_GT_GT] = ACTIONS(2343), + [anon_sym_AMP_CARET] = ACTIONS(2343), + [anon_sym_AMP_AMP] = ACTIONS(2343), + [anon_sym_PIPE_PIPE] = ACTIONS(2343), + [anon_sym_or] = ACTIONS(2345), + [sym_none] = ACTIONS(2345), + [sym_true] = ACTIONS(2345), + [sym_false] = ACTIONS(2345), + [sym_nil] = ACTIONS(2345), + [anon_sym_QMARK_DOT] = ACTIONS(2343), + [anon_sym_POUND_LBRACK] = ACTIONS(2343), + [anon_sym_if] = ACTIONS(2345), + [anon_sym_DOLLARif] = ACTIONS(2345), + [anon_sym_is] = ACTIONS(2345), + [anon_sym_BANGis] = ACTIONS(2343), + [anon_sym_in] = ACTIONS(2345), + [anon_sym_BANGin] = ACTIONS(2343), + [anon_sym_match] = ACTIONS(2345), + [anon_sym_select] = ACTIONS(2345), + [anon_sym_lock] = ACTIONS(2345), + [anon_sym_rlock] = ACTIONS(2345), + [anon_sym_unsafe] = ACTIONS(2345), + [anon_sym_sql] = ACTIONS(2345), + [sym_int_literal] = ACTIONS(2345), + [sym_float_literal] = ACTIONS(2343), + [sym_rune_literal] = ACTIONS(2343), + [anon_sym_SQUOTE] = ACTIONS(2343), + [anon_sym_DQUOTE] = ACTIONS(2343), + [anon_sym_c_SQUOTE] = ACTIONS(2343), + [anon_sym_c_DQUOTE] = ACTIONS(2343), + [anon_sym_r_SQUOTE] = ACTIONS(2343), + [anon_sym_r_DQUOTE] = ACTIONS(2343), + [sym_pseudo_compile_time_identifier] = ACTIONS(2345), + [anon_sym_shared] = ACTIONS(2345), + [anon_sym_map_LBRACK] = ACTIONS(2343), + [anon_sym_chan] = ACTIONS(2345), + [anon_sym_thread] = ACTIONS(2345), + [anon_sym_atomic] = ACTIONS(2345), + }, + [1374] = { + [sym_line_comment] = STATE(1374), + [sym_block_comment] = STATE(1374), + [sym_identifier] = ACTIONS(2351), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2351), + [anon_sym_as] = ACTIONS(2351), + [anon_sym_LBRACE] = ACTIONS(2349), + [anon_sym_COMMA] = ACTIONS(2349), + [anon_sym_RBRACE] = ACTIONS(2349), + [anon_sym_LPAREN] = ACTIONS(2349), + [anon_sym_fn] = ACTIONS(2351), + [anon_sym_PLUS] = ACTIONS(2351), + [anon_sym_DASH] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(2349), + [anon_sym_SLASH] = ACTIONS(2351), + [anon_sym_PERCENT] = ACTIONS(2349), + [anon_sym_LT] = ACTIONS(2351), + [anon_sym_GT] = ACTIONS(2351), + [anon_sym_EQ_EQ] = ACTIONS(2349), + [anon_sym_BANG_EQ] = ACTIONS(2349), + [anon_sym_LT_EQ] = ACTIONS(2349), + [anon_sym_GT_EQ] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_RBRACK] = ACTIONS(2349), + [anon_sym_struct] = ACTIONS(2351), + [anon_sym_mut] = ACTIONS(2351), + [anon_sym_COLON] = ACTIONS(2349), + [anon_sym_PLUS_PLUS] = ACTIONS(2349), + [anon_sym_DASH_DASH] = ACTIONS(2349), + [anon_sym_QMARK] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(2351), + [anon_sym_go] = ACTIONS(2351), + [anon_sym_spawn] = ACTIONS(2351), + [anon_sym_json_DOTdecode] = ACTIONS(2349), + [anon_sym_PIPE] = ACTIONS(2351), + [anon_sym_LBRACK2] = ACTIONS(2351), + [anon_sym_TILDE] = ACTIONS(2349), + [anon_sym_CARET] = ACTIONS(2349), + [anon_sym_AMP] = ACTIONS(2351), + [anon_sym_LT_DASH] = ACTIONS(2349), + [anon_sym_LT_LT] = ACTIONS(2349), + [anon_sym_GT_GT] = ACTIONS(2351), + [anon_sym_GT_GT_GT] = ACTIONS(2349), + [anon_sym_AMP_CARET] = ACTIONS(2349), + [anon_sym_AMP_AMP] = ACTIONS(2349), + [anon_sym_PIPE_PIPE] = ACTIONS(2349), + [anon_sym_or] = ACTIONS(2351), + [sym_none] = ACTIONS(2351), + [sym_true] = ACTIONS(2351), + [sym_false] = ACTIONS(2351), + [sym_nil] = ACTIONS(2351), + [anon_sym_QMARK_DOT] = ACTIONS(2349), + [anon_sym_POUND_LBRACK] = ACTIONS(2349), + [anon_sym_if] = ACTIONS(2351), + [anon_sym_DOLLARif] = ACTIONS(2351), + [anon_sym_is] = ACTIONS(2351), + [anon_sym_BANGis] = ACTIONS(2349), + [anon_sym_in] = ACTIONS(2351), + [anon_sym_BANGin] = ACTIONS(2349), + [anon_sym_match] = ACTIONS(2351), + [anon_sym_select] = ACTIONS(2351), + [anon_sym_lock] = ACTIONS(2351), + [anon_sym_rlock] = ACTIONS(2351), + [anon_sym_unsafe] = ACTIONS(2351), + [anon_sym_sql] = ACTIONS(2351), + [sym_int_literal] = ACTIONS(2351), + [sym_float_literal] = ACTIONS(2349), + [sym_rune_literal] = ACTIONS(2349), + [anon_sym_SQUOTE] = ACTIONS(2349), + [anon_sym_DQUOTE] = ACTIONS(2349), + [anon_sym_c_SQUOTE] = ACTIONS(2349), + [anon_sym_c_DQUOTE] = ACTIONS(2349), + [anon_sym_r_SQUOTE] = ACTIONS(2349), + [anon_sym_r_DQUOTE] = ACTIONS(2349), + [sym_pseudo_compile_time_identifier] = ACTIONS(2351), + [anon_sym_shared] = ACTIONS(2351), + [anon_sym_map_LBRACK] = ACTIONS(2349), + [anon_sym_chan] = ACTIONS(2351), + [anon_sym_thread] = ACTIONS(2351), + [anon_sym_atomic] = ACTIONS(2351), + }, + [1375] = { + [sym_line_comment] = STATE(1375), + [sym_block_comment] = STATE(1375), + [sym_identifier] = ACTIONS(2357), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2357), + [anon_sym_as] = ACTIONS(2357), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_COMMA] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2355), + [anon_sym_LPAREN] = ACTIONS(2355), + [anon_sym_fn] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2357), + [anon_sym_DASH] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(2355), + [anon_sym_SLASH] = ACTIONS(2357), + [anon_sym_PERCENT] = ACTIONS(2355), + [anon_sym_LT] = ACTIONS(2357), + [anon_sym_GT] = ACTIONS(2357), + [anon_sym_EQ_EQ] = ACTIONS(2355), + [anon_sym_BANG_EQ] = ACTIONS(2355), + [anon_sym_LT_EQ] = ACTIONS(2355), + [anon_sym_GT_EQ] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_RBRACK] = ACTIONS(2355), + [anon_sym_struct] = ACTIONS(2357), + [anon_sym_mut] = ACTIONS(2357), + [anon_sym_COLON] = ACTIONS(2355), + [anon_sym_PLUS_PLUS] = ACTIONS(2355), + [anon_sym_DASH_DASH] = ACTIONS(2355), + [anon_sym_QMARK] = ACTIONS(2357), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_go] = ACTIONS(2357), + [anon_sym_spawn] = ACTIONS(2357), + [anon_sym_json_DOTdecode] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2357), + [anon_sym_LBRACK2] = ACTIONS(2357), + [anon_sym_TILDE] = ACTIONS(2355), + [anon_sym_CARET] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_LT_DASH] = ACTIONS(2355), + [anon_sym_LT_LT] = ACTIONS(2355), + [anon_sym_GT_GT] = ACTIONS(2357), + [anon_sym_GT_GT_GT] = ACTIONS(2355), + [anon_sym_AMP_CARET] = ACTIONS(2355), + [anon_sym_AMP_AMP] = ACTIONS(2355), + [anon_sym_PIPE_PIPE] = ACTIONS(2355), + [anon_sym_or] = ACTIONS(2357), + [sym_none] = ACTIONS(2357), + [sym_true] = ACTIONS(2357), + [sym_false] = ACTIONS(2357), + [sym_nil] = ACTIONS(2357), + [anon_sym_QMARK_DOT] = ACTIONS(2355), + [anon_sym_POUND_LBRACK] = ACTIONS(2355), + [anon_sym_if] = ACTIONS(2357), + [anon_sym_DOLLARif] = ACTIONS(2357), + [anon_sym_is] = ACTIONS(2357), + [anon_sym_BANGis] = ACTIONS(2355), + [anon_sym_in] = ACTIONS(2357), + [anon_sym_BANGin] = ACTIONS(2355), + [anon_sym_match] = ACTIONS(2357), + [anon_sym_select] = ACTIONS(2357), + [anon_sym_lock] = ACTIONS(2357), + [anon_sym_rlock] = ACTIONS(2357), + [anon_sym_unsafe] = ACTIONS(2357), + [anon_sym_sql] = ACTIONS(2357), + [sym_int_literal] = ACTIONS(2357), + [sym_float_literal] = ACTIONS(2355), + [sym_rune_literal] = ACTIONS(2355), + [anon_sym_SQUOTE] = ACTIONS(2355), + [anon_sym_DQUOTE] = ACTIONS(2355), + [anon_sym_c_SQUOTE] = ACTIONS(2355), + [anon_sym_c_DQUOTE] = ACTIONS(2355), + [anon_sym_r_SQUOTE] = ACTIONS(2355), + [anon_sym_r_DQUOTE] = ACTIONS(2355), + [sym_pseudo_compile_time_identifier] = ACTIONS(2357), + [anon_sym_shared] = ACTIONS(2357), + [anon_sym_map_LBRACK] = ACTIONS(2355), + [anon_sym_chan] = ACTIONS(2357), + [anon_sym_thread] = ACTIONS(2357), + [anon_sym_atomic] = ACTIONS(2357), + }, [1376] = { [sym_line_comment] = STATE(1376), [sym_block_comment] = STATE(1376), - [sym_identifier] = ACTIONS(3021), + [sym_identifier] = ACTIONS(2445), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3021), - [anon_sym_as] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_RBRACE] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3021), - [anon_sym_fn] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT_EQ] = ACTIONS(3019), - [anon_sym_GT_EQ] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_RBRACK] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(3021), - [anon_sym_mut] = ACTIONS(3021), - [anon_sym_COLON] = ACTIONS(3019), - [anon_sym_PLUS_PLUS] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_go] = ACTIONS(3021), - [anon_sym_spawn] = ACTIONS(3021), - [anon_sym_json_DOTdecode] = ACTIONS(3019), - [anon_sym_LBRACK2] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3019), - [anon_sym_CARET] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3019), - [anon_sym_LT_LT] = ACTIONS(3019), - [anon_sym_GT_GT] = ACTIONS(3021), - [anon_sym_GT_GT_GT] = ACTIONS(3019), - [anon_sym_AMP_CARET] = ACTIONS(3019), - [anon_sym_AMP_AMP] = ACTIONS(3019), - [anon_sym_PIPE_PIPE] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3021), - [sym_none] = ACTIONS(3021), - [sym_true] = ACTIONS(3021), - [sym_false] = ACTIONS(3021), - [sym_nil] = ACTIONS(3021), - [anon_sym_QMARK_DOT] = ACTIONS(3019), - [anon_sym_POUND_LBRACK] = ACTIONS(3019), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_DOLLARif] = ACTIONS(3021), - [anon_sym_is] = ACTIONS(3021), - [anon_sym_BANGis] = ACTIONS(3019), - [anon_sym_in] = ACTIONS(3021), - [anon_sym_BANGin] = ACTIONS(3019), - [anon_sym_match] = ACTIONS(3021), - [anon_sym_select] = ACTIONS(3021), - [anon_sym_lock] = ACTIONS(3021), - [anon_sym_rlock] = ACTIONS(3021), - [anon_sym_unsafe] = ACTIONS(3021), - [anon_sym_sql] = ACTIONS(3021), - [sym_int_literal] = ACTIONS(3021), - [sym_float_literal] = ACTIONS(3019), - [sym_rune_literal] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE] = ACTIONS(3019), - [anon_sym_c_SQUOTE] = ACTIONS(3019), - [anon_sym_c_DQUOTE] = ACTIONS(3019), - [anon_sym_r_SQUOTE] = ACTIONS(3019), - [anon_sym_r_DQUOTE] = ACTIONS(3019), - [sym_pseudo_compile_time_identifier] = ACTIONS(3021), - [anon_sym_shared] = ACTIONS(3021), - [anon_sym_map_LBRACK] = ACTIONS(3019), - [anon_sym_chan] = ACTIONS(3021), - [anon_sym_thread] = ACTIONS(3021), - [anon_sym_atomic] = ACTIONS(3021), + [anon_sym_DOT] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_COMMA] = ACTIONS(2443), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_fn] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2445), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_GT] = ACTIONS(2445), + [anon_sym_EQ_EQ] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_RBRACK] = ACTIONS(2443), + [anon_sym_struct] = ACTIONS(2445), + [anon_sym_mut] = ACTIONS(2445), + [anon_sym_COLON] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [anon_sym_QMARK] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2445), + [anon_sym_go] = ACTIONS(2445), + [anon_sym_spawn] = ACTIONS(2445), + [anon_sym_json_DOTdecode] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_LBRACK2] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2443), + [anon_sym_CARET] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_LT_DASH] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2443), + [anon_sym_GT_GT] = ACTIONS(2445), + [anon_sym_GT_GT_GT] = ACTIONS(2443), + [anon_sym_AMP_CARET] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_or] = ACTIONS(2445), + [sym_none] = ACTIONS(2445), + [sym_true] = ACTIONS(2445), + [sym_false] = ACTIONS(2445), + [sym_nil] = ACTIONS(2445), + [anon_sym_QMARK_DOT] = ACTIONS(2443), + [anon_sym_POUND_LBRACK] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_DOLLARif] = ACTIONS(2445), + [anon_sym_is] = ACTIONS(2445), + [anon_sym_BANGis] = ACTIONS(2443), + [anon_sym_in] = ACTIONS(2445), + [anon_sym_BANGin] = ACTIONS(2443), + [anon_sym_match] = ACTIONS(2445), + [anon_sym_select] = ACTIONS(2445), + [anon_sym_lock] = ACTIONS(2445), + [anon_sym_rlock] = ACTIONS(2445), + [anon_sym_unsafe] = ACTIONS(2445), + [anon_sym_sql] = ACTIONS(2445), + [sym_int_literal] = ACTIONS(2445), + [sym_float_literal] = ACTIONS(2443), + [sym_rune_literal] = ACTIONS(2443), + [anon_sym_SQUOTE] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(2443), + [anon_sym_c_SQUOTE] = ACTIONS(2443), + [anon_sym_c_DQUOTE] = ACTIONS(2443), + [anon_sym_r_SQUOTE] = ACTIONS(2443), + [anon_sym_r_DQUOTE] = ACTIONS(2443), + [sym_pseudo_compile_time_identifier] = ACTIONS(2445), + [anon_sym_shared] = ACTIONS(2445), + [anon_sym_map_LBRACK] = ACTIONS(2443), + [anon_sym_chan] = ACTIONS(2445), + [anon_sym_thread] = ACTIONS(2445), + [anon_sym_atomic] = ACTIONS(2445), }, [1377] = { [sym_line_comment] = STATE(1377), [sym_block_comment] = STATE(1377), - [sym_identifier] = ACTIONS(2167), + [sym_identifier] = ACTIONS(2475), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2167), - [anon_sym_as] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_COMMA] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2165), - [anon_sym_PIPE] = ACTIONS(2167), - [anon_sym_fn] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_STAR] = ACTIONS(2165), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_PERCENT] = ACTIONS(2165), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_GT] = ACTIONS(2167), - [anon_sym_EQ_EQ] = ACTIONS(2165), - [anon_sym_BANG_EQ] = ACTIONS(2165), - [anon_sym_LT_EQ] = ACTIONS(2165), - [anon_sym_GT_EQ] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(2165), - [anon_sym_struct] = ACTIONS(2167), - [anon_sym_mut] = ACTIONS(2167), - [anon_sym_COLON] = ACTIONS(2165), - [anon_sym_PLUS_PLUS] = ACTIONS(2165), - [anon_sym_DASH_DASH] = ACTIONS(2165), - [anon_sym_QMARK] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_go] = ACTIONS(2167), - [anon_sym_spawn] = ACTIONS(2167), - [anon_sym_json_DOTdecode] = ACTIONS(2165), - [anon_sym_LBRACK2] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2165), - [anon_sym_CARET] = ACTIONS(2165), - [anon_sym_AMP] = ACTIONS(2167), - [anon_sym_LT_DASH] = ACTIONS(2165), - [anon_sym_LT_LT] = ACTIONS(2165), - [anon_sym_GT_GT] = ACTIONS(2167), - [anon_sym_GT_GT_GT] = ACTIONS(2165), - [anon_sym_AMP_CARET] = ACTIONS(2165), - [anon_sym_AMP_AMP] = ACTIONS(2165), - [anon_sym_PIPE_PIPE] = ACTIONS(2165), - [anon_sym_or] = ACTIONS(2167), - [sym_none] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_nil] = ACTIONS(2167), - [anon_sym_QMARK_DOT] = ACTIONS(2165), - [anon_sym_POUND_LBRACK] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_DOLLARif] = ACTIONS(2167), - [anon_sym_is] = ACTIONS(2167), - [anon_sym_BANGis] = ACTIONS(2165), - [anon_sym_in] = ACTIONS(2167), - [anon_sym_BANGin] = ACTIONS(2165), - [anon_sym_match] = ACTIONS(2167), - [anon_sym_select] = ACTIONS(2167), - [anon_sym_lock] = ACTIONS(2167), - [anon_sym_rlock] = ACTIONS(2167), - [anon_sym_unsafe] = ACTIONS(2167), - [anon_sym_sql] = ACTIONS(2167), - [sym_int_literal] = ACTIONS(2167), - [sym_float_literal] = ACTIONS(2165), - [sym_rune_literal] = ACTIONS(2165), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2165), - [anon_sym_c_SQUOTE] = ACTIONS(2165), - [anon_sym_c_DQUOTE] = ACTIONS(2165), - [anon_sym_r_SQUOTE] = ACTIONS(2165), - [anon_sym_r_DQUOTE] = ACTIONS(2165), - [sym_pseudo_compile_time_identifier] = ACTIONS(2167), - [anon_sym_shared] = ACTIONS(2167), - [anon_sym_map_LBRACK] = ACTIONS(2165), - [anon_sym_chan] = ACTIONS(2167), - [anon_sym_thread] = ACTIONS(2167), - [anon_sym_atomic] = ACTIONS(2167), + [anon_sym_DOT] = ACTIONS(2475), + [anon_sym_as] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_COMMA] = ACTIONS(2473), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_fn] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2475), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_EQ_EQ] = ACTIONS(2473), + [anon_sym_BANG_EQ] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(2473), + [anon_sym_GT_EQ] = ACTIONS(2473), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_RBRACK] = ACTIONS(2473), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_mut] = ACTIONS(2475), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_PLUS_PLUS] = ACTIONS(2473), + [anon_sym_DASH_DASH] = ACTIONS(2473), + [anon_sym_QMARK] = ACTIONS(2475), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_go] = ACTIONS(2475), + [anon_sym_spawn] = ACTIONS(2475), + [anon_sym_json_DOTdecode] = ACTIONS(2473), + [anon_sym_PIPE] = ACTIONS(2475), + [anon_sym_LBRACK2] = ACTIONS(2475), + [anon_sym_TILDE] = ACTIONS(2473), + [anon_sym_CARET] = ACTIONS(2473), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_LT_DASH] = ACTIONS(2473), + [anon_sym_LT_LT] = ACTIONS(2473), + [anon_sym_GT_GT] = ACTIONS(2475), + [anon_sym_GT_GT_GT] = ACTIONS(2473), + [anon_sym_AMP_CARET] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_PIPE_PIPE] = ACTIONS(2473), + [anon_sym_or] = ACTIONS(2475), + [sym_none] = ACTIONS(2475), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_nil] = ACTIONS(2475), + [anon_sym_QMARK_DOT] = ACTIONS(2473), + [anon_sym_POUND_LBRACK] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_DOLLARif] = ACTIONS(2475), + [anon_sym_is] = ACTIONS(2475), + [anon_sym_BANGis] = ACTIONS(2473), + [anon_sym_in] = ACTIONS(2475), + [anon_sym_BANGin] = ACTIONS(2473), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_lock] = ACTIONS(2475), + [anon_sym_rlock] = ACTIONS(2475), + [anon_sym_unsafe] = ACTIONS(2475), + [anon_sym_sql] = ACTIONS(2475), + [sym_int_literal] = ACTIONS(2475), + [sym_float_literal] = ACTIONS(2473), + [sym_rune_literal] = ACTIONS(2473), + [anon_sym_SQUOTE] = ACTIONS(2473), + [anon_sym_DQUOTE] = ACTIONS(2473), + [anon_sym_c_SQUOTE] = ACTIONS(2473), + [anon_sym_c_DQUOTE] = ACTIONS(2473), + [anon_sym_r_SQUOTE] = ACTIONS(2473), + [anon_sym_r_DQUOTE] = ACTIONS(2473), + [sym_pseudo_compile_time_identifier] = ACTIONS(2475), + [anon_sym_shared] = ACTIONS(2475), + [anon_sym_map_LBRACK] = ACTIONS(2473), + [anon_sym_chan] = ACTIONS(2475), + [anon_sym_thread] = ACTIONS(2475), + [anon_sym_atomic] = ACTIONS(2475), }, [1378] = { [sym_line_comment] = STATE(1378), [sym_block_comment] = STATE(1378), - [sym_identifier] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2479), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2585), - [anon_sym_as] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_COMMA] = ACTIONS(2583), - [anon_sym_RBRACE] = ACTIONS(2583), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_PIPE] = ACTIONS(2585), - [anon_sym_fn] = ACTIONS(2585), - [anon_sym_PLUS] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2583), - [anon_sym_SLASH] = ACTIONS(2585), - [anon_sym_PERCENT] = ACTIONS(2583), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_GT] = ACTIONS(2585), - [anon_sym_EQ_EQ] = ACTIONS(2583), - [anon_sym_BANG_EQ] = ACTIONS(2583), - [anon_sym_LT_EQ] = ACTIONS(2583), - [anon_sym_GT_EQ] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_RBRACK] = ACTIONS(2583), - [anon_sym_struct] = ACTIONS(2585), - [anon_sym_mut] = ACTIONS(2585), - [anon_sym_COLON] = ACTIONS(2583), - [anon_sym_PLUS_PLUS] = ACTIONS(2583), - [anon_sym_DASH_DASH] = ACTIONS(2583), - [anon_sym_QMARK] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_go] = ACTIONS(2585), - [anon_sym_spawn] = ACTIONS(2585), - [anon_sym_json_DOTdecode] = ACTIONS(2583), - [anon_sym_LBRACK2] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2583), - [anon_sym_CARET] = ACTIONS(2583), - [anon_sym_AMP] = ACTIONS(2585), - [anon_sym_LT_DASH] = ACTIONS(2583), - [anon_sym_LT_LT] = ACTIONS(2583), - [anon_sym_GT_GT] = ACTIONS(2585), - [anon_sym_GT_GT_GT] = ACTIONS(2583), - [anon_sym_AMP_CARET] = ACTIONS(2583), - [anon_sym_AMP_AMP] = ACTIONS(2583), - [anon_sym_PIPE_PIPE] = ACTIONS(2583), - [anon_sym_or] = ACTIONS(2585), - [sym_none] = ACTIONS(2585), - [sym_true] = ACTIONS(2585), - [sym_false] = ACTIONS(2585), - [sym_nil] = ACTIONS(2585), - [anon_sym_QMARK_DOT] = ACTIONS(2583), - [anon_sym_POUND_LBRACK] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2585), - [anon_sym_DOLLARif] = ACTIONS(2585), - [anon_sym_is] = ACTIONS(2585), - [anon_sym_BANGis] = ACTIONS(2583), - [anon_sym_in] = ACTIONS(2585), - [anon_sym_BANGin] = ACTIONS(2583), - [anon_sym_match] = ACTIONS(2585), - [anon_sym_select] = ACTIONS(2585), - [anon_sym_lock] = ACTIONS(2585), - [anon_sym_rlock] = ACTIONS(2585), - [anon_sym_unsafe] = ACTIONS(2585), - [anon_sym_sql] = ACTIONS(2585), - [sym_int_literal] = ACTIONS(2585), - [sym_float_literal] = ACTIONS(2583), - [sym_rune_literal] = ACTIONS(2583), - [anon_sym_SQUOTE] = ACTIONS(2583), - [anon_sym_DQUOTE] = ACTIONS(2583), - [anon_sym_c_SQUOTE] = ACTIONS(2583), - [anon_sym_c_DQUOTE] = ACTIONS(2583), - [anon_sym_r_SQUOTE] = ACTIONS(2583), - [anon_sym_r_DQUOTE] = ACTIONS(2583), - [sym_pseudo_compile_time_identifier] = ACTIONS(2585), - [anon_sym_shared] = ACTIONS(2585), - [anon_sym_map_LBRACK] = ACTIONS(2583), - [anon_sym_chan] = ACTIONS(2585), - [anon_sym_thread] = ACTIONS(2585), - [anon_sym_atomic] = ACTIONS(2585), + [anon_sym_DOT] = ACTIONS(2479), + [anon_sym_as] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_COMMA] = ACTIONS(2477), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_fn] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2479), + [anon_sym_PERCENT] = ACTIONS(2477), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(2477), + [anon_sym_RBRACK] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(2479), + [anon_sym_mut] = ACTIONS(2479), + [anon_sym_COLON] = ACTIONS(2477), + [anon_sym_PLUS_PLUS] = ACTIONS(2477), + [anon_sym_DASH_DASH] = ACTIONS(2477), + [anon_sym_QMARK] = ACTIONS(2479), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_go] = ACTIONS(2479), + [anon_sym_spawn] = ACTIONS(2479), + [anon_sym_json_DOTdecode] = ACTIONS(2477), + [anon_sym_PIPE] = ACTIONS(2479), + [anon_sym_LBRACK2] = ACTIONS(2479), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_CARET] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_LT_DASH] = ACTIONS(2477), + [anon_sym_LT_LT] = ACTIONS(2477), + [anon_sym_GT_GT] = ACTIONS(2479), + [anon_sym_GT_GT_GT] = ACTIONS(2477), + [anon_sym_AMP_CARET] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_or] = ACTIONS(2479), + [sym_none] = ACTIONS(2479), + [sym_true] = ACTIONS(2479), + [sym_false] = ACTIONS(2479), + [sym_nil] = ACTIONS(2479), + [anon_sym_QMARK_DOT] = ACTIONS(2477), + [anon_sym_POUND_LBRACK] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_DOLLARif] = ACTIONS(2479), + [anon_sym_is] = ACTIONS(2479), + [anon_sym_BANGis] = ACTIONS(2477), + [anon_sym_in] = ACTIONS(2479), + [anon_sym_BANGin] = ACTIONS(2477), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_select] = ACTIONS(2479), + [anon_sym_lock] = ACTIONS(2479), + [anon_sym_rlock] = ACTIONS(2479), + [anon_sym_unsafe] = ACTIONS(2479), + [anon_sym_sql] = ACTIONS(2479), + [sym_int_literal] = ACTIONS(2479), + [sym_float_literal] = ACTIONS(2477), + [sym_rune_literal] = ACTIONS(2477), + [anon_sym_SQUOTE] = ACTIONS(2477), + [anon_sym_DQUOTE] = ACTIONS(2477), + [anon_sym_c_SQUOTE] = ACTIONS(2477), + [anon_sym_c_DQUOTE] = ACTIONS(2477), + [anon_sym_r_SQUOTE] = ACTIONS(2477), + [anon_sym_r_DQUOTE] = ACTIONS(2477), + [sym_pseudo_compile_time_identifier] = ACTIONS(2479), + [anon_sym_shared] = ACTIONS(2479), + [anon_sym_map_LBRACK] = ACTIONS(2477), + [anon_sym_chan] = ACTIONS(2479), + [anon_sym_thread] = ACTIONS(2479), + [anon_sym_atomic] = ACTIONS(2479), }, [1379] = { [sym_line_comment] = STATE(1379), [sym_block_comment] = STATE(1379), - [sym_identifier] = ACTIONS(2133), + [sym_identifier] = ACTIONS(2491), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2133), - [anon_sym_as] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_COMMA] = ACTIONS(2131), - [anon_sym_RBRACE] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_PIPE] = ACTIONS(2133), - [anon_sym_fn] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(2133), - [anon_sym_DASH] = ACTIONS(2133), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_SLASH] = ACTIONS(2133), - [anon_sym_PERCENT] = ACTIONS(2131), - [anon_sym_LT] = ACTIONS(2133), - [anon_sym_GT] = ACTIONS(2133), - [anon_sym_EQ_EQ] = ACTIONS(2131), - [anon_sym_BANG_EQ] = ACTIONS(2131), - [anon_sym_LT_EQ] = ACTIONS(2131), - [anon_sym_GT_EQ] = ACTIONS(2131), - [anon_sym_LBRACK] = ACTIONS(2131), - [anon_sym_RBRACK] = ACTIONS(2131), - [anon_sym_struct] = ACTIONS(2133), - [anon_sym_mut] = ACTIONS(2133), - [anon_sym_COLON] = ACTIONS(2131), - [anon_sym_PLUS_PLUS] = ACTIONS(2131), - [anon_sym_DASH_DASH] = ACTIONS(2131), - [anon_sym_QMARK] = ACTIONS(2133), - [anon_sym_BANG] = ACTIONS(2133), - [anon_sym_go] = ACTIONS(2133), - [anon_sym_spawn] = ACTIONS(2133), - [anon_sym_json_DOTdecode] = ACTIONS(2131), - [anon_sym_LBRACK2] = ACTIONS(2133), - [anon_sym_TILDE] = ACTIONS(2131), - [anon_sym_CARET] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_LT_DASH] = ACTIONS(2131), - [anon_sym_LT_LT] = ACTIONS(2131), - [anon_sym_GT_GT] = ACTIONS(2133), - [anon_sym_GT_GT_GT] = ACTIONS(2131), - [anon_sym_AMP_CARET] = ACTIONS(2131), - [anon_sym_AMP_AMP] = ACTIONS(2131), - [anon_sym_PIPE_PIPE] = ACTIONS(2131), - [anon_sym_or] = ACTIONS(2133), - [sym_none] = ACTIONS(2133), - [sym_true] = ACTIONS(2133), - [sym_false] = ACTIONS(2133), - [sym_nil] = ACTIONS(2133), - [anon_sym_QMARK_DOT] = ACTIONS(2131), - [anon_sym_POUND_LBRACK] = ACTIONS(2131), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_DOLLARif] = ACTIONS(2133), - [anon_sym_is] = ACTIONS(2133), - [anon_sym_BANGis] = ACTIONS(2131), - [anon_sym_in] = ACTIONS(2133), - [anon_sym_BANGin] = ACTIONS(2131), - [anon_sym_match] = ACTIONS(2133), - [anon_sym_select] = ACTIONS(2133), - [anon_sym_lock] = ACTIONS(2133), - [anon_sym_rlock] = ACTIONS(2133), - [anon_sym_unsafe] = ACTIONS(2133), - [anon_sym_sql] = ACTIONS(2133), - [sym_int_literal] = ACTIONS(2133), - [sym_float_literal] = ACTIONS(2131), - [sym_rune_literal] = ACTIONS(2131), - [anon_sym_SQUOTE] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(2131), - [anon_sym_c_SQUOTE] = ACTIONS(2131), - [anon_sym_c_DQUOTE] = ACTIONS(2131), - [anon_sym_r_SQUOTE] = ACTIONS(2131), - [anon_sym_r_DQUOTE] = ACTIONS(2131), - [sym_pseudo_compile_time_identifier] = ACTIONS(2133), - [anon_sym_shared] = ACTIONS(2133), - [anon_sym_map_LBRACK] = ACTIONS(2131), - [anon_sym_chan] = ACTIONS(2133), - [anon_sym_thread] = ACTIONS(2133), - [anon_sym_atomic] = ACTIONS(2133), + [anon_sym_DOT] = ACTIONS(2491), + [anon_sym_as] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_COMMA] = ACTIONS(2489), + [anon_sym_RBRACE] = ACTIONS(2489), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_fn] = ACTIONS(2491), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_SLASH] = ACTIONS(2491), + [anon_sym_PERCENT] = ACTIONS(2489), + [anon_sym_LT] = ACTIONS(2491), + [anon_sym_GT] = ACTIONS(2491), + [anon_sym_EQ_EQ] = ACTIONS(2489), + [anon_sym_BANG_EQ] = ACTIONS(2489), + [anon_sym_LT_EQ] = ACTIONS(2489), + [anon_sym_GT_EQ] = ACTIONS(2489), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_RBRACK] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(2491), + [anon_sym_mut] = ACTIONS(2491), + [anon_sym_COLON] = ACTIONS(2489), + [anon_sym_PLUS_PLUS] = ACTIONS(2489), + [anon_sym_DASH_DASH] = ACTIONS(2489), + [anon_sym_QMARK] = ACTIONS(2491), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2491), + [anon_sym_spawn] = ACTIONS(2491), + [anon_sym_json_DOTdecode] = ACTIONS(2489), + [anon_sym_PIPE] = ACTIONS(2491), + [anon_sym_LBRACK2] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2489), + [anon_sym_CARET] = ACTIONS(2489), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2489), + [anon_sym_LT_LT] = ACTIONS(2489), + [anon_sym_GT_GT] = ACTIONS(2491), + [anon_sym_GT_GT_GT] = ACTIONS(2489), + [anon_sym_AMP_CARET] = ACTIONS(2489), + [anon_sym_AMP_AMP] = ACTIONS(2489), + [anon_sym_PIPE_PIPE] = ACTIONS(2489), + [anon_sym_or] = ACTIONS(2491), + [sym_none] = ACTIONS(2491), + [sym_true] = ACTIONS(2491), + [sym_false] = ACTIONS(2491), + [sym_nil] = ACTIONS(2491), + [anon_sym_QMARK_DOT] = ACTIONS(2489), + [anon_sym_POUND_LBRACK] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2491), + [anon_sym_DOLLARif] = ACTIONS(2491), + [anon_sym_is] = ACTIONS(2491), + [anon_sym_BANGis] = ACTIONS(2489), + [anon_sym_in] = ACTIONS(2491), + [anon_sym_BANGin] = ACTIONS(2489), + [anon_sym_match] = ACTIONS(2491), + [anon_sym_select] = ACTIONS(2491), + [anon_sym_lock] = ACTIONS(2491), + [anon_sym_rlock] = ACTIONS(2491), + [anon_sym_unsafe] = ACTIONS(2491), + [anon_sym_sql] = ACTIONS(2491), + [sym_int_literal] = ACTIONS(2491), + [sym_float_literal] = ACTIONS(2489), + [sym_rune_literal] = ACTIONS(2489), + [anon_sym_SQUOTE] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(2489), + [anon_sym_c_SQUOTE] = ACTIONS(2489), + [anon_sym_c_DQUOTE] = ACTIONS(2489), + [anon_sym_r_SQUOTE] = ACTIONS(2489), + [anon_sym_r_DQUOTE] = ACTIONS(2489), + [sym_pseudo_compile_time_identifier] = ACTIONS(2491), + [anon_sym_shared] = ACTIONS(2491), + [anon_sym_map_LBRACK] = ACTIONS(2489), + [anon_sym_chan] = ACTIONS(2491), + [anon_sym_thread] = ACTIONS(2491), + [anon_sym_atomic] = ACTIONS(2491), }, [1380] = { [sym_line_comment] = STATE(1380), [sym_block_comment] = STATE(1380), - [sym_identifier] = ACTIONS(3015), + [sym_identifier] = ACTIONS(2647), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3015), - [anon_sym_as] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_COMMA] = ACTIONS(3013), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_fn] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3015), - [anon_sym_DASH] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_SLASH] = ACTIONS(3015), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3015), - [anon_sym_EQ_EQ] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_RBRACK] = ACTIONS(3013), - [anon_sym_struct] = ACTIONS(3015), - [anon_sym_mut] = ACTIONS(3015), - [anon_sym_COLON] = ACTIONS(3013), - [anon_sym_PLUS_PLUS] = ACTIONS(3013), - [anon_sym_DASH_DASH] = ACTIONS(3013), - [anon_sym_QMARK] = ACTIONS(3015), - [anon_sym_BANG] = ACTIONS(3015), - [anon_sym_go] = ACTIONS(3015), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3013), - [anon_sym_LBRACK2] = ACTIONS(3015), - [anon_sym_TILDE] = ACTIONS(3013), - [anon_sym_CARET] = ACTIONS(3013), - [anon_sym_AMP] = ACTIONS(3015), - [anon_sym_LT_DASH] = ACTIONS(3013), - [anon_sym_LT_LT] = ACTIONS(3013), - [anon_sym_GT_GT] = ACTIONS(3015), - [anon_sym_GT_GT_GT] = ACTIONS(3013), - [anon_sym_AMP_CARET] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_or] = ACTIONS(3015), - [sym_none] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [sym_nil] = ACTIONS(3015), - [anon_sym_QMARK_DOT] = ACTIONS(3013), - [anon_sym_POUND_LBRACK] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_DOLLARif] = ACTIONS(3015), - [anon_sym_is] = ACTIONS(3015), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_in] = ACTIONS(3015), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3015), - [anon_sym_select] = ACTIONS(3015), - [anon_sym_lock] = ACTIONS(3015), - [anon_sym_rlock] = ACTIONS(3015), - [anon_sym_unsafe] = ACTIONS(3015), - [anon_sym_sql] = ACTIONS(3015), - [sym_int_literal] = ACTIONS(3015), - [sym_float_literal] = ACTIONS(3013), - [sym_rune_literal] = ACTIONS(3013), - [anon_sym_SQUOTE] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3013), - [anon_sym_c_SQUOTE] = ACTIONS(3013), - [anon_sym_c_DQUOTE] = ACTIONS(3013), - [anon_sym_r_SQUOTE] = ACTIONS(3013), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(2647), + [anon_sym_as] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_COMMA] = ACTIONS(2645), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_PERCENT] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_RBRACK] = ACTIONS(2645), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_mut] = ACTIONS(2647), + [anon_sym_COLON] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_QMARK] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_go] = ACTIONS(2647), + [anon_sym_spawn] = ACTIONS(2647), + [anon_sym_json_DOTdecode] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_LBRACK2] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_CARET] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_LT_DASH] = ACTIONS(2645), + [anon_sym_LT_LT] = ACTIONS(2645), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_GT_GT_GT] = ACTIONS(2645), + [anon_sym_AMP_CARET] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_or] = ACTIONS(2647), + [sym_none] = ACTIONS(2647), + [sym_true] = ACTIONS(2647), + [sym_false] = ACTIONS(2647), + [sym_nil] = ACTIONS(2647), + [anon_sym_QMARK_DOT] = ACTIONS(2645), + [anon_sym_POUND_LBRACK] = ACTIONS(2645), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_DOLLARif] = ACTIONS(2647), + [anon_sym_is] = ACTIONS(2647), + [anon_sym_BANGis] = ACTIONS(2645), + [anon_sym_in] = ACTIONS(2647), + [anon_sym_BANGin] = ACTIONS(2645), + [anon_sym_match] = ACTIONS(2647), + [anon_sym_select] = ACTIONS(2647), + [anon_sym_lock] = ACTIONS(2647), + [anon_sym_rlock] = ACTIONS(2647), + [anon_sym_unsafe] = ACTIONS(2647), + [anon_sym_sql] = ACTIONS(2647), + [sym_int_literal] = ACTIONS(2647), + [sym_float_literal] = ACTIONS(2645), + [sym_rune_literal] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_c_SQUOTE] = ACTIONS(2645), + [anon_sym_c_DQUOTE] = ACTIONS(2645), + [anon_sym_r_SQUOTE] = ACTIONS(2645), + [anon_sym_r_DQUOTE] = ACTIONS(2645), + [sym_pseudo_compile_time_identifier] = ACTIONS(2647), + [anon_sym_shared] = ACTIONS(2647), + [anon_sym_map_LBRACK] = ACTIONS(2645), + [anon_sym_chan] = ACTIONS(2647), + [anon_sym_thread] = ACTIONS(2647), + [anon_sym_atomic] = ACTIONS(2647), }, [1381] = { [sym_line_comment] = STATE(1381), [sym_block_comment] = STATE(1381), - [sym_identifier] = ACTIONS(2847), + [sym_identifier] = ACTIONS(2499), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2847), - [anon_sym_as] = ACTIONS(2847), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_COMMA] = ACTIONS(2845), - [anon_sym_RBRACE] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(2845), - [anon_sym_PIPE] = ACTIONS(2847), - [anon_sym_fn] = ACTIONS(2847), - [anon_sym_PLUS] = ACTIONS(2847), - [anon_sym_DASH] = ACTIONS(2847), - [anon_sym_STAR] = ACTIONS(2845), - [anon_sym_SLASH] = ACTIONS(2847), - [anon_sym_PERCENT] = ACTIONS(2845), - [anon_sym_LT] = ACTIONS(2847), - [anon_sym_GT] = ACTIONS(2847), - [anon_sym_EQ_EQ] = ACTIONS(2845), - [anon_sym_BANG_EQ] = ACTIONS(2845), - [anon_sym_LT_EQ] = ACTIONS(2845), - [anon_sym_GT_EQ] = ACTIONS(2845), - [anon_sym_LBRACK] = ACTIONS(2845), - [anon_sym_RBRACK] = ACTIONS(2845), - [anon_sym_struct] = ACTIONS(2847), - [anon_sym_mut] = ACTIONS(2847), - [anon_sym_COLON] = ACTIONS(2845), - [anon_sym_PLUS_PLUS] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2845), - [anon_sym_QMARK] = ACTIONS(2847), - [anon_sym_BANG] = ACTIONS(2847), - [anon_sym_go] = ACTIONS(2847), - [anon_sym_spawn] = ACTIONS(2847), - [anon_sym_json_DOTdecode] = ACTIONS(2845), - [anon_sym_LBRACK2] = ACTIONS(2847), - [anon_sym_TILDE] = ACTIONS(2845), - [anon_sym_CARET] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_LT_DASH] = ACTIONS(2845), - [anon_sym_LT_LT] = ACTIONS(2845), - [anon_sym_GT_GT] = ACTIONS(2847), - [anon_sym_GT_GT_GT] = ACTIONS(2845), - [anon_sym_AMP_CARET] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2845), - [anon_sym_PIPE_PIPE] = ACTIONS(2845), - [anon_sym_or] = ACTIONS(2847), - [sym_none] = ACTIONS(2847), - [sym_true] = ACTIONS(2847), - [sym_false] = ACTIONS(2847), - [sym_nil] = ACTIONS(2847), - [anon_sym_QMARK_DOT] = ACTIONS(2845), - [anon_sym_POUND_LBRACK] = ACTIONS(2845), - [anon_sym_if] = ACTIONS(2847), - [anon_sym_DOLLARif] = ACTIONS(2847), - [anon_sym_is] = ACTIONS(2847), - [anon_sym_BANGis] = ACTIONS(2845), - [anon_sym_in] = ACTIONS(2847), - [anon_sym_BANGin] = ACTIONS(2845), - [anon_sym_match] = ACTIONS(2847), - [anon_sym_select] = ACTIONS(2847), - [anon_sym_lock] = ACTIONS(2847), - [anon_sym_rlock] = ACTIONS(2847), - [anon_sym_unsafe] = ACTIONS(2847), - [anon_sym_sql] = ACTIONS(2847), - [sym_int_literal] = ACTIONS(2847), - [sym_float_literal] = ACTIONS(2845), - [sym_rune_literal] = ACTIONS(2845), - [anon_sym_SQUOTE] = ACTIONS(2845), - [anon_sym_DQUOTE] = ACTIONS(2845), - [anon_sym_c_SQUOTE] = ACTIONS(2845), - [anon_sym_c_DQUOTE] = ACTIONS(2845), - [anon_sym_r_SQUOTE] = ACTIONS(2845), - [anon_sym_r_DQUOTE] = ACTIONS(2845), - [sym_pseudo_compile_time_identifier] = ACTIONS(2847), - [anon_sym_shared] = ACTIONS(2847), - [anon_sym_map_LBRACK] = ACTIONS(2845), - [anon_sym_chan] = ACTIONS(2847), - [anon_sym_thread] = ACTIONS(2847), - [anon_sym_atomic] = ACTIONS(2847), + [anon_sym_DOT] = ACTIONS(2499), + [anon_sym_as] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_COMMA] = ACTIONS(2497), + [anon_sym_RBRACE] = ACTIONS(2497), + [anon_sym_LPAREN] = ACTIONS(2497), + [anon_sym_fn] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(2497), + [anon_sym_SLASH] = ACTIONS(2499), + [anon_sym_PERCENT] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(2499), + [anon_sym_EQ_EQ] = ACTIONS(2497), + [anon_sym_BANG_EQ] = ACTIONS(2497), + [anon_sym_LT_EQ] = ACTIONS(2497), + [anon_sym_GT_EQ] = ACTIONS(2497), + [anon_sym_LBRACK] = ACTIONS(2497), + [anon_sym_RBRACK] = ACTIONS(2497), + [anon_sym_struct] = ACTIONS(2499), + [anon_sym_mut] = ACTIONS(2499), + [anon_sym_COLON] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_QMARK] = ACTIONS(2499), + [anon_sym_BANG] = ACTIONS(3947), + [anon_sym_go] = ACTIONS(2499), + [anon_sym_spawn] = ACTIONS(2499), + [anon_sym_json_DOTdecode] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_LBRACK2] = ACTIONS(2499), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_CARET] = ACTIONS(2497), + [anon_sym_AMP] = ACTIONS(2499), + [anon_sym_LT_DASH] = ACTIONS(2497), + [anon_sym_LT_LT] = ACTIONS(2497), + [anon_sym_GT_GT] = ACTIONS(2499), + [anon_sym_GT_GT_GT] = ACTIONS(2497), + [anon_sym_AMP_CARET] = ACTIONS(2497), + [anon_sym_AMP_AMP] = ACTIONS(2497), + [anon_sym_PIPE_PIPE] = ACTIONS(2497), + [anon_sym_or] = ACTIONS(2499), + [sym_none] = ACTIONS(2499), + [sym_true] = ACTIONS(2499), + [sym_false] = ACTIONS(2499), + [sym_nil] = ACTIONS(2499), + [anon_sym_QMARK_DOT] = ACTIONS(2497), + [anon_sym_POUND_LBRACK] = ACTIONS(2497), + [anon_sym_if] = ACTIONS(2499), + [anon_sym_DOLLARif] = ACTIONS(2499), + [anon_sym_is] = ACTIONS(2499), + [anon_sym_BANGis] = ACTIONS(2497), + [anon_sym_in] = ACTIONS(2499), + [anon_sym_BANGin] = ACTIONS(2497), + [anon_sym_match] = ACTIONS(2499), + [anon_sym_select] = ACTIONS(2499), + [anon_sym_lock] = ACTIONS(2499), + [anon_sym_rlock] = ACTIONS(2499), + [anon_sym_unsafe] = ACTIONS(2499), + [anon_sym_sql] = ACTIONS(2499), + [sym_int_literal] = ACTIONS(2499), + [sym_float_literal] = ACTIONS(2497), + [sym_rune_literal] = ACTIONS(2497), + [anon_sym_SQUOTE] = ACTIONS(2497), + [anon_sym_DQUOTE] = ACTIONS(2497), + [anon_sym_c_SQUOTE] = ACTIONS(2497), + [anon_sym_c_DQUOTE] = ACTIONS(2497), + [anon_sym_r_SQUOTE] = ACTIONS(2497), + [anon_sym_r_DQUOTE] = ACTIONS(2497), + [sym_pseudo_compile_time_identifier] = ACTIONS(2499), + [anon_sym_shared] = ACTIONS(2499), + [anon_sym_map_LBRACK] = ACTIONS(2497), + [anon_sym_chan] = ACTIONS(2499), + [anon_sym_thread] = ACTIONS(2499), + [anon_sym_atomic] = ACTIONS(2499), }, [1382] = { [sym_line_comment] = STATE(1382), [sym_block_comment] = STATE(1382), - [sym_identifier] = ACTIONS(3011), + [sym_identifier] = ACTIONS(2653), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3011), - [anon_sym_as] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_fn] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(3011), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_EQ_EQ] = ACTIONS(3009), - [anon_sym_BANG_EQ] = ACTIONS(3009), - [anon_sym_LT_EQ] = ACTIONS(3009), - [anon_sym_GT_EQ] = ACTIONS(3009), - [anon_sym_LBRACK] = ACTIONS(3009), - [anon_sym_RBRACK] = ACTIONS(3009), - [anon_sym_struct] = ACTIONS(3011), - [anon_sym_mut] = ACTIONS(3011), - [anon_sym_COLON] = ACTIONS(3009), - [anon_sym_PLUS_PLUS] = ACTIONS(3009), - [anon_sym_DASH_DASH] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_go] = ACTIONS(3011), - [anon_sym_spawn] = ACTIONS(3011), - [anon_sym_json_DOTdecode] = ACTIONS(3009), - [anon_sym_LBRACK2] = ACTIONS(3011), - [anon_sym_TILDE] = ACTIONS(3009), - [anon_sym_CARET] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3011), - [anon_sym_LT_DASH] = ACTIONS(3009), - [anon_sym_LT_LT] = ACTIONS(3009), - [anon_sym_GT_GT] = ACTIONS(3011), - [anon_sym_GT_GT_GT] = ACTIONS(3009), - [anon_sym_AMP_CARET] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3009), - [anon_sym_or] = ACTIONS(3011), - [sym_none] = ACTIONS(3011), - [sym_true] = ACTIONS(3011), - [sym_false] = ACTIONS(3011), - [sym_nil] = ACTIONS(3011), - [anon_sym_QMARK_DOT] = ACTIONS(3009), - [anon_sym_POUND_LBRACK] = ACTIONS(3009), - [anon_sym_if] = ACTIONS(3011), - [anon_sym_DOLLARif] = ACTIONS(3011), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3009), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_BANGin] = ACTIONS(3009), - [anon_sym_match] = ACTIONS(3011), - [anon_sym_select] = ACTIONS(3011), - [anon_sym_lock] = ACTIONS(3011), - [anon_sym_rlock] = ACTIONS(3011), - [anon_sym_unsafe] = ACTIONS(3011), - [anon_sym_sql] = ACTIONS(3011), - [sym_int_literal] = ACTIONS(3011), - [sym_float_literal] = ACTIONS(3009), - [sym_rune_literal] = ACTIONS(3009), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_DQUOTE] = ACTIONS(3009), - [anon_sym_c_SQUOTE] = ACTIONS(3009), - [anon_sym_c_DQUOTE] = ACTIONS(3009), - [anon_sym_r_SQUOTE] = ACTIONS(3009), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(2653), + [anon_sym_as] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2651), + [anon_sym_COMMA] = ACTIONS(2651), + [anon_sym_RBRACE] = ACTIONS(2651), + [anon_sym_LPAREN] = ACTIONS(2651), + [anon_sym_fn] = ACTIONS(2653), + [anon_sym_PLUS] = ACTIONS(2653), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_SLASH] = ACTIONS(2653), + [anon_sym_PERCENT] = ACTIONS(2651), + [anon_sym_LT] = ACTIONS(2653), + [anon_sym_GT] = ACTIONS(2653), + [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(2651), + [anon_sym_RBRACK] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_mut] = ACTIONS(2653), + [anon_sym_COLON] = ACTIONS(2651), + [anon_sym_PLUS_PLUS] = ACTIONS(2651), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_QMARK] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2653), + [anon_sym_go] = ACTIONS(2653), + [anon_sym_spawn] = ACTIONS(2653), + [anon_sym_json_DOTdecode] = ACTIONS(2651), + [anon_sym_PIPE] = ACTIONS(2653), + [anon_sym_LBRACK2] = ACTIONS(2653), + [anon_sym_TILDE] = ACTIONS(2651), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_AMP] = ACTIONS(2653), + [anon_sym_LT_DASH] = ACTIONS(2651), + [anon_sym_LT_LT] = ACTIONS(2651), + [anon_sym_GT_GT] = ACTIONS(2653), + [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(2653), + [sym_none] = ACTIONS(2653), + [sym_true] = ACTIONS(2653), + [sym_false] = ACTIONS(2653), + [sym_nil] = ACTIONS(2653), + [anon_sym_QMARK_DOT] = ACTIONS(2651), + [anon_sym_POUND_LBRACK] = ACTIONS(2651), + [anon_sym_if] = ACTIONS(2653), + [anon_sym_DOLLARif] = ACTIONS(2653), + [anon_sym_is] = ACTIONS(2653), + [anon_sym_BANGis] = ACTIONS(2651), + [anon_sym_in] = ACTIONS(2653), + [anon_sym_BANGin] = ACTIONS(2651), + [anon_sym_match] = ACTIONS(2653), + [anon_sym_select] = ACTIONS(2653), + [anon_sym_lock] = ACTIONS(2653), + [anon_sym_rlock] = ACTIONS(2653), + [anon_sym_unsafe] = ACTIONS(2653), + [anon_sym_sql] = ACTIONS(2653), + [sym_int_literal] = ACTIONS(2653), + [sym_float_literal] = ACTIONS(2651), + [sym_rune_literal] = ACTIONS(2651), + [anon_sym_SQUOTE] = ACTIONS(2651), + [anon_sym_DQUOTE] = ACTIONS(2651), + [anon_sym_c_SQUOTE] = ACTIONS(2651), + [anon_sym_c_DQUOTE] = ACTIONS(2651), + [anon_sym_r_SQUOTE] = ACTIONS(2651), + [anon_sym_r_DQUOTE] = ACTIONS(2651), + [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_shared] = ACTIONS(2653), + [anon_sym_map_LBRACK] = ACTIONS(2651), + [anon_sym_chan] = ACTIONS(2653), + [anon_sym_thread] = ACTIONS(2653), + [anon_sym_atomic] = ACTIONS(2653), }, [1383] = { [sym_line_comment] = STATE(1383), [sym_block_comment] = STATE(1383), - [sym_identifier] = ACTIONS(2741), + [sym_identifier] = ACTIONS(3010), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2741), - [anon_sym_as] = ACTIONS(2741), - [anon_sym_LBRACE] = ACTIONS(2739), - [anon_sym_COMMA] = ACTIONS(2739), - [anon_sym_RBRACE] = ACTIONS(2739), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_PIPE] = ACTIONS(2741), - [anon_sym_fn] = ACTIONS(2741), - [anon_sym_PLUS] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2741), - [anon_sym_STAR] = ACTIONS(2739), - [anon_sym_SLASH] = ACTIONS(2741), - [anon_sym_PERCENT] = ACTIONS(2739), - [anon_sym_LT] = ACTIONS(2741), - [anon_sym_GT] = ACTIONS(2741), - [anon_sym_EQ_EQ] = ACTIONS(2739), - [anon_sym_BANG_EQ] = ACTIONS(2739), - [anon_sym_LT_EQ] = ACTIONS(2739), - [anon_sym_GT_EQ] = ACTIONS(2739), - [anon_sym_LBRACK] = ACTIONS(2739), - [anon_sym_RBRACK] = ACTIONS(2739), - [anon_sym_struct] = ACTIONS(2741), - [anon_sym_mut] = ACTIONS(2741), - [anon_sym_COLON] = ACTIONS(2739), - [anon_sym_PLUS_PLUS] = ACTIONS(2739), - [anon_sym_DASH_DASH] = ACTIONS(2739), - [anon_sym_QMARK] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_go] = ACTIONS(2741), - [anon_sym_spawn] = ACTIONS(2741), - [anon_sym_json_DOTdecode] = ACTIONS(2739), - [anon_sym_LBRACK2] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2739), - [anon_sym_CARET] = ACTIONS(2739), - [anon_sym_AMP] = ACTIONS(2741), - [anon_sym_LT_DASH] = ACTIONS(2739), - [anon_sym_LT_LT] = ACTIONS(2739), - [anon_sym_GT_GT] = ACTIONS(2741), - [anon_sym_GT_GT_GT] = ACTIONS(2739), - [anon_sym_AMP_CARET] = ACTIONS(2739), - [anon_sym_AMP_AMP] = ACTIONS(2739), - [anon_sym_PIPE_PIPE] = ACTIONS(2739), - [anon_sym_or] = ACTIONS(2741), - [sym_none] = ACTIONS(2741), - [sym_true] = ACTIONS(2741), - [sym_false] = ACTIONS(2741), - [sym_nil] = ACTIONS(2741), - [anon_sym_QMARK_DOT] = ACTIONS(2739), - [anon_sym_POUND_LBRACK] = ACTIONS(2739), - [anon_sym_if] = ACTIONS(2741), - [anon_sym_DOLLARif] = ACTIONS(2741), - [anon_sym_is] = ACTIONS(2741), - [anon_sym_BANGis] = ACTIONS(2739), - [anon_sym_in] = ACTIONS(2741), - [anon_sym_BANGin] = ACTIONS(2739), - [anon_sym_match] = ACTIONS(2741), - [anon_sym_select] = ACTIONS(2741), - [anon_sym_lock] = ACTIONS(2741), - [anon_sym_rlock] = ACTIONS(2741), - [anon_sym_unsafe] = ACTIONS(2741), - [anon_sym_sql] = ACTIONS(2741), - [sym_int_literal] = ACTIONS(2741), - [sym_float_literal] = ACTIONS(2739), - [sym_rune_literal] = ACTIONS(2739), - [anon_sym_SQUOTE] = ACTIONS(2739), - [anon_sym_DQUOTE] = ACTIONS(2739), - [anon_sym_c_SQUOTE] = ACTIONS(2739), - [anon_sym_c_DQUOTE] = ACTIONS(2739), - [anon_sym_r_SQUOTE] = ACTIONS(2739), - [anon_sym_r_DQUOTE] = ACTIONS(2739), - [sym_pseudo_compile_time_identifier] = ACTIONS(2741), - [anon_sym_shared] = ACTIONS(2741), - [anon_sym_map_LBRACK] = ACTIONS(2739), - [anon_sym_chan] = ACTIONS(2741), - [anon_sym_thread] = ACTIONS(2741), - [anon_sym_atomic] = ACTIONS(2741), + [anon_sym_DOT] = ACTIONS(3010), + [anon_sym_as] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3008), + [anon_sym_COMMA] = ACTIONS(3008), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_fn] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(3008), + [anon_sym_SLASH] = ACTIONS(3010), + [anon_sym_PERCENT] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3010), + [anon_sym_EQ_EQ] = ACTIONS(3008), + [anon_sym_BANG_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_RBRACK] = ACTIONS(3008), + [anon_sym_struct] = ACTIONS(3010), + [anon_sym_mut] = ACTIONS(3010), + [anon_sym_COLON] = ACTIONS(3008), + [anon_sym_PLUS_PLUS] = ACTIONS(3008), + [anon_sym_DASH_DASH] = ACTIONS(3008), + [anon_sym_QMARK] = ACTIONS(3010), + [anon_sym_BANG] = ACTIONS(3010), + [anon_sym_go] = ACTIONS(3010), + [anon_sym_spawn] = ACTIONS(3010), + [anon_sym_json_DOTdecode] = ACTIONS(3008), + [anon_sym_PIPE] = ACTIONS(3010), + [anon_sym_LBRACK2] = ACTIONS(3010), + [anon_sym_TILDE] = ACTIONS(3008), + [anon_sym_CARET] = ACTIONS(3008), + [anon_sym_AMP] = ACTIONS(3010), + [anon_sym_LT_DASH] = ACTIONS(3008), + [anon_sym_LT_LT] = ACTIONS(3008), + [anon_sym_GT_GT] = ACTIONS(3010), + [anon_sym_GT_GT_GT] = ACTIONS(3008), + [anon_sym_AMP_CARET] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_or] = ACTIONS(3010), + [sym_none] = ACTIONS(3010), + [sym_true] = ACTIONS(3010), + [sym_false] = ACTIONS(3010), + [sym_nil] = ACTIONS(3010), + [anon_sym_QMARK_DOT] = ACTIONS(3008), + [anon_sym_POUND_LBRACK] = ACTIONS(3008), + [anon_sym_if] = ACTIONS(3010), + [anon_sym_DOLLARif] = ACTIONS(3010), + [anon_sym_is] = ACTIONS(3010), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(3010), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_match] = ACTIONS(3010), + [anon_sym_select] = ACTIONS(3010), + [anon_sym_lock] = ACTIONS(3010), + [anon_sym_rlock] = ACTIONS(3010), + [anon_sym_unsafe] = ACTIONS(3010), + [anon_sym_sql] = ACTIONS(3010), + [sym_int_literal] = ACTIONS(3010), + [sym_float_literal] = ACTIONS(3008), + [sym_rune_literal] = ACTIONS(3008), + [anon_sym_SQUOTE] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(3008), + [anon_sym_c_SQUOTE] = ACTIONS(3008), + [anon_sym_c_DQUOTE] = ACTIONS(3008), + [anon_sym_r_SQUOTE] = ACTIONS(3008), + [anon_sym_r_DQUOTE] = ACTIONS(3008), + [sym_pseudo_compile_time_identifier] = ACTIONS(3010), + [anon_sym_shared] = ACTIONS(3010), + [anon_sym_map_LBRACK] = ACTIONS(3008), + [anon_sym_chan] = ACTIONS(3010), + [anon_sym_thread] = ACTIONS(3010), + [anon_sym_atomic] = ACTIONS(3010), }, [1384] = { [sym_line_comment] = STATE(1384), [sym_block_comment] = STATE(1384), - [sym_identifier] = ACTIONS(2843), + [sym_identifier] = ACTIONS(2657), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2843), - [anon_sym_as] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2841), - [anon_sym_COMMA] = ACTIONS(2841), - [anon_sym_RBRACE] = ACTIONS(2841), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_PIPE] = ACTIONS(2843), - [anon_sym_fn] = ACTIONS(2843), - [anon_sym_PLUS] = ACTIONS(2843), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_STAR] = ACTIONS(2841), - [anon_sym_SLASH] = ACTIONS(2843), - [anon_sym_PERCENT] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2843), - [anon_sym_GT] = ACTIONS(2843), - [anon_sym_EQ_EQ] = ACTIONS(2841), - [anon_sym_BANG_EQ] = ACTIONS(2841), - [anon_sym_LT_EQ] = ACTIONS(2841), - [anon_sym_GT_EQ] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_RBRACK] = ACTIONS(2841), - [anon_sym_struct] = ACTIONS(2843), - [anon_sym_mut] = ACTIONS(2843), - [anon_sym_COLON] = ACTIONS(2841), - [anon_sym_PLUS_PLUS] = ACTIONS(2841), - [anon_sym_DASH_DASH] = ACTIONS(2841), - [anon_sym_QMARK] = ACTIONS(2843), - [anon_sym_BANG] = ACTIONS(2843), - [anon_sym_go] = ACTIONS(2843), - [anon_sym_spawn] = ACTIONS(2843), - [anon_sym_json_DOTdecode] = ACTIONS(2841), - [anon_sym_LBRACK2] = ACTIONS(2843), - [anon_sym_TILDE] = ACTIONS(2841), - [anon_sym_CARET] = ACTIONS(2841), - [anon_sym_AMP] = ACTIONS(2843), - [anon_sym_LT_DASH] = ACTIONS(2841), - [anon_sym_LT_LT] = ACTIONS(2841), - [anon_sym_GT_GT] = ACTIONS(2843), - [anon_sym_GT_GT_GT] = ACTIONS(2841), - [anon_sym_AMP_CARET] = ACTIONS(2841), - [anon_sym_AMP_AMP] = ACTIONS(2841), - [anon_sym_PIPE_PIPE] = ACTIONS(2841), - [anon_sym_or] = ACTIONS(2843), - [sym_none] = ACTIONS(2843), - [sym_true] = ACTIONS(2843), - [sym_false] = ACTIONS(2843), - [sym_nil] = ACTIONS(2843), - [anon_sym_QMARK_DOT] = ACTIONS(2841), - [anon_sym_POUND_LBRACK] = ACTIONS(2841), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_DOLLARif] = ACTIONS(2843), - [anon_sym_is] = ACTIONS(2843), - [anon_sym_BANGis] = ACTIONS(2841), - [anon_sym_in] = ACTIONS(2843), - [anon_sym_BANGin] = ACTIONS(2841), - [anon_sym_match] = ACTIONS(2843), - [anon_sym_select] = ACTIONS(2843), - [anon_sym_lock] = ACTIONS(2843), - [anon_sym_rlock] = ACTIONS(2843), - [anon_sym_unsafe] = ACTIONS(2843), - [anon_sym_sql] = ACTIONS(2843), - [sym_int_literal] = ACTIONS(2843), - [sym_float_literal] = ACTIONS(2841), - [sym_rune_literal] = ACTIONS(2841), - [anon_sym_SQUOTE] = ACTIONS(2841), - [anon_sym_DQUOTE] = ACTIONS(2841), - [anon_sym_c_SQUOTE] = ACTIONS(2841), - [anon_sym_c_DQUOTE] = ACTIONS(2841), - [anon_sym_r_SQUOTE] = ACTIONS(2841), - [anon_sym_r_DQUOTE] = ACTIONS(2841), - [sym_pseudo_compile_time_identifier] = ACTIONS(2843), - [anon_sym_shared] = ACTIONS(2843), - [anon_sym_map_LBRACK] = ACTIONS(2841), - [anon_sym_chan] = ACTIONS(2843), - [anon_sym_thread] = ACTIONS(2843), - [anon_sym_atomic] = ACTIONS(2843), + [anon_sym_DOT] = ACTIONS(2657), + [anon_sym_as] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_COMMA] = ACTIONS(2655), + [anon_sym_RBRACE] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2655), + [anon_sym_fn] = ACTIONS(2657), + [anon_sym_PLUS] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2655), + [anon_sym_SLASH] = ACTIONS(2657), + [anon_sym_PERCENT] = ACTIONS(2655), + [anon_sym_LT] = ACTIONS(2657), + [anon_sym_GT] = ACTIONS(2657), + [anon_sym_EQ_EQ] = ACTIONS(2655), + [anon_sym_BANG_EQ] = ACTIONS(2655), + [anon_sym_LT_EQ] = ACTIONS(2655), + [anon_sym_GT_EQ] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2655), + [anon_sym_RBRACK] = ACTIONS(2655), + [anon_sym_struct] = ACTIONS(2657), + [anon_sym_mut] = ACTIONS(2657), + [anon_sym_COLON] = ACTIONS(2655), + [anon_sym_PLUS_PLUS] = ACTIONS(2655), + [anon_sym_DASH_DASH] = ACTIONS(2655), + [anon_sym_QMARK] = ACTIONS(2657), + [anon_sym_BANG] = ACTIONS(2657), + [anon_sym_go] = ACTIONS(2657), + [anon_sym_spawn] = ACTIONS(2657), + [anon_sym_json_DOTdecode] = ACTIONS(2655), + [anon_sym_PIPE] = ACTIONS(2657), + [anon_sym_LBRACK2] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(2655), + [anon_sym_AMP] = ACTIONS(2657), + [anon_sym_LT_DASH] = ACTIONS(2655), + [anon_sym_LT_LT] = ACTIONS(2655), + [anon_sym_GT_GT] = ACTIONS(2657), + [anon_sym_GT_GT_GT] = ACTIONS(2655), + [anon_sym_AMP_CARET] = ACTIONS(2655), + [anon_sym_AMP_AMP] = ACTIONS(2655), + [anon_sym_PIPE_PIPE] = ACTIONS(2655), + [anon_sym_or] = ACTIONS(2657), + [sym_none] = ACTIONS(2657), + [sym_true] = ACTIONS(2657), + [sym_false] = ACTIONS(2657), + [sym_nil] = ACTIONS(2657), + [anon_sym_QMARK_DOT] = ACTIONS(2655), + [anon_sym_POUND_LBRACK] = ACTIONS(2655), + [anon_sym_if] = ACTIONS(2657), + [anon_sym_DOLLARif] = ACTIONS(2657), + [anon_sym_is] = ACTIONS(2657), + [anon_sym_BANGis] = ACTIONS(2655), + [anon_sym_in] = ACTIONS(2657), + [anon_sym_BANGin] = ACTIONS(2655), + [anon_sym_match] = ACTIONS(2657), + [anon_sym_select] = ACTIONS(2657), + [anon_sym_lock] = ACTIONS(2657), + [anon_sym_rlock] = ACTIONS(2657), + [anon_sym_unsafe] = ACTIONS(2657), + [anon_sym_sql] = ACTIONS(2657), + [sym_int_literal] = ACTIONS(2657), + [sym_float_literal] = ACTIONS(2655), + [sym_rune_literal] = ACTIONS(2655), + [anon_sym_SQUOTE] = ACTIONS(2655), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_c_SQUOTE] = ACTIONS(2655), + [anon_sym_c_DQUOTE] = ACTIONS(2655), + [anon_sym_r_SQUOTE] = ACTIONS(2655), + [anon_sym_r_DQUOTE] = ACTIONS(2655), + [sym_pseudo_compile_time_identifier] = ACTIONS(2657), + [anon_sym_shared] = ACTIONS(2657), + [anon_sym_map_LBRACK] = ACTIONS(2655), + [anon_sym_chan] = ACTIONS(2657), + [anon_sym_thread] = ACTIONS(2657), + [anon_sym_atomic] = ACTIONS(2657), }, [1385] = { [sym_line_comment] = STATE(1385), [sym_block_comment] = STATE(1385), - [sym_identifier] = ACTIONS(2089), + [sym_identifier] = ACTIONS(3046), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2089), - [anon_sym_as] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_COMMA] = ACTIONS(2087), - [anon_sym_RBRACE] = ACTIONS(2087), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_PIPE] = ACTIONS(2089), - [anon_sym_fn] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2087), - [anon_sym_SLASH] = ACTIONS(2089), - [anon_sym_PERCENT] = ACTIONS(2087), - [anon_sym_LT] = ACTIONS(2089), - [anon_sym_GT] = ACTIONS(2089), - [anon_sym_EQ_EQ] = ACTIONS(2087), - [anon_sym_BANG_EQ] = ACTIONS(2087), - [anon_sym_LT_EQ] = ACTIONS(2087), - [anon_sym_GT_EQ] = ACTIONS(2087), - [anon_sym_LBRACK] = ACTIONS(2087), - [anon_sym_RBRACK] = ACTIONS(2087), - [anon_sym_struct] = ACTIONS(2089), - [anon_sym_mut] = ACTIONS(2089), - [anon_sym_COLON] = ACTIONS(2087), - [anon_sym_PLUS_PLUS] = ACTIONS(2087), - [anon_sym_DASH_DASH] = ACTIONS(2087), - [anon_sym_QMARK] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(2089), - [anon_sym_go] = ACTIONS(2089), - [anon_sym_spawn] = ACTIONS(2089), - [anon_sym_json_DOTdecode] = ACTIONS(2087), - [anon_sym_LBRACK2] = ACTIONS(2089), - [anon_sym_TILDE] = ACTIONS(2087), - [anon_sym_CARET] = ACTIONS(2087), - [anon_sym_AMP] = ACTIONS(2089), - [anon_sym_LT_DASH] = ACTIONS(2087), - [anon_sym_LT_LT] = ACTIONS(2087), - [anon_sym_GT_GT] = ACTIONS(2089), - [anon_sym_GT_GT_GT] = ACTIONS(2087), - [anon_sym_AMP_CARET] = ACTIONS(2087), - [anon_sym_AMP_AMP] = ACTIONS(2087), - [anon_sym_PIPE_PIPE] = ACTIONS(2087), - [anon_sym_or] = ACTIONS(2089), - [sym_none] = ACTIONS(2089), - [sym_true] = ACTIONS(2089), - [sym_false] = ACTIONS(2089), - [sym_nil] = ACTIONS(2089), - [anon_sym_QMARK_DOT] = ACTIONS(2087), - [anon_sym_POUND_LBRACK] = ACTIONS(2087), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_DOLLARif] = ACTIONS(2089), - [anon_sym_is] = ACTIONS(2089), - [anon_sym_BANGis] = ACTIONS(2087), - [anon_sym_in] = ACTIONS(2089), - [anon_sym_BANGin] = ACTIONS(2087), - [anon_sym_match] = ACTIONS(2089), - [anon_sym_select] = ACTIONS(2089), - [anon_sym_lock] = ACTIONS(2089), - [anon_sym_rlock] = ACTIONS(2089), - [anon_sym_unsafe] = ACTIONS(2089), - [anon_sym_sql] = ACTIONS(2089), - [sym_int_literal] = ACTIONS(2089), - [sym_float_literal] = ACTIONS(2087), - [sym_rune_literal] = ACTIONS(2087), - [anon_sym_SQUOTE] = ACTIONS(2087), - [anon_sym_DQUOTE] = ACTIONS(2087), - [anon_sym_c_SQUOTE] = ACTIONS(2087), - [anon_sym_c_DQUOTE] = ACTIONS(2087), - [anon_sym_r_SQUOTE] = ACTIONS(2087), - [anon_sym_r_DQUOTE] = ACTIONS(2087), - [sym_pseudo_compile_time_identifier] = ACTIONS(2089), - [anon_sym_shared] = ACTIONS(2089), - [anon_sym_map_LBRACK] = ACTIONS(2087), - [anon_sym_chan] = ACTIONS(2089), - [anon_sym_thread] = ACTIONS(2089), - [anon_sym_atomic] = ACTIONS(2089), + [anon_sym_DOT] = ACTIONS(3046), + [anon_sym_as] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_COMMA] = ACTIONS(3044), + [anon_sym_RBRACE] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym_fn] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_SLASH] = ACTIONS(3046), + [anon_sym_PERCENT] = ACTIONS(3044), + [anon_sym_LT] = ACTIONS(3046), + [anon_sym_GT] = ACTIONS(3046), + [anon_sym_EQ_EQ] = ACTIONS(3044), + [anon_sym_BANG_EQ] = ACTIONS(3044), + [anon_sym_LT_EQ] = ACTIONS(3044), + [anon_sym_GT_EQ] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(3044), + [anon_sym_struct] = ACTIONS(3046), + [anon_sym_mut] = ACTIONS(3046), + [anon_sym_COLON] = ACTIONS(3044), + [anon_sym_PLUS_PLUS] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_go] = ACTIONS(3046), + [anon_sym_spawn] = ACTIONS(3046), + [anon_sym_json_DOTdecode] = ACTIONS(3044), + [anon_sym_PIPE] = ACTIONS(3046), + [anon_sym_LBRACK2] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3044), + [anon_sym_CARET] = ACTIONS(3044), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_LT_DASH] = ACTIONS(3044), + [anon_sym_LT_LT] = ACTIONS(3044), + [anon_sym_GT_GT] = ACTIONS(3046), + [anon_sym_GT_GT_GT] = ACTIONS(3044), + [anon_sym_AMP_CARET] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(3044), + [anon_sym_PIPE_PIPE] = ACTIONS(3044), + [anon_sym_or] = ACTIONS(3046), + [sym_none] = ACTIONS(3046), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_nil] = ACTIONS(3046), + [anon_sym_QMARK_DOT] = ACTIONS(3044), + [anon_sym_POUND_LBRACK] = ACTIONS(3044), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_DOLLARif] = ACTIONS(3046), + [anon_sym_is] = ACTIONS(3046), + [anon_sym_BANGis] = ACTIONS(3044), + [anon_sym_in] = ACTIONS(3046), + [anon_sym_BANGin] = ACTIONS(3044), + [anon_sym_match] = ACTIONS(3046), + [anon_sym_select] = ACTIONS(3046), + [anon_sym_lock] = ACTIONS(3046), + [anon_sym_rlock] = ACTIONS(3046), + [anon_sym_unsafe] = ACTIONS(3046), + [anon_sym_sql] = ACTIONS(3046), + [sym_int_literal] = ACTIONS(3046), + [sym_float_literal] = ACTIONS(3044), + [sym_rune_literal] = ACTIONS(3044), + [anon_sym_SQUOTE] = ACTIONS(3044), + [anon_sym_DQUOTE] = ACTIONS(3044), + [anon_sym_c_SQUOTE] = ACTIONS(3044), + [anon_sym_c_DQUOTE] = ACTIONS(3044), + [anon_sym_r_SQUOTE] = ACTIONS(3044), + [anon_sym_r_DQUOTE] = ACTIONS(3044), + [sym_pseudo_compile_time_identifier] = ACTIONS(3046), + [anon_sym_shared] = ACTIONS(3046), + [anon_sym_map_LBRACK] = ACTIONS(3044), + [anon_sym_chan] = ACTIONS(3046), + [anon_sym_thread] = ACTIONS(3046), + [anon_sym_atomic] = ACTIONS(3046), }, [1386] = { [sym_line_comment] = STATE(1386), [sym_block_comment] = STATE(1386), - [sym_identifier] = ACTIONS(2055), + [sym_identifier] = ACTIONS(2701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2053), - [anon_sym_COMMA] = ACTIONS(2053), - [anon_sym_RBRACE] = ACTIONS(2053), - [anon_sym_LPAREN] = ACTIONS(2053), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2053), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2053), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2053), - [anon_sym_BANG_EQ] = ACTIONS(2053), - [anon_sym_LT_EQ] = ACTIONS(2053), - [anon_sym_GT_EQ] = ACTIONS(2053), - [anon_sym_LBRACK] = ACTIONS(2053), - [anon_sym_RBRACK] = ACTIONS(2053), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_COLON] = ACTIONS(2053), - [anon_sym_PLUS_PLUS] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(2053), - [anon_sym_QMARK] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_go] = ACTIONS(2055), - [anon_sym_spawn] = ACTIONS(2055), - [anon_sym_json_DOTdecode] = ACTIONS(2053), - [anon_sym_LBRACK2] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2053), - [anon_sym_CARET] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_LT_DASH] = ACTIONS(2053), - [anon_sym_LT_LT] = ACTIONS(2053), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2053), - [anon_sym_AMP_CARET] = ACTIONS(2053), - [anon_sym_AMP_AMP] = ACTIONS(2053), - [anon_sym_PIPE_PIPE] = ACTIONS(2053), - [anon_sym_or] = ACTIONS(2055), - [sym_none] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_nil] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(2053), - [anon_sym_POUND_LBRACK] = ACTIONS(2053), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_DOLLARif] = ACTIONS(2055), - [anon_sym_is] = ACTIONS(2055), - [anon_sym_BANGis] = ACTIONS(2053), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_BANGin] = ACTIONS(2053), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_select] = ACTIONS(2055), - [anon_sym_lock] = ACTIONS(2055), - [anon_sym_rlock] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_sql] = ACTIONS(2055), - [sym_int_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2053), - [sym_rune_literal] = ACTIONS(2053), - [anon_sym_SQUOTE] = ACTIONS(2053), - [anon_sym_DQUOTE] = ACTIONS(2053), - [anon_sym_c_SQUOTE] = ACTIONS(2053), - [anon_sym_c_DQUOTE] = ACTIONS(2053), - [anon_sym_r_SQUOTE] = ACTIONS(2053), - [anon_sym_r_DQUOTE] = ACTIONS(2053), - [sym_pseudo_compile_time_identifier] = ACTIONS(2055), - [anon_sym_shared] = ACTIONS(2055), - [anon_sym_map_LBRACK] = ACTIONS(2053), - [anon_sym_chan] = ACTIONS(2055), - [anon_sym_thread] = ACTIONS(2055), - [anon_sym_atomic] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(2701), + [anon_sym_as] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_COMMA] = ACTIONS(2699), + [anon_sym_RBRACE] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_fn] = ACTIONS(2701), + [anon_sym_PLUS] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(2701), + [anon_sym_STAR] = ACTIONS(2699), + [anon_sym_SLASH] = ACTIONS(2701), + [anon_sym_PERCENT] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_GT] = ACTIONS(2701), + [anon_sym_EQ_EQ] = ACTIONS(2699), + [anon_sym_BANG_EQ] = ACTIONS(2699), + [anon_sym_LT_EQ] = ACTIONS(2699), + [anon_sym_GT_EQ] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_RBRACK] = ACTIONS(2699), + [anon_sym_struct] = ACTIONS(2701), + [anon_sym_mut] = ACTIONS(2701), + [anon_sym_COLON] = ACTIONS(2699), + [anon_sym_PLUS_PLUS] = ACTIONS(2699), + [anon_sym_DASH_DASH] = ACTIONS(2699), + [anon_sym_QMARK] = ACTIONS(2701), + [anon_sym_BANG] = ACTIONS(2701), + [anon_sym_go] = ACTIONS(2701), + [anon_sym_spawn] = ACTIONS(2701), + [anon_sym_json_DOTdecode] = ACTIONS(2699), + [anon_sym_PIPE] = ACTIONS(2701), + [anon_sym_LBRACK2] = ACTIONS(2701), + [anon_sym_TILDE] = ACTIONS(2699), + [anon_sym_CARET] = ACTIONS(2699), + [anon_sym_AMP] = ACTIONS(2701), + [anon_sym_LT_DASH] = ACTIONS(2699), + [anon_sym_LT_LT] = ACTIONS(2699), + [anon_sym_GT_GT] = ACTIONS(2701), + [anon_sym_GT_GT_GT] = ACTIONS(2699), + [anon_sym_AMP_CARET] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_PIPE_PIPE] = ACTIONS(2699), + [anon_sym_or] = ACTIONS(2701), + [sym_none] = ACTIONS(2701), + [sym_true] = ACTIONS(2701), + [sym_false] = ACTIONS(2701), + [sym_nil] = ACTIONS(2701), + [anon_sym_QMARK_DOT] = ACTIONS(2699), + [anon_sym_POUND_LBRACK] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_DOLLARif] = ACTIONS(2701), + [anon_sym_is] = ACTIONS(2701), + [anon_sym_BANGis] = ACTIONS(2699), + [anon_sym_in] = ACTIONS(2701), + [anon_sym_BANGin] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2701), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2701), + [anon_sym_rlock] = ACTIONS(2701), + [anon_sym_unsafe] = ACTIONS(2701), + [anon_sym_sql] = ACTIONS(2701), + [sym_int_literal] = ACTIONS(2701), + [sym_float_literal] = ACTIONS(2699), + [sym_rune_literal] = ACTIONS(2699), + [anon_sym_SQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_c_SQUOTE] = ACTIONS(2699), + [anon_sym_c_DQUOTE] = ACTIONS(2699), + [anon_sym_r_SQUOTE] = ACTIONS(2699), + [anon_sym_r_DQUOTE] = ACTIONS(2699), + [sym_pseudo_compile_time_identifier] = ACTIONS(2701), + [anon_sym_shared] = ACTIONS(2701), + [anon_sym_map_LBRACK] = ACTIONS(2699), + [anon_sym_chan] = ACTIONS(2701), + [anon_sym_thread] = ACTIONS(2701), + [anon_sym_atomic] = ACTIONS(2701), }, [1387] = { [sym_line_comment] = STATE(1387), [sym_block_comment] = STATE(1387), - [sym_identifier] = ACTIONS(2159), + [sym_identifier] = ACTIONS(2719), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2157), - [anon_sym_COMMA] = ACTIONS(2157), - [anon_sym_RBRACE] = ACTIONS(2157), - [anon_sym_LPAREN] = ACTIONS(2157), - [anon_sym_PIPE] = ACTIONS(2159), - [anon_sym_fn] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_PERCENT] = ACTIONS(2157), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_GT] = ACTIONS(2159), - [anon_sym_EQ_EQ] = ACTIONS(2157), - [anon_sym_BANG_EQ] = ACTIONS(2157), - [anon_sym_LT_EQ] = ACTIONS(2157), - [anon_sym_GT_EQ] = ACTIONS(2157), - [anon_sym_LBRACK] = ACTIONS(2157), - [anon_sym_RBRACK] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2159), - [anon_sym_mut] = ACTIONS(2159), - [anon_sym_COLON] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_QMARK] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(2159), - [anon_sym_spawn] = ACTIONS(2159), - [anon_sym_json_DOTdecode] = ACTIONS(2157), - [anon_sym_LBRACK2] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2157), - [anon_sym_LT_LT] = ACTIONS(2157), - [anon_sym_GT_GT] = ACTIONS(2159), - [anon_sym_GT_GT_GT] = ACTIONS(2157), - [anon_sym_AMP_CARET] = ACTIONS(2157), - [anon_sym_AMP_AMP] = ACTIONS(2157), - [anon_sym_PIPE_PIPE] = ACTIONS(2157), - [anon_sym_or] = ACTIONS(2159), - [sym_none] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_nil] = ACTIONS(2159), - [anon_sym_QMARK_DOT] = ACTIONS(2157), - [anon_sym_POUND_LBRACK] = ACTIONS(2157), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_DOLLARif] = ACTIONS(2159), - [anon_sym_is] = ACTIONS(2159), - [anon_sym_BANGis] = ACTIONS(2157), - [anon_sym_in] = ACTIONS(2159), - [anon_sym_BANGin] = ACTIONS(2157), - [anon_sym_match] = ACTIONS(2159), - [anon_sym_select] = ACTIONS(2159), - [anon_sym_lock] = ACTIONS(2159), - [anon_sym_rlock] = ACTIONS(2159), - [anon_sym_unsafe] = ACTIONS(2159), - [anon_sym_sql] = ACTIONS(2159), - [sym_int_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2157), - [sym_rune_literal] = ACTIONS(2157), - [anon_sym_SQUOTE] = ACTIONS(2157), - [anon_sym_DQUOTE] = ACTIONS(2157), - [anon_sym_c_SQUOTE] = ACTIONS(2157), - [anon_sym_c_DQUOTE] = ACTIONS(2157), - [anon_sym_r_SQUOTE] = ACTIONS(2157), - [anon_sym_r_DQUOTE] = ACTIONS(2157), - [sym_pseudo_compile_time_identifier] = ACTIONS(2159), - [anon_sym_shared] = ACTIONS(2159), - [anon_sym_map_LBRACK] = ACTIONS(2157), - [anon_sym_chan] = ACTIONS(2159), - [anon_sym_thread] = ACTIONS(2159), - [anon_sym_atomic] = ACTIONS(2159), + [anon_sym_DOT] = ACTIONS(2719), + [anon_sym_as] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(2717), + [anon_sym_COMMA] = ACTIONS(2717), + [anon_sym_RBRACE] = ACTIONS(2717), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_fn] = ACTIONS(2719), + [anon_sym_PLUS] = ACTIONS(2719), + [anon_sym_DASH] = ACTIONS(2719), + [anon_sym_STAR] = ACTIONS(2717), + [anon_sym_SLASH] = ACTIONS(2719), + [anon_sym_PERCENT] = ACTIONS(2717), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_GT] = ACTIONS(2719), + [anon_sym_EQ_EQ] = ACTIONS(2717), + [anon_sym_BANG_EQ] = ACTIONS(2717), + [anon_sym_LT_EQ] = ACTIONS(2717), + [anon_sym_GT_EQ] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_RBRACK] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(2719), + [anon_sym_mut] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(2717), + [anon_sym_PLUS_PLUS] = ACTIONS(2717), + [anon_sym_DASH_DASH] = ACTIONS(2717), + [anon_sym_QMARK] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_go] = ACTIONS(2719), + [anon_sym_spawn] = ACTIONS(2719), + [anon_sym_json_DOTdecode] = ACTIONS(2717), + [anon_sym_PIPE] = ACTIONS(2719), + [anon_sym_LBRACK2] = ACTIONS(2719), + [anon_sym_TILDE] = ACTIONS(2717), + [anon_sym_CARET] = ACTIONS(2717), + [anon_sym_AMP] = ACTIONS(2719), + [anon_sym_LT_DASH] = ACTIONS(2717), + [anon_sym_LT_LT] = ACTIONS(2717), + [anon_sym_GT_GT] = ACTIONS(2719), + [anon_sym_GT_GT_GT] = ACTIONS(2717), + [anon_sym_AMP_CARET] = ACTIONS(2717), + [anon_sym_AMP_AMP] = ACTIONS(2717), + [anon_sym_PIPE_PIPE] = ACTIONS(2717), + [anon_sym_or] = ACTIONS(2719), + [sym_none] = ACTIONS(2719), + [sym_true] = ACTIONS(2719), + [sym_false] = ACTIONS(2719), + [sym_nil] = ACTIONS(2719), + [anon_sym_QMARK_DOT] = ACTIONS(2717), + [anon_sym_POUND_LBRACK] = ACTIONS(2717), + [anon_sym_if] = ACTIONS(2719), + [anon_sym_DOLLARif] = ACTIONS(2719), + [anon_sym_is] = ACTIONS(2719), + [anon_sym_BANGis] = ACTIONS(2717), + [anon_sym_in] = ACTIONS(2719), + [anon_sym_BANGin] = ACTIONS(2717), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_select] = ACTIONS(2719), + [anon_sym_lock] = ACTIONS(2719), + [anon_sym_rlock] = ACTIONS(2719), + [anon_sym_unsafe] = ACTIONS(2719), + [anon_sym_sql] = ACTIONS(2719), + [sym_int_literal] = ACTIONS(2719), + [sym_float_literal] = ACTIONS(2717), + [sym_rune_literal] = ACTIONS(2717), + [anon_sym_SQUOTE] = ACTIONS(2717), + [anon_sym_DQUOTE] = ACTIONS(2717), + [anon_sym_c_SQUOTE] = ACTIONS(2717), + [anon_sym_c_DQUOTE] = ACTIONS(2717), + [anon_sym_r_SQUOTE] = ACTIONS(2717), + [anon_sym_r_DQUOTE] = ACTIONS(2717), + [sym_pseudo_compile_time_identifier] = ACTIONS(2719), + [anon_sym_shared] = ACTIONS(2719), + [anon_sym_map_LBRACK] = ACTIONS(2717), + [anon_sym_chan] = ACTIONS(2719), + [anon_sym_thread] = ACTIONS(2719), + [anon_sym_atomic] = ACTIONS(2719), }, [1388] = { [sym_line_comment] = STATE(1388), [sym_block_comment] = STATE(1388), - [sym_identifier] = ACTIONS(1809), + [sym_identifier] = ACTIONS(2457), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_as] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_COMMA] = ACTIONS(2031), - [anon_sym_RBRACE] = ACTIONS(1807), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_fn] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1807), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_PERCENT] = ACTIONS(1807), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_EQ_EQ] = ACTIONS(1807), - [anon_sym_BANG_EQ] = ACTIONS(1807), - [anon_sym_LT_EQ] = ACTIONS(1807), - [anon_sym_GT_EQ] = ACTIONS(1807), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_mut] = ACTIONS(1809), - [anon_sym_COLON] = ACTIONS(1807), - [anon_sym_PLUS_PLUS] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1807), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1809), - [anon_sym_json_DOTdecode] = ACTIONS(1807), - [anon_sym_LBRACK2] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1807), - [anon_sym_CARET] = ACTIONS(1807), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_LT_DASH] = ACTIONS(1807), - [anon_sym_LT_LT] = ACTIONS(1807), - [anon_sym_GT_GT] = ACTIONS(1809), - [anon_sym_GT_GT_GT] = ACTIONS(1807), - [anon_sym_AMP_CARET] = ACTIONS(1807), - [anon_sym_AMP_AMP] = ACTIONS(1807), - [anon_sym_PIPE_PIPE] = ACTIONS(1807), - [anon_sym_or] = ACTIONS(1809), - [sym_none] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_nil] = ACTIONS(1809), - [anon_sym_QMARK_DOT] = ACTIONS(1807), - [anon_sym_POUND_LBRACK] = ACTIONS(1807), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_DOLLARif] = ACTIONS(1809), - [anon_sym_is] = ACTIONS(1809), - [anon_sym_BANGis] = ACTIONS(1807), - [anon_sym_in] = ACTIONS(1809), - [anon_sym_BANGin] = ACTIONS(1807), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_select] = ACTIONS(1809), - [anon_sym_lock] = ACTIONS(1809), - [anon_sym_rlock] = ACTIONS(1809), - [anon_sym_unsafe] = ACTIONS(1809), - [anon_sym_sql] = ACTIONS(1809), - [sym_int_literal] = ACTIONS(1809), - [sym_float_literal] = ACTIONS(1807), - [sym_rune_literal] = ACTIONS(1807), - [anon_sym_SQUOTE] = ACTIONS(1807), - [anon_sym_DQUOTE] = ACTIONS(1807), - [anon_sym_c_SQUOTE] = ACTIONS(1807), - [anon_sym_c_DQUOTE] = ACTIONS(1807), - [anon_sym_r_SQUOTE] = ACTIONS(1807), - [anon_sym_r_DQUOTE] = ACTIONS(1807), - [sym_pseudo_compile_time_identifier] = ACTIONS(1809), - [anon_sym_shared] = ACTIONS(1809), - [anon_sym_map_LBRACK] = ACTIONS(1807), - [anon_sym_chan] = ACTIONS(1809), - [anon_sym_thread] = ACTIONS(1809), - [anon_sym_atomic] = ACTIONS(1809), + [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_fn] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2455), + [anon_sym_SLASH] = ACTIONS(2457), + [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_PIPE] = ACTIONS(2457), + [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_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), + [anon_sym_SQUOTE] = ACTIONS(2455), + [anon_sym_DQUOTE] = ACTIONS(2455), + [anon_sym_c_SQUOTE] = ACTIONS(2455), + [anon_sym_c_DQUOTE] = ACTIONS(2455), + [anon_sym_r_SQUOTE] = ACTIONS(2455), + [anon_sym_r_DQUOTE] = 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), }, [1389] = { [sym_line_comment] = STATE(1389), [sym_block_comment] = STATE(1389), - [sym_identifier] = ACTIONS(2507), + [sym_identifier] = ACTIONS(3014), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2505), - [anon_sym_DOT] = ACTIONS(2507), - [anon_sym_as] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_COMMA] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_PIPE] = ACTIONS(2507), - [anon_sym_fn] = ACTIONS(2507), - [anon_sym_PLUS] = ACTIONS(2507), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_STAR] = ACTIONS(2505), - [anon_sym_SLASH] = ACTIONS(2507), - [anon_sym_PERCENT] = ACTIONS(2505), - [anon_sym_LT] = ACTIONS(2507), - [anon_sym_GT] = ACTIONS(2507), - [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(2505), - [anon_sym_RBRACK] = ACTIONS(3917), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_mut] = ACTIONS(2507), - [anon_sym_PLUS_PLUS] = ACTIONS(2505), - [anon_sym_DASH_DASH] = ACTIONS(2505), - [anon_sym_QMARK] = ACTIONS(2507), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_go] = ACTIONS(2507), - [anon_sym_spawn] = ACTIONS(2507), - [anon_sym_json_DOTdecode] = ACTIONS(2505), - [anon_sym_LBRACK2] = ACTIONS(2507), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_CARET] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2507), - [anon_sym_LT_DASH] = ACTIONS(2505), - [anon_sym_LT_LT] = ACTIONS(2505), - [anon_sym_GT_GT] = ACTIONS(2507), - [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(2507), - [sym_none] = ACTIONS(2507), - [sym_true] = ACTIONS(2507), - [sym_false] = ACTIONS(2507), - [sym_nil] = ACTIONS(2507), - [anon_sym_QMARK_DOT] = ACTIONS(2505), - [anon_sym_POUND_LBRACK] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_DOLLARif] = ACTIONS(2507), - [anon_sym_is] = ACTIONS(2507), - [anon_sym_BANGis] = ACTIONS(2505), - [anon_sym_in] = ACTIONS(2507), - [anon_sym_BANGin] = ACTIONS(2505), - [anon_sym_match] = ACTIONS(2507), - [anon_sym_select] = ACTIONS(2507), - [anon_sym_lock] = ACTIONS(2507), - [anon_sym_rlock] = ACTIONS(2507), - [anon_sym_unsafe] = ACTIONS(2507), - [anon_sym_sql] = ACTIONS(2507), - [sym_int_literal] = ACTIONS(2507), - [sym_float_literal] = ACTIONS(2505), - [sym_rune_literal] = ACTIONS(2505), - [anon_sym_SQUOTE] = ACTIONS(2505), - [anon_sym_DQUOTE] = ACTIONS(2505), - [anon_sym_c_SQUOTE] = ACTIONS(2505), - [anon_sym_c_DQUOTE] = ACTIONS(2505), - [anon_sym_r_SQUOTE] = ACTIONS(2505), - [anon_sym_r_DQUOTE] = ACTIONS(2505), - [sym_pseudo_compile_time_identifier] = ACTIONS(2507), - [anon_sym_shared] = ACTIONS(2507), - [anon_sym_map_LBRACK] = ACTIONS(2505), - [anon_sym_chan] = ACTIONS(2507), - [anon_sym_thread] = ACTIONS(2507), - [anon_sym_atomic] = ACTIONS(2507), + [anon_sym_DOT] = ACTIONS(3014), + [anon_sym_as] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_COMMA] = ACTIONS(3012), + [anon_sym_RBRACE] = ACTIONS(3012), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_fn] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_STAR] = ACTIONS(3012), + [anon_sym_SLASH] = ACTIONS(3014), + [anon_sym_PERCENT] = ACTIONS(3012), + [anon_sym_LT] = ACTIONS(3014), + [anon_sym_GT] = ACTIONS(3014), + [anon_sym_EQ_EQ] = ACTIONS(3012), + [anon_sym_BANG_EQ] = ACTIONS(3012), + [anon_sym_LT_EQ] = ACTIONS(3012), + [anon_sym_GT_EQ] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_RBRACK] = ACTIONS(3012), + [anon_sym_struct] = ACTIONS(3014), + [anon_sym_mut] = ACTIONS(3014), + [anon_sym_COLON] = ACTIONS(3012), + [anon_sym_PLUS_PLUS] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3014), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_go] = ACTIONS(3014), + [anon_sym_spawn] = ACTIONS(3014), + [anon_sym_json_DOTdecode] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_LBRACK2] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_CARET] = ACTIONS(3012), + [anon_sym_AMP] = ACTIONS(3014), + [anon_sym_LT_DASH] = ACTIONS(3012), + [anon_sym_LT_LT] = ACTIONS(3012), + [anon_sym_GT_GT] = ACTIONS(3014), + [anon_sym_GT_GT_GT] = ACTIONS(3012), + [anon_sym_AMP_CARET] = ACTIONS(3012), + [anon_sym_AMP_AMP] = ACTIONS(3012), + [anon_sym_PIPE_PIPE] = ACTIONS(3012), + [anon_sym_or] = ACTIONS(3014), + [sym_none] = ACTIONS(3014), + [sym_true] = ACTIONS(3014), + [sym_false] = ACTIONS(3014), + [sym_nil] = ACTIONS(3014), + [anon_sym_QMARK_DOT] = ACTIONS(3012), + [anon_sym_POUND_LBRACK] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3014), + [anon_sym_DOLLARif] = ACTIONS(3014), + [anon_sym_is] = ACTIONS(3014), + [anon_sym_BANGis] = ACTIONS(3012), + [anon_sym_in] = ACTIONS(3014), + [anon_sym_BANGin] = ACTIONS(3012), + [anon_sym_match] = ACTIONS(3014), + [anon_sym_select] = ACTIONS(3014), + [anon_sym_lock] = ACTIONS(3014), + [anon_sym_rlock] = ACTIONS(3014), + [anon_sym_unsafe] = ACTIONS(3014), + [anon_sym_sql] = ACTIONS(3014), + [sym_int_literal] = ACTIONS(3014), + [sym_float_literal] = ACTIONS(3012), + [sym_rune_literal] = ACTIONS(3012), + [anon_sym_SQUOTE] = ACTIONS(3012), + [anon_sym_DQUOTE] = ACTIONS(3012), + [anon_sym_c_SQUOTE] = ACTIONS(3012), + [anon_sym_c_DQUOTE] = ACTIONS(3012), + [anon_sym_r_SQUOTE] = ACTIONS(3012), + [anon_sym_r_DQUOTE] = ACTIONS(3012), + [sym_pseudo_compile_time_identifier] = ACTIONS(3014), + [anon_sym_shared] = ACTIONS(3014), + [anon_sym_map_LBRACK] = ACTIONS(3012), + [anon_sym_chan] = ACTIONS(3014), + [anon_sym_thread] = ACTIONS(3014), + [anon_sym_atomic] = ACTIONS(3014), }, [1390] = { [sym_line_comment] = STATE(1390), [sym_block_comment] = STATE(1390), - [sym_identifier] = ACTIONS(2715), + [sym_identifier] = ACTIONS(3018), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2715), - [anon_sym_as] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(2713), - [anon_sym_COMMA] = ACTIONS(2031), - [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_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), - [anon_sym_SQUOTE] = ACTIONS(2713), - [anon_sym_DQUOTE] = ACTIONS(2713), - [anon_sym_c_SQUOTE] = ACTIONS(2713), - [anon_sym_c_DQUOTE] = ACTIONS(2713), - [anon_sym_r_SQUOTE] = ACTIONS(2713), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(3018), + [anon_sym_as] = ACTIONS(3018), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_COMMA] = ACTIONS(3016), + [anon_sym_RBRACE] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3016), + [anon_sym_fn] = ACTIONS(3018), + [anon_sym_PLUS] = ACTIONS(3018), + [anon_sym_DASH] = ACTIONS(3018), + [anon_sym_STAR] = ACTIONS(3016), + [anon_sym_SLASH] = ACTIONS(3018), + [anon_sym_PERCENT] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(3018), + [anon_sym_GT] = ACTIONS(3018), + [anon_sym_EQ_EQ] = ACTIONS(3016), + [anon_sym_BANG_EQ] = ACTIONS(3016), + [anon_sym_LT_EQ] = ACTIONS(3016), + [anon_sym_GT_EQ] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(3016), + [anon_sym_RBRACK] = ACTIONS(3016), + [anon_sym_struct] = ACTIONS(3018), + [anon_sym_mut] = ACTIONS(3018), + [anon_sym_COLON] = ACTIONS(3016), + [anon_sym_PLUS_PLUS] = ACTIONS(3016), + [anon_sym_DASH_DASH] = ACTIONS(3016), + [anon_sym_QMARK] = ACTIONS(3018), + [anon_sym_BANG] = ACTIONS(3018), + [anon_sym_go] = ACTIONS(3018), + [anon_sym_spawn] = ACTIONS(3018), + [anon_sym_json_DOTdecode] = ACTIONS(3016), + [anon_sym_PIPE] = ACTIONS(3018), + [anon_sym_LBRACK2] = ACTIONS(3018), + [anon_sym_TILDE] = ACTIONS(3016), + [anon_sym_CARET] = ACTIONS(3016), + [anon_sym_AMP] = ACTIONS(3018), + [anon_sym_LT_DASH] = ACTIONS(3016), + [anon_sym_LT_LT] = ACTIONS(3016), + [anon_sym_GT_GT] = ACTIONS(3018), + [anon_sym_GT_GT_GT] = ACTIONS(3016), + [anon_sym_AMP_CARET] = ACTIONS(3016), + [anon_sym_AMP_AMP] = ACTIONS(3016), + [anon_sym_PIPE_PIPE] = ACTIONS(3016), + [anon_sym_or] = ACTIONS(3018), + [sym_none] = ACTIONS(3018), + [sym_true] = ACTIONS(3018), + [sym_false] = ACTIONS(3018), + [sym_nil] = ACTIONS(3018), + [anon_sym_QMARK_DOT] = ACTIONS(3016), + [anon_sym_POUND_LBRACK] = ACTIONS(3016), + [anon_sym_if] = ACTIONS(3018), + [anon_sym_DOLLARif] = ACTIONS(3018), + [anon_sym_is] = ACTIONS(3018), + [anon_sym_BANGis] = ACTIONS(3016), + [anon_sym_in] = ACTIONS(3018), + [anon_sym_BANGin] = ACTIONS(3016), + [anon_sym_match] = ACTIONS(3018), + [anon_sym_select] = ACTIONS(3018), + [anon_sym_lock] = ACTIONS(3018), + [anon_sym_rlock] = ACTIONS(3018), + [anon_sym_unsafe] = ACTIONS(3018), + [anon_sym_sql] = ACTIONS(3018), + [sym_int_literal] = ACTIONS(3018), + [sym_float_literal] = ACTIONS(3016), + [sym_rune_literal] = ACTIONS(3016), + [anon_sym_SQUOTE] = ACTIONS(3016), + [anon_sym_DQUOTE] = ACTIONS(3016), + [anon_sym_c_SQUOTE] = ACTIONS(3016), + [anon_sym_c_DQUOTE] = ACTIONS(3016), + [anon_sym_r_SQUOTE] = ACTIONS(3016), + [anon_sym_r_DQUOTE] = ACTIONS(3016), + [sym_pseudo_compile_time_identifier] = ACTIONS(3018), + [anon_sym_shared] = ACTIONS(3018), + [anon_sym_map_LBRACK] = ACTIONS(3016), + [anon_sym_chan] = ACTIONS(3018), + [anon_sym_thread] = ACTIONS(3018), + [anon_sym_atomic] = ACTIONS(3018), }, [1391] = { [sym_line_comment] = STATE(1391), [sym_block_comment] = STATE(1391), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2311), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(627), - [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_SEMI] = ACTIONS(627), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(627), - [anon_sym___global] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(627), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(627), - [anon_sym_BANG_EQ] = ACTIONS(627), - [anon_sym_LT_EQ] = ACTIONS(627), - [anon_sym_GT_EQ] = ACTIONS(627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(627), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(615), - [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(627), - [anon_sym_BANG] = ACTIONS(627), - [anon_sym_LBRACK2] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = 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_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(561), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_AT_LBRACK] = ACTIONS(627), + [sym_identifier] = ACTIONS(2937), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_as] = ACTIONS(2937), + [anon_sym_LBRACE] = ACTIONS(2935), + [anon_sym_COMMA] = ACTIONS(2935), + [anon_sym_RBRACE] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2935), + [anon_sym_fn] = ACTIONS(2937), + [anon_sym_PLUS] = ACTIONS(2937), + [anon_sym_DASH] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_SLASH] = ACTIONS(2937), + [anon_sym_PERCENT] = ACTIONS(2935), + [anon_sym_LT] = ACTIONS(2937), + [anon_sym_GT] = ACTIONS(2937), + [anon_sym_EQ_EQ] = ACTIONS(2935), + [anon_sym_BANG_EQ] = ACTIONS(2935), + [anon_sym_LT_EQ] = ACTIONS(2935), + [anon_sym_GT_EQ] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2935), + [anon_sym_RBRACK] = ACTIONS(2935), + [anon_sym_struct] = ACTIONS(2937), + [anon_sym_mut] = ACTIONS(2937), + [anon_sym_COLON] = ACTIONS(2935), + [anon_sym_PLUS_PLUS] = ACTIONS(2935), + [anon_sym_DASH_DASH] = ACTIONS(2935), + [anon_sym_QMARK] = ACTIONS(2937), + [anon_sym_BANG] = ACTIONS(2937), + [anon_sym_go] = ACTIONS(2937), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2935), + [anon_sym_PIPE] = ACTIONS(2937), + [anon_sym_LBRACK2] = ACTIONS(2937), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_CARET] = ACTIONS(2935), + [anon_sym_AMP] = ACTIONS(2937), + [anon_sym_LT_DASH] = ACTIONS(2935), + [anon_sym_LT_LT] = ACTIONS(2935), + [anon_sym_GT_GT] = ACTIONS(2937), + [anon_sym_GT_GT_GT] = ACTIONS(2935), + [anon_sym_AMP_CARET] = ACTIONS(2935), + [anon_sym_AMP_AMP] = ACTIONS(2935), + [anon_sym_PIPE_PIPE] = ACTIONS(2935), + [anon_sym_or] = ACTIONS(2937), + [sym_none] = ACTIONS(2937), + [sym_true] = ACTIONS(2937), + [sym_false] = ACTIONS(2937), + [sym_nil] = ACTIONS(2937), + [anon_sym_QMARK_DOT] = ACTIONS(2935), + [anon_sym_POUND_LBRACK] = ACTIONS(2935), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_DOLLARif] = ACTIONS(2937), + [anon_sym_is] = ACTIONS(2937), + [anon_sym_BANGis] = ACTIONS(2935), + [anon_sym_in] = ACTIONS(2937), + [anon_sym_BANGin] = ACTIONS(2935), + [anon_sym_match] = ACTIONS(2937), + [anon_sym_select] = ACTIONS(2937), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(2937), + [anon_sym_sql] = ACTIONS(2937), + [sym_int_literal] = ACTIONS(2937), + [sym_float_literal] = ACTIONS(2935), + [sym_rune_literal] = ACTIONS(2935), + [anon_sym_SQUOTE] = ACTIONS(2935), + [anon_sym_DQUOTE] = ACTIONS(2935), + [anon_sym_c_SQUOTE] = ACTIONS(2935), + [anon_sym_c_DQUOTE] = ACTIONS(2935), + [anon_sym_r_SQUOTE] = ACTIONS(2935), + [anon_sym_r_DQUOTE] = ACTIONS(2935), + [sym_pseudo_compile_time_identifier] = ACTIONS(2937), + [anon_sym_shared] = ACTIONS(2937), + [anon_sym_map_LBRACK] = ACTIONS(2935), + [anon_sym_chan] = ACTIONS(2937), + [anon_sym_thread] = ACTIONS(2937), + [anon_sym_atomic] = ACTIONS(2937), }, [1392] = { [sym_line_comment] = STATE(1392), [sym_block_comment] = STATE(1392), - [sym_identifier] = ACTIONS(2863), + [sym_identifier] = ACTIONS(2105), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3920), - [anon_sym_DOT] = ACTIONS(2863), - [anon_sym_as] = ACTIONS(2863), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_COMMA] = ACTIONS(2861), - [anon_sym_LPAREN] = ACTIONS(2861), - [anon_sym_PIPE] = ACTIONS(2863), - [anon_sym_fn] = ACTIONS(2863), - [anon_sym_PLUS] = ACTIONS(2863), - [anon_sym_DASH] = ACTIONS(2863), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_SLASH] = ACTIONS(2863), - [anon_sym_PERCENT] = ACTIONS(2861), - [anon_sym_LT] = ACTIONS(2863), - [anon_sym_GT] = ACTIONS(2863), - [anon_sym_EQ_EQ] = ACTIONS(2861), - [anon_sym_BANG_EQ] = ACTIONS(2861), - [anon_sym_LT_EQ] = ACTIONS(2861), - [anon_sym_GT_EQ] = ACTIONS(2861), - [anon_sym_LBRACK] = ACTIONS(2861), - [anon_sym_RBRACK] = ACTIONS(3920), - [anon_sym_struct] = ACTIONS(2863), - [anon_sym_mut] = ACTIONS(2863), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_QMARK] = ACTIONS(2863), - [anon_sym_BANG] = ACTIONS(2863), - [anon_sym_go] = ACTIONS(2863), - [anon_sym_spawn] = ACTIONS(2863), - [anon_sym_json_DOTdecode] = ACTIONS(2861), - [anon_sym_LBRACK2] = ACTIONS(2863), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_CARET] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2863), - [anon_sym_LT_DASH] = ACTIONS(2861), - [anon_sym_LT_LT] = ACTIONS(2861), - [anon_sym_GT_GT] = ACTIONS(2863), - [anon_sym_GT_GT_GT] = ACTIONS(2861), - [anon_sym_AMP_CARET] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_PIPE_PIPE] = ACTIONS(2861), - [anon_sym_or] = ACTIONS(2863), - [sym_none] = ACTIONS(2863), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [sym_nil] = ACTIONS(2863), - [anon_sym_QMARK_DOT] = ACTIONS(2861), - [anon_sym_POUND_LBRACK] = ACTIONS(2861), - [anon_sym_if] = ACTIONS(2863), - [anon_sym_DOLLARif] = ACTIONS(2863), - [anon_sym_is] = ACTIONS(2863), - [anon_sym_BANGis] = ACTIONS(2861), - [anon_sym_in] = ACTIONS(2863), - [anon_sym_BANGin] = ACTIONS(2861), - [anon_sym_match] = ACTIONS(2863), - [anon_sym_select] = ACTIONS(2863), - [anon_sym_lock] = ACTIONS(2863), - [anon_sym_rlock] = ACTIONS(2863), - [anon_sym_unsafe] = ACTIONS(2863), - [anon_sym_sql] = ACTIONS(2863), - [sym_int_literal] = ACTIONS(2863), - [sym_float_literal] = ACTIONS(2861), - [sym_rune_literal] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [anon_sym_c_SQUOTE] = ACTIONS(2861), - [anon_sym_c_DQUOTE] = ACTIONS(2861), - [anon_sym_r_SQUOTE] = ACTIONS(2861), - [anon_sym_r_DQUOTE] = ACTIONS(2861), - [sym_pseudo_compile_time_identifier] = ACTIONS(2863), - [anon_sym_shared] = ACTIONS(2863), - [anon_sym_map_LBRACK] = ACTIONS(2861), - [anon_sym_chan] = ACTIONS(2863), - [anon_sym_thread] = ACTIONS(2863), - [anon_sym_atomic] = ACTIONS(2863), + [anon_sym_SEMI] = ACTIONS(2103), + [anon_sym_DOT] = ACTIONS(2105), + [anon_sym_as] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_COMMA] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_fn] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2103), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_PERCENT] = ACTIONS(2103), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_GT] = ACTIONS(2105), + [anon_sym_EQ_EQ] = ACTIONS(2103), + [anon_sym_BANG_EQ] = ACTIONS(2103), + [anon_sym_LT_EQ] = ACTIONS(2103), + [anon_sym_GT_EQ] = ACTIONS(2103), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_RBRACK] = ACTIONS(3949), + [anon_sym_struct] = ACTIONS(2105), + [anon_sym_mut] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [anon_sym_QMARK] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_go] = ACTIONS(2105), + [anon_sym_spawn] = ACTIONS(2105), + [anon_sym_json_DOTdecode] = ACTIONS(2103), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_LBRACK2] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_LT_DASH] = ACTIONS(2103), + [anon_sym_LT_LT] = ACTIONS(2103), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2103), + [anon_sym_AMP_CARET] = ACTIONS(2103), + [anon_sym_AMP_AMP] = ACTIONS(2103), + [anon_sym_PIPE_PIPE] = ACTIONS(2103), + [anon_sym_or] = ACTIONS(2105), + [sym_none] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_nil] = ACTIONS(2105), + [anon_sym_QMARK_DOT] = ACTIONS(2103), + [anon_sym_POUND_LBRACK] = ACTIONS(2103), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_DOLLARif] = ACTIONS(2105), + [anon_sym_is] = ACTIONS(2105), + [anon_sym_BANGis] = ACTIONS(2103), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_BANGin] = ACTIONS(2103), + [anon_sym_match] = ACTIONS(2105), + [anon_sym_select] = ACTIONS(2105), + [anon_sym_lock] = ACTIONS(2105), + [anon_sym_rlock] = ACTIONS(2105), + [anon_sym_unsafe] = ACTIONS(2105), + [anon_sym_sql] = ACTIONS(2105), + [sym_int_literal] = ACTIONS(2105), + [sym_float_literal] = ACTIONS(2103), + [sym_rune_literal] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_DQUOTE] = ACTIONS(2103), + [anon_sym_c_SQUOTE] = ACTIONS(2103), + [anon_sym_c_DQUOTE] = ACTIONS(2103), + [anon_sym_r_SQUOTE] = ACTIONS(2103), + [anon_sym_r_DQUOTE] = ACTIONS(2103), + [sym_pseudo_compile_time_identifier] = ACTIONS(2105), + [anon_sym_shared] = ACTIONS(2105), + [anon_sym_map_LBRACK] = ACTIONS(2103), + [anon_sym_chan] = ACTIONS(2105), + [anon_sym_thread] = ACTIONS(2105), + [anon_sym_atomic] = ACTIONS(2105), }, [1393] = { [sym_line_comment] = STATE(1393), [sym_block_comment] = STATE(1393), - [sym_identifier] = ACTIONS(1809), + [sym_identifier] = ACTIONS(1837), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_as] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_COMMA] = ACTIONS(1807), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_fn] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1807), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_PERCENT] = ACTIONS(1807), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_EQ_EQ] = ACTIONS(1807), - [anon_sym_BANG_EQ] = ACTIONS(1807), - [anon_sym_LT_EQ] = ACTIONS(1807), - [anon_sym_GT_EQ] = ACTIONS(1807), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_RBRACK] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_mut] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1807), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1809), - [anon_sym_json_DOTdecode] = ACTIONS(1807), - [anon_sym_LBRACK2] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1807), - [anon_sym_CARET] = ACTIONS(1807), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_LT_DASH] = ACTIONS(1807), - [anon_sym_LT_LT] = ACTIONS(1807), - [anon_sym_GT_GT] = ACTIONS(1809), - [anon_sym_GT_GT_GT] = ACTIONS(1807), - [anon_sym_AMP_CARET] = ACTIONS(1807), - [anon_sym_AMP_AMP] = ACTIONS(1807), - [anon_sym_PIPE_PIPE] = ACTIONS(1807), - [anon_sym_or] = ACTIONS(1809), - [sym_none] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_nil] = ACTIONS(1809), - [anon_sym_QMARK_DOT] = ACTIONS(1807), - [anon_sym_POUND_LBRACK] = ACTIONS(1807), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_DOLLARif] = ACTIONS(1809), - [anon_sym_is] = ACTIONS(1809), - [anon_sym_BANGis] = ACTIONS(1807), - [anon_sym_in] = ACTIONS(1809), - [anon_sym_BANGin] = ACTIONS(1807), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_select] = ACTIONS(1809), - [anon_sym_lock] = ACTIONS(1809), - [anon_sym_rlock] = ACTIONS(1809), - [anon_sym_unsafe] = ACTIONS(1809), - [anon_sym_sql] = ACTIONS(1809), - [sym_int_literal] = ACTIONS(1809), - [sym_float_literal] = ACTIONS(1807), - [sym_rune_literal] = ACTIONS(1807), - [anon_sym_SQUOTE] = ACTIONS(1807), - [anon_sym_DQUOTE] = ACTIONS(1807), - [anon_sym_c_SQUOTE] = ACTIONS(1807), - [anon_sym_c_DQUOTE] = ACTIONS(1807), - [anon_sym_r_SQUOTE] = ACTIONS(1807), - [anon_sym_r_DQUOTE] = ACTIONS(1807), - [sym_pseudo_compile_time_identifier] = ACTIONS(1809), - [anon_sym_shared] = ACTIONS(1809), - [anon_sym_map_LBRACK] = ACTIONS(1807), - [anon_sym_chan] = ACTIONS(1809), - [anon_sym_thread] = ACTIONS(1809), - [anon_sym_atomic] = ACTIONS(1809), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_as] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_COMMA] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1835), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1835), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1835), + [anon_sym_BANG_EQ] = ACTIONS(1835), + [anon_sym_LT_EQ] = ACTIONS(1835), + [anon_sym_GT_EQ] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_struct] = ACTIONS(1837), + [anon_sym_mut] = ACTIONS(1837), + [anon_sym_COLON] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_QMARK] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_go] = ACTIONS(1837), + [anon_sym_spawn] = ACTIONS(1837), + [anon_sym_json_DOTdecode] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_LBRACK2] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1835), + [anon_sym_LT_LT] = ACTIONS(1835), + [anon_sym_GT_GT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1835), + [anon_sym_AMP_CARET] = ACTIONS(1835), + [anon_sym_AMP_AMP] = ACTIONS(1835), + [anon_sym_PIPE_PIPE] = ACTIONS(1835), + [anon_sym_or] = ACTIONS(1837), + [sym_none] = ACTIONS(1837), + [sym_true] = ACTIONS(1837), + [sym_false] = ACTIONS(1837), + [sym_nil] = ACTIONS(1837), + [anon_sym_QMARK_DOT] = ACTIONS(1835), + [anon_sym_POUND_LBRACK] = ACTIONS(1835), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_DOLLARif] = ACTIONS(1837), + [anon_sym_is] = ACTIONS(1837), + [anon_sym_BANGis] = ACTIONS(1835), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_BANGin] = ACTIONS(1835), + [anon_sym_match] = ACTIONS(1837), + [anon_sym_select] = ACTIONS(1837), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1837), + [anon_sym_sql] = ACTIONS(1837), + [sym_int_literal] = ACTIONS(1837), + [sym_float_literal] = ACTIONS(1835), + [sym_rune_literal] = ACTIONS(1835), + [anon_sym_SQUOTE] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(1835), + [anon_sym_c_SQUOTE] = ACTIONS(1835), + [anon_sym_c_DQUOTE] = ACTIONS(1835), + [anon_sym_r_SQUOTE] = ACTIONS(1835), + [anon_sym_r_DQUOTE] = ACTIONS(1835), + [sym_pseudo_compile_time_identifier] = ACTIONS(1837), + [anon_sym_shared] = ACTIONS(1837), + [anon_sym_map_LBRACK] = ACTIONS(1835), + [anon_sym_chan] = ACTIONS(1837), + [anon_sym_thread] = ACTIONS(1837), + [anon_sym_atomic] = ACTIONS(1837), }, [1394] = { [sym_line_comment] = STATE(1394), [sym_block_comment] = STATE(1394), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(605), - [anon_sym_LF] = ACTIONS(607), - [anon_sym_CR] = ACTIONS(607), - [anon_sym_CR_LF] = ACTIONS(607), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(607), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(607), - [anon_sym_RBRACE] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(609), - [anon_sym___global] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_BANG_EQ] = ACTIONS(607), - [anon_sym_LT_EQ] = ACTIONS(607), - [anon_sym_GT_EQ] = ACTIONS(607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_mut] = ACTIONS(607), - [anon_sym_PLUS_PLUS] = ACTIONS(607), - [anon_sym_DASH_DASH] = ACTIONS(607), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3922), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_GT_GT_GT] = ACTIONS(607), - [anon_sym_AMP_CARET] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [anon_sym_or] = ACTIONS(607), - [anon_sym_QMARK_DOT] = ACTIONS(607), - [anon_sym_POUND_LBRACK] = ACTIONS(607), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(607), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(607), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(561), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_AT_LBRACK] = ACTIONS(607), - }, - [1395] = { - [sym_line_comment] = STATE(1395), - [sym_block_comment] = STATE(1395), - [sym_reference_expression] = STATE(4466), - [sym_type_reference_expression] = STATE(2130), - [sym_plain_type] = STATE(2231), - [sym__plain_type_without_special] = STATE(2178), - [sym_anon_struct_type] = STATE(2179), - [sym_multi_return_type] = STATE(2178), - [sym_result_type] = STATE(2178), - [sym_option_type] = STATE(2178), - [sym_qualified_type] = STATE(2130), - [sym_fixed_array_type] = STATE(2179), - [sym_array_type] = STATE(2179), - [sym_pointer_type] = STATE(2179), - [sym_wrong_pointer_type] = STATE(2179), - [sym_map_type] = STATE(2179), - [sym_channel_type] = STATE(2179), - [sym_shared_type] = STATE(2179), - [sym_thread_type] = STATE(2179), - [sym_atomic_type] = STATE(2179), - [sym_generic_type] = STATE(2179), - [sym_function_type] = STATE(2179), - [sym_identifier] = ACTIONS(3924), - [anon_sym_LF] = ACTIONS(567), - [anon_sym_CR] = ACTIONS(567), - [anon_sym_CR_LF] = ACTIONS(567), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_DOT] = ACTIONS(567), - [anon_sym_as] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(3926), - [anon_sym___global] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(3928), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3930), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(3932), - [anon_sym_pub] = ACTIONS(567), - [anon_sym_mut] = ACTIONS(567), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(3934), - [anon_sym_BANG] = ACTIONS(3936), - [anon_sym_LBRACK2] = ACTIONS(3938), - [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(567), - [anon_sym_AMP_CARET] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_or] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(567), - [anon_sym_POUND_LBRACK] = ACTIONS(567), - [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(567), - [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(3942), - [anon_sym_map_LBRACK] = ACTIONS(3944), - [anon_sym_chan] = ACTIONS(3946), - [anon_sym_thread] = ACTIONS(3948), - [anon_sym_atomic] = ACTIONS(3950), - [anon_sym_AT_LBRACK] = ACTIONS(567), - }, - [1396] = { - [sym_line_comment] = STATE(1396), - [sym_block_comment] = STATE(1396), - [sym_identifier] = ACTIONS(2887), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2887), - [anon_sym_as] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2885), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2887), - [anon_sym_fn] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2885), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2885), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_EQ_EQ] = ACTIONS(2885), - [anon_sym_BANG_EQ] = ACTIONS(2885), - [anon_sym_LT_EQ] = ACTIONS(2885), - [anon_sym_GT_EQ] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_RBRACK] = ACTIONS(3952), - [anon_sym_struct] = ACTIONS(2887), - [anon_sym_mut] = ACTIONS(2887), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_QMARK] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_go] = ACTIONS(2887), - [anon_sym_spawn] = ACTIONS(2887), - [anon_sym_json_DOTdecode] = ACTIONS(2885), - [anon_sym_LBRACK2] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2885), - [anon_sym_CARET] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2885), - [anon_sym_LT_LT] = ACTIONS(2885), - [anon_sym_GT_GT] = ACTIONS(2887), - [anon_sym_GT_GT_GT] = ACTIONS(2885), - [anon_sym_AMP_CARET] = ACTIONS(2885), - [anon_sym_AMP_AMP] = ACTIONS(2885), - [anon_sym_PIPE_PIPE] = ACTIONS(2885), - [anon_sym_or] = ACTIONS(2887), - [sym_none] = ACTIONS(2887), - [sym_true] = ACTIONS(2887), - [sym_false] = ACTIONS(2887), - [sym_nil] = ACTIONS(2887), - [anon_sym_QMARK_DOT] = ACTIONS(2885), - [anon_sym_POUND_LBRACK] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_DOLLARif] = ACTIONS(2887), - [anon_sym_is] = ACTIONS(2887), - [anon_sym_BANGis] = ACTIONS(2885), - [anon_sym_in] = ACTIONS(2887), - [anon_sym_BANGin] = ACTIONS(2885), - [anon_sym_match] = ACTIONS(2887), - [anon_sym_select] = ACTIONS(2887), - [anon_sym_lock] = ACTIONS(2887), - [anon_sym_rlock] = ACTIONS(2887), - [anon_sym_unsafe] = ACTIONS(2887), - [anon_sym_sql] = ACTIONS(2887), - [sym_int_literal] = ACTIONS(2887), - [sym_float_literal] = ACTIONS(2885), - [sym_rune_literal] = ACTIONS(2885), - [anon_sym_SQUOTE] = ACTIONS(2885), - [anon_sym_DQUOTE] = ACTIONS(2885), - [anon_sym_c_SQUOTE] = ACTIONS(2885), - [anon_sym_c_DQUOTE] = ACTIONS(2885), - [anon_sym_r_SQUOTE] = ACTIONS(2885), - [anon_sym_r_DQUOTE] = ACTIONS(2885), - [sym_pseudo_compile_time_identifier] = ACTIONS(2887), - [anon_sym_shared] = ACTIONS(2887), - [anon_sym_map_LBRACK] = ACTIONS(2885), - [anon_sym_chan] = ACTIONS(2887), - [anon_sym_thread] = ACTIONS(2887), - [anon_sym_atomic] = ACTIONS(2887), - }, - [1397] = { - [sym_line_comment] = STATE(1397), - [sym_block_comment] = STATE(1397), - [sym_reference_expression] = STATE(4466), - [sym_type_reference_expression] = STATE(2130), - [sym_plain_type] = STATE(2227), - [sym__plain_type_without_special] = STATE(2178), - [sym_anon_struct_type] = STATE(2179), - [sym_multi_return_type] = STATE(2178), - [sym_result_type] = STATE(2178), - [sym_option_type] = STATE(2178), - [sym_qualified_type] = STATE(2130), - [sym_fixed_array_type] = STATE(2179), - [sym_array_type] = STATE(2179), - [sym_pointer_type] = STATE(2179), - [sym_wrong_pointer_type] = STATE(2179), - [sym_map_type] = STATE(2179), - [sym_channel_type] = STATE(2179), - [sym_shared_type] = STATE(2179), - [sym_thread_type] = STATE(2179), - [sym_atomic_type] = STATE(2179), - [sym_generic_type] = STATE(2179), - [sym_function_type] = STATE(2179), - [sym_identifier] = ACTIONS(3924), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2418), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(597), [anon_sym_LF] = ACTIONS(597), [anon_sym_CR] = ACTIONS(597), [anon_sym_CR_LF] = ACTIONS(597), @@ -172950,15 +173078,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(597), [anon_sym_DOT] = ACTIONS(597), [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(601), [anon_sym_COMMA] = ACTIONS(597), [anon_sym_RBRACE] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(3926), + [anon_sym_LPAREN] = ACTIONS(597), [anon_sym___global] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(3928), + [anon_sym_fn] = ACTIONS(615), [anon_sym_PLUS] = ACTIONS(597), [anon_sym_DASH] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(3930), + [anon_sym_STAR] = ACTIONS(597), [anon_sym_SLASH] = ACTIONS(597), [anon_sym_PERCENT] = ACTIONS(597), [anon_sym_LT] = ACTIONS(597), @@ -172969,16 +173097,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(597), [anon_sym_DOT_DOT_DOT] = ACTIONS(597), [anon_sym_LBRACK] = ACTIONS(595), - [anon_sym_struct] = ACTIONS(3932), + [anon_sym_struct] = ACTIONS(619), [anon_sym_pub] = ACTIONS(597), [anon_sym_mut] = ACTIONS(597), [anon_sym_PLUS_PLUS] = ACTIONS(597), [anon_sym_DASH_DASH] = ACTIONS(597), - [anon_sym_QMARK] = ACTIONS(3934), - [anon_sym_BANG] = ACTIONS(3936), - [anon_sym_LBRACK2] = ACTIONS(3938), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), [anon_sym_CARET] = ACTIONS(597), - [anon_sym_AMP] = ACTIONS(3940), + [anon_sym_AMP] = ACTIONS(597), [anon_sym_LT_LT] = ACTIONS(597), [anon_sym_GT_GT] = ACTIONS(597), [anon_sym_GT_GT_GT] = ACTIONS(597), @@ -172992,199 +173121,444 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(597), [anon_sym_in] = ACTIONS(597), [anon_sym_BANGin] = ACTIONS(597), - [anon_sym_shared] = ACTIONS(3942), - [anon_sym_map_LBRACK] = ACTIONS(3944), - [anon_sym_chan] = ACTIONS(3946), - [anon_sym_thread] = ACTIONS(3948), - [anon_sym_atomic] = ACTIONS(3950), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(561), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), [anon_sym_AT_LBRACK] = ACTIONS(597), }, + [1395] = { + [sym_line_comment] = STATE(1395), + [sym_block_comment] = STATE(1395), + [sym_identifier] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2643), + [anon_sym_as] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_COMMA] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(2641), + [anon_sym_LPAREN] = ACTIONS(2641), + [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_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_PIPE] = ACTIONS(2643), + [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_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), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(2641), + [anon_sym_c_SQUOTE] = ACTIONS(2641), + [anon_sym_c_DQUOTE] = ACTIONS(2641), + [anon_sym_r_SQUOTE] = ACTIONS(2641), + [anon_sym_r_DQUOTE] = 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), + }, + [1396] = { + [sym_line_comment] = STATE(1396), + [sym_block_comment] = STATE(1396), + [sym_identifier] = ACTIONS(2401), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym_DOT] = ACTIONS(2401), + [anon_sym_as] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_COMMA] = ACTIONS(2399), + [anon_sym_LPAREN] = ACTIONS(2399), + [anon_sym_fn] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2399), + [anon_sym_SLASH] = ACTIONS(2401), + [anon_sym_PERCENT] = ACTIONS(2399), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_GT] = ACTIONS(2401), + [anon_sym_EQ_EQ] = ACTIONS(2399), + [anon_sym_BANG_EQ] = ACTIONS(2399), + [anon_sym_LT_EQ] = ACTIONS(2399), + [anon_sym_GT_EQ] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_RBRACK] = ACTIONS(3952), + [anon_sym_struct] = ACTIONS(2401), + [anon_sym_mut] = ACTIONS(2401), + [anon_sym_PLUS_PLUS] = ACTIONS(2399), + [anon_sym_DASH_DASH] = ACTIONS(2399), + [anon_sym_QMARK] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2401), + [anon_sym_go] = ACTIONS(2401), + [anon_sym_spawn] = ACTIONS(2401), + [anon_sym_json_DOTdecode] = ACTIONS(2399), + [anon_sym_PIPE] = ACTIONS(2401), + [anon_sym_LBRACK2] = ACTIONS(2401), + [anon_sym_TILDE] = ACTIONS(2399), + [anon_sym_CARET] = ACTIONS(2399), + [anon_sym_AMP] = ACTIONS(2401), + [anon_sym_LT_DASH] = ACTIONS(2399), + [anon_sym_LT_LT] = ACTIONS(2399), + [anon_sym_GT_GT] = ACTIONS(2401), + [anon_sym_GT_GT_GT] = ACTIONS(2399), + [anon_sym_AMP_CARET] = ACTIONS(2399), + [anon_sym_AMP_AMP] = ACTIONS(2399), + [anon_sym_PIPE_PIPE] = ACTIONS(2399), + [anon_sym_or] = ACTIONS(2401), + [sym_none] = ACTIONS(2401), + [sym_true] = ACTIONS(2401), + [sym_false] = ACTIONS(2401), + [sym_nil] = ACTIONS(2401), + [anon_sym_QMARK_DOT] = ACTIONS(2399), + [anon_sym_POUND_LBRACK] = ACTIONS(2399), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_DOLLARif] = ACTIONS(2401), + [anon_sym_is] = ACTIONS(2401), + [anon_sym_BANGis] = ACTIONS(2399), + [anon_sym_in] = ACTIONS(2401), + [anon_sym_BANGin] = ACTIONS(2399), + [anon_sym_match] = ACTIONS(2401), + [anon_sym_select] = ACTIONS(2401), + [anon_sym_lock] = ACTIONS(2401), + [anon_sym_rlock] = ACTIONS(2401), + [anon_sym_unsafe] = ACTIONS(2401), + [anon_sym_sql] = ACTIONS(2401), + [sym_int_literal] = ACTIONS(2401), + [sym_float_literal] = ACTIONS(2399), + [sym_rune_literal] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2399), + [anon_sym_DQUOTE] = ACTIONS(2399), + [anon_sym_c_SQUOTE] = ACTIONS(2399), + [anon_sym_c_DQUOTE] = ACTIONS(2399), + [anon_sym_r_SQUOTE] = ACTIONS(2399), + [anon_sym_r_DQUOTE] = ACTIONS(2399), + [sym_pseudo_compile_time_identifier] = ACTIONS(2401), + [anon_sym_shared] = ACTIONS(2401), + [anon_sym_map_LBRACK] = ACTIONS(2399), + [anon_sym_chan] = ACTIONS(2401), + [anon_sym_thread] = ACTIONS(2401), + [anon_sym_atomic] = ACTIONS(2401), + }, + [1397] = { + [sym_line_comment] = STATE(1397), + [sym_block_comment] = STATE(1397), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2421), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(611), + [anon_sym_CR] = ACTIONS(611), + [anon_sym_CR_LF] = ACTIONS(611), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(611), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_as] = ACTIONS(611), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_RBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym___global] = ACTIONS(611), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(611), + [anon_sym_BANG_EQ] = ACTIONS(611), + [anon_sym_LT_EQ] = ACTIONS(611), + [anon_sym_GT_EQ] = ACTIONS(611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_pub] = ACTIONS(611), + [anon_sym_mut] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3954), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(611), + [anon_sym_AMP_CARET] = ACTIONS(611), + [anon_sym_AMP_AMP] = ACTIONS(611), + [anon_sym_PIPE_PIPE] = ACTIONS(611), + [anon_sym_or] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(611), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(611), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(611), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(561), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_AT_LBRACK] = ACTIONS(611), + }, [1398] = { [sym_line_comment] = STATE(1398), [sym_block_comment] = STATE(1398), - [sym_identifier] = ACTIONS(2887), + [sym_identifier] = ACTIONS(2937), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3039), - [anon_sym_as] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2885), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2887), - [anon_sym_fn] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2885), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2885), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_EQ_EQ] = ACTIONS(2885), - [anon_sym_BANG_EQ] = ACTIONS(2885), - [anon_sym_LT_EQ] = ACTIONS(2885), - [anon_sym_GT_EQ] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_RBRACK] = ACTIONS(3952), - [anon_sym_struct] = ACTIONS(2887), - [anon_sym_mut] = ACTIONS(2887), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_QMARK] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_go] = ACTIONS(2887), - [anon_sym_spawn] = ACTIONS(2887), - [anon_sym_json_DOTdecode] = ACTIONS(2885), - [anon_sym_LBRACK2] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2885), - [anon_sym_CARET] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2885), - [anon_sym_LT_LT] = ACTIONS(2885), - [anon_sym_GT_GT] = ACTIONS(2887), - [anon_sym_GT_GT_GT] = ACTIONS(2885), - [anon_sym_AMP_CARET] = ACTIONS(2885), - [anon_sym_AMP_AMP] = ACTIONS(2885), - [anon_sym_PIPE_PIPE] = ACTIONS(2885), - [anon_sym_or] = ACTIONS(2887), - [sym_none] = ACTIONS(2887), - [sym_true] = ACTIONS(2887), - [sym_false] = ACTIONS(2887), - [sym_nil] = ACTIONS(2887), - [anon_sym_QMARK_DOT] = ACTIONS(2885), - [anon_sym_POUND_LBRACK] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_DOLLARif] = ACTIONS(2887), - [anon_sym_is] = ACTIONS(2887), - [anon_sym_BANGis] = ACTIONS(2885), - [anon_sym_in] = ACTIONS(2887), - [anon_sym_BANGin] = ACTIONS(2885), - [anon_sym_match] = ACTIONS(2887), - [anon_sym_select] = ACTIONS(2887), - [anon_sym_lock] = ACTIONS(2887), - [anon_sym_rlock] = ACTIONS(2887), - [anon_sym_unsafe] = ACTIONS(2887), - [anon_sym_sql] = ACTIONS(2887), - [sym_int_literal] = ACTIONS(2887), - [sym_float_literal] = ACTIONS(2885), - [sym_rune_literal] = ACTIONS(2885), - [anon_sym_SQUOTE] = ACTIONS(2885), - [anon_sym_DQUOTE] = ACTIONS(2885), - [anon_sym_c_SQUOTE] = ACTIONS(2885), - [anon_sym_c_DQUOTE] = ACTIONS(2885), - [anon_sym_r_SQUOTE] = ACTIONS(2885), - [anon_sym_r_DQUOTE] = ACTIONS(2885), - [sym_pseudo_compile_time_identifier] = ACTIONS(2887), - [anon_sym_shared] = ACTIONS(2887), - [anon_sym_map_LBRACK] = ACTIONS(2885), - [anon_sym_chan] = ACTIONS(2887), - [anon_sym_thread] = ACTIONS(2887), - [anon_sym_atomic] = ACTIONS(2887), + [anon_sym_DOT] = ACTIONS(2937), + [anon_sym_as] = ACTIONS(2937), + [anon_sym_LBRACE] = ACTIONS(2935), + [anon_sym_COMMA] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2935), + [anon_sym_fn] = ACTIONS(2937), + [anon_sym_PLUS] = ACTIONS(2937), + [anon_sym_DASH] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_SLASH] = ACTIONS(2937), + [anon_sym_PERCENT] = ACTIONS(2935), + [anon_sym_LT] = ACTIONS(2937), + [anon_sym_GT] = ACTIONS(2937), + [anon_sym_EQ_EQ] = ACTIONS(2935), + [anon_sym_BANG_EQ] = ACTIONS(2935), + [anon_sym_LT_EQ] = ACTIONS(2935), + [anon_sym_GT_EQ] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2935), + [anon_sym_RBRACK] = ACTIONS(3956), + [anon_sym_struct] = ACTIONS(2937), + [anon_sym_mut] = ACTIONS(2937), + [anon_sym_PLUS_PLUS] = ACTIONS(2935), + [anon_sym_DASH_DASH] = ACTIONS(2935), + [anon_sym_QMARK] = ACTIONS(2937), + [anon_sym_BANG] = ACTIONS(2937), + [anon_sym_go] = ACTIONS(2937), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2935), + [anon_sym_PIPE] = ACTIONS(2937), + [anon_sym_LBRACK2] = ACTIONS(2937), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_CARET] = ACTIONS(2935), + [anon_sym_AMP] = ACTIONS(2937), + [anon_sym_LT_DASH] = ACTIONS(2935), + [anon_sym_LT_LT] = ACTIONS(2935), + [anon_sym_GT_GT] = ACTIONS(2937), + [anon_sym_GT_GT_GT] = ACTIONS(2935), + [anon_sym_AMP_CARET] = ACTIONS(2935), + [anon_sym_AMP_AMP] = ACTIONS(2935), + [anon_sym_PIPE_PIPE] = ACTIONS(2935), + [anon_sym_or] = ACTIONS(2937), + [sym_none] = ACTIONS(2937), + [sym_true] = ACTIONS(2937), + [sym_false] = ACTIONS(2937), + [sym_nil] = ACTIONS(2937), + [anon_sym_QMARK_DOT] = ACTIONS(2935), + [anon_sym_POUND_LBRACK] = ACTIONS(2935), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_DOLLARif] = ACTIONS(2937), + [anon_sym_is] = ACTIONS(2937), + [anon_sym_BANGis] = ACTIONS(2935), + [anon_sym_in] = ACTIONS(2937), + [anon_sym_BANGin] = ACTIONS(2935), + [anon_sym_match] = ACTIONS(2937), + [anon_sym_select] = ACTIONS(2937), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(2937), + [anon_sym_sql] = ACTIONS(2937), + [sym_int_literal] = ACTIONS(2937), + [sym_float_literal] = ACTIONS(2935), + [sym_rune_literal] = ACTIONS(2935), + [anon_sym_SQUOTE] = ACTIONS(2935), + [anon_sym_DQUOTE] = ACTIONS(2935), + [anon_sym_c_SQUOTE] = ACTIONS(2935), + [anon_sym_c_DQUOTE] = ACTIONS(2935), + [anon_sym_r_SQUOTE] = ACTIONS(2935), + [anon_sym_r_DQUOTE] = ACTIONS(2935), + [sym_pseudo_compile_time_identifier] = ACTIONS(2937), + [anon_sym_shared] = ACTIONS(2937), + [anon_sym_map_LBRACK] = ACTIONS(2935), + [anon_sym_chan] = ACTIONS(2937), + [anon_sym_thread] = ACTIONS(2937), + [anon_sym_atomic] = ACTIONS(2937), }, [1399] = { [sym_line_comment] = STATE(1399), [sym_block_comment] = STATE(1399), - [sym_identifier] = ACTIONS(2715), + [sym_identifier] = ACTIONS(2937), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2715), - [anon_sym_as] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(2713), - [anon_sym_COMMA] = 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_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), - [anon_sym_SQUOTE] = ACTIONS(2713), - [anon_sym_DQUOTE] = ACTIONS(2713), - [anon_sym_c_SQUOTE] = ACTIONS(2713), - [anon_sym_c_DQUOTE] = ACTIONS(2713), - [anon_sym_r_SQUOTE] = ACTIONS(2713), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_as] = ACTIONS(2937), + [anon_sym_LBRACE] = ACTIONS(2935), + [anon_sym_COMMA] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2935), + [anon_sym_fn] = ACTIONS(2937), + [anon_sym_PLUS] = ACTIONS(2937), + [anon_sym_DASH] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_SLASH] = ACTIONS(2937), + [anon_sym_PERCENT] = ACTIONS(2935), + [anon_sym_LT] = ACTIONS(2937), + [anon_sym_GT] = ACTIONS(2937), + [anon_sym_EQ_EQ] = ACTIONS(2935), + [anon_sym_BANG_EQ] = ACTIONS(2935), + [anon_sym_LT_EQ] = ACTIONS(2935), + [anon_sym_GT_EQ] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2935), + [anon_sym_RBRACK] = ACTIONS(3956), + [anon_sym_struct] = ACTIONS(2937), + [anon_sym_mut] = ACTIONS(2937), + [anon_sym_PLUS_PLUS] = ACTIONS(2935), + [anon_sym_DASH_DASH] = ACTIONS(2935), + [anon_sym_QMARK] = ACTIONS(2937), + [anon_sym_BANG] = ACTIONS(2937), + [anon_sym_go] = ACTIONS(2937), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2935), + [anon_sym_PIPE] = ACTIONS(2937), + [anon_sym_LBRACK2] = ACTIONS(2937), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_CARET] = ACTIONS(2935), + [anon_sym_AMP] = ACTIONS(2937), + [anon_sym_LT_DASH] = ACTIONS(2935), + [anon_sym_LT_LT] = ACTIONS(2935), + [anon_sym_GT_GT] = ACTIONS(2937), + [anon_sym_GT_GT_GT] = ACTIONS(2935), + [anon_sym_AMP_CARET] = ACTIONS(2935), + [anon_sym_AMP_AMP] = ACTIONS(2935), + [anon_sym_PIPE_PIPE] = ACTIONS(2935), + [anon_sym_or] = ACTIONS(2937), + [sym_none] = ACTIONS(2937), + [sym_true] = ACTIONS(2937), + [sym_false] = ACTIONS(2937), + [sym_nil] = ACTIONS(2937), + [anon_sym_QMARK_DOT] = ACTIONS(2935), + [anon_sym_POUND_LBRACK] = ACTIONS(2935), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_DOLLARif] = ACTIONS(2937), + [anon_sym_is] = ACTIONS(2937), + [anon_sym_BANGis] = ACTIONS(2935), + [anon_sym_in] = ACTIONS(2937), + [anon_sym_BANGin] = ACTIONS(2935), + [anon_sym_match] = ACTIONS(2937), + [anon_sym_select] = ACTIONS(2937), + [anon_sym_lock] = ACTIONS(2937), + [anon_sym_rlock] = ACTIONS(2937), + [anon_sym_unsafe] = ACTIONS(2937), + [anon_sym_sql] = ACTIONS(2937), + [sym_int_literal] = ACTIONS(2937), + [sym_float_literal] = ACTIONS(2935), + [sym_rune_literal] = ACTIONS(2935), + [anon_sym_SQUOTE] = ACTIONS(2935), + [anon_sym_DQUOTE] = ACTIONS(2935), + [anon_sym_c_SQUOTE] = ACTIONS(2935), + [anon_sym_c_DQUOTE] = ACTIONS(2935), + [anon_sym_r_SQUOTE] = ACTIONS(2935), + [anon_sym_r_DQUOTE] = ACTIONS(2935), + [sym_pseudo_compile_time_identifier] = ACTIONS(2937), + [anon_sym_shared] = ACTIONS(2937), + [anon_sym_map_LBRACK] = ACTIONS(2935), + [anon_sym_chan] = ACTIONS(2937), + [anon_sym_thread] = ACTIONS(2937), + [anon_sym_atomic] = ACTIONS(2937), }, [1400] = { [sym_line_comment] = STATE(1400), [sym_block_comment] = STATE(1400), - [sym_reference_expression] = STATE(4466), - [sym_type_reference_expression] = STATE(2130), - [sym_plain_type] = STATE(2189), - [sym__plain_type_without_special] = STATE(2178), - [sym_anon_struct_type] = STATE(2179), - [sym_multi_return_type] = STATE(2178), - [sym_result_type] = STATE(2178), - [sym_option_type] = STATE(2178), - [sym_qualified_type] = STATE(2130), - [sym_fixed_array_type] = STATE(2179), - [sym_array_type] = STATE(2179), - [sym_pointer_type] = STATE(2179), - [sym_wrong_pointer_type] = STATE(2179), - [sym_map_type] = STATE(2179), - [sym_channel_type] = STATE(2179), - [sym_shared_type] = STATE(2179), - [sym_thread_type] = STATE(2179), - [sym_atomic_type] = STATE(2179), - [sym_generic_type] = STATE(2179), - [sym_function_type] = STATE(2179), - [sym_identifier] = ACTIONS(3924), + [sym_reference_expression] = STATE(4545), + [sym_type_reference_expression] = STATE(2183), + [sym_plain_type] = STATE(2278), + [sym__plain_type_without_special] = STATE(2203), + [sym_anon_struct_type] = STATE(2202), + [sym_multi_return_type] = STATE(2203), + [sym_result_type] = STATE(2203), + [sym_option_type] = STATE(2203), + [sym_qualified_type] = STATE(2183), + [sym_fixed_array_type] = STATE(2202), + [sym_array_type] = STATE(2202), + [sym_pointer_type] = STATE(2202), + [sym_wrong_pointer_type] = STATE(2202), + [sym_map_type] = STATE(2202), + [sym_channel_type] = STATE(2202), + [sym_shared_type] = STATE(2202), + [sym_thread_type] = STATE(2202), + [sym_atomic_type] = STATE(2202), + [sym_generic_type] = STATE(2202), + [sym_function_type] = STATE(2202), + [sym_identifier] = ACTIONS(3959), [anon_sym_LF] = ACTIONS(601), [anon_sym_CR] = ACTIONS(601), [anon_sym_CR_LF] = ACTIONS(601), @@ -173195,13 +173569,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(601), [anon_sym_COMMA] = ACTIONS(601), [anon_sym_RBRACE] = ACTIONS(601), - [anon_sym_LPAREN] = ACTIONS(3926), + [anon_sym_LPAREN] = ACTIONS(3961), [anon_sym___global] = ACTIONS(601), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(3928), + [anon_sym_fn] = ACTIONS(3963), [anon_sym_PLUS] = ACTIONS(601), [anon_sym_DASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(3930), + [anon_sym_STAR] = ACTIONS(3965), [anon_sym_SLASH] = ACTIONS(601), [anon_sym_PERCENT] = ACTIONS(601), [anon_sym_LT] = ACTIONS(601), @@ -173212,16 +173585,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(601), [anon_sym_DOT_DOT_DOT] = ACTIONS(601), [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_struct] = ACTIONS(3932), + [anon_sym_struct] = ACTIONS(3967), [anon_sym_pub] = ACTIONS(601), [anon_sym_mut] = ACTIONS(601), [anon_sym_PLUS_PLUS] = ACTIONS(601), [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_QMARK] = ACTIONS(3934), - [anon_sym_BANG] = ACTIONS(3936), - [anon_sym_LBRACK2] = ACTIONS(3938), + [anon_sym_QMARK] = ACTIONS(3969), + [anon_sym_BANG] = ACTIONS(3971), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_LBRACK2] = ACTIONS(3973), [anon_sym_CARET] = ACTIONS(601), - [anon_sym_AMP] = ACTIONS(3940), + [anon_sym_AMP] = ACTIONS(3975), [anon_sym_LT_LT] = ACTIONS(601), [anon_sym_GT_GT] = ACTIONS(601), [anon_sym_GT_GT_GT] = ACTIONS(601), @@ -173235,193 +173609,518 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(601), [anon_sym_in] = ACTIONS(601), [anon_sym_BANGin] = ACTIONS(601), - [anon_sym_shared] = ACTIONS(3942), - [anon_sym_map_LBRACK] = ACTIONS(3944), - [anon_sym_chan] = ACTIONS(3946), - [anon_sym_thread] = ACTIONS(3948), - [anon_sym_atomic] = ACTIONS(3950), + [anon_sym_shared] = ACTIONS(3977), + [anon_sym_map_LBRACK] = ACTIONS(3979), + [anon_sym_chan] = ACTIONS(3981), + [anon_sym_thread] = ACTIONS(3983), + [anon_sym_atomic] = ACTIONS(3985), [anon_sym_AT_LBRACK] = ACTIONS(601), }, [1401] = { [sym_line_comment] = STATE(1401), [sym_block_comment] = STATE(1401), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(2284), - [sym_plain_type] = STATE(2396), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(2284), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3955), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(595), - [anon_sym_DOT] = ACTIONS(597), - [anon_sym_as] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_RPAREN] = ACTIONS(595), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(3957), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(3959), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(597), - [anon_sym_EQ_EQ] = ACTIONS(595), - [anon_sym_BANG_EQ] = ACTIONS(595), - [anon_sym_LT_EQ] = ACTIONS(595), - [anon_sym_GT_EQ] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(595), - [anon_sym_RBRACK] = ACTIONS(595), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(3961), - [anon_sym_BANG] = ACTIONS(3963), - [anon_sym_LBRACK2] = ACTIONS(3965), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(3967), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(597), - [anon_sym_GT_GT_GT] = ACTIONS(595), - [anon_sym_AMP_CARET] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [anon_sym_or] = ACTIONS(597), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_is] = ACTIONS(597), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(597), - [anon_sym_BANGin] = ACTIONS(595), - [anon_sym_COLON_EQ] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(3969), - [anon_sym_map_LBRACK] = ACTIONS(3971), - [anon_sym_chan] = ACTIONS(3973), - [anon_sym_thread] = ACTIONS(3975), - [anon_sym_atomic] = ACTIONS(3977), - [anon_sym_DOT_DOT] = ACTIONS(595), + [sym_reference_expression] = STATE(4545), + [sym_type_reference_expression] = STATE(2183), + [sym_plain_type] = STATE(2282), + [sym__plain_type_without_special] = STATE(2203), + [sym_anon_struct_type] = STATE(2202), + [sym_multi_return_type] = STATE(2203), + [sym_result_type] = STATE(2203), + [sym_option_type] = STATE(2203), + [sym_qualified_type] = STATE(2183), + [sym_fixed_array_type] = STATE(2202), + [sym_array_type] = STATE(2202), + [sym_pointer_type] = STATE(2202), + [sym_wrong_pointer_type] = STATE(2202), + [sym_map_type] = STATE(2202), + [sym_channel_type] = STATE(2202), + [sym_shared_type] = STATE(2202), + [sym_thread_type] = STATE(2202), + [sym_atomic_type] = STATE(2202), + [sym_generic_type] = STATE(2202), + [sym_function_type] = STATE(2202), + [sym_identifier] = ACTIONS(3959), + [anon_sym_LF] = ACTIONS(605), + [anon_sym_CR] = ACTIONS(605), + [anon_sym_CR_LF] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(605), + [anon_sym_DOT] = ACTIONS(605), + [anon_sym_as] = ACTIONS(605), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_RBRACE] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym___global] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(3965), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [anon_sym_LT_EQ] = ACTIONS(605), + [anon_sym_GT_EQ] = ACTIONS(605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(3967), + [anon_sym_pub] = ACTIONS(605), + [anon_sym_mut] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_QMARK] = ACTIONS(3969), + [anon_sym_BANG] = ACTIONS(3971), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_LBRACK2] = ACTIONS(3973), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(3975), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_GT_GT_GT] = ACTIONS(605), + [anon_sym_AMP_CARET] = ACTIONS(605), + [anon_sym_AMP_AMP] = ACTIONS(605), + [anon_sym_PIPE_PIPE] = ACTIONS(605), + [anon_sym_or] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(605), + [anon_sym_POUND_LBRACK] = ACTIONS(605), + [anon_sym_is] = ACTIONS(605), + [anon_sym_BANGis] = ACTIONS(605), + [anon_sym_in] = ACTIONS(605), + [anon_sym_BANGin] = ACTIONS(605), + [anon_sym_shared] = ACTIONS(3977), + [anon_sym_map_LBRACK] = ACTIONS(3979), + [anon_sym_chan] = ACTIONS(3981), + [anon_sym_thread] = ACTIONS(3983), + [anon_sym_atomic] = ACTIONS(3985), + [anon_sym_AT_LBRACK] = ACTIONS(605), }, [1402] = { [sym_line_comment] = STATE(1402), [sym_block_comment] = STATE(1402), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(2284), - [sym_plain_type] = STATE(2311), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(2284), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3955), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(563), + [sym_reference_expression] = STATE(4545), + [sym_type_reference_expression] = STATE(2183), + [sym_plain_type] = STATE(2194), + [sym__plain_type_without_special] = STATE(2203), + [sym_anon_struct_type] = STATE(2202), + [sym_multi_return_type] = STATE(2203), + [sym_result_type] = STATE(2203), + [sym_option_type] = STATE(2203), + [sym_qualified_type] = STATE(2183), + [sym_fixed_array_type] = STATE(2202), + [sym_array_type] = STATE(2202), + [sym_pointer_type] = STATE(2202), + [sym_wrong_pointer_type] = STATE(2202), + [sym_map_type] = STATE(2202), + [sym_channel_type] = STATE(2202), + [sym_shared_type] = STATE(2202), + [sym_thread_type] = STATE(2202), + [sym_atomic_type] = STATE(2202), + [sym_generic_type] = STATE(2202), + [sym_function_type] = STATE(2202), + [sym_identifier] = ACTIONS(3959), + [anon_sym_LF] = ACTIONS(567), + [anon_sym_CR] = ACTIONS(567), + [anon_sym_CR_LF] = ACTIONS(567), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(567), [anon_sym_DOT] = ACTIONS(567), [anon_sym_as] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_RPAREN] = ACTIONS(563), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym___global] = ACTIONS(567), + [anon_sym_fn] = ACTIONS(3963), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3959), + [anon_sym_STAR] = ACTIONS(3965), [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(567), [anon_sym_LT] = ACTIONS(567), [anon_sym_GT] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_RBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_PLUS_PLUS] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(3961), - [anon_sym_BANG] = ACTIONS(3963), - [anon_sym_LBRACK2] = ACTIONS(3965), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(3967), - [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(3967), + [anon_sym_pub] = ACTIONS(567), + [anon_sym_mut] = ACTIONS(567), + [anon_sym_PLUS_PLUS] = ACTIONS(567), + [anon_sym_DASH_DASH] = ACTIONS(567), + [anon_sym_QMARK] = ACTIONS(3969), + [anon_sym_BANG] = ACTIONS(3971), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_LBRACK2] = ACTIONS(3973), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(3975), + [anon_sym_LT_LT] = ACTIONS(567), [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(563), - [anon_sym_AMP_CARET] = ACTIONS(563), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_GT_GT_GT] = ACTIONS(567), + [anon_sym_AMP_CARET] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), [anon_sym_or] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(563), - [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(567), + [anon_sym_POUND_LBRACK] = ACTIONS(567), [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_BANGis] = ACTIONS(567), [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_COLON_EQ] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(3969), - [anon_sym_map_LBRACK] = ACTIONS(3971), - [anon_sym_chan] = ACTIONS(3973), - [anon_sym_thread] = ACTIONS(3975), - [anon_sym_atomic] = ACTIONS(3977), - [anon_sym_DOT_DOT] = ACTIONS(563), + [anon_sym_BANGin] = ACTIONS(567), + [anon_sym_shared] = ACTIONS(3977), + [anon_sym_map_LBRACK] = ACTIONS(3979), + [anon_sym_chan] = ACTIONS(3981), + [anon_sym_thread] = ACTIONS(3983), + [anon_sym_atomic] = ACTIONS(3985), + [anon_sym_AT_LBRACK] = ACTIONS(567), }, [1403] = { [sym_line_comment] = STATE(1403), [sym_block_comment] = STATE(1403), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(2284), - [sym_plain_type] = STATE(2328), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(2284), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(3955), + [sym_identifier] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_as] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_COMMA] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1835), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1835), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1835), + [anon_sym_BANG_EQ] = ACTIONS(1835), + [anon_sym_LT_EQ] = ACTIONS(1835), + [anon_sym_GT_EQ] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_RBRACK] = ACTIONS(1835), + [anon_sym_struct] = ACTIONS(1837), + [anon_sym_mut] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_QMARK] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_go] = ACTIONS(1837), + [anon_sym_spawn] = ACTIONS(1837), + [anon_sym_json_DOTdecode] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_LBRACK2] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1835), + [anon_sym_LT_LT] = ACTIONS(1835), + [anon_sym_GT_GT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1835), + [anon_sym_AMP_CARET] = ACTIONS(1835), + [anon_sym_AMP_AMP] = ACTIONS(1835), + [anon_sym_PIPE_PIPE] = ACTIONS(1835), + [anon_sym_or] = ACTIONS(1837), + [sym_none] = ACTIONS(1837), + [sym_true] = ACTIONS(1837), + [sym_false] = ACTIONS(1837), + [sym_nil] = ACTIONS(1837), + [anon_sym_QMARK_DOT] = ACTIONS(1835), + [anon_sym_POUND_LBRACK] = ACTIONS(1835), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_DOLLARif] = ACTIONS(1837), + [anon_sym_is] = ACTIONS(1837), + [anon_sym_BANGis] = ACTIONS(1835), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_BANGin] = ACTIONS(1835), + [anon_sym_match] = ACTIONS(1837), + [anon_sym_select] = ACTIONS(1837), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1837), + [anon_sym_sql] = ACTIONS(1837), + [sym_int_literal] = ACTIONS(1837), + [sym_float_literal] = ACTIONS(1835), + [sym_rune_literal] = ACTIONS(1835), + [anon_sym_SQUOTE] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(1835), + [anon_sym_c_SQUOTE] = ACTIONS(1835), + [anon_sym_c_DQUOTE] = ACTIONS(1835), + [anon_sym_r_SQUOTE] = ACTIONS(1835), + [anon_sym_r_DQUOTE] = ACTIONS(1835), + [sym_pseudo_compile_time_identifier] = ACTIONS(1837), + [anon_sym_shared] = ACTIONS(1837), + [anon_sym_map_LBRACK] = ACTIONS(1835), + [anon_sym_chan] = ACTIONS(1837), + [anon_sym_thread] = ACTIONS(1837), + [anon_sym_atomic] = ACTIONS(1837), + }, + [1404] = { + [sym_line_comment] = STATE(1404), + [sym_block_comment] = STATE(1404), + [sym_identifier] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2643), + [anon_sym_as] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_COMMA] = ACTIONS(2641), + [anon_sym_LPAREN] = ACTIONS(2641), + [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_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_PIPE] = ACTIONS(2643), + [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_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), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(2641), + [anon_sym_c_SQUOTE] = ACTIONS(2641), + [anon_sym_c_DQUOTE] = ACTIONS(2641), + [anon_sym_r_SQUOTE] = ACTIONS(2641), + [anon_sym_r_DQUOTE] = 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), + }, + [1405] = { + [sym_line_comment] = STATE(1405), + [sym_block_comment] = STATE(1405), + [sym_type_parameters] = STATE(1421), + [ts_builtin_sym_end] = ACTIONS(1943), + [sym_identifier] = ACTIONS(1945), + [anon_sym_LF] = ACTIONS(1945), + [anon_sym_CR] = ACTIONS(1945), + [anon_sym_CR_LF] = ACTIONS(1945), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1945), + [anon_sym_const] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym___global] = ACTIONS(1945), + [anon_sym_type] = ACTIONS(1945), + [anon_sym_fn] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1945), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(3987), + [anon_sym_struct] = ACTIONS(1945), + [anon_sym_union] = ACTIONS(1945), + [anon_sym_pub] = ACTIONS(1945), + [anon_sym_mut] = ACTIONS(1945), + [anon_sym_enum] = ACTIONS(1945), + [anon_sym_interface] = ACTIONS(1945), + [anon_sym_QMARK] = ACTIONS(1945), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_go] = ACTIONS(1945), + [anon_sym_spawn] = ACTIONS(1945), + [anon_sym_json_DOTdecode] = ACTIONS(1945), + [anon_sym_LBRACK2] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1945), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_nil] = ACTIONS(1945), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_DOLLARif] = ACTIONS(1945), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_select] = ACTIONS(1945), + [anon_sym_lock] = ACTIONS(1945), + [anon_sym_rlock] = ACTIONS(1945), + [anon_sym_unsafe] = ACTIONS(1945), + [anon_sym_sql] = ACTIONS(1945), + [sym_int_literal] = ACTIONS(1945), + [sym_float_literal] = ACTIONS(1945), + [sym_rune_literal] = ACTIONS(1945), + [anon_sym_SQUOTE] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(1945), + [anon_sym_c_SQUOTE] = ACTIONS(1945), + [anon_sym_c_DQUOTE] = ACTIONS(1945), + [anon_sym_r_SQUOTE] = ACTIONS(1945), + [anon_sym_r_DQUOTE] = ACTIONS(1945), + [sym_pseudo_compile_time_identifier] = ACTIONS(1945), + [anon_sym_shared] = ACTIONS(1945), + [aux_sym_sum_type_token1] = ACTIONS(1945), + [anon_sym_PIPE2] = ACTIONS(1943), + [anon_sym_map_LBRACK] = ACTIONS(1945), + [anon_sym_chan] = ACTIONS(1945), + [anon_sym_thread] = ACTIONS(1945), + [anon_sym_atomic] = ACTIONS(1945), + [anon_sym_assert] = ACTIONS(1945), + [anon_sym_defer] = ACTIONS(1945), + [anon_sym_goto] = ACTIONS(1945), + [anon_sym_break] = ACTIONS(1945), + [anon_sym_continue] = ACTIONS(1945), + [anon_sym_return] = ACTIONS(1945), + [anon_sym_DOLLARfor] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1945), + [anon_sym_POUND] = ACTIONS(1945), + [anon_sym_asm] = ACTIONS(1945), + [anon_sym_AT_LBRACK] = ACTIONS(1945), + }, + [1406] = { + [sym_line_comment] = STATE(1406), + [sym_block_comment] = STATE(1406), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(2320), + [sym_plain_type] = STATE(2409), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(2320), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3989), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(603), + [anon_sym_DOT] = ACTIONS(605), + [anon_sym_as] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_RPAREN] = ACTIONS(603), + [anon_sym_fn] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(3993), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_BANG_EQ] = ACTIONS(603), + [anon_sym_LT_EQ] = ACTIONS(603), + [anon_sym_GT_EQ] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_RBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(3995), + [anon_sym_BANG] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_LBRACK2] = ACTIONS(3999), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_GT_GT_GT] = ACTIONS(603), + [anon_sym_AMP_CARET] = ACTIONS(603), + [anon_sym_AMP_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(603), + [anon_sym_or] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(603), + [anon_sym_is] = ACTIONS(605), + [anon_sym_BANGis] = ACTIONS(603), + [anon_sym_in] = ACTIONS(605), + [anon_sym_BANGin] = ACTIONS(603), + [anon_sym_COLON_EQ] = ACTIONS(603), + [anon_sym_shared] = ACTIONS(4003), + [anon_sym_map_LBRACK] = ACTIONS(4005), + [anon_sym_chan] = ACTIONS(4007), + [anon_sym_thread] = ACTIONS(4009), + [anon_sym_atomic] = ACTIONS(4011), + [anon_sym_DOT_DOT] = ACTIONS(603), + }, + [1407] = { + [sym_line_comment] = STATE(1407), + [sym_block_comment] = STATE(1407), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(2320), + [sym_plain_type] = STATE(2418), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(2320), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3989), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_SEMI] = ACTIONS(599), @@ -173431,11 +174130,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(599), [anon_sym_LPAREN] = ACTIONS(3598), [anon_sym_RPAREN] = ACTIONS(599), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(3957), + [anon_sym_fn] = ACTIONS(3991), [anon_sym_PLUS] = ACTIONS(601), [anon_sym_DASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(3959), + [anon_sym_STAR] = ACTIONS(3993), [anon_sym_SLASH] = ACTIONS(601), [anon_sym_PERCENT] = ACTIONS(599), [anon_sym_LT] = ACTIONS(601), @@ -173446,15 +174144,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(599), [anon_sym_LBRACK] = ACTIONS(599), [anon_sym_RBRACK] = ACTIONS(599), - [anon_sym_struct] = ACTIONS(615), + [anon_sym_struct] = ACTIONS(619), [anon_sym_COLON] = ACTIONS(601), [anon_sym_PLUS_PLUS] = ACTIONS(599), [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_QMARK] = ACTIONS(3961), - [anon_sym_BANG] = ACTIONS(3963), - [anon_sym_LBRACK2] = ACTIONS(3965), + [anon_sym_QMARK] = ACTIONS(3995), + [anon_sym_BANG] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_LBRACK2] = ACTIONS(3999), [anon_sym_CARET] = ACTIONS(599), - [anon_sym_AMP] = ACTIONS(3967), + [anon_sym_AMP] = ACTIONS(4001), [anon_sym_LT_LT] = ACTIONS(599), [anon_sym_GT_GT] = ACTIONS(601), [anon_sym_GT_GT_GT] = ACTIONS(599), @@ -173469,2007 +174168,3415 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(601), [anon_sym_BANGin] = ACTIONS(599), [anon_sym_COLON_EQ] = ACTIONS(599), - [anon_sym_shared] = ACTIONS(3969), - [anon_sym_map_LBRACK] = ACTIONS(3971), - [anon_sym_chan] = ACTIONS(3973), - [anon_sym_thread] = ACTIONS(3975), - [anon_sym_atomic] = ACTIONS(3977), + [anon_sym_shared] = ACTIONS(4003), + [anon_sym_map_LBRACK] = ACTIONS(4005), + [anon_sym_chan] = ACTIONS(4007), + [anon_sym_thread] = ACTIONS(4009), + [anon_sym_atomic] = ACTIONS(4011), [anon_sym_DOT_DOT] = ACTIONS(599), }, - [1404] = { - [sym_line_comment] = STATE(1404), - [sym_block_comment] = STATE(1404), - [sym_type_parameters] = STATE(1462), - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [anon_sym_LF] = ACTIONS(1899), - [anon_sym_CR] = ACTIONS(1899), - [anon_sym_CR_LF] = ACTIONS(1899), + [1408] = { + [sym_line_comment] = STATE(1408), + [sym_block_comment] = STATE(1408), + [aux_sym_sum_type_repeat1] = STATE(1417), + [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(1899), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym___global] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_fn] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(3979), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_union] = ACTIONS(1899), - [anon_sym_pub] = ACTIONS(1899), - [anon_sym_mut] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [anon_sym_interface] = ACTIONS(1899), - [anon_sym_QMARK] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_go] = ACTIONS(1899), - [anon_sym_spawn] = ACTIONS(1899), - [anon_sym_json_DOTdecode] = ACTIONS(1899), - [anon_sym_LBRACK2] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_LT_DASH] = ACTIONS(1899), - [sym_none] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_nil] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_DOLLARif] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_select] = ACTIONS(1899), - [anon_sym_lock] = ACTIONS(1899), - [anon_sym_rlock] = ACTIONS(1899), - [anon_sym_unsafe] = ACTIONS(1899), - [anon_sym_sql] = ACTIONS(1899), - [sym_int_literal] = ACTIONS(1899), - [sym_float_literal] = ACTIONS(1899), - [sym_rune_literal] = ACTIONS(1899), - [anon_sym_SQUOTE] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1899), - [anon_sym_c_SQUOTE] = ACTIONS(1899), - [anon_sym_c_DQUOTE] = ACTIONS(1899), - [anon_sym_r_SQUOTE] = ACTIONS(1899), - [anon_sym_r_DQUOTE] = ACTIONS(1899), - [sym_pseudo_compile_time_identifier] = ACTIONS(1899), - [anon_sym_shared] = ACTIONS(1899), - [anon_sym_map_LBRACK] = ACTIONS(1899), - [anon_sym_chan] = ACTIONS(1899), - [anon_sym_thread] = ACTIONS(1899), - [anon_sym_atomic] = ACTIONS(1899), - [anon_sym_assert] = ACTIONS(1899), - [anon_sym_defer] = ACTIONS(1899), - [anon_sym_goto] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_DOLLARfor] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_POUND] = ACTIONS(1899), - [anon_sym_asm] = ACTIONS(1899), - [anon_sym_AT_LBRACK] = ACTIONS(1899), + [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_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), + [anon_sym_SQUOTE] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_c_SQUOTE] = ACTIONS(4015), + [anon_sym_c_DQUOTE] = ACTIONS(4015), + [anon_sym_r_SQUOTE] = ACTIONS(4015), + [anon_sym_r_DQUOTE] = ACTIONS(4015), + [sym_pseudo_compile_time_identifier] = ACTIONS(4015), + [anon_sym_shared] = ACTIONS(4015), + [aux_sym_sum_type_token1] = ACTIONS(4017), + [anon_sym_PIPE2] = ACTIONS(4019), + [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), }, - [1405] = { - [sym_line_comment] = STATE(1405), - [sym_block_comment] = STATE(1405), - [aux_sym__type_union_list_repeat1] = STATE(1406), - [ts_builtin_sym_end] = ACTIONS(3981), - [sym_identifier] = ACTIONS(3983), - [anon_sym_LF] = ACTIONS(3985), - [anon_sym_CR] = ACTIONS(3985), - [anon_sym_CR_LF] = ACTIONS(3985), + [1409] = { + [sym_line_comment] = STATE(1409), + [sym_block_comment] = STATE(1409), + [ts_builtin_sym_end] = ACTIONS(2681), + [sym_identifier] = ACTIONS(2683), + [anon_sym_LF] = ACTIONS(2683), + [anon_sym_CR] = ACTIONS(2683), + [anon_sym_CR_LF] = ACTIONS(2683), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3983), - [anon_sym_LBRACE] = ACTIONS(3983), - [anon_sym_const] = ACTIONS(3983), - [anon_sym_LPAREN] = ACTIONS(3983), - [anon_sym___global] = ACTIONS(3983), - [anon_sym_type] = ACTIONS(3983), - [anon_sym_PIPE] = ACTIONS(3988), - [anon_sym_fn] = ACTIONS(3983), - [anon_sym_PLUS] = ACTIONS(3983), - [anon_sym_DASH] = ACTIONS(3983), - [anon_sym_STAR] = ACTIONS(3983), - [anon_sym_struct] = ACTIONS(3983), - [anon_sym_union] = ACTIONS(3983), - [anon_sym_pub] = ACTIONS(3983), - [anon_sym_mut] = ACTIONS(3983), - [anon_sym_enum] = ACTIONS(3983), - [anon_sym_interface] = ACTIONS(3983), - [anon_sym_QMARK] = ACTIONS(3983), - [anon_sym_BANG] = ACTIONS(3983), - [anon_sym_go] = ACTIONS(3983), - [anon_sym_spawn] = ACTIONS(3983), - [anon_sym_json_DOTdecode] = ACTIONS(3983), - [anon_sym_LBRACK2] = ACTIONS(3983), - [anon_sym_TILDE] = ACTIONS(3983), - [anon_sym_CARET] = ACTIONS(3983), - [anon_sym_AMP] = ACTIONS(3983), - [anon_sym_LT_DASH] = ACTIONS(3983), - [sym_none] = ACTIONS(3983), - [sym_true] = ACTIONS(3983), - [sym_false] = ACTIONS(3983), - [sym_nil] = ACTIONS(3983), - [anon_sym_if] = ACTIONS(3983), - [anon_sym_DOLLARif] = ACTIONS(3983), - [anon_sym_match] = ACTIONS(3983), - [anon_sym_select] = ACTIONS(3983), - [anon_sym_lock] = ACTIONS(3983), - [anon_sym_rlock] = ACTIONS(3983), - [anon_sym_unsafe] = ACTIONS(3983), - [anon_sym_sql] = ACTIONS(3983), - [sym_int_literal] = ACTIONS(3983), - [sym_float_literal] = ACTIONS(3983), - [sym_rune_literal] = ACTIONS(3983), - [anon_sym_SQUOTE] = ACTIONS(3983), - [anon_sym_DQUOTE] = ACTIONS(3983), - [anon_sym_c_SQUOTE] = ACTIONS(3983), - [anon_sym_c_DQUOTE] = ACTIONS(3983), - [anon_sym_r_SQUOTE] = ACTIONS(3983), - [anon_sym_r_DQUOTE] = ACTIONS(3983), - [sym_pseudo_compile_time_identifier] = ACTIONS(3983), - [anon_sym_shared] = ACTIONS(3983), - [anon_sym_map_LBRACK] = ACTIONS(3983), - [anon_sym_chan] = ACTIONS(3983), - [anon_sym_thread] = ACTIONS(3983), - [anon_sym_atomic] = ACTIONS(3983), - [anon_sym_assert] = ACTIONS(3983), - [anon_sym_defer] = ACTIONS(3983), - [anon_sym_goto] = ACTIONS(3983), - [anon_sym_break] = ACTIONS(3983), - [anon_sym_continue] = ACTIONS(3983), - [anon_sym_return] = ACTIONS(3983), - [anon_sym_DOLLARfor] = ACTIONS(3983), - [anon_sym_for] = ACTIONS(3983), - [anon_sym_POUND] = ACTIONS(3983), - [anon_sym_asm] = ACTIONS(3983), - [anon_sym_AT_LBRACK] = ACTIONS(3983), + [anon_sym_DOT] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_const] = ACTIONS(2683), + [anon_sym_LPAREN] = ACTIONS(2683), + [anon_sym___global] = ACTIONS(2683), + [anon_sym_type] = ACTIONS(2683), + [anon_sym_fn] = ACTIONS(2683), + [anon_sym_PLUS] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2683), + [anon_sym_pub] = ACTIONS(2683), + [anon_sym_mut] = ACTIONS(2683), + [anon_sym_enum] = ACTIONS(2683), + [anon_sym_interface] = ACTIONS(2683), + [anon_sym_QMARK] = ACTIONS(2683), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_go] = ACTIONS(2683), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(2683), + [anon_sym_LBRACK2] = ACTIONS(2683), + [anon_sym_TILDE] = ACTIONS(2683), + [anon_sym_CARET] = ACTIONS(2683), + [anon_sym_AMP] = ACTIONS(2683), + [anon_sym_LT_DASH] = ACTIONS(2683), + [sym_none] = ACTIONS(2683), + [sym_true] = ACTIONS(2683), + [sym_false] = ACTIONS(2683), + [sym_nil] = ACTIONS(2683), + [anon_sym_if] = ACTIONS(2683), + [anon_sym_DOLLARif] = ACTIONS(2683), + [anon_sym_match] = ACTIONS(2683), + [anon_sym_select] = ACTIONS(2683), + [anon_sym_lock] = ACTIONS(2683), + [anon_sym_rlock] = ACTIONS(2683), + [anon_sym_unsafe] = ACTIONS(2683), + [anon_sym_sql] = ACTIONS(2683), + [sym_int_literal] = ACTIONS(2683), + [sym_float_literal] = ACTIONS(2683), + [sym_rune_literal] = ACTIONS(2683), + [anon_sym_SQUOTE] = ACTIONS(2683), + [anon_sym_DQUOTE] = ACTIONS(2683), + [anon_sym_c_SQUOTE] = ACTIONS(2683), + [anon_sym_c_DQUOTE] = ACTIONS(2683), + [anon_sym_r_SQUOTE] = ACTIONS(2683), + [anon_sym_r_DQUOTE] = ACTIONS(2683), + [sym_pseudo_compile_time_identifier] = ACTIONS(2683), + [anon_sym_shared] = ACTIONS(2683), + [aux_sym_sum_type_token1] = ACTIONS(2683), + [anon_sym_PIPE2] = ACTIONS(2681), + [anon_sym_map_LBRACK] = ACTIONS(2683), + [anon_sym_chan] = ACTIONS(2683), + [anon_sym_thread] = ACTIONS(2683), + [anon_sym_atomic] = ACTIONS(2683), + [anon_sym_assert] = ACTIONS(2683), + [anon_sym_defer] = ACTIONS(2683), + [anon_sym_goto] = ACTIONS(2683), + [anon_sym_break] = ACTIONS(2683), + [anon_sym_continue] = ACTIONS(2683), + [anon_sym_return] = ACTIONS(2683), + [anon_sym_DOLLARfor] = ACTIONS(2683), + [anon_sym_for] = ACTIONS(2683), + [anon_sym_POUND] = ACTIONS(2683), + [anon_sym_asm] = ACTIONS(2683), + [anon_sym_AT_LBRACK] = ACTIONS(2683), }, - [1406] = { - [sym_line_comment] = STATE(1406), - [sym_block_comment] = STATE(1406), - [aux_sym__type_union_list_repeat1] = STATE(1406), - [ts_builtin_sym_end] = ACTIONS(3990), - [sym_identifier] = ACTIONS(3992), - [anon_sym_LF] = ACTIONS(3994), - [anon_sym_CR] = ACTIONS(3994), - [anon_sym_CR_LF] = ACTIONS(3994), + [1410] = { + [sym_line_comment] = STATE(1410), + [sym_block_comment] = STATE(1410), + [ts_builtin_sym_end] = ACTIONS(2093), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LF] = ACTIONS(2095), + [anon_sym_CR] = ACTIONS(2095), + [anon_sym_CR_LF] = ACTIONS(2095), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3992), - [anon_sym_LBRACE] = ACTIONS(3992), - [anon_sym_const] = ACTIONS(3992), - [anon_sym_LPAREN] = ACTIONS(3992), - [anon_sym___global] = ACTIONS(3992), - [anon_sym_type] = ACTIONS(3992), - [anon_sym_PIPE] = ACTIONS(3997), - [anon_sym_fn] = ACTIONS(3992), - [anon_sym_PLUS] = ACTIONS(3992), - [anon_sym_DASH] = ACTIONS(3992), - [anon_sym_STAR] = ACTIONS(3992), - [anon_sym_struct] = ACTIONS(3992), - [anon_sym_union] = ACTIONS(3992), - [anon_sym_pub] = ACTIONS(3992), - [anon_sym_mut] = ACTIONS(3992), - [anon_sym_enum] = ACTIONS(3992), - [anon_sym_interface] = ACTIONS(3992), - [anon_sym_QMARK] = ACTIONS(3992), - [anon_sym_BANG] = ACTIONS(3992), - [anon_sym_go] = ACTIONS(3992), - [anon_sym_spawn] = ACTIONS(3992), - [anon_sym_json_DOTdecode] = ACTIONS(3992), - [anon_sym_LBRACK2] = ACTIONS(3992), - [anon_sym_TILDE] = ACTIONS(3992), - [anon_sym_CARET] = ACTIONS(3992), - [anon_sym_AMP] = ACTIONS(3992), - [anon_sym_LT_DASH] = ACTIONS(3992), - [sym_none] = ACTIONS(3992), - [sym_true] = ACTIONS(3992), - [sym_false] = ACTIONS(3992), - [sym_nil] = ACTIONS(3992), - [anon_sym_if] = ACTIONS(3992), - [anon_sym_DOLLARif] = ACTIONS(3992), - [anon_sym_match] = ACTIONS(3992), - [anon_sym_select] = ACTIONS(3992), - [anon_sym_lock] = ACTIONS(3992), - [anon_sym_rlock] = ACTIONS(3992), - [anon_sym_unsafe] = ACTIONS(3992), - [anon_sym_sql] = ACTIONS(3992), - [sym_int_literal] = ACTIONS(3992), - [sym_float_literal] = ACTIONS(3992), - [sym_rune_literal] = ACTIONS(3992), - [anon_sym_SQUOTE] = ACTIONS(3992), - [anon_sym_DQUOTE] = ACTIONS(3992), - [anon_sym_c_SQUOTE] = ACTIONS(3992), - [anon_sym_c_DQUOTE] = ACTIONS(3992), - [anon_sym_r_SQUOTE] = ACTIONS(3992), - [anon_sym_r_DQUOTE] = ACTIONS(3992), - [sym_pseudo_compile_time_identifier] = ACTIONS(3992), - [anon_sym_shared] = ACTIONS(3992), - [anon_sym_map_LBRACK] = ACTIONS(3992), - [anon_sym_chan] = ACTIONS(3992), - [anon_sym_thread] = ACTIONS(3992), - [anon_sym_atomic] = ACTIONS(3992), - [anon_sym_assert] = ACTIONS(3992), - [anon_sym_defer] = ACTIONS(3992), - [anon_sym_goto] = ACTIONS(3992), - [anon_sym_break] = ACTIONS(3992), - [anon_sym_continue] = ACTIONS(3992), - [anon_sym_return] = ACTIONS(3992), - [anon_sym_DOLLARfor] = ACTIONS(3992), - [anon_sym_for] = ACTIONS(3992), - [anon_sym_POUND] = ACTIONS(3992), - [anon_sym_asm] = ACTIONS(3992), - [anon_sym_AT_LBRACK] = ACTIONS(3992), + [anon_sym_DOT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_const] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym___global] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2095), + [anon_sym_fn] = ACTIONS(2095), + [anon_sym_PLUS] = ACTIONS(2095), + [anon_sym_DASH] = ACTIONS(2095), + [anon_sym_STAR] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2095), + [anon_sym_union] = ACTIONS(2095), + [anon_sym_pub] = ACTIONS(2095), + [anon_sym_mut] = ACTIONS(2095), + [anon_sym_enum] = ACTIONS(2095), + [anon_sym_interface] = ACTIONS(2095), + [anon_sym_QMARK] = ACTIONS(2095), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_go] = ACTIONS(2095), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(2095), + [anon_sym_LBRACK2] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_LT_DASH] = ACTIONS(2095), + [sym_none] = ACTIONS(2095), + [sym_true] = ACTIONS(2095), + [sym_false] = ACTIONS(2095), + [sym_nil] = ACTIONS(2095), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_DOLLARif] = ACTIONS(2095), + [anon_sym_match] = ACTIONS(2095), + [anon_sym_select] = ACTIONS(2095), + [anon_sym_lock] = ACTIONS(2095), + [anon_sym_rlock] = ACTIONS(2095), + [anon_sym_unsafe] = ACTIONS(2095), + [anon_sym_sql] = ACTIONS(2095), + [sym_int_literal] = ACTIONS(2095), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [anon_sym_SQUOTE] = ACTIONS(2095), + [anon_sym_DQUOTE] = ACTIONS(2095), + [anon_sym_c_SQUOTE] = ACTIONS(2095), + [anon_sym_c_DQUOTE] = ACTIONS(2095), + [anon_sym_r_SQUOTE] = ACTIONS(2095), + [anon_sym_r_DQUOTE] = ACTIONS(2095), + [sym_pseudo_compile_time_identifier] = ACTIONS(2095), + [anon_sym_shared] = ACTIONS(2095), + [aux_sym_sum_type_token1] = ACTIONS(2095), + [anon_sym_PIPE2] = ACTIONS(2093), + [anon_sym_map_LBRACK] = ACTIONS(2095), + [anon_sym_chan] = ACTIONS(2095), + [anon_sym_thread] = ACTIONS(2095), + [anon_sym_atomic] = ACTIONS(2095), + [anon_sym_assert] = ACTIONS(2095), + [anon_sym_defer] = ACTIONS(2095), + [anon_sym_goto] = ACTIONS(2095), + [anon_sym_break] = ACTIONS(2095), + [anon_sym_continue] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2095), + [anon_sym_DOLLARfor] = ACTIONS(2095), + [anon_sym_for] = ACTIONS(2095), + [anon_sym_POUND] = ACTIONS(2095), + [anon_sym_asm] = ACTIONS(2095), + [anon_sym_AT_LBRACK] = ACTIONS(2095), }, - [1407] = { - [sym_line_comment] = STATE(1407), - [sym_block_comment] = STATE(1407), - [aux_sym__type_union_list_repeat1] = STATE(1405), - [ts_builtin_sym_end] = ACTIONS(4000), - [sym_identifier] = ACTIONS(4002), - [anon_sym_LF] = ACTIONS(4004), - [anon_sym_CR] = ACTIONS(4004), - [anon_sym_CR_LF] = ACTIONS(4004), + [1411] = { + [sym_line_comment] = STATE(1411), + [sym_block_comment] = STATE(1411), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(2320), + [sym_plain_type] = STATE(2387), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(2320), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(3989), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(567), + [anon_sym_as] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_RPAREN] = ACTIONS(563), + [anon_sym_fn] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_STAR] = ACTIONS(3993), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_RBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(567), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(3995), + [anon_sym_BANG] = ACTIONS(3997), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_LBRACK2] = ACTIONS(3999), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(4001), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_GT_GT_GT] = ACTIONS(563), + [anon_sym_AMP_CARET] = ACTIONS(563), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_or] = ACTIONS(567), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_is] = ACTIONS(567), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(567), + [anon_sym_BANGin] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(563), + [anon_sym_shared] = ACTIONS(4003), + [anon_sym_map_LBRACK] = ACTIONS(4005), + [anon_sym_chan] = ACTIONS(4007), + [anon_sym_thread] = ACTIONS(4009), + [anon_sym_atomic] = ACTIONS(4011), + [anon_sym_DOT_DOT] = ACTIONS(563), + }, + [1412] = { + [sym_line_comment] = STATE(1412), + [sym_block_comment] = STATE(1412), + [aux_sym_sum_type_repeat1] = STATE(1417), + [ts_builtin_sym_end] = ACTIONS(4021), + [sym_identifier] = ACTIONS(4023), + [anon_sym_LF] = ACTIONS(4023), + [anon_sym_CR] = ACTIONS(4023), + [anon_sym_CR_LF] = ACTIONS(4023), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4002), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_const] = ACTIONS(4002), - [anon_sym_LPAREN] = ACTIONS(4002), - [anon_sym___global] = ACTIONS(4002), - [anon_sym_type] = ACTIONS(4002), - [anon_sym_PIPE] = ACTIONS(3988), - [anon_sym_fn] = ACTIONS(4002), - [anon_sym_PLUS] = ACTIONS(4002), - [anon_sym_DASH] = ACTIONS(4002), - [anon_sym_STAR] = ACTIONS(4002), - [anon_sym_struct] = ACTIONS(4002), - [anon_sym_union] = ACTIONS(4002), - [anon_sym_pub] = ACTIONS(4002), - [anon_sym_mut] = ACTIONS(4002), - [anon_sym_enum] = ACTIONS(4002), - [anon_sym_interface] = ACTIONS(4002), - [anon_sym_QMARK] = ACTIONS(4002), - [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_go] = ACTIONS(4002), - [anon_sym_spawn] = ACTIONS(4002), - [anon_sym_json_DOTdecode] = ACTIONS(4002), - [anon_sym_LBRACK2] = ACTIONS(4002), - [anon_sym_TILDE] = ACTIONS(4002), - [anon_sym_CARET] = ACTIONS(4002), - [anon_sym_AMP] = ACTIONS(4002), - [anon_sym_LT_DASH] = ACTIONS(4002), - [sym_none] = ACTIONS(4002), - [sym_true] = ACTIONS(4002), - [sym_false] = ACTIONS(4002), - [sym_nil] = ACTIONS(4002), - [anon_sym_if] = ACTIONS(4002), - [anon_sym_DOLLARif] = ACTIONS(4002), - [anon_sym_match] = ACTIONS(4002), - [anon_sym_select] = ACTIONS(4002), - [anon_sym_lock] = ACTIONS(4002), - [anon_sym_rlock] = ACTIONS(4002), - [anon_sym_unsafe] = ACTIONS(4002), - [anon_sym_sql] = ACTIONS(4002), - [sym_int_literal] = ACTIONS(4002), - [sym_float_literal] = ACTIONS(4002), - [sym_rune_literal] = ACTIONS(4002), - [anon_sym_SQUOTE] = ACTIONS(4002), - [anon_sym_DQUOTE] = ACTIONS(4002), - [anon_sym_c_SQUOTE] = ACTIONS(4002), - [anon_sym_c_DQUOTE] = ACTIONS(4002), - [anon_sym_r_SQUOTE] = ACTIONS(4002), - [anon_sym_r_DQUOTE] = ACTIONS(4002), - [sym_pseudo_compile_time_identifier] = ACTIONS(4002), - [anon_sym_shared] = ACTIONS(4002), - [anon_sym_map_LBRACK] = ACTIONS(4002), - [anon_sym_chan] = ACTIONS(4002), - [anon_sym_thread] = ACTIONS(4002), - [anon_sym_atomic] = ACTIONS(4002), - [anon_sym_assert] = ACTIONS(4002), - [anon_sym_defer] = ACTIONS(4002), - [anon_sym_goto] = ACTIONS(4002), - [anon_sym_break] = ACTIONS(4002), - [anon_sym_continue] = ACTIONS(4002), - [anon_sym_return] = ACTIONS(4002), - [anon_sym_DOLLARfor] = ACTIONS(4002), - [anon_sym_for] = ACTIONS(4002), - [anon_sym_POUND] = ACTIONS(4002), - [anon_sym_asm] = ACTIONS(4002), - [anon_sym_AT_LBRACK] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4023), + [anon_sym_LBRACE] = ACTIONS(4023), + [anon_sym_const] = ACTIONS(4023), + [anon_sym_LPAREN] = ACTIONS(4023), + [anon_sym___global] = ACTIONS(4023), + [anon_sym_type] = ACTIONS(4023), + [anon_sym_fn] = ACTIONS(4023), + [anon_sym_PLUS] = ACTIONS(4023), + [anon_sym_DASH] = ACTIONS(4023), + [anon_sym_STAR] = ACTIONS(4023), + [anon_sym_struct] = ACTIONS(4023), + [anon_sym_union] = ACTIONS(4023), + [anon_sym_pub] = ACTIONS(4023), + [anon_sym_mut] = ACTIONS(4023), + [anon_sym_enum] = ACTIONS(4023), + [anon_sym_interface] = ACTIONS(4023), + [anon_sym_QMARK] = ACTIONS(4023), + [anon_sym_BANG] = ACTIONS(4023), + [anon_sym_go] = ACTIONS(4023), + [anon_sym_spawn] = ACTIONS(4023), + [anon_sym_json_DOTdecode] = ACTIONS(4023), + [anon_sym_LBRACK2] = ACTIONS(4023), + [anon_sym_TILDE] = ACTIONS(4023), + [anon_sym_CARET] = ACTIONS(4023), + [anon_sym_AMP] = ACTIONS(4023), + [anon_sym_LT_DASH] = ACTIONS(4023), + [sym_none] = ACTIONS(4023), + [sym_true] = ACTIONS(4023), + [sym_false] = ACTIONS(4023), + [sym_nil] = ACTIONS(4023), + [anon_sym_if] = ACTIONS(4023), + [anon_sym_DOLLARif] = ACTIONS(4023), + [anon_sym_match] = ACTIONS(4023), + [anon_sym_select] = ACTIONS(4023), + [anon_sym_lock] = ACTIONS(4023), + [anon_sym_rlock] = ACTIONS(4023), + [anon_sym_unsafe] = ACTIONS(4023), + [anon_sym_sql] = ACTIONS(4023), + [sym_int_literal] = ACTIONS(4023), + [sym_float_literal] = ACTIONS(4023), + [sym_rune_literal] = ACTIONS(4023), + [anon_sym_SQUOTE] = ACTIONS(4023), + [anon_sym_DQUOTE] = ACTIONS(4023), + [anon_sym_c_SQUOTE] = ACTIONS(4023), + [anon_sym_c_DQUOTE] = ACTIONS(4023), + [anon_sym_r_SQUOTE] = ACTIONS(4023), + [anon_sym_r_DQUOTE] = ACTIONS(4023), + [sym_pseudo_compile_time_identifier] = ACTIONS(4023), + [anon_sym_shared] = ACTIONS(4023), + [aux_sym_sum_type_token1] = ACTIONS(4017), + [anon_sym_PIPE2] = ACTIONS(4019), + [anon_sym_map_LBRACK] = ACTIONS(4023), + [anon_sym_chan] = ACTIONS(4023), + [anon_sym_thread] = ACTIONS(4023), + [anon_sym_atomic] = ACTIONS(4023), + [anon_sym_assert] = ACTIONS(4023), + [anon_sym_defer] = ACTIONS(4023), + [anon_sym_goto] = ACTIONS(4023), + [anon_sym_break] = ACTIONS(4023), + [anon_sym_continue] = ACTIONS(4023), + [anon_sym_return] = ACTIONS(4023), + [anon_sym_DOLLARfor] = ACTIONS(4023), + [anon_sym_for] = ACTIONS(4023), + [anon_sym_POUND] = ACTIONS(4023), + [anon_sym_asm] = ACTIONS(4023), + [anon_sym_AT_LBRACK] = ACTIONS(4023), }, - [1408] = { - [sym_line_comment] = STATE(1408), - [sym_block_comment] = STATE(1408), - [aux_sym_strictly_expression_list_repeat1] = STATE(1410), - [ts_builtin_sym_end] = ACTIONS(4007), - [sym_identifier] = ACTIONS(4009), - [anon_sym_LF] = ACTIONS(4009), - [anon_sym_CR] = ACTIONS(4009), - [anon_sym_CR_LF] = ACTIONS(4009), + [1413] = { + [sym_line_comment] = STATE(1413), + [sym_block_comment] = STATE(1413), + [aux_sym_sum_type_repeat1] = STATE(1413), + [ts_builtin_sym_end] = ACTIONS(4025), + [sym_identifier] = ACTIONS(4027), + [anon_sym_LF] = ACTIONS(4027), + [anon_sym_CR] = ACTIONS(4027), + [anon_sym_CR_LF] = ACTIONS(4027), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4009), - [anon_sym_LBRACE] = ACTIONS(4009), - [anon_sym_COMMA] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(4009), - [anon_sym_LPAREN] = ACTIONS(4009), - [anon_sym___global] = ACTIONS(4009), - [anon_sym_type] = ACTIONS(4009), - [anon_sym_fn] = ACTIONS(4009), - [anon_sym_PLUS] = ACTIONS(4009), - [anon_sym_DASH] = ACTIONS(4009), - [anon_sym_STAR] = ACTIONS(4009), - [anon_sym_struct] = ACTIONS(4009), - [anon_sym_union] = ACTIONS(4009), - [anon_sym_pub] = ACTIONS(4009), - [anon_sym_mut] = ACTIONS(4009), - [anon_sym_enum] = ACTIONS(4009), - [anon_sym_interface] = ACTIONS(4009), - [anon_sym_QMARK] = ACTIONS(4009), - [anon_sym_BANG] = ACTIONS(4009), - [anon_sym_go] = ACTIONS(4009), - [anon_sym_spawn] = ACTIONS(4009), - [anon_sym_json_DOTdecode] = ACTIONS(4009), - [anon_sym_LBRACK2] = ACTIONS(4009), - [anon_sym_TILDE] = ACTIONS(4009), - [anon_sym_CARET] = ACTIONS(4009), - [anon_sym_AMP] = ACTIONS(4009), - [anon_sym_LT_DASH] = ACTIONS(4009), - [sym_none] = ACTIONS(4009), - [sym_true] = ACTIONS(4009), - [sym_false] = ACTIONS(4009), - [sym_nil] = ACTIONS(4009), - [anon_sym_if] = ACTIONS(4009), - [anon_sym_DOLLARif] = ACTIONS(4009), - [anon_sym_match] = ACTIONS(4009), - [anon_sym_select] = ACTIONS(4009), - [anon_sym_lock] = ACTIONS(4009), - [anon_sym_rlock] = ACTIONS(4009), - [anon_sym_unsafe] = ACTIONS(4009), - [anon_sym_sql] = ACTIONS(4009), - [sym_int_literal] = ACTIONS(4009), - [sym_float_literal] = ACTIONS(4009), - [sym_rune_literal] = ACTIONS(4009), - [anon_sym_SQUOTE] = ACTIONS(4009), - [anon_sym_DQUOTE] = ACTIONS(4009), - [anon_sym_c_SQUOTE] = ACTIONS(4009), - [anon_sym_c_DQUOTE] = ACTIONS(4009), - [anon_sym_r_SQUOTE] = ACTIONS(4009), - [anon_sym_r_DQUOTE] = ACTIONS(4009), - [sym_pseudo_compile_time_identifier] = ACTIONS(4009), - [anon_sym_shared] = ACTIONS(4009), - [anon_sym_map_LBRACK] = ACTIONS(4009), - [anon_sym_chan] = ACTIONS(4009), - [anon_sym_thread] = ACTIONS(4009), - [anon_sym_atomic] = ACTIONS(4009), - [anon_sym_assert] = ACTIONS(4009), - [anon_sym_defer] = ACTIONS(4009), - [anon_sym_goto] = ACTIONS(4009), - [anon_sym_break] = ACTIONS(4009), - [anon_sym_continue] = ACTIONS(4009), - [anon_sym_return] = ACTIONS(4009), - [anon_sym_DOLLARfor] = ACTIONS(4009), - [anon_sym_for] = ACTIONS(4009), - [anon_sym_POUND] = ACTIONS(4009), - [anon_sym_asm] = ACTIONS(4009), - [anon_sym_AT_LBRACK] = ACTIONS(4009), + [anon_sym_DOT] = ACTIONS(4027), + [anon_sym_LBRACE] = ACTIONS(4027), + [anon_sym_const] = ACTIONS(4027), + [anon_sym_LPAREN] = ACTIONS(4027), + [anon_sym___global] = ACTIONS(4027), + [anon_sym_type] = ACTIONS(4027), + [anon_sym_fn] = ACTIONS(4027), + [anon_sym_PLUS] = ACTIONS(4027), + [anon_sym_DASH] = ACTIONS(4027), + [anon_sym_STAR] = ACTIONS(4027), + [anon_sym_struct] = ACTIONS(4027), + [anon_sym_union] = ACTIONS(4027), + [anon_sym_pub] = ACTIONS(4027), + [anon_sym_mut] = ACTIONS(4027), + [anon_sym_enum] = ACTIONS(4027), + [anon_sym_interface] = ACTIONS(4027), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_BANG] = ACTIONS(4027), + [anon_sym_go] = ACTIONS(4027), + [anon_sym_spawn] = ACTIONS(4027), + [anon_sym_json_DOTdecode] = ACTIONS(4027), + [anon_sym_LBRACK2] = ACTIONS(4027), + [anon_sym_TILDE] = ACTIONS(4027), + [anon_sym_CARET] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4027), + [anon_sym_LT_DASH] = ACTIONS(4027), + [sym_none] = ACTIONS(4027), + [sym_true] = ACTIONS(4027), + [sym_false] = ACTIONS(4027), + [sym_nil] = ACTIONS(4027), + [anon_sym_if] = ACTIONS(4027), + [anon_sym_DOLLARif] = ACTIONS(4027), + [anon_sym_match] = ACTIONS(4027), + [anon_sym_select] = ACTIONS(4027), + [anon_sym_lock] = ACTIONS(4027), + [anon_sym_rlock] = ACTIONS(4027), + [anon_sym_unsafe] = ACTIONS(4027), + [anon_sym_sql] = ACTIONS(4027), + [sym_int_literal] = ACTIONS(4027), + [sym_float_literal] = ACTIONS(4027), + [sym_rune_literal] = ACTIONS(4027), + [anon_sym_SQUOTE] = ACTIONS(4027), + [anon_sym_DQUOTE] = ACTIONS(4027), + [anon_sym_c_SQUOTE] = ACTIONS(4027), + [anon_sym_c_DQUOTE] = ACTIONS(4027), + [anon_sym_r_SQUOTE] = ACTIONS(4027), + [anon_sym_r_DQUOTE] = ACTIONS(4027), + [sym_pseudo_compile_time_identifier] = ACTIONS(4027), + [anon_sym_shared] = ACTIONS(4027), + [aux_sym_sum_type_token1] = ACTIONS(4029), + [anon_sym_PIPE2] = ACTIONS(4032), + [anon_sym_map_LBRACK] = ACTIONS(4027), + [anon_sym_chan] = ACTIONS(4027), + [anon_sym_thread] = ACTIONS(4027), + [anon_sym_atomic] = ACTIONS(4027), + [anon_sym_assert] = ACTIONS(4027), + [anon_sym_defer] = ACTIONS(4027), + [anon_sym_goto] = ACTIONS(4027), + [anon_sym_break] = ACTIONS(4027), + [anon_sym_continue] = ACTIONS(4027), + [anon_sym_return] = ACTIONS(4027), + [anon_sym_DOLLARfor] = ACTIONS(4027), + [anon_sym_for] = ACTIONS(4027), + [anon_sym_POUND] = ACTIONS(4027), + [anon_sym_asm] = ACTIONS(4027), + [anon_sym_AT_LBRACK] = ACTIONS(4027), }, - [1409] = { - [sym_line_comment] = STATE(1409), - [sym_block_comment] = STATE(1409), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2311), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(605), - [anon_sym_LF] = ACTIONS(627), - [anon_sym_CR] = ACTIONS(627), - [anon_sym_CR_LF] = ACTIONS(627), + [1414] = { + [sym_line_comment] = STATE(1414), + [sym_block_comment] = STATE(1414), + [aux_sym_sum_type_repeat1] = STATE(1417), + [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), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(627), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(627), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(627), - [anon_sym_BANG_EQ] = ACTIONS(627), - [anon_sym_LT_EQ] = ACTIONS(627), - [anon_sym_GT_EQ] = ACTIONS(627), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_QMARK] = ACTIONS(627), - [anon_sym_BANG] = ACTIONS(627), - [anon_sym_LBRACK2] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = 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_shared] = ACTIONS(623), + [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_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), + [anon_sym_SQUOTE] = ACTIONS(4037), + [anon_sym_DQUOTE] = ACTIONS(4037), + [anon_sym_c_SQUOTE] = ACTIONS(4037), + [anon_sym_c_DQUOTE] = ACTIONS(4037), + [anon_sym_r_SQUOTE] = ACTIONS(4037), + [anon_sym_r_DQUOTE] = ACTIONS(4037), + [sym_pseudo_compile_time_identifier] = ACTIONS(4037), + [anon_sym_shared] = ACTIONS(4037), + [aux_sym_sum_type_token1] = ACTIONS(4017), + [anon_sym_PIPE2] = ACTIONS(4019), + [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), + }, + [1415] = { + [sym_line_comment] = STATE(1415), + [sym_block_comment] = STATE(1415), + [aux_sym_sum_type_repeat1] = STATE(1417), + [ts_builtin_sym_end] = ACTIONS(4039), + [sym_identifier] = ACTIONS(4041), + [anon_sym_LF] = ACTIONS(4041), + [anon_sym_CR] = ACTIONS(4041), + [anon_sym_CR_LF] = ACTIONS(4041), + [anon_sym_SLASH_SLASH] = ACTIONS(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_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), + [anon_sym_SQUOTE] = ACTIONS(4041), + [anon_sym_DQUOTE] = ACTIONS(4041), + [anon_sym_c_SQUOTE] = ACTIONS(4041), + [anon_sym_c_DQUOTE] = ACTIONS(4041), + [anon_sym_r_SQUOTE] = ACTIONS(4041), + [anon_sym_r_DQUOTE] = ACTIONS(4041), + [sym_pseudo_compile_time_identifier] = ACTIONS(4041), + [anon_sym_shared] = ACTIONS(4041), + [aux_sym_sum_type_token1] = ACTIONS(4017), + [anon_sym_PIPE2] = ACTIONS(4019), + [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), + }, + [1416] = { + [sym_line_comment] = STATE(1416), + [sym_block_comment] = STATE(1416), + [ts_builtin_sym_end] = ACTIONS(2093), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LF] = ACTIONS(2095), + [anon_sym_CR] = ACTIONS(2095), + [anon_sym_CR_LF] = ACTIONS(2095), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_const] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym___global] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2095), + [anon_sym_fn] = ACTIONS(2095), + [anon_sym_PLUS] = ACTIONS(2095), + [anon_sym_DASH] = ACTIONS(2095), + [anon_sym_STAR] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2095), + [anon_sym_union] = ACTIONS(2095), + [anon_sym_pub] = ACTIONS(2095), + [anon_sym_mut] = ACTIONS(2095), + [anon_sym_enum] = ACTIONS(2095), + [anon_sym_interface] = ACTIONS(2095), + [anon_sym_QMARK] = ACTIONS(2095), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_go] = ACTIONS(2095), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(2095), + [anon_sym_LBRACK2] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_LT_DASH] = ACTIONS(2095), + [sym_none] = ACTIONS(2095), + [sym_true] = ACTIONS(2095), + [sym_false] = ACTIONS(2095), + [sym_nil] = ACTIONS(2095), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_DOLLARif] = ACTIONS(2095), + [anon_sym_match] = ACTIONS(2095), + [anon_sym_select] = ACTIONS(2095), + [anon_sym_lock] = ACTIONS(2095), + [anon_sym_rlock] = ACTIONS(2095), + [anon_sym_unsafe] = ACTIONS(2095), + [anon_sym_sql] = ACTIONS(2095), + [sym_int_literal] = ACTIONS(2095), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [anon_sym_SQUOTE] = ACTIONS(2095), + [anon_sym_DQUOTE] = ACTIONS(2095), + [anon_sym_c_SQUOTE] = ACTIONS(2095), + [anon_sym_c_DQUOTE] = ACTIONS(2095), + [anon_sym_r_SQUOTE] = ACTIONS(2095), + [anon_sym_r_DQUOTE] = ACTIONS(2095), + [sym_pseudo_compile_time_identifier] = ACTIONS(2095), + [anon_sym_shared] = ACTIONS(2095), + [aux_sym_sum_type_token1] = ACTIONS(2095), + [anon_sym_PIPE2] = ACTIONS(2093), + [anon_sym_map_LBRACK] = ACTIONS(2095), + [anon_sym_chan] = ACTIONS(2095), + [anon_sym_thread] = ACTIONS(2095), + [anon_sym_atomic] = ACTIONS(2095), + [anon_sym_assert] = ACTIONS(2095), + [anon_sym_defer] = ACTIONS(2095), + [anon_sym_goto] = ACTIONS(2095), + [anon_sym_break] = ACTIONS(2095), + [anon_sym_continue] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2095), + [anon_sym_DOLLARfor] = ACTIONS(2095), + [anon_sym_for] = ACTIONS(2095), + [anon_sym_POUND] = ACTIONS(2095), + [anon_sym_asm] = ACTIONS(2095), + [anon_sym_AT_LBRACK] = ACTIONS(2095), + }, + [1417] = { + [sym_line_comment] = STATE(1417), + [sym_block_comment] = STATE(1417), + [aux_sym_sum_type_repeat1] = STATE(1413), + [ts_builtin_sym_end] = ACTIONS(4043), + [sym_identifier] = ACTIONS(4045), + [anon_sym_LF] = ACTIONS(4045), + [anon_sym_CR] = ACTIONS(4045), + [anon_sym_CR_LF] = ACTIONS(4045), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4045), + [anon_sym_LBRACE] = ACTIONS(4045), + [anon_sym_const] = ACTIONS(4045), + [anon_sym_LPAREN] = ACTIONS(4045), + [anon_sym___global] = ACTIONS(4045), + [anon_sym_type] = ACTIONS(4045), + [anon_sym_fn] = ACTIONS(4045), + [anon_sym_PLUS] = ACTIONS(4045), + [anon_sym_DASH] = ACTIONS(4045), + [anon_sym_STAR] = ACTIONS(4045), + [anon_sym_struct] = ACTIONS(4045), + [anon_sym_union] = ACTIONS(4045), + [anon_sym_pub] = ACTIONS(4045), + [anon_sym_mut] = ACTIONS(4045), + [anon_sym_enum] = ACTIONS(4045), + [anon_sym_interface] = ACTIONS(4045), + [anon_sym_QMARK] = ACTIONS(4045), + [anon_sym_BANG] = ACTIONS(4045), + [anon_sym_go] = ACTIONS(4045), + [anon_sym_spawn] = ACTIONS(4045), + [anon_sym_json_DOTdecode] = ACTIONS(4045), + [anon_sym_LBRACK2] = ACTIONS(4045), + [anon_sym_TILDE] = ACTIONS(4045), + [anon_sym_CARET] = ACTIONS(4045), + [anon_sym_AMP] = ACTIONS(4045), + [anon_sym_LT_DASH] = ACTIONS(4045), + [sym_none] = ACTIONS(4045), + [sym_true] = ACTIONS(4045), + [sym_false] = ACTIONS(4045), + [sym_nil] = ACTIONS(4045), + [anon_sym_if] = ACTIONS(4045), + [anon_sym_DOLLARif] = ACTIONS(4045), + [anon_sym_match] = ACTIONS(4045), + [anon_sym_select] = ACTIONS(4045), + [anon_sym_lock] = ACTIONS(4045), + [anon_sym_rlock] = ACTIONS(4045), + [anon_sym_unsafe] = ACTIONS(4045), + [anon_sym_sql] = ACTIONS(4045), + [sym_int_literal] = ACTIONS(4045), + [sym_float_literal] = ACTIONS(4045), + [sym_rune_literal] = ACTIONS(4045), + [anon_sym_SQUOTE] = ACTIONS(4045), + [anon_sym_DQUOTE] = ACTIONS(4045), + [anon_sym_c_SQUOTE] = ACTIONS(4045), + [anon_sym_c_DQUOTE] = ACTIONS(4045), + [anon_sym_r_SQUOTE] = ACTIONS(4045), + [anon_sym_r_DQUOTE] = ACTIONS(4045), + [sym_pseudo_compile_time_identifier] = ACTIONS(4045), + [anon_sym_shared] = ACTIONS(4045), + [aux_sym_sum_type_token1] = ACTIONS(4017), + [anon_sym_PIPE2] = ACTIONS(4019), + [anon_sym_map_LBRACK] = ACTIONS(4045), + [anon_sym_chan] = ACTIONS(4045), + [anon_sym_thread] = ACTIONS(4045), + [anon_sym_atomic] = ACTIONS(4045), + [anon_sym_assert] = ACTIONS(4045), + [anon_sym_defer] = ACTIONS(4045), + [anon_sym_goto] = ACTIONS(4045), + [anon_sym_break] = ACTIONS(4045), + [anon_sym_continue] = ACTIONS(4045), + [anon_sym_return] = ACTIONS(4045), + [anon_sym_DOLLARfor] = ACTIONS(4045), + [anon_sym_for] = ACTIONS(4045), + [anon_sym_POUND] = ACTIONS(4045), + [anon_sym_asm] = ACTIONS(4045), + [anon_sym_AT_LBRACK] = ACTIONS(4045), + }, + [1418] = { + [sym_line_comment] = STATE(1418), + [sym_block_comment] = STATE(1418), + [ts_builtin_sym_end] = ACTIONS(2467), + [sym_identifier] = ACTIONS(2469), + [anon_sym_LF] = ACTIONS(2469), + [anon_sym_CR] = ACTIONS(2469), + [anon_sym_CR_LF] = ACTIONS(2469), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2469), + [anon_sym_const] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2469), + [anon_sym___global] = ACTIONS(2469), + [anon_sym_type] = ACTIONS(2469), + [anon_sym_fn] = ACTIONS(2469), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_STAR] = ACTIONS(2469), + [anon_sym_struct] = ACTIONS(2469), + [anon_sym_union] = ACTIONS(2469), + [anon_sym_pub] = ACTIONS(2469), + [anon_sym_mut] = ACTIONS(2469), + [anon_sym_enum] = ACTIONS(2469), + [anon_sym_interface] = ACTIONS(2469), + [anon_sym_QMARK] = ACTIONS(2469), + [anon_sym_BANG] = ACTIONS(2469), + [anon_sym_go] = ACTIONS(2469), + [anon_sym_spawn] = ACTIONS(2469), + [anon_sym_json_DOTdecode] = ACTIONS(2469), + [anon_sym_LBRACK2] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_CARET] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_LT_DASH] = ACTIONS(2469), + [sym_none] = ACTIONS(2469), + [sym_true] = ACTIONS(2469), + [sym_false] = ACTIONS(2469), + [sym_nil] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_DOLLARif] = ACTIONS(2469), + [anon_sym_match] = ACTIONS(2469), + [anon_sym_select] = ACTIONS(2469), + [anon_sym_lock] = ACTIONS(2469), + [anon_sym_rlock] = ACTIONS(2469), + [anon_sym_unsafe] = ACTIONS(2469), + [anon_sym_sql] = ACTIONS(2469), + [sym_int_literal] = ACTIONS(2469), + [sym_float_literal] = ACTIONS(2469), + [sym_rune_literal] = ACTIONS(2469), + [anon_sym_SQUOTE] = ACTIONS(2469), + [anon_sym_DQUOTE] = ACTIONS(2469), + [anon_sym_c_SQUOTE] = ACTIONS(2469), + [anon_sym_c_DQUOTE] = ACTIONS(2469), + [anon_sym_r_SQUOTE] = ACTIONS(2469), + [anon_sym_r_DQUOTE] = ACTIONS(2469), + [sym_pseudo_compile_time_identifier] = ACTIONS(2469), + [anon_sym_shared] = ACTIONS(2469), + [aux_sym_sum_type_token1] = ACTIONS(2469), + [anon_sym_PIPE2] = ACTIONS(2467), + [anon_sym_map_LBRACK] = ACTIONS(2469), + [anon_sym_chan] = ACTIONS(2469), + [anon_sym_thread] = ACTIONS(2469), + [anon_sym_atomic] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2469), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_goto] = ACTIONS(2469), + [anon_sym_break] = ACTIONS(2469), + [anon_sym_continue] = ACTIONS(2469), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_DOLLARfor] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_POUND] = ACTIONS(2469), + [anon_sym_asm] = ACTIONS(2469), + [anon_sym_AT_LBRACK] = ACTIONS(2469), + }, + [1419] = { + [sym_line_comment] = STATE(1419), + [sym_block_comment] = STATE(1419), + [ts_builtin_sym_end] = ACTIONS(4047), + [sym_identifier] = ACTIONS(4049), + [anon_sym_LF] = ACTIONS(4049), + [anon_sym_CR] = ACTIONS(4049), + [anon_sym_CR_LF] = ACTIONS(4049), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4049), + [anon_sym_LBRACE] = ACTIONS(4049), + [anon_sym_const] = ACTIONS(4049), + [anon_sym_LPAREN] = ACTIONS(4049), + [anon_sym___global] = ACTIONS(4049), + [anon_sym_type] = ACTIONS(4049), + [anon_sym_fn] = ACTIONS(4049), + [anon_sym_PLUS] = ACTIONS(4049), + [anon_sym_DASH] = ACTIONS(4049), + [anon_sym_STAR] = ACTIONS(4049), + [anon_sym_struct] = ACTIONS(4049), + [anon_sym_union] = ACTIONS(4049), + [anon_sym_pub] = ACTIONS(4049), + [anon_sym_mut] = ACTIONS(4049), + [anon_sym_enum] = ACTIONS(4049), + [anon_sym_interface] = ACTIONS(4049), + [anon_sym_QMARK] = ACTIONS(4049), + [anon_sym_BANG] = ACTIONS(4049), + [anon_sym_go] = ACTIONS(4049), + [anon_sym_spawn] = ACTIONS(4049), + [anon_sym_json_DOTdecode] = ACTIONS(4049), + [anon_sym_LBRACK2] = ACTIONS(4049), + [anon_sym_TILDE] = ACTIONS(4049), + [anon_sym_CARET] = ACTIONS(4049), + [anon_sym_AMP] = ACTIONS(4049), + [anon_sym_LT_DASH] = ACTIONS(4049), + [sym_none] = ACTIONS(4049), + [sym_true] = ACTIONS(4049), + [sym_false] = ACTIONS(4049), + [sym_nil] = ACTIONS(4049), + [anon_sym_if] = ACTIONS(4049), + [anon_sym_DOLLARif] = ACTIONS(4049), + [anon_sym_match] = ACTIONS(4049), + [anon_sym_select] = ACTIONS(4049), + [anon_sym_lock] = ACTIONS(4049), + [anon_sym_rlock] = ACTIONS(4049), + [anon_sym_unsafe] = ACTIONS(4049), + [anon_sym_sql] = ACTIONS(4049), + [sym_int_literal] = ACTIONS(4049), + [sym_float_literal] = ACTIONS(4049), + [sym_rune_literal] = ACTIONS(4049), + [anon_sym_SQUOTE] = ACTIONS(4049), + [anon_sym_DQUOTE] = ACTIONS(4049), + [anon_sym_c_SQUOTE] = ACTIONS(4049), + [anon_sym_c_DQUOTE] = ACTIONS(4049), + [anon_sym_r_SQUOTE] = ACTIONS(4049), + [anon_sym_r_DQUOTE] = ACTIONS(4049), + [sym_pseudo_compile_time_identifier] = ACTIONS(4049), + [anon_sym_shared] = ACTIONS(4049), + [aux_sym_sum_type_token1] = ACTIONS(4049), + [anon_sym_PIPE2] = ACTIONS(4047), + [anon_sym_map_LBRACK] = ACTIONS(4049), + [anon_sym_chan] = ACTIONS(4049), + [anon_sym_thread] = ACTIONS(4049), + [anon_sym_atomic] = ACTIONS(4049), + [anon_sym_assert] = ACTIONS(4049), + [anon_sym_defer] = ACTIONS(4049), + [anon_sym_goto] = ACTIONS(4049), + [anon_sym_break] = ACTIONS(4049), + [anon_sym_continue] = ACTIONS(4049), + [anon_sym_return] = ACTIONS(4049), + [anon_sym_DOLLARfor] = ACTIONS(4049), + [anon_sym_for] = ACTIONS(4049), + [anon_sym_POUND] = ACTIONS(4049), + [anon_sym_asm] = ACTIONS(4049), + [anon_sym_AT_LBRACK] = ACTIONS(4049), + }, + [1420] = { + [sym_line_comment] = STATE(1420), + [sym_block_comment] = STATE(1420), + [ts_builtin_sym_end] = ACTIONS(3056), + [sym_identifier] = ACTIONS(3058), + [anon_sym_LF] = ACTIONS(3058), + [anon_sym_CR] = ACTIONS(3058), + [anon_sym_CR_LF] = ACTIONS(3058), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_const] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym___global] = ACTIONS(3058), + [anon_sym_type] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_struct] = ACTIONS(3058), + [anon_sym_union] = ACTIONS(3058), + [anon_sym_pub] = ACTIONS(3058), + [anon_sym_mut] = ACTIONS(3058), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_interface] = ACTIONS(3058), + [anon_sym_QMARK] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_go] = ACTIONS(3058), + [anon_sym_spawn] = ACTIONS(3058), + [anon_sym_json_DOTdecode] = ACTIONS(3058), + [anon_sym_LBRACK2] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [anon_sym_CARET] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT_DASH] = ACTIONS(3058), + [sym_none] = ACTIONS(3058), + [sym_true] = ACTIONS(3058), + [sym_false] = ACTIONS(3058), + [sym_nil] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_DOLLARif] = ACTIONS(3058), + [anon_sym_match] = ACTIONS(3058), + [anon_sym_select] = ACTIONS(3058), + [anon_sym_lock] = ACTIONS(3058), + [anon_sym_rlock] = ACTIONS(3058), + [anon_sym_unsafe] = ACTIONS(3058), + [anon_sym_sql] = ACTIONS(3058), + [sym_int_literal] = ACTIONS(3058), + [sym_float_literal] = ACTIONS(3058), + [sym_rune_literal] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_c_SQUOTE] = ACTIONS(3058), + [anon_sym_c_DQUOTE] = ACTIONS(3058), + [anon_sym_r_SQUOTE] = ACTIONS(3058), + [anon_sym_r_DQUOTE] = ACTIONS(3058), + [sym_pseudo_compile_time_identifier] = ACTIONS(3058), + [anon_sym_shared] = ACTIONS(3058), + [aux_sym_sum_type_token1] = ACTIONS(3058), + [anon_sym_PIPE2] = ACTIONS(3056), + [anon_sym_map_LBRACK] = ACTIONS(3058), + [anon_sym_chan] = ACTIONS(3058), + [anon_sym_thread] = ACTIONS(3058), + [anon_sym_atomic] = ACTIONS(3058), + [anon_sym_assert] = ACTIONS(3058), + [anon_sym_defer] = ACTIONS(3058), + [anon_sym_goto] = ACTIONS(3058), + [anon_sym_break] = ACTIONS(3058), + [anon_sym_continue] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_DOLLARfor] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3058), + [anon_sym_POUND] = ACTIONS(3058), + [anon_sym_asm] = ACTIONS(3058), + [anon_sym_AT_LBRACK] = ACTIONS(3058), + }, + [1421] = { + [sym_line_comment] = STATE(1421), + [sym_block_comment] = STATE(1421), + [ts_builtin_sym_end] = ACTIONS(2743), + [sym_identifier] = ACTIONS(2745), + [anon_sym_LF] = ACTIONS(2745), + [anon_sym_CR] = ACTIONS(2745), + [anon_sym_CR_LF] = ACTIONS(2745), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2745), + [anon_sym_const] = ACTIONS(2745), + [anon_sym_LPAREN] = ACTIONS(2745), + [anon_sym___global] = ACTIONS(2745), + [anon_sym_type] = ACTIONS(2745), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_struct] = ACTIONS(2745), + [anon_sym_union] = ACTIONS(2745), + [anon_sym_pub] = ACTIONS(2745), + [anon_sym_mut] = ACTIONS(2745), + [anon_sym_enum] = ACTIONS(2745), + [anon_sym_interface] = ACTIONS(2745), + [anon_sym_QMARK] = ACTIONS(2745), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_go] = ACTIONS(2745), + [anon_sym_spawn] = ACTIONS(2745), + [anon_sym_json_DOTdecode] = ACTIONS(2745), + [anon_sym_LBRACK2] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_CARET] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2745), + [anon_sym_LT_DASH] = ACTIONS(2745), + [sym_none] = ACTIONS(2745), + [sym_true] = ACTIONS(2745), + [sym_false] = ACTIONS(2745), + [sym_nil] = ACTIONS(2745), + [anon_sym_if] = ACTIONS(2745), + [anon_sym_DOLLARif] = ACTIONS(2745), + [anon_sym_match] = ACTIONS(2745), + [anon_sym_select] = ACTIONS(2745), + [anon_sym_lock] = ACTIONS(2745), + [anon_sym_rlock] = ACTIONS(2745), + [anon_sym_unsafe] = ACTIONS(2745), + [anon_sym_sql] = ACTIONS(2745), + [sym_int_literal] = ACTIONS(2745), + [sym_float_literal] = ACTIONS(2745), + [sym_rune_literal] = ACTIONS(2745), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2745), + [anon_sym_c_SQUOTE] = ACTIONS(2745), + [anon_sym_c_DQUOTE] = ACTIONS(2745), + [anon_sym_r_SQUOTE] = ACTIONS(2745), + [anon_sym_r_DQUOTE] = ACTIONS(2745), + [sym_pseudo_compile_time_identifier] = ACTIONS(2745), + [anon_sym_shared] = ACTIONS(2745), + [aux_sym_sum_type_token1] = ACTIONS(2745), + [anon_sym_PIPE2] = ACTIONS(2743), + [anon_sym_map_LBRACK] = ACTIONS(2745), + [anon_sym_chan] = ACTIONS(2745), + [anon_sym_thread] = ACTIONS(2745), + [anon_sym_atomic] = ACTIONS(2745), + [anon_sym_assert] = ACTIONS(2745), + [anon_sym_defer] = ACTIONS(2745), + [anon_sym_goto] = ACTIONS(2745), + [anon_sym_break] = ACTIONS(2745), + [anon_sym_continue] = ACTIONS(2745), + [anon_sym_return] = ACTIONS(2745), + [anon_sym_DOLLARfor] = ACTIONS(2745), + [anon_sym_for] = ACTIONS(2745), + [anon_sym_POUND] = ACTIONS(2745), + [anon_sym_asm] = ACTIONS(2745), + [anon_sym_AT_LBRACK] = ACTIONS(2745), + }, + [1422] = { + [sym_line_comment] = STATE(1422), + [sym_block_comment] = STATE(1422), + [ts_builtin_sym_end] = ACTIONS(2959), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LF] = ACTIONS(2961), + [anon_sym_CR] = ACTIONS(2961), + [anon_sym_CR_LF] = ACTIONS(2961), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2961), + [anon_sym_const] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2961), + [anon_sym___global] = ACTIONS(2961), + [anon_sym_type] = ACTIONS(2961), + [anon_sym_fn] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2961), + [anon_sym_struct] = ACTIONS(2961), + [anon_sym_union] = ACTIONS(2961), + [anon_sym_pub] = ACTIONS(2961), + [anon_sym_mut] = ACTIONS(2961), + [anon_sym_enum] = ACTIONS(2961), + [anon_sym_interface] = ACTIONS(2961), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_BANG] = ACTIONS(2961), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2961), + [anon_sym_json_DOTdecode] = ACTIONS(2961), + [anon_sym_LBRACK2] = ACTIONS(2961), + [anon_sym_TILDE] = ACTIONS(2961), + [anon_sym_CARET] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2961), + [sym_none] = ACTIONS(2961), + [sym_true] = ACTIONS(2961), + [sym_false] = ACTIONS(2961), + [sym_nil] = ACTIONS(2961), + [anon_sym_if] = ACTIONS(2961), + [anon_sym_DOLLARif] = ACTIONS(2961), + [anon_sym_match] = ACTIONS(2961), + [anon_sym_select] = ACTIONS(2961), + [anon_sym_lock] = ACTIONS(2961), + [anon_sym_rlock] = ACTIONS(2961), + [anon_sym_unsafe] = ACTIONS(2961), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2961), + [sym_float_literal] = ACTIONS(2961), + [sym_rune_literal] = ACTIONS(2961), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_DQUOTE] = ACTIONS(2961), + [anon_sym_c_SQUOTE] = ACTIONS(2961), + [anon_sym_c_DQUOTE] = ACTIONS(2961), + [anon_sym_r_SQUOTE] = ACTIONS(2961), + [anon_sym_r_DQUOTE] = ACTIONS(2961), + [sym_pseudo_compile_time_identifier] = ACTIONS(2961), + [anon_sym_shared] = ACTIONS(2961), + [aux_sym_sum_type_token1] = ACTIONS(2961), + [anon_sym_PIPE2] = ACTIONS(2959), + [anon_sym_map_LBRACK] = ACTIONS(2961), + [anon_sym_chan] = ACTIONS(2961), + [anon_sym_thread] = ACTIONS(2961), + [anon_sym_atomic] = ACTIONS(2961), + [anon_sym_assert] = ACTIONS(2961), + [anon_sym_defer] = ACTIONS(2961), + [anon_sym_goto] = ACTIONS(2961), + [anon_sym_break] = ACTIONS(2961), + [anon_sym_continue] = ACTIONS(2961), + [anon_sym_return] = ACTIONS(2961), + [anon_sym_DOLLARfor] = ACTIONS(2961), + [anon_sym_for] = ACTIONS(2961), + [anon_sym_POUND] = ACTIONS(2961), + [anon_sym_asm] = ACTIONS(2961), + [anon_sym_AT_LBRACK] = ACTIONS(2961), + }, + [1423] = { + [sym_line_comment] = STATE(1423), + [sym_block_comment] = STATE(1423), + [ts_builtin_sym_end] = ACTIONS(2637), + [sym_identifier] = ACTIONS(2639), + [anon_sym_LF] = ACTIONS(2639), + [anon_sym_CR] = ACTIONS(2639), + [anon_sym_CR_LF] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2639), + [anon_sym___global] = ACTIONS(2639), + [anon_sym_type] = ACTIONS(2639), + [anon_sym_fn] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_union] = ACTIONS(2639), + [anon_sym_pub] = ACTIONS(2639), + [anon_sym_mut] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), + [anon_sym_interface] = ACTIONS(2639), + [anon_sym_QMARK] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_go] = ACTIONS(2639), + [anon_sym_spawn] = ACTIONS(2639), + [anon_sym_json_DOTdecode] = ACTIONS(2639), + [anon_sym_LBRACK2] = ACTIONS(2639), + [anon_sym_TILDE] = ACTIONS(2639), + [anon_sym_CARET] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_LT_DASH] = ACTIONS(2639), + [sym_none] = ACTIONS(2639), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [sym_nil] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_DOLLARif] = ACTIONS(2639), + [anon_sym_match] = ACTIONS(2639), + [anon_sym_select] = ACTIONS(2639), + [anon_sym_lock] = ACTIONS(2639), + [anon_sym_rlock] = ACTIONS(2639), + [anon_sym_unsafe] = ACTIONS(2639), + [anon_sym_sql] = ACTIONS(2639), + [sym_int_literal] = ACTIONS(2639), + [sym_float_literal] = ACTIONS(2639), + [sym_rune_literal] = ACTIONS(2639), + [anon_sym_SQUOTE] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2639), + [anon_sym_c_SQUOTE] = ACTIONS(2639), + [anon_sym_c_DQUOTE] = ACTIONS(2639), + [anon_sym_r_SQUOTE] = ACTIONS(2639), + [anon_sym_r_DQUOTE] = ACTIONS(2639), + [sym_pseudo_compile_time_identifier] = ACTIONS(2639), + [anon_sym_shared] = ACTIONS(2639), + [aux_sym_sum_type_token1] = ACTIONS(2639), + [anon_sym_PIPE2] = ACTIONS(2637), + [anon_sym_map_LBRACK] = ACTIONS(2639), + [anon_sym_chan] = ACTIONS(2639), + [anon_sym_thread] = ACTIONS(2639), + [anon_sym_atomic] = ACTIONS(2639), + [anon_sym_assert] = ACTIONS(2639), + [anon_sym_defer] = ACTIONS(2639), + [anon_sym_goto] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_DOLLARfor] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_POUND] = ACTIONS(2639), + [anon_sym_asm] = ACTIONS(2639), + [anon_sym_AT_LBRACK] = ACTIONS(2639), + }, + [1424] = { + [sym_line_comment] = STATE(1424), + [sym_block_comment] = STATE(1424), + [ts_builtin_sym_end] = ACTIONS(3040), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LF] = ACTIONS(3042), + [anon_sym_CR] = ACTIONS(3042), + [anon_sym_CR_LF] = ACTIONS(3042), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_const] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym___global] = ACTIONS(3042), + [anon_sym_type] = ACTIONS(3042), + [anon_sym_fn] = ACTIONS(3042), + [anon_sym_PLUS] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_struct] = ACTIONS(3042), + [anon_sym_union] = ACTIONS(3042), + [anon_sym_pub] = ACTIONS(3042), + [anon_sym_mut] = ACTIONS(3042), + [anon_sym_enum] = ACTIONS(3042), + [anon_sym_interface] = ACTIONS(3042), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(3042), + [anon_sym_go] = ACTIONS(3042), + [anon_sym_spawn] = ACTIONS(3042), + [anon_sym_json_DOTdecode] = ACTIONS(3042), + [anon_sym_LBRACK2] = ACTIONS(3042), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_CARET] = ACTIONS(3042), + [anon_sym_AMP] = ACTIONS(3042), + [anon_sym_LT_DASH] = ACTIONS(3042), + [sym_none] = ACTIONS(3042), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_nil] = ACTIONS(3042), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_DOLLARif] = ACTIONS(3042), + [anon_sym_match] = ACTIONS(3042), + [anon_sym_select] = ACTIONS(3042), + [anon_sym_lock] = ACTIONS(3042), + [anon_sym_rlock] = ACTIONS(3042), + [anon_sym_unsafe] = ACTIONS(3042), + [anon_sym_sql] = ACTIONS(3042), + [sym_int_literal] = ACTIONS(3042), + [sym_float_literal] = ACTIONS(3042), + [sym_rune_literal] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3042), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_c_SQUOTE] = ACTIONS(3042), + [anon_sym_c_DQUOTE] = ACTIONS(3042), + [anon_sym_r_SQUOTE] = ACTIONS(3042), + [anon_sym_r_DQUOTE] = ACTIONS(3042), + [sym_pseudo_compile_time_identifier] = ACTIONS(3042), + [anon_sym_shared] = ACTIONS(3042), + [aux_sym_sum_type_token1] = ACTIONS(3042), + [anon_sym_PIPE2] = ACTIONS(3040), + [anon_sym_map_LBRACK] = ACTIONS(3042), + [anon_sym_chan] = ACTIONS(3042), + [anon_sym_thread] = ACTIONS(3042), + [anon_sym_atomic] = ACTIONS(3042), + [anon_sym_assert] = ACTIONS(3042), + [anon_sym_defer] = ACTIONS(3042), + [anon_sym_goto] = ACTIONS(3042), + [anon_sym_break] = ACTIONS(3042), + [anon_sym_continue] = ACTIONS(3042), + [anon_sym_return] = ACTIONS(3042), + [anon_sym_DOLLARfor] = ACTIONS(3042), + [anon_sym_for] = ACTIONS(3042), + [anon_sym_POUND] = ACTIONS(3042), + [anon_sym_asm] = ACTIONS(3042), + [anon_sym_AT_LBRACK] = ACTIONS(3042), + }, + [1425] = { + [sym_line_comment] = STATE(1425), + [sym_block_comment] = STATE(1425), + [ts_builtin_sym_end] = ACTIONS(3036), + [sym_identifier] = ACTIONS(3038), + [anon_sym_LF] = ACTIONS(3038), + [anon_sym_CR] = ACTIONS(3038), + [anon_sym_CR_LF] = ACTIONS(3038), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3038), + [anon_sym_LBRACE] = ACTIONS(3038), + [anon_sym_const] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym___global] = ACTIONS(3038), + [anon_sym_type] = ACTIONS(3038), + [anon_sym_fn] = ACTIONS(3038), + [anon_sym_PLUS] = ACTIONS(3038), + [anon_sym_DASH] = ACTIONS(3038), + [anon_sym_STAR] = ACTIONS(3038), + [anon_sym_struct] = ACTIONS(3038), + [anon_sym_union] = ACTIONS(3038), + [anon_sym_pub] = ACTIONS(3038), + [anon_sym_mut] = ACTIONS(3038), + [anon_sym_enum] = ACTIONS(3038), + [anon_sym_interface] = ACTIONS(3038), + [anon_sym_QMARK] = ACTIONS(3038), + [anon_sym_BANG] = ACTIONS(3038), + [anon_sym_go] = ACTIONS(3038), + [anon_sym_spawn] = ACTIONS(3038), + [anon_sym_json_DOTdecode] = ACTIONS(3038), + [anon_sym_LBRACK2] = ACTIONS(3038), + [anon_sym_TILDE] = ACTIONS(3038), + [anon_sym_CARET] = ACTIONS(3038), + [anon_sym_AMP] = ACTIONS(3038), + [anon_sym_LT_DASH] = ACTIONS(3038), + [sym_none] = ACTIONS(3038), + [sym_true] = ACTIONS(3038), + [sym_false] = ACTIONS(3038), + [sym_nil] = ACTIONS(3038), + [anon_sym_if] = ACTIONS(3038), + [anon_sym_DOLLARif] = ACTIONS(3038), + [anon_sym_match] = ACTIONS(3038), + [anon_sym_select] = ACTIONS(3038), + [anon_sym_lock] = ACTIONS(3038), + [anon_sym_rlock] = ACTIONS(3038), + [anon_sym_unsafe] = ACTIONS(3038), + [anon_sym_sql] = ACTIONS(3038), + [sym_int_literal] = ACTIONS(3038), + [sym_float_literal] = ACTIONS(3038), + [sym_rune_literal] = ACTIONS(3038), + [anon_sym_SQUOTE] = ACTIONS(3038), + [anon_sym_DQUOTE] = ACTIONS(3038), + [anon_sym_c_SQUOTE] = ACTIONS(3038), + [anon_sym_c_DQUOTE] = ACTIONS(3038), + [anon_sym_r_SQUOTE] = ACTIONS(3038), + [anon_sym_r_DQUOTE] = ACTIONS(3038), + [sym_pseudo_compile_time_identifier] = ACTIONS(3038), + [anon_sym_shared] = ACTIONS(3038), + [aux_sym_sum_type_token1] = ACTIONS(3038), + [anon_sym_PIPE2] = ACTIONS(3036), + [anon_sym_map_LBRACK] = ACTIONS(3038), + [anon_sym_chan] = ACTIONS(3038), + [anon_sym_thread] = ACTIONS(3038), + [anon_sym_atomic] = ACTIONS(3038), + [anon_sym_assert] = ACTIONS(3038), + [anon_sym_defer] = ACTIONS(3038), + [anon_sym_goto] = ACTIONS(3038), + [anon_sym_break] = ACTIONS(3038), + [anon_sym_continue] = ACTIONS(3038), + [anon_sym_return] = ACTIONS(3038), + [anon_sym_DOLLARfor] = ACTIONS(3038), + [anon_sym_for] = ACTIONS(3038), + [anon_sym_POUND] = ACTIONS(3038), + [anon_sym_asm] = ACTIONS(3038), + [anon_sym_AT_LBRACK] = ACTIONS(3038), + }, + [1426] = { + [sym_line_comment] = STATE(1426), + [sym_block_comment] = STATE(1426), + [ts_builtin_sym_end] = ACTIONS(4025), + [sym_identifier] = ACTIONS(4027), + [anon_sym_LF] = ACTIONS(4027), + [anon_sym_CR] = ACTIONS(4027), + [anon_sym_CR_LF] = ACTIONS(4027), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4027), + [anon_sym_LBRACE] = ACTIONS(4027), + [anon_sym_const] = ACTIONS(4027), + [anon_sym_LPAREN] = ACTIONS(4027), + [anon_sym___global] = ACTIONS(4027), + [anon_sym_type] = ACTIONS(4027), + [anon_sym_fn] = ACTIONS(4027), + [anon_sym_PLUS] = ACTIONS(4027), + [anon_sym_DASH] = ACTIONS(4027), + [anon_sym_STAR] = ACTIONS(4027), + [anon_sym_struct] = ACTIONS(4027), + [anon_sym_union] = ACTIONS(4027), + [anon_sym_pub] = ACTIONS(4027), + [anon_sym_mut] = ACTIONS(4027), + [anon_sym_enum] = ACTIONS(4027), + [anon_sym_interface] = ACTIONS(4027), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_BANG] = ACTIONS(4027), + [anon_sym_go] = ACTIONS(4027), + [anon_sym_spawn] = ACTIONS(4027), + [anon_sym_json_DOTdecode] = ACTIONS(4027), + [anon_sym_LBRACK2] = ACTIONS(4027), + [anon_sym_TILDE] = ACTIONS(4027), + [anon_sym_CARET] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4027), + [anon_sym_LT_DASH] = ACTIONS(4027), + [sym_none] = ACTIONS(4027), + [sym_true] = ACTIONS(4027), + [sym_false] = ACTIONS(4027), + [sym_nil] = ACTIONS(4027), + [anon_sym_if] = ACTIONS(4027), + [anon_sym_DOLLARif] = ACTIONS(4027), + [anon_sym_match] = ACTIONS(4027), + [anon_sym_select] = ACTIONS(4027), + [anon_sym_lock] = ACTIONS(4027), + [anon_sym_rlock] = ACTIONS(4027), + [anon_sym_unsafe] = ACTIONS(4027), + [anon_sym_sql] = ACTIONS(4027), + [sym_int_literal] = ACTIONS(4027), + [sym_float_literal] = ACTIONS(4027), + [sym_rune_literal] = ACTIONS(4027), + [anon_sym_SQUOTE] = ACTIONS(4027), + [anon_sym_DQUOTE] = ACTIONS(4027), + [anon_sym_c_SQUOTE] = ACTIONS(4027), + [anon_sym_c_DQUOTE] = ACTIONS(4027), + [anon_sym_r_SQUOTE] = ACTIONS(4027), + [anon_sym_r_DQUOTE] = ACTIONS(4027), + [sym_pseudo_compile_time_identifier] = ACTIONS(4027), + [anon_sym_shared] = ACTIONS(4027), + [aux_sym_sum_type_token1] = ACTIONS(4027), + [anon_sym_PIPE2] = ACTIONS(4025), + [anon_sym_map_LBRACK] = ACTIONS(4027), + [anon_sym_chan] = ACTIONS(4027), + [anon_sym_thread] = ACTIONS(4027), + [anon_sym_atomic] = ACTIONS(4027), + [anon_sym_assert] = ACTIONS(4027), + [anon_sym_defer] = ACTIONS(4027), + [anon_sym_goto] = ACTIONS(4027), + [anon_sym_break] = ACTIONS(4027), + [anon_sym_continue] = ACTIONS(4027), + [anon_sym_return] = ACTIONS(4027), + [anon_sym_DOLLARfor] = ACTIONS(4027), + [anon_sym_for] = ACTIONS(4027), + [anon_sym_POUND] = ACTIONS(4027), + [anon_sym_asm] = ACTIONS(4027), + [anon_sym_AT_LBRACK] = ACTIONS(4027), + }, + [1427] = { + [sym_line_comment] = STATE(1427), + [sym_block_comment] = STATE(1427), + [ts_builtin_sym_end] = ACTIONS(2687), + [sym_identifier] = ACTIONS(2689), + [anon_sym_LF] = ACTIONS(2689), + [anon_sym_CR] = ACTIONS(2689), + [anon_sym_CR_LF] = ACTIONS(2689), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2689), + [anon_sym_const] = ACTIONS(2689), + [anon_sym_LPAREN] = ACTIONS(2689), + [anon_sym___global] = ACTIONS(2689), + [anon_sym_type] = ACTIONS(2689), + [anon_sym_fn] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(2689), + [anon_sym_union] = ACTIONS(2689), + [anon_sym_pub] = ACTIONS(2689), + [anon_sym_mut] = ACTIONS(2689), + [anon_sym_enum] = ACTIONS(2689), + [anon_sym_interface] = ACTIONS(2689), + [anon_sym_QMARK] = ACTIONS(2689), + [anon_sym_BANG] = ACTIONS(2689), + [anon_sym_go] = ACTIONS(2689), + [anon_sym_spawn] = ACTIONS(2689), + [anon_sym_json_DOTdecode] = ACTIONS(2689), + [anon_sym_LBRACK2] = ACTIONS(2689), + [anon_sym_TILDE] = ACTIONS(2689), + [anon_sym_CARET] = ACTIONS(2689), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_LT_DASH] = ACTIONS(2689), + [sym_none] = ACTIONS(2689), + [sym_true] = ACTIONS(2689), + [sym_false] = ACTIONS(2689), + [sym_nil] = ACTIONS(2689), + [anon_sym_if] = ACTIONS(2689), + [anon_sym_DOLLARif] = ACTIONS(2689), + [anon_sym_match] = ACTIONS(2689), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2689), + [anon_sym_rlock] = ACTIONS(2689), + [anon_sym_unsafe] = ACTIONS(2689), + [anon_sym_sql] = ACTIONS(2689), + [sym_int_literal] = ACTIONS(2689), + [sym_float_literal] = ACTIONS(2689), + [sym_rune_literal] = ACTIONS(2689), + [anon_sym_SQUOTE] = ACTIONS(2689), + [anon_sym_DQUOTE] = ACTIONS(2689), + [anon_sym_c_SQUOTE] = ACTIONS(2689), + [anon_sym_c_DQUOTE] = ACTIONS(2689), + [anon_sym_r_SQUOTE] = ACTIONS(2689), + [anon_sym_r_DQUOTE] = ACTIONS(2689), + [sym_pseudo_compile_time_identifier] = ACTIONS(2689), + [anon_sym_shared] = ACTIONS(2689), + [aux_sym_sum_type_token1] = ACTIONS(2689), + [anon_sym_PIPE2] = ACTIONS(2687), + [anon_sym_map_LBRACK] = ACTIONS(2689), + [anon_sym_chan] = ACTIONS(2689), + [anon_sym_thread] = ACTIONS(2689), + [anon_sym_atomic] = ACTIONS(2689), + [anon_sym_assert] = ACTIONS(2689), + [anon_sym_defer] = ACTIONS(2689), + [anon_sym_goto] = ACTIONS(2689), + [anon_sym_break] = ACTIONS(2689), + [anon_sym_continue] = ACTIONS(2689), + [anon_sym_return] = ACTIONS(2689), + [anon_sym_DOLLARfor] = ACTIONS(2689), + [anon_sym_for] = ACTIONS(2689), + [anon_sym_POUND] = ACTIONS(2689), + [anon_sym_asm] = ACTIONS(2689), + [anon_sym_AT_LBRACK] = ACTIONS(2689), + }, + [1428] = { + [sym_line_comment] = STATE(1428), + [sym_block_comment] = STATE(1428), + [ts_builtin_sym_end] = ACTIONS(3020), + [sym_identifier] = ACTIONS(3022), + [anon_sym_LF] = ACTIONS(3022), + [anon_sym_CR] = ACTIONS(3022), + [anon_sym_CR_LF] = ACTIONS(3022), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3022), + [anon_sym_const] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym___global] = ACTIONS(3022), + [anon_sym_type] = ACTIONS(3022), + [anon_sym_fn] = ACTIONS(3022), + [anon_sym_PLUS] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(3022), + [anon_sym_struct] = ACTIONS(3022), + [anon_sym_union] = ACTIONS(3022), + [anon_sym_pub] = ACTIONS(3022), + [anon_sym_mut] = ACTIONS(3022), + [anon_sym_enum] = ACTIONS(3022), + [anon_sym_interface] = ACTIONS(3022), + [anon_sym_QMARK] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_go] = ACTIONS(3022), + [anon_sym_spawn] = ACTIONS(3022), + [anon_sym_json_DOTdecode] = ACTIONS(3022), + [anon_sym_LBRACK2] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3022), + [anon_sym_CARET] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3022), + [anon_sym_LT_DASH] = ACTIONS(3022), + [sym_none] = ACTIONS(3022), + [sym_true] = ACTIONS(3022), + [sym_false] = ACTIONS(3022), + [sym_nil] = ACTIONS(3022), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_DOLLARif] = ACTIONS(3022), + [anon_sym_match] = ACTIONS(3022), + [anon_sym_select] = ACTIONS(3022), + [anon_sym_lock] = ACTIONS(3022), + [anon_sym_rlock] = ACTIONS(3022), + [anon_sym_unsafe] = ACTIONS(3022), + [anon_sym_sql] = ACTIONS(3022), + [sym_int_literal] = ACTIONS(3022), + [sym_float_literal] = ACTIONS(3022), + [sym_rune_literal] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_c_SQUOTE] = ACTIONS(3022), + [anon_sym_c_DQUOTE] = ACTIONS(3022), + [anon_sym_r_SQUOTE] = ACTIONS(3022), + [anon_sym_r_DQUOTE] = ACTIONS(3022), + [sym_pseudo_compile_time_identifier] = ACTIONS(3022), + [anon_sym_shared] = ACTIONS(3022), + [aux_sym_sum_type_token1] = ACTIONS(3022), + [anon_sym_PIPE2] = ACTIONS(3020), + [anon_sym_map_LBRACK] = ACTIONS(3022), + [anon_sym_chan] = ACTIONS(3022), + [anon_sym_thread] = ACTIONS(3022), + [anon_sym_atomic] = ACTIONS(3022), + [anon_sym_assert] = ACTIONS(3022), + [anon_sym_defer] = ACTIONS(3022), + [anon_sym_goto] = ACTIONS(3022), + [anon_sym_break] = ACTIONS(3022), + [anon_sym_continue] = ACTIONS(3022), + [anon_sym_return] = ACTIONS(3022), + [anon_sym_DOLLARfor] = ACTIONS(3022), + [anon_sym_for] = ACTIONS(3022), + [anon_sym_POUND] = ACTIONS(3022), + [anon_sym_asm] = ACTIONS(3022), + [anon_sym_AT_LBRACK] = ACTIONS(3022), + }, + [1429] = { + [sym_line_comment] = STATE(1429), + [sym_block_comment] = STATE(1429), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2418), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(609), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(595), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_RBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(595), + [anon_sym_AMP_CARET] = ACTIONS(595), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_or] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(595), + [anon_sym_POUND_LBRACK] = ACTIONS(595), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(595), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(595), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(595), + }, + [1430] = { + [sym_line_comment] = STATE(1430), + [sym_block_comment] = STATE(1430), + [ts_builtin_sym_end] = ACTIONS(3068), + [sym_identifier] = ACTIONS(3070), + [anon_sym_LF] = ACTIONS(3070), + [anon_sym_CR] = ACTIONS(3070), + [anon_sym_CR_LF] = ACTIONS(3070), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(3070), + [anon_sym_const] = ACTIONS(3070), + [anon_sym_LPAREN] = ACTIONS(3070), + [anon_sym___global] = ACTIONS(3070), + [anon_sym_type] = ACTIONS(3070), + [anon_sym_fn] = ACTIONS(3070), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(3070), + [anon_sym_struct] = ACTIONS(3070), + [anon_sym_union] = ACTIONS(3070), + [anon_sym_pub] = ACTIONS(3070), + [anon_sym_mut] = ACTIONS(3070), + [anon_sym_enum] = ACTIONS(3070), + [anon_sym_interface] = ACTIONS(3070), + [anon_sym_QMARK] = ACTIONS(3070), + [anon_sym_BANG] = ACTIONS(3070), + [anon_sym_go] = ACTIONS(3070), + [anon_sym_spawn] = ACTIONS(3070), + [anon_sym_json_DOTdecode] = ACTIONS(3070), + [anon_sym_LBRACK2] = ACTIONS(3070), + [anon_sym_TILDE] = ACTIONS(3070), + [anon_sym_CARET] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT_DASH] = ACTIONS(3070), + [sym_none] = ACTIONS(3070), + [sym_true] = ACTIONS(3070), + [sym_false] = ACTIONS(3070), + [sym_nil] = ACTIONS(3070), + [anon_sym_if] = ACTIONS(3070), + [anon_sym_DOLLARif] = ACTIONS(3070), + [anon_sym_match] = ACTIONS(3070), + [anon_sym_select] = ACTIONS(3070), + [anon_sym_lock] = ACTIONS(3070), + [anon_sym_rlock] = ACTIONS(3070), + [anon_sym_unsafe] = ACTIONS(3070), + [anon_sym_sql] = ACTIONS(3070), + [sym_int_literal] = ACTIONS(3070), + [sym_float_literal] = ACTIONS(3070), + [sym_rune_literal] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_c_SQUOTE] = ACTIONS(3070), + [anon_sym_c_DQUOTE] = ACTIONS(3070), + [anon_sym_r_SQUOTE] = ACTIONS(3070), + [anon_sym_r_DQUOTE] = ACTIONS(3070), + [sym_pseudo_compile_time_identifier] = ACTIONS(3070), + [anon_sym_shared] = ACTIONS(3070), + [aux_sym_sum_type_token1] = ACTIONS(3070), + [anon_sym_PIPE2] = ACTIONS(3068), + [anon_sym_map_LBRACK] = ACTIONS(3070), + [anon_sym_chan] = ACTIONS(3070), + [anon_sym_thread] = ACTIONS(3070), + [anon_sym_atomic] = ACTIONS(3070), + [anon_sym_assert] = ACTIONS(3070), + [anon_sym_defer] = ACTIONS(3070), + [anon_sym_goto] = ACTIONS(3070), + [anon_sym_break] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(3070), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_DOLLARfor] = ACTIONS(3070), + [anon_sym_for] = ACTIONS(3070), + [anon_sym_POUND] = ACTIONS(3070), + [anon_sym_asm] = ACTIONS(3070), + [anon_sym_AT_LBRACK] = ACTIONS(3070), + }, + [1431] = { + [sym_line_comment] = STATE(1431), + [sym_block_comment] = STATE(1431), + [ts_builtin_sym_end] = ACTIONS(3028), + [sym_identifier] = ACTIONS(3030), + [anon_sym_LF] = ACTIONS(3030), + [anon_sym_CR] = ACTIONS(3030), + [anon_sym_CR_LF] = ACTIONS(3030), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_const] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3030), + [anon_sym___global] = ACTIONS(3030), + [anon_sym_type] = ACTIONS(3030), + [anon_sym_fn] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_struct] = ACTIONS(3030), + [anon_sym_union] = ACTIONS(3030), + [anon_sym_pub] = ACTIONS(3030), + [anon_sym_mut] = ACTIONS(3030), + [anon_sym_enum] = ACTIONS(3030), + [anon_sym_interface] = ACTIONS(3030), + [anon_sym_QMARK] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_go] = ACTIONS(3030), + [anon_sym_spawn] = ACTIONS(3030), + [anon_sym_json_DOTdecode] = ACTIONS(3030), + [anon_sym_LBRACK2] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_CARET] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_LT_DASH] = ACTIONS(3030), + [sym_none] = ACTIONS(3030), + [sym_true] = ACTIONS(3030), + [sym_false] = ACTIONS(3030), + [sym_nil] = ACTIONS(3030), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_DOLLARif] = ACTIONS(3030), + [anon_sym_match] = ACTIONS(3030), + [anon_sym_select] = ACTIONS(3030), + [anon_sym_lock] = ACTIONS(3030), + [anon_sym_rlock] = ACTIONS(3030), + [anon_sym_unsafe] = ACTIONS(3030), + [anon_sym_sql] = ACTIONS(3030), + [sym_int_literal] = ACTIONS(3030), + [sym_float_literal] = ACTIONS(3030), + [sym_rune_literal] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [anon_sym_c_SQUOTE] = ACTIONS(3030), + [anon_sym_c_DQUOTE] = ACTIONS(3030), + [anon_sym_r_SQUOTE] = ACTIONS(3030), + [anon_sym_r_DQUOTE] = ACTIONS(3030), + [sym_pseudo_compile_time_identifier] = ACTIONS(3030), + [anon_sym_shared] = ACTIONS(3030), + [aux_sym_sum_type_token1] = ACTIONS(3030), + [anon_sym_PIPE2] = ACTIONS(3028), + [anon_sym_map_LBRACK] = ACTIONS(3030), + [anon_sym_chan] = ACTIONS(3030), + [anon_sym_thread] = ACTIONS(3030), + [anon_sym_atomic] = ACTIONS(3030), + [anon_sym_assert] = ACTIONS(3030), + [anon_sym_defer] = ACTIONS(3030), + [anon_sym_goto] = ACTIONS(3030), + [anon_sym_break] = ACTIONS(3030), + [anon_sym_continue] = ACTIONS(3030), + [anon_sym_return] = ACTIONS(3030), + [anon_sym_DOLLARfor] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3030), + [anon_sym_POUND] = ACTIONS(3030), + [anon_sym_asm] = ACTIONS(3030), + [anon_sym_AT_LBRACK] = ACTIONS(3030), + }, + [1432] = { + [sym_line_comment] = STATE(1432), + [sym_block_comment] = STATE(1432), + [ts_builtin_sym_end] = ACTIONS(3024), + [sym_identifier] = ACTIONS(3026), + [anon_sym_LF] = ACTIONS(3026), + [anon_sym_CR] = ACTIONS(3026), + [anon_sym_CR_LF] = ACTIONS(3026), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3026), + [anon_sym_LBRACE] = ACTIONS(3026), + [anon_sym_const] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3026), + [anon_sym___global] = ACTIONS(3026), + [anon_sym_type] = ACTIONS(3026), + [anon_sym_fn] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3026), + [anon_sym_union] = ACTIONS(3026), + [anon_sym_pub] = ACTIONS(3026), + [anon_sym_mut] = ACTIONS(3026), + [anon_sym_enum] = ACTIONS(3026), + [anon_sym_interface] = ACTIONS(3026), + [anon_sym_QMARK] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_go] = ACTIONS(3026), + [anon_sym_spawn] = ACTIONS(3026), + [anon_sym_json_DOTdecode] = ACTIONS(3026), + [anon_sym_LBRACK2] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3026), + [anon_sym_CARET] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_LT_DASH] = ACTIONS(3026), + [sym_none] = ACTIONS(3026), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_nil] = ACTIONS(3026), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_DOLLARif] = ACTIONS(3026), + [anon_sym_match] = ACTIONS(3026), + [anon_sym_select] = ACTIONS(3026), + [anon_sym_lock] = ACTIONS(3026), + [anon_sym_rlock] = ACTIONS(3026), + [anon_sym_unsafe] = ACTIONS(3026), + [anon_sym_sql] = ACTIONS(3026), + [sym_int_literal] = ACTIONS(3026), + [sym_float_literal] = ACTIONS(3026), + [sym_rune_literal] = ACTIONS(3026), + [anon_sym_SQUOTE] = ACTIONS(3026), + [anon_sym_DQUOTE] = ACTIONS(3026), + [anon_sym_c_SQUOTE] = ACTIONS(3026), + [anon_sym_c_DQUOTE] = ACTIONS(3026), + [anon_sym_r_SQUOTE] = ACTIONS(3026), + [anon_sym_r_DQUOTE] = ACTIONS(3026), + [sym_pseudo_compile_time_identifier] = ACTIONS(3026), + [anon_sym_shared] = ACTIONS(3026), + [aux_sym_sum_type_token1] = ACTIONS(3026), + [anon_sym_PIPE2] = ACTIONS(3024), + [anon_sym_map_LBRACK] = ACTIONS(3026), + [anon_sym_chan] = ACTIONS(3026), + [anon_sym_thread] = ACTIONS(3026), + [anon_sym_atomic] = ACTIONS(3026), + [anon_sym_assert] = ACTIONS(3026), + [anon_sym_defer] = ACTIONS(3026), + [anon_sym_goto] = ACTIONS(3026), + [anon_sym_break] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(3026), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_DOLLARfor] = ACTIONS(3026), + [anon_sym_for] = ACTIONS(3026), + [anon_sym_POUND] = ACTIONS(3026), + [anon_sym_asm] = ACTIONS(3026), + [anon_sym_AT_LBRACK] = ACTIONS(3026), + }, + [1433] = { + [sym_line_comment] = STATE(1433), + [sym_block_comment] = STATE(1433), + [ts_builtin_sym_end] = ACTIONS(2739), + [sym_identifier] = ACTIONS(2741), + [anon_sym_LF] = ACTIONS(2741), + [anon_sym_CR] = ACTIONS(2741), + [anon_sym_CR_LF] = ACTIONS(2741), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_const] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2741), + [anon_sym___global] = ACTIONS(2741), + [anon_sym_type] = ACTIONS(2741), + [anon_sym_fn] = ACTIONS(2741), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_STAR] = ACTIONS(2741), + [anon_sym_struct] = ACTIONS(2741), + [anon_sym_union] = ACTIONS(2741), + [anon_sym_pub] = ACTIONS(2741), + [anon_sym_mut] = ACTIONS(2741), + [anon_sym_enum] = ACTIONS(2741), + [anon_sym_interface] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(2741), + [anon_sym_BANG] = ACTIONS(2741), + [anon_sym_go] = ACTIONS(2741), + [anon_sym_spawn] = ACTIONS(2741), + [anon_sym_json_DOTdecode] = ACTIONS(2741), + [anon_sym_LBRACK2] = ACTIONS(2741), + [anon_sym_TILDE] = ACTIONS(2741), + [anon_sym_CARET] = ACTIONS(2741), + [anon_sym_AMP] = ACTIONS(2741), + [anon_sym_LT_DASH] = ACTIONS(2741), + [sym_none] = ACTIONS(2741), + [sym_true] = ACTIONS(2741), + [sym_false] = ACTIONS(2741), + [sym_nil] = ACTIONS(2741), + [anon_sym_if] = ACTIONS(2741), + [anon_sym_DOLLARif] = ACTIONS(2741), + [anon_sym_match] = ACTIONS(2741), + [anon_sym_select] = ACTIONS(2741), + [anon_sym_lock] = ACTIONS(2741), + [anon_sym_rlock] = ACTIONS(2741), + [anon_sym_unsafe] = ACTIONS(2741), + [anon_sym_sql] = ACTIONS(2741), + [sym_int_literal] = ACTIONS(2741), + [sym_float_literal] = ACTIONS(2741), + [sym_rune_literal] = ACTIONS(2741), + [anon_sym_SQUOTE] = ACTIONS(2741), + [anon_sym_DQUOTE] = ACTIONS(2741), + [anon_sym_c_SQUOTE] = ACTIONS(2741), + [anon_sym_c_DQUOTE] = ACTIONS(2741), + [anon_sym_r_SQUOTE] = ACTIONS(2741), + [anon_sym_r_DQUOTE] = ACTIONS(2741), + [sym_pseudo_compile_time_identifier] = ACTIONS(2741), + [anon_sym_shared] = ACTIONS(2741), + [aux_sym_sum_type_token1] = ACTIONS(2741), + [anon_sym_PIPE2] = ACTIONS(2739), + [anon_sym_map_LBRACK] = ACTIONS(2741), + [anon_sym_chan] = ACTIONS(2741), + [anon_sym_thread] = ACTIONS(2741), + [anon_sym_atomic] = ACTIONS(2741), + [anon_sym_assert] = ACTIONS(2741), + [anon_sym_defer] = ACTIONS(2741), + [anon_sym_goto] = ACTIONS(2741), + [anon_sym_break] = ACTIONS(2741), + [anon_sym_continue] = ACTIONS(2741), + [anon_sym_return] = ACTIONS(2741), + [anon_sym_DOLLARfor] = ACTIONS(2741), + [anon_sym_for] = ACTIONS(2741), + [anon_sym_POUND] = ACTIONS(2741), + [anon_sym_asm] = ACTIONS(2741), + [anon_sym_AT_LBRACK] = ACTIONS(2741), + }, + [1434] = { + [sym_line_comment] = STATE(1434), + [sym_block_comment] = STATE(1434), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2418), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_CR] = ACTIONS(597), + [anon_sym_CR_LF] = ACTIONS(597), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(601), + [anon_sym_COMMA] = ACTIONS(597), + [anon_sym_RBRACE] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(597), + [anon_sym_BANG_EQ] = ACTIONS(597), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(597), + [anon_sym_AMP_CARET] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(597), + [anon_sym_PIPE_PIPE] = ACTIONS(597), + [anon_sym_or] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(597), + [anon_sym_POUND_LBRACK] = ACTIONS(597), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(597), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(597), + [anon_sym_shared] = ACTIONS(627), [anon_sym_map_LBRACK] = ACTIONS(561), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [1410] = { - [sym_line_comment] = STATE(1410), - [sym_block_comment] = STATE(1410), - [aux_sym_strictly_expression_list_repeat1] = STATE(1410), - [ts_builtin_sym_end] = ACTIONS(3534), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LF] = ACTIONS(1759), - [anon_sym_CR] = ACTIONS(1759), - [anon_sym_CR_LF] = ACTIONS(1759), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1759), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_COMMA] = ACTIONS(4011), - [anon_sym_const] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1759), - [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_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), - [anon_sym_SQUOTE] = ACTIONS(1759), - [anon_sym_DQUOTE] = ACTIONS(1759), - [anon_sym_c_SQUOTE] = ACTIONS(1759), - [anon_sym_c_DQUOTE] = ACTIONS(1759), - [anon_sym_r_SQUOTE] = ACTIONS(1759), - [anon_sym_r_DQUOTE] = 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), - }, - [1411] = { - [sym_line_comment] = STATE(1411), - [sym_block_comment] = STATE(1411), - [ts_builtin_sym_end] = ACTIONS(2157), - [sym_identifier] = ACTIONS(2159), - [anon_sym_LF] = ACTIONS(2159), - [anon_sym_CR] = ACTIONS(2159), - [anon_sym_CR_LF] = ACTIONS(2159), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym___global] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_PIPE] = ACTIONS(2159), - [anon_sym_fn] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2159), - [anon_sym_union] = ACTIONS(2159), - [anon_sym_pub] = ACTIONS(2159), - [anon_sym_mut] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [anon_sym_interface] = ACTIONS(2159), - [anon_sym_QMARK] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(2159), - [anon_sym_spawn] = ACTIONS(2159), - [anon_sym_json_DOTdecode] = ACTIONS(2159), - [anon_sym_LBRACK2] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2159), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2159), - [sym_none] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_nil] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_DOLLARif] = ACTIONS(2159), - [anon_sym_match] = ACTIONS(2159), - [anon_sym_select] = ACTIONS(2159), - [anon_sym_lock] = ACTIONS(2159), - [anon_sym_rlock] = ACTIONS(2159), - [anon_sym_unsafe] = ACTIONS(2159), - [anon_sym_sql] = ACTIONS(2159), - [sym_int_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), - [sym_rune_literal] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_c_SQUOTE] = ACTIONS(2159), - [anon_sym_c_DQUOTE] = ACTIONS(2159), - [anon_sym_r_SQUOTE] = ACTIONS(2159), - [anon_sym_r_DQUOTE] = ACTIONS(2159), - [sym_pseudo_compile_time_identifier] = ACTIONS(2159), - [anon_sym_shared] = ACTIONS(2159), - [anon_sym_map_LBRACK] = ACTIONS(2159), - [anon_sym_chan] = ACTIONS(2159), - [anon_sym_thread] = ACTIONS(2159), - [anon_sym_atomic] = ACTIONS(2159), - [anon_sym_assert] = ACTIONS(2159), - [anon_sym_defer] = ACTIONS(2159), - [anon_sym_goto] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_DOLLARfor] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_POUND] = ACTIONS(2159), - [anon_sym_asm] = ACTIONS(2159), - [anon_sym_AT_LBRACK] = ACTIONS(2159), - }, - [1412] = { - [sym_line_comment] = STATE(1412), - [sym_block_comment] = STATE(1412), - [ts_builtin_sym_end] = ACTIONS(2153), - [sym_identifier] = ACTIONS(2155), - [anon_sym_LF] = ACTIONS(2155), - [anon_sym_CR] = ACTIONS(2155), - [anon_sym_CR_LF] = ACTIONS(2155), + [1435] = { + [sym_line_comment] = STATE(1435), + [sym_block_comment] = STATE(1435), + [ts_builtin_sym_end] = ACTIONS(2979), + [sym_identifier] = ACTIONS(2981), + [anon_sym_LF] = ACTIONS(2981), + [anon_sym_CR] = ACTIONS(2981), + [anon_sym_CR_LF] = ACTIONS(2981), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2155), - [anon_sym_const] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym___global] = ACTIONS(2155), - [anon_sym_type] = ACTIONS(2155), - [anon_sym_PIPE] = ACTIONS(2155), - [anon_sym_fn] = ACTIONS(2155), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2155), - [anon_sym_LBRACK] = ACTIONS(2153), - [anon_sym_struct] = ACTIONS(2155), - [anon_sym_union] = ACTIONS(2155), - [anon_sym_pub] = ACTIONS(2155), - [anon_sym_mut] = ACTIONS(2155), - [anon_sym_enum] = ACTIONS(2155), - [anon_sym_interface] = ACTIONS(2155), - [anon_sym_QMARK] = ACTIONS(2155), - [anon_sym_BANG] = ACTIONS(2155), - [anon_sym_go] = ACTIONS(2155), - [anon_sym_spawn] = ACTIONS(2155), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2155), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_CARET] = ACTIONS(2155), - [anon_sym_AMP] = ACTIONS(2155), - [anon_sym_LT_DASH] = ACTIONS(2155), - [sym_none] = ACTIONS(2155), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [sym_nil] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_DOLLARif] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2155), - [anon_sym_lock] = ACTIONS(2155), - [anon_sym_rlock] = ACTIONS(2155), - [anon_sym_unsafe] = ACTIONS(2155), - [anon_sym_sql] = ACTIONS(2155), - [sym_int_literal] = ACTIONS(2155), - [sym_float_literal] = ACTIONS(2155), - [sym_rune_literal] = ACTIONS(2155), - [anon_sym_SQUOTE] = ACTIONS(2155), - [anon_sym_DQUOTE] = ACTIONS(2155), - [anon_sym_c_SQUOTE] = ACTIONS(2155), - [anon_sym_c_DQUOTE] = ACTIONS(2155), - [anon_sym_r_SQUOTE] = ACTIONS(2155), - [anon_sym_r_DQUOTE] = ACTIONS(2155), - [sym_pseudo_compile_time_identifier] = ACTIONS(2155), - [anon_sym_shared] = ACTIONS(2155), - [anon_sym_map_LBRACK] = ACTIONS(2155), - [anon_sym_chan] = ACTIONS(2155), - [anon_sym_thread] = ACTIONS(2155), - [anon_sym_atomic] = ACTIONS(2155), - [anon_sym_assert] = ACTIONS(2155), - [anon_sym_defer] = ACTIONS(2155), - [anon_sym_goto] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_DOLLARfor] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_POUND] = ACTIONS(2155), - [anon_sym_asm] = ACTIONS(2155), - [anon_sym_AT_LBRACK] = ACTIONS(2155), + [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_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), + [anon_sym_SQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE] = ACTIONS(2981), + [anon_sym_c_SQUOTE] = ACTIONS(2981), + [anon_sym_c_DQUOTE] = ACTIONS(2981), + [anon_sym_r_SQUOTE] = ACTIONS(2981), + [anon_sym_r_DQUOTE] = ACTIONS(2981), + [sym_pseudo_compile_time_identifier] = ACTIONS(2981), + [anon_sym_shared] = ACTIONS(2981), + [aux_sym_sum_type_token1] = ACTIONS(2981), + [anon_sym_PIPE2] = ACTIONS(2979), + [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), }, - [1413] = { - [sym_line_comment] = STATE(1413), - [sym_block_comment] = STATE(1413), - [aux_sym_strictly_expression_list_repeat1] = STATE(1408), - [ts_builtin_sym_end] = ACTIONS(3488), - [sym_identifier] = ACTIONS(1721), - [anon_sym_LF] = ACTIONS(1721), - [anon_sym_CR] = ACTIONS(1721), - [anon_sym_CR_LF] = ACTIONS(1721), + [1436] = { + [sym_line_comment] = STATE(1436), + [sym_block_comment] = STATE(1436), + [ts_builtin_sym_end] = ACTIONS(3008), + [sym_identifier] = ACTIONS(3010), + [anon_sym_LF] = ACTIONS(3010), + [anon_sym_CR] = ACTIONS(3010), + [anon_sym_CR_LF] = ACTIONS(3010), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_COMMA] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym___global] = ACTIONS(1721), - [anon_sym_type] = ACTIONS(1721), - [anon_sym_fn] = ACTIONS(1721), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_STAR] = ACTIONS(1721), - [anon_sym_struct] = ACTIONS(1721), - [anon_sym_union] = ACTIONS(1721), - [anon_sym_pub] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_enum] = ACTIONS(1721), - [anon_sym_interface] = ACTIONS(1721), - [anon_sym_QMARK] = ACTIONS(1721), - [anon_sym_BANG] = ACTIONS(1721), - [anon_sym_go] = ACTIONS(1721), - [anon_sym_spawn] = ACTIONS(1721), - [anon_sym_json_DOTdecode] = ACTIONS(1721), - [anon_sym_LBRACK2] = ACTIONS(1721), - [anon_sym_TILDE] = ACTIONS(1721), - [anon_sym_CARET] = ACTIONS(1721), - [anon_sym_AMP] = ACTIONS(1721), - [anon_sym_LT_DASH] = ACTIONS(1721), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_DOLLARif] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_select] = ACTIONS(1721), - [anon_sym_lock] = ACTIONS(1721), - [anon_sym_rlock] = ACTIONS(1721), - [anon_sym_unsafe] = ACTIONS(1721), - [anon_sym_sql] = ACTIONS(1721), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(1721), - [sym_rune_literal] = ACTIONS(1721), - [anon_sym_SQUOTE] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [anon_sym_c_SQUOTE] = ACTIONS(1721), - [anon_sym_c_DQUOTE] = ACTIONS(1721), - [anon_sym_r_SQUOTE] = ACTIONS(1721), - [anon_sym_r_DQUOTE] = ACTIONS(1721), - [sym_pseudo_compile_time_identifier] = ACTIONS(1721), - [anon_sym_shared] = ACTIONS(1721), - [anon_sym_map_LBRACK] = ACTIONS(1721), - [anon_sym_chan] = ACTIONS(1721), - [anon_sym_thread] = ACTIONS(1721), - [anon_sym_atomic] = ACTIONS(1721), - [anon_sym_assert] = ACTIONS(1721), - [anon_sym_defer] = ACTIONS(1721), - [anon_sym_goto] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_DOLLARfor] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(1721), - [anon_sym_asm] = ACTIONS(1721), - [anon_sym_AT_LBRACK] = ACTIONS(1721), + [anon_sym_DOT] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3010), + [anon_sym_const] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3010), + [anon_sym___global] = ACTIONS(3010), + [anon_sym_type] = ACTIONS(3010), + [anon_sym_fn] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_struct] = ACTIONS(3010), + [anon_sym_union] = ACTIONS(3010), + [anon_sym_pub] = ACTIONS(3010), + [anon_sym_mut] = ACTIONS(3010), + [anon_sym_enum] = ACTIONS(3010), + [anon_sym_interface] = ACTIONS(3010), + [anon_sym_QMARK] = ACTIONS(3010), + [anon_sym_BANG] = ACTIONS(3010), + [anon_sym_go] = ACTIONS(3010), + [anon_sym_spawn] = ACTIONS(3010), + [anon_sym_json_DOTdecode] = ACTIONS(3010), + [anon_sym_LBRACK2] = ACTIONS(3010), + [anon_sym_TILDE] = ACTIONS(3010), + [anon_sym_CARET] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3010), + [anon_sym_LT_DASH] = ACTIONS(3010), + [sym_none] = ACTIONS(3010), + [sym_true] = ACTIONS(3010), + [sym_false] = ACTIONS(3010), + [sym_nil] = ACTIONS(3010), + [anon_sym_if] = ACTIONS(3010), + [anon_sym_DOLLARif] = ACTIONS(3010), + [anon_sym_match] = ACTIONS(3010), + [anon_sym_select] = ACTIONS(3010), + [anon_sym_lock] = ACTIONS(3010), + [anon_sym_rlock] = ACTIONS(3010), + [anon_sym_unsafe] = ACTIONS(3010), + [anon_sym_sql] = ACTIONS(3010), + [sym_int_literal] = ACTIONS(3010), + [sym_float_literal] = ACTIONS(3010), + [sym_rune_literal] = ACTIONS(3010), + [anon_sym_SQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE] = ACTIONS(3010), + [anon_sym_c_SQUOTE] = ACTIONS(3010), + [anon_sym_c_DQUOTE] = ACTIONS(3010), + [anon_sym_r_SQUOTE] = ACTIONS(3010), + [anon_sym_r_DQUOTE] = ACTIONS(3010), + [sym_pseudo_compile_time_identifier] = ACTIONS(3010), + [anon_sym_shared] = ACTIONS(3010), + [aux_sym_sum_type_token1] = ACTIONS(3010), + [anon_sym_PIPE2] = ACTIONS(3008), + [anon_sym_map_LBRACK] = ACTIONS(3010), + [anon_sym_chan] = ACTIONS(3010), + [anon_sym_thread] = ACTIONS(3010), + [anon_sym_atomic] = ACTIONS(3010), + [anon_sym_assert] = ACTIONS(3010), + [anon_sym_defer] = ACTIONS(3010), + [anon_sym_goto] = ACTIONS(3010), + [anon_sym_break] = ACTIONS(3010), + [anon_sym_continue] = ACTIONS(3010), + [anon_sym_return] = ACTIONS(3010), + [anon_sym_DOLLARfor] = ACTIONS(3010), + [anon_sym_for] = ACTIONS(3010), + [anon_sym_POUND] = ACTIONS(3010), + [anon_sym_asm] = ACTIONS(3010), + [anon_sym_AT_LBRACK] = ACTIONS(3010), }, - [1414] = { - [sym_line_comment] = STATE(1414), - [sym_block_comment] = STATE(1414), - [ts_builtin_sym_end] = ACTIONS(2157), - [sym_identifier] = ACTIONS(2159), - [anon_sym_LF] = ACTIONS(2159), - [anon_sym_CR] = ACTIONS(2159), - [anon_sym_CR_LF] = ACTIONS(2159), + [1437] = { + [sym_line_comment] = STATE(1437), + [sym_block_comment] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(2753), + [sym_identifier] = ACTIONS(2755), + [anon_sym_LF] = ACTIONS(2755), + [anon_sym_CR] = ACTIONS(2755), + [anon_sym_CR_LF] = ACTIONS(2755), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym___global] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_PIPE] = ACTIONS(2159), - [anon_sym_fn] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2159), - [anon_sym_union] = ACTIONS(2159), - [anon_sym_pub] = ACTIONS(2159), - [anon_sym_mut] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [anon_sym_interface] = ACTIONS(2159), - [anon_sym_QMARK] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(2159), - [anon_sym_spawn] = ACTIONS(2159), - [anon_sym_json_DOTdecode] = ACTIONS(2159), - [anon_sym_LBRACK2] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2159), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2159), - [sym_none] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_nil] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_DOLLARif] = ACTIONS(2159), - [anon_sym_match] = ACTIONS(2159), - [anon_sym_select] = ACTIONS(2159), - [anon_sym_lock] = ACTIONS(2159), - [anon_sym_rlock] = ACTIONS(2159), - [anon_sym_unsafe] = ACTIONS(2159), - [anon_sym_sql] = ACTIONS(2159), - [sym_int_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), - [sym_rune_literal] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_c_SQUOTE] = ACTIONS(2159), - [anon_sym_c_DQUOTE] = ACTIONS(2159), - [anon_sym_r_SQUOTE] = ACTIONS(2159), - [anon_sym_r_DQUOTE] = ACTIONS(2159), - [sym_pseudo_compile_time_identifier] = ACTIONS(2159), - [anon_sym_shared] = ACTIONS(2159), - [anon_sym_map_LBRACK] = ACTIONS(2159), - [anon_sym_chan] = ACTIONS(2159), - [anon_sym_thread] = ACTIONS(2159), - [anon_sym_atomic] = ACTIONS(2159), - [anon_sym_assert] = ACTIONS(2159), - [anon_sym_defer] = ACTIONS(2159), - [anon_sym_goto] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_DOLLARfor] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_POUND] = ACTIONS(2159), - [anon_sym_asm] = ACTIONS(2159), - [anon_sym_AT_LBRACK] = ACTIONS(2159), - }, - [1415] = { - [sym_line_comment] = STATE(1415), - [sym_block_comment] = STATE(1415), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2311), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(605), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(625), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_RPAREN] = ACTIONS(625), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(625), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(625), - [anon_sym_BANG_EQ] = ACTIONS(625), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_RBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_QMARK] = ACTIONS(627), - [anon_sym_BANG] = ACTIONS(627), - [anon_sym_LBRACK2] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(627), - [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(623), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(625), + [anon_sym_DOT] = ACTIONS(2755), + [anon_sym_LBRACE] = ACTIONS(2755), + [anon_sym_const] = ACTIONS(2755), + [anon_sym_LPAREN] = ACTIONS(2755), + [anon_sym___global] = ACTIONS(2755), + [anon_sym_type] = ACTIONS(2755), + [anon_sym_fn] = ACTIONS(2755), + [anon_sym_PLUS] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_struct] = ACTIONS(2755), + [anon_sym_union] = ACTIONS(2755), + [anon_sym_pub] = ACTIONS(2755), + [anon_sym_mut] = ACTIONS(2755), + [anon_sym_enum] = ACTIONS(2755), + [anon_sym_interface] = ACTIONS(2755), + [anon_sym_QMARK] = ACTIONS(2755), + [anon_sym_BANG] = ACTIONS(2755), + [anon_sym_go] = ACTIONS(2755), + [anon_sym_spawn] = ACTIONS(2755), + [anon_sym_json_DOTdecode] = ACTIONS(2755), + [anon_sym_LBRACK2] = ACTIONS(2755), + [anon_sym_TILDE] = ACTIONS(2755), + [anon_sym_CARET] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(2755), + [anon_sym_LT_DASH] = ACTIONS(2755), + [sym_none] = ACTIONS(2755), + [sym_true] = ACTIONS(2755), + [sym_false] = ACTIONS(2755), + [sym_nil] = ACTIONS(2755), + [anon_sym_if] = ACTIONS(2755), + [anon_sym_DOLLARif] = ACTIONS(2755), + [anon_sym_match] = ACTIONS(2755), + [anon_sym_select] = ACTIONS(2755), + [anon_sym_lock] = ACTIONS(2755), + [anon_sym_rlock] = ACTIONS(2755), + [anon_sym_unsafe] = ACTIONS(2755), + [anon_sym_sql] = ACTIONS(2755), + [sym_int_literal] = ACTIONS(2755), + [sym_float_literal] = ACTIONS(2755), + [sym_rune_literal] = ACTIONS(2755), + [anon_sym_SQUOTE] = ACTIONS(2755), + [anon_sym_DQUOTE] = ACTIONS(2755), + [anon_sym_c_SQUOTE] = ACTIONS(2755), + [anon_sym_c_DQUOTE] = ACTIONS(2755), + [anon_sym_r_SQUOTE] = ACTIONS(2755), + [anon_sym_r_DQUOTE] = ACTIONS(2755), + [sym_pseudo_compile_time_identifier] = ACTIONS(2755), + [anon_sym_shared] = ACTIONS(2755), + [aux_sym_sum_type_token1] = ACTIONS(2755), + [anon_sym_PIPE2] = ACTIONS(2753), + [anon_sym_map_LBRACK] = ACTIONS(2755), + [anon_sym_chan] = ACTIONS(2755), + [anon_sym_thread] = ACTIONS(2755), + [anon_sym_atomic] = ACTIONS(2755), + [anon_sym_assert] = ACTIONS(2755), + [anon_sym_defer] = ACTIONS(2755), + [anon_sym_goto] = ACTIONS(2755), + [anon_sym_break] = ACTIONS(2755), + [anon_sym_continue] = ACTIONS(2755), + [anon_sym_return] = ACTIONS(2755), + [anon_sym_DOLLARfor] = ACTIONS(2755), + [anon_sym_for] = ACTIONS(2755), + [anon_sym_POUND] = ACTIONS(2755), + [anon_sym_asm] = ACTIONS(2755), + [anon_sym_AT_LBRACK] = ACTIONS(2755), }, - [1416] = { - [sym_line_comment] = STATE(1416), - [sym_block_comment] = STATE(1416), - [aux_sym_strictly_expression_list_repeat1] = STATE(1410), - [ts_builtin_sym_end] = ACTIONS(4014), - [sym_identifier] = ACTIONS(4016), - [anon_sym_LF] = ACTIONS(4016), - [anon_sym_CR] = ACTIONS(4016), - [anon_sym_CR_LF] = ACTIONS(4016), + [1438] = { + [sym_line_comment] = STATE(1438), + [sym_block_comment] = STATE(1438), + [ts_builtin_sym_end] = ACTIONS(2777), + [sym_identifier] = ACTIONS(2779), + [anon_sym_LF] = ACTIONS(2779), + [anon_sym_CR] = ACTIONS(2779), + [anon_sym_CR_LF] = ACTIONS(2779), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4016), - [anon_sym_COMMA] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym___global] = ACTIONS(4016), - [anon_sym_type] = ACTIONS(4016), - [anon_sym_fn] = ACTIONS(4016), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4016), - [anon_sym_struct] = ACTIONS(4016), - [anon_sym_union] = ACTIONS(4016), - [anon_sym_pub] = ACTIONS(4016), - [anon_sym_mut] = ACTIONS(4016), - [anon_sym_enum] = ACTIONS(4016), - [anon_sym_interface] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_go] = ACTIONS(4016), - [anon_sym_spawn] = ACTIONS(4016), - [anon_sym_json_DOTdecode] = ACTIONS(4016), - [anon_sym_LBRACK2] = ACTIONS(4016), - [anon_sym_TILDE] = ACTIONS(4016), - [anon_sym_CARET] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_DASH] = ACTIONS(4016), - [sym_none] = ACTIONS(4016), - [sym_true] = ACTIONS(4016), - [sym_false] = ACTIONS(4016), - [sym_nil] = ACTIONS(4016), - [anon_sym_if] = ACTIONS(4016), - [anon_sym_DOLLARif] = ACTIONS(4016), - [anon_sym_match] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_lock] = ACTIONS(4016), - [anon_sym_rlock] = ACTIONS(4016), - [anon_sym_unsafe] = ACTIONS(4016), - [anon_sym_sql] = ACTIONS(4016), - [sym_int_literal] = ACTIONS(4016), - [sym_float_literal] = ACTIONS(4016), - [sym_rune_literal] = ACTIONS(4016), - [anon_sym_SQUOTE] = ACTIONS(4016), - [anon_sym_DQUOTE] = ACTIONS(4016), - [anon_sym_c_SQUOTE] = ACTIONS(4016), - [anon_sym_c_DQUOTE] = ACTIONS(4016), - [anon_sym_r_SQUOTE] = ACTIONS(4016), - [anon_sym_r_DQUOTE] = ACTIONS(4016), - [sym_pseudo_compile_time_identifier] = ACTIONS(4016), - [anon_sym_shared] = ACTIONS(4016), - [anon_sym_map_LBRACK] = ACTIONS(4016), - [anon_sym_chan] = ACTIONS(4016), - [anon_sym_thread] = ACTIONS(4016), - [anon_sym_atomic] = ACTIONS(4016), - [anon_sym_assert] = ACTIONS(4016), - [anon_sym_defer] = ACTIONS(4016), - [anon_sym_goto] = ACTIONS(4016), - [anon_sym_break] = ACTIONS(4016), - [anon_sym_continue] = ACTIONS(4016), - [anon_sym_return] = ACTIONS(4016), - [anon_sym_DOLLARfor] = ACTIONS(4016), - [anon_sym_for] = ACTIONS(4016), - [anon_sym_POUND] = ACTIONS(4016), - [anon_sym_asm] = ACTIONS(4016), - [anon_sym_AT_LBRACK] = ACTIONS(4016), + [anon_sym_DOT] = ACTIONS(2779), + [anon_sym_LBRACE] = ACTIONS(2779), + [anon_sym_const] = ACTIONS(2779), + [anon_sym_LPAREN] = ACTIONS(2779), + [anon_sym___global] = ACTIONS(2779), + [anon_sym_type] = ACTIONS(2779), + [anon_sym_fn] = ACTIONS(2779), + [anon_sym_PLUS] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_STAR] = ACTIONS(2779), + [anon_sym_struct] = ACTIONS(2779), + [anon_sym_union] = ACTIONS(2779), + [anon_sym_pub] = ACTIONS(2779), + [anon_sym_mut] = ACTIONS(2779), + [anon_sym_enum] = ACTIONS(2779), + [anon_sym_interface] = ACTIONS(2779), + [anon_sym_QMARK] = ACTIONS(2779), + [anon_sym_BANG] = ACTIONS(2779), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2779), + [anon_sym_json_DOTdecode] = ACTIONS(2779), + [anon_sym_LBRACK2] = ACTIONS(2779), + [anon_sym_TILDE] = ACTIONS(2779), + [anon_sym_CARET] = ACTIONS(2779), + [anon_sym_AMP] = ACTIONS(2779), + [anon_sym_LT_DASH] = ACTIONS(2779), + [sym_none] = ACTIONS(2779), + [sym_true] = ACTIONS(2779), + [sym_false] = ACTIONS(2779), + [sym_nil] = ACTIONS(2779), + [anon_sym_if] = ACTIONS(2779), + [anon_sym_DOLLARif] = ACTIONS(2779), + [anon_sym_match] = ACTIONS(2779), + [anon_sym_select] = ACTIONS(2779), + [anon_sym_lock] = ACTIONS(2779), + [anon_sym_rlock] = ACTIONS(2779), + [anon_sym_unsafe] = ACTIONS(2779), + [anon_sym_sql] = ACTIONS(2779), + [sym_int_literal] = ACTIONS(2779), + [sym_float_literal] = ACTIONS(2779), + [sym_rune_literal] = ACTIONS(2779), + [anon_sym_SQUOTE] = ACTIONS(2779), + [anon_sym_DQUOTE] = ACTIONS(2779), + [anon_sym_c_SQUOTE] = ACTIONS(2779), + [anon_sym_c_DQUOTE] = ACTIONS(2779), + [anon_sym_r_SQUOTE] = ACTIONS(2779), + [anon_sym_r_DQUOTE] = ACTIONS(2779), + [sym_pseudo_compile_time_identifier] = ACTIONS(2779), + [anon_sym_shared] = ACTIONS(2779), + [aux_sym_sum_type_token1] = ACTIONS(2779), + [anon_sym_PIPE2] = ACTIONS(2777), + [anon_sym_map_LBRACK] = ACTIONS(2779), + [anon_sym_chan] = ACTIONS(2779), + [anon_sym_thread] = ACTIONS(2779), + [anon_sym_atomic] = ACTIONS(2779), + [anon_sym_assert] = ACTIONS(2779), + [anon_sym_defer] = ACTIONS(2779), + [anon_sym_goto] = ACTIONS(2779), + [anon_sym_break] = ACTIONS(2779), + [anon_sym_continue] = ACTIONS(2779), + [anon_sym_return] = ACTIONS(2779), + [anon_sym_DOLLARfor] = ACTIONS(2779), + [anon_sym_for] = ACTIONS(2779), + [anon_sym_POUND] = ACTIONS(2779), + [anon_sym_asm] = ACTIONS(2779), + [anon_sym_AT_LBRACK] = ACTIONS(2779), }, - [1417] = { - [sym_line_comment] = STATE(1417), - [sym_block_comment] = STATE(1417), - [sym_block] = STATE(1512), - [ts_builtin_sym_end] = ACTIONS(4018), - [sym_identifier] = ACTIONS(4020), - [anon_sym_LF] = ACTIONS(4020), - [anon_sym_CR] = ACTIONS(4020), - [anon_sym_CR_LF] = ACTIONS(4020), + [1439] = { + [sym_line_comment] = STATE(1439), + [sym_block_comment] = STATE(1439), + [ts_builtin_sym_end] = ACTIONS(2987), + [sym_identifier] = ACTIONS(2989), + [anon_sym_LF] = ACTIONS(2989), + [anon_sym_CR] = ACTIONS(2989), + [anon_sym_CR_LF] = ACTIONS(2989), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4020), - [anon_sym_LBRACE] = ACTIONS(4022), - [anon_sym_const] = ACTIONS(4020), - [anon_sym_LPAREN] = ACTIONS(4020), - [anon_sym___global] = ACTIONS(4020), - [anon_sym_type] = ACTIONS(4020), - [anon_sym_fn] = ACTIONS(4020), - [anon_sym_PLUS] = ACTIONS(4020), - [anon_sym_DASH] = ACTIONS(4020), - [anon_sym_STAR] = ACTIONS(4020), - [anon_sym_struct] = ACTIONS(4020), - [anon_sym_union] = ACTIONS(4020), - [anon_sym_pub] = ACTIONS(4020), - [anon_sym_mut] = ACTIONS(4020), - [anon_sym_enum] = ACTIONS(4020), - [anon_sym_interface] = ACTIONS(4020), - [anon_sym_QMARK] = ACTIONS(4020), - [anon_sym_BANG] = ACTIONS(4020), - [anon_sym_go] = ACTIONS(4020), - [anon_sym_spawn] = ACTIONS(4020), - [anon_sym_json_DOTdecode] = ACTIONS(4020), - [anon_sym_LBRACK2] = ACTIONS(4020), - [anon_sym_TILDE] = ACTIONS(4020), - [anon_sym_CARET] = ACTIONS(4020), - [anon_sym_AMP] = ACTIONS(4020), - [anon_sym_LT_DASH] = ACTIONS(4020), - [sym_none] = ACTIONS(4020), - [sym_true] = ACTIONS(4020), - [sym_false] = ACTIONS(4020), - [sym_nil] = ACTIONS(4020), - [anon_sym_if] = ACTIONS(4020), - [anon_sym_DOLLARif] = ACTIONS(4020), - [anon_sym_match] = ACTIONS(4020), - [anon_sym_select] = ACTIONS(4020), - [anon_sym_lock] = ACTIONS(4020), - [anon_sym_rlock] = ACTIONS(4020), - [anon_sym_unsafe] = ACTIONS(4020), - [anon_sym_sql] = ACTIONS(4020), - [sym_int_literal] = ACTIONS(4020), - [sym_float_literal] = ACTIONS(4020), - [sym_rune_literal] = ACTIONS(4020), - [anon_sym_SQUOTE] = ACTIONS(4020), - [anon_sym_DQUOTE] = ACTIONS(4020), - [anon_sym_c_SQUOTE] = ACTIONS(4020), - [anon_sym_c_DQUOTE] = ACTIONS(4020), - [anon_sym_r_SQUOTE] = ACTIONS(4020), - [anon_sym_r_DQUOTE] = ACTIONS(4020), - [sym_pseudo_compile_time_identifier] = ACTIONS(4020), - [anon_sym_shared] = ACTIONS(4020), - [anon_sym_map_LBRACK] = ACTIONS(4020), - [anon_sym_chan] = ACTIONS(4020), - [anon_sym_thread] = ACTIONS(4020), - [anon_sym_atomic] = ACTIONS(4020), - [anon_sym_assert] = ACTIONS(4020), - [anon_sym_defer] = ACTIONS(4020), - [anon_sym_goto] = ACTIONS(4020), - [anon_sym_break] = ACTIONS(4020), - [anon_sym_continue] = ACTIONS(4020), - [anon_sym_return] = ACTIONS(4020), - [anon_sym_DOLLARfor] = ACTIONS(4020), - [anon_sym_for] = ACTIONS(4020), - [anon_sym_POUND] = ACTIONS(4020), - [anon_sym_asm] = ACTIONS(4020), - [anon_sym_AT_LBRACK] = ACTIONS(4020), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_const] = ACTIONS(2989), + [anon_sym_LPAREN] = ACTIONS(2989), + [anon_sym___global] = ACTIONS(2989), + [anon_sym_type] = ACTIONS(2989), + [anon_sym_fn] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2989), + [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_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), + [sym_none] = ACTIONS(2989), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [sym_nil] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_DOLLARif] = 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), + [anon_sym_SQUOTE] = ACTIONS(2989), + [anon_sym_DQUOTE] = ACTIONS(2989), + [anon_sym_c_SQUOTE] = ACTIONS(2989), + [anon_sym_c_DQUOTE] = ACTIONS(2989), + [anon_sym_r_SQUOTE] = ACTIONS(2989), + [anon_sym_r_DQUOTE] = ACTIONS(2989), + [sym_pseudo_compile_time_identifier] = ACTIONS(2989), + [anon_sym_shared] = ACTIONS(2989), + [aux_sym_sum_type_token1] = ACTIONS(2989), + [anon_sym_PIPE2] = ACTIONS(2987), + [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), }, - [1418] = { - [sym_line_comment] = STATE(1418), - [sym_block_comment] = STATE(1418), - [sym_block] = STATE(1546), - [ts_builtin_sym_end] = ACTIONS(4024), - [sym_identifier] = ACTIONS(4026), - [anon_sym_LF] = ACTIONS(4026), - [anon_sym_CR] = ACTIONS(4026), - [anon_sym_CR_LF] = ACTIONS(4026), + [1440] = { + [sym_line_comment] = STATE(1440), + [sym_block_comment] = STATE(1440), + [ts_builtin_sym_end] = ACTIONS(2963), + [sym_identifier] = ACTIONS(2965), + [anon_sym_LF] = ACTIONS(2965), + [anon_sym_CR] = ACTIONS(2965), + [anon_sym_CR_LF] = ACTIONS(2965), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4026), - [anon_sym_LBRACE] = ACTIONS(4022), - [anon_sym_const] = ACTIONS(4026), - [anon_sym_LPAREN] = ACTIONS(4026), - [anon_sym___global] = ACTIONS(4026), - [anon_sym_type] = ACTIONS(4026), - [anon_sym_fn] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4026), - [anon_sym_DASH] = ACTIONS(4026), - [anon_sym_STAR] = ACTIONS(4026), - [anon_sym_struct] = ACTIONS(4026), - [anon_sym_union] = ACTIONS(4026), - [anon_sym_pub] = ACTIONS(4026), - [anon_sym_mut] = ACTIONS(4026), - [anon_sym_enum] = ACTIONS(4026), - [anon_sym_interface] = ACTIONS(4026), - [anon_sym_QMARK] = ACTIONS(4026), - [anon_sym_BANG] = ACTIONS(4026), - [anon_sym_go] = ACTIONS(4026), - [anon_sym_spawn] = ACTIONS(4026), - [anon_sym_json_DOTdecode] = ACTIONS(4026), - [anon_sym_LBRACK2] = ACTIONS(4026), - [anon_sym_TILDE] = ACTIONS(4026), - [anon_sym_CARET] = ACTIONS(4026), - [anon_sym_AMP] = ACTIONS(4026), - [anon_sym_LT_DASH] = ACTIONS(4026), - [sym_none] = ACTIONS(4026), - [sym_true] = ACTIONS(4026), - [sym_false] = ACTIONS(4026), - [sym_nil] = ACTIONS(4026), - [anon_sym_if] = ACTIONS(4026), - [anon_sym_DOLLARif] = ACTIONS(4026), - [anon_sym_match] = ACTIONS(4026), - [anon_sym_select] = ACTIONS(4026), - [anon_sym_lock] = ACTIONS(4026), - [anon_sym_rlock] = ACTIONS(4026), - [anon_sym_unsafe] = ACTIONS(4026), - [anon_sym_sql] = ACTIONS(4026), - [sym_int_literal] = ACTIONS(4026), - [sym_float_literal] = ACTIONS(4026), - [sym_rune_literal] = ACTIONS(4026), - [anon_sym_SQUOTE] = ACTIONS(4026), - [anon_sym_DQUOTE] = ACTIONS(4026), - [anon_sym_c_SQUOTE] = ACTIONS(4026), - [anon_sym_c_DQUOTE] = ACTIONS(4026), - [anon_sym_r_SQUOTE] = ACTIONS(4026), - [anon_sym_r_DQUOTE] = ACTIONS(4026), - [sym_pseudo_compile_time_identifier] = ACTIONS(4026), - [anon_sym_shared] = ACTIONS(4026), - [anon_sym_map_LBRACK] = ACTIONS(4026), - [anon_sym_chan] = ACTIONS(4026), - [anon_sym_thread] = ACTIONS(4026), - [anon_sym_atomic] = ACTIONS(4026), - [anon_sym_assert] = ACTIONS(4026), - [anon_sym_defer] = ACTIONS(4026), - [anon_sym_goto] = ACTIONS(4026), - [anon_sym_break] = ACTIONS(4026), - [anon_sym_continue] = ACTIONS(4026), - [anon_sym_return] = ACTIONS(4026), - [anon_sym_DOLLARfor] = ACTIONS(4026), - [anon_sym_for] = ACTIONS(4026), - [anon_sym_POUND] = ACTIONS(4026), - [anon_sym_asm] = ACTIONS(4026), - [anon_sym_AT_LBRACK] = ACTIONS(4026), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_const] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym___global] = ACTIONS(2965), + [anon_sym_type] = ACTIONS(2965), + [anon_sym_fn] = ACTIONS(2965), + [anon_sym_PLUS] = ACTIONS(2965), + [anon_sym_DASH] = ACTIONS(2965), + [anon_sym_STAR] = ACTIONS(2965), + [anon_sym_struct] = ACTIONS(2965), + [anon_sym_union] = ACTIONS(2965), + [anon_sym_pub] = ACTIONS(2965), + [anon_sym_mut] = ACTIONS(2965), + [anon_sym_enum] = ACTIONS(2965), + [anon_sym_interface] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_BANG] = ACTIONS(2965), + [anon_sym_go] = ACTIONS(2965), + [anon_sym_spawn] = ACTIONS(2965), + [anon_sym_json_DOTdecode] = ACTIONS(2965), + [anon_sym_LBRACK2] = ACTIONS(2965), + [anon_sym_TILDE] = ACTIONS(2965), + [anon_sym_CARET] = ACTIONS(2965), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_LT_DASH] = ACTIONS(2965), + [sym_none] = ACTIONS(2965), + [sym_true] = ACTIONS(2965), + [sym_false] = ACTIONS(2965), + [sym_nil] = ACTIONS(2965), + [anon_sym_if] = ACTIONS(2965), + [anon_sym_DOLLARif] = ACTIONS(2965), + [anon_sym_match] = ACTIONS(2965), + [anon_sym_select] = ACTIONS(2965), + [anon_sym_lock] = ACTIONS(2965), + [anon_sym_rlock] = ACTIONS(2965), + [anon_sym_unsafe] = ACTIONS(2965), + [anon_sym_sql] = ACTIONS(2965), + [sym_int_literal] = ACTIONS(2965), + [sym_float_literal] = ACTIONS(2965), + [sym_rune_literal] = ACTIONS(2965), + [anon_sym_SQUOTE] = ACTIONS(2965), + [anon_sym_DQUOTE] = ACTIONS(2965), + [anon_sym_c_SQUOTE] = ACTIONS(2965), + [anon_sym_c_DQUOTE] = ACTIONS(2965), + [anon_sym_r_SQUOTE] = ACTIONS(2965), + [anon_sym_r_DQUOTE] = ACTIONS(2965), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), + [anon_sym_shared] = ACTIONS(2965), + [aux_sym_sum_type_token1] = ACTIONS(2965), + [anon_sym_PIPE2] = ACTIONS(2963), + [anon_sym_map_LBRACK] = ACTIONS(2965), + [anon_sym_chan] = ACTIONS(2965), + [anon_sym_thread] = ACTIONS(2965), + [anon_sym_atomic] = ACTIONS(2965), + [anon_sym_assert] = ACTIONS(2965), + [anon_sym_defer] = ACTIONS(2965), + [anon_sym_goto] = ACTIONS(2965), + [anon_sym_break] = ACTIONS(2965), + [anon_sym_continue] = ACTIONS(2965), + [anon_sym_return] = ACTIONS(2965), + [anon_sym_DOLLARfor] = ACTIONS(2965), + [anon_sym_for] = ACTIONS(2965), + [anon_sym_POUND] = ACTIONS(2965), + [anon_sym_asm] = ACTIONS(2965), + [anon_sym_AT_LBRACK] = ACTIONS(2965), }, - [1419] = { - [sym_line_comment] = STATE(1419), - [sym_block_comment] = STATE(1419), - [ts_builtin_sym_end] = ACTIONS(2243), - [sym_identifier] = ACTIONS(2245), - [anon_sym_LF] = ACTIONS(2245), - [anon_sym_CR] = ACTIONS(2245), - [anon_sym_CR_LF] = ACTIONS(2245), + [1441] = { + [sym_line_comment] = STATE(1441), + [sym_block_comment] = STATE(1441), + [ts_builtin_sym_end] = ACTIONS(3048), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LF] = ACTIONS(3050), + [anon_sym_CR] = ACTIONS(3050), + [anon_sym_CR_LF] = ACTIONS(3050), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym___global] = ACTIONS(2245), - [anon_sym_type] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_fn] = ACTIONS(2245), - [anon_sym_PLUS] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_STAR] = ACTIONS(2245), - [anon_sym_struct] = ACTIONS(2245), - [anon_sym_union] = ACTIONS(2245), - [anon_sym_pub] = ACTIONS(2245), - [anon_sym_mut] = ACTIONS(2245), - [anon_sym_enum] = ACTIONS(2245), - [anon_sym_interface] = ACTIONS(2245), - [anon_sym_QMARK] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(2245), - [anon_sym_go] = ACTIONS(2245), - [anon_sym_spawn] = ACTIONS(2245), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2245), - [anon_sym_TILDE] = ACTIONS(2245), - [anon_sym_CARET] = ACTIONS(2245), - [anon_sym_AMP] = ACTIONS(2245), - [anon_sym_LT_DASH] = ACTIONS(2245), - [sym_none] = ACTIONS(2245), - [sym_true] = ACTIONS(2245), - [sym_false] = ACTIONS(2245), - [sym_nil] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_DOLLARif] = ACTIONS(2245), - [anon_sym_match] = ACTIONS(2245), - [anon_sym_select] = ACTIONS(2245), - [anon_sym_lock] = ACTIONS(2245), - [anon_sym_rlock] = ACTIONS(2245), - [anon_sym_unsafe] = ACTIONS(2245), - [anon_sym_sql] = ACTIONS(2245), - [sym_int_literal] = ACTIONS(2245), - [sym_float_literal] = ACTIONS(2245), - [sym_rune_literal] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(2245), - [anon_sym_c_SQUOTE] = ACTIONS(2245), - [anon_sym_c_DQUOTE] = ACTIONS(2245), - [anon_sym_r_SQUOTE] = ACTIONS(2245), - [anon_sym_r_DQUOTE] = ACTIONS(2245), - [sym_pseudo_compile_time_identifier] = ACTIONS(2245), - [anon_sym_shared] = ACTIONS(2245), - [anon_sym_map_LBRACK] = ACTIONS(2245), - [anon_sym_chan] = ACTIONS(2245), - [anon_sym_thread] = ACTIONS(2245), - [anon_sym_atomic] = ACTIONS(2245), - [anon_sym_assert] = ACTIONS(2245), - [anon_sym_defer] = ACTIONS(2245), - [anon_sym_goto] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_DOLLARfor] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_POUND] = ACTIONS(2245), - [anon_sym_asm] = ACTIONS(2245), - [anon_sym_AT_LBRACK] = ACTIONS(2245), + [anon_sym_DOT] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_const] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym___global] = ACTIONS(3050), + [anon_sym_type] = ACTIONS(3050), + [anon_sym_fn] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_struct] = ACTIONS(3050), + [anon_sym_union] = ACTIONS(3050), + [anon_sym_pub] = ACTIONS(3050), + [anon_sym_mut] = ACTIONS(3050), + [anon_sym_enum] = ACTIONS(3050), + [anon_sym_interface] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_go] = ACTIONS(3050), + [anon_sym_spawn] = ACTIONS(3050), + [anon_sym_json_DOTdecode] = ACTIONS(3050), + [anon_sym_LBRACK2] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_CARET] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_LT_DASH] = ACTIONS(3050), + [sym_none] = ACTIONS(3050), + [sym_true] = ACTIONS(3050), + [sym_false] = ACTIONS(3050), + [sym_nil] = ACTIONS(3050), + [anon_sym_if] = ACTIONS(3050), + [anon_sym_DOLLARif] = ACTIONS(3050), + [anon_sym_match] = ACTIONS(3050), + [anon_sym_select] = ACTIONS(3050), + [anon_sym_lock] = ACTIONS(3050), + [anon_sym_rlock] = ACTIONS(3050), + [anon_sym_unsafe] = ACTIONS(3050), + [anon_sym_sql] = ACTIONS(3050), + [sym_int_literal] = ACTIONS(3050), + [sym_float_literal] = ACTIONS(3050), + [sym_rune_literal] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [anon_sym_c_SQUOTE] = ACTIONS(3050), + [anon_sym_c_DQUOTE] = ACTIONS(3050), + [anon_sym_r_SQUOTE] = ACTIONS(3050), + [anon_sym_r_DQUOTE] = ACTIONS(3050), + [sym_pseudo_compile_time_identifier] = ACTIONS(3050), + [anon_sym_shared] = ACTIONS(3050), + [aux_sym_sum_type_token1] = ACTIONS(3050), + [anon_sym_PIPE2] = ACTIONS(3048), + [anon_sym_map_LBRACK] = ACTIONS(3050), + [anon_sym_chan] = ACTIONS(3050), + [anon_sym_thread] = ACTIONS(3050), + [anon_sym_atomic] = ACTIONS(3050), + [anon_sym_assert] = ACTIONS(3050), + [anon_sym_defer] = ACTIONS(3050), + [anon_sym_goto] = ACTIONS(3050), + [anon_sym_break] = ACTIONS(3050), + [anon_sym_continue] = ACTIONS(3050), + [anon_sym_return] = ACTIONS(3050), + [anon_sym_DOLLARfor] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3050), + [anon_sym_POUND] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3050), + [anon_sym_AT_LBRACK] = ACTIONS(3050), }, - [1420] = { - [sym_line_comment] = STATE(1420), - [sym_block_comment] = STATE(1420), - [ts_builtin_sym_end] = ACTIONS(3990), - [sym_identifier] = ACTIONS(3992), - [anon_sym_LF] = ACTIONS(3992), - [anon_sym_CR] = ACTIONS(3992), - [anon_sym_CR_LF] = ACTIONS(3992), + [1442] = { + [sym_line_comment] = STATE(1442), + [sym_block_comment] = STATE(1442), + [ts_builtin_sym_end] = ACTIONS(2759), + [sym_identifier] = ACTIONS(2761), + [anon_sym_LF] = ACTIONS(2761), + [anon_sym_CR] = ACTIONS(2761), + [anon_sym_CR_LF] = ACTIONS(2761), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3992), - [anon_sym_LBRACE] = ACTIONS(3992), - [anon_sym_const] = ACTIONS(3992), - [anon_sym_LPAREN] = ACTIONS(3992), - [anon_sym___global] = ACTIONS(3992), - [anon_sym_type] = ACTIONS(3992), - [anon_sym_PIPE] = ACTIONS(3992), - [anon_sym_fn] = ACTIONS(3992), - [anon_sym_PLUS] = ACTIONS(3992), - [anon_sym_DASH] = ACTIONS(3992), - [anon_sym_STAR] = ACTIONS(3992), - [anon_sym_struct] = ACTIONS(3992), - [anon_sym_union] = ACTIONS(3992), - [anon_sym_pub] = ACTIONS(3992), - [anon_sym_mut] = ACTIONS(3992), - [anon_sym_enum] = ACTIONS(3992), - [anon_sym_interface] = ACTIONS(3992), - [anon_sym_QMARK] = ACTIONS(3992), - [anon_sym_BANG] = ACTIONS(3992), - [anon_sym_go] = ACTIONS(3992), - [anon_sym_spawn] = ACTIONS(3992), - [anon_sym_json_DOTdecode] = ACTIONS(3992), - [anon_sym_LBRACK2] = ACTIONS(3992), - [anon_sym_TILDE] = ACTIONS(3992), - [anon_sym_CARET] = ACTIONS(3992), - [anon_sym_AMP] = ACTIONS(3992), - [anon_sym_LT_DASH] = ACTIONS(3992), - [sym_none] = ACTIONS(3992), - [sym_true] = ACTIONS(3992), - [sym_false] = ACTIONS(3992), - [sym_nil] = ACTIONS(3992), - [anon_sym_if] = ACTIONS(3992), - [anon_sym_DOLLARif] = ACTIONS(3992), - [anon_sym_match] = ACTIONS(3992), - [anon_sym_select] = ACTIONS(3992), - [anon_sym_lock] = ACTIONS(3992), - [anon_sym_rlock] = ACTIONS(3992), - [anon_sym_unsafe] = ACTIONS(3992), - [anon_sym_sql] = ACTIONS(3992), - [sym_int_literal] = ACTIONS(3992), - [sym_float_literal] = ACTIONS(3992), - [sym_rune_literal] = ACTIONS(3992), - [anon_sym_SQUOTE] = ACTIONS(3992), - [anon_sym_DQUOTE] = ACTIONS(3992), - [anon_sym_c_SQUOTE] = ACTIONS(3992), - [anon_sym_c_DQUOTE] = ACTIONS(3992), - [anon_sym_r_SQUOTE] = ACTIONS(3992), - [anon_sym_r_DQUOTE] = ACTIONS(3992), - [sym_pseudo_compile_time_identifier] = ACTIONS(3992), - [anon_sym_shared] = ACTIONS(3992), - [anon_sym_map_LBRACK] = ACTIONS(3992), - [anon_sym_chan] = ACTIONS(3992), - [anon_sym_thread] = ACTIONS(3992), - [anon_sym_atomic] = ACTIONS(3992), - [anon_sym_assert] = ACTIONS(3992), - [anon_sym_defer] = ACTIONS(3992), - [anon_sym_goto] = ACTIONS(3992), - [anon_sym_break] = ACTIONS(3992), - [anon_sym_continue] = ACTIONS(3992), - [anon_sym_return] = ACTIONS(3992), - [anon_sym_DOLLARfor] = ACTIONS(3992), - [anon_sym_for] = ACTIONS(3992), - [anon_sym_POUND] = ACTIONS(3992), - [anon_sym_asm] = ACTIONS(3992), - [anon_sym_AT_LBRACK] = ACTIONS(3992), + [anon_sym_DOT] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2761), + [anon_sym_const] = ACTIONS(2761), + [anon_sym_LPAREN] = ACTIONS(2761), + [anon_sym___global] = ACTIONS(2761), + [anon_sym_type] = ACTIONS(2761), + [anon_sym_fn] = ACTIONS(2761), + [anon_sym_PLUS] = ACTIONS(2761), + [anon_sym_DASH] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(2761), + [anon_sym_struct] = ACTIONS(2761), + [anon_sym_union] = ACTIONS(2761), + [anon_sym_pub] = ACTIONS(2761), + [anon_sym_mut] = ACTIONS(2761), + [anon_sym_enum] = ACTIONS(2761), + [anon_sym_interface] = ACTIONS(2761), + [anon_sym_QMARK] = ACTIONS(2761), + [anon_sym_BANG] = ACTIONS(2761), + [anon_sym_go] = ACTIONS(2761), + [anon_sym_spawn] = ACTIONS(2761), + [anon_sym_json_DOTdecode] = ACTIONS(2761), + [anon_sym_LBRACK2] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2761), + [anon_sym_CARET] = ACTIONS(2761), + [anon_sym_AMP] = ACTIONS(2761), + [anon_sym_LT_DASH] = ACTIONS(2761), + [sym_none] = ACTIONS(2761), + [sym_true] = ACTIONS(2761), + [sym_false] = ACTIONS(2761), + [sym_nil] = ACTIONS(2761), + [anon_sym_if] = ACTIONS(2761), + [anon_sym_DOLLARif] = ACTIONS(2761), + [anon_sym_match] = ACTIONS(2761), + [anon_sym_select] = ACTIONS(2761), + [anon_sym_lock] = ACTIONS(2761), + [anon_sym_rlock] = ACTIONS(2761), + [anon_sym_unsafe] = ACTIONS(2761), + [anon_sym_sql] = ACTIONS(2761), + [sym_int_literal] = ACTIONS(2761), + [sym_float_literal] = ACTIONS(2761), + [sym_rune_literal] = ACTIONS(2761), + [anon_sym_SQUOTE] = ACTIONS(2761), + [anon_sym_DQUOTE] = ACTIONS(2761), + [anon_sym_c_SQUOTE] = ACTIONS(2761), + [anon_sym_c_DQUOTE] = ACTIONS(2761), + [anon_sym_r_SQUOTE] = ACTIONS(2761), + [anon_sym_r_DQUOTE] = ACTIONS(2761), + [sym_pseudo_compile_time_identifier] = ACTIONS(2761), + [anon_sym_shared] = ACTIONS(2761), + [aux_sym_sum_type_token1] = ACTIONS(2761), + [anon_sym_PIPE2] = ACTIONS(2759), + [anon_sym_map_LBRACK] = ACTIONS(2761), + [anon_sym_chan] = ACTIONS(2761), + [anon_sym_thread] = ACTIONS(2761), + [anon_sym_atomic] = ACTIONS(2761), + [anon_sym_assert] = ACTIONS(2761), + [anon_sym_defer] = ACTIONS(2761), + [anon_sym_goto] = ACTIONS(2761), + [anon_sym_break] = ACTIONS(2761), + [anon_sym_continue] = ACTIONS(2761), + [anon_sym_return] = ACTIONS(2761), + [anon_sym_DOLLARfor] = ACTIONS(2761), + [anon_sym_for] = ACTIONS(2761), + [anon_sym_POUND] = ACTIONS(2761), + [anon_sym_asm] = ACTIONS(2761), + [anon_sym_AT_LBRACK] = ACTIONS(2761), }, - [1421] = { - [sym_line_comment] = STATE(1421), - [sym_block_comment] = STATE(1421), - [sym_block] = STATE(1535), - [ts_builtin_sym_end] = ACTIONS(4028), - [sym_identifier] = ACTIONS(4030), - [anon_sym_LF] = ACTIONS(4030), - [anon_sym_CR] = ACTIONS(4030), - [anon_sym_CR_LF] = ACTIONS(4030), + [1443] = { + [sym_line_comment] = STATE(1443), + [sym_block_comment] = STATE(1443), + [ts_builtin_sym_end] = ACTIONS(2097), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LF] = ACTIONS(2099), + [anon_sym_CR] = ACTIONS(2099), + [anon_sym_CR_LF] = ACTIONS(2099), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4030), - [anon_sym_LBRACE] = ACTIONS(4022), - [anon_sym_const] = ACTIONS(4030), - [anon_sym_LPAREN] = ACTIONS(4030), - [anon_sym___global] = ACTIONS(4030), - [anon_sym_type] = ACTIONS(4030), - [anon_sym_fn] = ACTIONS(4030), - [anon_sym_PLUS] = ACTIONS(4030), - [anon_sym_DASH] = ACTIONS(4030), - [anon_sym_STAR] = ACTIONS(4030), - [anon_sym_struct] = ACTIONS(4030), - [anon_sym_union] = ACTIONS(4030), - [anon_sym_pub] = ACTIONS(4030), - [anon_sym_mut] = ACTIONS(4030), - [anon_sym_enum] = ACTIONS(4030), - [anon_sym_interface] = ACTIONS(4030), - [anon_sym_QMARK] = ACTIONS(4030), - [anon_sym_BANG] = ACTIONS(4030), - [anon_sym_go] = ACTIONS(4030), - [anon_sym_spawn] = ACTIONS(4030), - [anon_sym_json_DOTdecode] = ACTIONS(4030), - [anon_sym_LBRACK2] = ACTIONS(4030), - [anon_sym_TILDE] = ACTIONS(4030), - [anon_sym_CARET] = ACTIONS(4030), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_LT_DASH] = ACTIONS(4030), - [sym_none] = ACTIONS(4030), - [sym_true] = ACTIONS(4030), - [sym_false] = ACTIONS(4030), - [sym_nil] = ACTIONS(4030), - [anon_sym_if] = ACTIONS(4030), - [anon_sym_DOLLARif] = ACTIONS(4030), - [anon_sym_match] = ACTIONS(4030), - [anon_sym_select] = ACTIONS(4030), - [anon_sym_lock] = ACTIONS(4030), - [anon_sym_rlock] = ACTIONS(4030), - [anon_sym_unsafe] = ACTIONS(4030), - [anon_sym_sql] = ACTIONS(4030), - [sym_int_literal] = ACTIONS(4030), - [sym_float_literal] = ACTIONS(4030), - [sym_rune_literal] = ACTIONS(4030), - [anon_sym_SQUOTE] = ACTIONS(4030), - [anon_sym_DQUOTE] = ACTIONS(4030), - [anon_sym_c_SQUOTE] = ACTIONS(4030), - [anon_sym_c_DQUOTE] = ACTIONS(4030), - [anon_sym_r_SQUOTE] = ACTIONS(4030), - [anon_sym_r_DQUOTE] = ACTIONS(4030), - [sym_pseudo_compile_time_identifier] = ACTIONS(4030), - [anon_sym_shared] = ACTIONS(4030), - [anon_sym_map_LBRACK] = ACTIONS(4030), - [anon_sym_chan] = ACTIONS(4030), - [anon_sym_thread] = ACTIONS(4030), - [anon_sym_atomic] = ACTIONS(4030), - [anon_sym_assert] = ACTIONS(4030), - [anon_sym_defer] = ACTIONS(4030), - [anon_sym_goto] = ACTIONS(4030), - [anon_sym_break] = ACTIONS(4030), - [anon_sym_continue] = ACTIONS(4030), - [anon_sym_return] = ACTIONS(4030), - [anon_sym_DOLLARfor] = ACTIONS(4030), - [anon_sym_for] = ACTIONS(4030), - [anon_sym_POUND] = ACTIONS(4030), - [anon_sym_asm] = ACTIONS(4030), - [anon_sym_AT_LBRACK] = ACTIONS(4030), + [anon_sym_DOT] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_const] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(2099), + [anon_sym___global] = ACTIONS(2099), + [anon_sym_type] = ACTIONS(2099), + [anon_sym_fn] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(2099), + [anon_sym_DASH] = ACTIONS(2099), + [anon_sym_STAR] = ACTIONS(2099), + [anon_sym_struct] = ACTIONS(2099), + [anon_sym_union] = ACTIONS(2099), + [anon_sym_pub] = ACTIONS(2099), + [anon_sym_mut] = ACTIONS(2099), + [anon_sym_enum] = ACTIONS(2099), + [anon_sym_interface] = ACTIONS(2099), + [anon_sym_QMARK] = ACTIONS(2099), + [anon_sym_BANG] = ACTIONS(2099), + [anon_sym_go] = ACTIONS(2099), + [anon_sym_spawn] = ACTIONS(2099), + [anon_sym_json_DOTdecode] = ACTIONS(2099), + [anon_sym_LBRACK2] = ACTIONS(2099), + [anon_sym_TILDE] = ACTIONS(2099), + [anon_sym_CARET] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(2099), + [sym_true] = ACTIONS(2099), + [sym_false] = ACTIONS(2099), + [sym_nil] = ACTIONS(2099), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(2099), + [anon_sym_match] = ACTIONS(2099), + [anon_sym_select] = ACTIONS(2099), + [anon_sym_lock] = ACTIONS(2099), + [anon_sym_rlock] = ACTIONS(2099), + [anon_sym_unsafe] = ACTIONS(2099), + [anon_sym_sql] = ACTIONS(2099), + [sym_int_literal] = ACTIONS(2099), + [sym_float_literal] = ACTIONS(2099), + [sym_rune_literal] = ACTIONS(2099), + [anon_sym_SQUOTE] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(2099), + [anon_sym_c_SQUOTE] = ACTIONS(2099), + [anon_sym_c_DQUOTE] = ACTIONS(2099), + [anon_sym_r_SQUOTE] = ACTIONS(2099), + [anon_sym_r_DQUOTE] = ACTIONS(2099), + [sym_pseudo_compile_time_identifier] = ACTIONS(2099), + [anon_sym_shared] = ACTIONS(2099), + [aux_sym_sum_type_token1] = ACTIONS(2099), + [anon_sym_PIPE2] = ACTIONS(2097), + [anon_sym_map_LBRACK] = ACTIONS(2099), + [anon_sym_chan] = ACTIONS(2099), + [anon_sym_thread] = ACTIONS(2099), + [anon_sym_atomic] = ACTIONS(2099), + [anon_sym_assert] = ACTIONS(2099), + [anon_sym_defer] = ACTIONS(2099), + [anon_sym_goto] = ACTIONS(2099), + [anon_sym_break] = ACTIONS(2099), + [anon_sym_continue] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2099), + [anon_sym_DOLLARfor] = ACTIONS(2099), + [anon_sym_for] = ACTIONS(2099), + [anon_sym_POUND] = ACTIONS(2099), + [anon_sym_asm] = ACTIONS(2099), + [anon_sym_AT_LBRACK] = ACTIONS(2099), }, - [1422] = { - [sym_line_comment] = STATE(1422), - [sym_block_comment] = STATE(1422), - [sym_block] = STATE(1480), - [ts_builtin_sym_end] = ACTIONS(4032), - [sym_identifier] = ACTIONS(4034), - [anon_sym_LF] = ACTIONS(4034), - [anon_sym_CR] = ACTIONS(4034), - [anon_sym_CR_LF] = ACTIONS(4034), + [1444] = { + [sym_line_comment] = STATE(1444), + [sym_block_comment] = STATE(1444), + [ts_builtin_sym_end] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2705), + [anon_sym_LF] = ACTIONS(2705), + [anon_sym_CR] = ACTIONS(2705), + [anon_sym_CR_LF] = ACTIONS(2705), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4034), - [anon_sym_LBRACE] = ACTIONS(4022), - [anon_sym_const] = ACTIONS(4034), - [anon_sym_LPAREN] = ACTIONS(4034), - [anon_sym___global] = ACTIONS(4034), - [anon_sym_type] = ACTIONS(4034), - [anon_sym_fn] = ACTIONS(4034), - [anon_sym_PLUS] = ACTIONS(4034), - [anon_sym_DASH] = ACTIONS(4034), - [anon_sym_STAR] = ACTIONS(4034), - [anon_sym_struct] = ACTIONS(4034), - [anon_sym_union] = ACTIONS(4034), - [anon_sym_pub] = ACTIONS(4034), - [anon_sym_mut] = ACTIONS(4034), - [anon_sym_enum] = ACTIONS(4034), - [anon_sym_interface] = ACTIONS(4034), - [anon_sym_QMARK] = ACTIONS(4034), - [anon_sym_BANG] = ACTIONS(4034), - [anon_sym_go] = ACTIONS(4034), - [anon_sym_spawn] = ACTIONS(4034), - [anon_sym_json_DOTdecode] = ACTIONS(4034), - [anon_sym_LBRACK2] = ACTIONS(4034), - [anon_sym_TILDE] = ACTIONS(4034), - [anon_sym_CARET] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4034), - [anon_sym_LT_DASH] = ACTIONS(4034), - [sym_none] = ACTIONS(4034), - [sym_true] = ACTIONS(4034), - [sym_false] = ACTIONS(4034), - [sym_nil] = ACTIONS(4034), - [anon_sym_if] = ACTIONS(4034), - [anon_sym_DOLLARif] = ACTIONS(4034), - [anon_sym_match] = ACTIONS(4034), - [anon_sym_select] = ACTIONS(4034), - [anon_sym_lock] = ACTIONS(4034), - [anon_sym_rlock] = ACTIONS(4034), - [anon_sym_unsafe] = ACTIONS(4034), - [anon_sym_sql] = ACTIONS(4034), - [sym_int_literal] = ACTIONS(4034), - [sym_float_literal] = ACTIONS(4034), - [sym_rune_literal] = ACTIONS(4034), - [anon_sym_SQUOTE] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4034), - [anon_sym_c_SQUOTE] = ACTIONS(4034), - [anon_sym_c_DQUOTE] = ACTIONS(4034), - [anon_sym_r_SQUOTE] = ACTIONS(4034), - [anon_sym_r_DQUOTE] = ACTIONS(4034), - [sym_pseudo_compile_time_identifier] = ACTIONS(4034), - [anon_sym_shared] = ACTIONS(4034), - [anon_sym_map_LBRACK] = ACTIONS(4034), - [anon_sym_chan] = ACTIONS(4034), - [anon_sym_thread] = ACTIONS(4034), - [anon_sym_atomic] = ACTIONS(4034), - [anon_sym_assert] = ACTIONS(4034), - [anon_sym_defer] = ACTIONS(4034), - [anon_sym_goto] = ACTIONS(4034), - [anon_sym_break] = ACTIONS(4034), - [anon_sym_continue] = ACTIONS(4034), - [anon_sym_return] = ACTIONS(4034), - [anon_sym_DOLLARfor] = ACTIONS(4034), - [anon_sym_for] = ACTIONS(4034), - [anon_sym_POUND] = ACTIONS(4034), - [anon_sym_asm] = ACTIONS(4034), - [anon_sym_AT_LBRACK] = ACTIONS(4034), + [anon_sym_DOT] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_const] = ACTIONS(2705), + [anon_sym_LPAREN] = ACTIONS(2705), + [anon_sym___global] = ACTIONS(2705), + [anon_sym_type] = ACTIONS(2705), + [anon_sym_fn] = ACTIONS(2705), + [anon_sym_PLUS] = ACTIONS(2705), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2705), + [anon_sym_struct] = ACTIONS(2705), + [anon_sym_union] = ACTIONS(2705), + [anon_sym_pub] = ACTIONS(2705), + [anon_sym_mut] = ACTIONS(2705), + [anon_sym_enum] = ACTIONS(2705), + [anon_sym_interface] = ACTIONS(2705), + [anon_sym_QMARK] = ACTIONS(2705), + [anon_sym_BANG] = ACTIONS(2705), + [anon_sym_go] = ACTIONS(2705), + [anon_sym_spawn] = ACTIONS(2705), + [anon_sym_json_DOTdecode] = ACTIONS(2705), + [anon_sym_LBRACK2] = ACTIONS(2705), + [anon_sym_TILDE] = ACTIONS(2705), + [anon_sym_CARET] = ACTIONS(2705), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_LT_DASH] = ACTIONS(2705), + [sym_none] = ACTIONS(2705), + [sym_true] = ACTIONS(2705), + [sym_false] = ACTIONS(2705), + [sym_nil] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_DOLLARif] = ACTIONS(2705), + [anon_sym_match] = ACTIONS(2705), + [anon_sym_select] = ACTIONS(2705), + [anon_sym_lock] = ACTIONS(2705), + [anon_sym_rlock] = ACTIONS(2705), + [anon_sym_unsafe] = ACTIONS(2705), + [anon_sym_sql] = ACTIONS(2705), + [sym_int_literal] = ACTIONS(2705), + [sym_float_literal] = ACTIONS(2705), + [sym_rune_literal] = ACTIONS(2705), + [anon_sym_SQUOTE] = ACTIONS(2705), + [anon_sym_DQUOTE] = ACTIONS(2705), + [anon_sym_c_SQUOTE] = ACTIONS(2705), + [anon_sym_c_DQUOTE] = ACTIONS(2705), + [anon_sym_r_SQUOTE] = ACTIONS(2705), + [anon_sym_r_DQUOTE] = ACTIONS(2705), + [sym_pseudo_compile_time_identifier] = ACTIONS(2705), + [anon_sym_shared] = ACTIONS(2705), + [aux_sym_sum_type_token1] = ACTIONS(2705), + [anon_sym_PIPE2] = ACTIONS(2703), + [anon_sym_map_LBRACK] = ACTIONS(2705), + [anon_sym_chan] = ACTIONS(2705), + [anon_sym_thread] = ACTIONS(2705), + [anon_sym_atomic] = ACTIONS(2705), + [anon_sym_assert] = ACTIONS(2705), + [anon_sym_defer] = ACTIONS(2705), + [anon_sym_goto] = ACTIONS(2705), + [anon_sym_break] = ACTIONS(2705), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_return] = ACTIONS(2705), + [anon_sym_DOLLARfor] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_POUND] = ACTIONS(2705), + [anon_sym_asm] = ACTIONS(2705), + [anon_sym_AT_LBRACK] = ACTIONS(2705), }, - [1423] = { - [sym_line_comment] = STATE(1423), - [sym_block_comment] = STATE(1423), - [ts_builtin_sym_end] = ACTIONS(2131), - [sym_identifier] = ACTIONS(2133), - [anon_sym_LF] = ACTIONS(2133), - [anon_sym_CR] = ACTIONS(2133), - [anon_sym_CR_LF] = ACTIONS(2133), + [1445] = { + [sym_line_comment] = STATE(1445), + [sym_block_comment] = STATE(1445), + [ts_builtin_sym_end] = ACTIONS(2369), + [sym_identifier] = ACTIONS(2371), + [anon_sym_LF] = ACTIONS(2371), + [anon_sym_CR] = ACTIONS(2371), + [anon_sym_CR_LF] = ACTIONS(2371), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(2133), - [anon_sym_const] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym___global] = ACTIONS(2133), - [anon_sym_type] = ACTIONS(2133), - [anon_sym_PIPE] = ACTIONS(2133), - [anon_sym_fn] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(2133), - [anon_sym_DASH] = ACTIONS(2133), - [anon_sym_STAR] = ACTIONS(2133), - [anon_sym_struct] = ACTIONS(2133), - [anon_sym_union] = ACTIONS(2133), - [anon_sym_pub] = ACTIONS(2133), - [anon_sym_mut] = ACTIONS(2133), - [anon_sym_enum] = ACTIONS(2133), - [anon_sym_interface] = ACTIONS(2133), - [anon_sym_QMARK] = ACTIONS(2133), - [anon_sym_BANG] = ACTIONS(2133), - [anon_sym_go] = ACTIONS(2133), - [anon_sym_spawn] = ACTIONS(2133), - [anon_sym_json_DOTdecode] = ACTIONS(2133), - [anon_sym_LBRACK2] = ACTIONS(2133), - [anon_sym_TILDE] = ACTIONS(2133), - [anon_sym_CARET] = ACTIONS(2133), - [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_LT_DASH] = ACTIONS(2133), - [sym_none] = ACTIONS(2133), - [sym_true] = ACTIONS(2133), - [sym_false] = ACTIONS(2133), - [sym_nil] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_DOLLARif] = ACTIONS(2133), - [anon_sym_match] = ACTIONS(2133), - [anon_sym_select] = ACTIONS(2133), - [anon_sym_lock] = ACTIONS(2133), - [anon_sym_rlock] = ACTIONS(2133), - [anon_sym_unsafe] = ACTIONS(2133), - [anon_sym_sql] = ACTIONS(2133), - [sym_int_literal] = ACTIONS(2133), - [sym_float_literal] = ACTIONS(2133), - [sym_rune_literal] = ACTIONS(2133), - [anon_sym_SQUOTE] = ACTIONS(2133), - [anon_sym_DQUOTE] = ACTIONS(2133), - [anon_sym_c_SQUOTE] = ACTIONS(2133), - [anon_sym_c_DQUOTE] = ACTIONS(2133), - [anon_sym_r_SQUOTE] = ACTIONS(2133), - [anon_sym_r_DQUOTE] = ACTIONS(2133), - [sym_pseudo_compile_time_identifier] = ACTIONS(2133), - [anon_sym_shared] = ACTIONS(2133), - [anon_sym_map_LBRACK] = ACTIONS(2133), - [anon_sym_chan] = ACTIONS(2133), - [anon_sym_thread] = ACTIONS(2133), - [anon_sym_atomic] = ACTIONS(2133), - [anon_sym_assert] = ACTIONS(2133), - [anon_sym_defer] = ACTIONS(2133), - [anon_sym_goto] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_DOLLARfor] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_POUND] = ACTIONS(2133), - [anon_sym_asm] = ACTIONS(2133), - [anon_sym_AT_LBRACK] = ACTIONS(2133), + [anon_sym_DOT] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_const] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym___global] = ACTIONS(2371), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_fn] = ACTIONS(2371), + [anon_sym_PLUS] = ACTIONS(2371), + [anon_sym_DASH] = ACTIONS(2371), + [anon_sym_STAR] = ACTIONS(2371), + [anon_sym_struct] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), + [anon_sym_pub] = ACTIONS(2371), + [anon_sym_mut] = ACTIONS(2371), + [anon_sym_enum] = ACTIONS(2371), + [anon_sym_interface] = ACTIONS(2371), + [anon_sym_QMARK] = ACTIONS(2371), + [anon_sym_BANG] = ACTIONS(2371), + [anon_sym_go] = ACTIONS(2371), + [anon_sym_spawn] = ACTIONS(2371), + [anon_sym_json_DOTdecode] = ACTIONS(2371), + [anon_sym_LBRACK2] = ACTIONS(2371), + [anon_sym_TILDE] = ACTIONS(2371), + [anon_sym_CARET] = ACTIONS(2371), + [anon_sym_AMP] = ACTIONS(2371), + [anon_sym_LT_DASH] = ACTIONS(2371), + [sym_none] = ACTIONS(2371), + [sym_true] = ACTIONS(2371), + [sym_false] = ACTIONS(2371), + [sym_nil] = ACTIONS(2371), + [anon_sym_if] = ACTIONS(2371), + [anon_sym_DOLLARif] = ACTIONS(2371), + [anon_sym_match] = ACTIONS(2371), + [anon_sym_select] = ACTIONS(2371), + [anon_sym_lock] = ACTIONS(2371), + [anon_sym_rlock] = ACTIONS(2371), + [anon_sym_unsafe] = ACTIONS(2371), + [anon_sym_sql] = ACTIONS(2371), + [sym_int_literal] = ACTIONS(2371), + [sym_float_literal] = ACTIONS(2371), + [sym_rune_literal] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2371), + [anon_sym_DQUOTE] = ACTIONS(2371), + [anon_sym_c_SQUOTE] = ACTIONS(2371), + [anon_sym_c_DQUOTE] = ACTIONS(2371), + [anon_sym_r_SQUOTE] = ACTIONS(2371), + [anon_sym_r_DQUOTE] = ACTIONS(2371), + [sym_pseudo_compile_time_identifier] = ACTIONS(2371), + [anon_sym_shared] = ACTIONS(2371), + [aux_sym_sum_type_token1] = ACTIONS(2371), + [anon_sym_PIPE2] = ACTIONS(2369), + [anon_sym_map_LBRACK] = ACTIONS(2371), + [anon_sym_chan] = ACTIONS(2371), + [anon_sym_thread] = ACTIONS(2371), + [anon_sym_atomic] = ACTIONS(2371), + [anon_sym_assert] = ACTIONS(2371), + [anon_sym_defer] = ACTIONS(2371), + [anon_sym_goto] = ACTIONS(2371), + [anon_sym_break] = ACTIONS(2371), + [anon_sym_continue] = ACTIONS(2371), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_DOLLARfor] = ACTIONS(2371), + [anon_sym_for] = ACTIONS(2371), + [anon_sym_POUND] = ACTIONS(2371), + [anon_sym_asm] = ACTIONS(2371), + [anon_sym_AT_LBRACK] = ACTIONS(2371), }, - [1424] = { - [sym_line_comment] = STATE(1424), - [sym_block_comment] = STATE(1424), - [sym_block] = STATE(1532), - [ts_builtin_sym_end] = ACTIONS(4036), - [sym_identifier] = ACTIONS(4038), - [anon_sym_LF] = ACTIONS(4038), - [anon_sym_CR] = ACTIONS(4038), - [anon_sym_CR_LF] = ACTIONS(4038), + [1446] = { + [sym_line_comment] = STATE(1446), + [sym_block_comment] = STATE(1446), + [ts_builtin_sym_end] = ACTIONS(2377), + [sym_identifier] = ACTIONS(2379), + [anon_sym_LF] = ACTIONS(2379), + [anon_sym_CR] = ACTIONS(2379), + [anon_sym_CR_LF] = ACTIONS(2379), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4038), - [anon_sym_LBRACE] = ACTIONS(4022), - [anon_sym_const] = ACTIONS(4038), - [anon_sym_LPAREN] = ACTIONS(4038), - [anon_sym___global] = ACTIONS(4038), - [anon_sym_type] = ACTIONS(4038), - [anon_sym_fn] = ACTIONS(4038), - [anon_sym_PLUS] = ACTIONS(4038), - [anon_sym_DASH] = ACTIONS(4038), - [anon_sym_STAR] = ACTIONS(4038), - [anon_sym_struct] = ACTIONS(4038), - [anon_sym_union] = ACTIONS(4038), - [anon_sym_pub] = ACTIONS(4038), - [anon_sym_mut] = ACTIONS(4038), - [anon_sym_enum] = ACTIONS(4038), - [anon_sym_interface] = ACTIONS(4038), - [anon_sym_QMARK] = ACTIONS(4038), - [anon_sym_BANG] = ACTIONS(4038), - [anon_sym_go] = ACTIONS(4038), - [anon_sym_spawn] = ACTIONS(4038), - [anon_sym_json_DOTdecode] = ACTIONS(4038), - [anon_sym_LBRACK2] = ACTIONS(4038), - [anon_sym_TILDE] = ACTIONS(4038), - [anon_sym_CARET] = ACTIONS(4038), - [anon_sym_AMP] = ACTIONS(4038), - [anon_sym_LT_DASH] = ACTIONS(4038), - [sym_none] = ACTIONS(4038), - [sym_true] = ACTIONS(4038), - [sym_false] = ACTIONS(4038), - [sym_nil] = ACTIONS(4038), - [anon_sym_if] = ACTIONS(4038), - [anon_sym_DOLLARif] = ACTIONS(4038), - [anon_sym_match] = ACTIONS(4038), - [anon_sym_select] = ACTIONS(4038), - [anon_sym_lock] = ACTIONS(4038), - [anon_sym_rlock] = ACTIONS(4038), - [anon_sym_unsafe] = ACTIONS(4038), - [anon_sym_sql] = ACTIONS(4038), - [sym_int_literal] = ACTIONS(4038), - [sym_float_literal] = ACTIONS(4038), - [sym_rune_literal] = ACTIONS(4038), - [anon_sym_SQUOTE] = ACTIONS(4038), - [anon_sym_DQUOTE] = ACTIONS(4038), - [anon_sym_c_SQUOTE] = ACTIONS(4038), - [anon_sym_c_DQUOTE] = ACTIONS(4038), - [anon_sym_r_SQUOTE] = ACTIONS(4038), - [anon_sym_r_DQUOTE] = ACTIONS(4038), - [sym_pseudo_compile_time_identifier] = ACTIONS(4038), - [anon_sym_shared] = ACTIONS(4038), - [anon_sym_map_LBRACK] = ACTIONS(4038), - [anon_sym_chan] = ACTIONS(4038), - [anon_sym_thread] = ACTIONS(4038), - [anon_sym_atomic] = ACTIONS(4038), - [anon_sym_assert] = ACTIONS(4038), - [anon_sym_defer] = ACTIONS(4038), - [anon_sym_goto] = ACTIONS(4038), - [anon_sym_break] = ACTIONS(4038), - [anon_sym_continue] = ACTIONS(4038), - [anon_sym_return] = ACTIONS(4038), - [anon_sym_DOLLARfor] = ACTIONS(4038), - [anon_sym_for] = ACTIONS(4038), - [anon_sym_POUND] = ACTIONS(4038), - [anon_sym_asm] = ACTIONS(4038), - [anon_sym_AT_LBRACK] = ACTIONS(4038), + [anon_sym_DOT] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_const] = ACTIONS(2379), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym___global] = ACTIONS(2379), + [anon_sym_type] = ACTIONS(2379), + [anon_sym_fn] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_STAR] = ACTIONS(2379), + [anon_sym_struct] = ACTIONS(2379), + [anon_sym_union] = ACTIONS(2379), + [anon_sym_pub] = ACTIONS(2379), + [anon_sym_mut] = ACTIONS(2379), + [anon_sym_enum] = ACTIONS(2379), + [anon_sym_interface] = ACTIONS(2379), + [anon_sym_QMARK] = ACTIONS(2379), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_go] = ACTIONS(2379), + [anon_sym_spawn] = ACTIONS(2379), + [anon_sym_json_DOTdecode] = ACTIONS(2379), + [anon_sym_LBRACK2] = ACTIONS(2379), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_LT_DASH] = ACTIONS(2379), + [sym_none] = ACTIONS(2379), + [sym_true] = ACTIONS(2379), + [sym_false] = ACTIONS(2379), + [sym_nil] = ACTIONS(2379), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_DOLLARif] = ACTIONS(2379), + [anon_sym_match] = ACTIONS(2379), + [anon_sym_select] = ACTIONS(2379), + [anon_sym_lock] = ACTIONS(2379), + [anon_sym_rlock] = ACTIONS(2379), + [anon_sym_unsafe] = ACTIONS(2379), + [anon_sym_sql] = ACTIONS(2379), + [sym_int_literal] = ACTIONS(2379), + [sym_float_literal] = ACTIONS(2379), + [sym_rune_literal] = ACTIONS(2379), + [anon_sym_SQUOTE] = ACTIONS(2379), + [anon_sym_DQUOTE] = ACTIONS(2379), + [anon_sym_c_SQUOTE] = ACTIONS(2379), + [anon_sym_c_DQUOTE] = ACTIONS(2379), + [anon_sym_r_SQUOTE] = ACTIONS(2379), + [anon_sym_r_DQUOTE] = ACTIONS(2379), + [sym_pseudo_compile_time_identifier] = ACTIONS(2379), + [anon_sym_shared] = ACTIONS(2379), + [aux_sym_sum_type_token1] = ACTIONS(2379), + [anon_sym_PIPE2] = ACTIONS(2377), + [anon_sym_map_LBRACK] = ACTIONS(2379), + [anon_sym_chan] = ACTIONS(2379), + [anon_sym_thread] = ACTIONS(2379), + [anon_sym_atomic] = ACTIONS(2379), + [anon_sym_assert] = ACTIONS(2379), + [anon_sym_defer] = ACTIONS(2379), + [anon_sym_goto] = ACTIONS(2379), + [anon_sym_break] = ACTIONS(2379), + [anon_sym_continue] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2379), + [anon_sym_DOLLARfor] = ACTIONS(2379), + [anon_sym_for] = ACTIONS(2379), + [anon_sym_POUND] = ACTIONS(2379), + [anon_sym_asm] = ACTIONS(2379), + [anon_sym_AT_LBRACK] = ACTIONS(2379), }, - [1425] = { - [sym_line_comment] = STATE(1425), - [sym_block_comment] = STATE(1425), - [sym_block] = STATE(1531), - [ts_builtin_sym_end] = ACTIONS(4040), - [sym_identifier] = ACTIONS(4042), - [anon_sym_LF] = ACTIONS(4042), - [anon_sym_CR] = ACTIONS(4042), - [anon_sym_CR_LF] = ACTIONS(4042), + [1447] = { + [sym_line_comment] = STATE(1447), + [sym_block_comment] = STATE(1447), + [sym_type_parameters] = STATE(1501), + [ts_builtin_sym_end] = ACTIONS(1943), + [sym_identifier] = ACTIONS(1945), + [anon_sym_LF] = ACTIONS(1945), + [anon_sym_CR] = ACTIONS(1945), + [anon_sym_CR_LF] = ACTIONS(1945), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4042), - [anon_sym_LBRACE] = ACTIONS(4022), - [anon_sym_const] = ACTIONS(4042), - [anon_sym_LPAREN] = ACTIONS(4042), - [anon_sym___global] = ACTIONS(4042), - [anon_sym_type] = ACTIONS(4042), - [anon_sym_fn] = ACTIONS(4042), - [anon_sym_PLUS] = ACTIONS(4042), - [anon_sym_DASH] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(4042), - [anon_sym_struct] = ACTIONS(4042), - [anon_sym_union] = ACTIONS(4042), - [anon_sym_pub] = ACTIONS(4042), - [anon_sym_mut] = ACTIONS(4042), - [anon_sym_enum] = ACTIONS(4042), - [anon_sym_interface] = ACTIONS(4042), - [anon_sym_QMARK] = ACTIONS(4042), - [anon_sym_BANG] = ACTIONS(4042), - [anon_sym_go] = ACTIONS(4042), - [anon_sym_spawn] = ACTIONS(4042), - [anon_sym_json_DOTdecode] = ACTIONS(4042), - [anon_sym_LBRACK2] = ACTIONS(4042), - [anon_sym_TILDE] = ACTIONS(4042), - [anon_sym_CARET] = ACTIONS(4042), - [anon_sym_AMP] = ACTIONS(4042), - [anon_sym_LT_DASH] = ACTIONS(4042), - [sym_none] = ACTIONS(4042), - [sym_true] = ACTIONS(4042), - [sym_false] = ACTIONS(4042), - [sym_nil] = ACTIONS(4042), - [anon_sym_if] = ACTIONS(4042), - [anon_sym_DOLLARif] = ACTIONS(4042), - [anon_sym_match] = ACTIONS(4042), - [anon_sym_select] = ACTIONS(4042), - [anon_sym_lock] = ACTIONS(4042), - [anon_sym_rlock] = ACTIONS(4042), - [anon_sym_unsafe] = ACTIONS(4042), - [anon_sym_sql] = ACTIONS(4042), - [sym_int_literal] = ACTIONS(4042), - [sym_float_literal] = ACTIONS(4042), - [sym_rune_literal] = ACTIONS(4042), - [anon_sym_SQUOTE] = ACTIONS(4042), - [anon_sym_DQUOTE] = ACTIONS(4042), - [anon_sym_c_SQUOTE] = ACTIONS(4042), - [anon_sym_c_DQUOTE] = ACTIONS(4042), - [anon_sym_r_SQUOTE] = ACTIONS(4042), - [anon_sym_r_DQUOTE] = ACTIONS(4042), - [sym_pseudo_compile_time_identifier] = ACTIONS(4042), - [anon_sym_shared] = ACTIONS(4042), - [anon_sym_map_LBRACK] = ACTIONS(4042), - [anon_sym_chan] = ACTIONS(4042), - [anon_sym_thread] = ACTIONS(4042), - [anon_sym_atomic] = ACTIONS(4042), - [anon_sym_assert] = ACTIONS(4042), - [anon_sym_defer] = ACTIONS(4042), - [anon_sym_goto] = ACTIONS(4042), - [anon_sym_break] = ACTIONS(4042), - [anon_sym_continue] = ACTIONS(4042), - [anon_sym_return] = ACTIONS(4042), - [anon_sym_DOLLARfor] = ACTIONS(4042), - [anon_sym_for] = ACTIONS(4042), - [anon_sym_POUND] = ACTIONS(4042), - [anon_sym_asm] = ACTIONS(4042), - [anon_sym_AT_LBRACK] = ACTIONS(4042), + [anon_sym_DOT] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1945), + [anon_sym_const] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym___global] = ACTIONS(1945), + [anon_sym_type] = ACTIONS(1945), + [anon_sym_fn] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1945), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(4051), + [anon_sym_struct] = ACTIONS(1945), + [anon_sym_union] = ACTIONS(1945), + [anon_sym_pub] = ACTIONS(1945), + [anon_sym_mut] = ACTIONS(1945), + [anon_sym_enum] = ACTIONS(1945), + [anon_sym_interface] = ACTIONS(1945), + [anon_sym_QMARK] = ACTIONS(1945), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_go] = ACTIONS(1945), + [anon_sym_spawn] = ACTIONS(1945), + [anon_sym_json_DOTdecode] = ACTIONS(1945), + [anon_sym_LBRACK2] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1945), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_nil] = ACTIONS(1945), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_DOLLARif] = ACTIONS(1945), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_select] = ACTIONS(1945), + [anon_sym_lock] = ACTIONS(1945), + [anon_sym_rlock] = ACTIONS(1945), + [anon_sym_unsafe] = ACTIONS(1945), + [anon_sym_sql] = ACTIONS(1945), + [sym_int_literal] = ACTIONS(1945), + [sym_float_literal] = ACTIONS(1945), + [sym_rune_literal] = ACTIONS(1945), + [anon_sym_SQUOTE] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(1945), + [anon_sym_c_SQUOTE] = ACTIONS(1945), + [anon_sym_c_DQUOTE] = ACTIONS(1945), + [anon_sym_r_SQUOTE] = ACTIONS(1945), + [anon_sym_r_DQUOTE] = ACTIONS(1945), + [sym_pseudo_compile_time_identifier] = ACTIONS(1945), + [anon_sym_shared] = ACTIONS(1945), + [anon_sym_map_LBRACK] = ACTIONS(1945), + [anon_sym_chan] = ACTIONS(1945), + [anon_sym_thread] = ACTIONS(1945), + [anon_sym_atomic] = ACTIONS(1945), + [anon_sym_assert] = ACTIONS(1945), + [anon_sym_defer] = ACTIONS(1945), + [anon_sym_goto] = ACTIONS(1945), + [anon_sym_break] = ACTIONS(1945), + [anon_sym_continue] = ACTIONS(1945), + [anon_sym_return] = ACTIONS(1945), + [anon_sym_DOLLARfor] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1945), + [anon_sym_POUND] = ACTIONS(1945), + [anon_sym_asm] = ACTIONS(1945), + [anon_sym_AT_LBRACK] = ACTIONS(1945), }, - [1426] = { - [sym_line_comment] = STATE(1426), - [sym_block_comment] = STATE(1426), - [sym_block] = STATE(1528), - [ts_builtin_sym_end] = ACTIONS(4044), - [sym_identifier] = ACTIONS(4046), - [anon_sym_LF] = ACTIONS(4046), - [anon_sym_CR] = ACTIONS(4046), - [anon_sym_CR_LF] = ACTIONS(4046), + [1448] = { + [sym_line_comment] = STATE(1448), + [sym_block_comment] = STATE(1448), + [aux_sym_strictly_expression_list_repeat1] = STATE(1451), + [ts_builtin_sym_end] = ACTIONS(4053), + [sym_identifier] = ACTIONS(4055), + [anon_sym_LF] = ACTIONS(4055), + [anon_sym_CR] = ACTIONS(4055), + [anon_sym_CR_LF] = ACTIONS(4055), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4046), - [anon_sym_LBRACE] = ACTIONS(4022), - [anon_sym_const] = ACTIONS(4046), - [anon_sym_LPAREN] = ACTIONS(4046), - [anon_sym___global] = ACTIONS(4046), - [anon_sym_type] = ACTIONS(4046), - [anon_sym_fn] = ACTIONS(4046), - [anon_sym_PLUS] = ACTIONS(4046), - [anon_sym_DASH] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(4046), - [anon_sym_struct] = ACTIONS(4046), - [anon_sym_union] = ACTIONS(4046), - [anon_sym_pub] = ACTIONS(4046), - [anon_sym_mut] = ACTIONS(4046), - [anon_sym_enum] = ACTIONS(4046), - [anon_sym_interface] = ACTIONS(4046), - [anon_sym_QMARK] = ACTIONS(4046), - [anon_sym_BANG] = ACTIONS(4046), - [anon_sym_go] = ACTIONS(4046), - [anon_sym_spawn] = ACTIONS(4046), - [anon_sym_json_DOTdecode] = ACTIONS(4046), - [anon_sym_LBRACK2] = ACTIONS(4046), - [anon_sym_TILDE] = ACTIONS(4046), - [anon_sym_CARET] = ACTIONS(4046), - [anon_sym_AMP] = ACTIONS(4046), - [anon_sym_LT_DASH] = ACTIONS(4046), - [sym_none] = ACTIONS(4046), - [sym_true] = ACTIONS(4046), - [sym_false] = ACTIONS(4046), - [sym_nil] = ACTIONS(4046), - [anon_sym_if] = ACTIONS(4046), - [anon_sym_DOLLARif] = ACTIONS(4046), - [anon_sym_match] = ACTIONS(4046), - [anon_sym_select] = ACTIONS(4046), - [anon_sym_lock] = ACTIONS(4046), - [anon_sym_rlock] = ACTIONS(4046), - [anon_sym_unsafe] = ACTIONS(4046), - [anon_sym_sql] = ACTIONS(4046), - [sym_int_literal] = ACTIONS(4046), - [sym_float_literal] = ACTIONS(4046), - [sym_rune_literal] = ACTIONS(4046), - [anon_sym_SQUOTE] = ACTIONS(4046), - [anon_sym_DQUOTE] = ACTIONS(4046), - [anon_sym_c_SQUOTE] = ACTIONS(4046), - [anon_sym_c_DQUOTE] = ACTIONS(4046), - [anon_sym_r_SQUOTE] = ACTIONS(4046), - [anon_sym_r_DQUOTE] = ACTIONS(4046), - [sym_pseudo_compile_time_identifier] = ACTIONS(4046), - [anon_sym_shared] = ACTIONS(4046), - [anon_sym_map_LBRACK] = ACTIONS(4046), - [anon_sym_chan] = ACTIONS(4046), - [anon_sym_thread] = ACTIONS(4046), - [anon_sym_atomic] = ACTIONS(4046), - [anon_sym_assert] = ACTIONS(4046), - [anon_sym_defer] = ACTIONS(4046), - [anon_sym_goto] = ACTIONS(4046), - [anon_sym_break] = ACTIONS(4046), - [anon_sym_continue] = ACTIONS(4046), - [anon_sym_return] = ACTIONS(4046), - [anon_sym_DOLLARfor] = ACTIONS(4046), - [anon_sym_for] = ACTIONS(4046), - [anon_sym_POUND] = ACTIONS(4046), - [anon_sym_asm] = ACTIONS(4046), - [anon_sym_AT_LBRACK] = ACTIONS(4046), + [anon_sym_DOT] = ACTIONS(4055), + [anon_sym_LBRACE] = ACTIONS(4055), + [anon_sym_COMMA] = ACTIONS(3498), + [anon_sym_const] = ACTIONS(4055), + [anon_sym_LPAREN] = ACTIONS(4055), + [anon_sym___global] = ACTIONS(4055), + [anon_sym_type] = ACTIONS(4055), + [anon_sym_fn] = ACTIONS(4055), + [anon_sym_PLUS] = ACTIONS(4055), + [anon_sym_DASH] = ACTIONS(4055), + [anon_sym_STAR] = ACTIONS(4055), + [anon_sym_struct] = ACTIONS(4055), + [anon_sym_union] = ACTIONS(4055), + [anon_sym_pub] = ACTIONS(4055), + [anon_sym_mut] = ACTIONS(4055), + [anon_sym_enum] = ACTIONS(4055), + [anon_sym_interface] = ACTIONS(4055), + [anon_sym_QMARK] = ACTIONS(4055), + [anon_sym_BANG] = ACTIONS(4055), + [anon_sym_go] = ACTIONS(4055), + [anon_sym_spawn] = ACTIONS(4055), + [anon_sym_json_DOTdecode] = ACTIONS(4055), + [anon_sym_LBRACK2] = ACTIONS(4055), + [anon_sym_TILDE] = ACTIONS(4055), + [anon_sym_CARET] = ACTIONS(4055), + [anon_sym_AMP] = ACTIONS(4055), + [anon_sym_LT_DASH] = ACTIONS(4055), + [sym_none] = ACTIONS(4055), + [sym_true] = ACTIONS(4055), + [sym_false] = ACTIONS(4055), + [sym_nil] = ACTIONS(4055), + [anon_sym_if] = ACTIONS(4055), + [anon_sym_DOLLARif] = ACTIONS(4055), + [anon_sym_match] = ACTIONS(4055), + [anon_sym_select] = ACTIONS(4055), + [anon_sym_lock] = ACTIONS(4055), + [anon_sym_rlock] = ACTIONS(4055), + [anon_sym_unsafe] = ACTIONS(4055), + [anon_sym_sql] = ACTIONS(4055), + [sym_int_literal] = ACTIONS(4055), + [sym_float_literal] = ACTIONS(4055), + [sym_rune_literal] = ACTIONS(4055), + [anon_sym_SQUOTE] = ACTIONS(4055), + [anon_sym_DQUOTE] = ACTIONS(4055), + [anon_sym_c_SQUOTE] = ACTIONS(4055), + [anon_sym_c_DQUOTE] = ACTIONS(4055), + [anon_sym_r_SQUOTE] = ACTIONS(4055), + [anon_sym_r_DQUOTE] = ACTIONS(4055), + [sym_pseudo_compile_time_identifier] = ACTIONS(4055), + [anon_sym_shared] = ACTIONS(4055), + [anon_sym_map_LBRACK] = ACTIONS(4055), + [anon_sym_chan] = ACTIONS(4055), + [anon_sym_thread] = ACTIONS(4055), + [anon_sym_atomic] = ACTIONS(4055), + [anon_sym_assert] = ACTIONS(4055), + [anon_sym_defer] = ACTIONS(4055), + [anon_sym_goto] = ACTIONS(4055), + [anon_sym_break] = ACTIONS(4055), + [anon_sym_continue] = ACTIONS(4055), + [anon_sym_return] = ACTIONS(4055), + [anon_sym_DOLLARfor] = ACTIONS(4055), + [anon_sym_for] = ACTIONS(4055), + [anon_sym_POUND] = ACTIONS(4055), + [anon_sym_asm] = ACTIONS(4055), + [anon_sym_AT_LBRACK] = ACTIONS(4055), }, - [1427] = { - [sym_line_comment] = STATE(1427), - [sym_block_comment] = STATE(1427), - [sym_block] = STATE(1526), - [ts_builtin_sym_end] = ACTIONS(4048), - [sym_identifier] = ACTIONS(4050), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_CR] = ACTIONS(4050), - [anon_sym_CR_LF] = ACTIONS(4050), + [1449] = { + [sym_line_comment] = STATE(1449), + [sym_block_comment] = STATE(1449), + [ts_builtin_sym_end] = ACTIONS(2393), + [sym_identifier] = ACTIONS(2395), + [anon_sym_LF] = ACTIONS(2395), + [anon_sym_CR] = ACTIONS(2395), + [anon_sym_CR_LF] = ACTIONS(2395), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4050), - [anon_sym_LBRACE] = ACTIONS(4022), - [anon_sym_const] = ACTIONS(4050), - [anon_sym_LPAREN] = ACTIONS(4050), - [anon_sym___global] = ACTIONS(4050), - [anon_sym_type] = ACTIONS(4050), - [anon_sym_fn] = ACTIONS(4050), - [anon_sym_PLUS] = ACTIONS(4050), - [anon_sym_DASH] = ACTIONS(4050), - [anon_sym_STAR] = ACTIONS(4050), - [anon_sym_struct] = ACTIONS(4050), - [anon_sym_union] = ACTIONS(4050), - [anon_sym_pub] = ACTIONS(4050), - [anon_sym_mut] = ACTIONS(4050), - [anon_sym_enum] = ACTIONS(4050), - [anon_sym_interface] = ACTIONS(4050), - [anon_sym_QMARK] = ACTIONS(4050), - [anon_sym_BANG] = ACTIONS(4050), - [anon_sym_go] = ACTIONS(4050), - [anon_sym_spawn] = ACTIONS(4050), - [anon_sym_json_DOTdecode] = ACTIONS(4050), - [anon_sym_LBRACK2] = ACTIONS(4050), - [anon_sym_TILDE] = ACTIONS(4050), - [anon_sym_CARET] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4050), - [anon_sym_LT_DASH] = ACTIONS(4050), - [sym_none] = ACTIONS(4050), - [sym_true] = ACTIONS(4050), - [sym_false] = ACTIONS(4050), - [sym_nil] = ACTIONS(4050), - [anon_sym_if] = ACTIONS(4050), - [anon_sym_DOLLARif] = ACTIONS(4050), - [anon_sym_match] = ACTIONS(4050), - [anon_sym_select] = ACTIONS(4050), - [anon_sym_lock] = ACTIONS(4050), - [anon_sym_rlock] = ACTIONS(4050), - [anon_sym_unsafe] = ACTIONS(4050), - [anon_sym_sql] = ACTIONS(4050), - [sym_int_literal] = ACTIONS(4050), - [sym_float_literal] = ACTIONS(4050), - [sym_rune_literal] = ACTIONS(4050), - [anon_sym_SQUOTE] = ACTIONS(4050), - [anon_sym_DQUOTE] = ACTIONS(4050), - [anon_sym_c_SQUOTE] = ACTIONS(4050), - [anon_sym_c_DQUOTE] = ACTIONS(4050), - [anon_sym_r_SQUOTE] = ACTIONS(4050), - [anon_sym_r_DQUOTE] = ACTIONS(4050), - [sym_pseudo_compile_time_identifier] = ACTIONS(4050), - [anon_sym_shared] = ACTIONS(4050), - [anon_sym_map_LBRACK] = ACTIONS(4050), - [anon_sym_chan] = ACTIONS(4050), - [anon_sym_thread] = ACTIONS(4050), - [anon_sym_atomic] = ACTIONS(4050), - [anon_sym_assert] = ACTIONS(4050), - [anon_sym_defer] = ACTIONS(4050), - [anon_sym_goto] = ACTIONS(4050), - [anon_sym_break] = ACTIONS(4050), - [anon_sym_continue] = ACTIONS(4050), - [anon_sym_return] = ACTIONS(4050), - [anon_sym_DOLLARfor] = ACTIONS(4050), - [anon_sym_for] = ACTIONS(4050), - [anon_sym_POUND] = ACTIONS(4050), - [anon_sym_asm] = ACTIONS(4050), - [anon_sym_AT_LBRACK] = ACTIONS(4050), + [anon_sym_DOT] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym___global] = ACTIONS(2395), + [anon_sym_type] = ACTIONS(2395), + [anon_sym_fn] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_pub] = ACTIONS(2395), + [anon_sym_mut] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_interface] = ACTIONS(2395), + [anon_sym_QMARK] = ACTIONS(2395), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_go] = ACTIONS(2395), + [anon_sym_spawn] = ACTIONS(2395), + [anon_sym_json_DOTdecode] = ACTIONS(2395), + [anon_sym_LBRACK2] = ACTIONS(2395), + [anon_sym_TILDE] = ACTIONS(2395), + [anon_sym_CARET] = ACTIONS(2395), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_LT_DASH] = ACTIONS(2395), + [sym_none] = ACTIONS(2395), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_nil] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_DOLLARif] = ACTIONS(2395), + [anon_sym_match] = ACTIONS(2395), + [anon_sym_select] = ACTIONS(2395), + [anon_sym_lock] = ACTIONS(2395), + [anon_sym_rlock] = ACTIONS(2395), + [anon_sym_unsafe] = ACTIONS(2395), + [anon_sym_sql] = ACTIONS(2395), + [sym_int_literal] = ACTIONS(2395), + [sym_float_literal] = ACTIONS(2395), + [sym_rune_literal] = ACTIONS(2395), + [anon_sym_SQUOTE] = ACTIONS(2395), + [anon_sym_DQUOTE] = ACTIONS(2395), + [anon_sym_c_SQUOTE] = ACTIONS(2395), + [anon_sym_c_DQUOTE] = ACTIONS(2395), + [anon_sym_r_SQUOTE] = ACTIONS(2395), + [anon_sym_r_DQUOTE] = ACTIONS(2395), + [sym_pseudo_compile_time_identifier] = ACTIONS(2395), + [anon_sym_shared] = ACTIONS(2395), + [aux_sym_sum_type_token1] = ACTIONS(2395), + [anon_sym_PIPE2] = ACTIONS(2393), + [anon_sym_map_LBRACK] = ACTIONS(2395), + [anon_sym_chan] = ACTIONS(2395), + [anon_sym_thread] = ACTIONS(2395), + [anon_sym_atomic] = ACTIONS(2395), + [anon_sym_assert] = ACTIONS(2395), + [anon_sym_defer] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_DOLLARfor] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_POUND] = ACTIONS(2395), + [anon_sym_asm] = ACTIONS(2395), + [anon_sym_AT_LBRACK] = ACTIONS(2395), }, - [1428] = { - [sym_line_comment] = STATE(1428), - [sym_block_comment] = STATE(1428), - [sym_block] = STATE(1525), - [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), + [1450] = { + [sym_line_comment] = STATE(1450), + [sym_block_comment] = STATE(1450), + [ts_builtin_sym_end] = ACTIONS(2451), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LF] = ACTIONS(2453), + [anon_sym_CR] = ACTIONS(2453), + [anon_sym_CR_LF] = ACTIONS(2453), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4054), - [anon_sym_LBRACE] = ACTIONS(4022), - [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), - [anon_sym_SQUOTE] = ACTIONS(4054), - [anon_sym_DQUOTE] = ACTIONS(4054), - [anon_sym_c_SQUOTE] = ACTIONS(4054), - [anon_sym_c_DQUOTE] = ACTIONS(4054), - [anon_sym_r_SQUOTE] = ACTIONS(4054), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym___global] = ACTIONS(2453), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_fn] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(2453), + [anon_sym_struct] = ACTIONS(2453), + [anon_sym_union] = ACTIONS(2453), + [anon_sym_pub] = ACTIONS(2453), + [anon_sym_mut] = ACTIONS(2453), + [anon_sym_enum] = ACTIONS(2453), + [anon_sym_interface] = ACTIONS(2453), + [anon_sym_QMARK] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2453), + [anon_sym_go] = ACTIONS(2453), + [anon_sym_spawn] = ACTIONS(2453), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2453), + [anon_sym_TILDE] = ACTIONS(2453), + [anon_sym_CARET] = ACTIONS(2453), + [anon_sym_AMP] = ACTIONS(2453), + [anon_sym_LT_DASH] = ACTIONS(2453), + [sym_none] = ACTIONS(2453), + [sym_true] = ACTIONS(2453), + [sym_false] = ACTIONS(2453), + [sym_nil] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_DOLLARif] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_select] = ACTIONS(2453), + [anon_sym_lock] = ACTIONS(2453), + [anon_sym_rlock] = ACTIONS(2453), + [anon_sym_unsafe] = ACTIONS(2453), + [anon_sym_sql] = ACTIONS(2453), + [sym_int_literal] = ACTIONS(2453), + [sym_float_literal] = ACTIONS(2453), + [sym_rune_literal] = ACTIONS(2453), + [anon_sym_SQUOTE] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2453), + [anon_sym_c_SQUOTE] = ACTIONS(2453), + [anon_sym_c_DQUOTE] = ACTIONS(2453), + [anon_sym_r_SQUOTE] = ACTIONS(2453), + [anon_sym_r_DQUOTE] = ACTIONS(2453), + [sym_pseudo_compile_time_identifier] = ACTIONS(2453), + [anon_sym_shared] = ACTIONS(2453), + [aux_sym_sum_type_token1] = ACTIONS(2453), + [anon_sym_PIPE2] = ACTIONS(2451), + [anon_sym_map_LBRACK] = ACTIONS(2453), + [anon_sym_chan] = ACTIONS(2453), + [anon_sym_thread] = ACTIONS(2453), + [anon_sym_atomic] = ACTIONS(2453), + [anon_sym_assert] = ACTIONS(2453), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_goto] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_DOLLARfor] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_POUND] = ACTIONS(2453), + [anon_sym_asm] = ACTIONS(2453), + [anon_sym_AT_LBRACK] = ACTIONS(2453), }, - [1429] = { - [sym_line_comment] = STATE(1429), - [sym_block_comment] = STATE(1429), - [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), + [1451] = { + [sym_line_comment] = STATE(1451), + [sym_block_comment] = STATE(1451), + [aux_sym_strictly_expression_list_repeat1] = STATE(1451), + [ts_builtin_sym_end] = ACTIONS(3530), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LF] = ACTIONS(1657), + [anon_sym_CR] = ACTIONS(1657), + [anon_sym_CR_LF] = ACTIONS(1657), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_const] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym___global] = ACTIONS(4058), - [anon_sym_type] = ACTIONS(4058), - [anon_sym_PIPE] = 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), - [anon_sym_SQUOTE] = ACTIONS(4058), - [anon_sym_DQUOTE] = ACTIONS(4058), - [anon_sym_c_SQUOTE] = ACTIONS(4058), - [anon_sym_c_DQUOTE] = ACTIONS(4058), - [anon_sym_r_SQUOTE] = ACTIONS(4058), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(1657), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_COMMA] = ACTIONS(4057), + [anon_sym_const] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym___global] = ACTIONS(1657), + [anon_sym_type] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_STAR] = ACTIONS(1657), + [anon_sym_struct] = ACTIONS(1657), + [anon_sym_union] = ACTIONS(1657), + [anon_sym_pub] = ACTIONS(1657), + [anon_sym_mut] = ACTIONS(1657), + [anon_sym_enum] = ACTIONS(1657), + [anon_sym_interface] = ACTIONS(1657), + [anon_sym_QMARK] = ACTIONS(1657), + [anon_sym_BANG] = ACTIONS(1657), + [anon_sym_go] = ACTIONS(1657), + [anon_sym_spawn] = ACTIONS(1657), + [anon_sym_json_DOTdecode] = ACTIONS(1657), + [anon_sym_LBRACK2] = ACTIONS(1657), + [anon_sym_TILDE] = ACTIONS(1657), + [anon_sym_CARET] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1657), + [anon_sym_LT_DASH] = ACTIONS(1657), + [sym_none] = ACTIONS(1657), + [sym_true] = ACTIONS(1657), + [sym_false] = ACTIONS(1657), + [sym_nil] = ACTIONS(1657), + [anon_sym_if] = ACTIONS(1657), + [anon_sym_DOLLARif] = ACTIONS(1657), + [anon_sym_match] = ACTIONS(1657), + [anon_sym_select] = ACTIONS(1657), + [anon_sym_lock] = ACTIONS(1657), + [anon_sym_rlock] = ACTIONS(1657), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1657), + [sym_int_literal] = ACTIONS(1657), + [sym_float_literal] = ACTIONS(1657), + [sym_rune_literal] = ACTIONS(1657), + [anon_sym_SQUOTE] = ACTIONS(1657), + [anon_sym_DQUOTE] = ACTIONS(1657), + [anon_sym_c_SQUOTE] = ACTIONS(1657), + [anon_sym_c_DQUOTE] = ACTIONS(1657), + [anon_sym_r_SQUOTE] = ACTIONS(1657), + [anon_sym_r_DQUOTE] = ACTIONS(1657), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(1657), + [anon_sym_map_LBRACK] = ACTIONS(1657), + [anon_sym_chan] = ACTIONS(1657), + [anon_sym_thread] = ACTIONS(1657), + [anon_sym_atomic] = ACTIONS(1657), + [anon_sym_assert] = ACTIONS(1657), + [anon_sym_defer] = ACTIONS(1657), + [anon_sym_goto] = ACTIONS(1657), + [anon_sym_break] = ACTIONS(1657), + [anon_sym_continue] = ACTIONS(1657), + [anon_sym_return] = ACTIONS(1657), + [anon_sym_DOLLARfor] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1657), + [anon_sym_POUND] = ACTIONS(1657), + [anon_sym_asm] = ACTIONS(1657), + [anon_sym_AT_LBRACK] = ACTIONS(1657), }, - [1430] = { - [sym_line_comment] = STATE(1430), - [sym_block_comment] = STATE(1430), - [sym_block] = STATE(1523), + [1452] = { + [sym_line_comment] = STATE(1452), + [sym_block_comment] = STATE(1452), + [aux_sym_strictly_expression_list_repeat1] = STATE(1451), [ts_builtin_sym_end] = ACTIONS(4060), [sym_identifier] = ACTIONS(4062), [anon_sym_LF] = ACTIONS(4062), @@ -175478,7 +177585,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_LBRACE] = ACTIONS(4062), + [anon_sym_COMMA] = ACTIONS(3498), [anon_sym_const] = ACTIONS(4062), [anon_sym_LPAREN] = ACTIONS(4062), [anon_sym___global] = ACTIONS(4062), @@ -175542,10 +177650,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(4062), [anon_sym_AT_LBRACK] = ACTIONS(4062), }, - [1431] = { - [sym_line_comment] = STATE(1431), - [sym_block_comment] = STATE(1431), - [sym_block] = STATE(1522), + [1453] = { + [sym_line_comment] = STATE(1453), + [sym_block_comment] = STATE(1453), + [ts_builtin_sym_end] = ACTIONS(2773), + [sym_identifier] = ACTIONS(2775), + [anon_sym_LF] = ACTIONS(2775), + [anon_sym_CR] = ACTIONS(2775), + [anon_sym_CR_LF] = ACTIONS(2775), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_const] = ACTIONS(2775), + [anon_sym_LPAREN] = ACTIONS(2775), + [anon_sym___global] = ACTIONS(2775), + [anon_sym_type] = ACTIONS(2775), + [anon_sym_fn] = ACTIONS(2775), + [anon_sym_PLUS] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2775), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(2775), + [anon_sym_union] = ACTIONS(2775), + [anon_sym_pub] = ACTIONS(2775), + [anon_sym_mut] = ACTIONS(2775), + [anon_sym_enum] = ACTIONS(2775), + [anon_sym_interface] = ACTIONS(2775), + [anon_sym_QMARK] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_go] = ACTIONS(2775), + [anon_sym_spawn] = ACTIONS(2775), + [anon_sym_json_DOTdecode] = ACTIONS(2775), + [anon_sym_LBRACK2] = ACTIONS(2775), + [anon_sym_TILDE] = ACTIONS(2775), + [anon_sym_CARET] = ACTIONS(2775), + [anon_sym_AMP] = ACTIONS(2775), + [anon_sym_LT_DASH] = ACTIONS(2775), + [sym_none] = ACTIONS(2775), + [sym_true] = ACTIONS(2775), + [sym_false] = ACTIONS(2775), + [sym_nil] = ACTIONS(2775), + [anon_sym_if] = ACTIONS(2775), + [anon_sym_DOLLARif] = ACTIONS(2775), + [anon_sym_match] = ACTIONS(2775), + [anon_sym_select] = ACTIONS(2775), + [anon_sym_lock] = ACTIONS(2775), + [anon_sym_rlock] = ACTIONS(2775), + [anon_sym_unsafe] = ACTIONS(2775), + [anon_sym_sql] = ACTIONS(2775), + [sym_int_literal] = ACTIONS(2775), + [sym_float_literal] = ACTIONS(2775), + [sym_rune_literal] = ACTIONS(2775), + [anon_sym_SQUOTE] = ACTIONS(2775), + [anon_sym_DQUOTE] = ACTIONS(2775), + [anon_sym_c_SQUOTE] = ACTIONS(2775), + [anon_sym_c_DQUOTE] = ACTIONS(2775), + [anon_sym_r_SQUOTE] = ACTIONS(2775), + [anon_sym_r_DQUOTE] = ACTIONS(2775), + [sym_pseudo_compile_time_identifier] = ACTIONS(2775), + [anon_sym_shared] = ACTIONS(2775), + [aux_sym_sum_type_token1] = ACTIONS(2775), + [anon_sym_PIPE2] = ACTIONS(2773), + [anon_sym_map_LBRACK] = ACTIONS(2775), + [anon_sym_chan] = ACTIONS(2775), + [anon_sym_thread] = ACTIONS(2775), + [anon_sym_atomic] = ACTIONS(2775), + [anon_sym_assert] = ACTIONS(2775), + [anon_sym_defer] = ACTIONS(2775), + [anon_sym_goto] = ACTIONS(2775), + [anon_sym_break] = ACTIONS(2775), + [anon_sym_continue] = ACTIONS(2775), + [anon_sym_return] = ACTIONS(2775), + [anon_sym_DOLLARfor] = ACTIONS(2775), + [anon_sym_for] = ACTIONS(2775), + [anon_sym_POUND] = ACTIONS(2775), + [anon_sym_asm] = ACTIONS(2775), + [anon_sym_AT_LBRACK] = ACTIONS(2775), + }, + [1454] = { + [sym_line_comment] = STATE(1454), + [sym_block_comment] = STATE(1454), + [ts_builtin_sym_end] = ACTIONS(1943), + [sym_identifier] = ACTIONS(1945), + [anon_sym_LF] = ACTIONS(1945), + [anon_sym_CR] = ACTIONS(1945), + [anon_sym_CR_LF] = ACTIONS(1945), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1945), + [anon_sym_const] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym___global] = ACTIONS(1945), + [anon_sym_type] = ACTIONS(1945), + [anon_sym_fn] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1945), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_struct] = ACTIONS(1945), + [anon_sym_union] = ACTIONS(1945), + [anon_sym_pub] = ACTIONS(1945), + [anon_sym_mut] = ACTIONS(1945), + [anon_sym_enum] = ACTIONS(1945), + [anon_sym_interface] = ACTIONS(1945), + [anon_sym_QMARK] = ACTIONS(1945), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_go] = ACTIONS(1945), + [anon_sym_spawn] = ACTIONS(1945), + [anon_sym_json_DOTdecode] = ACTIONS(1945), + [anon_sym_LBRACK2] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1945), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_nil] = ACTIONS(1945), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_DOLLARif] = ACTIONS(1945), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_select] = ACTIONS(1945), + [anon_sym_lock] = ACTIONS(1945), + [anon_sym_rlock] = ACTIONS(1945), + [anon_sym_unsafe] = ACTIONS(1945), + [anon_sym_sql] = ACTIONS(1945), + [sym_int_literal] = ACTIONS(1945), + [sym_float_literal] = ACTIONS(1945), + [sym_rune_literal] = ACTIONS(1945), + [anon_sym_SQUOTE] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(1945), + [anon_sym_c_SQUOTE] = ACTIONS(1945), + [anon_sym_c_DQUOTE] = ACTIONS(1945), + [anon_sym_r_SQUOTE] = ACTIONS(1945), + [anon_sym_r_DQUOTE] = ACTIONS(1945), + [sym_pseudo_compile_time_identifier] = ACTIONS(1945), + [anon_sym_shared] = ACTIONS(1945), + [aux_sym_sum_type_token1] = ACTIONS(1945), + [anon_sym_PIPE2] = ACTIONS(1943), + [anon_sym_map_LBRACK] = ACTIONS(1945), + [anon_sym_chan] = ACTIONS(1945), + [anon_sym_thread] = ACTIONS(1945), + [anon_sym_atomic] = ACTIONS(1945), + [anon_sym_assert] = ACTIONS(1945), + [anon_sym_defer] = ACTIONS(1945), + [anon_sym_goto] = ACTIONS(1945), + [anon_sym_break] = ACTIONS(1945), + [anon_sym_continue] = ACTIONS(1945), + [anon_sym_return] = ACTIONS(1945), + [anon_sym_DOLLARfor] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1945), + [anon_sym_POUND] = ACTIONS(1945), + [anon_sym_asm] = ACTIONS(1945), + [anon_sym_AT_LBRACK] = ACTIONS(1945), + }, + [1455] = { + [sym_line_comment] = STATE(1455), + [sym_block_comment] = STATE(1455), + [aux_sym_strictly_expression_list_repeat1] = STATE(1448), + [ts_builtin_sym_end] = ACTIONS(3492), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LF] = ACTIONS(1695), + [anon_sym_CR] = ACTIONS(1695), + [anon_sym_CR_LF] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_COMMA] = ACTIONS(3498), + [anon_sym_const] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym___global] = ACTIONS(1695), + [anon_sym_type] = ACTIONS(1695), + [anon_sym_fn] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_STAR] = ACTIONS(1695), + [anon_sym_struct] = ACTIONS(1695), + [anon_sym_union] = ACTIONS(1695), + [anon_sym_pub] = ACTIONS(1695), + [anon_sym_mut] = ACTIONS(1695), + [anon_sym_enum] = ACTIONS(1695), + [anon_sym_interface] = ACTIONS(1695), + [anon_sym_QMARK] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1695), + [anon_sym_go] = ACTIONS(1695), + [anon_sym_spawn] = ACTIONS(1695), + [anon_sym_json_DOTdecode] = ACTIONS(1695), + [anon_sym_LBRACK2] = ACTIONS(1695), + [anon_sym_TILDE] = ACTIONS(1695), + [anon_sym_CARET] = ACTIONS(1695), + [anon_sym_AMP] = ACTIONS(1695), + [anon_sym_LT_DASH] = ACTIONS(1695), + [sym_none] = ACTIONS(1695), + [sym_true] = ACTIONS(1695), + [sym_false] = ACTIONS(1695), + [sym_nil] = ACTIONS(1695), + [anon_sym_if] = ACTIONS(1695), + [anon_sym_DOLLARif] = ACTIONS(1695), + [anon_sym_match] = ACTIONS(1695), + [anon_sym_select] = ACTIONS(1695), + [anon_sym_lock] = ACTIONS(1695), + [anon_sym_rlock] = ACTIONS(1695), + [anon_sym_unsafe] = ACTIONS(1695), + [anon_sym_sql] = ACTIONS(1695), + [sym_int_literal] = ACTIONS(1695), + [sym_float_literal] = ACTIONS(1695), + [sym_rune_literal] = ACTIONS(1695), + [anon_sym_SQUOTE] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [anon_sym_c_SQUOTE] = ACTIONS(1695), + [anon_sym_c_DQUOTE] = ACTIONS(1695), + [anon_sym_r_SQUOTE] = ACTIONS(1695), + [anon_sym_r_DQUOTE] = ACTIONS(1695), + [sym_pseudo_compile_time_identifier] = ACTIONS(1695), + [anon_sym_shared] = ACTIONS(1695), + [anon_sym_map_LBRACK] = ACTIONS(1695), + [anon_sym_chan] = ACTIONS(1695), + [anon_sym_thread] = ACTIONS(1695), + [anon_sym_atomic] = ACTIONS(1695), + [anon_sym_assert] = ACTIONS(1695), + [anon_sym_defer] = ACTIONS(1695), + [anon_sym_goto] = ACTIONS(1695), + [anon_sym_break] = ACTIONS(1695), + [anon_sym_continue] = ACTIONS(1695), + [anon_sym_return] = ACTIONS(1695), + [anon_sym_DOLLARfor] = ACTIONS(1695), + [anon_sym_for] = ACTIONS(1695), + [anon_sym_POUND] = ACTIONS(1695), + [anon_sym_asm] = ACTIONS(1695), + [anon_sym_AT_LBRACK] = ACTIONS(1695), + }, + [1456] = { + [sym_line_comment] = STATE(1456), + [sym_block_comment] = STATE(1456), + [sym_block] = STATE(1514), [ts_builtin_sym_end] = ACTIONS(4064), [sym_identifier] = ACTIONS(4066), [anon_sym_LF] = ACTIONS(4066), @@ -175554,7 +177893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_LBRACE] = ACTIONS(4068), [anon_sym_const] = ACTIONS(4066), [anon_sym_LPAREN] = ACTIONS(4066), [anon_sym___global] = ACTIONS(4066), @@ -175618,30 +177957,638 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(4066), [anon_sym_AT_LBRACK] = ACTIONS(4066), }, - [1432] = { - [sym_line_comment] = STATE(1432), - [sym_block_comment] = STATE(1432), - [sym_reference_expression] = STATE(4386), - [sym_type_reference_expression] = STATE(2419), + [1457] = { + [sym_line_comment] = STATE(1457), + [sym_block_comment] = STATE(1457), + [sym_reference_expression] = STATE(4478), + [sym_type_reference_expression] = STATE(2459), + [sym_plain_type] = STATE(2617), + [sym__plain_type_without_special] = STATE(2595), + [sym_anon_struct_type] = STATE(2596), + [sym_multi_return_type] = STATE(2595), + [sym_result_type] = STATE(2595), + [sym_option_type] = STATE(2595), + [sym_qualified_type] = STATE(2459), + [sym_fixed_array_type] = STATE(2596), + [sym_array_type] = STATE(2596), + [sym_pointer_type] = STATE(2596), + [sym_wrong_pointer_type] = STATE(2596), + [sym_map_type] = STATE(2596), + [sym_channel_type] = STATE(2596), + [sym_shared_type] = STATE(2596), + [sym_thread_type] = STATE(2596), + [sym_atomic_type] = STATE(2596), + [sym_generic_type] = STATE(2596), + [sym_function_type] = STATE(2596), + [sym_identifier] = ACTIONS(4070), + [anon_sym_LF] = ACTIONS(605), + [anon_sym_CR] = ACTIONS(605), + [anon_sym_CR_LF] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(605), + [anon_sym_DOT] = ACTIONS(605), + [anon_sym_as] = ACTIONS(605), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_RBRACE] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_fn] = ACTIONS(4074), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(4076), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [anon_sym_LT_EQ] = ACTIONS(605), + [anon_sym_GT_EQ] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(4078), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_QMARK] = ACTIONS(4080), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_LBRACK2] = ACTIONS(4084), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(4086), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_GT_GT_GT] = ACTIONS(605), + [anon_sym_AMP_CARET] = ACTIONS(605), + [anon_sym_AMP_AMP] = ACTIONS(605), + [anon_sym_PIPE_PIPE] = ACTIONS(605), + [anon_sym_or] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(605), + [anon_sym_POUND_LBRACK] = ACTIONS(605), + [anon_sym_is] = ACTIONS(605), + [anon_sym_BANGis] = ACTIONS(605), + [anon_sym_in] = ACTIONS(605), + [anon_sym_BANGin] = ACTIONS(605), + [anon_sym_shared] = ACTIONS(4088), + [anon_sym_map_LBRACK] = ACTIONS(4090), + [anon_sym_chan] = ACTIONS(4092), + [anon_sym_thread] = ACTIONS(4094), + [anon_sym_atomic] = ACTIONS(4096), + }, + [1458] = { + [sym_line_comment] = STATE(1458), + [sym_block_comment] = STATE(1458), + [sym_reference_expression] = STATE(4478), + [sym_type_reference_expression] = STATE(2459), + [sym_plain_type] = STATE(2612), + [sym__plain_type_without_special] = STATE(2595), + [sym_anon_struct_type] = STATE(2596), + [sym_multi_return_type] = STATE(2595), + [sym_result_type] = STATE(2595), + [sym_option_type] = STATE(2595), + [sym_qualified_type] = STATE(2459), + [sym_fixed_array_type] = STATE(2596), + [sym_array_type] = STATE(2596), + [sym_pointer_type] = STATE(2596), + [sym_wrong_pointer_type] = STATE(2596), + [sym_map_type] = STATE(2596), + [sym_channel_type] = STATE(2596), + [sym_shared_type] = STATE(2596), + [sym_thread_type] = STATE(2596), + [sym_atomic_type] = STATE(2596), + [sym_generic_type] = STATE(2596), + [sym_function_type] = STATE(2596), + [sym_identifier] = ACTIONS(4070), + [anon_sym_LF] = ACTIONS(601), + [anon_sym_CR] = ACTIONS(601), + [anon_sym_CR_LF] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(601), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_COMMA] = ACTIONS(601), + [anon_sym_RBRACE] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_fn] = ACTIONS(4074), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(4076), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ] = ACTIONS(601), + [anon_sym_LT_EQ] = ACTIONS(601), + [anon_sym_GT_EQ] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(4078), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_QMARK] = ACTIONS(4080), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_LBRACK2] = ACTIONS(4084), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(4086), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(601), + [anon_sym_AMP_CARET] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(601), + [anon_sym_or] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(601), + [anon_sym_POUND_LBRACK] = ACTIONS(601), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(601), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(601), + [anon_sym_shared] = ACTIONS(4088), + [anon_sym_map_LBRACK] = ACTIONS(4090), + [anon_sym_chan] = ACTIONS(4092), + [anon_sym_thread] = ACTIONS(4094), + [anon_sym_atomic] = ACTIONS(4096), + }, + [1459] = { + [sym_line_comment] = STATE(1459), + [sym_block_comment] = STATE(1459), + [ts_builtin_sym_end] = ACTIONS(2681), + [sym_identifier] = ACTIONS(2683), + [anon_sym_LF] = ACTIONS(2683), + [anon_sym_CR] = ACTIONS(2683), + [anon_sym_CR_LF] = ACTIONS(2683), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_const] = ACTIONS(2683), + [anon_sym_LPAREN] = ACTIONS(2683), + [anon_sym___global] = ACTIONS(2683), + [anon_sym_type] = ACTIONS(2683), + [anon_sym_fn] = ACTIONS(2683), + [anon_sym_PLUS] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2683), + [anon_sym_pub] = ACTIONS(2683), + [anon_sym_mut] = ACTIONS(2683), + [anon_sym_enum] = ACTIONS(2683), + [anon_sym_interface] = ACTIONS(2683), + [anon_sym_QMARK] = ACTIONS(2683), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_go] = ACTIONS(2683), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(2683), + [anon_sym_LBRACK2] = ACTIONS(2683), + [anon_sym_TILDE] = ACTIONS(2683), + [anon_sym_CARET] = ACTIONS(2683), + [anon_sym_AMP] = ACTIONS(2683), + [anon_sym_LT_DASH] = ACTIONS(2683), + [sym_none] = ACTIONS(2683), + [sym_true] = ACTIONS(2683), + [sym_false] = ACTIONS(2683), + [sym_nil] = ACTIONS(2683), + [anon_sym_if] = ACTIONS(2683), + [anon_sym_DOLLARif] = ACTIONS(2683), + [anon_sym_match] = ACTIONS(2683), + [anon_sym_select] = ACTIONS(2683), + [anon_sym_lock] = ACTIONS(2683), + [anon_sym_rlock] = ACTIONS(2683), + [anon_sym_unsafe] = ACTIONS(2683), + [anon_sym_sql] = ACTIONS(2683), + [sym_int_literal] = ACTIONS(2683), + [sym_float_literal] = ACTIONS(2683), + [sym_rune_literal] = ACTIONS(2683), + [anon_sym_SQUOTE] = ACTIONS(2683), + [anon_sym_DQUOTE] = ACTIONS(2683), + [anon_sym_c_SQUOTE] = ACTIONS(2683), + [anon_sym_c_DQUOTE] = ACTIONS(2683), + [anon_sym_r_SQUOTE] = ACTIONS(2683), + [anon_sym_r_DQUOTE] = ACTIONS(2683), + [sym_pseudo_compile_time_identifier] = ACTIONS(2683), + [anon_sym_shared] = ACTIONS(2683), + [anon_sym_map_LBRACK] = ACTIONS(2683), + [anon_sym_chan] = ACTIONS(2683), + [anon_sym_thread] = ACTIONS(2683), + [anon_sym_atomic] = ACTIONS(2683), + [anon_sym_assert] = ACTIONS(2683), + [anon_sym_defer] = ACTIONS(2683), + [anon_sym_goto] = ACTIONS(2683), + [anon_sym_break] = ACTIONS(2683), + [anon_sym_continue] = ACTIONS(2683), + [anon_sym_return] = ACTIONS(2683), + [anon_sym_DOLLARfor] = ACTIONS(2683), + [anon_sym_for] = ACTIONS(2683), + [anon_sym_POUND] = ACTIONS(2683), + [anon_sym_asm] = ACTIONS(2683), + [anon_sym_AT_LBRACK] = ACTIONS(2683), + }, + [1460] = { + [sym_line_comment] = STATE(1460), + [sym_block_comment] = STATE(1460), + [ts_builtin_sym_end] = ACTIONS(2093), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LF] = ACTIONS(2095), + [anon_sym_CR] = ACTIONS(2095), + [anon_sym_CR_LF] = ACTIONS(2095), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_const] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym___global] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2095), + [anon_sym_fn] = ACTIONS(2095), + [anon_sym_PLUS] = ACTIONS(2095), + [anon_sym_DASH] = ACTIONS(2095), + [anon_sym_STAR] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2095), + [anon_sym_union] = ACTIONS(2095), + [anon_sym_pub] = ACTIONS(2095), + [anon_sym_mut] = ACTIONS(2095), + [anon_sym_enum] = ACTIONS(2095), + [anon_sym_interface] = ACTIONS(2095), + [anon_sym_QMARK] = ACTIONS(2095), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_go] = ACTIONS(2095), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(2095), + [anon_sym_LBRACK2] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_LT_DASH] = ACTIONS(2095), + [sym_none] = ACTIONS(2095), + [sym_true] = ACTIONS(2095), + [sym_false] = ACTIONS(2095), + [sym_nil] = ACTIONS(2095), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_DOLLARif] = ACTIONS(2095), + [anon_sym_match] = ACTIONS(2095), + [anon_sym_select] = ACTIONS(2095), + [anon_sym_lock] = ACTIONS(2095), + [anon_sym_rlock] = ACTIONS(2095), + [anon_sym_unsafe] = ACTIONS(2095), + [anon_sym_sql] = ACTIONS(2095), + [sym_int_literal] = ACTIONS(2095), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [anon_sym_SQUOTE] = ACTIONS(2095), + [anon_sym_DQUOTE] = ACTIONS(2095), + [anon_sym_c_SQUOTE] = ACTIONS(2095), + [anon_sym_c_DQUOTE] = ACTIONS(2095), + [anon_sym_r_SQUOTE] = ACTIONS(2095), + [anon_sym_r_DQUOTE] = ACTIONS(2095), + [sym_pseudo_compile_time_identifier] = ACTIONS(2095), + [anon_sym_shared] = ACTIONS(2095), + [anon_sym_map_LBRACK] = ACTIONS(2095), + [anon_sym_chan] = ACTIONS(2095), + [anon_sym_thread] = ACTIONS(2095), + [anon_sym_atomic] = ACTIONS(2095), + [anon_sym_assert] = ACTIONS(2095), + [anon_sym_defer] = ACTIONS(2095), + [anon_sym_goto] = ACTIONS(2095), + [anon_sym_break] = ACTIONS(2095), + [anon_sym_continue] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2095), + [anon_sym_DOLLARfor] = ACTIONS(2095), + [anon_sym_for] = ACTIONS(2095), + [anon_sym_POUND] = ACTIONS(2095), + [anon_sym_asm] = ACTIONS(2095), + [anon_sym_AT_LBRACK] = ACTIONS(2095), + }, + [1461] = { + [sym_line_comment] = STATE(1461), + [sym_block_comment] = STATE(1461), + [ts_builtin_sym_end] = ACTIONS(2093), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LF] = ACTIONS(2095), + [anon_sym_CR] = ACTIONS(2095), + [anon_sym_CR_LF] = ACTIONS(2095), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_const] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym___global] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2095), + [anon_sym_fn] = ACTIONS(2095), + [anon_sym_PLUS] = ACTIONS(2095), + [anon_sym_DASH] = ACTIONS(2095), + [anon_sym_STAR] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2095), + [anon_sym_union] = ACTIONS(2095), + [anon_sym_pub] = ACTIONS(2095), + [anon_sym_mut] = ACTIONS(2095), + [anon_sym_enum] = ACTIONS(2095), + [anon_sym_interface] = ACTIONS(2095), + [anon_sym_QMARK] = ACTIONS(2095), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_go] = ACTIONS(2095), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(2095), + [anon_sym_LBRACK2] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_LT_DASH] = ACTIONS(2095), + [sym_none] = ACTIONS(2095), + [sym_true] = ACTIONS(2095), + [sym_false] = ACTIONS(2095), + [sym_nil] = ACTIONS(2095), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_DOLLARif] = ACTIONS(2095), + [anon_sym_match] = ACTIONS(2095), + [anon_sym_select] = ACTIONS(2095), + [anon_sym_lock] = ACTIONS(2095), + [anon_sym_rlock] = ACTIONS(2095), + [anon_sym_unsafe] = ACTIONS(2095), + [anon_sym_sql] = ACTIONS(2095), + [sym_int_literal] = ACTIONS(2095), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [anon_sym_SQUOTE] = ACTIONS(2095), + [anon_sym_DQUOTE] = ACTIONS(2095), + [anon_sym_c_SQUOTE] = ACTIONS(2095), + [anon_sym_c_DQUOTE] = ACTIONS(2095), + [anon_sym_r_SQUOTE] = ACTIONS(2095), + [anon_sym_r_DQUOTE] = ACTIONS(2095), + [sym_pseudo_compile_time_identifier] = ACTIONS(2095), + [anon_sym_shared] = ACTIONS(2095), + [anon_sym_map_LBRACK] = ACTIONS(2095), + [anon_sym_chan] = ACTIONS(2095), + [anon_sym_thread] = ACTIONS(2095), + [anon_sym_atomic] = ACTIONS(2095), + [anon_sym_assert] = ACTIONS(2095), + [anon_sym_defer] = ACTIONS(2095), + [anon_sym_goto] = ACTIONS(2095), + [anon_sym_break] = ACTIONS(2095), + [anon_sym_continue] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2095), + [anon_sym_DOLLARfor] = ACTIONS(2095), + [anon_sym_for] = ACTIONS(2095), + [anon_sym_POUND] = ACTIONS(2095), + [anon_sym_asm] = ACTIONS(2095), + [anon_sym_AT_LBRACK] = ACTIONS(2095), + }, + [1462] = { + [sym_line_comment] = STATE(1462), + [sym_block_comment] = STATE(1462), + [sym_block] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(4098), + [sym_identifier] = ACTIONS(4100), + [anon_sym_LF] = ACTIONS(4100), + [anon_sym_CR] = ACTIONS(4100), + [anon_sym_CR_LF] = ACTIONS(4100), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_const] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(4100), + [anon_sym___global] = ACTIONS(4100), + [anon_sym_type] = ACTIONS(4100), + [anon_sym_fn] = ACTIONS(4100), + [anon_sym_PLUS] = ACTIONS(4100), + [anon_sym_DASH] = ACTIONS(4100), + [anon_sym_STAR] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(4100), + [anon_sym_union] = ACTIONS(4100), + [anon_sym_pub] = ACTIONS(4100), + [anon_sym_mut] = ACTIONS(4100), + [anon_sym_enum] = ACTIONS(4100), + [anon_sym_interface] = ACTIONS(4100), + [anon_sym_QMARK] = ACTIONS(4100), + [anon_sym_BANG] = ACTIONS(4100), + [anon_sym_go] = ACTIONS(4100), + [anon_sym_spawn] = ACTIONS(4100), + [anon_sym_json_DOTdecode] = ACTIONS(4100), + [anon_sym_LBRACK2] = ACTIONS(4100), + [anon_sym_TILDE] = ACTIONS(4100), + [anon_sym_CARET] = ACTIONS(4100), + [anon_sym_AMP] = ACTIONS(4100), + [anon_sym_LT_DASH] = ACTIONS(4100), + [sym_none] = ACTIONS(4100), + [sym_true] = ACTIONS(4100), + [sym_false] = ACTIONS(4100), + [sym_nil] = ACTIONS(4100), + [anon_sym_if] = ACTIONS(4100), + [anon_sym_DOLLARif] = ACTIONS(4100), + [anon_sym_match] = ACTIONS(4100), + [anon_sym_select] = ACTIONS(4100), + [anon_sym_lock] = ACTIONS(4100), + [anon_sym_rlock] = ACTIONS(4100), + [anon_sym_unsafe] = ACTIONS(4100), + [anon_sym_sql] = ACTIONS(4100), + [sym_int_literal] = ACTIONS(4100), + [sym_float_literal] = ACTIONS(4100), + [sym_rune_literal] = ACTIONS(4100), + [anon_sym_SQUOTE] = ACTIONS(4100), + [anon_sym_DQUOTE] = ACTIONS(4100), + [anon_sym_c_SQUOTE] = ACTIONS(4100), + [anon_sym_c_DQUOTE] = ACTIONS(4100), + [anon_sym_r_SQUOTE] = ACTIONS(4100), + [anon_sym_r_DQUOTE] = ACTIONS(4100), + [sym_pseudo_compile_time_identifier] = ACTIONS(4100), + [anon_sym_shared] = ACTIONS(4100), + [anon_sym_map_LBRACK] = ACTIONS(4100), + [anon_sym_chan] = ACTIONS(4100), + [anon_sym_thread] = ACTIONS(4100), + [anon_sym_atomic] = ACTIONS(4100), + [anon_sym_assert] = ACTIONS(4100), + [anon_sym_defer] = ACTIONS(4100), + [anon_sym_goto] = ACTIONS(4100), + [anon_sym_break] = ACTIONS(4100), + [anon_sym_continue] = ACTIONS(4100), + [anon_sym_return] = ACTIONS(4100), + [anon_sym_DOLLARfor] = ACTIONS(4100), + [anon_sym_for] = ACTIONS(4100), + [anon_sym_POUND] = ACTIONS(4100), + [anon_sym_asm] = ACTIONS(4100), + [anon_sym_AT_LBRACK] = ACTIONS(4100), + }, + [1463] = { + [sym_line_comment] = STATE(1463), + [sym_block_comment] = STATE(1463), + [sym_block] = STATE(1498), + [ts_builtin_sym_end] = ACTIONS(4102), + [sym_identifier] = ACTIONS(4104), + [anon_sym_LF] = ACTIONS(4104), + [anon_sym_CR] = ACTIONS(4104), + [anon_sym_CR_LF] = ACTIONS(4104), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4104), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_const] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym___global] = ACTIONS(4104), + [anon_sym_type] = ACTIONS(4104), + [anon_sym_fn] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4104), + [anon_sym_STAR] = ACTIONS(4104), + [anon_sym_struct] = ACTIONS(4104), + [anon_sym_union] = ACTIONS(4104), + [anon_sym_pub] = ACTIONS(4104), + [anon_sym_mut] = ACTIONS(4104), + [anon_sym_enum] = ACTIONS(4104), + [anon_sym_interface] = ACTIONS(4104), + [anon_sym_QMARK] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4104), + [anon_sym_go] = ACTIONS(4104), + [anon_sym_spawn] = ACTIONS(4104), + [anon_sym_json_DOTdecode] = ACTIONS(4104), + [anon_sym_LBRACK2] = ACTIONS(4104), + [anon_sym_TILDE] = ACTIONS(4104), + [anon_sym_CARET] = ACTIONS(4104), + [anon_sym_AMP] = ACTIONS(4104), + [anon_sym_LT_DASH] = ACTIONS(4104), + [sym_none] = ACTIONS(4104), + [sym_true] = ACTIONS(4104), + [sym_false] = ACTIONS(4104), + [sym_nil] = ACTIONS(4104), + [anon_sym_if] = ACTIONS(4104), + [anon_sym_DOLLARif] = ACTIONS(4104), + [anon_sym_match] = ACTIONS(4104), + [anon_sym_select] = ACTIONS(4104), + [anon_sym_lock] = ACTIONS(4104), + [anon_sym_rlock] = ACTIONS(4104), + [anon_sym_unsafe] = ACTIONS(4104), + [anon_sym_sql] = ACTIONS(4104), + [sym_int_literal] = ACTIONS(4104), + [sym_float_literal] = ACTIONS(4104), + [sym_rune_literal] = ACTIONS(4104), + [anon_sym_SQUOTE] = ACTIONS(4104), + [anon_sym_DQUOTE] = ACTIONS(4104), + [anon_sym_c_SQUOTE] = ACTIONS(4104), + [anon_sym_c_DQUOTE] = ACTIONS(4104), + [anon_sym_r_SQUOTE] = ACTIONS(4104), + [anon_sym_r_DQUOTE] = ACTIONS(4104), + [sym_pseudo_compile_time_identifier] = ACTIONS(4104), + [anon_sym_shared] = ACTIONS(4104), + [anon_sym_map_LBRACK] = ACTIONS(4104), + [anon_sym_chan] = ACTIONS(4104), + [anon_sym_thread] = ACTIONS(4104), + [anon_sym_atomic] = ACTIONS(4104), + [anon_sym_assert] = ACTIONS(4104), + [anon_sym_defer] = ACTIONS(4104), + [anon_sym_goto] = ACTIONS(4104), + [anon_sym_break] = ACTIONS(4104), + [anon_sym_continue] = ACTIONS(4104), + [anon_sym_return] = ACTIONS(4104), + [anon_sym_DOLLARfor] = ACTIONS(4104), + [anon_sym_for] = ACTIONS(4104), + [anon_sym_POUND] = ACTIONS(4104), + [anon_sym_asm] = ACTIONS(4104), + [anon_sym_AT_LBRACK] = ACTIONS(4104), + }, + [1464] = { + [sym_line_comment] = STATE(1464), + [sym_block_comment] = STATE(1464), + [sym_block] = STATE(1543), + [ts_builtin_sym_end] = ACTIONS(4106), + [sym_identifier] = ACTIONS(4108), + [anon_sym_LF] = ACTIONS(4108), + [anon_sym_CR] = ACTIONS(4108), + [anon_sym_CR_LF] = ACTIONS(4108), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_const] = ACTIONS(4108), + [anon_sym_LPAREN] = ACTIONS(4108), + [anon_sym___global] = ACTIONS(4108), + [anon_sym_type] = ACTIONS(4108), + [anon_sym_fn] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4108), + [anon_sym_struct] = ACTIONS(4108), + [anon_sym_union] = ACTIONS(4108), + [anon_sym_pub] = ACTIONS(4108), + [anon_sym_mut] = ACTIONS(4108), + [anon_sym_enum] = ACTIONS(4108), + [anon_sym_interface] = ACTIONS(4108), + [anon_sym_QMARK] = ACTIONS(4108), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_go] = ACTIONS(4108), + [anon_sym_spawn] = ACTIONS(4108), + [anon_sym_json_DOTdecode] = ACTIONS(4108), + [anon_sym_LBRACK2] = ACTIONS(4108), + [anon_sym_TILDE] = ACTIONS(4108), + [anon_sym_CARET] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4108), + [anon_sym_LT_DASH] = ACTIONS(4108), + [sym_none] = ACTIONS(4108), + [sym_true] = ACTIONS(4108), + [sym_false] = ACTIONS(4108), + [sym_nil] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_DOLLARif] = ACTIONS(4108), + [anon_sym_match] = ACTIONS(4108), + [anon_sym_select] = ACTIONS(4108), + [anon_sym_lock] = ACTIONS(4108), + [anon_sym_rlock] = ACTIONS(4108), + [anon_sym_unsafe] = ACTIONS(4108), + [anon_sym_sql] = ACTIONS(4108), + [sym_int_literal] = ACTIONS(4108), + [sym_float_literal] = ACTIONS(4108), + [sym_rune_literal] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4108), + [anon_sym_DQUOTE] = ACTIONS(4108), + [anon_sym_c_SQUOTE] = ACTIONS(4108), + [anon_sym_c_DQUOTE] = ACTIONS(4108), + [anon_sym_r_SQUOTE] = ACTIONS(4108), + [anon_sym_r_DQUOTE] = ACTIONS(4108), + [sym_pseudo_compile_time_identifier] = ACTIONS(4108), + [anon_sym_shared] = ACTIONS(4108), + [anon_sym_map_LBRACK] = ACTIONS(4108), + [anon_sym_chan] = ACTIONS(4108), + [anon_sym_thread] = ACTIONS(4108), + [anon_sym_atomic] = ACTIONS(4108), + [anon_sym_assert] = ACTIONS(4108), + [anon_sym_defer] = ACTIONS(4108), + [anon_sym_goto] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_DOLLARfor] = ACTIONS(4108), + [anon_sym_for] = ACTIONS(4108), + [anon_sym_POUND] = ACTIONS(4108), + [anon_sym_asm] = ACTIONS(4108), + [anon_sym_AT_LBRACK] = ACTIONS(4108), + }, + [1465] = { + [sym_line_comment] = STATE(1465), + [sym_block_comment] = STATE(1465), + [sym_reference_expression] = STATE(4478), + [sym_type_reference_expression] = STATE(2459), [sym_plain_type] = STATE(2541), - [sym__plain_type_without_special] = STATE(2533), - [sym_anon_struct_type] = STATE(2535), - [sym_multi_return_type] = STATE(2533), - [sym_result_type] = STATE(2533), - [sym_option_type] = STATE(2533), - [sym_qualified_type] = STATE(2419), - [sym_fixed_array_type] = STATE(2535), - [sym_array_type] = STATE(2535), - [sym_pointer_type] = STATE(2535), - [sym_wrong_pointer_type] = STATE(2535), - [sym_map_type] = STATE(2535), - [sym_channel_type] = STATE(2535), - [sym_shared_type] = STATE(2535), - [sym_thread_type] = STATE(2535), - [sym_atomic_type] = STATE(2535), - [sym_generic_type] = STATE(2535), - [sym_function_type] = STATE(2535), - [sym_identifier] = ACTIONS(4068), + [sym__plain_type_without_special] = STATE(2595), + [sym_anon_struct_type] = STATE(2596), + [sym_multi_return_type] = STATE(2595), + [sym_result_type] = STATE(2595), + [sym_option_type] = STATE(2595), + [sym_qualified_type] = STATE(2459), + [sym_fixed_array_type] = STATE(2596), + [sym_array_type] = STATE(2596), + [sym_pointer_type] = STATE(2596), + [sym_wrong_pointer_type] = STATE(2596), + [sym_map_type] = STATE(2596), + [sym_channel_type] = STATE(2596), + [sym_shared_type] = STATE(2596), + [sym_thread_type] = STATE(2596), + [sym_atomic_type] = STATE(2596), + [sym_generic_type] = STATE(2596), + [sym_function_type] = STATE(2596), + [sym_identifier] = ACTIONS(4070), [anon_sym_LF] = ACTIONS(567), [anon_sym_CR] = ACTIONS(567), [anon_sym_CR_LF] = ACTIONS(567), @@ -175652,12 +178599,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(567), [anon_sym_COMMA] = ACTIONS(567), [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(4072), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_fn] = ACTIONS(4074), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(4074), + [anon_sym_STAR] = ACTIONS(4076), [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(567), [anon_sym_LT] = ACTIONS(567), @@ -175667,14 +178613,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(567), [anon_sym_GT_EQ] = ACTIONS(567), [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(4076), + [anon_sym_struct] = ACTIONS(4078), [anon_sym_PLUS_PLUS] = ACTIONS(567), [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(4078), - [anon_sym_BANG] = ACTIONS(4080), - [anon_sym_LBRACK2] = ACTIONS(4082), + [anon_sym_QMARK] = ACTIONS(4080), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_LBRACK2] = ACTIONS(4084), [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(4084), + [anon_sym_AMP] = ACTIONS(4086), [anon_sym_LT_LT] = ACTIONS(567), [anon_sym_GT_GT] = ACTIONS(567), [anon_sym_GT_GT_GT] = ACTIONS(567), @@ -175688,481 +178635,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(567), [anon_sym_in] = ACTIONS(567), [anon_sym_BANGin] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(4086), - [anon_sym_map_LBRACK] = ACTIONS(4088), - [anon_sym_chan] = ACTIONS(4090), - [anon_sym_thread] = ACTIONS(4092), - [anon_sym_atomic] = ACTIONS(4094), - }, - [1433] = { - [sym_line_comment] = STATE(1433), - [sym_block_comment] = STATE(1433), - [sym_block] = STATE(1521), - [ts_builtin_sym_end] = ACTIONS(4096), - [sym_identifier] = ACTIONS(4098), - [anon_sym_LF] = ACTIONS(4098), - [anon_sym_CR] = ACTIONS(4098), - [anon_sym_CR_LF] = ACTIONS(4098), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4098), - [anon_sym_LBRACE] = ACTIONS(4022), - [anon_sym_const] = ACTIONS(4098), - [anon_sym_LPAREN] = ACTIONS(4098), - [anon_sym___global] = ACTIONS(4098), - [anon_sym_type] = ACTIONS(4098), - [anon_sym_fn] = ACTIONS(4098), - [anon_sym_PLUS] = ACTIONS(4098), - [anon_sym_DASH] = ACTIONS(4098), - [anon_sym_STAR] = ACTIONS(4098), - [anon_sym_struct] = ACTIONS(4098), - [anon_sym_union] = ACTIONS(4098), - [anon_sym_pub] = ACTIONS(4098), - [anon_sym_mut] = ACTIONS(4098), - [anon_sym_enum] = ACTIONS(4098), - [anon_sym_interface] = ACTIONS(4098), - [anon_sym_QMARK] = ACTIONS(4098), - [anon_sym_BANG] = ACTIONS(4098), - [anon_sym_go] = ACTIONS(4098), - [anon_sym_spawn] = ACTIONS(4098), - [anon_sym_json_DOTdecode] = ACTIONS(4098), - [anon_sym_LBRACK2] = ACTIONS(4098), - [anon_sym_TILDE] = ACTIONS(4098), - [anon_sym_CARET] = ACTIONS(4098), - [anon_sym_AMP] = ACTIONS(4098), - [anon_sym_LT_DASH] = ACTIONS(4098), - [sym_none] = ACTIONS(4098), - [sym_true] = ACTIONS(4098), - [sym_false] = ACTIONS(4098), - [sym_nil] = ACTIONS(4098), - [anon_sym_if] = ACTIONS(4098), - [anon_sym_DOLLARif] = ACTIONS(4098), - [anon_sym_match] = ACTIONS(4098), - [anon_sym_select] = ACTIONS(4098), - [anon_sym_lock] = ACTIONS(4098), - [anon_sym_rlock] = ACTIONS(4098), - [anon_sym_unsafe] = ACTIONS(4098), - [anon_sym_sql] = ACTIONS(4098), - [sym_int_literal] = ACTIONS(4098), - [sym_float_literal] = ACTIONS(4098), - [sym_rune_literal] = ACTIONS(4098), - [anon_sym_SQUOTE] = ACTIONS(4098), - [anon_sym_DQUOTE] = ACTIONS(4098), - [anon_sym_c_SQUOTE] = ACTIONS(4098), - [anon_sym_c_DQUOTE] = ACTIONS(4098), - [anon_sym_r_SQUOTE] = ACTIONS(4098), - [anon_sym_r_DQUOTE] = ACTIONS(4098), - [sym_pseudo_compile_time_identifier] = ACTIONS(4098), - [anon_sym_shared] = ACTIONS(4098), - [anon_sym_map_LBRACK] = ACTIONS(4098), - [anon_sym_chan] = ACTIONS(4098), - [anon_sym_thread] = ACTIONS(4098), - [anon_sym_atomic] = ACTIONS(4098), - [anon_sym_assert] = ACTIONS(4098), - [anon_sym_defer] = ACTIONS(4098), - [anon_sym_goto] = ACTIONS(4098), - [anon_sym_break] = ACTIONS(4098), - [anon_sym_continue] = ACTIONS(4098), - [anon_sym_return] = ACTIONS(4098), - [anon_sym_DOLLARfor] = ACTIONS(4098), - [anon_sym_for] = ACTIONS(4098), - [anon_sym_POUND] = ACTIONS(4098), - [anon_sym_asm] = ACTIONS(4098), - [anon_sym_AT_LBRACK] = ACTIONS(4098), - }, - [1434] = { - [sym_line_comment] = STATE(1434), - [sym_block_comment] = STATE(1434), - [sym_block] = STATE(1569), - [ts_builtin_sym_end] = ACTIONS(4100), - [sym_identifier] = ACTIONS(4102), - [anon_sym_LF] = ACTIONS(4102), - [anon_sym_CR] = ACTIONS(4102), - [anon_sym_CR_LF] = ACTIONS(4102), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4102), - [anon_sym_LBRACE] = ACTIONS(4022), - [anon_sym_const] = ACTIONS(4102), - [anon_sym_LPAREN] = ACTIONS(4102), - [anon_sym___global] = ACTIONS(4102), - [anon_sym_type] = ACTIONS(4102), - [anon_sym_fn] = ACTIONS(4102), - [anon_sym_PLUS] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4102), - [anon_sym_STAR] = ACTIONS(4102), - [anon_sym_struct] = ACTIONS(4102), - [anon_sym_union] = ACTIONS(4102), - [anon_sym_pub] = ACTIONS(4102), - [anon_sym_mut] = ACTIONS(4102), - [anon_sym_enum] = ACTIONS(4102), - [anon_sym_interface] = ACTIONS(4102), - [anon_sym_QMARK] = ACTIONS(4102), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_go] = ACTIONS(4102), - [anon_sym_spawn] = ACTIONS(4102), - [anon_sym_json_DOTdecode] = ACTIONS(4102), - [anon_sym_LBRACK2] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_CARET] = ACTIONS(4102), - [anon_sym_AMP] = ACTIONS(4102), - [anon_sym_LT_DASH] = ACTIONS(4102), - [sym_none] = ACTIONS(4102), - [sym_true] = ACTIONS(4102), - [sym_false] = ACTIONS(4102), - [sym_nil] = ACTIONS(4102), - [anon_sym_if] = ACTIONS(4102), - [anon_sym_DOLLARif] = ACTIONS(4102), - [anon_sym_match] = ACTIONS(4102), - [anon_sym_select] = ACTIONS(4102), - [anon_sym_lock] = ACTIONS(4102), - [anon_sym_rlock] = ACTIONS(4102), - [anon_sym_unsafe] = ACTIONS(4102), - [anon_sym_sql] = ACTIONS(4102), - [sym_int_literal] = ACTIONS(4102), - [sym_float_literal] = ACTIONS(4102), - [sym_rune_literal] = ACTIONS(4102), - [anon_sym_SQUOTE] = ACTIONS(4102), - [anon_sym_DQUOTE] = ACTIONS(4102), - [anon_sym_c_SQUOTE] = ACTIONS(4102), - [anon_sym_c_DQUOTE] = ACTIONS(4102), - [anon_sym_r_SQUOTE] = ACTIONS(4102), - [anon_sym_r_DQUOTE] = ACTIONS(4102), - [sym_pseudo_compile_time_identifier] = ACTIONS(4102), - [anon_sym_shared] = ACTIONS(4102), - [anon_sym_map_LBRACK] = ACTIONS(4102), - [anon_sym_chan] = ACTIONS(4102), - [anon_sym_thread] = ACTIONS(4102), - [anon_sym_atomic] = ACTIONS(4102), - [anon_sym_assert] = ACTIONS(4102), - [anon_sym_defer] = ACTIONS(4102), - [anon_sym_goto] = ACTIONS(4102), - [anon_sym_break] = ACTIONS(4102), - [anon_sym_continue] = ACTIONS(4102), - [anon_sym_return] = ACTIONS(4102), - [anon_sym_DOLLARfor] = ACTIONS(4102), - [anon_sym_for] = ACTIONS(4102), - [anon_sym_POUND] = ACTIONS(4102), - [anon_sym_asm] = ACTIONS(4102), - [anon_sym_AT_LBRACK] = ACTIONS(4102), - }, - [1435] = { - [sym_line_comment] = STATE(1435), - [sym_block_comment] = STATE(1435), - [sym_block] = STATE(1518), - [ts_builtin_sym_end] = ACTIONS(4104), - [sym_identifier] = ACTIONS(4106), - [anon_sym_LF] = ACTIONS(4106), - [anon_sym_CR] = ACTIONS(4106), - [anon_sym_CR_LF] = ACTIONS(4106), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4106), - [anon_sym_LBRACE] = ACTIONS(4022), - [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), - [anon_sym_SQUOTE] = ACTIONS(4106), - [anon_sym_DQUOTE] = ACTIONS(4106), - [anon_sym_c_SQUOTE] = ACTIONS(4106), - [anon_sym_c_DQUOTE] = ACTIONS(4106), - [anon_sym_r_SQUOTE] = ACTIONS(4106), - [anon_sym_r_DQUOTE] = 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), - }, - [1436] = { - [sym_line_comment] = STATE(1436), - [sym_block_comment] = STATE(1436), - [sym_block] = STATE(1517), - [ts_builtin_sym_end] = ACTIONS(4108), - [sym_identifier] = ACTIONS(4110), - [anon_sym_LF] = ACTIONS(4110), - [anon_sym_CR] = ACTIONS(4110), - [anon_sym_CR_LF] = ACTIONS(4110), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4110), - [anon_sym_LBRACE] = ACTIONS(4022), - [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), - [anon_sym_SQUOTE] = ACTIONS(4110), - [anon_sym_DQUOTE] = ACTIONS(4110), - [anon_sym_c_SQUOTE] = ACTIONS(4110), - [anon_sym_c_DQUOTE] = ACTIONS(4110), - [anon_sym_r_SQUOTE] = ACTIONS(4110), - [anon_sym_r_DQUOTE] = 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), - }, - [1437] = { - [sym_line_comment] = STATE(1437), - [sym_block_comment] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(2425), - [sym_identifier] = ACTIONS(2427), - [anon_sym_LF] = ACTIONS(2427), - [anon_sym_CR] = ACTIONS(2427), - [anon_sym_CR_LF] = ACTIONS(2427), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2427), - [anon_sym_LBRACE] = ACTIONS(2427), - [anon_sym_const] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym___global] = ACTIONS(2427), - [anon_sym_type] = ACTIONS(2427), - [anon_sym_PIPE] = ACTIONS(2427), - [anon_sym_fn] = ACTIONS(2427), - [anon_sym_PLUS] = ACTIONS(2427), - [anon_sym_DASH] = ACTIONS(2427), - [anon_sym_STAR] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(2427), - [anon_sym_union] = ACTIONS(2427), - [anon_sym_pub] = ACTIONS(2427), - [anon_sym_mut] = ACTIONS(2427), - [anon_sym_enum] = ACTIONS(2427), - [anon_sym_interface] = ACTIONS(2427), - [anon_sym_QMARK] = ACTIONS(2427), - [anon_sym_BANG] = ACTIONS(2427), - [anon_sym_go] = ACTIONS(2427), - [anon_sym_spawn] = ACTIONS(2427), - [anon_sym_json_DOTdecode] = ACTIONS(2427), - [anon_sym_LBRACK2] = ACTIONS(2427), - [anon_sym_TILDE] = ACTIONS(2427), - [anon_sym_CARET] = ACTIONS(2427), - [anon_sym_AMP] = ACTIONS(2427), - [anon_sym_LT_DASH] = ACTIONS(2427), - [sym_none] = ACTIONS(2427), - [sym_true] = ACTIONS(2427), - [sym_false] = ACTIONS(2427), - [sym_nil] = ACTIONS(2427), - [anon_sym_if] = ACTIONS(2427), - [anon_sym_DOLLARif] = ACTIONS(2427), - [anon_sym_match] = ACTIONS(2427), - [anon_sym_select] = ACTIONS(2427), - [anon_sym_lock] = ACTIONS(2427), - [anon_sym_rlock] = ACTIONS(2427), - [anon_sym_unsafe] = ACTIONS(2427), - [anon_sym_sql] = ACTIONS(2427), - [sym_int_literal] = ACTIONS(2427), - [sym_float_literal] = ACTIONS(2427), - [sym_rune_literal] = ACTIONS(2427), - [anon_sym_SQUOTE] = ACTIONS(2427), - [anon_sym_DQUOTE] = ACTIONS(2427), - [anon_sym_c_SQUOTE] = ACTIONS(2427), - [anon_sym_c_DQUOTE] = ACTIONS(2427), - [anon_sym_r_SQUOTE] = ACTIONS(2427), - [anon_sym_r_DQUOTE] = ACTIONS(2427), - [sym_pseudo_compile_time_identifier] = ACTIONS(2427), - [anon_sym_shared] = ACTIONS(2427), - [anon_sym_map_LBRACK] = ACTIONS(2427), - [anon_sym_chan] = ACTIONS(2427), - [anon_sym_thread] = ACTIONS(2427), - [anon_sym_atomic] = ACTIONS(2427), - [anon_sym_assert] = ACTIONS(2427), - [anon_sym_defer] = ACTIONS(2427), - [anon_sym_goto] = ACTIONS(2427), - [anon_sym_break] = ACTIONS(2427), - [anon_sym_continue] = ACTIONS(2427), - [anon_sym_return] = ACTIONS(2427), - [anon_sym_DOLLARfor] = ACTIONS(2427), - [anon_sym_for] = ACTIONS(2427), - [anon_sym_POUND] = ACTIONS(2427), - [anon_sym_asm] = ACTIONS(2427), - [anon_sym_AT_LBRACK] = ACTIONS(2427), - }, - [1438] = { - [sym_line_comment] = STATE(1438), - [sym_block_comment] = STATE(1438), - [ts_builtin_sym_end] = ACTIONS(2179), - [sym_identifier] = ACTIONS(2181), - [anon_sym_LF] = ACTIONS(2181), - [anon_sym_CR] = ACTIONS(2181), - [anon_sym_CR_LF] = ACTIONS(2181), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym___global] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_PIPE] = ACTIONS(2181), - [anon_sym_fn] = ACTIONS(2181), - [anon_sym_PLUS] = ACTIONS(2181), - [anon_sym_DASH] = ACTIONS(2181), - [anon_sym_STAR] = ACTIONS(2181), - [anon_sym_struct] = ACTIONS(2181), - [anon_sym_union] = ACTIONS(2181), - [anon_sym_pub] = ACTIONS(2181), - [anon_sym_mut] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [anon_sym_interface] = ACTIONS(2181), - [anon_sym_QMARK] = ACTIONS(2181), - [anon_sym_BANG] = ACTIONS(2181), - [anon_sym_go] = ACTIONS(2181), - [anon_sym_spawn] = ACTIONS(2181), - [anon_sym_json_DOTdecode] = ACTIONS(2181), - [anon_sym_LBRACK2] = ACTIONS(2181), - [anon_sym_TILDE] = ACTIONS(2181), - [anon_sym_CARET] = ACTIONS(2181), - [anon_sym_AMP] = ACTIONS(2181), - [anon_sym_LT_DASH] = ACTIONS(2181), - [sym_none] = ACTIONS(2181), - [sym_true] = ACTIONS(2181), - [sym_false] = ACTIONS(2181), - [sym_nil] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_DOLLARif] = ACTIONS(2181), - [anon_sym_match] = ACTIONS(2181), - [anon_sym_select] = ACTIONS(2181), - [anon_sym_lock] = ACTIONS(2181), - [anon_sym_rlock] = ACTIONS(2181), - [anon_sym_unsafe] = ACTIONS(2181), - [anon_sym_sql] = ACTIONS(2181), - [sym_int_literal] = ACTIONS(2181), - [sym_float_literal] = ACTIONS(2181), - [sym_rune_literal] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_DQUOTE] = ACTIONS(2181), - [anon_sym_c_SQUOTE] = ACTIONS(2181), - [anon_sym_c_DQUOTE] = ACTIONS(2181), - [anon_sym_r_SQUOTE] = ACTIONS(2181), - [anon_sym_r_DQUOTE] = ACTIONS(2181), - [sym_pseudo_compile_time_identifier] = ACTIONS(2181), - [anon_sym_shared] = ACTIONS(2181), - [anon_sym_map_LBRACK] = ACTIONS(2181), - [anon_sym_chan] = ACTIONS(2181), - [anon_sym_thread] = ACTIONS(2181), - [anon_sym_atomic] = ACTIONS(2181), - [anon_sym_assert] = ACTIONS(2181), - [anon_sym_defer] = ACTIONS(2181), - [anon_sym_goto] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_DOLLARfor] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_POUND] = ACTIONS(2181), - [anon_sym_asm] = ACTIONS(2181), - [anon_sym_AT_LBRACK] = ACTIONS(2181), + [anon_sym_shared] = ACTIONS(4088), + [anon_sym_map_LBRACK] = ACTIONS(4090), + [anon_sym_chan] = ACTIONS(4092), + [anon_sym_thread] = ACTIONS(4094), + [anon_sym_atomic] = ACTIONS(4096), }, - [1439] = { - [sym_line_comment] = STATE(1439), - [sym_block_comment] = STATE(1439), - [sym_block] = STATE(1563), - [ts_builtin_sym_end] = ACTIONS(4112), - [sym_identifier] = ACTIONS(4114), + [1466] = { + [sym_line_comment] = STATE(1466), + [sym_block_comment] = STATE(1466), + [sym_label_reference] = STATE(1579), + [ts_builtin_sym_end] = ACTIONS(4110), + [sym_identifier] = ACTIONS(4112), [anon_sym_LF] = ACTIONS(4114), [anon_sym_CR] = ACTIONS(4114), [anon_sym_CR_LF] = ACTIONS(4114), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4114), - [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_LBRACE] = ACTIONS(4114), [anon_sym_const] = ACTIONS(4114), [anon_sym_LPAREN] = ACTIONS(4114), [anon_sym___global] = ACTIONS(4114), @@ -176226,390 +178717,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(4114), [anon_sym_AT_LBRACK] = ACTIONS(4114), }, - [1440] = { - [sym_line_comment] = STATE(1440), - [sym_block_comment] = STATE(1440), - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [anon_sym_LF] = ACTIONS(1899), - [anon_sym_CR] = ACTIONS(1899), - [anon_sym_CR_LF] = ACTIONS(1899), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym___global] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_fn] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_union] = ACTIONS(1899), - [anon_sym_pub] = ACTIONS(1899), - [anon_sym_mut] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [anon_sym_interface] = ACTIONS(1899), - [anon_sym_QMARK] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_go] = ACTIONS(1899), - [anon_sym_spawn] = ACTIONS(1899), - [anon_sym_json_DOTdecode] = ACTIONS(1899), - [anon_sym_LBRACK2] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_LT_DASH] = ACTIONS(1899), - [sym_none] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_nil] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_DOLLARif] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_select] = ACTIONS(1899), - [anon_sym_lock] = ACTIONS(1899), - [anon_sym_rlock] = ACTIONS(1899), - [anon_sym_unsafe] = ACTIONS(1899), - [anon_sym_sql] = ACTIONS(1899), - [sym_int_literal] = ACTIONS(1899), - [sym_float_literal] = ACTIONS(1899), - [sym_rune_literal] = ACTIONS(1899), - [anon_sym_SQUOTE] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1899), - [anon_sym_c_SQUOTE] = ACTIONS(1899), - [anon_sym_c_DQUOTE] = ACTIONS(1899), - [anon_sym_r_SQUOTE] = ACTIONS(1899), - [anon_sym_r_DQUOTE] = ACTIONS(1899), - [sym_pseudo_compile_time_identifier] = ACTIONS(1899), - [anon_sym_shared] = ACTIONS(1899), - [anon_sym_map_LBRACK] = ACTIONS(1899), - [anon_sym_chan] = ACTIONS(1899), - [anon_sym_thread] = ACTIONS(1899), - [anon_sym_atomic] = ACTIONS(1899), - [anon_sym_assert] = ACTIONS(1899), - [anon_sym_defer] = ACTIONS(1899), - [anon_sym_goto] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_DOLLARfor] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_POUND] = ACTIONS(1899), - [anon_sym_asm] = ACTIONS(1899), - [anon_sym_AT_LBRACK] = ACTIONS(1899), - }, - [1441] = { - [sym_line_comment] = STATE(1441), - [sym_block_comment] = STATE(1441), - [ts_builtin_sym_end] = ACTIONS(2187), - [sym_identifier] = ACTIONS(2189), - [anon_sym_LF] = ACTIONS(2189), - [anon_sym_CR] = ACTIONS(2189), - [anon_sym_CR_LF] = ACTIONS(2189), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2189), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_const] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym___global] = ACTIONS(2189), - [anon_sym_type] = ACTIONS(2189), - [anon_sym_PIPE] = ACTIONS(2189), - [anon_sym_fn] = ACTIONS(2189), - [anon_sym_PLUS] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2189), - [anon_sym_STAR] = ACTIONS(2189), - [anon_sym_struct] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_pub] = ACTIONS(2189), - [anon_sym_mut] = ACTIONS(2189), - [anon_sym_enum] = ACTIONS(2189), - [anon_sym_interface] = ACTIONS(2189), - [anon_sym_QMARK] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_go] = ACTIONS(2189), - [anon_sym_spawn] = ACTIONS(2189), - [anon_sym_json_DOTdecode] = ACTIONS(2189), - [anon_sym_LBRACK2] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_CARET] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2189), - [anon_sym_LT_DASH] = ACTIONS(2189), - [sym_none] = ACTIONS(2189), - [sym_true] = ACTIONS(2189), - [sym_false] = ACTIONS(2189), - [sym_nil] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_DOLLARif] = ACTIONS(2189), - [anon_sym_match] = ACTIONS(2189), - [anon_sym_select] = ACTIONS(2189), - [anon_sym_lock] = ACTIONS(2189), - [anon_sym_rlock] = ACTIONS(2189), - [anon_sym_unsafe] = ACTIONS(2189), - [anon_sym_sql] = ACTIONS(2189), - [sym_int_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_rune_literal] = ACTIONS(2189), - [anon_sym_SQUOTE] = ACTIONS(2189), - [anon_sym_DQUOTE] = ACTIONS(2189), - [anon_sym_c_SQUOTE] = ACTIONS(2189), - [anon_sym_c_DQUOTE] = ACTIONS(2189), - [anon_sym_r_SQUOTE] = ACTIONS(2189), - [anon_sym_r_DQUOTE] = ACTIONS(2189), - [sym_pseudo_compile_time_identifier] = ACTIONS(2189), - [anon_sym_shared] = ACTIONS(2189), - [anon_sym_map_LBRACK] = ACTIONS(2189), - [anon_sym_chan] = ACTIONS(2189), - [anon_sym_thread] = ACTIONS(2189), - [anon_sym_atomic] = ACTIONS(2189), - [anon_sym_assert] = ACTIONS(2189), - [anon_sym_defer] = ACTIONS(2189), - [anon_sym_goto] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), - [anon_sym_return] = ACTIONS(2189), - [anon_sym_DOLLARfor] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_POUND] = ACTIONS(2189), - [anon_sym_asm] = ACTIONS(2189), - [anon_sym_AT_LBRACK] = ACTIONS(2189), - }, - [1442] = { - [sym_line_comment] = STATE(1442), - [sym_block_comment] = STATE(1442), - [ts_builtin_sym_end] = ACTIONS(3534), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LF] = ACTIONS(1759), - [anon_sym_CR] = ACTIONS(1759), - [anon_sym_CR_LF] = ACTIONS(1759), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1759), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_COMMA] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1759), - [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_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), - [anon_sym_SQUOTE] = ACTIONS(1759), - [anon_sym_DQUOTE] = ACTIONS(1759), - [anon_sym_c_SQUOTE] = ACTIONS(1759), - [anon_sym_c_DQUOTE] = ACTIONS(1759), - [anon_sym_r_SQUOTE] = ACTIONS(1759), - [anon_sym_r_DQUOTE] = 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), - }, - [1443] = { - [sym_line_comment] = STATE(1443), - [sym_block_comment] = STATE(1443), - [ts_builtin_sym_end] = ACTIONS(2421), - [sym_identifier] = ACTIONS(2423), - [anon_sym_LF] = ACTIONS(2423), - [anon_sym_CR] = ACTIONS(2423), - [anon_sym_CR_LF] = ACTIONS(2423), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_const] = ACTIONS(2423), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym___global] = ACTIONS(2423), - [anon_sym_type] = ACTIONS(2423), - [anon_sym_PIPE] = ACTIONS(2423), - [anon_sym_fn] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2423), - [anon_sym_DASH] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_struct] = ACTIONS(2423), - [anon_sym_union] = ACTIONS(2423), - [anon_sym_pub] = ACTIONS(2423), - [anon_sym_mut] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2423), - [anon_sym_interface] = ACTIONS(2423), - [anon_sym_QMARK] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_go] = ACTIONS(2423), - [anon_sym_spawn] = ACTIONS(2423), - [anon_sym_json_DOTdecode] = ACTIONS(2423), - [anon_sym_LBRACK2] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2423), - [anon_sym_CARET] = ACTIONS(2423), - [anon_sym_AMP] = ACTIONS(2423), - [anon_sym_LT_DASH] = ACTIONS(2423), - [sym_none] = ACTIONS(2423), - [sym_true] = ACTIONS(2423), - [sym_false] = ACTIONS(2423), - [sym_nil] = ACTIONS(2423), - [anon_sym_if] = ACTIONS(2423), - [anon_sym_DOLLARif] = ACTIONS(2423), - [anon_sym_match] = ACTIONS(2423), - [anon_sym_select] = ACTIONS(2423), - [anon_sym_lock] = ACTIONS(2423), - [anon_sym_rlock] = ACTIONS(2423), - [anon_sym_unsafe] = ACTIONS(2423), - [anon_sym_sql] = ACTIONS(2423), - [sym_int_literal] = ACTIONS(2423), - [sym_float_literal] = ACTIONS(2423), - [sym_rune_literal] = ACTIONS(2423), - [anon_sym_SQUOTE] = ACTIONS(2423), - [anon_sym_DQUOTE] = ACTIONS(2423), - [anon_sym_c_SQUOTE] = ACTIONS(2423), - [anon_sym_c_DQUOTE] = ACTIONS(2423), - [anon_sym_r_SQUOTE] = ACTIONS(2423), - [anon_sym_r_DQUOTE] = ACTIONS(2423), - [sym_pseudo_compile_time_identifier] = ACTIONS(2423), - [anon_sym_shared] = ACTIONS(2423), - [anon_sym_map_LBRACK] = ACTIONS(2423), - [anon_sym_chan] = ACTIONS(2423), - [anon_sym_thread] = ACTIONS(2423), - [anon_sym_atomic] = ACTIONS(2423), - [anon_sym_assert] = ACTIONS(2423), - [anon_sym_defer] = ACTIONS(2423), - [anon_sym_goto] = ACTIONS(2423), - [anon_sym_break] = ACTIONS(2423), - [anon_sym_continue] = ACTIONS(2423), - [anon_sym_return] = ACTIONS(2423), - [anon_sym_DOLLARfor] = ACTIONS(2423), - [anon_sym_for] = ACTIONS(2423), - [anon_sym_POUND] = ACTIONS(2423), - [anon_sym_asm] = ACTIONS(2423), - [anon_sym_AT_LBRACK] = ACTIONS(2423), - }, - [1444] = { - [sym_line_comment] = STATE(1444), - [sym_block_comment] = STATE(1444), - [ts_builtin_sym_end] = ACTIONS(2271), - [sym_identifier] = ACTIONS(2273), - [anon_sym_LF] = ACTIONS(2273), - [anon_sym_CR] = ACTIONS(2273), - [anon_sym_CR_LF] = ACTIONS(2273), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2273), - [anon_sym_LBRACE] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2273), - [anon_sym___global] = ACTIONS(2273), - [anon_sym_type] = ACTIONS(2273), - [anon_sym_PIPE] = ACTIONS(2273), - [anon_sym_fn] = ACTIONS(2273), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(2273), - [anon_sym_union] = ACTIONS(2273), - [anon_sym_pub] = ACTIONS(2273), - [anon_sym_mut] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2273), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_QMARK] = ACTIONS(2273), - [anon_sym_BANG] = ACTIONS(2273), - [anon_sym_go] = ACTIONS(2273), - [anon_sym_spawn] = ACTIONS(2273), - [anon_sym_json_DOTdecode] = ACTIONS(2273), - [anon_sym_LBRACK2] = ACTIONS(2273), - [anon_sym_TILDE] = ACTIONS(2273), - [anon_sym_CARET] = ACTIONS(2273), - [anon_sym_AMP] = ACTIONS(2273), - [anon_sym_LT_DASH] = ACTIONS(2273), - [sym_none] = ACTIONS(2273), - [sym_true] = ACTIONS(2273), - [sym_false] = ACTIONS(2273), - [sym_nil] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_DOLLARif] = ACTIONS(2273), - [anon_sym_match] = ACTIONS(2273), - [anon_sym_select] = ACTIONS(2273), - [anon_sym_lock] = ACTIONS(2273), - [anon_sym_rlock] = ACTIONS(2273), - [anon_sym_unsafe] = ACTIONS(2273), - [anon_sym_sql] = ACTIONS(2273), - [sym_int_literal] = ACTIONS(2273), - [sym_float_literal] = ACTIONS(2273), - [sym_rune_literal] = ACTIONS(2273), - [anon_sym_SQUOTE] = ACTIONS(2273), - [anon_sym_DQUOTE] = ACTIONS(2273), - [anon_sym_c_SQUOTE] = ACTIONS(2273), - [anon_sym_c_DQUOTE] = ACTIONS(2273), - [anon_sym_r_SQUOTE] = ACTIONS(2273), - [anon_sym_r_DQUOTE] = ACTIONS(2273), - [sym_pseudo_compile_time_identifier] = ACTIONS(2273), - [anon_sym_shared] = ACTIONS(2273), - [anon_sym_map_LBRACK] = ACTIONS(2273), - [anon_sym_chan] = ACTIONS(2273), - [anon_sym_thread] = ACTIONS(2273), - [anon_sym_atomic] = ACTIONS(2273), - [anon_sym_assert] = ACTIONS(2273), - [anon_sym_defer] = ACTIONS(2273), - [anon_sym_goto] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_DOLLARfor] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_POUND] = ACTIONS(2273), - [anon_sym_asm] = ACTIONS(2273), - [anon_sym_AT_LBRACK] = ACTIONS(2273), - }, - [1445] = { - [sym_line_comment] = STATE(1445), - [sym_block_comment] = STATE(1445), - [sym_block] = STATE(1554), + [1467] = { + [sym_line_comment] = STATE(1467), + [sym_block_comment] = STATE(1467), + [sym_block] = STATE(1580), [ts_builtin_sym_end] = ACTIONS(4116), [sym_identifier] = ACTIONS(4118), [anon_sym_LF] = ACTIONS(4118), @@ -176618,7 +178729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4118), - [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_LBRACE] = ACTIONS(4068), [anon_sym_const] = ACTIONS(4118), [anon_sym_LPAREN] = ACTIONS(4118), [anon_sym___global] = ACTIONS(4118), @@ -176682,10 +178793,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(4118), [anon_sym_AT_LBRACK] = ACTIONS(4118), }, - [1446] = { - [sym_line_comment] = STATE(1446), - [sym_block_comment] = STATE(1446), - [sym_block] = STATE(1488), + [1468] = { + [sym_line_comment] = STATE(1468), + [sym_block_comment] = STATE(1468), + [sym_block] = STATE(1569), [ts_builtin_sym_end] = ACTIONS(4120), [sym_identifier] = ACTIONS(4122), [anon_sym_LF] = ACTIONS(4122), @@ -176694,7 +178805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_LBRACE] = ACTIONS(4068), [anon_sym_const] = ACTIONS(4122), [anon_sym_LPAREN] = ACTIONS(4122), [anon_sym___global] = ACTIONS(4122), @@ -176758,1074 +178869,390 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(4122), [anon_sym_AT_LBRACK] = ACTIONS(4122), }, - [1447] = { - [sym_line_comment] = STATE(1447), - [sym_block_comment] = STATE(1447), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(605), - [anon_sym_LF] = ACTIONS(607), - [anon_sym_CR] = ACTIONS(607), - [anon_sym_CR_LF] = ACTIONS(607), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(607), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(607), - [anon_sym_RBRACE] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(609), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_BANG_EQ] = ACTIONS(607), - [anon_sym_LT_EQ] = ACTIONS(607), - [anon_sym_GT_EQ] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(607), - [anon_sym_DASH_DASH] = ACTIONS(607), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(4124), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_GT_GT_GT] = ACTIONS(607), - [anon_sym_AMP_CARET] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [anon_sym_or] = ACTIONS(607), - [anon_sym_QMARK_DOT] = ACTIONS(607), - [anon_sym_POUND_LBRACK] = ACTIONS(607), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(607), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(607), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(561), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - }, - [1448] = { - [sym_line_comment] = STATE(1448), - [sym_block_comment] = STATE(1448), - [sym_block] = STATE(1545), - [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), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4128), - [anon_sym_LBRACE] = ACTIONS(4022), - [anon_sym_const] = ACTIONS(4128), - [anon_sym_LPAREN] = ACTIONS(4128), - [anon_sym___global] = ACTIONS(4128), - [anon_sym_type] = ACTIONS(4128), - [anon_sym_fn] = ACTIONS(4128), - [anon_sym_PLUS] = ACTIONS(4128), - [anon_sym_DASH] = ACTIONS(4128), - [anon_sym_STAR] = ACTIONS(4128), - [anon_sym_struct] = ACTIONS(4128), - [anon_sym_union] = ACTIONS(4128), - [anon_sym_pub] = ACTIONS(4128), - [anon_sym_mut] = ACTIONS(4128), - [anon_sym_enum] = ACTIONS(4128), - [anon_sym_interface] = ACTIONS(4128), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_BANG] = ACTIONS(4128), - [anon_sym_go] = ACTIONS(4128), - [anon_sym_spawn] = ACTIONS(4128), - [anon_sym_json_DOTdecode] = ACTIONS(4128), - [anon_sym_LBRACK2] = ACTIONS(4128), - [anon_sym_TILDE] = ACTIONS(4128), - [anon_sym_CARET] = ACTIONS(4128), - [anon_sym_AMP] = ACTIONS(4128), - [anon_sym_LT_DASH] = ACTIONS(4128), - [sym_none] = ACTIONS(4128), - [sym_true] = ACTIONS(4128), - [sym_false] = ACTIONS(4128), - [sym_nil] = ACTIONS(4128), - [anon_sym_if] = ACTIONS(4128), - [anon_sym_DOLLARif] = ACTIONS(4128), - [anon_sym_match] = ACTIONS(4128), - [anon_sym_select] = ACTIONS(4128), - [anon_sym_lock] = ACTIONS(4128), - [anon_sym_rlock] = ACTIONS(4128), - [anon_sym_unsafe] = ACTIONS(4128), - [anon_sym_sql] = ACTIONS(4128), - [sym_int_literal] = ACTIONS(4128), - [sym_float_literal] = ACTIONS(4128), - [sym_rune_literal] = ACTIONS(4128), - [anon_sym_SQUOTE] = ACTIONS(4128), - [anon_sym_DQUOTE] = ACTIONS(4128), - [anon_sym_c_SQUOTE] = ACTIONS(4128), - [anon_sym_c_DQUOTE] = ACTIONS(4128), - [anon_sym_r_SQUOTE] = ACTIONS(4128), - [anon_sym_r_DQUOTE] = ACTIONS(4128), - [sym_pseudo_compile_time_identifier] = ACTIONS(4128), - [anon_sym_shared] = ACTIONS(4128), - [anon_sym_map_LBRACK] = ACTIONS(4128), - [anon_sym_chan] = ACTIONS(4128), - [anon_sym_thread] = ACTIONS(4128), - [anon_sym_atomic] = ACTIONS(4128), - [anon_sym_assert] = ACTIONS(4128), - [anon_sym_defer] = ACTIONS(4128), - [anon_sym_goto] = ACTIONS(4128), - [anon_sym_break] = ACTIONS(4128), - [anon_sym_continue] = ACTIONS(4128), - [anon_sym_return] = ACTIONS(4128), - [anon_sym_DOLLARfor] = ACTIONS(4128), - [anon_sym_for] = ACTIONS(4128), - [anon_sym_POUND] = ACTIONS(4128), - [anon_sym_asm] = ACTIONS(4128), - [anon_sym_AT_LBRACK] = ACTIONS(4128), - }, - [1449] = { - [sym_line_comment] = STATE(1449), - [sym_block_comment] = STATE(1449), - [ts_builtin_sym_end] = ACTIONS(2191), - [sym_identifier] = ACTIONS(2193), - [anon_sym_LF] = ACTIONS(2193), - [anon_sym_CR] = ACTIONS(2193), - [anon_sym_CR_LF] = ACTIONS(2193), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2193), - [anon_sym___global] = ACTIONS(2193), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_PIPE] = ACTIONS(2193), - [anon_sym_fn] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(2193), - [anon_sym_union] = ACTIONS(2193), - [anon_sym_pub] = ACTIONS(2193), - [anon_sym_mut] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), - [anon_sym_interface] = ACTIONS(2193), - [anon_sym_QMARK] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2193), - [anon_sym_go] = ACTIONS(2193), - [anon_sym_spawn] = ACTIONS(2193), - [anon_sym_json_DOTdecode] = ACTIONS(2193), - [anon_sym_LBRACK2] = ACTIONS(2193), - [anon_sym_TILDE] = ACTIONS(2193), - [anon_sym_CARET] = ACTIONS(2193), - [anon_sym_AMP] = ACTIONS(2193), - [anon_sym_LT_DASH] = ACTIONS(2193), - [sym_none] = ACTIONS(2193), - [sym_true] = ACTIONS(2193), - [sym_false] = ACTIONS(2193), - [sym_nil] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_DOLLARif] = ACTIONS(2193), - [anon_sym_match] = ACTIONS(2193), - [anon_sym_select] = ACTIONS(2193), - [anon_sym_lock] = ACTIONS(2193), - [anon_sym_rlock] = ACTIONS(2193), - [anon_sym_unsafe] = ACTIONS(2193), - [anon_sym_sql] = ACTIONS(2193), - [sym_int_literal] = ACTIONS(2193), - [sym_float_literal] = ACTIONS(2193), - [sym_rune_literal] = ACTIONS(2193), - [anon_sym_SQUOTE] = ACTIONS(2193), - [anon_sym_DQUOTE] = ACTIONS(2193), - [anon_sym_c_SQUOTE] = ACTIONS(2193), - [anon_sym_c_DQUOTE] = ACTIONS(2193), - [anon_sym_r_SQUOTE] = ACTIONS(2193), - [anon_sym_r_DQUOTE] = ACTIONS(2193), - [sym_pseudo_compile_time_identifier] = ACTIONS(2193), - [anon_sym_shared] = ACTIONS(2193), - [anon_sym_map_LBRACK] = ACTIONS(2193), - [anon_sym_chan] = ACTIONS(2193), - [anon_sym_thread] = ACTIONS(2193), - [anon_sym_atomic] = ACTIONS(2193), - [anon_sym_assert] = ACTIONS(2193), - [anon_sym_defer] = ACTIONS(2193), - [anon_sym_goto] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_DOLLARfor] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_POUND] = ACTIONS(2193), - [anon_sym_asm] = ACTIONS(2193), - [anon_sym_AT_LBRACK] = ACTIONS(2193), - }, - [1450] = { - [sym_line_comment] = STATE(1450), - [sym_block_comment] = STATE(1450), - [ts_builtin_sym_end] = ACTIONS(2195), - [sym_identifier] = ACTIONS(2197), - [anon_sym_LF] = ACTIONS(2197), - [anon_sym_CR] = ACTIONS(2197), - [anon_sym_CR_LF] = ACTIONS(2197), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym___global] = ACTIONS(2197), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_PIPE] = ACTIONS(2197), - [anon_sym_fn] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(2197), - [anon_sym_union] = ACTIONS(2197), - [anon_sym_pub] = ACTIONS(2197), - [anon_sym_mut] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [anon_sym_interface] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_go] = ACTIONS(2197), - [anon_sym_spawn] = ACTIONS(2197), - [anon_sym_json_DOTdecode] = ACTIONS(2197), - [anon_sym_LBRACK2] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_CARET] = ACTIONS(2197), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_LT_DASH] = ACTIONS(2197), - [sym_none] = ACTIONS(2197), - [sym_true] = ACTIONS(2197), - [sym_false] = ACTIONS(2197), - [sym_nil] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_DOLLARif] = ACTIONS(2197), - [anon_sym_match] = ACTIONS(2197), - [anon_sym_select] = ACTIONS(2197), - [anon_sym_lock] = ACTIONS(2197), - [anon_sym_rlock] = ACTIONS(2197), - [anon_sym_unsafe] = ACTIONS(2197), - [anon_sym_sql] = ACTIONS(2197), - [sym_int_literal] = ACTIONS(2197), - [sym_float_literal] = ACTIONS(2197), - [sym_rune_literal] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_DQUOTE] = ACTIONS(2197), - [anon_sym_c_SQUOTE] = ACTIONS(2197), - [anon_sym_c_DQUOTE] = ACTIONS(2197), - [anon_sym_r_SQUOTE] = ACTIONS(2197), - [anon_sym_r_DQUOTE] = ACTIONS(2197), - [sym_pseudo_compile_time_identifier] = ACTIONS(2197), - [anon_sym_shared] = ACTIONS(2197), - [anon_sym_map_LBRACK] = ACTIONS(2197), - [anon_sym_chan] = ACTIONS(2197), - [anon_sym_thread] = ACTIONS(2197), - [anon_sym_atomic] = ACTIONS(2197), - [anon_sym_assert] = ACTIONS(2197), - [anon_sym_defer] = ACTIONS(2197), - [anon_sym_goto] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_DOLLARfor] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_POUND] = ACTIONS(2197), - [anon_sym_asm] = ACTIONS(2197), - [anon_sym_AT_LBRACK] = ACTIONS(2197), - }, - [1451] = { - [sym_line_comment] = STATE(1451), - [sym_block_comment] = STATE(1451), - [ts_builtin_sym_end] = ACTIONS(2199), - [sym_identifier] = ACTIONS(2201), - [anon_sym_LF] = ACTIONS(2201), - [anon_sym_CR] = ACTIONS(2201), - [anon_sym_CR_LF] = ACTIONS(2201), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(2201), - [anon_sym_const] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2201), - [anon_sym___global] = ACTIONS(2201), - [anon_sym_type] = ACTIONS(2201), - [anon_sym_PIPE] = ACTIONS(2201), - [anon_sym_fn] = ACTIONS(2201), - [anon_sym_PLUS] = ACTIONS(2201), - [anon_sym_DASH] = ACTIONS(2201), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_struct] = ACTIONS(2201), - [anon_sym_union] = ACTIONS(2201), - [anon_sym_pub] = ACTIONS(2201), - [anon_sym_mut] = ACTIONS(2201), - [anon_sym_enum] = ACTIONS(2201), - [anon_sym_interface] = ACTIONS(2201), - [anon_sym_QMARK] = ACTIONS(2201), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_go] = ACTIONS(2201), - [anon_sym_spawn] = ACTIONS(2201), - [anon_sym_json_DOTdecode] = ACTIONS(2201), - [anon_sym_LBRACK2] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_LT_DASH] = ACTIONS(2201), - [sym_none] = ACTIONS(2201), - [sym_true] = ACTIONS(2201), - [sym_false] = ACTIONS(2201), - [sym_nil] = ACTIONS(2201), - [anon_sym_if] = ACTIONS(2201), - [anon_sym_DOLLARif] = ACTIONS(2201), - [anon_sym_match] = ACTIONS(2201), - [anon_sym_select] = ACTIONS(2201), - [anon_sym_lock] = ACTIONS(2201), - [anon_sym_rlock] = ACTIONS(2201), - [anon_sym_unsafe] = ACTIONS(2201), - [anon_sym_sql] = ACTIONS(2201), - [sym_int_literal] = ACTIONS(2201), - [sym_float_literal] = ACTIONS(2201), - [sym_rune_literal] = ACTIONS(2201), - [anon_sym_SQUOTE] = ACTIONS(2201), - [anon_sym_DQUOTE] = ACTIONS(2201), - [anon_sym_c_SQUOTE] = ACTIONS(2201), - [anon_sym_c_DQUOTE] = ACTIONS(2201), - [anon_sym_r_SQUOTE] = ACTIONS(2201), - [anon_sym_r_DQUOTE] = ACTIONS(2201), - [sym_pseudo_compile_time_identifier] = ACTIONS(2201), - [anon_sym_shared] = ACTIONS(2201), - [anon_sym_map_LBRACK] = ACTIONS(2201), - [anon_sym_chan] = ACTIONS(2201), - [anon_sym_thread] = ACTIONS(2201), - [anon_sym_atomic] = ACTIONS(2201), - [anon_sym_assert] = ACTIONS(2201), - [anon_sym_defer] = ACTIONS(2201), - [anon_sym_goto] = ACTIONS(2201), - [anon_sym_break] = ACTIONS(2201), - [anon_sym_continue] = ACTIONS(2201), - [anon_sym_return] = ACTIONS(2201), - [anon_sym_DOLLARfor] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(2201), - [anon_sym_POUND] = ACTIONS(2201), - [anon_sym_asm] = ACTIONS(2201), - [anon_sym_AT_LBRACK] = ACTIONS(2201), - }, - [1452] = { - [sym_line_comment] = STATE(1452), - [sym_block_comment] = STATE(1452), - [sym_block] = STATE(1490), - [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), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4132), - [anon_sym_LBRACE] = ACTIONS(4022), - [anon_sym_const] = ACTIONS(4132), - [anon_sym_LPAREN] = ACTIONS(4132), - [anon_sym___global] = ACTIONS(4132), - [anon_sym_type] = ACTIONS(4132), - [anon_sym_fn] = ACTIONS(4132), - [anon_sym_PLUS] = ACTIONS(4132), - [anon_sym_DASH] = ACTIONS(4132), - [anon_sym_STAR] = ACTIONS(4132), - [anon_sym_struct] = ACTIONS(4132), - [anon_sym_union] = ACTIONS(4132), - [anon_sym_pub] = ACTIONS(4132), - [anon_sym_mut] = ACTIONS(4132), - [anon_sym_enum] = ACTIONS(4132), - [anon_sym_interface] = ACTIONS(4132), - [anon_sym_QMARK] = ACTIONS(4132), - [anon_sym_BANG] = ACTIONS(4132), - [anon_sym_go] = ACTIONS(4132), - [anon_sym_spawn] = ACTIONS(4132), - [anon_sym_json_DOTdecode] = ACTIONS(4132), - [anon_sym_LBRACK2] = ACTIONS(4132), - [anon_sym_TILDE] = ACTIONS(4132), - [anon_sym_CARET] = ACTIONS(4132), - [anon_sym_AMP] = ACTIONS(4132), - [anon_sym_LT_DASH] = ACTIONS(4132), - [sym_none] = ACTIONS(4132), - [sym_true] = ACTIONS(4132), - [sym_false] = ACTIONS(4132), - [sym_nil] = ACTIONS(4132), - [anon_sym_if] = ACTIONS(4132), - [anon_sym_DOLLARif] = ACTIONS(4132), - [anon_sym_match] = ACTIONS(4132), - [anon_sym_select] = ACTIONS(4132), - [anon_sym_lock] = ACTIONS(4132), - [anon_sym_rlock] = ACTIONS(4132), - [anon_sym_unsafe] = ACTIONS(4132), - [anon_sym_sql] = ACTIONS(4132), - [sym_int_literal] = ACTIONS(4132), - [sym_float_literal] = ACTIONS(4132), - [sym_rune_literal] = ACTIONS(4132), - [anon_sym_SQUOTE] = ACTIONS(4132), - [anon_sym_DQUOTE] = ACTIONS(4132), - [anon_sym_c_SQUOTE] = ACTIONS(4132), - [anon_sym_c_DQUOTE] = ACTIONS(4132), - [anon_sym_r_SQUOTE] = ACTIONS(4132), - [anon_sym_r_DQUOTE] = ACTIONS(4132), - [sym_pseudo_compile_time_identifier] = ACTIONS(4132), - [anon_sym_shared] = ACTIONS(4132), - [anon_sym_map_LBRACK] = ACTIONS(4132), - [anon_sym_chan] = ACTIONS(4132), - [anon_sym_thread] = ACTIONS(4132), - [anon_sym_atomic] = ACTIONS(4132), - [anon_sym_assert] = ACTIONS(4132), - [anon_sym_defer] = ACTIONS(4132), - [anon_sym_goto] = ACTIONS(4132), - [anon_sym_break] = ACTIONS(4132), - [anon_sym_continue] = ACTIONS(4132), - [anon_sym_return] = ACTIONS(4132), - [anon_sym_DOLLARfor] = ACTIONS(4132), - [anon_sym_for] = ACTIONS(4132), - [anon_sym_POUND] = ACTIONS(4132), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym_AT_LBRACK] = ACTIONS(4132), - }, - [1453] = { - [sym_line_comment] = STATE(1453), - [sym_block_comment] = STATE(1453), - [ts_builtin_sym_end] = ACTIONS(2165), - [sym_identifier] = ACTIONS(2167), - [anon_sym_LF] = ACTIONS(2167), - [anon_sym_CR] = ACTIONS(2167), - [anon_sym_CR_LF] = ACTIONS(2167), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym___global] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_PIPE] = ACTIONS(2167), - [anon_sym_fn] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_STAR] = ACTIONS(2167), - [anon_sym_struct] = ACTIONS(2167), - [anon_sym_union] = ACTIONS(2167), - [anon_sym_pub] = ACTIONS(2167), - [anon_sym_mut] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_QMARK] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_go] = ACTIONS(2167), - [anon_sym_spawn] = ACTIONS(2167), - [anon_sym_json_DOTdecode] = ACTIONS(2167), - [anon_sym_LBRACK2] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_CARET] = ACTIONS(2167), - [anon_sym_AMP] = ACTIONS(2167), - [anon_sym_LT_DASH] = ACTIONS(2167), - [sym_none] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_nil] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_DOLLARif] = ACTIONS(2167), - [anon_sym_match] = ACTIONS(2167), - [anon_sym_select] = ACTIONS(2167), - [anon_sym_lock] = ACTIONS(2167), - [anon_sym_rlock] = ACTIONS(2167), - [anon_sym_unsafe] = ACTIONS(2167), - [anon_sym_sql] = ACTIONS(2167), - [sym_int_literal] = ACTIONS(2167), - [sym_float_literal] = ACTIONS(2167), - [sym_rune_literal] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_c_SQUOTE] = ACTIONS(2167), - [anon_sym_c_DQUOTE] = ACTIONS(2167), - [anon_sym_r_SQUOTE] = ACTIONS(2167), - [anon_sym_r_DQUOTE] = ACTIONS(2167), - [sym_pseudo_compile_time_identifier] = ACTIONS(2167), - [anon_sym_shared] = ACTIONS(2167), - [anon_sym_map_LBRACK] = ACTIONS(2167), - [anon_sym_chan] = ACTIONS(2167), - [anon_sym_thread] = ACTIONS(2167), - [anon_sym_atomic] = ACTIONS(2167), - [anon_sym_assert] = ACTIONS(2167), - [anon_sym_defer] = ACTIONS(2167), - [anon_sym_goto] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_DOLLARfor] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_POUND] = ACTIONS(2167), - [anon_sym_asm] = ACTIONS(2167), - [anon_sym_AT_LBRACK] = ACTIONS(2167), - }, - [1454] = { - [sym_line_comment] = STATE(1454), - [sym_block_comment] = STATE(1454), - [sym_block] = STATE(1549), - [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), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4136), - [anon_sym_LBRACE] = ACTIONS(4022), - [anon_sym_const] = ACTIONS(4136), - [anon_sym_LPAREN] = ACTIONS(4136), - [anon_sym___global] = ACTIONS(4136), - [anon_sym_type] = ACTIONS(4136), - [anon_sym_fn] = ACTIONS(4136), - [anon_sym_PLUS] = ACTIONS(4136), - [anon_sym_DASH] = ACTIONS(4136), - [anon_sym_STAR] = ACTIONS(4136), - [anon_sym_struct] = ACTIONS(4136), - [anon_sym_union] = ACTIONS(4136), - [anon_sym_pub] = ACTIONS(4136), - [anon_sym_mut] = ACTIONS(4136), - [anon_sym_enum] = ACTIONS(4136), - [anon_sym_interface] = ACTIONS(4136), - [anon_sym_QMARK] = ACTIONS(4136), - [anon_sym_BANG] = ACTIONS(4136), - [anon_sym_go] = ACTIONS(4136), - [anon_sym_spawn] = ACTIONS(4136), - [anon_sym_json_DOTdecode] = ACTIONS(4136), - [anon_sym_LBRACK2] = ACTIONS(4136), - [anon_sym_TILDE] = ACTIONS(4136), - [anon_sym_CARET] = ACTIONS(4136), - [anon_sym_AMP] = ACTIONS(4136), - [anon_sym_LT_DASH] = ACTIONS(4136), - [sym_none] = ACTIONS(4136), - [sym_true] = ACTIONS(4136), - [sym_false] = ACTIONS(4136), - [sym_nil] = ACTIONS(4136), - [anon_sym_if] = ACTIONS(4136), - [anon_sym_DOLLARif] = ACTIONS(4136), - [anon_sym_match] = ACTIONS(4136), - [anon_sym_select] = ACTIONS(4136), - [anon_sym_lock] = ACTIONS(4136), - [anon_sym_rlock] = ACTIONS(4136), - [anon_sym_unsafe] = ACTIONS(4136), - [anon_sym_sql] = ACTIONS(4136), - [sym_int_literal] = ACTIONS(4136), - [sym_float_literal] = ACTIONS(4136), - [sym_rune_literal] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_DQUOTE] = ACTIONS(4136), - [anon_sym_c_SQUOTE] = ACTIONS(4136), - [anon_sym_c_DQUOTE] = ACTIONS(4136), - [anon_sym_r_SQUOTE] = ACTIONS(4136), - [anon_sym_r_DQUOTE] = ACTIONS(4136), - [sym_pseudo_compile_time_identifier] = ACTIONS(4136), - [anon_sym_shared] = ACTIONS(4136), - [anon_sym_map_LBRACK] = ACTIONS(4136), - [anon_sym_chan] = ACTIONS(4136), - [anon_sym_thread] = ACTIONS(4136), - [anon_sym_atomic] = ACTIONS(4136), - [anon_sym_assert] = ACTIONS(4136), - [anon_sym_defer] = ACTIONS(4136), - [anon_sym_goto] = ACTIONS(4136), - [anon_sym_break] = ACTIONS(4136), - [anon_sym_continue] = ACTIONS(4136), - [anon_sym_return] = ACTIONS(4136), - [anon_sym_DOLLARfor] = ACTIONS(4136), - [anon_sym_for] = ACTIONS(4136), - [anon_sym_POUND] = ACTIONS(4136), - [anon_sym_asm] = ACTIONS(4136), - [anon_sym_AT_LBRACK] = ACTIONS(4136), - }, - [1455] = { - [sym_line_comment] = STATE(1455), - [sym_block_comment] = STATE(1455), - [ts_builtin_sym_end] = ACTIONS(2267), - [sym_identifier] = ACTIONS(2269), - [anon_sym_LF] = ACTIONS(2269), - [anon_sym_CR] = ACTIONS(2269), - [anon_sym_CR_LF] = ACTIONS(2269), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(2269), - [anon_sym_const] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(2269), - [anon_sym___global] = ACTIONS(2269), - [anon_sym_type] = ACTIONS(2269), - [anon_sym_PIPE] = ACTIONS(2269), - [anon_sym_fn] = ACTIONS(2269), - [anon_sym_PLUS] = ACTIONS(2269), - [anon_sym_DASH] = ACTIONS(2269), - [anon_sym_STAR] = ACTIONS(2269), - [anon_sym_struct] = ACTIONS(2269), - [anon_sym_union] = ACTIONS(2269), - [anon_sym_pub] = ACTIONS(2269), - [anon_sym_mut] = ACTIONS(2269), - [anon_sym_enum] = ACTIONS(2269), - [anon_sym_interface] = ACTIONS(2269), - [anon_sym_QMARK] = ACTIONS(2269), - [anon_sym_BANG] = ACTIONS(2269), - [anon_sym_go] = ACTIONS(2269), - [anon_sym_spawn] = ACTIONS(2269), - [anon_sym_json_DOTdecode] = ACTIONS(2269), - [anon_sym_LBRACK2] = ACTIONS(2269), - [anon_sym_TILDE] = ACTIONS(2269), - [anon_sym_CARET] = ACTIONS(2269), - [anon_sym_AMP] = ACTIONS(2269), - [anon_sym_LT_DASH] = ACTIONS(2269), - [sym_none] = ACTIONS(2269), - [sym_true] = ACTIONS(2269), - [sym_false] = ACTIONS(2269), - [sym_nil] = ACTIONS(2269), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_DOLLARif] = ACTIONS(2269), - [anon_sym_match] = ACTIONS(2269), - [anon_sym_select] = ACTIONS(2269), - [anon_sym_lock] = ACTIONS(2269), - [anon_sym_rlock] = ACTIONS(2269), - [anon_sym_unsafe] = ACTIONS(2269), - [anon_sym_sql] = ACTIONS(2269), - [sym_int_literal] = ACTIONS(2269), - [sym_float_literal] = ACTIONS(2269), - [sym_rune_literal] = ACTIONS(2269), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_DQUOTE] = ACTIONS(2269), - [anon_sym_c_SQUOTE] = ACTIONS(2269), - [anon_sym_c_DQUOTE] = ACTIONS(2269), - [anon_sym_r_SQUOTE] = ACTIONS(2269), - [anon_sym_r_DQUOTE] = ACTIONS(2269), - [sym_pseudo_compile_time_identifier] = ACTIONS(2269), - [anon_sym_shared] = ACTIONS(2269), - [anon_sym_map_LBRACK] = ACTIONS(2269), - [anon_sym_chan] = ACTIONS(2269), - [anon_sym_thread] = ACTIONS(2269), - [anon_sym_atomic] = ACTIONS(2269), - [anon_sym_assert] = ACTIONS(2269), - [anon_sym_defer] = ACTIONS(2269), - [anon_sym_goto] = ACTIONS(2269), - [anon_sym_break] = ACTIONS(2269), - [anon_sym_continue] = ACTIONS(2269), - [anon_sym_return] = ACTIONS(2269), - [anon_sym_DOLLARfor] = ACTIONS(2269), - [anon_sym_for] = ACTIONS(2269), - [anon_sym_POUND] = ACTIONS(2269), - [anon_sym_asm] = ACTIONS(2269), - [anon_sym_AT_LBRACK] = ACTIONS(2269), - }, - [1456] = { - [sym_line_comment] = STATE(1456), - [sym_block_comment] = STATE(1456), - [ts_builtin_sym_end] = ACTIONS(2259), - [sym_identifier] = ACTIONS(2261), - [anon_sym_LF] = ACTIONS(2261), - [anon_sym_CR] = ACTIONS(2261), - [anon_sym_CR_LF] = ACTIONS(2261), + [1469] = { + [sym_line_comment] = STATE(1469), + [sym_block_comment] = STATE(1469), + [sym_block] = STATE(1571), + [ts_builtin_sym_end] = ACTIONS(4124), + [sym_identifier] = ACTIONS(4126), + [anon_sym_LF] = ACTIONS(4126), + [anon_sym_CR] = ACTIONS(4126), + [anon_sym_CR_LF] = ACTIONS(4126), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2261), - [anon_sym_LBRACE] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(2261), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym___global] = ACTIONS(2261), - [anon_sym_type] = ACTIONS(2261), - [anon_sym_PIPE] = ACTIONS(2261), - [anon_sym_fn] = ACTIONS(2261), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2261), - [anon_sym_struct] = ACTIONS(2261), - [anon_sym_union] = ACTIONS(2261), - [anon_sym_pub] = ACTIONS(2261), - [anon_sym_mut] = ACTIONS(2261), - [anon_sym_enum] = ACTIONS(2261), - [anon_sym_interface] = ACTIONS(2261), - [anon_sym_QMARK] = ACTIONS(2261), - [anon_sym_BANG] = ACTIONS(2261), - [anon_sym_go] = ACTIONS(2261), - [anon_sym_spawn] = ACTIONS(2261), - [anon_sym_json_DOTdecode] = ACTIONS(2261), - [anon_sym_LBRACK2] = ACTIONS(2261), - [anon_sym_TILDE] = ACTIONS(2261), - [anon_sym_CARET] = ACTIONS(2261), - [anon_sym_AMP] = ACTIONS(2261), - [anon_sym_LT_DASH] = ACTIONS(2261), - [sym_none] = ACTIONS(2261), - [sym_true] = ACTIONS(2261), - [sym_false] = ACTIONS(2261), - [sym_nil] = ACTIONS(2261), - [anon_sym_if] = ACTIONS(2261), - [anon_sym_DOLLARif] = ACTIONS(2261), - [anon_sym_match] = ACTIONS(2261), - [anon_sym_select] = ACTIONS(2261), - [anon_sym_lock] = ACTIONS(2261), - [anon_sym_rlock] = ACTIONS(2261), - [anon_sym_unsafe] = ACTIONS(2261), - [anon_sym_sql] = ACTIONS(2261), - [sym_int_literal] = ACTIONS(2261), - [sym_float_literal] = ACTIONS(2261), - [sym_rune_literal] = ACTIONS(2261), - [anon_sym_SQUOTE] = ACTIONS(2261), - [anon_sym_DQUOTE] = ACTIONS(2261), - [anon_sym_c_SQUOTE] = ACTIONS(2261), - [anon_sym_c_DQUOTE] = ACTIONS(2261), - [anon_sym_r_SQUOTE] = ACTIONS(2261), - [anon_sym_r_DQUOTE] = ACTIONS(2261), - [sym_pseudo_compile_time_identifier] = ACTIONS(2261), - [anon_sym_shared] = ACTIONS(2261), - [anon_sym_map_LBRACK] = ACTIONS(2261), - [anon_sym_chan] = ACTIONS(2261), - [anon_sym_thread] = ACTIONS(2261), - [anon_sym_atomic] = ACTIONS(2261), - [anon_sym_assert] = ACTIONS(2261), - [anon_sym_defer] = ACTIONS(2261), - [anon_sym_goto] = ACTIONS(2261), - [anon_sym_break] = ACTIONS(2261), - [anon_sym_continue] = ACTIONS(2261), - [anon_sym_return] = ACTIONS(2261), - [anon_sym_DOLLARfor] = ACTIONS(2261), - [anon_sym_for] = ACTIONS(2261), - [anon_sym_POUND] = ACTIONS(2261), - [anon_sym_asm] = ACTIONS(2261), - [anon_sym_AT_LBRACK] = ACTIONS(2261), + [anon_sym_DOT] = ACTIONS(4126), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_const] = ACTIONS(4126), + [anon_sym_LPAREN] = ACTIONS(4126), + [anon_sym___global] = ACTIONS(4126), + [anon_sym_type] = ACTIONS(4126), + [anon_sym_fn] = ACTIONS(4126), + [anon_sym_PLUS] = ACTIONS(4126), + [anon_sym_DASH] = ACTIONS(4126), + [anon_sym_STAR] = ACTIONS(4126), + [anon_sym_struct] = ACTIONS(4126), + [anon_sym_union] = ACTIONS(4126), + [anon_sym_pub] = ACTIONS(4126), + [anon_sym_mut] = ACTIONS(4126), + [anon_sym_enum] = ACTIONS(4126), + [anon_sym_interface] = ACTIONS(4126), + [anon_sym_QMARK] = ACTIONS(4126), + [anon_sym_BANG] = ACTIONS(4126), + [anon_sym_go] = ACTIONS(4126), + [anon_sym_spawn] = ACTIONS(4126), + [anon_sym_json_DOTdecode] = ACTIONS(4126), + [anon_sym_LBRACK2] = ACTIONS(4126), + [anon_sym_TILDE] = ACTIONS(4126), + [anon_sym_CARET] = ACTIONS(4126), + [anon_sym_AMP] = ACTIONS(4126), + [anon_sym_LT_DASH] = ACTIONS(4126), + [sym_none] = ACTIONS(4126), + [sym_true] = ACTIONS(4126), + [sym_false] = ACTIONS(4126), + [sym_nil] = ACTIONS(4126), + [anon_sym_if] = ACTIONS(4126), + [anon_sym_DOLLARif] = ACTIONS(4126), + [anon_sym_match] = ACTIONS(4126), + [anon_sym_select] = ACTIONS(4126), + [anon_sym_lock] = ACTIONS(4126), + [anon_sym_rlock] = ACTIONS(4126), + [anon_sym_unsafe] = ACTIONS(4126), + [anon_sym_sql] = ACTIONS(4126), + [sym_int_literal] = ACTIONS(4126), + [sym_float_literal] = ACTIONS(4126), + [sym_rune_literal] = ACTIONS(4126), + [anon_sym_SQUOTE] = ACTIONS(4126), + [anon_sym_DQUOTE] = ACTIONS(4126), + [anon_sym_c_SQUOTE] = ACTIONS(4126), + [anon_sym_c_DQUOTE] = ACTIONS(4126), + [anon_sym_r_SQUOTE] = ACTIONS(4126), + [anon_sym_r_DQUOTE] = ACTIONS(4126), + [sym_pseudo_compile_time_identifier] = ACTIONS(4126), + [anon_sym_shared] = ACTIONS(4126), + [anon_sym_map_LBRACK] = ACTIONS(4126), + [anon_sym_chan] = ACTIONS(4126), + [anon_sym_thread] = ACTIONS(4126), + [anon_sym_atomic] = ACTIONS(4126), + [anon_sym_assert] = ACTIONS(4126), + [anon_sym_defer] = ACTIONS(4126), + [anon_sym_goto] = ACTIONS(4126), + [anon_sym_break] = ACTIONS(4126), + [anon_sym_continue] = ACTIONS(4126), + [anon_sym_return] = ACTIONS(4126), + [anon_sym_DOLLARfor] = ACTIONS(4126), + [anon_sym_for] = ACTIONS(4126), + [anon_sym_POUND] = ACTIONS(4126), + [anon_sym_asm] = ACTIONS(4126), + [anon_sym_AT_LBRACK] = ACTIONS(4126), }, - [1457] = { - [sym_line_comment] = STATE(1457), - [sym_block_comment] = STATE(1457), - [ts_builtin_sym_end] = ACTIONS(2169), - [sym_identifier] = ACTIONS(2171), - [anon_sym_LF] = ACTIONS(2171), - [anon_sym_CR] = ACTIONS(2171), - [anon_sym_CR_LF] = ACTIONS(2171), + [1470] = { + [sym_line_comment] = STATE(1470), + [sym_block_comment] = STATE(1470), + [sym_block] = STATE(1573), + [ts_builtin_sym_end] = ACTIONS(4128), + [sym_identifier] = ACTIONS(4130), + [anon_sym_LF] = ACTIONS(4130), + [anon_sym_CR] = ACTIONS(4130), + [anon_sym_CR_LF] = ACTIONS(4130), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_const] = ACTIONS(2171), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym___global] = ACTIONS(2171), - [anon_sym_type] = ACTIONS(2171), - [anon_sym_PIPE] = ACTIONS(2171), - [anon_sym_fn] = ACTIONS(2171), - [anon_sym_PLUS] = ACTIONS(2171), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_STAR] = ACTIONS(2171), - [anon_sym_struct] = ACTIONS(2171), - [anon_sym_union] = ACTIONS(2171), - [anon_sym_pub] = ACTIONS(2171), - [anon_sym_mut] = ACTIONS(2171), - [anon_sym_enum] = ACTIONS(2171), - [anon_sym_interface] = ACTIONS(2171), - [anon_sym_QMARK] = ACTIONS(2171), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_go] = ACTIONS(2171), - [anon_sym_spawn] = ACTIONS(2171), - [anon_sym_json_DOTdecode] = ACTIONS(2171), - [anon_sym_LBRACK2] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_LT_DASH] = ACTIONS(2171), - [sym_none] = ACTIONS(2171), - [sym_true] = ACTIONS(2171), - [sym_false] = ACTIONS(2171), - [sym_nil] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(2171), - [anon_sym_DOLLARif] = ACTIONS(2171), - [anon_sym_match] = ACTIONS(2171), - [anon_sym_select] = ACTIONS(2171), - [anon_sym_lock] = ACTIONS(2171), - [anon_sym_rlock] = ACTIONS(2171), - [anon_sym_unsafe] = ACTIONS(2171), - [anon_sym_sql] = ACTIONS(2171), - [sym_int_literal] = ACTIONS(2171), - [sym_float_literal] = ACTIONS(2171), - [sym_rune_literal] = ACTIONS(2171), - [anon_sym_SQUOTE] = ACTIONS(2171), - [anon_sym_DQUOTE] = ACTIONS(2171), - [anon_sym_c_SQUOTE] = ACTIONS(2171), - [anon_sym_c_DQUOTE] = ACTIONS(2171), - [anon_sym_r_SQUOTE] = ACTIONS(2171), - [anon_sym_r_DQUOTE] = ACTIONS(2171), - [sym_pseudo_compile_time_identifier] = ACTIONS(2171), - [anon_sym_shared] = ACTIONS(2171), - [anon_sym_map_LBRACK] = ACTIONS(2171), - [anon_sym_chan] = ACTIONS(2171), - [anon_sym_thread] = ACTIONS(2171), - [anon_sym_atomic] = ACTIONS(2171), - [anon_sym_assert] = ACTIONS(2171), - [anon_sym_defer] = ACTIONS(2171), - [anon_sym_goto] = ACTIONS(2171), - [anon_sym_break] = ACTIONS(2171), - [anon_sym_continue] = ACTIONS(2171), - [anon_sym_return] = ACTIONS(2171), - [anon_sym_DOLLARfor] = ACTIONS(2171), - [anon_sym_for] = ACTIONS(2171), - [anon_sym_POUND] = ACTIONS(2171), - [anon_sym_asm] = ACTIONS(2171), - [anon_sym_AT_LBRACK] = ACTIONS(2171), + [anon_sym_DOT] = ACTIONS(4130), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_const] = ACTIONS(4130), + [anon_sym_LPAREN] = ACTIONS(4130), + [anon_sym___global] = ACTIONS(4130), + [anon_sym_type] = ACTIONS(4130), + [anon_sym_fn] = ACTIONS(4130), + [anon_sym_PLUS] = ACTIONS(4130), + [anon_sym_DASH] = ACTIONS(4130), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_struct] = ACTIONS(4130), + [anon_sym_union] = ACTIONS(4130), + [anon_sym_pub] = ACTIONS(4130), + [anon_sym_mut] = ACTIONS(4130), + [anon_sym_enum] = ACTIONS(4130), + [anon_sym_interface] = ACTIONS(4130), + [anon_sym_QMARK] = ACTIONS(4130), + [anon_sym_BANG] = ACTIONS(4130), + [anon_sym_go] = ACTIONS(4130), + [anon_sym_spawn] = ACTIONS(4130), + [anon_sym_json_DOTdecode] = ACTIONS(4130), + [anon_sym_LBRACK2] = ACTIONS(4130), + [anon_sym_TILDE] = ACTIONS(4130), + [anon_sym_CARET] = ACTIONS(4130), + [anon_sym_AMP] = ACTIONS(4130), + [anon_sym_LT_DASH] = ACTIONS(4130), + [sym_none] = ACTIONS(4130), + [sym_true] = ACTIONS(4130), + [sym_false] = ACTIONS(4130), + [sym_nil] = ACTIONS(4130), + [anon_sym_if] = ACTIONS(4130), + [anon_sym_DOLLARif] = ACTIONS(4130), + [anon_sym_match] = ACTIONS(4130), + [anon_sym_select] = ACTIONS(4130), + [anon_sym_lock] = ACTIONS(4130), + [anon_sym_rlock] = ACTIONS(4130), + [anon_sym_unsafe] = ACTIONS(4130), + [anon_sym_sql] = ACTIONS(4130), + [sym_int_literal] = ACTIONS(4130), + [sym_float_literal] = ACTIONS(4130), + [sym_rune_literal] = ACTIONS(4130), + [anon_sym_SQUOTE] = ACTIONS(4130), + [anon_sym_DQUOTE] = ACTIONS(4130), + [anon_sym_c_SQUOTE] = ACTIONS(4130), + [anon_sym_c_DQUOTE] = ACTIONS(4130), + [anon_sym_r_SQUOTE] = ACTIONS(4130), + [anon_sym_r_DQUOTE] = ACTIONS(4130), + [sym_pseudo_compile_time_identifier] = ACTIONS(4130), + [anon_sym_shared] = ACTIONS(4130), + [anon_sym_map_LBRACK] = ACTIONS(4130), + [anon_sym_chan] = ACTIONS(4130), + [anon_sym_thread] = ACTIONS(4130), + [anon_sym_atomic] = ACTIONS(4130), + [anon_sym_assert] = ACTIONS(4130), + [anon_sym_defer] = ACTIONS(4130), + [anon_sym_goto] = ACTIONS(4130), + [anon_sym_break] = ACTIONS(4130), + [anon_sym_continue] = ACTIONS(4130), + [anon_sym_return] = ACTIONS(4130), + [anon_sym_DOLLARfor] = ACTIONS(4130), + [anon_sym_for] = ACTIONS(4130), + [anon_sym_POUND] = ACTIONS(4130), + [anon_sym_asm] = ACTIONS(4130), + [anon_sym_AT_LBRACK] = ACTIONS(4130), }, - [1458] = { - [sym_line_comment] = STATE(1458), - [sym_block_comment] = STATE(1458), - [ts_builtin_sym_end] = ACTIONS(2251), - [sym_identifier] = ACTIONS(2253), - [anon_sym_LF] = ACTIONS(2253), - [anon_sym_CR] = ACTIONS(2253), - [anon_sym_CR_LF] = ACTIONS(2253), + [1471] = { + [sym_line_comment] = STATE(1471), + [sym_block_comment] = STATE(1471), + [sym_block] = STATE(1610), + [ts_builtin_sym_end] = ACTIONS(4132), + [sym_identifier] = ACTIONS(4134), + [anon_sym_LF] = ACTIONS(4134), + [anon_sym_CR] = ACTIONS(4134), + [anon_sym_CR_LF] = ACTIONS(4134), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(2253), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(2253), - [anon_sym___global] = ACTIONS(2253), - [anon_sym_type] = ACTIONS(2253), - [anon_sym_PIPE] = ACTIONS(2253), - [anon_sym_fn] = ACTIONS(2253), - [anon_sym_PLUS] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_struct] = ACTIONS(2253), - [anon_sym_union] = ACTIONS(2253), - [anon_sym_pub] = ACTIONS(2253), - [anon_sym_mut] = ACTIONS(2253), - [anon_sym_enum] = ACTIONS(2253), - [anon_sym_interface] = ACTIONS(2253), - [anon_sym_QMARK] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(2253), - [anon_sym_go] = ACTIONS(2253), - [anon_sym_spawn] = ACTIONS(2253), - [anon_sym_json_DOTdecode] = ACTIONS(2253), - [anon_sym_LBRACK2] = ACTIONS(2253), - [anon_sym_TILDE] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2253), - [anon_sym_AMP] = ACTIONS(2253), - [anon_sym_LT_DASH] = ACTIONS(2253), - [sym_none] = ACTIONS(2253), - [sym_true] = ACTIONS(2253), - [sym_false] = ACTIONS(2253), - [sym_nil] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2253), - [anon_sym_DOLLARif] = ACTIONS(2253), - [anon_sym_match] = ACTIONS(2253), - [anon_sym_select] = ACTIONS(2253), - [anon_sym_lock] = ACTIONS(2253), - [anon_sym_rlock] = ACTIONS(2253), - [anon_sym_unsafe] = ACTIONS(2253), - [anon_sym_sql] = ACTIONS(2253), - [sym_int_literal] = ACTIONS(2253), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [anon_sym_SQUOTE] = ACTIONS(2253), - [anon_sym_DQUOTE] = ACTIONS(2253), - [anon_sym_c_SQUOTE] = ACTIONS(2253), - [anon_sym_c_DQUOTE] = ACTIONS(2253), - [anon_sym_r_SQUOTE] = ACTIONS(2253), - [anon_sym_r_DQUOTE] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(2253), - [anon_sym_shared] = ACTIONS(2253), - [anon_sym_map_LBRACK] = ACTIONS(2253), - [anon_sym_chan] = ACTIONS(2253), - [anon_sym_thread] = ACTIONS(2253), - [anon_sym_atomic] = ACTIONS(2253), - [anon_sym_assert] = ACTIONS(2253), - [anon_sym_defer] = ACTIONS(2253), - [anon_sym_goto] = ACTIONS(2253), - [anon_sym_break] = ACTIONS(2253), - [anon_sym_continue] = ACTIONS(2253), - [anon_sym_return] = ACTIONS(2253), - [anon_sym_DOLLARfor] = ACTIONS(2253), - [anon_sym_for] = ACTIONS(2253), - [anon_sym_POUND] = ACTIONS(2253), - [anon_sym_asm] = ACTIONS(2253), - [anon_sym_AT_LBRACK] = ACTIONS(2253), + [anon_sym_DOT] = ACTIONS(4134), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_const] = ACTIONS(4134), + [anon_sym_LPAREN] = ACTIONS(4134), + [anon_sym___global] = ACTIONS(4134), + [anon_sym_type] = ACTIONS(4134), + [anon_sym_fn] = ACTIONS(4134), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4134), + [anon_sym_struct] = ACTIONS(4134), + [anon_sym_union] = ACTIONS(4134), + [anon_sym_pub] = ACTIONS(4134), + [anon_sym_mut] = ACTIONS(4134), + [anon_sym_enum] = ACTIONS(4134), + [anon_sym_interface] = ACTIONS(4134), + [anon_sym_QMARK] = ACTIONS(4134), + [anon_sym_BANG] = ACTIONS(4134), + [anon_sym_go] = ACTIONS(4134), + [anon_sym_spawn] = ACTIONS(4134), + [anon_sym_json_DOTdecode] = ACTIONS(4134), + [anon_sym_LBRACK2] = ACTIONS(4134), + [anon_sym_TILDE] = ACTIONS(4134), + [anon_sym_CARET] = ACTIONS(4134), + [anon_sym_AMP] = ACTIONS(4134), + [anon_sym_LT_DASH] = ACTIONS(4134), + [sym_none] = ACTIONS(4134), + [sym_true] = ACTIONS(4134), + [sym_false] = ACTIONS(4134), + [sym_nil] = ACTIONS(4134), + [anon_sym_if] = ACTIONS(4134), + [anon_sym_DOLLARif] = ACTIONS(4134), + [anon_sym_match] = ACTIONS(4134), + [anon_sym_select] = ACTIONS(4134), + [anon_sym_lock] = ACTIONS(4134), + [anon_sym_rlock] = ACTIONS(4134), + [anon_sym_unsafe] = ACTIONS(4134), + [anon_sym_sql] = ACTIONS(4134), + [sym_int_literal] = ACTIONS(4134), + [sym_float_literal] = ACTIONS(4134), + [sym_rune_literal] = ACTIONS(4134), + [anon_sym_SQUOTE] = ACTIONS(4134), + [anon_sym_DQUOTE] = ACTIONS(4134), + [anon_sym_c_SQUOTE] = ACTIONS(4134), + [anon_sym_c_DQUOTE] = ACTIONS(4134), + [anon_sym_r_SQUOTE] = ACTIONS(4134), + [anon_sym_r_DQUOTE] = ACTIONS(4134), + [sym_pseudo_compile_time_identifier] = ACTIONS(4134), + [anon_sym_shared] = ACTIONS(4134), + [anon_sym_map_LBRACK] = ACTIONS(4134), + [anon_sym_chan] = ACTIONS(4134), + [anon_sym_thread] = ACTIONS(4134), + [anon_sym_atomic] = ACTIONS(4134), + [anon_sym_assert] = ACTIONS(4134), + [anon_sym_defer] = ACTIONS(4134), + [anon_sym_goto] = ACTIONS(4134), + [anon_sym_break] = ACTIONS(4134), + [anon_sym_continue] = ACTIONS(4134), + [anon_sym_return] = ACTIONS(4134), + [anon_sym_DOLLARfor] = ACTIONS(4134), + [anon_sym_for] = ACTIONS(4134), + [anon_sym_POUND] = ACTIONS(4134), + [anon_sym_asm] = ACTIONS(4134), + [anon_sym_AT_LBRACK] = ACTIONS(4134), }, - [1459] = { - [sym_line_comment] = STATE(1459), - [sym_block_comment] = STATE(1459), - [ts_builtin_sym_end] = ACTIONS(2247), - [sym_identifier] = ACTIONS(2249), - [anon_sym_LF] = ACTIONS(2249), - [anon_sym_CR] = ACTIONS(2249), - [anon_sym_CR_LF] = ACTIONS(2249), + [1472] = { + [sym_line_comment] = STATE(1472), + [sym_block_comment] = STATE(1472), + [sym_label_reference] = STATE(1581), + [ts_builtin_sym_end] = ACTIONS(4136), + [sym_identifier] = ACTIONS(4112), + [anon_sym_LF] = ACTIONS(4138), + [anon_sym_CR] = ACTIONS(4138), + [anon_sym_CR_LF] = ACTIONS(4138), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2249), - [anon_sym___global] = ACTIONS(2249), - [anon_sym_type] = ACTIONS(2249), - [anon_sym_PIPE] = ACTIONS(2249), - [anon_sym_fn] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2249), - [anon_sym_struct] = ACTIONS(2249), - [anon_sym_union] = ACTIONS(2249), - [anon_sym_pub] = ACTIONS(2249), - [anon_sym_mut] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), - [anon_sym_interface] = ACTIONS(2249), - [anon_sym_QMARK] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(2249), - [anon_sym_go] = ACTIONS(2249), - [anon_sym_spawn] = ACTIONS(2249), - [anon_sym_json_DOTdecode] = ACTIONS(2249), - [anon_sym_LBRACK2] = ACTIONS(2249), - [anon_sym_TILDE] = ACTIONS(2249), - [anon_sym_CARET] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_DASH] = ACTIONS(2249), - [sym_none] = ACTIONS(2249), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [sym_nil] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_DOLLARif] = ACTIONS(2249), - [anon_sym_match] = ACTIONS(2249), - [anon_sym_select] = ACTIONS(2249), - [anon_sym_lock] = ACTIONS(2249), - [anon_sym_rlock] = ACTIONS(2249), - [anon_sym_unsafe] = ACTIONS(2249), - [anon_sym_sql] = ACTIONS(2249), - [sym_int_literal] = ACTIONS(2249), - [sym_float_literal] = ACTIONS(2249), - [sym_rune_literal] = ACTIONS(2249), - [anon_sym_SQUOTE] = ACTIONS(2249), - [anon_sym_DQUOTE] = ACTIONS(2249), - [anon_sym_c_SQUOTE] = ACTIONS(2249), - [anon_sym_c_DQUOTE] = ACTIONS(2249), - [anon_sym_r_SQUOTE] = ACTIONS(2249), - [anon_sym_r_DQUOTE] = ACTIONS(2249), - [sym_pseudo_compile_time_identifier] = ACTIONS(2249), - [anon_sym_shared] = ACTIONS(2249), - [anon_sym_map_LBRACK] = ACTIONS(2249), - [anon_sym_chan] = ACTIONS(2249), - [anon_sym_thread] = ACTIONS(2249), - [anon_sym_atomic] = ACTIONS(2249), - [anon_sym_assert] = ACTIONS(2249), - [anon_sym_defer] = ACTIONS(2249), - [anon_sym_goto] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_DOLLARfor] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_POUND] = ACTIONS(2249), - [anon_sym_asm] = ACTIONS(2249), - [anon_sym_AT_LBRACK] = ACTIONS(2249), + [anon_sym_DOT] = ACTIONS(4138), + [anon_sym_LBRACE] = ACTIONS(4138), + [anon_sym_const] = ACTIONS(4138), + [anon_sym_LPAREN] = ACTIONS(4138), + [anon_sym___global] = ACTIONS(4138), + [anon_sym_type] = ACTIONS(4138), + [anon_sym_fn] = ACTIONS(4138), + [anon_sym_PLUS] = ACTIONS(4138), + [anon_sym_DASH] = ACTIONS(4138), + [anon_sym_STAR] = ACTIONS(4138), + [anon_sym_struct] = ACTIONS(4138), + [anon_sym_union] = ACTIONS(4138), + [anon_sym_pub] = ACTIONS(4138), + [anon_sym_mut] = ACTIONS(4138), + [anon_sym_enum] = ACTIONS(4138), + [anon_sym_interface] = ACTIONS(4138), + [anon_sym_QMARK] = ACTIONS(4138), + [anon_sym_BANG] = ACTIONS(4138), + [anon_sym_go] = ACTIONS(4138), + [anon_sym_spawn] = ACTIONS(4138), + [anon_sym_json_DOTdecode] = ACTIONS(4138), + [anon_sym_LBRACK2] = ACTIONS(4138), + [anon_sym_TILDE] = ACTIONS(4138), + [anon_sym_CARET] = ACTIONS(4138), + [anon_sym_AMP] = ACTIONS(4138), + [anon_sym_LT_DASH] = ACTIONS(4138), + [sym_none] = ACTIONS(4138), + [sym_true] = ACTIONS(4138), + [sym_false] = ACTIONS(4138), + [sym_nil] = ACTIONS(4138), + [anon_sym_if] = ACTIONS(4138), + [anon_sym_DOLLARif] = ACTIONS(4138), + [anon_sym_match] = ACTIONS(4138), + [anon_sym_select] = ACTIONS(4138), + [anon_sym_lock] = ACTIONS(4138), + [anon_sym_rlock] = ACTIONS(4138), + [anon_sym_unsafe] = ACTIONS(4138), + [anon_sym_sql] = ACTIONS(4138), + [sym_int_literal] = ACTIONS(4138), + [sym_float_literal] = ACTIONS(4138), + [sym_rune_literal] = ACTIONS(4138), + [anon_sym_SQUOTE] = ACTIONS(4138), + [anon_sym_DQUOTE] = ACTIONS(4138), + [anon_sym_c_SQUOTE] = ACTIONS(4138), + [anon_sym_c_DQUOTE] = ACTIONS(4138), + [anon_sym_r_SQUOTE] = ACTIONS(4138), + [anon_sym_r_DQUOTE] = ACTIONS(4138), + [sym_pseudo_compile_time_identifier] = ACTIONS(4138), + [anon_sym_shared] = ACTIONS(4138), + [anon_sym_map_LBRACK] = ACTIONS(4138), + [anon_sym_chan] = ACTIONS(4138), + [anon_sym_thread] = ACTIONS(4138), + [anon_sym_atomic] = ACTIONS(4138), + [anon_sym_assert] = ACTIONS(4138), + [anon_sym_defer] = ACTIONS(4138), + [anon_sym_goto] = ACTIONS(4138), + [anon_sym_break] = ACTIONS(4138), + [anon_sym_continue] = ACTIONS(4138), + [anon_sym_return] = ACTIONS(4138), + [anon_sym_DOLLARfor] = ACTIONS(4138), + [anon_sym_for] = ACTIONS(4138), + [anon_sym_POUND] = ACTIONS(4138), + [anon_sym_asm] = ACTIONS(4138), + [anon_sym_AT_LBRACK] = ACTIONS(4138), }, - [1460] = { - [sym_line_comment] = STATE(1460), - [sym_block_comment] = STATE(1460), - [sym_block] = STATE(1550), - [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), + [1473] = { + [sym_line_comment] = STATE(1473), + [sym_block_comment] = STATE(1473), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2421), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(611), + [anon_sym_CR] = ACTIONS(611), + [anon_sym_CR_LF] = ACTIONS(611), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4140), - [anon_sym_LBRACE] = ACTIONS(4022), - [anon_sym_const] = ACTIONS(4140), - [anon_sym_LPAREN] = ACTIONS(4140), - [anon_sym___global] = ACTIONS(4140), - [anon_sym_type] = ACTIONS(4140), - [anon_sym_fn] = ACTIONS(4140), - [anon_sym_PLUS] = ACTIONS(4140), - [anon_sym_DASH] = ACTIONS(4140), - [anon_sym_STAR] = ACTIONS(4140), - [anon_sym_struct] = ACTIONS(4140), - [anon_sym_union] = ACTIONS(4140), - [anon_sym_pub] = ACTIONS(4140), - [anon_sym_mut] = ACTIONS(4140), - [anon_sym_enum] = ACTIONS(4140), - [anon_sym_interface] = ACTIONS(4140), - [anon_sym_QMARK] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(611), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_as] = ACTIONS(611), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_RBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(611), + [anon_sym_BANG_EQ] = ACTIONS(611), + [anon_sym_LT_EQ] = ACTIONS(611), + [anon_sym_GT_EQ] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_QMARK] = ACTIONS(515), [anon_sym_BANG] = ACTIONS(4140), - [anon_sym_go] = ACTIONS(4140), - [anon_sym_spawn] = ACTIONS(4140), - [anon_sym_json_DOTdecode] = ACTIONS(4140), - [anon_sym_LBRACK2] = ACTIONS(4140), - [anon_sym_TILDE] = ACTIONS(4140), - [anon_sym_CARET] = ACTIONS(4140), - [anon_sym_AMP] = ACTIONS(4140), - [anon_sym_LT_DASH] = ACTIONS(4140), - [sym_none] = ACTIONS(4140), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [sym_nil] = ACTIONS(4140), - [anon_sym_if] = ACTIONS(4140), - [anon_sym_DOLLARif] = ACTIONS(4140), - [anon_sym_match] = ACTIONS(4140), - [anon_sym_select] = ACTIONS(4140), - [anon_sym_lock] = ACTIONS(4140), - [anon_sym_rlock] = ACTIONS(4140), - [anon_sym_unsafe] = ACTIONS(4140), - [anon_sym_sql] = ACTIONS(4140), - [sym_int_literal] = ACTIONS(4140), - [sym_float_literal] = ACTIONS(4140), - [sym_rune_literal] = ACTIONS(4140), - [anon_sym_SQUOTE] = ACTIONS(4140), - [anon_sym_DQUOTE] = ACTIONS(4140), - [anon_sym_c_SQUOTE] = ACTIONS(4140), - [anon_sym_c_DQUOTE] = ACTIONS(4140), - [anon_sym_r_SQUOTE] = ACTIONS(4140), - [anon_sym_r_DQUOTE] = ACTIONS(4140), - [sym_pseudo_compile_time_identifier] = ACTIONS(4140), - [anon_sym_shared] = ACTIONS(4140), - [anon_sym_map_LBRACK] = ACTIONS(4140), - [anon_sym_chan] = ACTIONS(4140), - [anon_sym_thread] = ACTIONS(4140), - [anon_sym_atomic] = ACTIONS(4140), - [anon_sym_assert] = ACTIONS(4140), - [anon_sym_defer] = ACTIONS(4140), - [anon_sym_goto] = ACTIONS(4140), - [anon_sym_break] = ACTIONS(4140), - [anon_sym_continue] = ACTIONS(4140), - [anon_sym_return] = ACTIONS(4140), - [anon_sym_DOLLARfor] = ACTIONS(4140), - [anon_sym_for] = ACTIONS(4140), - [anon_sym_POUND] = ACTIONS(4140), - [anon_sym_asm] = ACTIONS(4140), - [anon_sym_AT_LBRACK] = ACTIONS(4140), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(611), + [anon_sym_AMP_CARET] = ACTIONS(611), + [anon_sym_AMP_AMP] = ACTIONS(611), + [anon_sym_PIPE_PIPE] = ACTIONS(611), + [anon_sym_or] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(611), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(611), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(611), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(561), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [1461] = { - [sym_line_comment] = STATE(1461), - [sym_block_comment] = STATE(1461), - [sym_block] = STATE(1516), + [1474] = { + [sym_line_comment] = STATE(1474), + [sym_block_comment] = STATE(1474), + [sym_block] = STATE(1574), [ts_builtin_sym_end] = ACTIONS(4142), [sym_identifier] = ACTIONS(4144), [anon_sym_LF] = ACTIONS(4144), @@ -177834,7 +179261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_LBRACE] = ACTIONS(4068), [anon_sym_const] = ACTIONS(4144), [anon_sym_LPAREN] = ACTIONS(4144), [anon_sym___global] = ACTIONS(4144), @@ -177898,2876 +179325,1824 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(4144), [anon_sym_AT_LBRACK] = ACTIONS(4144), }, - [1462] = { - [sym_line_comment] = STATE(1462), - [sym_block_comment] = STATE(1462), - [ts_builtin_sym_end] = ACTIONS(2161), - [sym_identifier] = ACTIONS(2163), - [anon_sym_LF] = ACTIONS(2163), - [anon_sym_CR] = ACTIONS(2163), - [anon_sym_CR_LF] = ACTIONS(2163), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_const] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym___global] = ACTIONS(2163), - [anon_sym_type] = ACTIONS(2163), - [anon_sym_PIPE] = ACTIONS(2163), - [anon_sym_fn] = ACTIONS(2163), - [anon_sym_PLUS] = ACTIONS(2163), - [anon_sym_DASH] = ACTIONS(2163), - [anon_sym_STAR] = ACTIONS(2163), - [anon_sym_struct] = ACTIONS(2163), - [anon_sym_union] = ACTIONS(2163), - [anon_sym_pub] = ACTIONS(2163), - [anon_sym_mut] = ACTIONS(2163), - [anon_sym_enum] = ACTIONS(2163), - [anon_sym_interface] = ACTIONS(2163), - [anon_sym_QMARK] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(2163), - [anon_sym_go] = ACTIONS(2163), - [anon_sym_spawn] = ACTIONS(2163), - [anon_sym_json_DOTdecode] = ACTIONS(2163), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2163), - [anon_sym_CARET] = ACTIONS(2163), - [anon_sym_AMP] = ACTIONS(2163), - [anon_sym_LT_DASH] = ACTIONS(2163), - [sym_none] = ACTIONS(2163), - [sym_true] = ACTIONS(2163), - [sym_false] = ACTIONS(2163), - [sym_nil] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2163), - [anon_sym_DOLLARif] = ACTIONS(2163), - [anon_sym_match] = ACTIONS(2163), - [anon_sym_select] = ACTIONS(2163), - [anon_sym_lock] = ACTIONS(2163), - [anon_sym_rlock] = ACTIONS(2163), - [anon_sym_unsafe] = ACTIONS(2163), - [anon_sym_sql] = ACTIONS(2163), - [sym_int_literal] = ACTIONS(2163), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(2163), - [anon_sym_c_SQUOTE] = ACTIONS(2163), - [anon_sym_c_DQUOTE] = ACTIONS(2163), - [anon_sym_r_SQUOTE] = ACTIONS(2163), - [anon_sym_r_DQUOTE] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(2163), - [anon_sym_shared] = ACTIONS(2163), - [anon_sym_map_LBRACK] = ACTIONS(2163), - [anon_sym_chan] = ACTIONS(2163), - [anon_sym_thread] = ACTIONS(2163), - [anon_sym_atomic] = ACTIONS(2163), - [anon_sym_assert] = ACTIONS(2163), - [anon_sym_defer] = ACTIONS(2163), - [anon_sym_goto] = ACTIONS(2163), - [anon_sym_break] = ACTIONS(2163), - [anon_sym_continue] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2163), - [anon_sym_DOLLARfor] = ACTIONS(2163), - [anon_sym_for] = ACTIONS(2163), - [anon_sym_POUND] = ACTIONS(2163), - [anon_sym_asm] = ACTIONS(2163), - [anon_sym_AT_LBRACK] = ACTIONS(2163), - }, - [1463] = { - [sym_line_comment] = STATE(1463), - [sym_block_comment] = STATE(1463), - [sym_reference_expression] = STATE(4386), - [sym_type_reference_expression] = STATE(2419), - [sym_plain_type] = STATE(2492), - [sym__plain_type_without_special] = STATE(2533), - [sym_anon_struct_type] = STATE(2535), - [sym_multi_return_type] = STATE(2533), - [sym_result_type] = STATE(2533), - [sym_option_type] = STATE(2533), - [sym_qualified_type] = STATE(2419), - [sym_fixed_array_type] = STATE(2535), - [sym_array_type] = STATE(2535), - [sym_pointer_type] = STATE(2535), - [sym_wrong_pointer_type] = STATE(2535), - [sym_map_type] = STATE(2535), - [sym_channel_type] = STATE(2535), - [sym_shared_type] = STATE(2535), - [sym_thread_type] = STATE(2535), - [sym_atomic_type] = STATE(2535), - [sym_generic_type] = STATE(2535), - [sym_function_type] = STATE(2535), - [sym_identifier] = ACTIONS(4068), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_CR] = ACTIONS(597), - [anon_sym_CR_LF] = ACTIONS(597), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(597), - [anon_sym_as] = ACTIONS(597), - [anon_sym_COMMA] = ACTIONS(597), - [anon_sym_RBRACE] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(4074), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(597), - [anon_sym_LT] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(597), - [anon_sym_EQ_EQ] = ACTIONS(597), - [anon_sym_BANG_EQ] = ACTIONS(597), - [anon_sym_LT_EQ] = ACTIONS(597), - [anon_sym_GT_EQ] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(595), - [anon_sym_struct] = ACTIONS(4076), - [anon_sym_PLUS_PLUS] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(597), - [anon_sym_QMARK] = ACTIONS(4078), - [anon_sym_BANG] = ACTIONS(4080), - [anon_sym_LBRACK2] = ACTIONS(4082), - [anon_sym_CARET] = ACTIONS(597), - [anon_sym_AMP] = ACTIONS(4084), - [anon_sym_LT_LT] = ACTIONS(597), - [anon_sym_GT_GT] = ACTIONS(597), - [anon_sym_GT_GT_GT] = ACTIONS(597), - [anon_sym_AMP_CARET] = ACTIONS(597), - [anon_sym_AMP_AMP] = ACTIONS(597), - [anon_sym_PIPE_PIPE] = ACTIONS(597), - [anon_sym_or] = ACTIONS(597), - [anon_sym_QMARK_DOT] = ACTIONS(597), - [anon_sym_POUND_LBRACK] = ACTIONS(597), - [anon_sym_is] = ACTIONS(597), - [anon_sym_BANGis] = ACTIONS(597), - [anon_sym_in] = ACTIONS(597), - [anon_sym_BANGin] = ACTIONS(597), - [anon_sym_shared] = ACTIONS(4086), - [anon_sym_map_LBRACK] = ACTIONS(4088), - [anon_sym_chan] = ACTIONS(4090), - [anon_sym_thread] = ACTIONS(4092), - [anon_sym_atomic] = ACTIONS(4094), - }, - [1464] = { - [sym_line_comment] = STATE(1464), - [sym_block_comment] = STATE(1464), - [ts_builtin_sym_end] = ACTIONS(2183), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LF] = ACTIONS(2185), - [anon_sym_CR] = ACTIONS(2185), - [anon_sym_CR_LF] = ACTIONS(2185), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym___global] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_PIPE] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(2185), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_mut] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_interface] = ACTIONS(2185), - [anon_sym_QMARK] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_go] = ACTIONS(2185), - [anon_sym_spawn] = ACTIONS(2185), - [anon_sym_json_DOTdecode] = ACTIONS(2185), - [anon_sym_LBRACK2] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_LT_DASH] = ACTIONS(2185), - [sym_none] = ACTIONS(2185), - [sym_true] = ACTIONS(2185), - [sym_false] = ACTIONS(2185), - [sym_nil] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_DOLLARif] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_select] = ACTIONS(2185), - [anon_sym_lock] = ACTIONS(2185), - [anon_sym_rlock] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_sql] = ACTIONS(2185), - [sym_int_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_rune_literal] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_DQUOTE] = ACTIONS(2185), - [anon_sym_c_SQUOTE] = ACTIONS(2185), - [anon_sym_c_DQUOTE] = ACTIONS(2185), - [anon_sym_r_SQUOTE] = ACTIONS(2185), - [anon_sym_r_DQUOTE] = ACTIONS(2185), - [sym_pseudo_compile_time_identifier] = ACTIONS(2185), - [anon_sym_shared] = ACTIONS(2185), - [anon_sym_map_LBRACK] = ACTIONS(2185), - [anon_sym_chan] = ACTIONS(2185), - [anon_sym_thread] = ACTIONS(2185), - [anon_sym_atomic] = ACTIONS(2185), - [anon_sym_assert] = ACTIONS(2185), - [anon_sym_defer] = ACTIONS(2185), - [anon_sym_goto] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_DOLLARfor] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_POUND] = ACTIONS(2185), - [anon_sym_asm] = ACTIONS(2185), - [anon_sym_AT_LBRACK] = ACTIONS(2185), - }, - [1465] = { - [sym_line_comment] = STATE(1465), - [sym_block_comment] = STATE(1465), - [ts_builtin_sym_end] = ACTIONS(2203), - [sym_identifier] = ACTIONS(2205), - [anon_sym_LF] = ACTIONS(2205), - [anon_sym_CR] = ACTIONS(2205), - [anon_sym_CR_LF] = ACTIONS(2205), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym___global] = ACTIONS(2205), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_PIPE] = ACTIONS(2205), - [anon_sym_fn] = ACTIONS(2205), - [anon_sym_PLUS] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_STAR] = ACTIONS(2205), - [anon_sym_struct] = ACTIONS(2205), - [anon_sym_union] = ACTIONS(2205), - [anon_sym_pub] = ACTIONS(2205), - [anon_sym_mut] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), - [anon_sym_interface] = ACTIONS(2205), - [anon_sym_QMARK] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_go] = ACTIONS(2205), - [anon_sym_spawn] = ACTIONS(2205), - [anon_sym_json_DOTdecode] = ACTIONS(2205), - [anon_sym_LBRACK2] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_CARET] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), - [anon_sym_LT_DASH] = ACTIONS(2205), - [sym_none] = ACTIONS(2205), - [sym_true] = ACTIONS(2205), - [sym_false] = ACTIONS(2205), - [sym_nil] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_DOLLARif] = ACTIONS(2205), - [anon_sym_match] = ACTIONS(2205), - [anon_sym_select] = ACTIONS(2205), - [anon_sym_lock] = ACTIONS(2205), - [anon_sym_rlock] = ACTIONS(2205), - [anon_sym_unsafe] = ACTIONS(2205), - [anon_sym_sql] = ACTIONS(2205), - [sym_int_literal] = ACTIONS(2205), - [sym_float_literal] = ACTIONS(2205), - [sym_rune_literal] = ACTIONS(2205), - [anon_sym_SQUOTE] = ACTIONS(2205), - [anon_sym_DQUOTE] = ACTIONS(2205), - [anon_sym_c_SQUOTE] = ACTIONS(2205), - [anon_sym_c_DQUOTE] = ACTIONS(2205), - [anon_sym_r_SQUOTE] = ACTIONS(2205), - [anon_sym_r_DQUOTE] = ACTIONS(2205), - [sym_pseudo_compile_time_identifier] = ACTIONS(2205), - [anon_sym_shared] = ACTIONS(2205), - [anon_sym_map_LBRACK] = ACTIONS(2205), - [anon_sym_chan] = ACTIONS(2205), - [anon_sym_thread] = ACTIONS(2205), - [anon_sym_atomic] = ACTIONS(2205), - [anon_sym_assert] = ACTIONS(2205), - [anon_sym_defer] = ACTIONS(2205), - [anon_sym_goto] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_DOLLARfor] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_POUND] = ACTIONS(2205), - [anon_sym_asm] = ACTIONS(2205), - [anon_sym_AT_LBRACK] = ACTIONS(2205), - }, - [1466] = { - [sym_line_comment] = STATE(1466), - [sym_block_comment] = STATE(1466), - [ts_builtin_sym_end] = ACTIONS(2207), - [sym_identifier] = ACTIONS(2209), - [anon_sym_LF] = ACTIONS(2209), - [anon_sym_CR] = ACTIONS(2209), - [anon_sym_CR_LF] = ACTIONS(2209), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2209), - [anon_sym_const] = ACTIONS(2209), - [anon_sym_LPAREN] = ACTIONS(2209), - [anon_sym___global] = ACTIONS(2209), - [anon_sym_type] = ACTIONS(2209), - [anon_sym_PIPE] = ACTIONS(2209), - [anon_sym_fn] = ACTIONS(2209), - [anon_sym_PLUS] = ACTIONS(2209), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(2209), - [anon_sym_union] = ACTIONS(2209), - [anon_sym_pub] = ACTIONS(2209), - [anon_sym_mut] = ACTIONS(2209), - [anon_sym_enum] = ACTIONS(2209), - [anon_sym_interface] = ACTIONS(2209), - [anon_sym_QMARK] = ACTIONS(2209), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_go] = ACTIONS(2209), - [anon_sym_spawn] = ACTIONS(2209), - [anon_sym_json_DOTdecode] = ACTIONS(2209), - [anon_sym_LBRACK2] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_LT_DASH] = ACTIONS(2209), - [sym_none] = ACTIONS(2209), - [sym_true] = ACTIONS(2209), - [sym_false] = ACTIONS(2209), - [sym_nil] = ACTIONS(2209), - [anon_sym_if] = ACTIONS(2209), - [anon_sym_DOLLARif] = ACTIONS(2209), - [anon_sym_match] = ACTIONS(2209), - [anon_sym_select] = ACTIONS(2209), - [anon_sym_lock] = ACTIONS(2209), - [anon_sym_rlock] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(2209), - [anon_sym_sql] = ACTIONS(2209), - [sym_int_literal] = ACTIONS(2209), - [sym_float_literal] = ACTIONS(2209), - [sym_rune_literal] = ACTIONS(2209), - [anon_sym_SQUOTE] = ACTIONS(2209), - [anon_sym_DQUOTE] = ACTIONS(2209), - [anon_sym_c_SQUOTE] = ACTIONS(2209), - [anon_sym_c_DQUOTE] = ACTIONS(2209), - [anon_sym_r_SQUOTE] = ACTIONS(2209), - [anon_sym_r_DQUOTE] = ACTIONS(2209), - [sym_pseudo_compile_time_identifier] = ACTIONS(2209), - [anon_sym_shared] = ACTIONS(2209), - [anon_sym_map_LBRACK] = ACTIONS(2209), - [anon_sym_chan] = ACTIONS(2209), - [anon_sym_thread] = ACTIONS(2209), - [anon_sym_atomic] = ACTIONS(2209), - [anon_sym_assert] = ACTIONS(2209), - [anon_sym_defer] = ACTIONS(2209), - [anon_sym_goto] = ACTIONS(2209), - [anon_sym_break] = ACTIONS(2209), - [anon_sym_continue] = ACTIONS(2209), - [anon_sym_return] = ACTIONS(2209), - [anon_sym_DOLLARfor] = ACTIONS(2209), - [anon_sym_for] = ACTIONS(2209), - [anon_sym_POUND] = ACTIONS(2209), - [anon_sym_asm] = ACTIONS(2209), - [anon_sym_AT_LBRACK] = ACTIONS(2209), - }, - [1467] = { - [sym_line_comment] = STATE(1467), - [sym_block_comment] = STATE(1467), - [sym_label_reference] = STATE(1557), - [ts_builtin_sym_end] = ACTIONS(4146), - [sym_identifier] = ACTIONS(4148), - [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(4150), - [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), - [anon_sym_SQUOTE] = ACTIONS(4150), - [anon_sym_DQUOTE] = ACTIONS(4150), - [anon_sym_c_SQUOTE] = ACTIONS(4150), - [anon_sym_c_DQUOTE] = ACTIONS(4150), - [anon_sym_r_SQUOTE] = ACTIONS(4150), - [anon_sym_r_DQUOTE] = 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), - }, - [1468] = { - [sym_line_comment] = STATE(1468), - [sym_block_comment] = STATE(1468), - [ts_builtin_sym_end] = ACTIONS(2173), - [sym_identifier] = ACTIONS(2175), - [anon_sym_LF] = ACTIONS(2175), - [anon_sym_CR] = ACTIONS(2175), - [anon_sym_CR_LF] = ACTIONS(2175), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym___global] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2175), - [anon_sym_PIPE] = ACTIONS(2175), - [anon_sym_fn] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(2175), - [anon_sym_struct] = ACTIONS(2175), - [anon_sym_union] = ACTIONS(2175), - [anon_sym_pub] = ACTIONS(2175), - [anon_sym_mut] = ACTIONS(2175), - [anon_sym_enum] = ACTIONS(2175), - [anon_sym_interface] = ACTIONS(2175), - [anon_sym_QMARK] = ACTIONS(2175), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_go] = ACTIONS(2175), - [anon_sym_spawn] = ACTIONS(2175), - [anon_sym_json_DOTdecode] = ACTIONS(2175), - [anon_sym_LBRACK2] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_CARET] = ACTIONS(2175), - [anon_sym_AMP] = ACTIONS(2175), - [anon_sym_LT_DASH] = ACTIONS(2175), - [sym_none] = ACTIONS(2175), - [sym_true] = ACTIONS(2175), - [sym_false] = ACTIONS(2175), - [sym_nil] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_DOLLARif] = ACTIONS(2175), - [anon_sym_match] = ACTIONS(2175), - [anon_sym_select] = ACTIONS(2175), - [anon_sym_lock] = ACTIONS(2175), - [anon_sym_rlock] = ACTIONS(2175), - [anon_sym_unsafe] = ACTIONS(2175), - [anon_sym_sql] = ACTIONS(2175), - [sym_int_literal] = ACTIONS(2175), - [sym_float_literal] = ACTIONS(2175), - [sym_rune_literal] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_c_SQUOTE] = ACTIONS(2175), - [anon_sym_c_DQUOTE] = ACTIONS(2175), - [anon_sym_r_SQUOTE] = ACTIONS(2175), - [anon_sym_r_DQUOTE] = ACTIONS(2175), - [sym_pseudo_compile_time_identifier] = ACTIONS(2175), - [anon_sym_shared] = ACTIONS(2175), - [anon_sym_map_LBRACK] = ACTIONS(2175), - [anon_sym_chan] = ACTIONS(2175), - [anon_sym_thread] = ACTIONS(2175), - [anon_sym_atomic] = ACTIONS(2175), - [anon_sym_assert] = ACTIONS(2175), - [anon_sym_defer] = ACTIONS(2175), - [anon_sym_goto] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_DOLLARfor] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_POUND] = ACTIONS(2175), - [anon_sym_asm] = ACTIONS(2175), - [anon_sym_AT_LBRACK] = ACTIONS(2175), - }, - [1469] = { - [sym_line_comment] = STATE(1469), - [sym_block_comment] = STATE(1469), - [ts_builtin_sym_end] = ACTIONS(2211), - [sym_identifier] = ACTIONS(2213), - [anon_sym_LF] = ACTIONS(2213), - [anon_sym_CR] = ACTIONS(2213), - [anon_sym_CR_LF] = ACTIONS(2213), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym___global] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_PIPE] = ACTIONS(2213), - [anon_sym_fn] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_STAR] = ACTIONS(2213), - [anon_sym_struct] = ACTIONS(2213), - [anon_sym_union] = ACTIONS(2213), - [anon_sym_pub] = ACTIONS(2213), - [anon_sym_mut] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_QMARK] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2213), - [anon_sym_json_DOTdecode] = ACTIONS(2213), - [anon_sym_LBRACK2] = ACTIONS(2213), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_CARET] = ACTIONS(2213), - [anon_sym_AMP] = ACTIONS(2213), - [anon_sym_LT_DASH] = ACTIONS(2213), - [sym_none] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_nil] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_DOLLARif] = ACTIONS(2213), - [anon_sym_match] = ACTIONS(2213), - [anon_sym_select] = ACTIONS(2213), - [anon_sym_lock] = ACTIONS(2213), - [anon_sym_rlock] = ACTIONS(2213), - [anon_sym_unsafe] = ACTIONS(2213), - [anon_sym_sql] = ACTIONS(2213), - [sym_int_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), - [sym_rune_literal] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_DQUOTE] = ACTIONS(2213), - [anon_sym_c_SQUOTE] = ACTIONS(2213), - [anon_sym_c_DQUOTE] = ACTIONS(2213), - [anon_sym_r_SQUOTE] = ACTIONS(2213), - [anon_sym_r_DQUOTE] = ACTIONS(2213), - [sym_pseudo_compile_time_identifier] = ACTIONS(2213), - [anon_sym_shared] = ACTIONS(2213), - [anon_sym_map_LBRACK] = ACTIONS(2213), - [anon_sym_chan] = ACTIONS(2213), - [anon_sym_thread] = ACTIONS(2213), - [anon_sym_atomic] = ACTIONS(2213), - [anon_sym_assert] = ACTIONS(2213), - [anon_sym_defer] = ACTIONS(2213), - [anon_sym_goto] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_DOLLARfor] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_POUND] = ACTIONS(2213), - [anon_sym_asm] = ACTIONS(2213), - [anon_sym_AT_LBRACK] = ACTIONS(2213), - }, - [1470] = { - [sym_line_comment] = STATE(1470), - [sym_block_comment] = STATE(1470), - [ts_builtin_sym_end] = ACTIONS(2215), - [sym_identifier] = ACTIONS(2217), - [anon_sym_LF] = ACTIONS(2217), - [anon_sym_CR] = ACTIONS(2217), - [anon_sym_CR_LF] = ACTIONS(2217), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2217), - [anon_sym_const] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2217), - [anon_sym___global] = ACTIONS(2217), - [anon_sym_type] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2217), - [anon_sym_fn] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2217), - [anon_sym_DASH] = ACTIONS(2217), - [anon_sym_STAR] = ACTIONS(2217), - [anon_sym_struct] = ACTIONS(2217), - [anon_sym_union] = ACTIONS(2217), - [anon_sym_pub] = ACTIONS(2217), - [anon_sym_mut] = ACTIONS(2217), - [anon_sym_enum] = ACTIONS(2217), - [anon_sym_interface] = ACTIONS(2217), - [anon_sym_QMARK] = ACTIONS(2217), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_go] = ACTIONS(2217), - [anon_sym_spawn] = ACTIONS(2217), - [anon_sym_json_DOTdecode] = ACTIONS(2217), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_LT_DASH] = ACTIONS(2217), - [sym_none] = ACTIONS(2217), - [sym_true] = ACTIONS(2217), - [sym_false] = ACTIONS(2217), - [sym_nil] = ACTIONS(2217), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_DOLLARif] = ACTIONS(2217), - [anon_sym_match] = ACTIONS(2217), - [anon_sym_select] = ACTIONS(2217), - [anon_sym_lock] = ACTIONS(2217), - [anon_sym_rlock] = ACTIONS(2217), - [anon_sym_unsafe] = ACTIONS(2217), - [anon_sym_sql] = ACTIONS(2217), - [sym_int_literal] = ACTIONS(2217), - [sym_float_literal] = ACTIONS(2217), - [sym_rune_literal] = ACTIONS(2217), - [anon_sym_SQUOTE] = ACTIONS(2217), - [anon_sym_DQUOTE] = ACTIONS(2217), - [anon_sym_c_SQUOTE] = ACTIONS(2217), - [anon_sym_c_DQUOTE] = ACTIONS(2217), - [anon_sym_r_SQUOTE] = ACTIONS(2217), - [anon_sym_r_DQUOTE] = ACTIONS(2217), - [sym_pseudo_compile_time_identifier] = ACTIONS(2217), - [anon_sym_shared] = ACTIONS(2217), - [anon_sym_map_LBRACK] = ACTIONS(2217), - [anon_sym_chan] = ACTIONS(2217), - [anon_sym_thread] = ACTIONS(2217), - [anon_sym_atomic] = ACTIONS(2217), - [anon_sym_assert] = ACTIONS(2217), - [anon_sym_defer] = ACTIONS(2217), - [anon_sym_goto] = ACTIONS(2217), - [anon_sym_break] = ACTIONS(2217), - [anon_sym_continue] = ACTIONS(2217), - [anon_sym_return] = ACTIONS(2217), - [anon_sym_DOLLARfor] = ACTIONS(2217), - [anon_sym_for] = ACTIONS(2217), - [anon_sym_POUND] = ACTIONS(2217), - [anon_sym_asm] = ACTIONS(2217), - [anon_sym_AT_LBRACK] = ACTIONS(2217), - }, - [1471] = { - [sym_line_comment] = STATE(1471), - [sym_block_comment] = STATE(1471), - [ts_builtin_sym_end] = ACTIONS(2219), - [sym_identifier] = ACTIONS(2221), - [anon_sym_LF] = ACTIONS(2221), - [anon_sym_CR] = ACTIONS(2221), - [anon_sym_CR_LF] = ACTIONS(2221), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym___global] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(2221), - [anon_sym_fn] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(2221), - [anon_sym_struct] = ACTIONS(2221), - [anon_sym_union] = ACTIONS(2221), - [anon_sym_pub] = ACTIONS(2221), - [anon_sym_mut] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_QMARK] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_go] = ACTIONS(2221), - [anon_sym_spawn] = ACTIONS(2221), - [anon_sym_json_DOTdecode] = ACTIONS(2221), - [anon_sym_LBRACK2] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_LT_DASH] = ACTIONS(2221), - [sym_none] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_nil] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_DOLLARif] = ACTIONS(2221), - [anon_sym_match] = ACTIONS(2221), - [anon_sym_select] = ACTIONS(2221), - [anon_sym_lock] = ACTIONS(2221), - [anon_sym_rlock] = ACTIONS(2221), - [anon_sym_unsafe] = ACTIONS(2221), - [anon_sym_sql] = ACTIONS(2221), - [sym_int_literal] = ACTIONS(2221), - [sym_float_literal] = ACTIONS(2221), - [sym_rune_literal] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_c_SQUOTE] = ACTIONS(2221), - [anon_sym_c_DQUOTE] = ACTIONS(2221), - [anon_sym_r_SQUOTE] = ACTIONS(2221), - [anon_sym_r_DQUOTE] = ACTIONS(2221), - [sym_pseudo_compile_time_identifier] = ACTIONS(2221), - [anon_sym_shared] = ACTIONS(2221), - [anon_sym_map_LBRACK] = ACTIONS(2221), - [anon_sym_chan] = ACTIONS(2221), - [anon_sym_thread] = ACTIONS(2221), - [anon_sym_atomic] = ACTIONS(2221), - [anon_sym_assert] = ACTIONS(2221), - [anon_sym_defer] = ACTIONS(2221), - [anon_sym_goto] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_DOLLARfor] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_POUND] = ACTIONS(2221), - [anon_sym_asm] = ACTIONS(2221), - [anon_sym_AT_LBRACK] = ACTIONS(2221), - }, - [1472] = { - [sym_line_comment] = STATE(1472), - [sym_block_comment] = STATE(1472), - [ts_builtin_sym_end] = ACTIONS(2223), - [sym_identifier] = ACTIONS(2225), - [anon_sym_LF] = ACTIONS(2225), - [anon_sym_CR] = ACTIONS(2225), - [anon_sym_CR_LF] = ACTIONS(2225), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym___global] = ACTIONS(2225), - [anon_sym_type] = ACTIONS(2225), - [anon_sym_PIPE] = ACTIONS(2225), - [anon_sym_fn] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_STAR] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2225), - [anon_sym_union] = ACTIONS(2225), - [anon_sym_pub] = ACTIONS(2225), - [anon_sym_mut] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), - [anon_sym_interface] = ACTIONS(2225), - [anon_sym_QMARK] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_go] = ACTIONS(2225), - [anon_sym_spawn] = ACTIONS(2225), - [anon_sym_json_DOTdecode] = ACTIONS(2225), - [anon_sym_LBRACK2] = ACTIONS(2225), - [anon_sym_TILDE] = ACTIONS(2225), - [anon_sym_CARET] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2225), - [anon_sym_LT_DASH] = ACTIONS(2225), - [sym_none] = ACTIONS(2225), - [sym_true] = ACTIONS(2225), - [sym_false] = ACTIONS(2225), - [sym_nil] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_DOLLARif] = ACTIONS(2225), - [anon_sym_match] = ACTIONS(2225), - [anon_sym_select] = ACTIONS(2225), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(2225), - [anon_sym_sql] = ACTIONS(2225), - [sym_int_literal] = ACTIONS(2225), - [sym_float_literal] = ACTIONS(2225), - [sym_rune_literal] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE] = ACTIONS(2225), - [anon_sym_c_SQUOTE] = ACTIONS(2225), - [anon_sym_c_DQUOTE] = ACTIONS(2225), - [anon_sym_r_SQUOTE] = ACTIONS(2225), - [anon_sym_r_DQUOTE] = ACTIONS(2225), - [sym_pseudo_compile_time_identifier] = ACTIONS(2225), - [anon_sym_shared] = ACTIONS(2225), - [anon_sym_map_LBRACK] = ACTIONS(2225), - [anon_sym_chan] = ACTIONS(2225), - [anon_sym_thread] = ACTIONS(2225), - [anon_sym_atomic] = ACTIONS(2225), - [anon_sym_assert] = ACTIONS(2225), - [anon_sym_defer] = ACTIONS(2225), - [anon_sym_goto] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_DOLLARfor] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_POUND] = ACTIONS(2225), - [anon_sym_asm] = ACTIONS(2225), - [anon_sym_AT_LBRACK] = ACTIONS(2225), - }, - [1473] = { - [sym_line_comment] = STATE(1473), - [sym_block_comment] = STATE(1473), - [ts_builtin_sym_end] = ACTIONS(2227), - [sym_identifier] = ACTIONS(2229), - [anon_sym_LF] = ACTIONS(2229), - [anon_sym_CR] = ACTIONS(2229), - [anon_sym_CR_LF] = ACTIONS(2229), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym___global] = ACTIONS(2229), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_PIPE] = ACTIONS(2229), - [anon_sym_fn] = ACTIONS(2229), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_STAR] = ACTIONS(2229), - [anon_sym_struct] = ACTIONS(2229), - [anon_sym_union] = ACTIONS(2229), - [anon_sym_pub] = ACTIONS(2229), - [anon_sym_mut] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [anon_sym_interface] = ACTIONS(2229), - [anon_sym_QMARK] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2229), - [anon_sym_go] = ACTIONS(2229), - [anon_sym_spawn] = ACTIONS(2229), - [anon_sym_json_DOTdecode] = ACTIONS(2229), - [anon_sym_LBRACK2] = ACTIONS(2229), - [anon_sym_TILDE] = ACTIONS(2229), - [anon_sym_CARET] = ACTIONS(2229), - [anon_sym_AMP] = ACTIONS(2229), - [anon_sym_LT_DASH] = ACTIONS(2229), - [sym_none] = ACTIONS(2229), - [sym_true] = ACTIONS(2229), - [sym_false] = ACTIONS(2229), - [sym_nil] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_DOLLARif] = ACTIONS(2229), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_select] = ACTIONS(2229), - [anon_sym_lock] = ACTIONS(2229), - [anon_sym_rlock] = ACTIONS(2229), - [anon_sym_unsafe] = ACTIONS(2229), - [anon_sym_sql] = ACTIONS(2229), - [sym_int_literal] = ACTIONS(2229), - [sym_float_literal] = ACTIONS(2229), - [sym_rune_literal] = ACTIONS(2229), - [anon_sym_SQUOTE] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2229), - [anon_sym_c_SQUOTE] = ACTIONS(2229), - [anon_sym_c_DQUOTE] = ACTIONS(2229), - [anon_sym_r_SQUOTE] = ACTIONS(2229), - [anon_sym_r_DQUOTE] = ACTIONS(2229), - [sym_pseudo_compile_time_identifier] = ACTIONS(2229), - [anon_sym_shared] = ACTIONS(2229), - [anon_sym_map_LBRACK] = ACTIONS(2229), - [anon_sym_chan] = ACTIONS(2229), - [anon_sym_thread] = ACTIONS(2229), - [anon_sym_atomic] = ACTIONS(2229), - [anon_sym_assert] = ACTIONS(2229), - [anon_sym_defer] = ACTIONS(2229), - [anon_sym_goto] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_DOLLARfor] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_POUND] = ACTIONS(2229), - [anon_sym_asm] = ACTIONS(2229), - [anon_sym_AT_LBRACK] = ACTIONS(2229), - }, - [1474] = { - [sym_line_comment] = STATE(1474), - [sym_block_comment] = STATE(1474), - [sym_label_reference] = STATE(1541), - [ts_builtin_sym_end] = ACTIONS(4152), - [sym_identifier] = ACTIONS(4148), - [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(4154), - [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), - [anon_sym_SQUOTE] = ACTIONS(4154), - [anon_sym_DQUOTE] = ACTIONS(4154), - [anon_sym_c_SQUOTE] = ACTIONS(4154), - [anon_sym_c_DQUOTE] = ACTIONS(4154), - [anon_sym_r_SQUOTE] = ACTIONS(4154), - [anon_sym_r_DQUOTE] = 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), - }, [1475] = { [sym_line_comment] = STATE(1475), [sym_block_comment] = STATE(1475), - [sym_reference_expression] = STATE(4386), - [sym_type_reference_expression] = STATE(2419), - [sym_plain_type] = STATE(2573), - [sym__plain_type_without_special] = STATE(2533), - [sym_anon_struct_type] = STATE(2535), - [sym_multi_return_type] = STATE(2533), - [sym_result_type] = STATE(2533), - [sym_option_type] = STATE(2533), - [sym_qualified_type] = STATE(2419), - [sym_fixed_array_type] = STATE(2535), - [sym_array_type] = STATE(2535), - [sym_pointer_type] = STATE(2535), - [sym_wrong_pointer_type] = STATE(2535), - [sym_map_type] = STATE(2535), - [sym_channel_type] = STATE(2535), - [sym_shared_type] = STATE(2535), - [sym_thread_type] = STATE(2535), - [sym_atomic_type] = STATE(2535), - [sym_generic_type] = STATE(2535), - [sym_function_type] = STATE(2535), - [sym_identifier] = ACTIONS(4068), - [anon_sym_LF] = ACTIONS(601), - [anon_sym_CR] = ACTIONS(601), - [anon_sym_CR_LF] = ACTIONS(601), + [sym_block] = STATE(1575), + [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), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(601), - [anon_sym_DOT] = ACTIONS(601), - [anon_sym_as] = ACTIONS(601), - [anon_sym_COMMA] = ACTIONS(601), - [anon_sym_RBRACE] = ACTIONS(601), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(4074), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(601), - [anon_sym_BANG_EQ] = ACTIONS(601), - [anon_sym_LT_EQ] = ACTIONS(601), - [anon_sym_GT_EQ] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_struct] = ACTIONS(4076), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_QMARK] = ACTIONS(4078), - [anon_sym_BANG] = ACTIONS(4080), - [anon_sym_LBRACK2] = ACTIONS(4082), - [anon_sym_CARET] = ACTIONS(601), - [anon_sym_AMP] = ACTIONS(4084), - [anon_sym_LT_LT] = ACTIONS(601), - [anon_sym_GT_GT] = ACTIONS(601), - [anon_sym_GT_GT_GT] = ACTIONS(601), - [anon_sym_AMP_CARET] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(601), - [anon_sym_PIPE_PIPE] = ACTIONS(601), - [anon_sym_or] = ACTIONS(601), - [anon_sym_QMARK_DOT] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(601), - [anon_sym_is] = ACTIONS(601), - [anon_sym_BANGis] = ACTIONS(601), - [anon_sym_in] = ACTIONS(601), - [anon_sym_BANGin] = ACTIONS(601), - [anon_sym_shared] = ACTIONS(4086), - [anon_sym_map_LBRACK] = ACTIONS(4088), - [anon_sym_chan] = ACTIONS(4090), - [anon_sym_thread] = ACTIONS(4092), - [anon_sym_atomic] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4148), + [anon_sym_LBRACE] = ACTIONS(4068), + [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), + [anon_sym_SQUOTE] = ACTIONS(4148), + [anon_sym_DQUOTE] = ACTIONS(4148), + [anon_sym_c_SQUOTE] = ACTIONS(4148), + [anon_sym_c_DQUOTE] = ACTIONS(4148), + [anon_sym_r_SQUOTE] = ACTIONS(4148), + [anon_sym_r_DQUOTE] = 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), }, [1476] = { [sym_line_comment] = STATE(1476), [sym_block_comment] = STATE(1476), - [sym_block] = STATE(1556), - [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), + [sym_block] = STATE(1494), + [ts_builtin_sym_end] = ACTIONS(4150), + [sym_identifier] = ACTIONS(4152), + [anon_sym_LF] = ACTIONS(4152), + [anon_sym_CR] = ACTIONS(4152), + [anon_sym_CR_LF] = ACTIONS(4152), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4022), - [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), - [anon_sym_SQUOTE] = ACTIONS(4158), - [anon_sym_DQUOTE] = ACTIONS(4158), - [anon_sym_c_SQUOTE] = ACTIONS(4158), - [anon_sym_c_DQUOTE] = ACTIONS(4158), - [anon_sym_r_SQUOTE] = ACTIONS(4158), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(4068), + [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), + [anon_sym_SQUOTE] = ACTIONS(4152), + [anon_sym_DQUOTE] = ACTIONS(4152), + [anon_sym_c_SQUOTE] = ACTIONS(4152), + [anon_sym_c_DQUOTE] = ACTIONS(4152), + [anon_sym_r_SQUOTE] = ACTIONS(4152), + [anon_sym_r_DQUOTE] = 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), }, [1477] = { [sym_line_comment] = STATE(1477), [sym_block_comment] = STATE(1477), - [ts_builtin_sym_end] = ACTIONS(2235), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LF] = ACTIONS(2237), - [anon_sym_CR] = ACTIONS(2237), - [anon_sym_CR_LF] = ACTIONS(2237), + [ts_builtin_sym_end] = ACTIONS(3530), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LF] = ACTIONS(1657), + [anon_sym_CR] = ACTIONS(1657), + [anon_sym_CR_LF] = ACTIONS(1657), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym___global] = ACTIONS(2237), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_PIPE] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(2237), - [anon_sym_struct] = ACTIONS(2237), - [anon_sym_union] = ACTIONS(2237), - [anon_sym_pub] = ACTIONS(2237), - [anon_sym_mut] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_QMARK] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_go] = ACTIONS(2237), - [anon_sym_spawn] = ACTIONS(2237), - [anon_sym_json_DOTdecode] = ACTIONS(2237), - [anon_sym_LBRACK2] = ACTIONS(2237), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_CARET] = ACTIONS(2237), - [anon_sym_AMP] = ACTIONS(2237), - [anon_sym_LT_DASH] = ACTIONS(2237), - [sym_none] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_nil] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_DOLLARif] = ACTIONS(2237), - [anon_sym_match] = ACTIONS(2237), - [anon_sym_select] = ACTIONS(2237), - [anon_sym_lock] = ACTIONS(2237), - [anon_sym_rlock] = ACTIONS(2237), - [anon_sym_unsafe] = ACTIONS(2237), - [anon_sym_sql] = ACTIONS(2237), - [sym_int_literal] = ACTIONS(2237), - [sym_float_literal] = ACTIONS(2237), - [sym_rune_literal] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2237), - [anon_sym_c_SQUOTE] = ACTIONS(2237), - [anon_sym_c_DQUOTE] = ACTIONS(2237), - [anon_sym_r_SQUOTE] = ACTIONS(2237), - [anon_sym_r_DQUOTE] = ACTIONS(2237), - [sym_pseudo_compile_time_identifier] = ACTIONS(2237), - [anon_sym_shared] = ACTIONS(2237), - [anon_sym_map_LBRACK] = ACTIONS(2237), - [anon_sym_chan] = ACTIONS(2237), - [anon_sym_thread] = ACTIONS(2237), - [anon_sym_atomic] = ACTIONS(2237), - [anon_sym_assert] = ACTIONS(2237), - [anon_sym_defer] = ACTIONS(2237), - [anon_sym_goto] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_DOLLARfor] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_POUND] = ACTIONS(2237), - [anon_sym_asm] = ACTIONS(2237), - [anon_sym_AT_LBRACK] = ACTIONS(2237), + [anon_sym_DOT] = ACTIONS(1657), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_COMMA] = ACTIONS(1657), + [anon_sym_const] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym___global] = ACTIONS(1657), + [anon_sym_type] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_STAR] = ACTIONS(1657), + [anon_sym_struct] = ACTIONS(1657), + [anon_sym_union] = ACTIONS(1657), + [anon_sym_pub] = ACTIONS(1657), + [anon_sym_mut] = ACTIONS(1657), + [anon_sym_enum] = ACTIONS(1657), + [anon_sym_interface] = ACTIONS(1657), + [anon_sym_QMARK] = ACTIONS(1657), + [anon_sym_BANG] = ACTIONS(1657), + [anon_sym_go] = ACTIONS(1657), + [anon_sym_spawn] = ACTIONS(1657), + [anon_sym_json_DOTdecode] = ACTIONS(1657), + [anon_sym_LBRACK2] = ACTIONS(1657), + [anon_sym_TILDE] = ACTIONS(1657), + [anon_sym_CARET] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1657), + [anon_sym_LT_DASH] = ACTIONS(1657), + [sym_none] = ACTIONS(1657), + [sym_true] = ACTIONS(1657), + [sym_false] = ACTIONS(1657), + [sym_nil] = ACTIONS(1657), + [anon_sym_if] = ACTIONS(1657), + [anon_sym_DOLLARif] = ACTIONS(1657), + [anon_sym_match] = ACTIONS(1657), + [anon_sym_select] = ACTIONS(1657), + [anon_sym_lock] = ACTIONS(1657), + [anon_sym_rlock] = ACTIONS(1657), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_sql] = ACTIONS(1657), + [sym_int_literal] = ACTIONS(1657), + [sym_float_literal] = ACTIONS(1657), + [sym_rune_literal] = ACTIONS(1657), + [anon_sym_SQUOTE] = ACTIONS(1657), + [anon_sym_DQUOTE] = ACTIONS(1657), + [anon_sym_c_SQUOTE] = ACTIONS(1657), + [anon_sym_c_DQUOTE] = ACTIONS(1657), + [anon_sym_r_SQUOTE] = ACTIONS(1657), + [anon_sym_r_DQUOTE] = ACTIONS(1657), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(1657), + [anon_sym_map_LBRACK] = ACTIONS(1657), + [anon_sym_chan] = ACTIONS(1657), + [anon_sym_thread] = ACTIONS(1657), + [anon_sym_atomic] = ACTIONS(1657), + [anon_sym_assert] = ACTIONS(1657), + [anon_sym_defer] = ACTIONS(1657), + [anon_sym_goto] = ACTIONS(1657), + [anon_sym_break] = ACTIONS(1657), + [anon_sym_continue] = ACTIONS(1657), + [anon_sym_return] = ACTIONS(1657), + [anon_sym_DOLLARfor] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1657), + [anon_sym_POUND] = ACTIONS(1657), + [anon_sym_asm] = ACTIONS(1657), + [anon_sym_AT_LBRACK] = ACTIONS(1657), }, [1478] = { [sym_line_comment] = STATE(1478), [sym_block_comment] = STATE(1478), - [ts_builtin_sym_end] = ACTIONS(2149), - [sym_identifier] = ACTIONS(2151), - [anon_sym_LF] = ACTIONS(2151), - [anon_sym_CR] = ACTIONS(2151), - [anon_sym_CR_LF] = ACTIONS(2151), + [sym_block] = STATE(1608), + [ts_builtin_sym_end] = ACTIONS(4154), + [sym_identifier] = ACTIONS(4156), + [anon_sym_LF] = ACTIONS(4156), + [anon_sym_CR] = ACTIONS(4156), + [anon_sym_CR_LF] = ACTIONS(4156), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym___global] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2151), - [anon_sym_fn] = ACTIONS(2151), - [anon_sym_PLUS] = ACTIONS(2151), - [anon_sym_DASH] = ACTIONS(2151), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(2151), - [anon_sym_union] = ACTIONS(2151), - [anon_sym_pub] = ACTIONS(2151), - [anon_sym_mut] = ACTIONS(2151), - [anon_sym_enum] = ACTIONS(2151), - [anon_sym_interface] = ACTIONS(2151), - [anon_sym_QMARK] = ACTIONS(2151), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_go] = ACTIONS(2151), - [anon_sym_spawn] = ACTIONS(2151), - [anon_sym_json_DOTdecode] = ACTIONS(2151), - [anon_sym_LBRACK2] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_LT_DASH] = ACTIONS(2151), - [sym_none] = ACTIONS(2151), - [sym_true] = ACTIONS(2151), - [sym_false] = ACTIONS(2151), - [sym_nil] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_DOLLARif] = ACTIONS(2151), - [anon_sym_match] = ACTIONS(2151), - [anon_sym_select] = ACTIONS(2151), - [anon_sym_lock] = ACTIONS(2151), - [anon_sym_rlock] = ACTIONS(2151), - [anon_sym_unsafe] = ACTIONS(2151), - [anon_sym_sql] = ACTIONS(2151), - [sym_int_literal] = ACTIONS(2151), - [sym_float_literal] = ACTIONS(2151), - [sym_rune_literal] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2151), - [anon_sym_c_SQUOTE] = ACTIONS(2151), - [anon_sym_c_DQUOTE] = ACTIONS(2151), - [anon_sym_r_SQUOTE] = ACTIONS(2151), - [anon_sym_r_DQUOTE] = ACTIONS(2151), - [sym_pseudo_compile_time_identifier] = ACTIONS(2151), - [anon_sym_shared] = ACTIONS(2151), - [anon_sym_map_LBRACK] = ACTIONS(2151), - [anon_sym_chan] = ACTIONS(2151), - [anon_sym_thread] = ACTIONS(2151), - [anon_sym_atomic] = ACTIONS(2151), - [anon_sym_assert] = ACTIONS(2151), - [anon_sym_defer] = ACTIONS(2151), - [anon_sym_goto] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_DOLLARfor] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_POUND] = ACTIONS(2151), - [anon_sym_asm] = ACTIONS(2151), - [anon_sym_AT_LBRACK] = ACTIONS(2151), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4068), + [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), + [anon_sym_SQUOTE] = ACTIONS(4156), + [anon_sym_DQUOTE] = ACTIONS(4156), + [anon_sym_c_SQUOTE] = ACTIONS(4156), + [anon_sym_c_DQUOTE] = ACTIONS(4156), + [anon_sym_r_SQUOTE] = ACTIONS(4156), + [anon_sym_r_DQUOTE] = 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), }, [1479] = { [sym_line_comment] = STATE(1479), [sym_block_comment] = STATE(1479), - [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), + [sym_block] = STATE(1577), + [ts_builtin_sym_end] = ACTIONS(4158), + [sym_identifier] = ACTIONS(4160), + [anon_sym_LF] = ACTIONS(4160), + [anon_sym_CR] = ACTIONS(4160), + [anon_sym_CR_LF] = ACTIONS(4160), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4162), - [anon_sym_LBRACE] = ACTIONS(4162), - [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), - [anon_sym_SQUOTE] = ACTIONS(4162), - [anon_sym_DQUOTE] = ACTIONS(4162), - [anon_sym_c_SQUOTE] = ACTIONS(4162), - [anon_sym_c_DQUOTE] = ACTIONS(4162), - [anon_sym_r_SQUOTE] = ACTIONS(4162), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4068), + [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), + [anon_sym_SQUOTE] = ACTIONS(4160), + [anon_sym_DQUOTE] = ACTIONS(4160), + [anon_sym_c_SQUOTE] = ACTIONS(4160), + [anon_sym_c_DQUOTE] = ACTIONS(4160), + [anon_sym_r_SQUOTE] = ACTIONS(4160), + [anon_sym_r_DQUOTE] = 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), }, [1480] = { [sym_line_comment] = STATE(1480), [sym_block_comment] = STATE(1480), - [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), + [sym_block] = STATE(1578), + [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), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4166), - [anon_sym_LBRACE] = ACTIONS(4166), - [anon_sym_const] = ACTIONS(4166), - [anon_sym_LPAREN] = ACTIONS(4166), - [anon_sym___global] = ACTIONS(4166), - [anon_sym_type] = ACTIONS(4166), - [anon_sym_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), - [anon_sym_SQUOTE] = ACTIONS(4166), - [anon_sym_DQUOTE] = ACTIONS(4166), - [anon_sym_c_SQUOTE] = ACTIONS(4166), - [anon_sym_c_DQUOTE] = ACTIONS(4166), - [anon_sym_r_SQUOTE] = ACTIONS(4166), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4068), + [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), + [anon_sym_SQUOTE] = ACTIONS(4164), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_c_SQUOTE] = ACTIONS(4164), + [anon_sym_c_DQUOTE] = ACTIONS(4164), + [anon_sym_r_SQUOTE] = ACTIONS(4164), + [anon_sym_r_DQUOTE] = 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), }, [1481] = { [sym_line_comment] = STATE(1481), [sym_block_comment] = STATE(1481), - [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), + [sym_block] = STATE(1582), + [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), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4170), - [anon_sym_LBRACE] = ACTIONS(4170), - [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), - [anon_sym_SQUOTE] = ACTIONS(4170), - [anon_sym_DQUOTE] = ACTIONS(4170), - [anon_sym_c_SQUOTE] = ACTIONS(4170), - [anon_sym_c_DQUOTE] = ACTIONS(4170), - [anon_sym_r_SQUOTE] = ACTIONS(4170), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_LBRACE] = ACTIONS(4068), + [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), + [anon_sym_SQUOTE] = ACTIONS(4168), + [anon_sym_DQUOTE] = ACTIONS(4168), + [anon_sym_c_SQUOTE] = ACTIONS(4168), + [anon_sym_c_DQUOTE] = ACTIONS(4168), + [anon_sym_r_SQUOTE] = ACTIONS(4168), + [anon_sym_r_DQUOTE] = 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), }, [1482] = { [sym_line_comment] = STATE(1482), [sym_block_comment] = STATE(1482), - [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), + [sym_block] = STATE(1583), + [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), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4174), - [anon_sym_LBRACE] = ACTIONS(4174), - [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), - [anon_sym_SQUOTE] = ACTIONS(4174), - [anon_sym_DQUOTE] = ACTIONS(4174), - [anon_sym_c_SQUOTE] = ACTIONS(4174), - [anon_sym_c_DQUOTE] = ACTIONS(4174), - [anon_sym_r_SQUOTE] = ACTIONS(4174), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4068), + [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), + [anon_sym_SQUOTE] = ACTIONS(4172), + [anon_sym_DQUOTE] = ACTIONS(4172), + [anon_sym_c_SQUOTE] = ACTIONS(4172), + [anon_sym_c_DQUOTE] = ACTIONS(4172), + [anon_sym_r_SQUOTE] = ACTIONS(4172), + [anon_sym_r_DQUOTE] = 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), }, [1483] = { [sym_line_comment] = STATE(1483), [sym_block_comment] = STATE(1483), - [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), + [sym_block] = STATE(1586), + [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), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4178), - [anon_sym_LBRACE] = ACTIONS(4178), - [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), - [anon_sym_SQUOTE] = ACTIONS(4178), - [anon_sym_DQUOTE] = ACTIONS(4178), - [anon_sym_c_SQUOTE] = ACTIONS(4178), - [anon_sym_c_DQUOTE] = ACTIONS(4178), - [anon_sym_r_SQUOTE] = ACTIONS(4178), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(4176), + [anon_sym_LBRACE] = ACTIONS(4068), + [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), + [anon_sym_SQUOTE] = ACTIONS(4176), + [anon_sym_DQUOTE] = ACTIONS(4176), + [anon_sym_c_SQUOTE] = ACTIONS(4176), + [anon_sym_c_DQUOTE] = ACTIONS(4176), + [anon_sym_r_SQUOTE] = ACTIONS(4176), + [anon_sym_r_DQUOTE] = 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), }, [1484] = { [sym_line_comment] = STATE(1484), [sym_block_comment] = STATE(1484), - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_LF] = ACTIONS(1809), - [anon_sym_CR] = ACTIONS(1809), - [anon_sym_CR_LF] = ACTIONS(1809), + [sym_block] = STATE(1587), + [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), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym___global] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_fn] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_pub] = ACTIONS(1809), - [anon_sym_mut] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_interface] = ACTIONS(1809), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1809), - [anon_sym_json_DOTdecode] = ACTIONS(1809), - [anon_sym_LBRACK2] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_LT_DASH] = ACTIONS(1809), - [sym_none] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_nil] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_DOLLARif] = ACTIONS(1809), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_select] = ACTIONS(1809), - [anon_sym_lock] = ACTIONS(1809), - [anon_sym_rlock] = ACTIONS(1809), - [anon_sym_unsafe] = ACTIONS(1809), - [anon_sym_sql] = ACTIONS(1809), - [sym_int_literal] = ACTIONS(1809), - [sym_float_literal] = ACTIONS(1809), - [sym_rune_literal] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1809), - [anon_sym_c_SQUOTE] = ACTIONS(1809), - [anon_sym_c_DQUOTE] = ACTIONS(1809), - [anon_sym_r_SQUOTE] = ACTIONS(1809), - [anon_sym_r_DQUOTE] = ACTIONS(1809), - [sym_pseudo_compile_time_identifier] = ACTIONS(1809), - [anon_sym_shared] = ACTIONS(1809), - [anon_sym_map_LBRACK] = ACTIONS(1809), - [anon_sym_chan] = ACTIONS(1809), - [anon_sym_thread] = ACTIONS(1809), - [anon_sym_atomic] = ACTIONS(1809), - [anon_sym_assert] = ACTIONS(1809), - [anon_sym_defer] = ACTIONS(1809), - [anon_sym_goto] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_DOLLARfor] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_POUND] = ACTIONS(1809), - [anon_sym_asm] = ACTIONS(1809), - [anon_sym_AT_LBRACK] = ACTIONS(1809), + [anon_sym_DOT] = ACTIONS(4180), + [anon_sym_LBRACE] = ACTIONS(4068), + [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), + [anon_sym_SQUOTE] = ACTIONS(4180), + [anon_sym_DQUOTE] = ACTIONS(4180), + [anon_sym_c_SQUOTE] = ACTIONS(4180), + [anon_sym_c_DQUOTE] = ACTIONS(4180), + [anon_sym_r_SQUOTE] = ACTIONS(4180), + [anon_sym_r_DQUOTE] = 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), }, [1485] = { [sym_line_comment] = STATE(1485), [sym_block_comment] = STATE(1485), - [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), + [sym_block] = STATE(1492), + [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), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4182), - [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), - [anon_sym_SQUOTE] = ACTIONS(4182), - [anon_sym_DQUOTE] = ACTIONS(4182), - [anon_sym_c_SQUOTE] = ACTIONS(4182), - [anon_sym_c_DQUOTE] = ACTIONS(4182), - [anon_sym_r_SQUOTE] = ACTIONS(4182), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4068), + [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), + [anon_sym_SQUOTE] = ACTIONS(4184), + [anon_sym_DQUOTE] = ACTIONS(4184), + [anon_sym_c_SQUOTE] = ACTIONS(4184), + [anon_sym_c_DQUOTE] = ACTIONS(4184), + [anon_sym_r_SQUOTE] = ACTIONS(4184), + [anon_sym_r_DQUOTE] = 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), }, [1486] = { [sym_line_comment] = STATE(1486), [sym_block_comment] = STATE(1486), - [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), + [sym_block] = STATE(1594), + [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), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4186), - [anon_sym_LBRACE] = ACTIONS(4186), - [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), - [anon_sym_SQUOTE] = ACTIONS(4186), - [anon_sym_DQUOTE] = ACTIONS(4186), - [anon_sym_c_SQUOTE] = ACTIONS(4186), - [anon_sym_c_DQUOTE] = ACTIONS(4186), - [anon_sym_r_SQUOTE] = ACTIONS(4186), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(4188), + [anon_sym_LBRACE] = ACTIONS(4068), + [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), + [anon_sym_SQUOTE] = ACTIONS(4188), + [anon_sym_DQUOTE] = ACTIONS(4188), + [anon_sym_c_SQUOTE] = ACTIONS(4188), + [anon_sym_c_DQUOTE] = ACTIONS(4188), + [anon_sym_r_SQUOTE] = ACTIONS(4188), + [anon_sym_r_DQUOTE] = 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), }, [1487] = { [sym_line_comment] = STATE(1487), [sym_block_comment] = STATE(1487), - [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), + [sym_block] = STATE(1599), + [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), [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), - [anon_sym_SQUOTE] = ACTIONS(4190), - [anon_sym_DQUOTE] = ACTIONS(4190), - [anon_sym_c_SQUOTE] = ACTIONS(4190), - [anon_sym_c_DQUOTE] = ACTIONS(4190), - [anon_sym_r_SQUOTE] = ACTIONS(4190), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(4192), + [anon_sym_LBRACE] = ACTIONS(4068), + [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), + [anon_sym_SQUOTE] = ACTIONS(4192), + [anon_sym_DQUOTE] = ACTIONS(4192), + [anon_sym_c_SQUOTE] = ACTIONS(4192), + [anon_sym_c_DQUOTE] = ACTIONS(4192), + [anon_sym_r_SQUOTE] = ACTIONS(4192), + [anon_sym_r_DQUOTE] = 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), }, [1488] = { [sym_line_comment] = STATE(1488), [sym_block_comment] = STATE(1488), - [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), + [sym_block] = STATE(1600), + [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), [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), - [anon_sym_SQUOTE] = ACTIONS(4194), - [anon_sym_DQUOTE] = ACTIONS(4194), - [anon_sym_c_SQUOTE] = ACTIONS(4194), - [anon_sym_c_DQUOTE] = ACTIONS(4194), - [anon_sym_r_SQUOTE] = ACTIONS(4194), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_const] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym___global] = ACTIONS(4196), + [anon_sym_type] = 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), + [anon_sym_SQUOTE] = ACTIONS(4196), + [anon_sym_DQUOTE] = ACTIONS(4196), + [anon_sym_c_SQUOTE] = ACTIONS(4196), + [anon_sym_c_DQUOTE] = ACTIONS(4196), + [anon_sym_r_SQUOTE] = ACTIONS(4196), + [anon_sym_r_DQUOTE] = 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), }, [1489] = { [sym_line_comment] = STATE(1489), [sym_block_comment] = STATE(1489), - [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), + [sym_block] = STATE(1603), + [ts_builtin_sym_end] = ACTIONS(4198), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LF] = ACTIONS(4200), + [anon_sym_CR] = ACTIONS(4200), + [anon_sym_CR_LF] = ACTIONS(4200), [anon_sym_SLASH_SLASH] = ACTIONS(497), [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), - [anon_sym_SQUOTE] = ACTIONS(4198), - [anon_sym_DQUOTE] = ACTIONS(4198), - [anon_sym_c_SQUOTE] = ACTIONS(4198), - [anon_sym_c_DQUOTE] = ACTIONS(4198), - [anon_sym_r_SQUOTE] = ACTIONS(4198), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(4200), + [anon_sym_LBRACE] = ACTIONS(4068), + [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), + [anon_sym_SQUOTE] = ACTIONS(4200), + [anon_sym_DQUOTE] = ACTIONS(4200), + [anon_sym_c_SQUOTE] = ACTIONS(4200), + [anon_sym_c_DQUOTE] = ACTIONS(4200), + [anon_sym_r_SQUOTE] = ACTIONS(4200), + [anon_sym_r_DQUOTE] = 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), }, [1490] = { [sym_line_comment] = STATE(1490), [sym_block_comment] = STATE(1490), - [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), + [ts_builtin_sym_end] = ACTIONS(4202), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LF] = ACTIONS(4204), + [anon_sym_CR] = ACTIONS(4204), + [anon_sym_CR_LF] = ACTIONS(4204), [anon_sym_SLASH_SLASH] = ACTIONS(497), [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), - [anon_sym_SQUOTE] = ACTIONS(4202), - [anon_sym_DQUOTE] = ACTIONS(4202), - [anon_sym_c_SQUOTE] = ACTIONS(4202), - [anon_sym_c_DQUOTE] = ACTIONS(4202), - [anon_sym_r_SQUOTE] = ACTIONS(4202), - [anon_sym_r_DQUOTE] = 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), + [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), + [anon_sym_SQUOTE] = ACTIONS(4204), + [anon_sym_DQUOTE] = ACTIONS(4204), + [anon_sym_c_SQUOTE] = ACTIONS(4204), + [anon_sym_c_DQUOTE] = ACTIONS(4204), + [anon_sym_r_SQUOTE] = ACTIONS(4204), + [anon_sym_r_DQUOTE] = 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), }, [1491] = { [sym_line_comment] = STATE(1491), [sym_block_comment] = STATE(1491), - [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), + [ts_builtin_sym_end] = ACTIONS(4206), + [sym_identifier] = ACTIONS(4208), + [anon_sym_LF] = ACTIONS(4208), + [anon_sym_CR] = ACTIONS(4208), + [anon_sym_CR_LF] = ACTIONS(4208), [anon_sym_SLASH_SLASH] = ACTIONS(497), [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), - [anon_sym_SQUOTE] = ACTIONS(4206), - [anon_sym_DQUOTE] = ACTIONS(4206), - [anon_sym_c_SQUOTE] = ACTIONS(4206), - [anon_sym_c_DQUOTE] = ACTIONS(4206), - [anon_sym_r_SQUOTE] = ACTIONS(4206), - [anon_sym_r_DQUOTE] = 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), + [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), + [anon_sym_SQUOTE] = ACTIONS(4208), + [anon_sym_DQUOTE] = ACTIONS(4208), + [anon_sym_c_SQUOTE] = ACTIONS(4208), + [anon_sym_c_DQUOTE] = ACTIONS(4208), + [anon_sym_r_SQUOTE] = ACTIONS(4208), + [anon_sym_r_DQUOTE] = 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), }, [1492] = { [sym_line_comment] = STATE(1492), [sym_block_comment] = STATE(1492), - [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), + [ts_builtin_sym_end] = ACTIONS(4210), + [sym_identifier] = ACTIONS(4212), + [anon_sym_LF] = ACTIONS(4212), + [anon_sym_CR] = ACTIONS(4212), + [anon_sym_CR_LF] = ACTIONS(4212), [anon_sym_SLASH_SLASH] = ACTIONS(497), [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), - [anon_sym_SQUOTE] = ACTIONS(4210), - [anon_sym_DQUOTE] = ACTIONS(4210), - [anon_sym_c_SQUOTE] = ACTIONS(4210), - [anon_sym_c_DQUOTE] = ACTIONS(4210), - [anon_sym_r_SQUOTE] = ACTIONS(4210), - [anon_sym_r_DQUOTE] = 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), + [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), + [anon_sym_SQUOTE] = ACTIONS(4212), + [anon_sym_DQUOTE] = ACTIONS(4212), + [anon_sym_c_SQUOTE] = ACTIONS(4212), + [anon_sym_c_DQUOTE] = ACTIONS(4212), + [anon_sym_r_SQUOTE] = ACTIONS(4212), + [anon_sym_r_DQUOTE] = 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), }, [1493] = { [sym_line_comment] = STATE(1493), [sym_block_comment] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), + [ts_builtin_sym_end] = ACTIONS(4214), + [sym_identifier] = ACTIONS(4216), + [anon_sym_LF] = ACTIONS(4216), + [anon_sym_CR] = ACTIONS(4216), + [anon_sym_CR_LF] = ACTIONS(4216), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym___global] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), - [anon_sym_LBRACK2] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_LT_DASH] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [anon_sym_SQUOTE] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1889), - [anon_sym_c_SQUOTE] = ACTIONS(1889), - [anon_sym_c_DQUOTE] = ACTIONS(1889), - [anon_sym_r_SQUOTE] = ACTIONS(1889), - [anon_sym_r_DQUOTE] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [anon_sym_assert] = ACTIONS(1889), - [anon_sym_defer] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_DOLLARfor] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_asm] = ACTIONS(1889), - [anon_sym_AT_LBRACK] = ACTIONS(1889), + [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), + [anon_sym_SQUOTE] = ACTIONS(4216), + [anon_sym_DQUOTE] = ACTIONS(4216), + [anon_sym_c_SQUOTE] = ACTIONS(4216), + [anon_sym_c_DQUOTE] = ACTIONS(4216), + [anon_sym_r_SQUOTE] = ACTIONS(4216), + [anon_sym_r_DQUOTE] = 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), }, [1494] = { [sym_line_comment] = STATE(1494), [sym_block_comment] = STATE(1494), - [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), + [ts_builtin_sym_end] = ACTIONS(4218), + [sym_identifier] = ACTIONS(4220), + [anon_sym_LF] = ACTIONS(4220), + [anon_sym_CR] = ACTIONS(4220), + [anon_sym_CR_LF] = ACTIONS(4220), [anon_sym_SLASH_SLASH] = ACTIONS(497), [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), - [anon_sym_SQUOTE] = ACTIONS(4214), - [anon_sym_DQUOTE] = ACTIONS(4214), - [anon_sym_c_SQUOTE] = ACTIONS(4214), - [anon_sym_c_DQUOTE] = ACTIONS(4214), - [anon_sym_r_SQUOTE] = ACTIONS(4214), - [anon_sym_r_DQUOTE] = 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), + [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), + [anon_sym_SQUOTE] = ACTIONS(4220), + [anon_sym_DQUOTE] = ACTIONS(4220), + [anon_sym_c_SQUOTE] = ACTIONS(4220), + [anon_sym_c_DQUOTE] = ACTIONS(4220), + [anon_sym_r_SQUOTE] = ACTIONS(4220), + [anon_sym_r_DQUOTE] = 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), }, [1495] = { [sym_line_comment] = STATE(1495), [sym_block_comment] = STATE(1495), - [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), + [ts_builtin_sym_end] = ACTIONS(2769), + [sym_identifier] = ACTIONS(2771), + [anon_sym_LF] = ACTIONS(2771), + [anon_sym_CR] = ACTIONS(2771), + [anon_sym_CR_LF] = ACTIONS(2771), [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), - [anon_sym_SQUOTE] = ACTIONS(4218), - [anon_sym_DQUOTE] = ACTIONS(4218), - [anon_sym_c_SQUOTE] = ACTIONS(4218), - [anon_sym_c_DQUOTE] = ACTIONS(4218), - [anon_sym_r_SQUOTE] = ACTIONS(4218), - [anon_sym_r_DQUOTE] = 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), + [anon_sym_DOT] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_const] = ACTIONS(2771), + [anon_sym_LPAREN] = ACTIONS(2771), + [anon_sym___global] = ACTIONS(2771), + [anon_sym_type] = ACTIONS(2771), + [anon_sym_fn] = ACTIONS(2771), + [anon_sym_PLUS] = ACTIONS(2771), + [anon_sym_DASH] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_struct] = ACTIONS(2771), + [anon_sym_union] = ACTIONS(2771), + [anon_sym_pub] = ACTIONS(2771), + [anon_sym_mut] = ACTIONS(2771), + [anon_sym_enum] = ACTIONS(2771), + [anon_sym_interface] = ACTIONS(2771), + [anon_sym_QMARK] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_go] = ACTIONS(2771), + [anon_sym_spawn] = ACTIONS(2771), + [anon_sym_json_DOTdecode] = ACTIONS(2771), + [anon_sym_LBRACK2] = ACTIONS(2771), + [anon_sym_TILDE] = ACTIONS(2771), + [anon_sym_CARET] = ACTIONS(2771), + [anon_sym_AMP] = ACTIONS(2771), + [anon_sym_LT_DASH] = ACTIONS(2771), + [sym_none] = ACTIONS(2771), + [sym_true] = ACTIONS(2771), + [sym_false] = ACTIONS(2771), + [sym_nil] = ACTIONS(2771), + [anon_sym_if] = ACTIONS(2771), + [anon_sym_DOLLARif] = ACTIONS(2771), + [anon_sym_match] = ACTIONS(2771), + [anon_sym_select] = ACTIONS(2771), + [anon_sym_lock] = ACTIONS(2771), + [anon_sym_rlock] = ACTIONS(2771), + [anon_sym_unsafe] = ACTIONS(2771), + [anon_sym_sql] = ACTIONS(2771), + [sym_int_literal] = ACTIONS(2771), + [sym_float_literal] = ACTIONS(2771), + [sym_rune_literal] = ACTIONS(2771), + [anon_sym_SQUOTE] = ACTIONS(2771), + [anon_sym_DQUOTE] = ACTIONS(2771), + [anon_sym_c_SQUOTE] = ACTIONS(2771), + [anon_sym_c_DQUOTE] = ACTIONS(2771), + [anon_sym_r_SQUOTE] = ACTIONS(2771), + [anon_sym_r_DQUOTE] = ACTIONS(2771), + [sym_pseudo_compile_time_identifier] = ACTIONS(2771), + [anon_sym_shared] = ACTIONS(2771), + [anon_sym_map_LBRACK] = ACTIONS(2771), + [anon_sym_chan] = ACTIONS(2771), + [anon_sym_thread] = ACTIONS(2771), + [anon_sym_atomic] = ACTIONS(2771), + [anon_sym_assert] = ACTIONS(2771), + [anon_sym_defer] = ACTIONS(2771), + [anon_sym_goto] = ACTIONS(2771), + [anon_sym_break] = ACTIONS(2771), + [anon_sym_continue] = ACTIONS(2771), + [anon_sym_return] = ACTIONS(2771), + [anon_sym_DOLLARfor] = ACTIONS(2771), + [anon_sym_for] = ACTIONS(2771), + [anon_sym_POUND] = ACTIONS(2771), + [anon_sym_asm] = ACTIONS(2771), + [anon_sym_AT_LBRACK] = ACTIONS(2771), }, [1496] = { [sym_line_comment] = STATE(1496), [sym_block_comment] = STATE(1496), - [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), + [ts_builtin_sym_end] = ACTIONS(4222), + [sym_identifier] = ACTIONS(4224), + [anon_sym_LF] = ACTIONS(4224), + [anon_sym_CR] = ACTIONS(4224), + [anon_sym_CR_LF] = ACTIONS(4224), [anon_sym_SLASH_SLASH] = ACTIONS(497), [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), - [anon_sym_SQUOTE] = ACTIONS(4222), - [anon_sym_DQUOTE] = ACTIONS(4222), - [anon_sym_c_SQUOTE] = ACTIONS(4222), - [anon_sym_c_DQUOTE] = ACTIONS(4222), - [anon_sym_r_SQUOTE] = ACTIONS(4222), - [anon_sym_r_DQUOTE] = 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), + [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), + [anon_sym_SQUOTE] = ACTIONS(4224), + [anon_sym_DQUOTE] = ACTIONS(4224), + [anon_sym_c_SQUOTE] = ACTIONS(4224), + [anon_sym_c_DQUOTE] = ACTIONS(4224), + [anon_sym_r_SQUOTE] = ACTIONS(4224), + [anon_sym_r_DQUOTE] = 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), }, [1497] = { [sym_line_comment] = STATE(1497), [sym_block_comment] = STATE(1497), - [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), + [ts_builtin_sym_end] = ACTIONS(4226), + [sym_identifier] = ACTIONS(4228), + [anon_sym_LF] = ACTIONS(4228), + [anon_sym_CR] = ACTIONS(4228), + [anon_sym_CR_LF] = ACTIONS(4228), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2833), - [anon_sym_LBRACE] = ACTIONS(2833), - [anon_sym_const] = ACTIONS(2833), - [anon_sym_LPAREN] = ACTIONS(2833), - [anon_sym___global] = ACTIONS(2833), - [anon_sym_type] = ACTIONS(2833), - [anon_sym_fn] = ACTIONS(2833), - [anon_sym_PLUS] = ACTIONS(2833), - [anon_sym_DASH] = ACTIONS(2833), - [anon_sym_STAR] = ACTIONS(2833), - [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_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), - [sym_none] = ACTIONS(2833), - [sym_true] = ACTIONS(2833), - [sym_false] = ACTIONS(2833), - [sym_nil] = ACTIONS(2833), - [anon_sym_if] = ACTIONS(2833), - [anon_sym_DOLLARif] = 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), - [anon_sym_SQUOTE] = ACTIONS(2833), - [anon_sym_DQUOTE] = ACTIONS(2833), - [anon_sym_c_SQUOTE] = ACTIONS(2833), - [anon_sym_c_DQUOTE] = ACTIONS(2833), - [anon_sym_r_SQUOTE] = ACTIONS(2833), - [anon_sym_r_DQUOTE] = 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), + [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), + [anon_sym_SQUOTE] = ACTIONS(4228), + [anon_sym_DQUOTE] = ACTIONS(4228), + [anon_sym_c_SQUOTE] = ACTIONS(4228), + [anon_sym_c_DQUOTE] = ACTIONS(4228), + [anon_sym_r_SQUOTE] = ACTIONS(4228), + [anon_sym_r_DQUOTE] = 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), }, [1498] = { [sym_line_comment] = STATE(1498), [sym_block_comment] = STATE(1498), - [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), - [anon_sym_SQUOTE] = ACTIONS(4226), - [anon_sym_DQUOTE] = ACTIONS(4226), - [anon_sym_c_SQUOTE] = ACTIONS(4226), - [anon_sym_c_DQUOTE] = ACTIONS(4226), - [anon_sym_r_SQUOTE] = ACTIONS(4226), - [anon_sym_r_DQUOTE] = 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), - }, - [1499] = { - [sym_line_comment] = STATE(1499), - [sym_block_comment] = STATE(1499), - [ts_builtin_sym_end] = ACTIONS(4228), - [sym_identifier] = ACTIONS(4230), + [ts_builtin_sym_end] = ACTIONS(4230), + [sym_identifier] = ACTIONS(4232), [anon_sym_LF] = ACTIONS(4232), [anon_sym_CR] = ACTIONS(4232), [anon_sym_CR_LF] = ACTIONS(4232), [anon_sym_SLASH_SLASH] = ACTIONS(497), [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), - [anon_sym_SQUOTE] = ACTIONS(4230), - [anon_sym_DQUOTE] = ACTIONS(4230), - [anon_sym_c_SQUOTE] = ACTIONS(4230), - [anon_sym_c_DQUOTE] = ACTIONS(4230), - [anon_sym_r_SQUOTE] = ACTIONS(4230), - [anon_sym_r_DQUOTE] = 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), + [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), + [anon_sym_SQUOTE] = ACTIONS(4232), + [anon_sym_DQUOTE] = ACTIONS(4232), + [anon_sym_c_SQUOTE] = ACTIONS(4232), + [anon_sym_c_DQUOTE] = ACTIONS(4232), + [anon_sym_r_SQUOTE] = ACTIONS(4232), + [anon_sym_r_DQUOTE] = 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), }, - [1500] = { - [sym_line_comment] = STATE(1500), - [sym_block_comment] = STATE(1500), + [1499] = { + [sym_line_comment] = STATE(1499), + [sym_block_comment] = STATE(1499), [ts_builtin_sym_end] = ACTIONS(4234), [sym_identifier] = ACTIONS(4236), [anon_sym_LF] = ACTIONS(4236), @@ -180840,84 +181215,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(4236), [anon_sym_AT_LBRACK] = ACTIONS(4236), }, - [1501] = { - [sym_line_comment] = STATE(1501), - [sym_block_comment] = STATE(1501), - [ts_builtin_sym_end] = ACTIONS(1709), - [sym_identifier] = ACTIONS(1711), - [anon_sym_LF] = ACTIONS(1711), - [anon_sym_CR] = ACTIONS(1711), - [anon_sym_CR_LF] = ACTIONS(1711), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym___global] = ACTIONS(1711), - [anon_sym_type] = ACTIONS(1711), - [anon_sym_fn] = ACTIONS(1711), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_struct] = ACTIONS(1711), - [anon_sym_union] = ACTIONS(1711), - [anon_sym_pub] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_enum] = ACTIONS(1711), - [anon_sym_interface] = ACTIONS(1711), - [anon_sym_QMARK] = ACTIONS(1711), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_go] = ACTIONS(1711), - [anon_sym_spawn] = ACTIONS(1711), - [anon_sym_json_DOTdecode] = ACTIONS(1711), - [anon_sym_LBRACK2] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_LT_DASH] = ACTIONS(1711), - [sym_none] = ACTIONS(1711), - [sym_true] = ACTIONS(1711), - [sym_false] = ACTIONS(1711), - [sym_nil] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_DOLLARif] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_select] = ACTIONS(1711), - [anon_sym_lock] = ACTIONS(1711), - [anon_sym_rlock] = ACTIONS(1711), - [anon_sym_unsafe] = ACTIONS(1711), - [anon_sym_sql] = ACTIONS(1711), - [sym_int_literal] = ACTIONS(1711), - [sym_float_literal] = ACTIONS(1711), - [sym_rune_literal] = ACTIONS(1711), - [anon_sym_SQUOTE] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1711), - [anon_sym_c_SQUOTE] = ACTIONS(1711), - [anon_sym_c_DQUOTE] = ACTIONS(1711), - [anon_sym_r_SQUOTE] = ACTIONS(1711), - [anon_sym_r_DQUOTE] = ACTIONS(1711), - [sym_pseudo_compile_time_identifier] = ACTIONS(1711), - [anon_sym_shared] = ACTIONS(1711), - [anon_sym_map_LBRACK] = ACTIONS(1711), - [anon_sym_chan] = ACTIONS(1711), - [anon_sym_thread] = ACTIONS(1711), - [anon_sym_atomic] = ACTIONS(1711), - [anon_sym_assert] = ACTIONS(1711), - [anon_sym_defer] = ACTIONS(1711), - [anon_sym_goto] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_DOLLARfor] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(1711), - [anon_sym_asm] = ACTIONS(1711), - [anon_sym_AT_LBRACK] = ACTIONS(1711), - }, - [1502] = { - [sym_line_comment] = STATE(1502), - [sym_block_comment] = STATE(1502), + [1500] = { + [sym_line_comment] = STATE(1500), + [sym_block_comment] = STATE(1500), [ts_builtin_sym_end] = ACTIONS(4238), [sym_identifier] = ACTIONS(4240), [anon_sym_LF] = ACTIONS(4240), @@ -180990,42 +181290,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(4240), [anon_sym_AT_LBRACK] = ACTIONS(4240), }, - [1503] = { - [sym_line_comment] = STATE(1503), - [sym_block_comment] = STATE(1503), - [sym_import_declaration] = STATE(1583), - [aux_sym_import_list_repeat1] = STATE(1503), + [1501] = { + [sym_line_comment] = STATE(1501), + [sym_block_comment] = STATE(1501), + [ts_builtin_sym_end] = ACTIONS(2743), + [sym_identifier] = ACTIONS(2745), + [anon_sym_LF] = ACTIONS(2745), + [anon_sym_CR] = ACTIONS(2745), + [anon_sym_CR_LF] = ACTIONS(2745), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2745), + [anon_sym_const] = ACTIONS(2745), + [anon_sym_LPAREN] = ACTIONS(2745), + [anon_sym___global] = ACTIONS(2745), + [anon_sym_type] = ACTIONS(2745), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_struct] = ACTIONS(2745), + [anon_sym_union] = ACTIONS(2745), + [anon_sym_pub] = ACTIONS(2745), + [anon_sym_mut] = ACTIONS(2745), + [anon_sym_enum] = ACTIONS(2745), + [anon_sym_interface] = ACTIONS(2745), + [anon_sym_QMARK] = ACTIONS(2745), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_go] = ACTIONS(2745), + [anon_sym_spawn] = ACTIONS(2745), + [anon_sym_json_DOTdecode] = ACTIONS(2745), + [anon_sym_LBRACK2] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_CARET] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2745), + [anon_sym_LT_DASH] = ACTIONS(2745), + [sym_none] = ACTIONS(2745), + [sym_true] = ACTIONS(2745), + [sym_false] = ACTIONS(2745), + [sym_nil] = ACTIONS(2745), + [anon_sym_if] = ACTIONS(2745), + [anon_sym_DOLLARif] = ACTIONS(2745), + [anon_sym_match] = ACTIONS(2745), + [anon_sym_select] = ACTIONS(2745), + [anon_sym_lock] = ACTIONS(2745), + [anon_sym_rlock] = ACTIONS(2745), + [anon_sym_unsafe] = ACTIONS(2745), + [anon_sym_sql] = ACTIONS(2745), + [sym_int_literal] = ACTIONS(2745), + [sym_float_literal] = ACTIONS(2745), + [sym_rune_literal] = ACTIONS(2745), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2745), + [anon_sym_c_SQUOTE] = ACTIONS(2745), + [anon_sym_c_DQUOTE] = ACTIONS(2745), + [anon_sym_r_SQUOTE] = ACTIONS(2745), + [anon_sym_r_DQUOTE] = ACTIONS(2745), + [sym_pseudo_compile_time_identifier] = ACTIONS(2745), + [anon_sym_shared] = ACTIONS(2745), + [anon_sym_map_LBRACK] = ACTIONS(2745), + [anon_sym_chan] = ACTIONS(2745), + [anon_sym_thread] = ACTIONS(2745), + [anon_sym_atomic] = ACTIONS(2745), + [anon_sym_assert] = ACTIONS(2745), + [anon_sym_defer] = ACTIONS(2745), + [anon_sym_goto] = ACTIONS(2745), + [anon_sym_break] = ACTIONS(2745), + [anon_sym_continue] = ACTIONS(2745), + [anon_sym_return] = ACTIONS(2745), + [anon_sym_DOLLARfor] = ACTIONS(2745), + [anon_sym_for] = ACTIONS(2745), + [anon_sym_POUND] = ACTIONS(2745), + [anon_sym_asm] = ACTIONS(2745), + [anon_sym_AT_LBRACK] = ACTIONS(2745), + }, + [1502] = { + [sym_line_comment] = STATE(1502), + [sym_block_comment] = STATE(1502), [ts_builtin_sym_end] = ACTIONS(4242), [sym_identifier] = ACTIONS(4244), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_import] = ACTIONS(4246), + [anon_sym_LF] = ACTIONS(4244), + [anon_sym_CR] = ACTIONS(4244), + [anon_sym_CR_LF] = ACTIONS(4244), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_LBRACE] = ACTIONS(4242), + [anon_sym_LBRACE] = ACTIONS(4244), [anon_sym_const] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4244), [anon_sym___global] = ACTIONS(4244), [anon_sym_type] = ACTIONS(4244), [anon_sym_fn] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4242), + [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(4242), - [anon_sym_BANG] = ACTIONS(4242), + [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(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), + [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), @@ -181039,17 +181414,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(4244), [anon_sym_sql] = ACTIONS(4244), [sym_int_literal] = ACTIONS(4244), - [sym_float_literal] = ACTIONS(4242), - [sym_rune_literal] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4242), - [anon_sym_DQUOTE] = ACTIONS(4242), - [anon_sym_c_SQUOTE] = ACTIONS(4242), - [anon_sym_c_DQUOTE] = ACTIONS(4242), - [anon_sym_r_SQUOTE] = ACTIONS(4242), - [anon_sym_r_DQUOTE] = ACTIONS(4242), + [sym_float_literal] = ACTIONS(4244), + [sym_rune_literal] = ACTIONS(4244), + [anon_sym_SQUOTE] = ACTIONS(4244), + [anon_sym_DQUOTE] = ACTIONS(4244), + [anon_sym_c_SQUOTE] = ACTIONS(4244), + [anon_sym_c_DQUOTE] = ACTIONS(4244), + [anon_sym_r_SQUOTE] = ACTIONS(4244), + [anon_sym_r_DQUOTE] = ACTIONS(4244), [sym_pseudo_compile_time_identifier] = ACTIONS(4244), [anon_sym_shared] = ACTIONS(4244), - [anon_sym_map_LBRACK] = ACTIONS(4242), + [anon_sym_map_LBRACK] = ACTIONS(4244), [anon_sym_chan] = ACTIONS(4244), [anon_sym_thread] = ACTIONS(4244), [anon_sym_atomic] = ACTIONS(4244), @@ -181061,5667 +181436,8816 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(4244), [anon_sym_DOLLARfor] = ACTIONS(4244), [anon_sym_for] = ACTIONS(4244), - [anon_sym_POUND] = ACTIONS(4242), + [anon_sym_POUND] = ACTIONS(4244), [anon_sym_asm] = ACTIONS(4244), - [anon_sym_AT_LBRACK] = ACTIONS(4242), + [anon_sym_AT_LBRACK] = ACTIONS(4244), + }, + [1503] = { + [sym_line_comment] = STATE(1503), + [sym_block_comment] = STATE(1503), + [ts_builtin_sym_end] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1837), + [anon_sym_LF] = ACTIONS(1837), + [anon_sym_CR] = ACTIONS(1837), + [anon_sym_CR_LF] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_const] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym___global] = ACTIONS(1837), + [anon_sym_type] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_struct] = ACTIONS(1837), + [anon_sym_union] = ACTIONS(1837), + [anon_sym_pub] = ACTIONS(1837), + [anon_sym_mut] = ACTIONS(1837), + [anon_sym_enum] = ACTIONS(1837), + [anon_sym_interface] = ACTIONS(1837), + [anon_sym_QMARK] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_go] = ACTIONS(1837), + [anon_sym_spawn] = ACTIONS(1837), + [anon_sym_json_DOTdecode] = ACTIONS(1837), + [anon_sym_LBRACK2] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [sym_none] = ACTIONS(1837), + [sym_true] = ACTIONS(1837), + [sym_false] = ACTIONS(1837), + [sym_nil] = ACTIONS(1837), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_DOLLARif] = ACTIONS(1837), + [anon_sym_match] = ACTIONS(1837), + [anon_sym_select] = ACTIONS(1837), + [anon_sym_lock] = ACTIONS(1837), + [anon_sym_rlock] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1837), + [anon_sym_sql] = ACTIONS(1837), + [sym_int_literal] = ACTIONS(1837), + [sym_float_literal] = ACTIONS(1837), + [sym_rune_literal] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_c_SQUOTE] = ACTIONS(1837), + [anon_sym_c_DQUOTE] = ACTIONS(1837), + [anon_sym_r_SQUOTE] = ACTIONS(1837), + [anon_sym_r_DQUOTE] = ACTIONS(1837), + [sym_pseudo_compile_time_identifier] = ACTIONS(1837), + [anon_sym_shared] = ACTIONS(1837), + [anon_sym_map_LBRACK] = ACTIONS(1837), + [anon_sym_chan] = ACTIONS(1837), + [anon_sym_thread] = ACTIONS(1837), + [anon_sym_atomic] = ACTIONS(1837), + [anon_sym_assert] = ACTIONS(1837), + [anon_sym_defer] = ACTIONS(1837), + [anon_sym_goto] = ACTIONS(1837), + [anon_sym_break] = ACTIONS(1837), + [anon_sym_continue] = ACTIONS(1837), + [anon_sym_return] = ACTIONS(1837), + [anon_sym_DOLLARfor] = ACTIONS(1837), + [anon_sym_for] = ACTIONS(1837), + [anon_sym_POUND] = ACTIONS(1837), + [anon_sym_asm] = ACTIONS(1837), + [anon_sym_AT_LBRACK] = ACTIONS(1837), }, [1504] = { [sym_line_comment] = STATE(1504), [sym_block_comment] = STATE(1504), - [ts_builtin_sym_end] = ACTIONS(4249), - [sym_identifier] = ACTIONS(4251), - [anon_sym_LF] = ACTIONS(4251), - [anon_sym_CR] = ACTIONS(4251), - [anon_sym_CR_LF] = ACTIONS(4251), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4251), - [anon_sym_LBRACE] = ACTIONS(4251), - [anon_sym_const] = ACTIONS(4251), - [anon_sym_LPAREN] = ACTIONS(4251), - [anon_sym___global] = ACTIONS(4251), - [anon_sym_type] = ACTIONS(4251), - [anon_sym_fn] = ACTIONS(4251), - [anon_sym_PLUS] = ACTIONS(4251), - [anon_sym_DASH] = ACTIONS(4251), - [anon_sym_STAR] = ACTIONS(4251), - [anon_sym_struct] = ACTIONS(4251), - [anon_sym_union] = ACTIONS(4251), - [anon_sym_pub] = ACTIONS(4251), - [anon_sym_mut] = ACTIONS(4251), - [anon_sym_enum] = ACTIONS(4251), - [anon_sym_interface] = ACTIONS(4251), - [anon_sym_QMARK] = ACTIONS(4251), - [anon_sym_BANG] = ACTIONS(4251), - [anon_sym_go] = ACTIONS(4251), - [anon_sym_spawn] = ACTIONS(4251), - [anon_sym_json_DOTdecode] = ACTIONS(4251), - [anon_sym_LBRACK2] = ACTIONS(4251), - [anon_sym_TILDE] = ACTIONS(4251), - [anon_sym_CARET] = ACTIONS(4251), - [anon_sym_AMP] = ACTIONS(4251), - [anon_sym_LT_DASH] = ACTIONS(4251), - [sym_none] = ACTIONS(4251), - [sym_true] = ACTIONS(4251), - [sym_false] = ACTIONS(4251), - [sym_nil] = ACTIONS(4251), - [anon_sym_if] = ACTIONS(4251), - [anon_sym_DOLLARif] = ACTIONS(4251), - [anon_sym_match] = ACTIONS(4251), - [anon_sym_select] = ACTIONS(4251), - [anon_sym_lock] = ACTIONS(4251), - [anon_sym_rlock] = ACTIONS(4251), - [anon_sym_unsafe] = ACTIONS(4251), - [anon_sym_sql] = ACTIONS(4251), - [sym_int_literal] = ACTIONS(4251), - [sym_float_literal] = ACTIONS(4251), - [sym_rune_literal] = ACTIONS(4251), - [anon_sym_SQUOTE] = ACTIONS(4251), - [anon_sym_DQUOTE] = ACTIONS(4251), - [anon_sym_c_SQUOTE] = ACTIONS(4251), - [anon_sym_c_DQUOTE] = ACTIONS(4251), - [anon_sym_r_SQUOTE] = ACTIONS(4251), - [anon_sym_r_DQUOTE] = ACTIONS(4251), - [sym_pseudo_compile_time_identifier] = ACTIONS(4251), - [anon_sym_shared] = ACTIONS(4251), - [anon_sym_map_LBRACK] = ACTIONS(4251), - [anon_sym_chan] = ACTIONS(4251), - [anon_sym_thread] = ACTIONS(4251), - [anon_sym_atomic] = ACTIONS(4251), - [anon_sym_assert] = ACTIONS(4251), - [anon_sym_defer] = ACTIONS(4251), - [anon_sym_goto] = ACTIONS(4251), - [anon_sym_break] = ACTIONS(4251), - [anon_sym_continue] = ACTIONS(4251), - [anon_sym_return] = ACTIONS(4251), - [anon_sym_DOLLARfor] = ACTIONS(4251), - [anon_sym_for] = ACTIONS(4251), - [anon_sym_POUND] = ACTIONS(4251), - [anon_sym_asm] = ACTIONS(4251), - [anon_sym_AT_LBRACK] = ACTIONS(4251), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2421), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(609), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_as] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_RPAREN] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(3600), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_LT_EQ] = ACTIONS(607), + [anon_sym_GT_EQ] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_RBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(607), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(607), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(607), + [anon_sym_AMP_CARET] = ACTIONS(607), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [anon_sym_or] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(607), + [anon_sym_POUND_LBRACK] = ACTIONS(607), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(607), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(607), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(607), }, [1505] = { [sym_line_comment] = STATE(1505), [sym_block_comment] = STATE(1505), - [sym_import_declaration] = STATE(1583), - [aux_sym_import_list_repeat1] = STATE(1503), - [ts_builtin_sym_end] = ACTIONS(4253), - [sym_identifier] = ACTIONS(4255), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_import] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(4255), - [anon_sym_LBRACE] = ACTIONS(4253), - [anon_sym_const] = ACTIONS(4255), - [anon_sym_LPAREN] = ACTIONS(4253), - [anon_sym___global] = ACTIONS(4255), - [anon_sym_type] = ACTIONS(4255), - [anon_sym_fn] = ACTIONS(4255), - [anon_sym_PLUS] = ACTIONS(4253), - [anon_sym_DASH] = ACTIONS(4253), - [anon_sym_STAR] = ACTIONS(4253), - [anon_sym_struct] = ACTIONS(4255), - [anon_sym_union] = ACTIONS(4255), - [anon_sym_pub] = ACTIONS(4255), - [anon_sym_mut] = ACTIONS(4255), - [anon_sym_enum] = ACTIONS(4255), - [anon_sym_interface] = ACTIONS(4255), - [anon_sym_QMARK] = ACTIONS(4253), - [anon_sym_BANG] = ACTIONS(4253), - [anon_sym_go] = ACTIONS(4255), - [anon_sym_spawn] = ACTIONS(4255), - [anon_sym_json_DOTdecode] = ACTIONS(4253), - [anon_sym_LBRACK2] = ACTIONS(4253), - [anon_sym_TILDE] = ACTIONS(4253), - [anon_sym_CARET] = ACTIONS(4253), - [anon_sym_AMP] = ACTIONS(4253), - [anon_sym_LT_DASH] = ACTIONS(4253), - [sym_none] = ACTIONS(4255), - [sym_true] = ACTIONS(4255), - [sym_false] = ACTIONS(4255), - [sym_nil] = ACTIONS(4255), - [anon_sym_if] = ACTIONS(4255), - [anon_sym_DOLLARif] = ACTIONS(4255), - [anon_sym_match] = ACTIONS(4255), - [anon_sym_select] = ACTIONS(4255), - [anon_sym_lock] = ACTIONS(4255), - [anon_sym_rlock] = ACTIONS(4255), - [anon_sym_unsafe] = ACTIONS(4255), - [anon_sym_sql] = ACTIONS(4255), - [sym_int_literal] = ACTIONS(4255), - [sym_float_literal] = ACTIONS(4253), - [sym_rune_literal] = ACTIONS(4253), - [anon_sym_SQUOTE] = ACTIONS(4253), - [anon_sym_DQUOTE] = ACTIONS(4253), - [anon_sym_c_SQUOTE] = ACTIONS(4253), - [anon_sym_c_DQUOTE] = ACTIONS(4253), - [anon_sym_r_SQUOTE] = ACTIONS(4253), - [anon_sym_r_DQUOTE] = ACTIONS(4253), - [sym_pseudo_compile_time_identifier] = ACTIONS(4255), - [anon_sym_shared] = ACTIONS(4255), - [anon_sym_map_LBRACK] = ACTIONS(4253), - [anon_sym_chan] = ACTIONS(4255), - [anon_sym_thread] = ACTIONS(4255), - [anon_sym_atomic] = ACTIONS(4255), - [anon_sym_assert] = ACTIONS(4255), - [anon_sym_defer] = ACTIONS(4255), - [anon_sym_goto] = ACTIONS(4255), - [anon_sym_break] = ACTIONS(4255), - [anon_sym_continue] = ACTIONS(4255), - [anon_sym_return] = ACTIONS(4255), - [anon_sym_DOLLARfor] = ACTIONS(4255), - [anon_sym_for] = ACTIONS(4255), - [anon_sym_POUND] = ACTIONS(4253), - [anon_sym_asm] = ACTIONS(4255), - [anon_sym_AT_LBRACK] = ACTIONS(4253), + [ts_builtin_sym_end] = ACTIONS(4248), + [sym_identifier] = ACTIONS(4250), + [anon_sym_LF] = ACTIONS(4250), + [anon_sym_CR] = ACTIONS(4250), + [anon_sym_CR_LF] = ACTIONS(4250), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4250), + [anon_sym_LBRACE] = ACTIONS(4250), + [anon_sym_const] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym___global] = ACTIONS(4250), + [anon_sym_type] = ACTIONS(4250), + [anon_sym_fn] = ACTIONS(4250), + [anon_sym_PLUS] = ACTIONS(4250), + [anon_sym_DASH] = ACTIONS(4250), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_struct] = ACTIONS(4250), + [anon_sym_union] = ACTIONS(4250), + [anon_sym_pub] = ACTIONS(4250), + [anon_sym_mut] = ACTIONS(4250), + [anon_sym_enum] = ACTIONS(4250), + [anon_sym_interface] = ACTIONS(4250), + [anon_sym_QMARK] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(4250), + [anon_sym_go] = ACTIONS(4250), + [anon_sym_spawn] = ACTIONS(4250), + [anon_sym_json_DOTdecode] = ACTIONS(4250), + [anon_sym_LBRACK2] = ACTIONS(4250), + [anon_sym_TILDE] = ACTIONS(4250), + [anon_sym_CARET] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4250), + [anon_sym_LT_DASH] = ACTIONS(4250), + [sym_none] = ACTIONS(4250), + [sym_true] = ACTIONS(4250), + [sym_false] = ACTIONS(4250), + [sym_nil] = ACTIONS(4250), + [anon_sym_if] = ACTIONS(4250), + [anon_sym_DOLLARif] = ACTIONS(4250), + [anon_sym_match] = ACTIONS(4250), + [anon_sym_select] = ACTIONS(4250), + [anon_sym_lock] = ACTIONS(4250), + [anon_sym_rlock] = ACTIONS(4250), + [anon_sym_unsafe] = ACTIONS(4250), + [anon_sym_sql] = ACTIONS(4250), + [sym_int_literal] = ACTIONS(4250), + [sym_float_literal] = ACTIONS(4250), + [sym_rune_literal] = ACTIONS(4250), + [anon_sym_SQUOTE] = ACTIONS(4250), + [anon_sym_DQUOTE] = ACTIONS(4250), + [anon_sym_c_SQUOTE] = ACTIONS(4250), + [anon_sym_c_DQUOTE] = ACTIONS(4250), + [anon_sym_r_SQUOTE] = ACTIONS(4250), + [anon_sym_r_DQUOTE] = ACTIONS(4250), + [sym_pseudo_compile_time_identifier] = ACTIONS(4250), + [anon_sym_shared] = ACTIONS(4250), + [anon_sym_map_LBRACK] = ACTIONS(4250), + [anon_sym_chan] = ACTIONS(4250), + [anon_sym_thread] = ACTIONS(4250), + [anon_sym_atomic] = ACTIONS(4250), + [anon_sym_assert] = ACTIONS(4250), + [anon_sym_defer] = ACTIONS(4250), + [anon_sym_goto] = ACTIONS(4250), + [anon_sym_break] = ACTIONS(4250), + [anon_sym_continue] = ACTIONS(4250), + [anon_sym_return] = ACTIONS(4250), + [anon_sym_DOLLARfor] = ACTIONS(4250), + [anon_sym_for] = ACTIONS(4250), + [anon_sym_POUND] = ACTIONS(4250), + [anon_sym_asm] = ACTIONS(4250), + [anon_sym_AT_LBRACK] = ACTIONS(4250), }, [1506] = { [sym_line_comment] = STATE(1506), [sym_block_comment] = STATE(1506), - [ts_builtin_sym_end] = ACTIONS(4257), - [sym_identifier] = ACTIONS(4259), - [anon_sym_LF] = ACTIONS(4259), - [anon_sym_CR] = ACTIONS(4259), - [anon_sym_CR_LF] = ACTIONS(4259), + [ts_builtin_sym_end] = ACTIONS(4252), + [sym_identifier] = ACTIONS(4254), + [anon_sym_LF] = ACTIONS(4254), + [anon_sym_CR] = ACTIONS(4254), + [anon_sym_CR_LF] = ACTIONS(4254), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(4259), - [anon_sym_const] = ACTIONS(4259), - [anon_sym_LPAREN] = ACTIONS(4259), - [anon_sym___global] = ACTIONS(4259), - [anon_sym_type] = ACTIONS(4259), - [anon_sym_fn] = ACTIONS(4259), - [anon_sym_PLUS] = ACTIONS(4259), - [anon_sym_DASH] = ACTIONS(4259), - [anon_sym_STAR] = ACTIONS(4259), - [anon_sym_struct] = ACTIONS(4259), - [anon_sym_union] = ACTIONS(4259), - [anon_sym_pub] = ACTIONS(4259), - [anon_sym_mut] = ACTIONS(4259), - [anon_sym_enum] = ACTIONS(4259), - [anon_sym_interface] = ACTIONS(4259), - [anon_sym_QMARK] = ACTIONS(4259), - [anon_sym_BANG] = ACTIONS(4259), - [anon_sym_go] = ACTIONS(4259), - [anon_sym_spawn] = ACTIONS(4259), - [anon_sym_json_DOTdecode] = ACTIONS(4259), - [anon_sym_LBRACK2] = ACTIONS(4259), - [anon_sym_TILDE] = ACTIONS(4259), - [anon_sym_CARET] = ACTIONS(4259), - [anon_sym_AMP] = ACTIONS(4259), - [anon_sym_LT_DASH] = ACTIONS(4259), - [sym_none] = ACTIONS(4259), - [sym_true] = ACTIONS(4259), - [sym_false] = ACTIONS(4259), - [sym_nil] = ACTIONS(4259), - [anon_sym_if] = ACTIONS(4259), - [anon_sym_DOLLARif] = ACTIONS(4259), - [anon_sym_match] = ACTIONS(4259), - [anon_sym_select] = ACTIONS(4259), - [anon_sym_lock] = ACTIONS(4259), - [anon_sym_rlock] = ACTIONS(4259), - [anon_sym_unsafe] = ACTIONS(4259), - [anon_sym_sql] = ACTIONS(4259), - [sym_int_literal] = ACTIONS(4259), - [sym_float_literal] = ACTIONS(4259), - [sym_rune_literal] = ACTIONS(4259), - [anon_sym_SQUOTE] = ACTIONS(4259), - [anon_sym_DQUOTE] = ACTIONS(4259), - [anon_sym_c_SQUOTE] = ACTIONS(4259), - [anon_sym_c_DQUOTE] = ACTIONS(4259), - [anon_sym_r_SQUOTE] = ACTIONS(4259), - [anon_sym_r_DQUOTE] = ACTIONS(4259), - [sym_pseudo_compile_time_identifier] = ACTIONS(4259), - [anon_sym_shared] = ACTIONS(4259), - [anon_sym_map_LBRACK] = ACTIONS(4259), - [anon_sym_chan] = ACTIONS(4259), - [anon_sym_thread] = ACTIONS(4259), - [anon_sym_atomic] = ACTIONS(4259), - [anon_sym_assert] = ACTIONS(4259), - [anon_sym_defer] = ACTIONS(4259), - [anon_sym_goto] = ACTIONS(4259), - [anon_sym_break] = ACTIONS(4259), - [anon_sym_continue] = ACTIONS(4259), - [anon_sym_return] = ACTIONS(4259), - [anon_sym_DOLLARfor] = ACTIONS(4259), - [anon_sym_for] = ACTIONS(4259), - [anon_sym_POUND] = ACTIONS(4259), - [anon_sym_asm] = ACTIONS(4259), - [anon_sym_AT_LBRACK] = ACTIONS(4259), + [anon_sym_DOT] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4254), + [anon_sym_const] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym___global] = ACTIONS(4254), + [anon_sym_type] = ACTIONS(4254), + [anon_sym_fn] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4254), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_STAR] = ACTIONS(4254), + [anon_sym_struct] = ACTIONS(4254), + [anon_sym_union] = ACTIONS(4254), + [anon_sym_pub] = ACTIONS(4254), + [anon_sym_mut] = ACTIONS(4254), + [anon_sym_enum] = ACTIONS(4254), + [anon_sym_interface] = ACTIONS(4254), + [anon_sym_QMARK] = ACTIONS(4254), + [anon_sym_BANG] = ACTIONS(4254), + [anon_sym_go] = ACTIONS(4254), + [anon_sym_spawn] = ACTIONS(4254), + [anon_sym_json_DOTdecode] = ACTIONS(4254), + [anon_sym_LBRACK2] = ACTIONS(4254), + [anon_sym_TILDE] = ACTIONS(4254), + [anon_sym_CARET] = ACTIONS(4254), + [anon_sym_AMP] = ACTIONS(4254), + [anon_sym_LT_DASH] = ACTIONS(4254), + [sym_none] = ACTIONS(4254), + [sym_true] = ACTIONS(4254), + [sym_false] = ACTIONS(4254), + [sym_nil] = ACTIONS(4254), + [anon_sym_if] = ACTIONS(4254), + [anon_sym_DOLLARif] = ACTIONS(4254), + [anon_sym_match] = ACTIONS(4254), + [anon_sym_select] = ACTIONS(4254), + [anon_sym_lock] = ACTIONS(4254), + [anon_sym_rlock] = ACTIONS(4254), + [anon_sym_unsafe] = ACTIONS(4254), + [anon_sym_sql] = ACTIONS(4254), + [sym_int_literal] = ACTIONS(4254), + [sym_float_literal] = ACTIONS(4254), + [sym_rune_literal] = ACTIONS(4254), + [anon_sym_SQUOTE] = ACTIONS(4254), + [anon_sym_DQUOTE] = ACTIONS(4254), + [anon_sym_c_SQUOTE] = ACTIONS(4254), + [anon_sym_c_DQUOTE] = ACTIONS(4254), + [anon_sym_r_SQUOTE] = ACTIONS(4254), + [anon_sym_r_DQUOTE] = ACTIONS(4254), + [sym_pseudo_compile_time_identifier] = ACTIONS(4254), + [anon_sym_shared] = ACTIONS(4254), + [anon_sym_map_LBRACK] = ACTIONS(4254), + [anon_sym_chan] = ACTIONS(4254), + [anon_sym_thread] = ACTIONS(4254), + [anon_sym_atomic] = ACTIONS(4254), + [anon_sym_assert] = ACTIONS(4254), + [anon_sym_defer] = ACTIONS(4254), + [anon_sym_goto] = ACTIONS(4254), + [anon_sym_break] = ACTIONS(4254), + [anon_sym_continue] = ACTIONS(4254), + [anon_sym_return] = ACTIONS(4254), + [anon_sym_DOLLARfor] = ACTIONS(4254), + [anon_sym_for] = ACTIONS(4254), + [anon_sym_POUND] = ACTIONS(4254), + [anon_sym_asm] = ACTIONS(4254), + [anon_sym_AT_LBRACK] = ACTIONS(4254), }, [1507] = { [sym_line_comment] = STATE(1507), [sym_block_comment] = STATE(1507), - [ts_builtin_sym_end] = ACTIONS(4261), - [sym_identifier] = ACTIONS(4263), - [anon_sym_LF] = ACTIONS(4263), - [anon_sym_CR] = ACTIONS(4263), - [anon_sym_CR_LF] = ACTIONS(4263), + [ts_builtin_sym_end] = ACTIONS(4256), + [sym_identifier] = ACTIONS(4258), + [anon_sym_LF] = ACTIONS(4258), + [anon_sym_CR] = ACTIONS(4258), + [anon_sym_CR_LF] = ACTIONS(4258), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4263), - [anon_sym_LBRACE] = ACTIONS(4263), - [anon_sym_const] = ACTIONS(4263), - [anon_sym_LPAREN] = ACTIONS(4263), - [anon_sym___global] = ACTIONS(4263), - [anon_sym_type] = ACTIONS(4263), - [anon_sym_fn] = ACTIONS(4263), - [anon_sym_PLUS] = ACTIONS(4263), - [anon_sym_DASH] = ACTIONS(4263), - [anon_sym_STAR] = ACTIONS(4263), - [anon_sym_struct] = ACTIONS(4263), - [anon_sym_union] = ACTIONS(4263), - [anon_sym_pub] = ACTIONS(4263), - [anon_sym_mut] = ACTIONS(4263), - [anon_sym_enum] = ACTIONS(4263), - [anon_sym_interface] = ACTIONS(4263), - [anon_sym_QMARK] = ACTIONS(4263), - [anon_sym_BANG] = ACTIONS(4263), - [anon_sym_go] = ACTIONS(4263), - [anon_sym_spawn] = ACTIONS(4263), - [anon_sym_json_DOTdecode] = ACTIONS(4263), - [anon_sym_LBRACK2] = ACTIONS(4263), - [anon_sym_TILDE] = ACTIONS(4263), - [anon_sym_CARET] = ACTIONS(4263), - [anon_sym_AMP] = ACTIONS(4263), - [anon_sym_LT_DASH] = ACTIONS(4263), - [sym_none] = ACTIONS(4263), - [sym_true] = ACTIONS(4263), - [sym_false] = ACTIONS(4263), - [sym_nil] = ACTIONS(4263), - [anon_sym_if] = ACTIONS(4263), - [anon_sym_DOLLARif] = ACTIONS(4263), - [anon_sym_match] = ACTIONS(4263), - [anon_sym_select] = ACTIONS(4263), - [anon_sym_lock] = ACTIONS(4263), - [anon_sym_rlock] = ACTIONS(4263), - [anon_sym_unsafe] = ACTIONS(4263), - [anon_sym_sql] = ACTIONS(4263), - [sym_int_literal] = ACTIONS(4263), - [sym_float_literal] = ACTIONS(4263), - [sym_rune_literal] = ACTIONS(4263), - [anon_sym_SQUOTE] = ACTIONS(4263), - [anon_sym_DQUOTE] = ACTIONS(4263), - [anon_sym_c_SQUOTE] = ACTIONS(4263), - [anon_sym_c_DQUOTE] = ACTIONS(4263), - [anon_sym_r_SQUOTE] = ACTIONS(4263), - [anon_sym_r_DQUOTE] = ACTIONS(4263), - [sym_pseudo_compile_time_identifier] = ACTIONS(4263), - [anon_sym_shared] = ACTIONS(4263), - [anon_sym_map_LBRACK] = ACTIONS(4263), - [anon_sym_chan] = ACTIONS(4263), - [anon_sym_thread] = ACTIONS(4263), - [anon_sym_atomic] = ACTIONS(4263), - [anon_sym_assert] = ACTIONS(4263), - [anon_sym_defer] = ACTIONS(4263), - [anon_sym_goto] = ACTIONS(4263), - [anon_sym_break] = ACTIONS(4263), - [anon_sym_continue] = ACTIONS(4263), - [anon_sym_return] = ACTIONS(4263), - [anon_sym_DOLLARfor] = ACTIONS(4263), - [anon_sym_for] = ACTIONS(4263), - [anon_sym_POUND] = ACTIONS(4263), - [anon_sym_asm] = ACTIONS(4263), - [anon_sym_AT_LBRACK] = ACTIONS(4263), + [anon_sym_DOT] = ACTIONS(4258), + [anon_sym_LBRACE] = ACTIONS(4258), + [anon_sym_const] = ACTIONS(4258), + [anon_sym_LPAREN] = ACTIONS(4258), + [anon_sym___global] = ACTIONS(4258), + [anon_sym_type] = ACTIONS(4258), + [anon_sym_fn] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_STAR] = ACTIONS(4258), + [anon_sym_struct] = ACTIONS(4258), + [anon_sym_union] = ACTIONS(4258), + [anon_sym_pub] = ACTIONS(4258), + [anon_sym_mut] = ACTIONS(4258), + [anon_sym_enum] = ACTIONS(4258), + [anon_sym_interface] = ACTIONS(4258), + [anon_sym_QMARK] = ACTIONS(4258), + [anon_sym_BANG] = ACTIONS(4258), + [anon_sym_go] = ACTIONS(4258), + [anon_sym_spawn] = ACTIONS(4258), + [anon_sym_json_DOTdecode] = ACTIONS(4258), + [anon_sym_LBRACK2] = ACTIONS(4258), + [anon_sym_TILDE] = ACTIONS(4258), + [anon_sym_CARET] = ACTIONS(4258), + [anon_sym_AMP] = ACTIONS(4258), + [anon_sym_LT_DASH] = ACTIONS(4258), + [sym_none] = ACTIONS(4258), + [sym_true] = ACTIONS(4258), + [sym_false] = ACTIONS(4258), + [sym_nil] = ACTIONS(4258), + [anon_sym_if] = ACTIONS(4258), + [anon_sym_DOLLARif] = ACTIONS(4258), + [anon_sym_match] = ACTIONS(4258), + [anon_sym_select] = ACTIONS(4258), + [anon_sym_lock] = ACTIONS(4258), + [anon_sym_rlock] = ACTIONS(4258), + [anon_sym_unsafe] = ACTIONS(4258), + [anon_sym_sql] = ACTIONS(4258), + [sym_int_literal] = ACTIONS(4258), + [sym_float_literal] = ACTIONS(4258), + [sym_rune_literal] = ACTIONS(4258), + [anon_sym_SQUOTE] = ACTIONS(4258), + [anon_sym_DQUOTE] = ACTIONS(4258), + [anon_sym_c_SQUOTE] = ACTIONS(4258), + [anon_sym_c_DQUOTE] = ACTIONS(4258), + [anon_sym_r_SQUOTE] = ACTIONS(4258), + [anon_sym_r_DQUOTE] = ACTIONS(4258), + [sym_pseudo_compile_time_identifier] = ACTIONS(4258), + [anon_sym_shared] = ACTIONS(4258), + [anon_sym_map_LBRACK] = ACTIONS(4258), + [anon_sym_chan] = ACTIONS(4258), + [anon_sym_thread] = ACTIONS(4258), + [anon_sym_atomic] = ACTIONS(4258), + [anon_sym_assert] = ACTIONS(4258), + [anon_sym_defer] = ACTIONS(4258), + [anon_sym_goto] = ACTIONS(4258), + [anon_sym_break] = ACTIONS(4258), + [anon_sym_continue] = ACTIONS(4258), + [anon_sym_return] = ACTIONS(4258), + [anon_sym_DOLLARfor] = ACTIONS(4258), + [anon_sym_for] = ACTIONS(4258), + [anon_sym_POUND] = ACTIONS(4258), + [anon_sym_asm] = ACTIONS(4258), + [anon_sym_AT_LBRACK] = ACTIONS(4258), }, [1508] = { [sym_line_comment] = STATE(1508), [sym_block_comment] = STATE(1508), - [ts_builtin_sym_end] = ACTIONS(4265), - [sym_identifier] = ACTIONS(4267), - [anon_sym_LF] = ACTIONS(4267), - [anon_sym_CR] = ACTIONS(4267), - [anon_sym_CR_LF] = ACTIONS(4267), + [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(4267), - [anon_sym_LBRACE] = ACTIONS(4267), - [anon_sym_const] = ACTIONS(4267), - [anon_sym_LPAREN] = ACTIONS(4267), - [anon_sym___global] = ACTIONS(4267), - [anon_sym_type] = ACTIONS(4267), - [anon_sym_fn] = ACTIONS(4267), - [anon_sym_PLUS] = ACTIONS(4267), - [anon_sym_DASH] = ACTIONS(4267), - [anon_sym_STAR] = ACTIONS(4267), - [anon_sym_struct] = ACTIONS(4267), - [anon_sym_union] = ACTIONS(4267), - [anon_sym_pub] = ACTIONS(4267), - [anon_sym_mut] = ACTIONS(4267), - [anon_sym_enum] = ACTIONS(4267), - [anon_sym_interface] = ACTIONS(4267), - [anon_sym_QMARK] = ACTIONS(4267), - [anon_sym_BANG] = ACTIONS(4267), - [anon_sym_go] = ACTIONS(4267), - [anon_sym_spawn] = ACTIONS(4267), - [anon_sym_json_DOTdecode] = ACTIONS(4267), - [anon_sym_LBRACK2] = ACTIONS(4267), - [anon_sym_TILDE] = ACTIONS(4267), - [anon_sym_CARET] = ACTIONS(4267), - [anon_sym_AMP] = ACTIONS(4267), - [anon_sym_LT_DASH] = ACTIONS(4267), - [sym_none] = ACTIONS(4267), - [sym_true] = ACTIONS(4267), - [sym_false] = ACTIONS(4267), - [sym_nil] = ACTIONS(4267), - [anon_sym_if] = ACTIONS(4267), - [anon_sym_DOLLARif] = ACTIONS(4267), - [anon_sym_match] = ACTIONS(4267), - [anon_sym_select] = ACTIONS(4267), - [anon_sym_lock] = ACTIONS(4267), - [anon_sym_rlock] = ACTIONS(4267), - [anon_sym_unsafe] = ACTIONS(4267), - [anon_sym_sql] = ACTIONS(4267), - [sym_int_literal] = ACTIONS(4267), - [sym_float_literal] = ACTIONS(4267), - [sym_rune_literal] = ACTIONS(4267), - [anon_sym_SQUOTE] = ACTIONS(4267), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_c_SQUOTE] = ACTIONS(4267), - [anon_sym_c_DQUOTE] = ACTIONS(4267), - [anon_sym_r_SQUOTE] = ACTIONS(4267), - [anon_sym_r_DQUOTE] = ACTIONS(4267), - [sym_pseudo_compile_time_identifier] = ACTIONS(4267), - [anon_sym_shared] = ACTIONS(4267), - [anon_sym_map_LBRACK] = ACTIONS(4267), - [anon_sym_chan] = ACTIONS(4267), - [anon_sym_thread] = ACTIONS(4267), - [anon_sym_atomic] = ACTIONS(4267), - [anon_sym_assert] = ACTIONS(4267), - [anon_sym_defer] = ACTIONS(4267), - [anon_sym_goto] = ACTIONS(4267), - [anon_sym_break] = ACTIONS(4267), - [anon_sym_continue] = ACTIONS(4267), - [anon_sym_return] = ACTIONS(4267), - [anon_sym_DOLLARfor] = ACTIONS(4267), - [anon_sym_for] = ACTIONS(4267), - [anon_sym_POUND] = ACTIONS(4267), - [anon_sym_asm] = ACTIONS(4267), - [anon_sym_AT_LBRACK] = ACTIONS(4267), + [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_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), + [anon_sym_SQUOTE] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [anon_sym_c_SQUOTE] = ACTIONS(4015), + [anon_sym_c_DQUOTE] = ACTIONS(4015), + [anon_sym_r_SQUOTE] = ACTIONS(4015), + [anon_sym_r_DQUOTE] = 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), }, [1509] = { [sym_line_comment] = STATE(1509), [sym_block_comment] = STATE(1509), - [ts_builtin_sym_end] = ACTIONS(4269), - [sym_identifier] = ACTIONS(4271), - [anon_sym_LF] = ACTIONS(4271), - [anon_sym_CR] = ACTIONS(4271), - [anon_sym_CR_LF] = ACTIONS(4271), + [ts_builtin_sym_end] = ACTIONS(4260), + [sym_identifier] = ACTIONS(4262), + [anon_sym_LF] = ACTIONS(4262), + [anon_sym_CR] = ACTIONS(4262), + [anon_sym_CR_LF] = ACTIONS(4262), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4271), - [anon_sym_LBRACE] = ACTIONS(4271), - [anon_sym_const] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym___global] = ACTIONS(4271), - [anon_sym_type] = ACTIONS(4271), - [anon_sym_fn] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4271), - [anon_sym_DASH] = ACTIONS(4271), - [anon_sym_STAR] = ACTIONS(4271), - [anon_sym_struct] = ACTIONS(4271), - [anon_sym_union] = ACTIONS(4271), - [anon_sym_pub] = ACTIONS(4271), - [anon_sym_mut] = ACTIONS(4271), - [anon_sym_enum] = ACTIONS(4271), - [anon_sym_interface] = ACTIONS(4271), - [anon_sym_QMARK] = ACTIONS(4271), - [anon_sym_BANG] = ACTIONS(4271), - [anon_sym_go] = ACTIONS(4271), - [anon_sym_spawn] = ACTIONS(4271), - [anon_sym_json_DOTdecode] = ACTIONS(4271), - [anon_sym_LBRACK2] = ACTIONS(4271), - [anon_sym_TILDE] = ACTIONS(4271), - [anon_sym_CARET] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4271), - [anon_sym_LT_DASH] = ACTIONS(4271), - [sym_none] = ACTIONS(4271), - [sym_true] = ACTIONS(4271), - [sym_false] = ACTIONS(4271), - [sym_nil] = ACTIONS(4271), - [anon_sym_if] = ACTIONS(4271), - [anon_sym_DOLLARif] = ACTIONS(4271), - [anon_sym_match] = ACTIONS(4271), - [anon_sym_select] = ACTIONS(4271), - [anon_sym_lock] = ACTIONS(4271), - [anon_sym_rlock] = ACTIONS(4271), - [anon_sym_unsafe] = ACTIONS(4271), - [anon_sym_sql] = ACTIONS(4271), - [sym_int_literal] = ACTIONS(4271), - [sym_float_literal] = ACTIONS(4271), - [sym_rune_literal] = ACTIONS(4271), - [anon_sym_SQUOTE] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4271), - [anon_sym_c_SQUOTE] = ACTIONS(4271), - [anon_sym_c_DQUOTE] = ACTIONS(4271), - [anon_sym_r_SQUOTE] = ACTIONS(4271), - [anon_sym_r_DQUOTE] = ACTIONS(4271), - [sym_pseudo_compile_time_identifier] = ACTIONS(4271), - [anon_sym_shared] = ACTIONS(4271), - [anon_sym_map_LBRACK] = ACTIONS(4271), - [anon_sym_chan] = ACTIONS(4271), - [anon_sym_thread] = ACTIONS(4271), - [anon_sym_atomic] = ACTIONS(4271), - [anon_sym_assert] = ACTIONS(4271), - [anon_sym_defer] = ACTIONS(4271), - [anon_sym_goto] = ACTIONS(4271), - [anon_sym_break] = ACTIONS(4271), - [anon_sym_continue] = ACTIONS(4271), - [anon_sym_return] = ACTIONS(4271), - [anon_sym_DOLLARfor] = ACTIONS(4271), - [anon_sym_for] = ACTIONS(4271), - [anon_sym_POUND] = ACTIONS(4271), - [anon_sym_asm] = ACTIONS(4271), - [anon_sym_AT_LBRACK] = ACTIONS(4271), + [anon_sym_DOT] = ACTIONS(4262), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_const] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(4262), + [anon_sym___global] = ACTIONS(4262), + [anon_sym_type] = ACTIONS(4262), + [anon_sym_fn] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4262), + [anon_sym_DASH] = ACTIONS(4262), + [anon_sym_STAR] = ACTIONS(4262), + [anon_sym_struct] = ACTIONS(4262), + [anon_sym_union] = ACTIONS(4262), + [anon_sym_pub] = ACTIONS(4262), + [anon_sym_mut] = ACTIONS(4262), + [anon_sym_enum] = ACTIONS(4262), + [anon_sym_interface] = ACTIONS(4262), + [anon_sym_QMARK] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4262), + [anon_sym_go] = ACTIONS(4262), + [anon_sym_spawn] = ACTIONS(4262), + [anon_sym_json_DOTdecode] = ACTIONS(4262), + [anon_sym_LBRACK2] = ACTIONS(4262), + [anon_sym_TILDE] = ACTIONS(4262), + [anon_sym_CARET] = ACTIONS(4262), + [anon_sym_AMP] = ACTIONS(4262), + [anon_sym_LT_DASH] = ACTIONS(4262), + [sym_none] = ACTIONS(4262), + [sym_true] = ACTIONS(4262), + [sym_false] = ACTIONS(4262), + [sym_nil] = ACTIONS(4262), + [anon_sym_if] = ACTIONS(4262), + [anon_sym_DOLLARif] = ACTIONS(4262), + [anon_sym_match] = ACTIONS(4262), + [anon_sym_select] = ACTIONS(4262), + [anon_sym_lock] = ACTIONS(4262), + [anon_sym_rlock] = ACTIONS(4262), + [anon_sym_unsafe] = ACTIONS(4262), + [anon_sym_sql] = ACTIONS(4262), + [sym_int_literal] = ACTIONS(4262), + [sym_float_literal] = ACTIONS(4262), + [sym_rune_literal] = ACTIONS(4262), + [anon_sym_SQUOTE] = ACTIONS(4262), + [anon_sym_DQUOTE] = ACTIONS(4262), + [anon_sym_c_SQUOTE] = ACTIONS(4262), + [anon_sym_c_DQUOTE] = ACTIONS(4262), + [anon_sym_r_SQUOTE] = ACTIONS(4262), + [anon_sym_r_DQUOTE] = ACTIONS(4262), + [sym_pseudo_compile_time_identifier] = ACTIONS(4262), + [anon_sym_shared] = ACTIONS(4262), + [anon_sym_map_LBRACK] = ACTIONS(4262), + [anon_sym_chan] = ACTIONS(4262), + [anon_sym_thread] = ACTIONS(4262), + [anon_sym_atomic] = ACTIONS(4262), + [anon_sym_assert] = ACTIONS(4262), + [anon_sym_defer] = ACTIONS(4262), + [anon_sym_goto] = ACTIONS(4262), + [anon_sym_break] = ACTIONS(4262), + [anon_sym_continue] = ACTIONS(4262), + [anon_sym_return] = ACTIONS(4262), + [anon_sym_DOLLARfor] = ACTIONS(4262), + [anon_sym_for] = ACTIONS(4262), + [anon_sym_POUND] = ACTIONS(4262), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym_AT_LBRACK] = ACTIONS(4262), }, [1510] = { [sym_line_comment] = STATE(1510), [sym_block_comment] = STATE(1510), - [ts_builtin_sym_end] = ACTIONS(4273), - [sym_identifier] = ACTIONS(4275), - [anon_sym_LF] = ACTIONS(4275), - [anon_sym_CR] = ACTIONS(4275), - [anon_sym_CR_LF] = ACTIONS(4275), + [ts_builtin_sym_end] = ACTIONS(3048), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LF] = ACTIONS(3050), + [anon_sym_CR] = ACTIONS(3050), + [anon_sym_CR_LF] = ACTIONS(3050), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_const] = ACTIONS(4275), - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym___global] = ACTIONS(4275), - [anon_sym_type] = ACTIONS(4275), - [anon_sym_fn] = ACTIONS(4275), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(4275), - [anon_sym_struct] = ACTIONS(4275), - [anon_sym_union] = ACTIONS(4275), - [anon_sym_pub] = ACTIONS(4275), - [anon_sym_mut] = ACTIONS(4275), - [anon_sym_enum] = ACTIONS(4275), - [anon_sym_interface] = ACTIONS(4275), - [anon_sym_QMARK] = ACTIONS(4275), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_go] = ACTIONS(4275), - [anon_sym_spawn] = ACTIONS(4275), - [anon_sym_json_DOTdecode] = ACTIONS(4275), - [anon_sym_LBRACK2] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(4275), - [anon_sym_CARET] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4275), - [anon_sym_LT_DASH] = ACTIONS(4275), - [sym_none] = ACTIONS(4275), - [sym_true] = ACTIONS(4275), - [sym_false] = ACTIONS(4275), - [sym_nil] = ACTIONS(4275), - [anon_sym_if] = ACTIONS(4275), - [anon_sym_DOLLARif] = ACTIONS(4275), - [anon_sym_match] = ACTIONS(4275), - [anon_sym_select] = ACTIONS(4275), - [anon_sym_lock] = ACTIONS(4275), - [anon_sym_rlock] = ACTIONS(4275), - [anon_sym_unsafe] = ACTIONS(4275), - [anon_sym_sql] = ACTIONS(4275), - [sym_int_literal] = ACTIONS(4275), - [sym_float_literal] = ACTIONS(4275), - [sym_rune_literal] = ACTIONS(4275), - [anon_sym_SQUOTE] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_c_SQUOTE] = ACTIONS(4275), - [anon_sym_c_DQUOTE] = ACTIONS(4275), - [anon_sym_r_SQUOTE] = ACTIONS(4275), - [anon_sym_r_DQUOTE] = ACTIONS(4275), - [sym_pseudo_compile_time_identifier] = ACTIONS(4275), - [anon_sym_shared] = ACTIONS(4275), - [anon_sym_map_LBRACK] = ACTIONS(4275), - [anon_sym_chan] = ACTIONS(4275), - [anon_sym_thread] = ACTIONS(4275), - [anon_sym_atomic] = ACTIONS(4275), - [anon_sym_assert] = ACTIONS(4275), - [anon_sym_defer] = ACTIONS(4275), - [anon_sym_goto] = ACTIONS(4275), - [anon_sym_break] = ACTIONS(4275), - [anon_sym_continue] = ACTIONS(4275), - [anon_sym_return] = ACTIONS(4275), - [anon_sym_DOLLARfor] = ACTIONS(4275), - [anon_sym_for] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_asm] = ACTIONS(4275), - [anon_sym_AT_LBRACK] = ACTIONS(4275), + [anon_sym_DOT] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_const] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym___global] = ACTIONS(3050), + [anon_sym_type] = ACTIONS(3050), + [anon_sym_fn] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_struct] = ACTIONS(3050), + [anon_sym_union] = ACTIONS(3050), + [anon_sym_pub] = ACTIONS(3050), + [anon_sym_mut] = ACTIONS(3050), + [anon_sym_enum] = ACTIONS(3050), + [anon_sym_interface] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_go] = ACTIONS(3050), + [anon_sym_spawn] = ACTIONS(3050), + [anon_sym_json_DOTdecode] = ACTIONS(3050), + [anon_sym_LBRACK2] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_CARET] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_LT_DASH] = ACTIONS(3050), + [sym_none] = ACTIONS(3050), + [sym_true] = ACTIONS(3050), + [sym_false] = ACTIONS(3050), + [sym_nil] = ACTIONS(3050), + [anon_sym_if] = ACTIONS(3050), + [anon_sym_DOLLARif] = ACTIONS(3050), + [anon_sym_match] = ACTIONS(3050), + [anon_sym_select] = ACTIONS(3050), + [anon_sym_lock] = ACTIONS(3050), + [anon_sym_rlock] = ACTIONS(3050), + [anon_sym_unsafe] = ACTIONS(3050), + [anon_sym_sql] = ACTIONS(3050), + [sym_int_literal] = ACTIONS(3050), + [sym_float_literal] = ACTIONS(3050), + [sym_rune_literal] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [anon_sym_c_SQUOTE] = ACTIONS(3050), + [anon_sym_c_DQUOTE] = ACTIONS(3050), + [anon_sym_r_SQUOTE] = ACTIONS(3050), + [anon_sym_r_DQUOTE] = ACTIONS(3050), + [sym_pseudo_compile_time_identifier] = ACTIONS(3050), + [anon_sym_shared] = ACTIONS(3050), + [anon_sym_map_LBRACK] = ACTIONS(3050), + [anon_sym_chan] = ACTIONS(3050), + [anon_sym_thread] = ACTIONS(3050), + [anon_sym_atomic] = ACTIONS(3050), + [anon_sym_assert] = ACTIONS(3050), + [anon_sym_defer] = ACTIONS(3050), + [anon_sym_goto] = ACTIONS(3050), + [anon_sym_break] = ACTIONS(3050), + [anon_sym_continue] = ACTIONS(3050), + [anon_sym_return] = ACTIONS(3050), + [anon_sym_DOLLARfor] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3050), + [anon_sym_POUND] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3050), + [anon_sym_AT_LBRACK] = ACTIONS(3050), }, [1511] = { [sym_line_comment] = STATE(1511), [sym_block_comment] = STATE(1511), - [ts_builtin_sym_end] = ACTIONS(4277), - [sym_identifier] = ACTIONS(4279), - [anon_sym_LF] = ACTIONS(4279), - [anon_sym_CR] = ACTIONS(4279), - [anon_sym_CR_LF] = ACTIONS(4279), + [ts_builtin_sym_end] = ACTIONS(3068), + [sym_identifier] = ACTIONS(3070), + [anon_sym_LF] = ACTIONS(3070), + [anon_sym_CR] = ACTIONS(3070), + [anon_sym_CR_LF] = ACTIONS(3070), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4279), - [anon_sym_LBRACE] = ACTIONS(4279), - [anon_sym_const] = ACTIONS(4279), - [anon_sym_LPAREN] = ACTIONS(4279), - [anon_sym___global] = ACTIONS(4279), - [anon_sym_type] = ACTIONS(4279), - [anon_sym_fn] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4279), - [anon_sym_struct] = ACTIONS(4279), - [anon_sym_union] = ACTIONS(4279), - [anon_sym_pub] = ACTIONS(4279), - [anon_sym_mut] = ACTIONS(4279), - [anon_sym_enum] = ACTIONS(4279), - [anon_sym_interface] = ACTIONS(4279), - [anon_sym_QMARK] = ACTIONS(4279), - [anon_sym_BANG] = ACTIONS(4279), - [anon_sym_go] = ACTIONS(4279), - [anon_sym_spawn] = ACTIONS(4279), - [anon_sym_json_DOTdecode] = ACTIONS(4279), - [anon_sym_LBRACK2] = ACTIONS(4279), - [anon_sym_TILDE] = ACTIONS(4279), - [anon_sym_CARET] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(4279), - [anon_sym_LT_DASH] = ACTIONS(4279), - [sym_none] = ACTIONS(4279), - [sym_true] = ACTIONS(4279), - [sym_false] = ACTIONS(4279), - [sym_nil] = ACTIONS(4279), - [anon_sym_if] = ACTIONS(4279), - [anon_sym_DOLLARif] = ACTIONS(4279), - [anon_sym_match] = ACTIONS(4279), - [anon_sym_select] = ACTIONS(4279), - [anon_sym_lock] = ACTIONS(4279), - [anon_sym_rlock] = ACTIONS(4279), - [anon_sym_unsafe] = ACTIONS(4279), - [anon_sym_sql] = ACTIONS(4279), - [sym_int_literal] = ACTIONS(4279), - [sym_float_literal] = ACTIONS(4279), - [sym_rune_literal] = ACTIONS(4279), - [anon_sym_SQUOTE] = ACTIONS(4279), - [anon_sym_DQUOTE] = ACTIONS(4279), - [anon_sym_c_SQUOTE] = ACTIONS(4279), - [anon_sym_c_DQUOTE] = ACTIONS(4279), - [anon_sym_r_SQUOTE] = ACTIONS(4279), - [anon_sym_r_DQUOTE] = ACTIONS(4279), - [sym_pseudo_compile_time_identifier] = ACTIONS(4279), - [anon_sym_shared] = ACTIONS(4279), - [anon_sym_map_LBRACK] = ACTIONS(4279), - [anon_sym_chan] = ACTIONS(4279), - [anon_sym_thread] = ACTIONS(4279), - [anon_sym_atomic] = ACTIONS(4279), - [anon_sym_assert] = ACTIONS(4279), - [anon_sym_defer] = ACTIONS(4279), - [anon_sym_goto] = ACTIONS(4279), - [anon_sym_break] = ACTIONS(4279), - [anon_sym_continue] = ACTIONS(4279), - [anon_sym_return] = ACTIONS(4279), - [anon_sym_DOLLARfor] = ACTIONS(4279), - [anon_sym_for] = ACTIONS(4279), - [anon_sym_POUND] = ACTIONS(4279), - [anon_sym_asm] = ACTIONS(4279), - [anon_sym_AT_LBRACK] = ACTIONS(4279), + [anon_sym_DOT] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(3070), + [anon_sym_const] = ACTIONS(3070), + [anon_sym_LPAREN] = ACTIONS(3070), + [anon_sym___global] = ACTIONS(3070), + [anon_sym_type] = ACTIONS(3070), + [anon_sym_fn] = ACTIONS(3070), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(3070), + [anon_sym_struct] = ACTIONS(3070), + [anon_sym_union] = ACTIONS(3070), + [anon_sym_pub] = ACTIONS(3070), + [anon_sym_mut] = ACTIONS(3070), + [anon_sym_enum] = ACTIONS(3070), + [anon_sym_interface] = ACTIONS(3070), + [anon_sym_QMARK] = ACTIONS(3070), + [anon_sym_BANG] = ACTIONS(3070), + [anon_sym_go] = ACTIONS(3070), + [anon_sym_spawn] = ACTIONS(3070), + [anon_sym_json_DOTdecode] = ACTIONS(3070), + [anon_sym_LBRACK2] = ACTIONS(3070), + [anon_sym_TILDE] = ACTIONS(3070), + [anon_sym_CARET] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT_DASH] = ACTIONS(3070), + [sym_none] = ACTIONS(3070), + [sym_true] = ACTIONS(3070), + [sym_false] = ACTIONS(3070), + [sym_nil] = ACTIONS(3070), + [anon_sym_if] = ACTIONS(3070), + [anon_sym_DOLLARif] = ACTIONS(3070), + [anon_sym_match] = ACTIONS(3070), + [anon_sym_select] = ACTIONS(3070), + [anon_sym_lock] = ACTIONS(3070), + [anon_sym_rlock] = ACTIONS(3070), + [anon_sym_unsafe] = ACTIONS(3070), + [anon_sym_sql] = ACTIONS(3070), + [sym_int_literal] = ACTIONS(3070), + [sym_float_literal] = ACTIONS(3070), + [sym_rune_literal] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_c_SQUOTE] = ACTIONS(3070), + [anon_sym_c_DQUOTE] = ACTIONS(3070), + [anon_sym_r_SQUOTE] = ACTIONS(3070), + [anon_sym_r_DQUOTE] = ACTIONS(3070), + [sym_pseudo_compile_time_identifier] = ACTIONS(3070), + [anon_sym_shared] = ACTIONS(3070), + [anon_sym_map_LBRACK] = ACTIONS(3070), + [anon_sym_chan] = ACTIONS(3070), + [anon_sym_thread] = ACTIONS(3070), + [anon_sym_atomic] = ACTIONS(3070), + [anon_sym_assert] = ACTIONS(3070), + [anon_sym_defer] = ACTIONS(3070), + [anon_sym_goto] = ACTIONS(3070), + [anon_sym_break] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(3070), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_DOLLARfor] = ACTIONS(3070), + [anon_sym_for] = ACTIONS(3070), + [anon_sym_POUND] = ACTIONS(3070), + [anon_sym_asm] = ACTIONS(3070), + [anon_sym_AT_LBRACK] = ACTIONS(3070), }, [1512] = { [sym_line_comment] = STATE(1512), [sym_block_comment] = STATE(1512), - [ts_builtin_sym_end] = ACTIONS(4281), - [sym_identifier] = ACTIONS(4283), - [anon_sym_LF] = ACTIONS(4283), - [anon_sym_CR] = ACTIONS(4283), - [anon_sym_CR_LF] = ACTIONS(4283), + [ts_builtin_sym_end] = ACTIONS(3056), + [sym_identifier] = ACTIONS(3058), + [anon_sym_LF] = ACTIONS(3058), + [anon_sym_CR] = ACTIONS(3058), + [anon_sym_CR_LF] = ACTIONS(3058), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4283), - [anon_sym_const] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym___global] = ACTIONS(4283), - [anon_sym_type] = ACTIONS(4283), - [anon_sym_fn] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_STAR] = ACTIONS(4283), - [anon_sym_struct] = ACTIONS(4283), - [anon_sym_union] = ACTIONS(4283), - [anon_sym_pub] = ACTIONS(4283), - [anon_sym_mut] = ACTIONS(4283), - [anon_sym_enum] = ACTIONS(4283), - [anon_sym_interface] = ACTIONS(4283), - [anon_sym_QMARK] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4283), - [anon_sym_go] = ACTIONS(4283), - [anon_sym_spawn] = ACTIONS(4283), - [anon_sym_json_DOTdecode] = ACTIONS(4283), - [anon_sym_LBRACK2] = ACTIONS(4283), - [anon_sym_TILDE] = ACTIONS(4283), - [anon_sym_CARET] = ACTIONS(4283), - [anon_sym_AMP] = ACTIONS(4283), - [anon_sym_LT_DASH] = ACTIONS(4283), - [sym_none] = ACTIONS(4283), - [sym_true] = ACTIONS(4283), - [sym_false] = ACTIONS(4283), - [sym_nil] = ACTIONS(4283), - [anon_sym_if] = ACTIONS(4283), - [anon_sym_DOLLARif] = ACTIONS(4283), - [anon_sym_match] = ACTIONS(4283), - [anon_sym_select] = ACTIONS(4283), - [anon_sym_lock] = ACTIONS(4283), - [anon_sym_rlock] = ACTIONS(4283), - [anon_sym_unsafe] = ACTIONS(4283), - [anon_sym_sql] = ACTIONS(4283), - [sym_int_literal] = ACTIONS(4283), - [sym_float_literal] = ACTIONS(4283), - [sym_rune_literal] = ACTIONS(4283), - [anon_sym_SQUOTE] = ACTIONS(4283), - [anon_sym_DQUOTE] = ACTIONS(4283), - [anon_sym_c_SQUOTE] = ACTIONS(4283), - [anon_sym_c_DQUOTE] = ACTIONS(4283), - [anon_sym_r_SQUOTE] = ACTIONS(4283), - [anon_sym_r_DQUOTE] = ACTIONS(4283), - [sym_pseudo_compile_time_identifier] = ACTIONS(4283), - [anon_sym_shared] = ACTIONS(4283), - [anon_sym_map_LBRACK] = ACTIONS(4283), - [anon_sym_chan] = ACTIONS(4283), - [anon_sym_thread] = ACTIONS(4283), - [anon_sym_atomic] = ACTIONS(4283), - [anon_sym_assert] = ACTIONS(4283), - [anon_sym_defer] = ACTIONS(4283), - [anon_sym_goto] = ACTIONS(4283), - [anon_sym_break] = ACTIONS(4283), - [anon_sym_continue] = ACTIONS(4283), - [anon_sym_return] = ACTIONS(4283), - [anon_sym_DOLLARfor] = ACTIONS(4283), - [anon_sym_for] = ACTIONS(4283), - [anon_sym_POUND] = ACTIONS(4283), - [anon_sym_asm] = ACTIONS(4283), - [anon_sym_AT_LBRACK] = ACTIONS(4283), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_const] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym___global] = ACTIONS(3058), + [anon_sym_type] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_struct] = ACTIONS(3058), + [anon_sym_union] = ACTIONS(3058), + [anon_sym_pub] = ACTIONS(3058), + [anon_sym_mut] = ACTIONS(3058), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_interface] = ACTIONS(3058), + [anon_sym_QMARK] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_go] = ACTIONS(3058), + [anon_sym_spawn] = ACTIONS(3058), + [anon_sym_json_DOTdecode] = ACTIONS(3058), + [anon_sym_LBRACK2] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [anon_sym_CARET] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT_DASH] = ACTIONS(3058), + [sym_none] = ACTIONS(3058), + [sym_true] = ACTIONS(3058), + [sym_false] = ACTIONS(3058), + [sym_nil] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_DOLLARif] = ACTIONS(3058), + [anon_sym_match] = ACTIONS(3058), + [anon_sym_select] = ACTIONS(3058), + [anon_sym_lock] = ACTIONS(3058), + [anon_sym_rlock] = ACTIONS(3058), + [anon_sym_unsafe] = ACTIONS(3058), + [anon_sym_sql] = ACTIONS(3058), + [sym_int_literal] = ACTIONS(3058), + [sym_float_literal] = ACTIONS(3058), + [sym_rune_literal] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_c_SQUOTE] = ACTIONS(3058), + [anon_sym_c_DQUOTE] = ACTIONS(3058), + [anon_sym_r_SQUOTE] = ACTIONS(3058), + [anon_sym_r_DQUOTE] = ACTIONS(3058), + [sym_pseudo_compile_time_identifier] = ACTIONS(3058), + [anon_sym_shared] = ACTIONS(3058), + [anon_sym_map_LBRACK] = ACTIONS(3058), + [anon_sym_chan] = ACTIONS(3058), + [anon_sym_thread] = ACTIONS(3058), + [anon_sym_atomic] = ACTIONS(3058), + [anon_sym_assert] = ACTIONS(3058), + [anon_sym_defer] = ACTIONS(3058), + [anon_sym_goto] = ACTIONS(3058), + [anon_sym_break] = ACTIONS(3058), + [anon_sym_continue] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_DOLLARfor] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3058), + [anon_sym_POUND] = ACTIONS(3058), + [anon_sym_asm] = ACTIONS(3058), + [anon_sym_AT_LBRACK] = ACTIONS(3058), }, [1513] = { [sym_line_comment] = STATE(1513), [sym_block_comment] = STATE(1513), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(605), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(603), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_RPAREN] = ACTIONS(603), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_LT_EQ] = ACTIONS(603), - [anon_sym_GT_EQ] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_RBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [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(4285), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(603), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(603), - [anon_sym_GT_GT] = ACTIONS(607), - [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(607), - [anon_sym_QMARK_DOT] = ACTIONS(603), - [anon_sym_POUND_LBRACK] = ACTIONS(603), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(603), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(603), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(603), + [ts_builtin_sym_end] = ACTIONS(3040), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LF] = ACTIONS(3042), + [anon_sym_CR] = ACTIONS(3042), + [anon_sym_CR_LF] = ACTIONS(3042), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_const] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym___global] = ACTIONS(3042), + [anon_sym_type] = ACTIONS(3042), + [anon_sym_fn] = ACTIONS(3042), + [anon_sym_PLUS] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_struct] = ACTIONS(3042), + [anon_sym_union] = ACTIONS(3042), + [anon_sym_pub] = ACTIONS(3042), + [anon_sym_mut] = ACTIONS(3042), + [anon_sym_enum] = ACTIONS(3042), + [anon_sym_interface] = ACTIONS(3042), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(3042), + [anon_sym_go] = ACTIONS(3042), + [anon_sym_spawn] = ACTIONS(3042), + [anon_sym_json_DOTdecode] = ACTIONS(3042), + [anon_sym_LBRACK2] = ACTIONS(3042), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_CARET] = ACTIONS(3042), + [anon_sym_AMP] = ACTIONS(3042), + [anon_sym_LT_DASH] = ACTIONS(3042), + [sym_none] = ACTIONS(3042), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_nil] = ACTIONS(3042), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_DOLLARif] = ACTIONS(3042), + [anon_sym_match] = ACTIONS(3042), + [anon_sym_select] = ACTIONS(3042), + [anon_sym_lock] = ACTIONS(3042), + [anon_sym_rlock] = ACTIONS(3042), + [anon_sym_unsafe] = ACTIONS(3042), + [anon_sym_sql] = ACTIONS(3042), + [sym_int_literal] = ACTIONS(3042), + [sym_float_literal] = ACTIONS(3042), + [sym_rune_literal] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3042), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_c_SQUOTE] = ACTIONS(3042), + [anon_sym_c_DQUOTE] = ACTIONS(3042), + [anon_sym_r_SQUOTE] = ACTIONS(3042), + [anon_sym_r_DQUOTE] = ACTIONS(3042), + [sym_pseudo_compile_time_identifier] = ACTIONS(3042), + [anon_sym_shared] = ACTIONS(3042), + [anon_sym_map_LBRACK] = ACTIONS(3042), + [anon_sym_chan] = ACTIONS(3042), + [anon_sym_thread] = ACTIONS(3042), + [anon_sym_atomic] = ACTIONS(3042), + [anon_sym_assert] = ACTIONS(3042), + [anon_sym_defer] = ACTIONS(3042), + [anon_sym_goto] = ACTIONS(3042), + [anon_sym_break] = ACTIONS(3042), + [anon_sym_continue] = ACTIONS(3042), + [anon_sym_return] = ACTIONS(3042), + [anon_sym_DOLLARfor] = ACTIONS(3042), + [anon_sym_for] = ACTIONS(3042), + [anon_sym_POUND] = ACTIONS(3042), + [anon_sym_asm] = ACTIONS(3042), + [anon_sym_AT_LBRACK] = ACTIONS(3042), }, [1514] = { [sym_line_comment] = STATE(1514), [sym_block_comment] = STATE(1514), - [ts_builtin_sym_end] = ACTIONS(4287), - [sym_identifier] = ACTIONS(4289), - [anon_sym_LF] = ACTIONS(4289), - [anon_sym_CR] = ACTIONS(4289), - [anon_sym_CR_LF] = ACTIONS(4289), + [ts_builtin_sym_end] = ACTIONS(4264), + [sym_identifier] = ACTIONS(4266), + [anon_sym_LF] = ACTIONS(4266), + [anon_sym_CR] = ACTIONS(4266), + [anon_sym_CR_LF] = ACTIONS(4266), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4289), - [anon_sym_LBRACE] = ACTIONS(4289), - [anon_sym_const] = ACTIONS(4289), - [anon_sym_LPAREN] = ACTIONS(4289), - [anon_sym___global] = ACTIONS(4289), - [anon_sym_type] = ACTIONS(4289), - [anon_sym_fn] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(4289), - [anon_sym_DASH] = ACTIONS(4289), - [anon_sym_STAR] = ACTIONS(4289), - [anon_sym_struct] = ACTIONS(4289), - [anon_sym_union] = ACTIONS(4289), - [anon_sym_pub] = ACTIONS(4289), - [anon_sym_mut] = ACTIONS(4289), - [anon_sym_enum] = ACTIONS(4289), - [anon_sym_interface] = ACTIONS(4289), - [anon_sym_QMARK] = ACTIONS(4289), - [anon_sym_BANG] = ACTIONS(4289), - [anon_sym_go] = ACTIONS(4289), - [anon_sym_spawn] = ACTIONS(4289), - [anon_sym_json_DOTdecode] = ACTIONS(4289), - [anon_sym_LBRACK2] = ACTIONS(4289), - [anon_sym_TILDE] = ACTIONS(4289), - [anon_sym_CARET] = ACTIONS(4289), - [anon_sym_AMP] = ACTIONS(4289), - [anon_sym_LT_DASH] = ACTIONS(4289), - [sym_none] = ACTIONS(4289), - [sym_true] = ACTIONS(4289), - [sym_false] = ACTIONS(4289), - [sym_nil] = ACTIONS(4289), - [anon_sym_if] = ACTIONS(4289), - [anon_sym_DOLLARif] = ACTIONS(4289), - [anon_sym_match] = ACTIONS(4289), - [anon_sym_select] = ACTIONS(4289), - [anon_sym_lock] = ACTIONS(4289), - [anon_sym_rlock] = ACTIONS(4289), - [anon_sym_unsafe] = ACTIONS(4289), - [anon_sym_sql] = ACTIONS(4289), - [sym_int_literal] = ACTIONS(4289), - [sym_float_literal] = ACTIONS(4289), - [sym_rune_literal] = ACTIONS(4289), - [anon_sym_SQUOTE] = ACTIONS(4289), - [anon_sym_DQUOTE] = ACTIONS(4289), - [anon_sym_c_SQUOTE] = ACTIONS(4289), - [anon_sym_c_DQUOTE] = ACTIONS(4289), - [anon_sym_r_SQUOTE] = ACTIONS(4289), - [anon_sym_r_DQUOTE] = ACTIONS(4289), - [sym_pseudo_compile_time_identifier] = ACTIONS(4289), - [anon_sym_shared] = ACTIONS(4289), - [anon_sym_map_LBRACK] = ACTIONS(4289), - [anon_sym_chan] = ACTIONS(4289), - [anon_sym_thread] = ACTIONS(4289), - [anon_sym_atomic] = ACTIONS(4289), - [anon_sym_assert] = ACTIONS(4289), - [anon_sym_defer] = ACTIONS(4289), - [anon_sym_goto] = ACTIONS(4289), - [anon_sym_break] = ACTIONS(4289), - [anon_sym_continue] = ACTIONS(4289), - [anon_sym_return] = ACTIONS(4289), - [anon_sym_DOLLARfor] = ACTIONS(4289), - [anon_sym_for] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(4289), - [anon_sym_asm] = ACTIONS(4289), - [anon_sym_AT_LBRACK] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4266), + [anon_sym_LBRACE] = ACTIONS(4266), + [anon_sym_const] = ACTIONS(4266), + [anon_sym_LPAREN] = ACTIONS(4266), + [anon_sym___global] = ACTIONS(4266), + [anon_sym_type] = ACTIONS(4266), + [anon_sym_fn] = ACTIONS(4266), + [anon_sym_PLUS] = ACTIONS(4266), + [anon_sym_DASH] = ACTIONS(4266), + [anon_sym_STAR] = ACTIONS(4266), + [anon_sym_struct] = ACTIONS(4266), + [anon_sym_union] = ACTIONS(4266), + [anon_sym_pub] = ACTIONS(4266), + [anon_sym_mut] = ACTIONS(4266), + [anon_sym_enum] = ACTIONS(4266), + [anon_sym_interface] = ACTIONS(4266), + [anon_sym_QMARK] = ACTIONS(4266), + [anon_sym_BANG] = ACTIONS(4266), + [anon_sym_go] = ACTIONS(4266), + [anon_sym_spawn] = ACTIONS(4266), + [anon_sym_json_DOTdecode] = ACTIONS(4266), + [anon_sym_LBRACK2] = ACTIONS(4266), + [anon_sym_TILDE] = ACTIONS(4266), + [anon_sym_CARET] = ACTIONS(4266), + [anon_sym_AMP] = ACTIONS(4266), + [anon_sym_LT_DASH] = ACTIONS(4266), + [sym_none] = ACTIONS(4266), + [sym_true] = ACTIONS(4266), + [sym_false] = ACTIONS(4266), + [sym_nil] = ACTIONS(4266), + [anon_sym_if] = ACTIONS(4266), + [anon_sym_DOLLARif] = ACTIONS(4266), + [anon_sym_match] = ACTIONS(4266), + [anon_sym_select] = ACTIONS(4266), + [anon_sym_lock] = ACTIONS(4266), + [anon_sym_rlock] = ACTIONS(4266), + [anon_sym_unsafe] = ACTIONS(4266), + [anon_sym_sql] = ACTIONS(4266), + [sym_int_literal] = ACTIONS(4266), + [sym_float_literal] = ACTIONS(4266), + [sym_rune_literal] = ACTIONS(4266), + [anon_sym_SQUOTE] = ACTIONS(4266), + [anon_sym_DQUOTE] = ACTIONS(4266), + [anon_sym_c_SQUOTE] = ACTIONS(4266), + [anon_sym_c_DQUOTE] = ACTIONS(4266), + [anon_sym_r_SQUOTE] = ACTIONS(4266), + [anon_sym_r_DQUOTE] = ACTIONS(4266), + [sym_pseudo_compile_time_identifier] = ACTIONS(4266), + [anon_sym_shared] = ACTIONS(4266), + [anon_sym_map_LBRACK] = ACTIONS(4266), + [anon_sym_chan] = ACTIONS(4266), + [anon_sym_thread] = ACTIONS(4266), + [anon_sym_atomic] = ACTIONS(4266), + [anon_sym_assert] = ACTIONS(4266), + [anon_sym_defer] = ACTIONS(4266), + [anon_sym_goto] = ACTIONS(4266), + [anon_sym_break] = ACTIONS(4266), + [anon_sym_continue] = ACTIONS(4266), + [anon_sym_return] = ACTIONS(4266), + [anon_sym_DOLLARfor] = ACTIONS(4266), + [anon_sym_for] = ACTIONS(4266), + [anon_sym_POUND] = ACTIONS(4266), + [anon_sym_asm] = ACTIONS(4266), + [anon_sym_AT_LBRACK] = ACTIONS(4266), }, [1515] = { [sym_line_comment] = STATE(1515), [sym_block_comment] = STATE(1515), - [ts_builtin_sym_end] = ACTIONS(4291), - [sym_identifier] = ACTIONS(4293), - [anon_sym_LF] = ACTIONS(4293), - [anon_sym_CR] = ACTIONS(4293), - [anon_sym_CR_LF] = ACTIONS(4293), + [ts_builtin_sym_end] = ACTIONS(3036), + [sym_identifier] = ACTIONS(3038), + [anon_sym_LF] = ACTIONS(3038), + [anon_sym_CR] = ACTIONS(3038), + [anon_sym_CR_LF] = ACTIONS(3038), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_LBRACE] = ACTIONS(4293), - [anon_sym_const] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym___global] = ACTIONS(4293), - [anon_sym_type] = ACTIONS(4293), - [anon_sym_fn] = ACTIONS(4293), - [anon_sym_PLUS] = ACTIONS(4293), - [anon_sym_DASH] = ACTIONS(4293), - [anon_sym_STAR] = ACTIONS(4293), - [anon_sym_struct] = ACTIONS(4293), - [anon_sym_union] = ACTIONS(4293), - [anon_sym_pub] = ACTIONS(4293), - [anon_sym_mut] = ACTIONS(4293), - [anon_sym_enum] = ACTIONS(4293), - [anon_sym_interface] = ACTIONS(4293), - [anon_sym_QMARK] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(4293), - [anon_sym_go] = ACTIONS(4293), - [anon_sym_spawn] = ACTIONS(4293), - [anon_sym_json_DOTdecode] = ACTIONS(4293), - [anon_sym_LBRACK2] = ACTIONS(4293), - [anon_sym_TILDE] = ACTIONS(4293), - [anon_sym_CARET] = ACTIONS(4293), - [anon_sym_AMP] = ACTIONS(4293), - [anon_sym_LT_DASH] = ACTIONS(4293), - [sym_none] = ACTIONS(4293), - [sym_true] = ACTIONS(4293), - [sym_false] = ACTIONS(4293), - [sym_nil] = ACTIONS(4293), - [anon_sym_if] = ACTIONS(4293), - [anon_sym_DOLLARif] = ACTIONS(4293), - [anon_sym_match] = ACTIONS(4293), - [anon_sym_select] = ACTIONS(4293), - [anon_sym_lock] = ACTIONS(4293), - [anon_sym_rlock] = ACTIONS(4293), - [anon_sym_unsafe] = ACTIONS(4293), - [anon_sym_sql] = ACTIONS(4293), - [sym_int_literal] = ACTIONS(4293), - [sym_float_literal] = ACTIONS(4293), - [sym_rune_literal] = ACTIONS(4293), - [anon_sym_SQUOTE] = ACTIONS(4293), - [anon_sym_DQUOTE] = ACTIONS(4293), - [anon_sym_c_SQUOTE] = ACTIONS(4293), - [anon_sym_c_DQUOTE] = ACTIONS(4293), - [anon_sym_r_SQUOTE] = ACTIONS(4293), - [anon_sym_r_DQUOTE] = ACTIONS(4293), - [sym_pseudo_compile_time_identifier] = ACTIONS(4293), - [anon_sym_shared] = ACTIONS(4293), - [anon_sym_map_LBRACK] = ACTIONS(4293), - [anon_sym_chan] = ACTIONS(4293), - [anon_sym_thread] = ACTIONS(4293), - [anon_sym_atomic] = ACTIONS(4293), - [anon_sym_assert] = ACTIONS(4293), - [anon_sym_defer] = ACTIONS(4293), - [anon_sym_goto] = ACTIONS(4293), - [anon_sym_break] = ACTIONS(4293), - [anon_sym_continue] = ACTIONS(4293), - [anon_sym_return] = ACTIONS(4293), - [anon_sym_DOLLARfor] = ACTIONS(4293), - [anon_sym_for] = ACTIONS(4293), - [anon_sym_POUND] = ACTIONS(4293), - [anon_sym_asm] = ACTIONS(4293), - [anon_sym_AT_LBRACK] = ACTIONS(4293), + [anon_sym_DOT] = ACTIONS(3038), + [anon_sym_LBRACE] = ACTIONS(3038), + [anon_sym_const] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym___global] = ACTIONS(3038), + [anon_sym_type] = ACTIONS(3038), + [anon_sym_fn] = ACTIONS(3038), + [anon_sym_PLUS] = ACTIONS(3038), + [anon_sym_DASH] = ACTIONS(3038), + [anon_sym_STAR] = ACTIONS(3038), + [anon_sym_struct] = ACTIONS(3038), + [anon_sym_union] = ACTIONS(3038), + [anon_sym_pub] = ACTIONS(3038), + [anon_sym_mut] = ACTIONS(3038), + [anon_sym_enum] = ACTIONS(3038), + [anon_sym_interface] = ACTIONS(3038), + [anon_sym_QMARK] = ACTIONS(3038), + [anon_sym_BANG] = ACTIONS(3038), + [anon_sym_go] = ACTIONS(3038), + [anon_sym_spawn] = ACTIONS(3038), + [anon_sym_json_DOTdecode] = ACTIONS(3038), + [anon_sym_LBRACK2] = ACTIONS(3038), + [anon_sym_TILDE] = ACTIONS(3038), + [anon_sym_CARET] = ACTIONS(3038), + [anon_sym_AMP] = ACTIONS(3038), + [anon_sym_LT_DASH] = ACTIONS(3038), + [sym_none] = ACTIONS(3038), + [sym_true] = ACTIONS(3038), + [sym_false] = ACTIONS(3038), + [sym_nil] = ACTIONS(3038), + [anon_sym_if] = ACTIONS(3038), + [anon_sym_DOLLARif] = ACTIONS(3038), + [anon_sym_match] = ACTIONS(3038), + [anon_sym_select] = ACTIONS(3038), + [anon_sym_lock] = ACTIONS(3038), + [anon_sym_rlock] = ACTIONS(3038), + [anon_sym_unsafe] = ACTIONS(3038), + [anon_sym_sql] = ACTIONS(3038), + [sym_int_literal] = ACTIONS(3038), + [sym_float_literal] = ACTIONS(3038), + [sym_rune_literal] = ACTIONS(3038), + [anon_sym_SQUOTE] = ACTIONS(3038), + [anon_sym_DQUOTE] = ACTIONS(3038), + [anon_sym_c_SQUOTE] = ACTIONS(3038), + [anon_sym_c_DQUOTE] = ACTIONS(3038), + [anon_sym_r_SQUOTE] = ACTIONS(3038), + [anon_sym_r_DQUOTE] = ACTIONS(3038), + [sym_pseudo_compile_time_identifier] = ACTIONS(3038), + [anon_sym_shared] = ACTIONS(3038), + [anon_sym_map_LBRACK] = ACTIONS(3038), + [anon_sym_chan] = ACTIONS(3038), + [anon_sym_thread] = ACTIONS(3038), + [anon_sym_atomic] = ACTIONS(3038), + [anon_sym_assert] = ACTIONS(3038), + [anon_sym_defer] = ACTIONS(3038), + [anon_sym_goto] = ACTIONS(3038), + [anon_sym_break] = ACTIONS(3038), + [anon_sym_continue] = ACTIONS(3038), + [anon_sym_return] = ACTIONS(3038), + [anon_sym_DOLLARfor] = ACTIONS(3038), + [anon_sym_for] = ACTIONS(3038), + [anon_sym_POUND] = ACTIONS(3038), + [anon_sym_asm] = ACTIONS(3038), + [anon_sym_AT_LBRACK] = ACTIONS(3038), }, [1516] = { [sym_line_comment] = STATE(1516), [sym_block_comment] = STATE(1516), - [ts_builtin_sym_end] = ACTIONS(4295), - [sym_identifier] = ACTIONS(4297), - [anon_sym_LF] = ACTIONS(4297), - [anon_sym_CR] = ACTIONS(4297), - [anon_sym_CR_LF] = ACTIONS(4297), + [ts_builtin_sym_end] = ACTIONS(4268), + [sym_identifier] = ACTIONS(4270), + [anon_sym_LF] = ACTIONS(4270), + [anon_sym_CR] = ACTIONS(4270), + [anon_sym_CR_LF] = ACTIONS(4270), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4297), - [anon_sym_const] = ACTIONS(4297), - [anon_sym_LPAREN] = ACTIONS(4297), - [anon_sym___global] = ACTIONS(4297), - [anon_sym_type] = ACTIONS(4297), - [anon_sym_fn] = ACTIONS(4297), - [anon_sym_PLUS] = ACTIONS(4297), - [anon_sym_DASH] = ACTIONS(4297), - [anon_sym_STAR] = ACTIONS(4297), - [anon_sym_struct] = ACTIONS(4297), - [anon_sym_union] = ACTIONS(4297), - [anon_sym_pub] = ACTIONS(4297), - [anon_sym_mut] = ACTIONS(4297), - [anon_sym_enum] = ACTIONS(4297), - [anon_sym_interface] = ACTIONS(4297), - [anon_sym_QMARK] = ACTIONS(4297), - [anon_sym_BANG] = ACTIONS(4297), - [anon_sym_go] = ACTIONS(4297), - [anon_sym_spawn] = ACTIONS(4297), - [anon_sym_json_DOTdecode] = ACTIONS(4297), - [anon_sym_LBRACK2] = ACTIONS(4297), - [anon_sym_TILDE] = ACTIONS(4297), - [anon_sym_CARET] = ACTIONS(4297), - [anon_sym_AMP] = ACTIONS(4297), - [anon_sym_LT_DASH] = ACTIONS(4297), - [sym_none] = ACTIONS(4297), - [sym_true] = ACTIONS(4297), - [sym_false] = ACTIONS(4297), - [sym_nil] = ACTIONS(4297), - [anon_sym_if] = ACTIONS(4297), - [anon_sym_DOLLARif] = ACTIONS(4297), - [anon_sym_match] = ACTIONS(4297), - [anon_sym_select] = ACTIONS(4297), - [anon_sym_lock] = ACTIONS(4297), - [anon_sym_rlock] = ACTIONS(4297), - [anon_sym_unsafe] = ACTIONS(4297), - [anon_sym_sql] = ACTIONS(4297), - [sym_int_literal] = ACTIONS(4297), - [sym_float_literal] = ACTIONS(4297), - [sym_rune_literal] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4297), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_c_SQUOTE] = ACTIONS(4297), - [anon_sym_c_DQUOTE] = ACTIONS(4297), - [anon_sym_r_SQUOTE] = ACTIONS(4297), - [anon_sym_r_DQUOTE] = ACTIONS(4297), - [sym_pseudo_compile_time_identifier] = ACTIONS(4297), - [anon_sym_shared] = ACTIONS(4297), - [anon_sym_map_LBRACK] = ACTIONS(4297), - [anon_sym_chan] = ACTIONS(4297), - [anon_sym_thread] = ACTIONS(4297), - [anon_sym_atomic] = ACTIONS(4297), - [anon_sym_assert] = ACTIONS(4297), - [anon_sym_defer] = ACTIONS(4297), - [anon_sym_goto] = ACTIONS(4297), - [anon_sym_break] = ACTIONS(4297), - [anon_sym_continue] = ACTIONS(4297), - [anon_sym_return] = ACTIONS(4297), - [anon_sym_DOLLARfor] = ACTIONS(4297), - [anon_sym_for] = ACTIONS(4297), - [anon_sym_POUND] = ACTIONS(4297), - [anon_sym_asm] = ACTIONS(4297), - [anon_sym_AT_LBRACK] = ACTIONS(4297), + [anon_sym_DOT] = ACTIONS(4270), + [anon_sym_LBRACE] = ACTIONS(4270), + [anon_sym_const] = ACTIONS(4270), + [anon_sym_LPAREN] = ACTIONS(4270), + [anon_sym___global] = ACTIONS(4270), + [anon_sym_type] = ACTIONS(4270), + [anon_sym_fn] = ACTIONS(4270), + [anon_sym_PLUS] = ACTIONS(4270), + [anon_sym_DASH] = ACTIONS(4270), + [anon_sym_STAR] = ACTIONS(4270), + [anon_sym_struct] = ACTIONS(4270), + [anon_sym_union] = ACTIONS(4270), + [anon_sym_pub] = ACTIONS(4270), + [anon_sym_mut] = ACTIONS(4270), + [anon_sym_enum] = ACTIONS(4270), + [anon_sym_interface] = ACTIONS(4270), + [anon_sym_QMARK] = ACTIONS(4270), + [anon_sym_BANG] = ACTIONS(4270), + [anon_sym_go] = ACTIONS(4270), + [anon_sym_spawn] = ACTIONS(4270), + [anon_sym_json_DOTdecode] = ACTIONS(4270), + [anon_sym_LBRACK2] = ACTIONS(4270), + [anon_sym_TILDE] = ACTIONS(4270), + [anon_sym_CARET] = ACTIONS(4270), + [anon_sym_AMP] = ACTIONS(4270), + [anon_sym_LT_DASH] = ACTIONS(4270), + [sym_none] = ACTIONS(4270), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [sym_nil] = ACTIONS(4270), + [anon_sym_if] = ACTIONS(4270), + [anon_sym_DOLLARif] = ACTIONS(4270), + [anon_sym_match] = ACTIONS(4270), + [anon_sym_select] = ACTIONS(4270), + [anon_sym_lock] = ACTIONS(4270), + [anon_sym_rlock] = ACTIONS(4270), + [anon_sym_unsafe] = ACTIONS(4270), + [anon_sym_sql] = ACTIONS(4270), + [sym_int_literal] = ACTIONS(4270), + [sym_float_literal] = ACTIONS(4270), + [sym_rune_literal] = ACTIONS(4270), + [anon_sym_SQUOTE] = ACTIONS(4270), + [anon_sym_DQUOTE] = ACTIONS(4270), + [anon_sym_c_SQUOTE] = ACTIONS(4270), + [anon_sym_c_DQUOTE] = ACTIONS(4270), + [anon_sym_r_SQUOTE] = ACTIONS(4270), + [anon_sym_r_DQUOTE] = ACTIONS(4270), + [sym_pseudo_compile_time_identifier] = ACTIONS(4270), + [anon_sym_shared] = ACTIONS(4270), + [anon_sym_map_LBRACK] = ACTIONS(4270), + [anon_sym_chan] = ACTIONS(4270), + [anon_sym_thread] = ACTIONS(4270), + [anon_sym_atomic] = ACTIONS(4270), + [anon_sym_assert] = ACTIONS(4270), + [anon_sym_defer] = ACTIONS(4270), + [anon_sym_goto] = ACTIONS(4270), + [anon_sym_break] = ACTIONS(4270), + [anon_sym_continue] = ACTIONS(4270), + [anon_sym_return] = ACTIONS(4270), + [anon_sym_DOLLARfor] = ACTIONS(4270), + [anon_sym_for] = ACTIONS(4270), + [anon_sym_POUND] = ACTIONS(4270), + [anon_sym_asm] = ACTIONS(4270), + [anon_sym_AT_LBRACK] = ACTIONS(4270), }, [1517] = { [sym_line_comment] = STATE(1517), [sym_block_comment] = STATE(1517), - [ts_builtin_sym_end] = ACTIONS(4299), - [sym_identifier] = ACTIONS(4301), - [anon_sym_LF] = ACTIONS(4301), - [anon_sym_CR] = ACTIONS(4301), - [anon_sym_CR_LF] = ACTIONS(4301), + [ts_builtin_sym_end] = ACTIONS(3028), + [sym_identifier] = ACTIONS(3030), + [anon_sym_LF] = ACTIONS(3030), + [anon_sym_CR] = ACTIONS(3030), + [anon_sym_CR_LF] = ACTIONS(3030), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_LBRACE] = ACTIONS(4301), - [anon_sym_const] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym___global] = ACTIONS(4301), - [anon_sym_type] = ACTIONS(4301), - [anon_sym_fn] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4301), - [anon_sym_DASH] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4301), - [anon_sym_struct] = ACTIONS(4301), - [anon_sym_union] = ACTIONS(4301), - [anon_sym_pub] = ACTIONS(4301), - [anon_sym_mut] = ACTIONS(4301), - [anon_sym_enum] = ACTIONS(4301), - [anon_sym_interface] = ACTIONS(4301), - [anon_sym_QMARK] = ACTIONS(4301), - [anon_sym_BANG] = ACTIONS(4301), - [anon_sym_go] = ACTIONS(4301), - [anon_sym_spawn] = ACTIONS(4301), - [anon_sym_json_DOTdecode] = ACTIONS(4301), - [anon_sym_LBRACK2] = ACTIONS(4301), - [anon_sym_TILDE] = ACTIONS(4301), - [anon_sym_CARET] = ACTIONS(4301), - [anon_sym_AMP] = ACTIONS(4301), - [anon_sym_LT_DASH] = ACTIONS(4301), - [sym_none] = ACTIONS(4301), - [sym_true] = ACTIONS(4301), - [sym_false] = ACTIONS(4301), - [sym_nil] = ACTIONS(4301), - [anon_sym_if] = ACTIONS(4301), - [anon_sym_DOLLARif] = ACTIONS(4301), - [anon_sym_match] = ACTIONS(4301), - [anon_sym_select] = ACTIONS(4301), - [anon_sym_lock] = ACTIONS(4301), - [anon_sym_rlock] = ACTIONS(4301), - [anon_sym_unsafe] = ACTIONS(4301), - [anon_sym_sql] = ACTIONS(4301), - [sym_int_literal] = ACTIONS(4301), - [sym_float_literal] = ACTIONS(4301), - [sym_rune_literal] = ACTIONS(4301), - [anon_sym_SQUOTE] = ACTIONS(4301), - [anon_sym_DQUOTE] = ACTIONS(4301), - [anon_sym_c_SQUOTE] = ACTIONS(4301), - [anon_sym_c_DQUOTE] = ACTIONS(4301), - [anon_sym_r_SQUOTE] = ACTIONS(4301), - [anon_sym_r_DQUOTE] = ACTIONS(4301), - [sym_pseudo_compile_time_identifier] = ACTIONS(4301), - [anon_sym_shared] = ACTIONS(4301), - [anon_sym_map_LBRACK] = ACTIONS(4301), - [anon_sym_chan] = ACTIONS(4301), - [anon_sym_thread] = ACTIONS(4301), - [anon_sym_atomic] = ACTIONS(4301), - [anon_sym_assert] = ACTIONS(4301), - [anon_sym_defer] = ACTIONS(4301), - [anon_sym_goto] = ACTIONS(4301), - [anon_sym_break] = ACTIONS(4301), - [anon_sym_continue] = ACTIONS(4301), - [anon_sym_return] = ACTIONS(4301), - [anon_sym_DOLLARfor] = ACTIONS(4301), - [anon_sym_for] = ACTIONS(4301), - [anon_sym_POUND] = ACTIONS(4301), - [anon_sym_asm] = ACTIONS(4301), - [anon_sym_AT_LBRACK] = ACTIONS(4301), + [anon_sym_DOT] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_const] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3030), + [anon_sym___global] = ACTIONS(3030), + [anon_sym_type] = ACTIONS(3030), + [anon_sym_fn] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_struct] = ACTIONS(3030), + [anon_sym_union] = ACTIONS(3030), + [anon_sym_pub] = ACTIONS(3030), + [anon_sym_mut] = ACTIONS(3030), + [anon_sym_enum] = ACTIONS(3030), + [anon_sym_interface] = ACTIONS(3030), + [anon_sym_QMARK] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_go] = ACTIONS(3030), + [anon_sym_spawn] = ACTIONS(3030), + [anon_sym_json_DOTdecode] = ACTIONS(3030), + [anon_sym_LBRACK2] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_CARET] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_LT_DASH] = ACTIONS(3030), + [sym_none] = ACTIONS(3030), + [sym_true] = ACTIONS(3030), + [sym_false] = ACTIONS(3030), + [sym_nil] = ACTIONS(3030), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_DOLLARif] = ACTIONS(3030), + [anon_sym_match] = ACTIONS(3030), + [anon_sym_select] = ACTIONS(3030), + [anon_sym_lock] = ACTIONS(3030), + [anon_sym_rlock] = ACTIONS(3030), + [anon_sym_unsafe] = ACTIONS(3030), + [anon_sym_sql] = ACTIONS(3030), + [sym_int_literal] = ACTIONS(3030), + [sym_float_literal] = ACTIONS(3030), + [sym_rune_literal] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [anon_sym_c_SQUOTE] = ACTIONS(3030), + [anon_sym_c_DQUOTE] = ACTIONS(3030), + [anon_sym_r_SQUOTE] = ACTIONS(3030), + [anon_sym_r_DQUOTE] = ACTIONS(3030), + [sym_pseudo_compile_time_identifier] = ACTIONS(3030), + [anon_sym_shared] = ACTIONS(3030), + [anon_sym_map_LBRACK] = ACTIONS(3030), + [anon_sym_chan] = ACTIONS(3030), + [anon_sym_thread] = ACTIONS(3030), + [anon_sym_atomic] = ACTIONS(3030), + [anon_sym_assert] = ACTIONS(3030), + [anon_sym_defer] = ACTIONS(3030), + [anon_sym_goto] = ACTIONS(3030), + [anon_sym_break] = ACTIONS(3030), + [anon_sym_continue] = ACTIONS(3030), + [anon_sym_return] = ACTIONS(3030), + [anon_sym_DOLLARfor] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3030), + [anon_sym_POUND] = ACTIONS(3030), + [anon_sym_asm] = ACTIONS(3030), + [anon_sym_AT_LBRACK] = ACTIONS(3030), }, [1518] = { [sym_line_comment] = STATE(1518), [sym_block_comment] = STATE(1518), - [ts_builtin_sym_end] = ACTIONS(4303), - [sym_identifier] = ACTIONS(4305), - [anon_sym_LF] = ACTIONS(4305), - [anon_sym_CR] = ACTIONS(4305), - [anon_sym_CR_LF] = ACTIONS(4305), + [ts_builtin_sym_end] = ACTIONS(3024), + [sym_identifier] = ACTIONS(3026), + [anon_sym_LF] = ACTIONS(3026), + [anon_sym_CR] = ACTIONS(3026), + [anon_sym_CR_LF] = ACTIONS(3026), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4305), - [anon_sym_LBRACE] = ACTIONS(4305), - [anon_sym_const] = ACTIONS(4305), - [anon_sym_LPAREN] = ACTIONS(4305), - [anon_sym___global] = ACTIONS(4305), - [anon_sym_type] = ACTIONS(4305), - [anon_sym_fn] = ACTIONS(4305), - [anon_sym_PLUS] = ACTIONS(4305), - [anon_sym_DASH] = ACTIONS(4305), - [anon_sym_STAR] = ACTIONS(4305), - [anon_sym_struct] = ACTIONS(4305), - [anon_sym_union] = ACTIONS(4305), - [anon_sym_pub] = ACTIONS(4305), - [anon_sym_mut] = ACTIONS(4305), - [anon_sym_enum] = ACTIONS(4305), - [anon_sym_interface] = ACTIONS(4305), - [anon_sym_QMARK] = ACTIONS(4305), - [anon_sym_BANG] = ACTIONS(4305), - [anon_sym_go] = ACTIONS(4305), - [anon_sym_spawn] = ACTIONS(4305), - [anon_sym_json_DOTdecode] = ACTIONS(4305), - [anon_sym_LBRACK2] = ACTIONS(4305), - [anon_sym_TILDE] = ACTIONS(4305), - [anon_sym_CARET] = ACTIONS(4305), - [anon_sym_AMP] = ACTIONS(4305), - [anon_sym_LT_DASH] = ACTIONS(4305), - [sym_none] = ACTIONS(4305), - [sym_true] = ACTIONS(4305), - [sym_false] = ACTIONS(4305), - [sym_nil] = ACTIONS(4305), - [anon_sym_if] = ACTIONS(4305), - [anon_sym_DOLLARif] = ACTIONS(4305), - [anon_sym_match] = ACTIONS(4305), - [anon_sym_select] = ACTIONS(4305), - [anon_sym_lock] = ACTIONS(4305), - [anon_sym_rlock] = ACTIONS(4305), - [anon_sym_unsafe] = ACTIONS(4305), - [anon_sym_sql] = ACTIONS(4305), - [sym_int_literal] = ACTIONS(4305), - [sym_float_literal] = ACTIONS(4305), - [sym_rune_literal] = ACTIONS(4305), - [anon_sym_SQUOTE] = ACTIONS(4305), - [anon_sym_DQUOTE] = ACTIONS(4305), - [anon_sym_c_SQUOTE] = ACTIONS(4305), - [anon_sym_c_DQUOTE] = ACTIONS(4305), - [anon_sym_r_SQUOTE] = ACTIONS(4305), - [anon_sym_r_DQUOTE] = ACTIONS(4305), - [sym_pseudo_compile_time_identifier] = ACTIONS(4305), - [anon_sym_shared] = ACTIONS(4305), - [anon_sym_map_LBRACK] = ACTIONS(4305), - [anon_sym_chan] = ACTIONS(4305), - [anon_sym_thread] = ACTIONS(4305), - [anon_sym_atomic] = ACTIONS(4305), - [anon_sym_assert] = ACTIONS(4305), - [anon_sym_defer] = ACTIONS(4305), - [anon_sym_goto] = ACTIONS(4305), - [anon_sym_break] = ACTIONS(4305), - [anon_sym_continue] = ACTIONS(4305), - [anon_sym_return] = ACTIONS(4305), - [anon_sym_DOLLARfor] = ACTIONS(4305), - [anon_sym_for] = ACTIONS(4305), - [anon_sym_POUND] = ACTIONS(4305), - [anon_sym_asm] = ACTIONS(4305), - [anon_sym_AT_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(3026), + [anon_sym_LBRACE] = ACTIONS(3026), + [anon_sym_const] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3026), + [anon_sym___global] = ACTIONS(3026), + [anon_sym_type] = ACTIONS(3026), + [anon_sym_fn] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3026), + [anon_sym_union] = ACTIONS(3026), + [anon_sym_pub] = ACTIONS(3026), + [anon_sym_mut] = ACTIONS(3026), + [anon_sym_enum] = ACTIONS(3026), + [anon_sym_interface] = ACTIONS(3026), + [anon_sym_QMARK] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_go] = ACTIONS(3026), + [anon_sym_spawn] = ACTIONS(3026), + [anon_sym_json_DOTdecode] = ACTIONS(3026), + [anon_sym_LBRACK2] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3026), + [anon_sym_CARET] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_LT_DASH] = ACTIONS(3026), + [sym_none] = ACTIONS(3026), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_nil] = ACTIONS(3026), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_DOLLARif] = ACTIONS(3026), + [anon_sym_match] = ACTIONS(3026), + [anon_sym_select] = ACTIONS(3026), + [anon_sym_lock] = ACTIONS(3026), + [anon_sym_rlock] = ACTIONS(3026), + [anon_sym_unsafe] = ACTIONS(3026), + [anon_sym_sql] = ACTIONS(3026), + [sym_int_literal] = ACTIONS(3026), + [sym_float_literal] = ACTIONS(3026), + [sym_rune_literal] = ACTIONS(3026), + [anon_sym_SQUOTE] = ACTIONS(3026), + [anon_sym_DQUOTE] = ACTIONS(3026), + [anon_sym_c_SQUOTE] = ACTIONS(3026), + [anon_sym_c_DQUOTE] = ACTIONS(3026), + [anon_sym_r_SQUOTE] = ACTIONS(3026), + [anon_sym_r_DQUOTE] = ACTIONS(3026), + [sym_pseudo_compile_time_identifier] = ACTIONS(3026), + [anon_sym_shared] = ACTIONS(3026), + [anon_sym_map_LBRACK] = ACTIONS(3026), + [anon_sym_chan] = ACTIONS(3026), + [anon_sym_thread] = ACTIONS(3026), + [anon_sym_atomic] = ACTIONS(3026), + [anon_sym_assert] = ACTIONS(3026), + [anon_sym_defer] = ACTIONS(3026), + [anon_sym_goto] = ACTIONS(3026), + [anon_sym_break] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(3026), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_DOLLARfor] = ACTIONS(3026), + [anon_sym_for] = ACTIONS(3026), + [anon_sym_POUND] = ACTIONS(3026), + [anon_sym_asm] = ACTIONS(3026), + [anon_sym_AT_LBRACK] = ACTIONS(3026), }, [1519] = { [sym_line_comment] = STATE(1519), [sym_block_comment] = STATE(1519), - [ts_builtin_sym_end] = ACTIONS(4307), - [sym_identifier] = ACTIONS(4309), - [anon_sym_LF] = ACTIONS(4309), - [anon_sym_CR] = ACTIONS(4309), - [anon_sym_CR_LF] = ACTIONS(4309), + [ts_builtin_sym_end] = ACTIONS(3020), + [sym_identifier] = ACTIONS(3022), + [anon_sym_LF] = ACTIONS(3022), + [anon_sym_CR] = ACTIONS(3022), + [anon_sym_CR_LF] = ACTIONS(3022), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4309), - [anon_sym_LBRACE] = ACTIONS(4309), - [anon_sym_const] = ACTIONS(4309), - [anon_sym_LPAREN] = ACTIONS(4309), - [anon_sym___global] = ACTIONS(4309), - [anon_sym_type] = ACTIONS(4309), - [anon_sym_fn] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4309), - [anon_sym_DASH] = ACTIONS(4309), - [anon_sym_STAR] = ACTIONS(4309), - [anon_sym_struct] = ACTIONS(4309), - [anon_sym_union] = ACTIONS(4309), - [anon_sym_pub] = ACTIONS(4309), - [anon_sym_mut] = ACTIONS(4309), - [anon_sym_enum] = ACTIONS(4309), - [anon_sym_interface] = ACTIONS(4309), - [anon_sym_QMARK] = ACTIONS(4309), - [anon_sym_BANG] = ACTIONS(4309), - [anon_sym_go] = ACTIONS(4309), - [anon_sym_spawn] = ACTIONS(4309), - [anon_sym_json_DOTdecode] = ACTIONS(4309), - [anon_sym_LBRACK2] = ACTIONS(4309), - [anon_sym_TILDE] = ACTIONS(4309), - [anon_sym_CARET] = ACTIONS(4309), - [anon_sym_AMP] = ACTIONS(4309), - [anon_sym_LT_DASH] = ACTIONS(4309), - [sym_none] = ACTIONS(4309), - [sym_true] = ACTIONS(4309), - [sym_false] = ACTIONS(4309), - [sym_nil] = ACTIONS(4309), - [anon_sym_if] = ACTIONS(4309), - [anon_sym_DOLLARif] = ACTIONS(4309), - [anon_sym_match] = ACTIONS(4309), - [anon_sym_select] = ACTIONS(4309), - [anon_sym_lock] = ACTIONS(4309), - [anon_sym_rlock] = ACTIONS(4309), - [anon_sym_unsafe] = ACTIONS(4309), - [anon_sym_sql] = ACTIONS(4309), - [sym_int_literal] = ACTIONS(4309), - [sym_float_literal] = ACTIONS(4309), - [sym_rune_literal] = ACTIONS(4309), - [anon_sym_SQUOTE] = ACTIONS(4309), - [anon_sym_DQUOTE] = ACTIONS(4309), - [anon_sym_c_SQUOTE] = ACTIONS(4309), - [anon_sym_c_DQUOTE] = ACTIONS(4309), - [anon_sym_r_SQUOTE] = ACTIONS(4309), - [anon_sym_r_DQUOTE] = ACTIONS(4309), - [sym_pseudo_compile_time_identifier] = ACTIONS(4309), - [anon_sym_shared] = ACTIONS(4309), - [anon_sym_map_LBRACK] = ACTIONS(4309), - [anon_sym_chan] = ACTIONS(4309), - [anon_sym_thread] = ACTIONS(4309), - [anon_sym_atomic] = ACTIONS(4309), - [anon_sym_assert] = ACTIONS(4309), - [anon_sym_defer] = ACTIONS(4309), - [anon_sym_goto] = ACTIONS(4309), - [anon_sym_break] = ACTIONS(4309), - [anon_sym_continue] = ACTIONS(4309), - [anon_sym_return] = ACTIONS(4309), - [anon_sym_DOLLARfor] = ACTIONS(4309), - [anon_sym_for] = ACTIONS(4309), - [anon_sym_POUND] = ACTIONS(4309), - [anon_sym_asm] = ACTIONS(4309), - [anon_sym_AT_LBRACK] = ACTIONS(4309), + [anon_sym_DOT] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3022), + [anon_sym_const] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym___global] = ACTIONS(3022), + [anon_sym_type] = ACTIONS(3022), + [anon_sym_fn] = ACTIONS(3022), + [anon_sym_PLUS] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(3022), + [anon_sym_struct] = ACTIONS(3022), + [anon_sym_union] = ACTIONS(3022), + [anon_sym_pub] = ACTIONS(3022), + [anon_sym_mut] = ACTIONS(3022), + [anon_sym_enum] = ACTIONS(3022), + [anon_sym_interface] = ACTIONS(3022), + [anon_sym_QMARK] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_go] = ACTIONS(3022), + [anon_sym_spawn] = ACTIONS(3022), + [anon_sym_json_DOTdecode] = ACTIONS(3022), + [anon_sym_LBRACK2] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3022), + [anon_sym_CARET] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3022), + [anon_sym_LT_DASH] = ACTIONS(3022), + [sym_none] = ACTIONS(3022), + [sym_true] = ACTIONS(3022), + [sym_false] = ACTIONS(3022), + [sym_nil] = ACTIONS(3022), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_DOLLARif] = ACTIONS(3022), + [anon_sym_match] = ACTIONS(3022), + [anon_sym_select] = ACTIONS(3022), + [anon_sym_lock] = ACTIONS(3022), + [anon_sym_rlock] = ACTIONS(3022), + [anon_sym_unsafe] = ACTIONS(3022), + [anon_sym_sql] = ACTIONS(3022), + [sym_int_literal] = ACTIONS(3022), + [sym_float_literal] = ACTIONS(3022), + [sym_rune_literal] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_c_SQUOTE] = ACTIONS(3022), + [anon_sym_c_DQUOTE] = ACTIONS(3022), + [anon_sym_r_SQUOTE] = ACTIONS(3022), + [anon_sym_r_DQUOTE] = ACTIONS(3022), + [sym_pseudo_compile_time_identifier] = ACTIONS(3022), + [anon_sym_shared] = ACTIONS(3022), + [anon_sym_map_LBRACK] = ACTIONS(3022), + [anon_sym_chan] = ACTIONS(3022), + [anon_sym_thread] = ACTIONS(3022), + [anon_sym_atomic] = ACTIONS(3022), + [anon_sym_assert] = ACTIONS(3022), + [anon_sym_defer] = ACTIONS(3022), + [anon_sym_goto] = ACTIONS(3022), + [anon_sym_break] = ACTIONS(3022), + [anon_sym_continue] = ACTIONS(3022), + [anon_sym_return] = ACTIONS(3022), + [anon_sym_DOLLARfor] = ACTIONS(3022), + [anon_sym_for] = ACTIONS(3022), + [anon_sym_POUND] = ACTIONS(3022), + [anon_sym_asm] = ACTIONS(3022), + [anon_sym_AT_LBRACK] = ACTIONS(3022), }, [1520] = { [sym_line_comment] = STATE(1520), [sym_block_comment] = STATE(1520), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2311), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(605), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(625), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(625), - [anon_sym_BANG_EQ] = ACTIONS(625), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_QMARK] = ACTIONS(627), - [anon_sym_BANG] = ACTIONS(627), - [anon_sym_LBRACK2] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(627), - [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(623), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(627), + [ts_builtin_sym_end] = ACTIONS(3008), + [sym_identifier] = ACTIONS(3010), + [anon_sym_LF] = ACTIONS(3010), + [anon_sym_CR] = ACTIONS(3010), + [anon_sym_CR_LF] = ACTIONS(3010), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3010), + [anon_sym_const] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3010), + [anon_sym___global] = ACTIONS(3010), + [anon_sym_type] = ACTIONS(3010), + [anon_sym_fn] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_struct] = ACTIONS(3010), + [anon_sym_union] = ACTIONS(3010), + [anon_sym_pub] = ACTIONS(3010), + [anon_sym_mut] = ACTIONS(3010), + [anon_sym_enum] = ACTIONS(3010), + [anon_sym_interface] = ACTIONS(3010), + [anon_sym_QMARK] = ACTIONS(3010), + [anon_sym_BANG] = ACTIONS(3010), + [anon_sym_go] = ACTIONS(3010), + [anon_sym_spawn] = ACTIONS(3010), + [anon_sym_json_DOTdecode] = ACTIONS(3010), + [anon_sym_LBRACK2] = ACTIONS(3010), + [anon_sym_TILDE] = ACTIONS(3010), + [anon_sym_CARET] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3010), + [anon_sym_LT_DASH] = ACTIONS(3010), + [sym_none] = ACTIONS(3010), + [sym_true] = ACTIONS(3010), + [sym_false] = ACTIONS(3010), + [sym_nil] = ACTIONS(3010), + [anon_sym_if] = ACTIONS(3010), + [anon_sym_DOLLARif] = ACTIONS(3010), + [anon_sym_match] = ACTIONS(3010), + [anon_sym_select] = ACTIONS(3010), + [anon_sym_lock] = ACTIONS(3010), + [anon_sym_rlock] = ACTIONS(3010), + [anon_sym_unsafe] = ACTIONS(3010), + [anon_sym_sql] = ACTIONS(3010), + [sym_int_literal] = ACTIONS(3010), + [sym_float_literal] = ACTIONS(3010), + [sym_rune_literal] = ACTIONS(3010), + [anon_sym_SQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE] = ACTIONS(3010), + [anon_sym_c_SQUOTE] = ACTIONS(3010), + [anon_sym_c_DQUOTE] = ACTIONS(3010), + [anon_sym_r_SQUOTE] = ACTIONS(3010), + [anon_sym_r_DQUOTE] = ACTIONS(3010), + [sym_pseudo_compile_time_identifier] = ACTIONS(3010), + [anon_sym_shared] = ACTIONS(3010), + [anon_sym_map_LBRACK] = ACTIONS(3010), + [anon_sym_chan] = ACTIONS(3010), + [anon_sym_thread] = ACTIONS(3010), + [anon_sym_atomic] = ACTIONS(3010), + [anon_sym_assert] = ACTIONS(3010), + [anon_sym_defer] = ACTIONS(3010), + [anon_sym_goto] = ACTIONS(3010), + [anon_sym_break] = ACTIONS(3010), + [anon_sym_continue] = ACTIONS(3010), + [anon_sym_return] = ACTIONS(3010), + [anon_sym_DOLLARfor] = ACTIONS(3010), + [anon_sym_for] = ACTIONS(3010), + [anon_sym_POUND] = ACTIONS(3010), + [anon_sym_asm] = ACTIONS(3010), + [anon_sym_AT_LBRACK] = ACTIONS(3010), }, [1521] = { [sym_line_comment] = STATE(1521), [sym_block_comment] = STATE(1521), - [ts_builtin_sym_end] = ACTIONS(4311), - [sym_identifier] = ACTIONS(4313), - [anon_sym_LF] = ACTIONS(4313), - [anon_sym_CR] = ACTIONS(4313), - [anon_sym_CR_LF] = ACTIONS(4313), + [ts_builtin_sym_end] = ACTIONS(4272), + [sym_identifier] = ACTIONS(4274), + [anon_sym_LF] = ACTIONS(4274), + [anon_sym_CR] = ACTIONS(4274), + [anon_sym_CR_LF] = ACTIONS(4274), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4313), - [anon_sym_LBRACE] = ACTIONS(4313), - [anon_sym_const] = ACTIONS(4313), - [anon_sym_LPAREN] = ACTIONS(4313), - [anon_sym___global] = ACTIONS(4313), - [anon_sym_type] = ACTIONS(4313), - [anon_sym_fn] = ACTIONS(4313), - [anon_sym_PLUS] = ACTIONS(4313), - [anon_sym_DASH] = ACTIONS(4313), - [anon_sym_STAR] = ACTIONS(4313), - [anon_sym_struct] = ACTIONS(4313), - [anon_sym_union] = ACTIONS(4313), - [anon_sym_pub] = ACTIONS(4313), - [anon_sym_mut] = ACTIONS(4313), - [anon_sym_enum] = ACTIONS(4313), - [anon_sym_interface] = ACTIONS(4313), - [anon_sym_QMARK] = ACTIONS(4313), - [anon_sym_BANG] = ACTIONS(4313), - [anon_sym_go] = ACTIONS(4313), - [anon_sym_spawn] = ACTIONS(4313), - [anon_sym_json_DOTdecode] = ACTIONS(4313), - [anon_sym_LBRACK2] = ACTIONS(4313), - [anon_sym_TILDE] = ACTIONS(4313), - [anon_sym_CARET] = ACTIONS(4313), - [anon_sym_AMP] = ACTIONS(4313), - [anon_sym_LT_DASH] = ACTIONS(4313), - [sym_none] = ACTIONS(4313), - [sym_true] = ACTIONS(4313), - [sym_false] = ACTIONS(4313), - [sym_nil] = ACTIONS(4313), - [anon_sym_if] = ACTIONS(4313), - [anon_sym_DOLLARif] = ACTIONS(4313), - [anon_sym_match] = ACTIONS(4313), - [anon_sym_select] = ACTIONS(4313), - [anon_sym_lock] = ACTIONS(4313), - [anon_sym_rlock] = ACTIONS(4313), - [anon_sym_unsafe] = ACTIONS(4313), - [anon_sym_sql] = ACTIONS(4313), - [sym_int_literal] = ACTIONS(4313), - [sym_float_literal] = ACTIONS(4313), - [sym_rune_literal] = ACTIONS(4313), - [anon_sym_SQUOTE] = ACTIONS(4313), - [anon_sym_DQUOTE] = ACTIONS(4313), - [anon_sym_c_SQUOTE] = ACTIONS(4313), - [anon_sym_c_DQUOTE] = ACTIONS(4313), - [anon_sym_r_SQUOTE] = ACTIONS(4313), - [anon_sym_r_DQUOTE] = ACTIONS(4313), - [sym_pseudo_compile_time_identifier] = ACTIONS(4313), - [anon_sym_shared] = ACTIONS(4313), - [anon_sym_map_LBRACK] = ACTIONS(4313), - [anon_sym_chan] = ACTIONS(4313), - [anon_sym_thread] = ACTIONS(4313), - [anon_sym_atomic] = ACTIONS(4313), - [anon_sym_assert] = ACTIONS(4313), - [anon_sym_defer] = ACTIONS(4313), - [anon_sym_goto] = ACTIONS(4313), - [anon_sym_break] = ACTIONS(4313), - [anon_sym_continue] = ACTIONS(4313), - [anon_sym_return] = ACTIONS(4313), - [anon_sym_DOLLARfor] = ACTIONS(4313), - [anon_sym_for] = ACTIONS(4313), - [anon_sym_POUND] = ACTIONS(4313), - [anon_sym_asm] = ACTIONS(4313), - [anon_sym_AT_LBRACK] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(4274), + [anon_sym_const] = ACTIONS(4274), + [anon_sym_LPAREN] = ACTIONS(4274), + [anon_sym___global] = ACTIONS(4274), + [anon_sym_type] = ACTIONS(4274), + [anon_sym_fn] = ACTIONS(4274), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [anon_sym_struct] = ACTIONS(4274), + [anon_sym_union] = ACTIONS(4274), + [anon_sym_pub] = ACTIONS(4274), + [anon_sym_mut] = ACTIONS(4274), + [anon_sym_enum] = ACTIONS(4274), + [anon_sym_interface] = ACTIONS(4274), + [anon_sym_QMARK] = ACTIONS(4274), + [anon_sym_BANG] = ACTIONS(4274), + [anon_sym_go] = ACTIONS(4274), + [anon_sym_spawn] = ACTIONS(4274), + [anon_sym_json_DOTdecode] = ACTIONS(4274), + [anon_sym_LBRACK2] = ACTIONS(4274), + [anon_sym_TILDE] = ACTIONS(4274), + [anon_sym_CARET] = ACTIONS(4274), + [anon_sym_AMP] = ACTIONS(4274), + [anon_sym_LT_DASH] = ACTIONS(4274), + [sym_none] = ACTIONS(4274), + [sym_true] = ACTIONS(4274), + [sym_false] = ACTIONS(4274), + [sym_nil] = ACTIONS(4274), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_DOLLARif] = ACTIONS(4274), + [anon_sym_match] = ACTIONS(4274), + [anon_sym_select] = ACTIONS(4274), + [anon_sym_lock] = ACTIONS(4274), + [anon_sym_rlock] = ACTIONS(4274), + [anon_sym_unsafe] = ACTIONS(4274), + [anon_sym_sql] = ACTIONS(4274), + [sym_int_literal] = ACTIONS(4274), + [sym_float_literal] = ACTIONS(4274), + [sym_rune_literal] = ACTIONS(4274), + [anon_sym_SQUOTE] = ACTIONS(4274), + [anon_sym_DQUOTE] = ACTIONS(4274), + [anon_sym_c_SQUOTE] = ACTIONS(4274), + [anon_sym_c_DQUOTE] = ACTIONS(4274), + [anon_sym_r_SQUOTE] = ACTIONS(4274), + [anon_sym_r_DQUOTE] = ACTIONS(4274), + [sym_pseudo_compile_time_identifier] = ACTIONS(4274), + [anon_sym_shared] = ACTIONS(4274), + [anon_sym_map_LBRACK] = ACTIONS(4274), + [anon_sym_chan] = ACTIONS(4274), + [anon_sym_thread] = ACTIONS(4274), + [anon_sym_atomic] = ACTIONS(4274), + [anon_sym_assert] = ACTIONS(4274), + [anon_sym_defer] = ACTIONS(4274), + [anon_sym_goto] = ACTIONS(4274), + [anon_sym_break] = ACTIONS(4274), + [anon_sym_continue] = ACTIONS(4274), + [anon_sym_return] = ACTIONS(4274), + [anon_sym_DOLLARfor] = ACTIONS(4274), + [anon_sym_for] = ACTIONS(4274), + [anon_sym_POUND] = ACTIONS(4274), + [anon_sym_asm] = ACTIONS(4274), + [anon_sym_AT_LBRACK] = ACTIONS(4274), }, [1522] = { [sym_line_comment] = STATE(1522), [sym_block_comment] = STATE(1522), - [ts_builtin_sym_end] = ACTIONS(4315), - [sym_identifier] = ACTIONS(4317), - [anon_sym_LF] = ACTIONS(4317), - [anon_sym_CR] = ACTIONS(4317), - [anon_sym_CR_LF] = ACTIONS(4317), + [ts_builtin_sym_end] = ACTIONS(1943), + [sym_identifier] = ACTIONS(1945), + [anon_sym_LF] = ACTIONS(1945), + [anon_sym_CR] = ACTIONS(1945), + [anon_sym_CR_LF] = ACTIONS(1945), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4317), - [anon_sym_LBRACE] = ACTIONS(4317), - [anon_sym_const] = ACTIONS(4317), - [anon_sym_LPAREN] = ACTIONS(4317), - [anon_sym___global] = ACTIONS(4317), - [anon_sym_type] = ACTIONS(4317), - [anon_sym_fn] = ACTIONS(4317), - [anon_sym_PLUS] = ACTIONS(4317), - [anon_sym_DASH] = ACTIONS(4317), - [anon_sym_STAR] = ACTIONS(4317), - [anon_sym_struct] = ACTIONS(4317), - [anon_sym_union] = ACTIONS(4317), - [anon_sym_pub] = ACTIONS(4317), - [anon_sym_mut] = ACTIONS(4317), - [anon_sym_enum] = ACTIONS(4317), - [anon_sym_interface] = ACTIONS(4317), - [anon_sym_QMARK] = ACTIONS(4317), - [anon_sym_BANG] = ACTIONS(4317), - [anon_sym_go] = ACTIONS(4317), - [anon_sym_spawn] = ACTIONS(4317), - [anon_sym_json_DOTdecode] = ACTIONS(4317), - [anon_sym_LBRACK2] = ACTIONS(4317), - [anon_sym_TILDE] = ACTIONS(4317), - [anon_sym_CARET] = ACTIONS(4317), - [anon_sym_AMP] = ACTIONS(4317), - [anon_sym_LT_DASH] = ACTIONS(4317), - [sym_none] = ACTIONS(4317), - [sym_true] = ACTIONS(4317), - [sym_false] = ACTIONS(4317), - [sym_nil] = ACTIONS(4317), - [anon_sym_if] = ACTIONS(4317), - [anon_sym_DOLLARif] = ACTIONS(4317), - [anon_sym_match] = ACTIONS(4317), - [anon_sym_select] = ACTIONS(4317), - [anon_sym_lock] = ACTIONS(4317), - [anon_sym_rlock] = ACTIONS(4317), - [anon_sym_unsafe] = ACTIONS(4317), - [anon_sym_sql] = ACTIONS(4317), - [sym_int_literal] = ACTIONS(4317), - [sym_float_literal] = ACTIONS(4317), - [sym_rune_literal] = ACTIONS(4317), - [anon_sym_SQUOTE] = ACTIONS(4317), - [anon_sym_DQUOTE] = ACTIONS(4317), - [anon_sym_c_SQUOTE] = ACTIONS(4317), - [anon_sym_c_DQUOTE] = ACTIONS(4317), - [anon_sym_r_SQUOTE] = ACTIONS(4317), - [anon_sym_r_DQUOTE] = ACTIONS(4317), - [sym_pseudo_compile_time_identifier] = ACTIONS(4317), - [anon_sym_shared] = ACTIONS(4317), - [anon_sym_map_LBRACK] = ACTIONS(4317), - [anon_sym_chan] = ACTIONS(4317), - [anon_sym_thread] = ACTIONS(4317), - [anon_sym_atomic] = ACTIONS(4317), - [anon_sym_assert] = ACTIONS(4317), - [anon_sym_defer] = ACTIONS(4317), - [anon_sym_goto] = ACTIONS(4317), - [anon_sym_break] = ACTIONS(4317), - [anon_sym_continue] = ACTIONS(4317), - [anon_sym_return] = ACTIONS(4317), - [anon_sym_DOLLARfor] = ACTIONS(4317), - [anon_sym_for] = ACTIONS(4317), - [anon_sym_POUND] = ACTIONS(4317), - [anon_sym_asm] = ACTIONS(4317), - [anon_sym_AT_LBRACK] = ACTIONS(4317), + [anon_sym_DOT] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1945), + [anon_sym_const] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym___global] = ACTIONS(1945), + [anon_sym_type] = ACTIONS(1945), + [anon_sym_fn] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1945), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_struct] = ACTIONS(1945), + [anon_sym_union] = ACTIONS(1945), + [anon_sym_pub] = ACTIONS(1945), + [anon_sym_mut] = ACTIONS(1945), + [anon_sym_enum] = ACTIONS(1945), + [anon_sym_interface] = ACTIONS(1945), + [anon_sym_QMARK] = ACTIONS(1945), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_go] = ACTIONS(1945), + [anon_sym_spawn] = ACTIONS(1945), + [anon_sym_json_DOTdecode] = ACTIONS(1945), + [anon_sym_LBRACK2] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1945), + [anon_sym_LT_DASH] = ACTIONS(1945), + [sym_none] = ACTIONS(1945), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_nil] = ACTIONS(1945), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_DOLLARif] = ACTIONS(1945), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_select] = ACTIONS(1945), + [anon_sym_lock] = ACTIONS(1945), + [anon_sym_rlock] = ACTIONS(1945), + [anon_sym_unsafe] = ACTIONS(1945), + [anon_sym_sql] = ACTIONS(1945), + [sym_int_literal] = ACTIONS(1945), + [sym_float_literal] = ACTIONS(1945), + [sym_rune_literal] = ACTIONS(1945), + [anon_sym_SQUOTE] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(1945), + [anon_sym_c_SQUOTE] = ACTIONS(1945), + [anon_sym_c_DQUOTE] = ACTIONS(1945), + [anon_sym_r_SQUOTE] = ACTIONS(1945), + [anon_sym_r_DQUOTE] = ACTIONS(1945), + [sym_pseudo_compile_time_identifier] = ACTIONS(1945), + [anon_sym_shared] = ACTIONS(1945), + [anon_sym_map_LBRACK] = ACTIONS(1945), + [anon_sym_chan] = ACTIONS(1945), + [anon_sym_thread] = ACTIONS(1945), + [anon_sym_atomic] = ACTIONS(1945), + [anon_sym_assert] = ACTIONS(1945), + [anon_sym_defer] = ACTIONS(1945), + [anon_sym_goto] = ACTIONS(1945), + [anon_sym_break] = ACTIONS(1945), + [anon_sym_continue] = ACTIONS(1945), + [anon_sym_return] = ACTIONS(1945), + [anon_sym_DOLLARfor] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1945), + [anon_sym_POUND] = ACTIONS(1945), + [anon_sym_asm] = ACTIONS(1945), + [anon_sym_AT_LBRACK] = ACTIONS(1945), }, [1523] = { [sym_line_comment] = STATE(1523), [sym_block_comment] = STATE(1523), - [ts_builtin_sym_end] = ACTIONS(4319), - [sym_identifier] = ACTIONS(4321), - [anon_sym_LF] = ACTIONS(4321), - [anon_sym_CR] = ACTIONS(4321), - [anon_sym_CR_LF] = ACTIONS(4321), + [ts_builtin_sym_end] = ACTIONS(4276), + [sym_identifier] = ACTIONS(4278), + [anon_sym_LF] = ACTIONS(4278), + [anon_sym_CR] = ACTIONS(4278), + [anon_sym_CR_LF] = ACTIONS(4278), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4321), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_const] = ACTIONS(4321), - [anon_sym_LPAREN] = ACTIONS(4321), - [anon_sym___global] = ACTIONS(4321), - [anon_sym_type] = ACTIONS(4321), - [anon_sym_fn] = ACTIONS(4321), - [anon_sym_PLUS] = ACTIONS(4321), - [anon_sym_DASH] = ACTIONS(4321), - [anon_sym_STAR] = ACTIONS(4321), - [anon_sym_struct] = ACTIONS(4321), - [anon_sym_union] = ACTIONS(4321), - [anon_sym_pub] = ACTIONS(4321), - [anon_sym_mut] = ACTIONS(4321), - [anon_sym_enum] = ACTIONS(4321), - [anon_sym_interface] = ACTIONS(4321), - [anon_sym_QMARK] = ACTIONS(4321), - [anon_sym_BANG] = ACTIONS(4321), - [anon_sym_go] = ACTIONS(4321), - [anon_sym_spawn] = ACTIONS(4321), - [anon_sym_json_DOTdecode] = ACTIONS(4321), - [anon_sym_LBRACK2] = ACTIONS(4321), - [anon_sym_TILDE] = ACTIONS(4321), - [anon_sym_CARET] = ACTIONS(4321), - [anon_sym_AMP] = ACTIONS(4321), - [anon_sym_LT_DASH] = ACTIONS(4321), - [sym_none] = ACTIONS(4321), - [sym_true] = ACTIONS(4321), - [sym_false] = ACTIONS(4321), - [sym_nil] = ACTIONS(4321), - [anon_sym_if] = ACTIONS(4321), - [anon_sym_DOLLARif] = ACTIONS(4321), - [anon_sym_match] = ACTIONS(4321), - [anon_sym_select] = ACTIONS(4321), - [anon_sym_lock] = ACTIONS(4321), - [anon_sym_rlock] = ACTIONS(4321), - [anon_sym_unsafe] = ACTIONS(4321), - [anon_sym_sql] = ACTIONS(4321), - [sym_int_literal] = ACTIONS(4321), - [sym_float_literal] = ACTIONS(4321), - [sym_rune_literal] = ACTIONS(4321), - [anon_sym_SQUOTE] = ACTIONS(4321), - [anon_sym_DQUOTE] = ACTIONS(4321), - [anon_sym_c_SQUOTE] = ACTIONS(4321), - [anon_sym_c_DQUOTE] = ACTIONS(4321), - [anon_sym_r_SQUOTE] = ACTIONS(4321), - [anon_sym_r_DQUOTE] = ACTIONS(4321), - [sym_pseudo_compile_time_identifier] = ACTIONS(4321), - [anon_sym_shared] = ACTIONS(4321), - [anon_sym_map_LBRACK] = ACTIONS(4321), - [anon_sym_chan] = ACTIONS(4321), - [anon_sym_thread] = ACTIONS(4321), - [anon_sym_atomic] = ACTIONS(4321), - [anon_sym_assert] = ACTIONS(4321), - [anon_sym_defer] = ACTIONS(4321), - [anon_sym_goto] = ACTIONS(4321), - [anon_sym_break] = ACTIONS(4321), - [anon_sym_continue] = ACTIONS(4321), - [anon_sym_return] = ACTIONS(4321), - [anon_sym_DOLLARfor] = ACTIONS(4321), - [anon_sym_for] = ACTIONS(4321), - [anon_sym_POUND] = ACTIONS(4321), - [anon_sym_asm] = ACTIONS(4321), - [anon_sym_AT_LBRACK] = ACTIONS(4321), + [anon_sym_DOT] = ACTIONS(4278), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_const] = ACTIONS(4278), + [anon_sym_LPAREN] = ACTIONS(4278), + [anon_sym___global] = ACTIONS(4278), + [anon_sym_type] = ACTIONS(4278), + [anon_sym_fn] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4278), + [anon_sym_STAR] = ACTIONS(4278), + [anon_sym_struct] = ACTIONS(4278), + [anon_sym_union] = ACTIONS(4278), + [anon_sym_pub] = ACTIONS(4278), + [anon_sym_mut] = ACTIONS(4278), + [anon_sym_enum] = ACTIONS(4278), + [anon_sym_interface] = ACTIONS(4278), + [anon_sym_QMARK] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4278), + [anon_sym_go] = ACTIONS(4278), + [anon_sym_spawn] = ACTIONS(4278), + [anon_sym_json_DOTdecode] = ACTIONS(4278), + [anon_sym_LBRACK2] = ACTIONS(4278), + [anon_sym_TILDE] = ACTIONS(4278), + [anon_sym_CARET] = ACTIONS(4278), + [anon_sym_AMP] = ACTIONS(4278), + [anon_sym_LT_DASH] = ACTIONS(4278), + [sym_none] = ACTIONS(4278), + [sym_true] = ACTIONS(4278), + [sym_false] = ACTIONS(4278), + [sym_nil] = ACTIONS(4278), + [anon_sym_if] = ACTIONS(4278), + [anon_sym_DOLLARif] = ACTIONS(4278), + [anon_sym_match] = ACTIONS(4278), + [anon_sym_select] = ACTIONS(4278), + [anon_sym_lock] = ACTIONS(4278), + [anon_sym_rlock] = ACTIONS(4278), + [anon_sym_unsafe] = ACTIONS(4278), + [anon_sym_sql] = ACTIONS(4278), + [sym_int_literal] = ACTIONS(4278), + [sym_float_literal] = ACTIONS(4278), + [sym_rune_literal] = ACTIONS(4278), + [anon_sym_SQUOTE] = ACTIONS(4278), + [anon_sym_DQUOTE] = ACTIONS(4278), + [anon_sym_c_SQUOTE] = ACTIONS(4278), + [anon_sym_c_DQUOTE] = ACTIONS(4278), + [anon_sym_r_SQUOTE] = ACTIONS(4278), + [anon_sym_r_DQUOTE] = ACTIONS(4278), + [sym_pseudo_compile_time_identifier] = ACTIONS(4278), + [anon_sym_shared] = ACTIONS(4278), + [anon_sym_map_LBRACK] = ACTIONS(4278), + [anon_sym_chan] = ACTIONS(4278), + [anon_sym_thread] = ACTIONS(4278), + [anon_sym_atomic] = ACTIONS(4278), + [anon_sym_assert] = ACTIONS(4278), + [anon_sym_defer] = ACTIONS(4278), + [anon_sym_goto] = ACTIONS(4278), + [anon_sym_break] = ACTIONS(4278), + [anon_sym_continue] = ACTIONS(4278), + [anon_sym_return] = ACTIONS(4278), + [anon_sym_DOLLARfor] = ACTIONS(4278), + [anon_sym_for] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4278), + [anon_sym_asm] = ACTIONS(4278), + [anon_sym_AT_LBRACK] = ACTIONS(4278), }, [1524] = { [sym_line_comment] = STATE(1524), [sym_block_comment] = STATE(1524), - [ts_builtin_sym_end] = ACTIONS(4323), - [sym_identifier] = ACTIONS(4325), - [anon_sym_LF] = ACTIONS(4325), - [anon_sym_CR] = ACTIONS(4325), - [anon_sym_CR_LF] = ACTIONS(4325), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4325), - [anon_sym_LBRACE] = ACTIONS(4325), - [anon_sym_const] = ACTIONS(4325), - [anon_sym_LPAREN] = ACTIONS(4325), - [anon_sym___global] = ACTIONS(4325), - [anon_sym_type] = ACTIONS(4325), - [anon_sym_fn] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_struct] = ACTIONS(4325), - [anon_sym_union] = ACTIONS(4325), - [anon_sym_pub] = ACTIONS(4325), - [anon_sym_mut] = ACTIONS(4325), - [anon_sym_enum] = ACTIONS(4325), - [anon_sym_interface] = ACTIONS(4325), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_BANG] = ACTIONS(4325), - [anon_sym_go] = ACTIONS(4325), - [anon_sym_spawn] = ACTIONS(4325), - [anon_sym_json_DOTdecode] = ACTIONS(4325), - [anon_sym_LBRACK2] = ACTIONS(4325), - [anon_sym_TILDE] = ACTIONS(4325), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_AMP] = ACTIONS(4325), - [anon_sym_LT_DASH] = ACTIONS(4325), - [sym_none] = ACTIONS(4325), - [sym_true] = ACTIONS(4325), - [sym_false] = ACTIONS(4325), - [sym_nil] = ACTIONS(4325), - [anon_sym_if] = ACTIONS(4325), - [anon_sym_DOLLARif] = ACTIONS(4325), - [anon_sym_match] = ACTIONS(4325), - [anon_sym_select] = ACTIONS(4325), - [anon_sym_lock] = ACTIONS(4325), - [anon_sym_rlock] = ACTIONS(4325), - [anon_sym_unsafe] = ACTIONS(4325), - [anon_sym_sql] = ACTIONS(4325), - [sym_int_literal] = ACTIONS(4325), - [sym_float_literal] = ACTIONS(4325), - [sym_rune_literal] = ACTIONS(4325), - [anon_sym_SQUOTE] = ACTIONS(4325), - [anon_sym_DQUOTE] = ACTIONS(4325), - [anon_sym_c_SQUOTE] = ACTIONS(4325), - [anon_sym_c_DQUOTE] = ACTIONS(4325), - [anon_sym_r_SQUOTE] = ACTIONS(4325), - [anon_sym_r_DQUOTE] = ACTIONS(4325), - [sym_pseudo_compile_time_identifier] = ACTIONS(4325), - [anon_sym_shared] = ACTIONS(4325), - [anon_sym_map_LBRACK] = ACTIONS(4325), - [anon_sym_chan] = ACTIONS(4325), - [anon_sym_thread] = ACTIONS(4325), - [anon_sym_atomic] = ACTIONS(4325), - [anon_sym_assert] = ACTIONS(4325), - [anon_sym_defer] = ACTIONS(4325), - [anon_sym_goto] = ACTIONS(4325), - [anon_sym_break] = ACTIONS(4325), - [anon_sym_continue] = ACTIONS(4325), - [anon_sym_return] = ACTIONS(4325), - [anon_sym_DOLLARfor] = ACTIONS(4325), - [anon_sym_for] = ACTIONS(4325), - [anon_sym_POUND] = ACTIONS(4325), - [anon_sym_asm] = ACTIONS(4325), - [anon_sym_AT_LBRACK] = ACTIONS(4325), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2418), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(609), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(595), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(595), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_DOT_DOT_DOT] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(595), + [anon_sym_AMP_CARET] = ACTIONS(595), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_or] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(595), + [anon_sym_POUND_LBRACK] = ACTIONS(595), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(595), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(595), + [anon_sym_COLON_EQ] = ACTIONS(595), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(597), }, [1525] = { [sym_line_comment] = STATE(1525), [sym_block_comment] = STATE(1525), - [ts_builtin_sym_end] = ACTIONS(4327), - [sym_identifier] = ACTIONS(4329), - [anon_sym_LF] = ACTIONS(4329), - [anon_sym_CR] = ACTIONS(4329), - [anon_sym_CR_LF] = ACTIONS(4329), + [ts_builtin_sym_end] = ACTIONS(4280), + [sym_identifier] = ACTIONS(4282), + [anon_sym_LF] = ACTIONS(4282), + [anon_sym_CR] = ACTIONS(4282), + [anon_sym_CR_LF] = ACTIONS(4282), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4329), - [anon_sym_LBRACE] = ACTIONS(4329), - [anon_sym_const] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym___global] = ACTIONS(4329), - [anon_sym_type] = ACTIONS(4329), - [anon_sym_fn] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [anon_sym_STAR] = ACTIONS(4329), - [anon_sym_struct] = ACTIONS(4329), - [anon_sym_union] = ACTIONS(4329), - [anon_sym_pub] = ACTIONS(4329), - [anon_sym_mut] = ACTIONS(4329), - [anon_sym_enum] = ACTIONS(4329), - [anon_sym_interface] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_go] = ACTIONS(4329), - [anon_sym_spawn] = ACTIONS(4329), - [anon_sym_json_DOTdecode] = ACTIONS(4329), - [anon_sym_LBRACK2] = ACTIONS(4329), - [anon_sym_TILDE] = ACTIONS(4329), - [anon_sym_CARET] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4329), - [anon_sym_LT_DASH] = ACTIONS(4329), - [sym_none] = ACTIONS(4329), - [sym_true] = ACTIONS(4329), - [sym_false] = ACTIONS(4329), - [sym_nil] = ACTIONS(4329), - [anon_sym_if] = ACTIONS(4329), - [anon_sym_DOLLARif] = ACTIONS(4329), - [anon_sym_match] = ACTIONS(4329), - [anon_sym_select] = ACTIONS(4329), - [anon_sym_lock] = ACTIONS(4329), - [anon_sym_rlock] = ACTIONS(4329), - [anon_sym_unsafe] = ACTIONS(4329), - [anon_sym_sql] = ACTIONS(4329), - [sym_int_literal] = ACTIONS(4329), - [sym_float_literal] = ACTIONS(4329), - [sym_rune_literal] = ACTIONS(4329), - [anon_sym_SQUOTE] = ACTIONS(4329), - [anon_sym_DQUOTE] = ACTIONS(4329), - [anon_sym_c_SQUOTE] = ACTIONS(4329), - [anon_sym_c_DQUOTE] = ACTIONS(4329), - [anon_sym_r_SQUOTE] = ACTIONS(4329), - [anon_sym_r_DQUOTE] = ACTIONS(4329), - [sym_pseudo_compile_time_identifier] = ACTIONS(4329), - [anon_sym_shared] = ACTIONS(4329), - [anon_sym_map_LBRACK] = ACTIONS(4329), - [anon_sym_chan] = ACTIONS(4329), - [anon_sym_thread] = ACTIONS(4329), - [anon_sym_atomic] = ACTIONS(4329), - [anon_sym_assert] = ACTIONS(4329), - [anon_sym_defer] = ACTIONS(4329), - [anon_sym_goto] = ACTIONS(4329), - [anon_sym_break] = ACTIONS(4329), - [anon_sym_continue] = ACTIONS(4329), - [anon_sym_return] = ACTIONS(4329), - [anon_sym_DOLLARfor] = ACTIONS(4329), - [anon_sym_for] = ACTIONS(4329), - [anon_sym_POUND] = ACTIONS(4329), - [anon_sym_asm] = ACTIONS(4329), - [anon_sym_AT_LBRACK] = ACTIONS(4329), + [anon_sym_DOT] = ACTIONS(4282), + [anon_sym_LBRACE] = ACTIONS(4282), + [anon_sym_const] = ACTIONS(4282), + [anon_sym_LPAREN] = ACTIONS(4282), + [anon_sym___global] = ACTIONS(4282), + [anon_sym_type] = ACTIONS(4282), + [anon_sym_fn] = ACTIONS(4282), + [anon_sym_PLUS] = ACTIONS(4282), + [anon_sym_DASH] = ACTIONS(4282), + [anon_sym_STAR] = ACTIONS(4282), + [anon_sym_struct] = ACTIONS(4282), + [anon_sym_union] = ACTIONS(4282), + [anon_sym_pub] = ACTIONS(4282), + [anon_sym_mut] = ACTIONS(4282), + [anon_sym_enum] = ACTIONS(4282), + [anon_sym_interface] = ACTIONS(4282), + [anon_sym_QMARK] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(4282), + [anon_sym_go] = ACTIONS(4282), + [anon_sym_spawn] = ACTIONS(4282), + [anon_sym_json_DOTdecode] = ACTIONS(4282), + [anon_sym_LBRACK2] = ACTIONS(4282), + [anon_sym_TILDE] = ACTIONS(4282), + [anon_sym_CARET] = ACTIONS(4282), + [anon_sym_AMP] = ACTIONS(4282), + [anon_sym_LT_DASH] = ACTIONS(4282), + [sym_none] = ACTIONS(4282), + [sym_true] = ACTIONS(4282), + [sym_false] = ACTIONS(4282), + [sym_nil] = ACTIONS(4282), + [anon_sym_if] = ACTIONS(4282), + [anon_sym_DOLLARif] = ACTIONS(4282), + [anon_sym_match] = ACTIONS(4282), + [anon_sym_select] = ACTIONS(4282), + [anon_sym_lock] = ACTIONS(4282), + [anon_sym_rlock] = ACTIONS(4282), + [anon_sym_unsafe] = ACTIONS(4282), + [anon_sym_sql] = ACTIONS(4282), + [sym_int_literal] = ACTIONS(4282), + [sym_float_literal] = ACTIONS(4282), + [sym_rune_literal] = ACTIONS(4282), + [anon_sym_SQUOTE] = ACTIONS(4282), + [anon_sym_DQUOTE] = ACTIONS(4282), + [anon_sym_c_SQUOTE] = ACTIONS(4282), + [anon_sym_c_DQUOTE] = ACTIONS(4282), + [anon_sym_r_SQUOTE] = ACTIONS(4282), + [anon_sym_r_DQUOTE] = ACTIONS(4282), + [sym_pseudo_compile_time_identifier] = ACTIONS(4282), + [anon_sym_shared] = ACTIONS(4282), + [anon_sym_map_LBRACK] = ACTIONS(4282), + [anon_sym_chan] = ACTIONS(4282), + [anon_sym_thread] = ACTIONS(4282), + [anon_sym_atomic] = ACTIONS(4282), + [anon_sym_assert] = ACTIONS(4282), + [anon_sym_defer] = ACTIONS(4282), + [anon_sym_goto] = ACTIONS(4282), + [anon_sym_break] = ACTIONS(4282), + [anon_sym_continue] = ACTIONS(4282), + [anon_sym_return] = ACTIONS(4282), + [anon_sym_DOLLARfor] = ACTIONS(4282), + [anon_sym_for] = ACTIONS(4282), + [anon_sym_POUND] = ACTIONS(4282), + [anon_sym_asm] = ACTIONS(4282), + [anon_sym_AT_LBRACK] = ACTIONS(4282), }, [1526] = { [sym_line_comment] = STATE(1526), [sym_block_comment] = STATE(1526), - [ts_builtin_sym_end] = ACTIONS(4331), - [sym_identifier] = ACTIONS(4333), - [anon_sym_LF] = ACTIONS(4333), - [anon_sym_CR] = ACTIONS(4333), - [anon_sym_CR_LF] = ACTIONS(4333), + [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(4333), - [anon_sym_LBRACE] = ACTIONS(4333), - [anon_sym_const] = ACTIONS(4333), - [anon_sym_LPAREN] = ACTIONS(4333), - [anon_sym___global] = ACTIONS(4333), - [anon_sym_type] = ACTIONS(4333), - [anon_sym_fn] = ACTIONS(4333), - [anon_sym_PLUS] = ACTIONS(4333), - [anon_sym_DASH] = ACTIONS(4333), - [anon_sym_STAR] = ACTIONS(4333), - [anon_sym_struct] = ACTIONS(4333), - [anon_sym_union] = ACTIONS(4333), - [anon_sym_pub] = ACTIONS(4333), - [anon_sym_mut] = ACTIONS(4333), - [anon_sym_enum] = ACTIONS(4333), - [anon_sym_interface] = ACTIONS(4333), - [anon_sym_QMARK] = ACTIONS(4333), - [anon_sym_BANG] = ACTIONS(4333), - [anon_sym_go] = ACTIONS(4333), - [anon_sym_spawn] = ACTIONS(4333), - [anon_sym_json_DOTdecode] = ACTIONS(4333), - [anon_sym_LBRACK2] = ACTIONS(4333), - [anon_sym_TILDE] = ACTIONS(4333), - [anon_sym_CARET] = ACTIONS(4333), - [anon_sym_AMP] = ACTIONS(4333), - [anon_sym_LT_DASH] = ACTIONS(4333), - [sym_none] = ACTIONS(4333), - [sym_true] = ACTIONS(4333), - [sym_false] = ACTIONS(4333), - [sym_nil] = ACTIONS(4333), - [anon_sym_if] = ACTIONS(4333), - [anon_sym_DOLLARif] = ACTIONS(4333), - [anon_sym_match] = ACTIONS(4333), - [anon_sym_select] = ACTIONS(4333), - [anon_sym_lock] = ACTIONS(4333), - [anon_sym_rlock] = ACTIONS(4333), - [anon_sym_unsafe] = ACTIONS(4333), - [anon_sym_sql] = ACTIONS(4333), - [sym_int_literal] = ACTIONS(4333), - [sym_float_literal] = ACTIONS(4333), - [sym_rune_literal] = ACTIONS(4333), - [anon_sym_SQUOTE] = ACTIONS(4333), - [anon_sym_DQUOTE] = ACTIONS(4333), - [anon_sym_c_SQUOTE] = ACTIONS(4333), - [anon_sym_c_DQUOTE] = ACTIONS(4333), - [anon_sym_r_SQUOTE] = ACTIONS(4333), - [anon_sym_r_DQUOTE] = ACTIONS(4333), - [sym_pseudo_compile_time_identifier] = ACTIONS(4333), - [anon_sym_shared] = ACTIONS(4333), - [anon_sym_map_LBRACK] = ACTIONS(4333), - [anon_sym_chan] = ACTIONS(4333), - [anon_sym_thread] = ACTIONS(4333), - [anon_sym_atomic] = ACTIONS(4333), - [anon_sym_assert] = ACTIONS(4333), - [anon_sym_defer] = ACTIONS(4333), - [anon_sym_goto] = ACTIONS(4333), - [anon_sym_break] = ACTIONS(4333), - [anon_sym_continue] = ACTIONS(4333), - [anon_sym_return] = ACTIONS(4333), - [anon_sym_DOLLARfor] = ACTIONS(4333), - [anon_sym_for] = ACTIONS(4333), - [anon_sym_POUND] = ACTIONS(4333), - [anon_sym_asm] = ACTIONS(4333), - [anon_sym_AT_LBRACK] = ACTIONS(4333), + [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), + [anon_sym_SQUOTE] = ACTIONS(4286), + [anon_sym_DQUOTE] = ACTIONS(4286), + [anon_sym_c_SQUOTE] = ACTIONS(4286), + [anon_sym_c_DQUOTE] = ACTIONS(4286), + [anon_sym_r_SQUOTE] = ACTIONS(4286), + [anon_sym_r_DQUOTE] = 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), }, [1527] = { [sym_line_comment] = STATE(1527), [sym_block_comment] = STATE(1527), - [ts_builtin_sym_end] = ACTIONS(4335), - [sym_identifier] = ACTIONS(4337), - [anon_sym_LF] = ACTIONS(4337), - [anon_sym_CR] = ACTIONS(4337), - [anon_sym_CR_LF] = ACTIONS(4337), + [ts_builtin_sym_end] = ACTIONS(2467), + [sym_identifier] = ACTIONS(2469), + [anon_sym_LF] = ACTIONS(2469), + [anon_sym_CR] = ACTIONS(2469), + [anon_sym_CR_LF] = ACTIONS(2469), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_LBRACE] = ACTIONS(4337), - [anon_sym_const] = ACTIONS(4337), - [anon_sym_LPAREN] = ACTIONS(4337), - [anon_sym___global] = ACTIONS(4337), - [anon_sym_type] = ACTIONS(4337), - [anon_sym_fn] = ACTIONS(4337), - [anon_sym_PLUS] = ACTIONS(4337), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_STAR] = ACTIONS(4337), - [anon_sym_struct] = ACTIONS(4337), - [anon_sym_union] = ACTIONS(4337), - [anon_sym_pub] = ACTIONS(4337), - [anon_sym_mut] = ACTIONS(4337), - [anon_sym_enum] = ACTIONS(4337), - [anon_sym_interface] = ACTIONS(4337), - [anon_sym_QMARK] = ACTIONS(4337), - [anon_sym_BANG] = ACTIONS(4337), - [anon_sym_go] = ACTIONS(4337), - [anon_sym_spawn] = ACTIONS(4337), - [anon_sym_json_DOTdecode] = ACTIONS(4337), - [anon_sym_LBRACK2] = ACTIONS(4337), - [anon_sym_TILDE] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_LT_DASH] = ACTIONS(4337), - [sym_none] = ACTIONS(4337), - [sym_true] = ACTIONS(4337), - [sym_false] = ACTIONS(4337), - [sym_nil] = ACTIONS(4337), - [anon_sym_if] = ACTIONS(4337), - [anon_sym_DOLLARif] = ACTIONS(4337), - [anon_sym_match] = ACTIONS(4337), - [anon_sym_select] = ACTIONS(4337), - [anon_sym_lock] = ACTIONS(4337), - [anon_sym_rlock] = ACTIONS(4337), - [anon_sym_unsafe] = ACTIONS(4337), - [anon_sym_sql] = ACTIONS(4337), - [sym_int_literal] = ACTIONS(4337), - [sym_float_literal] = ACTIONS(4337), - [sym_rune_literal] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4337), - [anon_sym_DQUOTE] = ACTIONS(4337), - [anon_sym_c_SQUOTE] = ACTIONS(4337), - [anon_sym_c_DQUOTE] = ACTIONS(4337), - [anon_sym_r_SQUOTE] = ACTIONS(4337), - [anon_sym_r_DQUOTE] = ACTIONS(4337), - [sym_pseudo_compile_time_identifier] = ACTIONS(4337), - [anon_sym_shared] = ACTIONS(4337), - [anon_sym_map_LBRACK] = ACTIONS(4337), - [anon_sym_chan] = ACTIONS(4337), - [anon_sym_thread] = ACTIONS(4337), - [anon_sym_atomic] = ACTIONS(4337), - [anon_sym_assert] = ACTIONS(4337), - [anon_sym_defer] = ACTIONS(4337), - [anon_sym_goto] = ACTIONS(4337), - [anon_sym_break] = ACTIONS(4337), - [anon_sym_continue] = ACTIONS(4337), - [anon_sym_return] = ACTIONS(4337), - [anon_sym_DOLLARfor] = ACTIONS(4337), - [anon_sym_for] = ACTIONS(4337), - [anon_sym_POUND] = ACTIONS(4337), - [anon_sym_asm] = ACTIONS(4337), - [anon_sym_AT_LBRACK] = ACTIONS(4337), + [anon_sym_DOT] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2469), + [anon_sym_const] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2469), + [anon_sym___global] = ACTIONS(2469), + [anon_sym_type] = ACTIONS(2469), + [anon_sym_fn] = ACTIONS(2469), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_STAR] = ACTIONS(2469), + [anon_sym_struct] = ACTIONS(2469), + [anon_sym_union] = ACTIONS(2469), + [anon_sym_pub] = ACTIONS(2469), + [anon_sym_mut] = ACTIONS(2469), + [anon_sym_enum] = ACTIONS(2469), + [anon_sym_interface] = ACTIONS(2469), + [anon_sym_QMARK] = ACTIONS(2469), + [anon_sym_BANG] = ACTIONS(2469), + [anon_sym_go] = ACTIONS(2469), + [anon_sym_spawn] = ACTIONS(2469), + [anon_sym_json_DOTdecode] = ACTIONS(2469), + [anon_sym_LBRACK2] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_CARET] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_LT_DASH] = ACTIONS(2469), + [sym_none] = ACTIONS(2469), + [sym_true] = ACTIONS(2469), + [sym_false] = ACTIONS(2469), + [sym_nil] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_DOLLARif] = ACTIONS(2469), + [anon_sym_match] = ACTIONS(2469), + [anon_sym_select] = ACTIONS(2469), + [anon_sym_lock] = ACTIONS(2469), + [anon_sym_rlock] = ACTIONS(2469), + [anon_sym_unsafe] = ACTIONS(2469), + [anon_sym_sql] = ACTIONS(2469), + [sym_int_literal] = ACTIONS(2469), + [sym_float_literal] = ACTIONS(2469), + [sym_rune_literal] = ACTIONS(2469), + [anon_sym_SQUOTE] = ACTIONS(2469), + [anon_sym_DQUOTE] = ACTIONS(2469), + [anon_sym_c_SQUOTE] = ACTIONS(2469), + [anon_sym_c_DQUOTE] = ACTIONS(2469), + [anon_sym_r_SQUOTE] = ACTIONS(2469), + [anon_sym_r_DQUOTE] = ACTIONS(2469), + [sym_pseudo_compile_time_identifier] = ACTIONS(2469), + [anon_sym_shared] = ACTIONS(2469), + [anon_sym_map_LBRACK] = ACTIONS(2469), + [anon_sym_chan] = ACTIONS(2469), + [anon_sym_thread] = ACTIONS(2469), + [anon_sym_atomic] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2469), + [anon_sym_defer] = ACTIONS(2469), + [anon_sym_goto] = ACTIONS(2469), + [anon_sym_break] = ACTIONS(2469), + [anon_sym_continue] = ACTIONS(2469), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_DOLLARfor] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_POUND] = ACTIONS(2469), + [anon_sym_asm] = ACTIONS(2469), + [anon_sym_AT_LBRACK] = ACTIONS(2469), }, [1528] = { [sym_line_comment] = STATE(1528), [sym_block_comment] = STATE(1528), - [ts_builtin_sym_end] = ACTIONS(4339), - [sym_identifier] = ACTIONS(4341), - [anon_sym_LF] = ACTIONS(4341), - [anon_sym_CR] = ACTIONS(4341), - [anon_sym_CR_LF] = ACTIONS(4341), + [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(4341), - [anon_sym_LBRACE] = ACTIONS(4341), - [anon_sym_const] = ACTIONS(4341), - [anon_sym_LPAREN] = ACTIONS(4341), - [anon_sym___global] = ACTIONS(4341), - [anon_sym_type] = ACTIONS(4341), - [anon_sym_fn] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(4341), - [anon_sym_DASH] = ACTIONS(4341), - [anon_sym_STAR] = ACTIONS(4341), - [anon_sym_struct] = ACTIONS(4341), - [anon_sym_union] = ACTIONS(4341), - [anon_sym_pub] = ACTIONS(4341), - [anon_sym_mut] = ACTIONS(4341), - [anon_sym_enum] = ACTIONS(4341), - [anon_sym_interface] = ACTIONS(4341), - [anon_sym_QMARK] = ACTIONS(4341), - [anon_sym_BANG] = ACTIONS(4341), - [anon_sym_go] = ACTIONS(4341), - [anon_sym_spawn] = ACTIONS(4341), - [anon_sym_json_DOTdecode] = ACTIONS(4341), - [anon_sym_LBRACK2] = ACTIONS(4341), - [anon_sym_TILDE] = ACTIONS(4341), - [anon_sym_CARET] = ACTIONS(4341), - [anon_sym_AMP] = ACTIONS(4341), - [anon_sym_LT_DASH] = ACTIONS(4341), - [sym_none] = ACTIONS(4341), - [sym_true] = ACTIONS(4341), - [sym_false] = ACTIONS(4341), - [sym_nil] = ACTIONS(4341), - [anon_sym_if] = ACTIONS(4341), - [anon_sym_DOLLARif] = ACTIONS(4341), - [anon_sym_match] = ACTIONS(4341), - [anon_sym_select] = ACTIONS(4341), - [anon_sym_lock] = ACTIONS(4341), - [anon_sym_rlock] = ACTIONS(4341), - [anon_sym_unsafe] = ACTIONS(4341), - [anon_sym_sql] = ACTIONS(4341), - [sym_int_literal] = ACTIONS(4341), - [sym_float_literal] = ACTIONS(4341), - [sym_rune_literal] = ACTIONS(4341), - [anon_sym_SQUOTE] = ACTIONS(4341), - [anon_sym_DQUOTE] = ACTIONS(4341), - [anon_sym_c_SQUOTE] = ACTIONS(4341), - [anon_sym_c_DQUOTE] = ACTIONS(4341), - [anon_sym_r_SQUOTE] = ACTIONS(4341), - [anon_sym_r_DQUOTE] = ACTIONS(4341), - [sym_pseudo_compile_time_identifier] = ACTIONS(4341), - [anon_sym_shared] = ACTIONS(4341), - [anon_sym_map_LBRACK] = ACTIONS(4341), - [anon_sym_chan] = ACTIONS(4341), - [anon_sym_thread] = ACTIONS(4341), - [anon_sym_atomic] = ACTIONS(4341), - [anon_sym_assert] = ACTIONS(4341), - [anon_sym_defer] = ACTIONS(4341), - [anon_sym_goto] = ACTIONS(4341), - [anon_sym_break] = ACTIONS(4341), - [anon_sym_continue] = ACTIONS(4341), - [anon_sym_return] = ACTIONS(4341), - [anon_sym_DOLLARfor] = ACTIONS(4341), - [anon_sym_for] = ACTIONS(4341), - [anon_sym_POUND] = ACTIONS(4341), - [anon_sym_asm] = ACTIONS(4341), - [anon_sym_AT_LBRACK] = ACTIONS(4341), + [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), + [anon_sym_SQUOTE] = ACTIONS(4290), + [anon_sym_DQUOTE] = ACTIONS(4290), + [anon_sym_c_SQUOTE] = ACTIONS(4290), + [anon_sym_c_DQUOTE] = ACTIONS(4290), + [anon_sym_r_SQUOTE] = ACTIONS(4290), + [anon_sym_r_DQUOTE] = 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), }, [1529] = { [sym_line_comment] = STATE(1529), [sym_block_comment] = STATE(1529), - [ts_builtin_sym_end] = ACTIONS(4343), - [sym_identifier] = ACTIONS(4345), - [anon_sym_LF] = ACTIONS(4345), - [anon_sym_CR] = ACTIONS(4345), - [anon_sym_CR_LF] = ACTIONS(4345), + [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(4345), - [anon_sym_LBRACE] = ACTIONS(4345), - [anon_sym_const] = ACTIONS(4345), - [anon_sym_LPAREN] = ACTIONS(4345), - [anon_sym___global] = ACTIONS(4345), - [anon_sym_type] = ACTIONS(4345), - [anon_sym_fn] = ACTIONS(4345), - [anon_sym_PLUS] = ACTIONS(4345), - [anon_sym_DASH] = ACTIONS(4345), - [anon_sym_STAR] = ACTIONS(4345), - [anon_sym_struct] = ACTIONS(4345), - [anon_sym_union] = ACTIONS(4345), - [anon_sym_pub] = ACTIONS(4345), - [anon_sym_mut] = ACTIONS(4345), - [anon_sym_enum] = ACTIONS(4345), - [anon_sym_interface] = ACTIONS(4345), - [anon_sym_QMARK] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(4345), - [anon_sym_go] = ACTIONS(4345), - [anon_sym_spawn] = ACTIONS(4345), - [anon_sym_json_DOTdecode] = ACTIONS(4345), - [anon_sym_LBRACK2] = ACTIONS(4345), - [anon_sym_TILDE] = ACTIONS(4345), - [anon_sym_CARET] = ACTIONS(4345), - [anon_sym_AMP] = ACTIONS(4345), - [anon_sym_LT_DASH] = ACTIONS(4345), - [sym_none] = ACTIONS(4345), - [sym_true] = ACTIONS(4345), - [sym_false] = ACTIONS(4345), - [sym_nil] = ACTIONS(4345), - [anon_sym_if] = ACTIONS(4345), - [anon_sym_DOLLARif] = ACTIONS(4345), - [anon_sym_match] = ACTIONS(4345), - [anon_sym_select] = ACTIONS(4345), - [anon_sym_lock] = ACTIONS(4345), - [anon_sym_rlock] = ACTIONS(4345), - [anon_sym_unsafe] = ACTIONS(4345), - [anon_sym_sql] = ACTIONS(4345), - [sym_int_literal] = ACTIONS(4345), - [sym_float_literal] = ACTIONS(4345), - [sym_rune_literal] = ACTIONS(4345), - [anon_sym_SQUOTE] = ACTIONS(4345), - [anon_sym_DQUOTE] = ACTIONS(4345), - [anon_sym_c_SQUOTE] = ACTIONS(4345), - [anon_sym_c_DQUOTE] = ACTIONS(4345), - [anon_sym_r_SQUOTE] = ACTIONS(4345), - [anon_sym_r_DQUOTE] = ACTIONS(4345), - [sym_pseudo_compile_time_identifier] = ACTIONS(4345), - [anon_sym_shared] = ACTIONS(4345), - [anon_sym_map_LBRACK] = ACTIONS(4345), - [anon_sym_chan] = ACTIONS(4345), - [anon_sym_thread] = ACTIONS(4345), - [anon_sym_atomic] = ACTIONS(4345), - [anon_sym_assert] = ACTIONS(4345), - [anon_sym_defer] = ACTIONS(4345), - [anon_sym_goto] = ACTIONS(4345), - [anon_sym_break] = ACTIONS(4345), - [anon_sym_continue] = ACTIONS(4345), - [anon_sym_return] = ACTIONS(4345), - [anon_sym_DOLLARfor] = ACTIONS(4345), - [anon_sym_for] = ACTIONS(4345), - [anon_sym_POUND] = ACTIONS(4345), - [anon_sym_asm] = ACTIONS(4345), - [anon_sym_AT_LBRACK] = ACTIONS(4345), + [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), + [anon_sym_SQUOTE] = ACTIONS(4294), + [anon_sym_DQUOTE] = ACTIONS(4294), + [anon_sym_c_SQUOTE] = ACTIONS(4294), + [anon_sym_c_DQUOTE] = ACTIONS(4294), + [anon_sym_r_SQUOTE] = ACTIONS(4294), + [anon_sym_r_DQUOTE] = 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), }, [1530] = { [sym_line_comment] = STATE(1530), [sym_block_comment] = STATE(1530), - [ts_builtin_sym_end] = ACTIONS(4347), - [sym_identifier] = ACTIONS(4349), - [anon_sym_LF] = ACTIONS(4349), - [anon_sym_CR] = ACTIONS(4349), - [anon_sym_CR_LF] = ACTIONS(4349), + [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(4349), - [anon_sym_LBRACE] = ACTIONS(4349), - [anon_sym_const] = ACTIONS(4349), - [anon_sym_LPAREN] = ACTIONS(4349), - [anon_sym___global] = ACTIONS(4349), - [anon_sym_type] = ACTIONS(4349), - [anon_sym_fn] = ACTIONS(4349), - [anon_sym_PLUS] = ACTIONS(4349), - [anon_sym_DASH] = ACTIONS(4349), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_struct] = ACTIONS(4349), - [anon_sym_union] = ACTIONS(4349), - [anon_sym_pub] = ACTIONS(4349), - [anon_sym_mut] = ACTIONS(4349), - [anon_sym_enum] = ACTIONS(4349), - [anon_sym_interface] = ACTIONS(4349), - [anon_sym_QMARK] = ACTIONS(4349), - [anon_sym_BANG] = ACTIONS(4349), - [anon_sym_go] = ACTIONS(4349), - [anon_sym_spawn] = ACTIONS(4349), - [anon_sym_json_DOTdecode] = ACTIONS(4349), - [anon_sym_LBRACK2] = ACTIONS(4349), - [anon_sym_TILDE] = ACTIONS(4349), - [anon_sym_CARET] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym_LT_DASH] = ACTIONS(4349), - [sym_none] = ACTIONS(4349), - [sym_true] = ACTIONS(4349), - [sym_false] = ACTIONS(4349), - [sym_nil] = ACTIONS(4349), - [anon_sym_if] = ACTIONS(4349), - [anon_sym_DOLLARif] = ACTIONS(4349), - [anon_sym_match] = ACTIONS(4349), - [anon_sym_select] = ACTIONS(4349), - [anon_sym_lock] = ACTIONS(4349), - [anon_sym_rlock] = ACTIONS(4349), - [anon_sym_unsafe] = ACTIONS(4349), - [anon_sym_sql] = ACTIONS(4349), - [sym_int_literal] = ACTIONS(4349), - [sym_float_literal] = ACTIONS(4349), - [sym_rune_literal] = ACTIONS(4349), - [anon_sym_SQUOTE] = ACTIONS(4349), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_c_SQUOTE] = ACTIONS(4349), - [anon_sym_c_DQUOTE] = ACTIONS(4349), - [anon_sym_r_SQUOTE] = ACTIONS(4349), - [anon_sym_r_DQUOTE] = ACTIONS(4349), - [sym_pseudo_compile_time_identifier] = ACTIONS(4349), - [anon_sym_shared] = ACTIONS(4349), - [anon_sym_map_LBRACK] = ACTIONS(4349), - [anon_sym_chan] = ACTIONS(4349), - [anon_sym_thread] = ACTIONS(4349), - [anon_sym_atomic] = ACTIONS(4349), - [anon_sym_assert] = ACTIONS(4349), - [anon_sym_defer] = ACTIONS(4349), - [anon_sym_goto] = ACTIONS(4349), - [anon_sym_break] = ACTIONS(4349), - [anon_sym_continue] = ACTIONS(4349), - [anon_sym_return] = ACTIONS(4349), - [anon_sym_DOLLARfor] = ACTIONS(4349), - [anon_sym_for] = ACTIONS(4349), - [anon_sym_POUND] = ACTIONS(4349), - [anon_sym_asm] = ACTIONS(4349), - [anon_sym_AT_LBRACK] = ACTIONS(4349), + [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), + [anon_sym_SQUOTE] = ACTIONS(4298), + [anon_sym_DQUOTE] = ACTIONS(4298), + [anon_sym_c_SQUOTE] = ACTIONS(4298), + [anon_sym_c_DQUOTE] = ACTIONS(4298), + [anon_sym_r_SQUOTE] = ACTIONS(4298), + [anon_sym_r_DQUOTE] = 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), }, [1531] = { [sym_line_comment] = STATE(1531), [sym_block_comment] = STATE(1531), - [ts_builtin_sym_end] = ACTIONS(4351), - [sym_identifier] = ACTIONS(4353), - [anon_sym_LF] = ACTIONS(4353), - [anon_sym_CR] = ACTIONS(4353), - [anon_sym_CR_LF] = ACTIONS(4353), + [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(4353), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_const] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(4353), - [anon_sym___global] = ACTIONS(4353), - [anon_sym_type] = ACTIONS(4353), - [anon_sym_fn] = ACTIONS(4353), - [anon_sym_PLUS] = ACTIONS(4353), - [anon_sym_DASH] = ACTIONS(4353), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_struct] = ACTIONS(4353), - [anon_sym_union] = ACTIONS(4353), - [anon_sym_pub] = ACTIONS(4353), - [anon_sym_mut] = ACTIONS(4353), - [anon_sym_enum] = ACTIONS(4353), - [anon_sym_interface] = ACTIONS(4353), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_BANG] = ACTIONS(4353), - [anon_sym_go] = ACTIONS(4353), - [anon_sym_spawn] = ACTIONS(4353), - [anon_sym_json_DOTdecode] = ACTIONS(4353), - [anon_sym_LBRACK2] = ACTIONS(4353), - [anon_sym_TILDE] = ACTIONS(4353), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_AMP] = ACTIONS(4353), - [anon_sym_LT_DASH] = ACTIONS(4353), - [sym_none] = ACTIONS(4353), - [sym_true] = ACTIONS(4353), - [sym_false] = ACTIONS(4353), - [sym_nil] = ACTIONS(4353), - [anon_sym_if] = ACTIONS(4353), - [anon_sym_DOLLARif] = ACTIONS(4353), - [anon_sym_match] = ACTIONS(4353), - [anon_sym_select] = ACTIONS(4353), - [anon_sym_lock] = ACTIONS(4353), - [anon_sym_rlock] = ACTIONS(4353), - [anon_sym_unsafe] = ACTIONS(4353), - [anon_sym_sql] = ACTIONS(4353), - [sym_int_literal] = ACTIONS(4353), - [sym_float_literal] = ACTIONS(4353), - [sym_rune_literal] = ACTIONS(4353), - [anon_sym_SQUOTE] = ACTIONS(4353), - [anon_sym_DQUOTE] = ACTIONS(4353), - [anon_sym_c_SQUOTE] = ACTIONS(4353), - [anon_sym_c_DQUOTE] = ACTIONS(4353), - [anon_sym_r_SQUOTE] = ACTIONS(4353), - [anon_sym_r_DQUOTE] = ACTIONS(4353), - [sym_pseudo_compile_time_identifier] = ACTIONS(4353), - [anon_sym_shared] = ACTIONS(4353), - [anon_sym_map_LBRACK] = ACTIONS(4353), - [anon_sym_chan] = ACTIONS(4353), - [anon_sym_thread] = ACTIONS(4353), - [anon_sym_atomic] = ACTIONS(4353), - [anon_sym_assert] = ACTIONS(4353), - [anon_sym_defer] = ACTIONS(4353), - [anon_sym_goto] = ACTIONS(4353), - [anon_sym_break] = ACTIONS(4353), - [anon_sym_continue] = ACTIONS(4353), - [anon_sym_return] = ACTIONS(4353), - [anon_sym_DOLLARfor] = ACTIONS(4353), - [anon_sym_for] = ACTIONS(4353), - [anon_sym_POUND] = ACTIONS(4353), - [anon_sym_asm] = ACTIONS(4353), - [anon_sym_AT_LBRACK] = ACTIONS(4353), + [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), + [anon_sym_SQUOTE] = ACTIONS(4302), + [anon_sym_DQUOTE] = ACTIONS(4302), + [anon_sym_c_SQUOTE] = ACTIONS(4302), + [anon_sym_c_DQUOTE] = ACTIONS(4302), + [anon_sym_r_SQUOTE] = ACTIONS(4302), + [anon_sym_r_DQUOTE] = 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), }, [1532] = { [sym_line_comment] = STATE(1532), [sym_block_comment] = STATE(1532), - [ts_builtin_sym_end] = ACTIONS(4355), - [sym_identifier] = ACTIONS(4357), - [anon_sym_LF] = ACTIONS(4357), - [anon_sym_CR] = ACTIONS(4357), - [anon_sym_CR_LF] = ACTIONS(4357), + [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(4357), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_const] = ACTIONS(4357), - [anon_sym_LPAREN] = ACTIONS(4357), - [anon_sym___global] = ACTIONS(4357), - [anon_sym_type] = ACTIONS(4357), - [anon_sym_fn] = ACTIONS(4357), - [anon_sym_PLUS] = ACTIONS(4357), - [anon_sym_DASH] = ACTIONS(4357), - [anon_sym_STAR] = ACTIONS(4357), - [anon_sym_struct] = ACTIONS(4357), - [anon_sym_union] = ACTIONS(4357), - [anon_sym_pub] = ACTIONS(4357), - [anon_sym_mut] = ACTIONS(4357), - [anon_sym_enum] = ACTIONS(4357), - [anon_sym_interface] = ACTIONS(4357), - [anon_sym_QMARK] = ACTIONS(4357), - [anon_sym_BANG] = ACTIONS(4357), - [anon_sym_go] = ACTIONS(4357), - [anon_sym_spawn] = ACTIONS(4357), - [anon_sym_json_DOTdecode] = ACTIONS(4357), - [anon_sym_LBRACK2] = ACTIONS(4357), - [anon_sym_TILDE] = ACTIONS(4357), - [anon_sym_CARET] = ACTIONS(4357), - [anon_sym_AMP] = ACTIONS(4357), - [anon_sym_LT_DASH] = ACTIONS(4357), - [sym_none] = ACTIONS(4357), - [sym_true] = ACTIONS(4357), - [sym_false] = ACTIONS(4357), - [sym_nil] = ACTIONS(4357), - [anon_sym_if] = ACTIONS(4357), - [anon_sym_DOLLARif] = ACTIONS(4357), - [anon_sym_match] = ACTIONS(4357), - [anon_sym_select] = ACTIONS(4357), - [anon_sym_lock] = ACTIONS(4357), - [anon_sym_rlock] = ACTIONS(4357), - [anon_sym_unsafe] = ACTIONS(4357), - [anon_sym_sql] = ACTIONS(4357), - [sym_int_literal] = ACTIONS(4357), - [sym_float_literal] = ACTIONS(4357), - [sym_rune_literal] = ACTIONS(4357), - [anon_sym_SQUOTE] = ACTIONS(4357), - [anon_sym_DQUOTE] = ACTIONS(4357), - [anon_sym_c_SQUOTE] = ACTIONS(4357), - [anon_sym_c_DQUOTE] = ACTIONS(4357), - [anon_sym_r_SQUOTE] = ACTIONS(4357), - [anon_sym_r_DQUOTE] = ACTIONS(4357), - [sym_pseudo_compile_time_identifier] = ACTIONS(4357), - [anon_sym_shared] = ACTIONS(4357), - [anon_sym_map_LBRACK] = ACTIONS(4357), - [anon_sym_chan] = ACTIONS(4357), - [anon_sym_thread] = ACTIONS(4357), - [anon_sym_atomic] = ACTIONS(4357), - [anon_sym_assert] = ACTIONS(4357), - [anon_sym_defer] = ACTIONS(4357), - [anon_sym_goto] = ACTIONS(4357), - [anon_sym_break] = ACTIONS(4357), - [anon_sym_continue] = ACTIONS(4357), - [anon_sym_return] = ACTIONS(4357), - [anon_sym_DOLLARfor] = ACTIONS(4357), - [anon_sym_for] = ACTIONS(4357), - [anon_sym_POUND] = ACTIONS(4357), - [anon_sym_asm] = ACTIONS(4357), - [anon_sym_AT_LBRACK] = ACTIONS(4357), + [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), + [anon_sym_SQUOTE] = ACTIONS(4306), + [anon_sym_DQUOTE] = ACTIONS(4306), + [anon_sym_c_SQUOTE] = ACTIONS(4306), + [anon_sym_c_DQUOTE] = ACTIONS(4306), + [anon_sym_r_SQUOTE] = ACTIONS(4306), + [anon_sym_r_DQUOTE] = 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), }, [1533] = { [sym_line_comment] = STATE(1533), [sym_block_comment] = STATE(1533), - [ts_builtin_sym_end] = ACTIONS(4359), - [sym_identifier] = ACTIONS(4361), - [anon_sym_LF] = ACTIONS(4361), - [anon_sym_CR] = ACTIONS(4361), - [anon_sym_CR_LF] = ACTIONS(4361), + [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(4361), - [anon_sym_LBRACE] = ACTIONS(4361), - [anon_sym_const] = ACTIONS(4361), - [anon_sym_LPAREN] = ACTIONS(4361), - [anon_sym___global] = ACTIONS(4361), - [anon_sym_type] = ACTIONS(4361), - [anon_sym_fn] = ACTIONS(4361), - [anon_sym_PLUS] = ACTIONS(4361), - [anon_sym_DASH] = ACTIONS(4361), - [anon_sym_STAR] = ACTIONS(4361), - [anon_sym_struct] = ACTIONS(4361), - [anon_sym_union] = ACTIONS(4361), - [anon_sym_pub] = ACTIONS(4361), - [anon_sym_mut] = ACTIONS(4361), - [anon_sym_enum] = ACTIONS(4361), - [anon_sym_interface] = ACTIONS(4361), - [anon_sym_QMARK] = ACTIONS(4361), - [anon_sym_BANG] = ACTIONS(4361), - [anon_sym_go] = ACTIONS(4361), - [anon_sym_spawn] = ACTIONS(4361), - [anon_sym_json_DOTdecode] = ACTIONS(4361), - [anon_sym_LBRACK2] = ACTIONS(4361), - [anon_sym_TILDE] = ACTIONS(4361), - [anon_sym_CARET] = ACTIONS(4361), - [anon_sym_AMP] = ACTIONS(4361), - [anon_sym_LT_DASH] = ACTIONS(4361), - [sym_none] = ACTIONS(4361), - [sym_true] = ACTIONS(4361), - [sym_false] = ACTIONS(4361), - [sym_nil] = ACTIONS(4361), - [anon_sym_if] = ACTIONS(4361), - [anon_sym_DOLLARif] = ACTIONS(4361), - [anon_sym_match] = ACTIONS(4361), - [anon_sym_select] = ACTIONS(4361), - [anon_sym_lock] = ACTIONS(4361), - [anon_sym_rlock] = ACTIONS(4361), - [anon_sym_unsafe] = ACTIONS(4361), - [anon_sym_sql] = ACTIONS(4361), - [sym_int_literal] = ACTIONS(4361), - [sym_float_literal] = ACTIONS(4361), - [sym_rune_literal] = ACTIONS(4361), - [anon_sym_SQUOTE] = ACTIONS(4361), - [anon_sym_DQUOTE] = ACTIONS(4361), - [anon_sym_c_SQUOTE] = ACTIONS(4361), - [anon_sym_c_DQUOTE] = ACTIONS(4361), - [anon_sym_r_SQUOTE] = ACTIONS(4361), - [anon_sym_r_DQUOTE] = ACTIONS(4361), - [sym_pseudo_compile_time_identifier] = ACTIONS(4361), - [anon_sym_shared] = ACTIONS(4361), - [anon_sym_map_LBRACK] = ACTIONS(4361), - [anon_sym_chan] = ACTIONS(4361), - [anon_sym_thread] = ACTIONS(4361), - [anon_sym_atomic] = ACTIONS(4361), - [anon_sym_assert] = ACTIONS(4361), - [anon_sym_defer] = ACTIONS(4361), - [anon_sym_goto] = ACTIONS(4361), - [anon_sym_break] = ACTIONS(4361), - [anon_sym_continue] = ACTIONS(4361), - [anon_sym_return] = ACTIONS(4361), - [anon_sym_DOLLARfor] = ACTIONS(4361), - [anon_sym_for] = ACTIONS(4361), - [anon_sym_POUND] = ACTIONS(4361), - [anon_sym_asm] = ACTIONS(4361), - [anon_sym_AT_LBRACK] = ACTIONS(4361), + [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), + [anon_sym_SQUOTE] = ACTIONS(4310), + [anon_sym_DQUOTE] = ACTIONS(4310), + [anon_sym_c_SQUOTE] = ACTIONS(4310), + [anon_sym_c_DQUOTE] = ACTIONS(4310), + [anon_sym_r_SQUOTE] = ACTIONS(4310), + [anon_sym_r_DQUOTE] = 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), }, [1534] = { [sym_line_comment] = STATE(1534), [sym_block_comment] = STATE(1534), - [ts_builtin_sym_end] = ACTIONS(4363), - [sym_identifier] = ACTIONS(4365), - [anon_sym_LF] = ACTIONS(4365), - [anon_sym_CR] = ACTIONS(4365), - [anon_sym_CR_LF] = ACTIONS(4365), + [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(4365), - [anon_sym_LBRACE] = ACTIONS(4365), - [anon_sym_const] = ACTIONS(4365), - [anon_sym_LPAREN] = ACTIONS(4365), - [anon_sym___global] = ACTIONS(4365), - [anon_sym_type] = ACTIONS(4365), - [anon_sym_fn] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4365), - [anon_sym_DASH] = ACTIONS(4365), - [anon_sym_STAR] = ACTIONS(4365), - [anon_sym_struct] = ACTIONS(4365), - [anon_sym_union] = ACTIONS(4365), - [anon_sym_pub] = ACTIONS(4365), - [anon_sym_mut] = ACTIONS(4365), - [anon_sym_enum] = ACTIONS(4365), - [anon_sym_interface] = ACTIONS(4365), - [anon_sym_QMARK] = ACTIONS(4365), - [anon_sym_BANG] = ACTIONS(4365), - [anon_sym_go] = ACTIONS(4365), - [anon_sym_spawn] = ACTIONS(4365), - [anon_sym_json_DOTdecode] = ACTIONS(4365), - [anon_sym_LBRACK2] = ACTIONS(4365), - [anon_sym_TILDE] = ACTIONS(4365), - [anon_sym_CARET] = ACTIONS(4365), - [anon_sym_AMP] = ACTIONS(4365), - [anon_sym_LT_DASH] = ACTIONS(4365), - [sym_none] = ACTIONS(4365), - [sym_true] = ACTIONS(4365), - [sym_false] = ACTIONS(4365), - [sym_nil] = ACTIONS(4365), - [anon_sym_if] = ACTIONS(4365), - [anon_sym_DOLLARif] = ACTIONS(4365), - [anon_sym_match] = ACTIONS(4365), - [anon_sym_select] = ACTIONS(4365), - [anon_sym_lock] = ACTIONS(4365), - [anon_sym_rlock] = ACTIONS(4365), - [anon_sym_unsafe] = ACTIONS(4365), - [anon_sym_sql] = ACTIONS(4365), - [sym_int_literal] = ACTIONS(4365), - [sym_float_literal] = ACTIONS(4365), - [sym_rune_literal] = ACTIONS(4365), - [anon_sym_SQUOTE] = ACTIONS(4365), - [anon_sym_DQUOTE] = ACTIONS(4365), - [anon_sym_c_SQUOTE] = ACTIONS(4365), - [anon_sym_c_DQUOTE] = ACTIONS(4365), - [anon_sym_r_SQUOTE] = ACTIONS(4365), - [anon_sym_r_DQUOTE] = ACTIONS(4365), - [sym_pseudo_compile_time_identifier] = ACTIONS(4365), - [anon_sym_shared] = ACTIONS(4365), - [anon_sym_map_LBRACK] = ACTIONS(4365), - [anon_sym_chan] = ACTIONS(4365), - [anon_sym_thread] = ACTIONS(4365), - [anon_sym_atomic] = ACTIONS(4365), - [anon_sym_assert] = ACTIONS(4365), - [anon_sym_defer] = ACTIONS(4365), - [anon_sym_goto] = ACTIONS(4365), - [anon_sym_break] = ACTIONS(4365), - [anon_sym_continue] = ACTIONS(4365), - [anon_sym_return] = ACTIONS(4365), - [anon_sym_DOLLARfor] = ACTIONS(4365), - [anon_sym_for] = ACTIONS(4365), - [anon_sym_POUND] = ACTIONS(4365), - [anon_sym_asm] = ACTIONS(4365), - [anon_sym_AT_LBRACK] = ACTIONS(4365), + [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), + [anon_sym_SQUOTE] = ACTIONS(4314), + [anon_sym_DQUOTE] = ACTIONS(4314), + [anon_sym_c_SQUOTE] = ACTIONS(4314), + [anon_sym_c_DQUOTE] = ACTIONS(4314), + [anon_sym_r_SQUOTE] = ACTIONS(4314), + [anon_sym_r_DQUOTE] = 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), }, [1535] = { [sym_line_comment] = STATE(1535), [sym_block_comment] = STATE(1535), - [ts_builtin_sym_end] = ACTIONS(4367), - [sym_identifier] = ACTIONS(4369), - [anon_sym_LF] = ACTIONS(4369), - [anon_sym_CR] = ACTIONS(4369), - [anon_sym_CR_LF] = ACTIONS(4369), + [ts_builtin_sym_end] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2705), + [anon_sym_LF] = ACTIONS(2705), + [anon_sym_CR] = ACTIONS(2705), + [anon_sym_CR_LF] = ACTIONS(2705), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4369), - [anon_sym_LBRACE] = ACTIONS(4369), - [anon_sym_const] = ACTIONS(4369), - [anon_sym_LPAREN] = ACTIONS(4369), - [anon_sym___global] = ACTIONS(4369), - [anon_sym_type] = ACTIONS(4369), - [anon_sym_fn] = ACTIONS(4369), - [anon_sym_PLUS] = ACTIONS(4369), - [anon_sym_DASH] = ACTIONS(4369), - [anon_sym_STAR] = ACTIONS(4369), - [anon_sym_struct] = ACTIONS(4369), - [anon_sym_union] = ACTIONS(4369), - [anon_sym_pub] = ACTIONS(4369), - [anon_sym_mut] = ACTIONS(4369), - [anon_sym_enum] = ACTIONS(4369), - [anon_sym_interface] = ACTIONS(4369), - [anon_sym_QMARK] = ACTIONS(4369), - [anon_sym_BANG] = ACTIONS(4369), - [anon_sym_go] = ACTIONS(4369), - [anon_sym_spawn] = ACTIONS(4369), - [anon_sym_json_DOTdecode] = ACTIONS(4369), - [anon_sym_LBRACK2] = ACTIONS(4369), - [anon_sym_TILDE] = ACTIONS(4369), - [anon_sym_CARET] = ACTIONS(4369), - [anon_sym_AMP] = ACTIONS(4369), - [anon_sym_LT_DASH] = ACTIONS(4369), - [sym_none] = ACTIONS(4369), - [sym_true] = ACTIONS(4369), - [sym_false] = ACTIONS(4369), - [sym_nil] = ACTIONS(4369), - [anon_sym_if] = ACTIONS(4369), - [anon_sym_DOLLARif] = ACTIONS(4369), - [anon_sym_match] = ACTIONS(4369), - [anon_sym_select] = ACTIONS(4369), - [anon_sym_lock] = ACTIONS(4369), - [anon_sym_rlock] = ACTIONS(4369), - [anon_sym_unsafe] = ACTIONS(4369), - [anon_sym_sql] = ACTIONS(4369), - [sym_int_literal] = ACTIONS(4369), - [sym_float_literal] = ACTIONS(4369), - [sym_rune_literal] = ACTIONS(4369), - [anon_sym_SQUOTE] = ACTIONS(4369), - [anon_sym_DQUOTE] = ACTIONS(4369), - [anon_sym_c_SQUOTE] = ACTIONS(4369), - [anon_sym_c_DQUOTE] = ACTIONS(4369), - [anon_sym_r_SQUOTE] = ACTIONS(4369), - [anon_sym_r_DQUOTE] = ACTIONS(4369), - [sym_pseudo_compile_time_identifier] = ACTIONS(4369), - [anon_sym_shared] = ACTIONS(4369), - [anon_sym_map_LBRACK] = ACTIONS(4369), - [anon_sym_chan] = ACTIONS(4369), - [anon_sym_thread] = ACTIONS(4369), - [anon_sym_atomic] = ACTIONS(4369), - [anon_sym_assert] = ACTIONS(4369), - [anon_sym_defer] = ACTIONS(4369), - [anon_sym_goto] = ACTIONS(4369), - [anon_sym_break] = ACTIONS(4369), - [anon_sym_continue] = ACTIONS(4369), - [anon_sym_return] = ACTIONS(4369), - [anon_sym_DOLLARfor] = ACTIONS(4369), - [anon_sym_for] = ACTIONS(4369), - [anon_sym_POUND] = ACTIONS(4369), - [anon_sym_asm] = ACTIONS(4369), - [anon_sym_AT_LBRACK] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_const] = ACTIONS(2705), + [anon_sym_LPAREN] = ACTIONS(2705), + [anon_sym___global] = ACTIONS(2705), + [anon_sym_type] = ACTIONS(2705), + [anon_sym_fn] = ACTIONS(2705), + [anon_sym_PLUS] = ACTIONS(2705), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2705), + [anon_sym_struct] = ACTIONS(2705), + [anon_sym_union] = ACTIONS(2705), + [anon_sym_pub] = ACTIONS(2705), + [anon_sym_mut] = ACTIONS(2705), + [anon_sym_enum] = ACTIONS(2705), + [anon_sym_interface] = ACTIONS(2705), + [anon_sym_QMARK] = ACTIONS(2705), + [anon_sym_BANG] = ACTIONS(2705), + [anon_sym_go] = ACTIONS(2705), + [anon_sym_spawn] = ACTIONS(2705), + [anon_sym_json_DOTdecode] = ACTIONS(2705), + [anon_sym_LBRACK2] = ACTIONS(2705), + [anon_sym_TILDE] = ACTIONS(2705), + [anon_sym_CARET] = ACTIONS(2705), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_LT_DASH] = ACTIONS(2705), + [sym_none] = ACTIONS(2705), + [sym_true] = ACTIONS(2705), + [sym_false] = ACTIONS(2705), + [sym_nil] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_DOLLARif] = ACTIONS(2705), + [anon_sym_match] = ACTIONS(2705), + [anon_sym_select] = ACTIONS(2705), + [anon_sym_lock] = ACTIONS(2705), + [anon_sym_rlock] = ACTIONS(2705), + [anon_sym_unsafe] = ACTIONS(2705), + [anon_sym_sql] = ACTIONS(2705), + [sym_int_literal] = ACTIONS(2705), + [sym_float_literal] = ACTIONS(2705), + [sym_rune_literal] = ACTIONS(2705), + [anon_sym_SQUOTE] = ACTIONS(2705), + [anon_sym_DQUOTE] = ACTIONS(2705), + [anon_sym_c_SQUOTE] = ACTIONS(2705), + [anon_sym_c_DQUOTE] = ACTIONS(2705), + [anon_sym_r_SQUOTE] = ACTIONS(2705), + [anon_sym_r_DQUOTE] = ACTIONS(2705), + [sym_pseudo_compile_time_identifier] = ACTIONS(2705), + [anon_sym_shared] = ACTIONS(2705), + [anon_sym_map_LBRACK] = ACTIONS(2705), + [anon_sym_chan] = ACTIONS(2705), + [anon_sym_thread] = ACTIONS(2705), + [anon_sym_atomic] = ACTIONS(2705), + [anon_sym_assert] = ACTIONS(2705), + [anon_sym_defer] = ACTIONS(2705), + [anon_sym_goto] = ACTIONS(2705), + [anon_sym_break] = ACTIONS(2705), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_return] = ACTIONS(2705), + [anon_sym_DOLLARfor] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_POUND] = ACTIONS(2705), + [anon_sym_asm] = ACTIONS(2705), + [anon_sym_AT_LBRACK] = ACTIONS(2705), }, [1536] = { [sym_line_comment] = STATE(1536), [sym_block_comment] = STATE(1536), - [ts_builtin_sym_end] = ACTIONS(4371), - [sym_identifier] = ACTIONS(4373), - [anon_sym_LF] = ACTIONS(4373), - [anon_sym_CR] = ACTIONS(4373), - [anon_sym_CR_LF] = ACTIONS(4373), + [ts_builtin_sym_end] = ACTIONS(2987), + [sym_identifier] = ACTIONS(2989), + [anon_sym_LF] = ACTIONS(2989), + [anon_sym_CR] = ACTIONS(2989), + [anon_sym_CR_LF] = ACTIONS(2989), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_LBRACE] = ACTIONS(4373), - [anon_sym_const] = ACTIONS(4373), - [anon_sym_LPAREN] = ACTIONS(4373), - [anon_sym___global] = ACTIONS(4373), - [anon_sym_type] = ACTIONS(4373), - [anon_sym_fn] = ACTIONS(4373), - [anon_sym_PLUS] = ACTIONS(4373), - [anon_sym_DASH] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4373), - [anon_sym_struct] = ACTIONS(4373), - [anon_sym_union] = ACTIONS(4373), - [anon_sym_pub] = ACTIONS(4373), - [anon_sym_mut] = ACTIONS(4373), - [anon_sym_enum] = ACTIONS(4373), - [anon_sym_interface] = ACTIONS(4373), - [anon_sym_QMARK] = ACTIONS(4373), - [anon_sym_BANG] = ACTIONS(4373), - [anon_sym_go] = ACTIONS(4373), - [anon_sym_spawn] = ACTIONS(4373), - [anon_sym_json_DOTdecode] = ACTIONS(4373), - [anon_sym_LBRACK2] = ACTIONS(4373), - [anon_sym_TILDE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4373), - [anon_sym_AMP] = ACTIONS(4373), - [anon_sym_LT_DASH] = ACTIONS(4373), - [sym_none] = ACTIONS(4373), - [sym_true] = ACTIONS(4373), - [sym_false] = ACTIONS(4373), - [sym_nil] = ACTIONS(4373), - [anon_sym_if] = ACTIONS(4373), - [anon_sym_DOLLARif] = ACTIONS(4373), - [anon_sym_match] = ACTIONS(4373), - [anon_sym_select] = ACTIONS(4373), - [anon_sym_lock] = ACTIONS(4373), - [anon_sym_rlock] = ACTIONS(4373), - [anon_sym_unsafe] = ACTIONS(4373), - [anon_sym_sql] = ACTIONS(4373), - [sym_int_literal] = ACTIONS(4373), - [sym_float_literal] = ACTIONS(4373), - [sym_rune_literal] = ACTIONS(4373), - [anon_sym_SQUOTE] = ACTIONS(4373), - [anon_sym_DQUOTE] = ACTIONS(4373), - [anon_sym_c_SQUOTE] = ACTIONS(4373), - [anon_sym_c_DQUOTE] = ACTIONS(4373), - [anon_sym_r_SQUOTE] = ACTIONS(4373), - [anon_sym_r_DQUOTE] = ACTIONS(4373), - [sym_pseudo_compile_time_identifier] = ACTIONS(4373), - [anon_sym_shared] = ACTIONS(4373), - [anon_sym_map_LBRACK] = ACTIONS(4373), - [anon_sym_chan] = ACTIONS(4373), - [anon_sym_thread] = ACTIONS(4373), - [anon_sym_atomic] = ACTIONS(4373), - [anon_sym_assert] = ACTIONS(4373), - [anon_sym_defer] = ACTIONS(4373), - [anon_sym_goto] = ACTIONS(4373), - [anon_sym_break] = ACTIONS(4373), - [anon_sym_continue] = ACTIONS(4373), - [anon_sym_return] = ACTIONS(4373), - [anon_sym_DOLLARfor] = ACTIONS(4373), - [anon_sym_for] = ACTIONS(4373), - [anon_sym_POUND] = ACTIONS(4373), - [anon_sym_asm] = ACTIONS(4373), - [anon_sym_AT_LBRACK] = ACTIONS(4373), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_const] = ACTIONS(2989), + [anon_sym_LPAREN] = ACTIONS(2989), + [anon_sym___global] = ACTIONS(2989), + [anon_sym_type] = ACTIONS(2989), + [anon_sym_fn] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2989), + [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_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), + [sym_none] = ACTIONS(2989), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [sym_nil] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_DOLLARif] = 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), + [anon_sym_SQUOTE] = ACTIONS(2989), + [anon_sym_DQUOTE] = ACTIONS(2989), + [anon_sym_c_SQUOTE] = ACTIONS(2989), + [anon_sym_c_DQUOTE] = ACTIONS(2989), + [anon_sym_r_SQUOTE] = ACTIONS(2989), + [anon_sym_r_DQUOTE] = 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), }, [1537] = { [sym_line_comment] = STATE(1537), [sym_block_comment] = STATE(1537), - [ts_builtin_sym_end] = ACTIONS(4375), - [sym_identifier] = ACTIONS(4377), - [anon_sym_LF] = ACTIONS(4377), - [anon_sym_CR] = ACTIONS(4377), - [anon_sym_CR_LF] = ACTIONS(4377), + [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(4377), - [anon_sym_LBRACE] = ACTIONS(4377), - [anon_sym_const] = ACTIONS(4377), - [anon_sym_LPAREN] = ACTIONS(4377), - [anon_sym___global] = ACTIONS(4377), - [anon_sym_type] = ACTIONS(4377), - [anon_sym_fn] = ACTIONS(4377), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4377), - [anon_sym_struct] = ACTIONS(4377), - [anon_sym_union] = ACTIONS(4377), - [anon_sym_pub] = ACTIONS(4377), - [anon_sym_mut] = ACTIONS(4377), - [anon_sym_enum] = ACTIONS(4377), - [anon_sym_interface] = ACTIONS(4377), - [anon_sym_QMARK] = ACTIONS(4377), - [anon_sym_BANG] = ACTIONS(4377), - [anon_sym_go] = ACTIONS(4377), - [anon_sym_spawn] = ACTIONS(4377), - [anon_sym_json_DOTdecode] = ACTIONS(4377), - [anon_sym_LBRACK2] = ACTIONS(4377), - [anon_sym_TILDE] = ACTIONS(4377), - [anon_sym_CARET] = ACTIONS(4377), - [anon_sym_AMP] = ACTIONS(4377), - [anon_sym_LT_DASH] = ACTIONS(4377), - [sym_none] = ACTIONS(4377), - [sym_true] = ACTIONS(4377), - [sym_false] = ACTIONS(4377), - [sym_nil] = ACTIONS(4377), - [anon_sym_if] = ACTIONS(4377), - [anon_sym_DOLLARif] = ACTIONS(4377), - [anon_sym_match] = ACTIONS(4377), - [anon_sym_select] = ACTIONS(4377), - [anon_sym_lock] = ACTIONS(4377), - [anon_sym_rlock] = ACTIONS(4377), - [anon_sym_unsafe] = ACTIONS(4377), - [anon_sym_sql] = ACTIONS(4377), - [sym_int_literal] = ACTIONS(4377), - [sym_float_literal] = ACTIONS(4377), - [sym_rune_literal] = ACTIONS(4377), - [anon_sym_SQUOTE] = ACTIONS(4377), - [anon_sym_DQUOTE] = ACTIONS(4377), - [anon_sym_c_SQUOTE] = ACTIONS(4377), - [anon_sym_c_DQUOTE] = ACTIONS(4377), - [anon_sym_r_SQUOTE] = ACTIONS(4377), - [anon_sym_r_DQUOTE] = ACTIONS(4377), - [sym_pseudo_compile_time_identifier] = ACTIONS(4377), - [anon_sym_shared] = ACTIONS(4377), - [anon_sym_map_LBRACK] = ACTIONS(4377), - [anon_sym_chan] = ACTIONS(4377), - [anon_sym_thread] = ACTIONS(4377), - [anon_sym_atomic] = ACTIONS(4377), - [anon_sym_assert] = ACTIONS(4377), - [anon_sym_defer] = ACTIONS(4377), - [anon_sym_goto] = ACTIONS(4377), - [anon_sym_break] = ACTIONS(4377), - [anon_sym_continue] = ACTIONS(4377), - [anon_sym_return] = ACTIONS(4377), - [anon_sym_DOLLARfor] = ACTIONS(4377), - [anon_sym_for] = ACTIONS(4377), - [anon_sym_POUND] = ACTIONS(4377), - [anon_sym_asm] = ACTIONS(4377), - [anon_sym_AT_LBRACK] = ACTIONS(4377), + [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), + [anon_sym_SQUOTE] = ACTIONS(4318), + [anon_sym_DQUOTE] = ACTIONS(4318), + [anon_sym_c_SQUOTE] = ACTIONS(4318), + [anon_sym_c_DQUOTE] = ACTIONS(4318), + [anon_sym_r_SQUOTE] = ACTIONS(4318), + [anon_sym_r_DQUOTE] = 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), }, [1538] = { [sym_line_comment] = STATE(1538), [sym_block_comment] = STATE(1538), - [ts_builtin_sym_end] = ACTIONS(4379), - [sym_identifier] = ACTIONS(4381), - [anon_sym_LF] = ACTIONS(4381), - [anon_sym_CR] = ACTIONS(4381), - [anon_sym_CR_LF] = ACTIONS(4381), + [ts_builtin_sym_end] = ACTIONS(2979), + [sym_identifier] = ACTIONS(2981), + [anon_sym_LF] = ACTIONS(2981), + [anon_sym_CR] = ACTIONS(2981), + [anon_sym_CR_LF] = ACTIONS(2981), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4381), - [anon_sym_LBRACE] = ACTIONS(4381), - [anon_sym_const] = ACTIONS(4381), - [anon_sym_LPAREN] = ACTIONS(4381), - [anon_sym___global] = ACTIONS(4381), - [anon_sym_type] = ACTIONS(4381), - [anon_sym_fn] = ACTIONS(4381), - [anon_sym_PLUS] = ACTIONS(4381), - [anon_sym_DASH] = ACTIONS(4381), - [anon_sym_STAR] = ACTIONS(4381), - [anon_sym_struct] = ACTIONS(4381), - [anon_sym_union] = ACTIONS(4381), - [anon_sym_pub] = ACTIONS(4381), - [anon_sym_mut] = ACTIONS(4381), - [anon_sym_enum] = ACTIONS(4381), - [anon_sym_interface] = ACTIONS(4381), - [anon_sym_QMARK] = ACTIONS(4381), - [anon_sym_BANG] = ACTIONS(4381), - [anon_sym_go] = ACTIONS(4381), - [anon_sym_spawn] = ACTIONS(4381), - [anon_sym_json_DOTdecode] = ACTIONS(4381), - [anon_sym_LBRACK2] = ACTIONS(4381), - [anon_sym_TILDE] = ACTIONS(4381), - [anon_sym_CARET] = ACTIONS(4381), - [anon_sym_AMP] = ACTIONS(4381), - [anon_sym_LT_DASH] = ACTIONS(4381), - [sym_none] = ACTIONS(4381), - [sym_true] = ACTIONS(4381), - [sym_false] = ACTIONS(4381), - [sym_nil] = ACTIONS(4381), - [anon_sym_if] = ACTIONS(4381), - [anon_sym_DOLLARif] = ACTIONS(4381), - [anon_sym_match] = ACTIONS(4381), - [anon_sym_select] = ACTIONS(4381), - [anon_sym_lock] = ACTIONS(4381), - [anon_sym_rlock] = ACTIONS(4381), - [anon_sym_unsafe] = ACTIONS(4381), - [anon_sym_sql] = ACTIONS(4381), - [sym_int_literal] = ACTIONS(4381), - [sym_float_literal] = ACTIONS(4381), - [sym_rune_literal] = ACTIONS(4381), - [anon_sym_SQUOTE] = ACTIONS(4381), - [anon_sym_DQUOTE] = ACTIONS(4381), - [anon_sym_c_SQUOTE] = ACTIONS(4381), - [anon_sym_c_DQUOTE] = ACTIONS(4381), - [anon_sym_r_SQUOTE] = ACTIONS(4381), - [anon_sym_r_DQUOTE] = ACTIONS(4381), - [sym_pseudo_compile_time_identifier] = ACTIONS(4381), - [anon_sym_shared] = ACTIONS(4381), - [anon_sym_map_LBRACK] = ACTIONS(4381), - [anon_sym_chan] = ACTIONS(4381), - [anon_sym_thread] = ACTIONS(4381), - [anon_sym_atomic] = ACTIONS(4381), - [anon_sym_assert] = ACTIONS(4381), - [anon_sym_defer] = ACTIONS(4381), - [anon_sym_goto] = ACTIONS(4381), - [anon_sym_break] = ACTIONS(4381), - [anon_sym_continue] = ACTIONS(4381), - [anon_sym_return] = ACTIONS(4381), - [anon_sym_DOLLARfor] = ACTIONS(4381), - [anon_sym_for] = ACTIONS(4381), - [anon_sym_POUND] = ACTIONS(4381), - [anon_sym_asm] = ACTIONS(4381), - [anon_sym_AT_LBRACK] = ACTIONS(4381), + [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_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), + [anon_sym_SQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE] = ACTIONS(2981), + [anon_sym_c_SQUOTE] = ACTIONS(2981), + [anon_sym_c_DQUOTE] = ACTIONS(2981), + [anon_sym_r_SQUOTE] = ACTIONS(2981), + [anon_sym_r_DQUOTE] = 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), }, [1539] = { [sym_line_comment] = STATE(1539), [sym_block_comment] = STATE(1539), - [ts_builtin_sym_end] = ACTIONS(4383), - [sym_identifier] = ACTIONS(4385), - [anon_sym_LF] = ACTIONS(4385), - [anon_sym_CR] = ACTIONS(4385), - [anon_sym_CR_LF] = ACTIONS(4385), + [ts_builtin_sym_end] = ACTIONS(2963), + [sym_identifier] = ACTIONS(2965), + [anon_sym_LF] = ACTIONS(2965), + [anon_sym_CR] = ACTIONS(2965), + [anon_sym_CR_LF] = ACTIONS(2965), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4385), - [anon_sym_const] = ACTIONS(4385), - [anon_sym_LPAREN] = ACTIONS(4385), - [anon_sym___global] = ACTIONS(4385), - [anon_sym_type] = ACTIONS(4385), - [anon_sym_fn] = ACTIONS(4385), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [anon_sym_struct] = ACTIONS(4385), - [anon_sym_union] = ACTIONS(4385), - [anon_sym_pub] = ACTIONS(4385), - [anon_sym_mut] = ACTIONS(4385), - [anon_sym_enum] = ACTIONS(4385), - [anon_sym_interface] = ACTIONS(4385), - [anon_sym_QMARK] = ACTIONS(4385), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_go] = ACTIONS(4385), - [anon_sym_spawn] = ACTIONS(4385), - [anon_sym_json_DOTdecode] = ACTIONS(4385), - [anon_sym_LBRACK2] = ACTIONS(4385), - [anon_sym_TILDE] = ACTIONS(4385), - [anon_sym_CARET] = ACTIONS(4385), - [anon_sym_AMP] = ACTIONS(4385), - [anon_sym_LT_DASH] = ACTIONS(4385), - [sym_none] = ACTIONS(4385), - [sym_true] = ACTIONS(4385), - [sym_false] = ACTIONS(4385), - [sym_nil] = ACTIONS(4385), - [anon_sym_if] = ACTIONS(4385), - [anon_sym_DOLLARif] = ACTIONS(4385), - [anon_sym_match] = ACTIONS(4385), - [anon_sym_select] = ACTIONS(4385), - [anon_sym_lock] = ACTIONS(4385), - [anon_sym_rlock] = ACTIONS(4385), - [anon_sym_unsafe] = ACTIONS(4385), - [anon_sym_sql] = ACTIONS(4385), - [sym_int_literal] = ACTIONS(4385), - [sym_float_literal] = ACTIONS(4385), - [sym_rune_literal] = ACTIONS(4385), - [anon_sym_SQUOTE] = ACTIONS(4385), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_c_SQUOTE] = ACTIONS(4385), - [anon_sym_c_DQUOTE] = ACTIONS(4385), - [anon_sym_r_SQUOTE] = ACTIONS(4385), - [anon_sym_r_DQUOTE] = ACTIONS(4385), - [sym_pseudo_compile_time_identifier] = ACTIONS(4385), - [anon_sym_shared] = ACTIONS(4385), - [anon_sym_map_LBRACK] = ACTIONS(4385), - [anon_sym_chan] = ACTIONS(4385), - [anon_sym_thread] = ACTIONS(4385), - [anon_sym_atomic] = ACTIONS(4385), - [anon_sym_assert] = ACTIONS(4385), - [anon_sym_defer] = ACTIONS(4385), - [anon_sym_goto] = ACTIONS(4385), - [anon_sym_break] = ACTIONS(4385), - [anon_sym_continue] = ACTIONS(4385), - [anon_sym_return] = ACTIONS(4385), - [anon_sym_DOLLARfor] = ACTIONS(4385), - [anon_sym_for] = ACTIONS(4385), - [anon_sym_POUND] = ACTIONS(4385), - [anon_sym_asm] = ACTIONS(4385), - [anon_sym_AT_LBRACK] = ACTIONS(4385), + [anon_sym_DOT] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_const] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym___global] = ACTIONS(2965), + [anon_sym_type] = ACTIONS(2965), + [anon_sym_fn] = ACTIONS(2965), + [anon_sym_PLUS] = ACTIONS(2965), + [anon_sym_DASH] = ACTIONS(2965), + [anon_sym_STAR] = ACTIONS(2965), + [anon_sym_struct] = ACTIONS(2965), + [anon_sym_union] = ACTIONS(2965), + [anon_sym_pub] = ACTIONS(2965), + [anon_sym_mut] = ACTIONS(2965), + [anon_sym_enum] = ACTIONS(2965), + [anon_sym_interface] = ACTIONS(2965), + [anon_sym_QMARK] = ACTIONS(2965), + [anon_sym_BANG] = ACTIONS(2965), + [anon_sym_go] = ACTIONS(2965), + [anon_sym_spawn] = ACTIONS(2965), + [anon_sym_json_DOTdecode] = ACTIONS(2965), + [anon_sym_LBRACK2] = ACTIONS(2965), + [anon_sym_TILDE] = ACTIONS(2965), + [anon_sym_CARET] = ACTIONS(2965), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_LT_DASH] = ACTIONS(2965), + [sym_none] = ACTIONS(2965), + [sym_true] = ACTIONS(2965), + [sym_false] = ACTIONS(2965), + [sym_nil] = ACTIONS(2965), + [anon_sym_if] = ACTIONS(2965), + [anon_sym_DOLLARif] = ACTIONS(2965), + [anon_sym_match] = ACTIONS(2965), + [anon_sym_select] = ACTIONS(2965), + [anon_sym_lock] = ACTIONS(2965), + [anon_sym_rlock] = ACTIONS(2965), + [anon_sym_unsafe] = ACTIONS(2965), + [anon_sym_sql] = ACTIONS(2965), + [sym_int_literal] = ACTIONS(2965), + [sym_float_literal] = ACTIONS(2965), + [sym_rune_literal] = ACTIONS(2965), + [anon_sym_SQUOTE] = ACTIONS(2965), + [anon_sym_DQUOTE] = ACTIONS(2965), + [anon_sym_c_SQUOTE] = ACTIONS(2965), + [anon_sym_c_DQUOTE] = ACTIONS(2965), + [anon_sym_r_SQUOTE] = ACTIONS(2965), + [anon_sym_r_DQUOTE] = ACTIONS(2965), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), + [anon_sym_shared] = ACTIONS(2965), + [anon_sym_map_LBRACK] = ACTIONS(2965), + [anon_sym_chan] = ACTIONS(2965), + [anon_sym_thread] = ACTIONS(2965), + [anon_sym_atomic] = ACTIONS(2965), + [anon_sym_assert] = ACTIONS(2965), + [anon_sym_defer] = ACTIONS(2965), + [anon_sym_goto] = ACTIONS(2965), + [anon_sym_break] = ACTIONS(2965), + [anon_sym_continue] = ACTIONS(2965), + [anon_sym_return] = ACTIONS(2965), + [anon_sym_DOLLARfor] = ACTIONS(2965), + [anon_sym_for] = ACTIONS(2965), + [anon_sym_POUND] = ACTIONS(2965), + [anon_sym_asm] = ACTIONS(2965), + [anon_sym_AT_LBRACK] = ACTIONS(2965), }, [1540] = { [sym_line_comment] = STATE(1540), [sym_block_comment] = STATE(1540), - [ts_builtin_sym_end] = ACTIONS(4387), - [sym_identifier] = ACTIONS(4389), - [anon_sym_LF] = ACTIONS(4389), - [anon_sym_CR] = ACTIONS(4389), - [anon_sym_CR_LF] = ACTIONS(4389), + [ts_builtin_sym_end] = ACTIONS(2959), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LF] = ACTIONS(2961), + [anon_sym_CR] = ACTIONS(2961), + [anon_sym_CR_LF] = ACTIONS(2961), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4389), - [anon_sym_const] = ACTIONS(4389), - [anon_sym_LPAREN] = ACTIONS(4389), - [anon_sym___global] = ACTIONS(4389), - [anon_sym_type] = ACTIONS(4389), - [anon_sym_fn] = ACTIONS(4389), - [anon_sym_PLUS] = ACTIONS(4389), - [anon_sym_DASH] = ACTIONS(4389), - [anon_sym_STAR] = ACTIONS(4389), - [anon_sym_struct] = ACTIONS(4389), - [anon_sym_union] = ACTIONS(4389), - [anon_sym_pub] = ACTIONS(4389), - [anon_sym_mut] = ACTIONS(4389), - [anon_sym_enum] = ACTIONS(4389), - [anon_sym_interface] = ACTIONS(4389), - [anon_sym_QMARK] = ACTIONS(4389), - [anon_sym_BANG] = ACTIONS(4389), - [anon_sym_go] = ACTIONS(4389), - [anon_sym_spawn] = ACTIONS(4389), - [anon_sym_json_DOTdecode] = ACTIONS(4389), - [anon_sym_LBRACK2] = ACTIONS(4389), - [anon_sym_TILDE] = ACTIONS(4389), - [anon_sym_CARET] = ACTIONS(4389), - [anon_sym_AMP] = ACTIONS(4389), - [anon_sym_LT_DASH] = ACTIONS(4389), - [sym_none] = ACTIONS(4389), - [sym_true] = ACTIONS(4389), - [sym_false] = ACTIONS(4389), - [sym_nil] = ACTIONS(4389), - [anon_sym_if] = ACTIONS(4389), - [anon_sym_DOLLARif] = ACTIONS(4389), - [anon_sym_match] = ACTIONS(4389), - [anon_sym_select] = ACTIONS(4389), - [anon_sym_lock] = ACTIONS(4389), - [anon_sym_rlock] = ACTIONS(4389), - [anon_sym_unsafe] = ACTIONS(4389), - [anon_sym_sql] = ACTIONS(4389), - [sym_int_literal] = ACTIONS(4389), - [sym_float_literal] = ACTIONS(4389), - [sym_rune_literal] = ACTIONS(4389), - [anon_sym_SQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE] = ACTIONS(4389), - [anon_sym_c_SQUOTE] = ACTIONS(4389), - [anon_sym_c_DQUOTE] = ACTIONS(4389), - [anon_sym_r_SQUOTE] = ACTIONS(4389), - [anon_sym_r_DQUOTE] = ACTIONS(4389), - [sym_pseudo_compile_time_identifier] = ACTIONS(4389), - [anon_sym_shared] = ACTIONS(4389), - [anon_sym_map_LBRACK] = ACTIONS(4389), - [anon_sym_chan] = ACTIONS(4389), - [anon_sym_thread] = ACTIONS(4389), - [anon_sym_atomic] = ACTIONS(4389), - [anon_sym_assert] = ACTIONS(4389), - [anon_sym_defer] = ACTIONS(4389), - [anon_sym_goto] = ACTIONS(4389), - [anon_sym_break] = ACTIONS(4389), - [anon_sym_continue] = ACTIONS(4389), - [anon_sym_return] = ACTIONS(4389), - [anon_sym_DOLLARfor] = ACTIONS(4389), - [anon_sym_for] = ACTIONS(4389), - [anon_sym_POUND] = ACTIONS(4389), - [anon_sym_asm] = ACTIONS(4389), - [anon_sym_AT_LBRACK] = ACTIONS(4389), + [anon_sym_DOT] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2961), + [anon_sym_const] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2961), + [anon_sym___global] = ACTIONS(2961), + [anon_sym_type] = ACTIONS(2961), + [anon_sym_fn] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2961), + [anon_sym_struct] = ACTIONS(2961), + [anon_sym_union] = ACTIONS(2961), + [anon_sym_pub] = ACTIONS(2961), + [anon_sym_mut] = ACTIONS(2961), + [anon_sym_enum] = ACTIONS(2961), + [anon_sym_interface] = ACTIONS(2961), + [anon_sym_QMARK] = ACTIONS(2961), + [anon_sym_BANG] = ACTIONS(2961), + [anon_sym_go] = ACTIONS(2961), + [anon_sym_spawn] = ACTIONS(2961), + [anon_sym_json_DOTdecode] = ACTIONS(2961), + [anon_sym_LBRACK2] = ACTIONS(2961), + [anon_sym_TILDE] = ACTIONS(2961), + [anon_sym_CARET] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2961), + [sym_none] = ACTIONS(2961), + [sym_true] = ACTIONS(2961), + [sym_false] = ACTIONS(2961), + [sym_nil] = ACTIONS(2961), + [anon_sym_if] = ACTIONS(2961), + [anon_sym_DOLLARif] = ACTIONS(2961), + [anon_sym_match] = ACTIONS(2961), + [anon_sym_select] = ACTIONS(2961), + [anon_sym_lock] = ACTIONS(2961), + [anon_sym_rlock] = ACTIONS(2961), + [anon_sym_unsafe] = ACTIONS(2961), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2961), + [sym_float_literal] = ACTIONS(2961), + [sym_rune_literal] = ACTIONS(2961), + [anon_sym_SQUOTE] = ACTIONS(2961), + [anon_sym_DQUOTE] = ACTIONS(2961), + [anon_sym_c_SQUOTE] = ACTIONS(2961), + [anon_sym_c_DQUOTE] = ACTIONS(2961), + [anon_sym_r_SQUOTE] = ACTIONS(2961), + [anon_sym_r_DQUOTE] = ACTIONS(2961), + [sym_pseudo_compile_time_identifier] = ACTIONS(2961), + [anon_sym_shared] = ACTIONS(2961), + [anon_sym_map_LBRACK] = ACTIONS(2961), + [anon_sym_chan] = ACTIONS(2961), + [anon_sym_thread] = ACTIONS(2961), + [anon_sym_atomic] = ACTIONS(2961), + [anon_sym_assert] = ACTIONS(2961), + [anon_sym_defer] = ACTIONS(2961), + [anon_sym_goto] = ACTIONS(2961), + [anon_sym_break] = ACTIONS(2961), + [anon_sym_continue] = ACTIONS(2961), + [anon_sym_return] = ACTIONS(2961), + [anon_sym_DOLLARfor] = ACTIONS(2961), + [anon_sym_for] = ACTIONS(2961), + [anon_sym_POUND] = ACTIONS(2961), + [anon_sym_asm] = ACTIONS(2961), + [anon_sym_AT_LBRACK] = ACTIONS(2961), }, [1541] = { [sym_line_comment] = STATE(1541), [sym_block_comment] = STATE(1541), - [ts_builtin_sym_end] = ACTIONS(4391), - [sym_identifier] = ACTIONS(4393), - [anon_sym_LF] = ACTIONS(4393), - [anon_sym_CR] = ACTIONS(4393), - [anon_sym_CR_LF] = ACTIONS(4393), + [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), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4393), - [anon_sym_const] = ACTIONS(4393), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym___global] = ACTIONS(4393), - [anon_sym_type] = ACTIONS(4393), - [anon_sym_fn] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4393), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_struct] = ACTIONS(4393), - [anon_sym_union] = ACTIONS(4393), - [anon_sym_pub] = ACTIONS(4393), - [anon_sym_mut] = ACTIONS(4393), - [anon_sym_enum] = ACTIONS(4393), - [anon_sym_interface] = ACTIONS(4393), - [anon_sym_QMARK] = ACTIONS(4393), - [anon_sym_BANG] = ACTIONS(4393), - [anon_sym_go] = ACTIONS(4393), - [anon_sym_spawn] = ACTIONS(4393), - [anon_sym_json_DOTdecode] = ACTIONS(4393), - [anon_sym_LBRACK2] = ACTIONS(4393), - [anon_sym_TILDE] = ACTIONS(4393), - [anon_sym_CARET] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym_LT_DASH] = ACTIONS(4393), - [sym_none] = ACTIONS(4393), - [sym_true] = ACTIONS(4393), - [sym_false] = ACTIONS(4393), - [sym_nil] = ACTIONS(4393), - [anon_sym_if] = ACTIONS(4393), - [anon_sym_DOLLARif] = ACTIONS(4393), - [anon_sym_match] = ACTIONS(4393), - [anon_sym_select] = ACTIONS(4393), - [anon_sym_lock] = ACTIONS(4393), - [anon_sym_rlock] = ACTIONS(4393), - [anon_sym_unsafe] = ACTIONS(4393), - [anon_sym_sql] = ACTIONS(4393), - [sym_int_literal] = ACTIONS(4393), - [sym_float_literal] = ACTIONS(4393), - [sym_rune_literal] = ACTIONS(4393), - [anon_sym_SQUOTE] = ACTIONS(4393), - [anon_sym_DQUOTE] = ACTIONS(4393), - [anon_sym_c_SQUOTE] = ACTIONS(4393), - [anon_sym_c_DQUOTE] = ACTIONS(4393), - [anon_sym_r_SQUOTE] = ACTIONS(4393), - [anon_sym_r_DQUOTE] = ACTIONS(4393), - [sym_pseudo_compile_time_identifier] = ACTIONS(4393), - [anon_sym_shared] = ACTIONS(4393), - [anon_sym_map_LBRACK] = ACTIONS(4393), - [anon_sym_chan] = ACTIONS(4393), - [anon_sym_thread] = ACTIONS(4393), - [anon_sym_atomic] = ACTIONS(4393), - [anon_sym_assert] = ACTIONS(4393), - [anon_sym_defer] = ACTIONS(4393), - [anon_sym_goto] = ACTIONS(4393), - [anon_sym_break] = ACTIONS(4393), - [anon_sym_continue] = ACTIONS(4393), - [anon_sym_return] = ACTIONS(4393), - [anon_sym_DOLLARfor] = ACTIONS(4393), - [anon_sym_for] = ACTIONS(4393), - [anon_sym_POUND] = ACTIONS(4393), - [anon_sym_asm] = ACTIONS(4393), - [anon_sym_AT_LBRACK] = ACTIONS(4393), + [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_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), + [anon_sym_SQUOTE] = ACTIONS(4037), + [anon_sym_DQUOTE] = ACTIONS(4037), + [anon_sym_c_SQUOTE] = ACTIONS(4037), + [anon_sym_c_DQUOTE] = ACTIONS(4037), + [anon_sym_r_SQUOTE] = ACTIONS(4037), + [anon_sym_r_DQUOTE] = 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), }, [1542] = { [sym_line_comment] = STATE(1542), [sym_block_comment] = STATE(1542), - [ts_builtin_sym_end] = ACTIONS(4395), - [sym_identifier] = ACTIONS(4397), - [anon_sym_LF] = ACTIONS(4397), - [anon_sym_CR] = ACTIONS(4397), - [anon_sym_CR_LF] = ACTIONS(4397), + [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(4397), - [anon_sym_LBRACE] = ACTIONS(4397), - [anon_sym_const] = ACTIONS(4397), - [anon_sym_LPAREN] = ACTIONS(4397), - [anon_sym___global] = ACTIONS(4397), - [anon_sym_type] = ACTIONS(4397), - [anon_sym_fn] = ACTIONS(4397), - [anon_sym_PLUS] = ACTIONS(4397), - [anon_sym_DASH] = ACTIONS(4397), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_struct] = ACTIONS(4397), - [anon_sym_union] = ACTIONS(4397), - [anon_sym_pub] = ACTIONS(4397), - [anon_sym_mut] = ACTIONS(4397), - [anon_sym_enum] = ACTIONS(4397), - [anon_sym_interface] = ACTIONS(4397), - [anon_sym_QMARK] = ACTIONS(4397), - [anon_sym_BANG] = ACTIONS(4397), - [anon_sym_go] = ACTIONS(4397), - [anon_sym_spawn] = ACTIONS(4397), - [anon_sym_json_DOTdecode] = ACTIONS(4397), - [anon_sym_LBRACK2] = ACTIONS(4397), - [anon_sym_TILDE] = ACTIONS(4397), - [anon_sym_CARET] = ACTIONS(4397), - [anon_sym_AMP] = ACTIONS(4397), - [anon_sym_LT_DASH] = ACTIONS(4397), - [sym_none] = ACTIONS(4397), - [sym_true] = ACTIONS(4397), - [sym_false] = ACTIONS(4397), - [sym_nil] = ACTIONS(4397), - [anon_sym_if] = ACTIONS(4397), - [anon_sym_DOLLARif] = ACTIONS(4397), - [anon_sym_match] = ACTIONS(4397), - [anon_sym_select] = ACTIONS(4397), - [anon_sym_lock] = ACTIONS(4397), - [anon_sym_rlock] = ACTIONS(4397), - [anon_sym_unsafe] = ACTIONS(4397), - [anon_sym_sql] = ACTIONS(4397), - [sym_int_literal] = ACTIONS(4397), - [sym_float_literal] = ACTIONS(4397), - [sym_rune_literal] = ACTIONS(4397), - [anon_sym_SQUOTE] = ACTIONS(4397), - [anon_sym_DQUOTE] = ACTIONS(4397), - [anon_sym_c_SQUOTE] = ACTIONS(4397), - [anon_sym_c_DQUOTE] = ACTIONS(4397), - [anon_sym_r_SQUOTE] = ACTIONS(4397), - [anon_sym_r_DQUOTE] = ACTIONS(4397), - [sym_pseudo_compile_time_identifier] = ACTIONS(4397), - [anon_sym_shared] = ACTIONS(4397), - [anon_sym_map_LBRACK] = ACTIONS(4397), - [anon_sym_chan] = ACTIONS(4397), - [anon_sym_thread] = ACTIONS(4397), - [anon_sym_atomic] = ACTIONS(4397), - [anon_sym_assert] = ACTIONS(4397), - [anon_sym_defer] = ACTIONS(4397), - [anon_sym_goto] = ACTIONS(4397), - [anon_sym_break] = ACTIONS(4397), - [anon_sym_continue] = ACTIONS(4397), - [anon_sym_return] = ACTIONS(4397), - [anon_sym_DOLLARfor] = ACTIONS(4397), - [anon_sym_for] = ACTIONS(4397), - [anon_sym_POUND] = ACTIONS(4397), - [anon_sym_asm] = ACTIONS(4397), - [anon_sym_AT_LBRACK] = ACTIONS(4397), + [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), + [anon_sym_SQUOTE] = ACTIONS(4322), + [anon_sym_DQUOTE] = ACTIONS(4322), + [anon_sym_c_SQUOTE] = ACTIONS(4322), + [anon_sym_c_DQUOTE] = ACTIONS(4322), + [anon_sym_r_SQUOTE] = ACTIONS(4322), + [anon_sym_r_DQUOTE] = 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), }, [1543] = { [sym_line_comment] = STATE(1543), [sym_block_comment] = STATE(1543), - [ts_builtin_sym_end] = ACTIONS(4399), - [sym_identifier] = ACTIONS(4401), - [anon_sym_LF] = ACTIONS(4401), - [anon_sym_CR] = ACTIONS(4401), - [anon_sym_CR_LF] = ACTIONS(4401), + [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(4401), - [anon_sym_LBRACE] = ACTIONS(4401), - [anon_sym_const] = ACTIONS(4401), - [anon_sym_LPAREN] = ACTIONS(4401), - [anon_sym___global] = ACTIONS(4401), - [anon_sym_type] = ACTIONS(4401), - [anon_sym_fn] = ACTIONS(4401), - [anon_sym_PLUS] = ACTIONS(4401), - [anon_sym_DASH] = ACTIONS(4401), - [anon_sym_STAR] = ACTIONS(4401), - [anon_sym_struct] = ACTIONS(4401), - [anon_sym_union] = ACTIONS(4401), - [anon_sym_pub] = ACTIONS(4401), - [anon_sym_mut] = ACTIONS(4401), - [anon_sym_enum] = ACTIONS(4401), - [anon_sym_interface] = ACTIONS(4401), - [anon_sym_QMARK] = ACTIONS(4401), - [anon_sym_BANG] = ACTIONS(4401), - [anon_sym_go] = ACTIONS(4401), - [anon_sym_spawn] = ACTIONS(4401), - [anon_sym_json_DOTdecode] = ACTIONS(4401), - [anon_sym_LBRACK2] = ACTIONS(4401), - [anon_sym_TILDE] = ACTIONS(4401), - [anon_sym_CARET] = ACTIONS(4401), - [anon_sym_AMP] = ACTIONS(4401), - [anon_sym_LT_DASH] = ACTIONS(4401), - [sym_none] = ACTIONS(4401), - [sym_true] = ACTIONS(4401), - [sym_false] = ACTIONS(4401), - [sym_nil] = ACTIONS(4401), - [anon_sym_if] = ACTIONS(4401), - [anon_sym_DOLLARif] = ACTIONS(4401), - [anon_sym_match] = ACTIONS(4401), - [anon_sym_select] = ACTIONS(4401), - [anon_sym_lock] = ACTIONS(4401), - [anon_sym_rlock] = ACTIONS(4401), - [anon_sym_unsafe] = ACTIONS(4401), - [anon_sym_sql] = ACTIONS(4401), - [sym_int_literal] = ACTIONS(4401), - [sym_float_literal] = ACTIONS(4401), - [sym_rune_literal] = ACTIONS(4401), - [anon_sym_SQUOTE] = ACTIONS(4401), - [anon_sym_DQUOTE] = ACTIONS(4401), - [anon_sym_c_SQUOTE] = ACTIONS(4401), - [anon_sym_c_DQUOTE] = ACTIONS(4401), - [anon_sym_r_SQUOTE] = ACTIONS(4401), - [anon_sym_r_DQUOTE] = ACTIONS(4401), - [sym_pseudo_compile_time_identifier] = ACTIONS(4401), - [anon_sym_shared] = ACTIONS(4401), - [anon_sym_map_LBRACK] = ACTIONS(4401), - [anon_sym_chan] = ACTIONS(4401), - [anon_sym_thread] = ACTIONS(4401), - [anon_sym_atomic] = ACTIONS(4401), - [anon_sym_assert] = ACTIONS(4401), - [anon_sym_defer] = ACTIONS(4401), - [anon_sym_goto] = ACTIONS(4401), - [anon_sym_break] = ACTIONS(4401), - [anon_sym_continue] = ACTIONS(4401), - [anon_sym_return] = ACTIONS(4401), - [anon_sym_DOLLARfor] = ACTIONS(4401), - [anon_sym_for] = ACTIONS(4401), - [anon_sym_POUND] = ACTIONS(4401), - [anon_sym_asm] = ACTIONS(4401), - [anon_sym_AT_LBRACK] = ACTIONS(4401), + [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), + [anon_sym_SQUOTE] = ACTIONS(4326), + [anon_sym_DQUOTE] = ACTIONS(4326), + [anon_sym_c_SQUOTE] = ACTIONS(4326), + [anon_sym_c_DQUOTE] = ACTIONS(4326), + [anon_sym_r_SQUOTE] = ACTIONS(4326), + [anon_sym_r_DQUOTE] = 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), }, [1544] = { [sym_line_comment] = STATE(1544), [sym_block_comment] = STATE(1544), - [ts_builtin_sym_end] = ACTIONS(4403), - [sym_identifier] = ACTIONS(4405), - [anon_sym_LF] = ACTIONS(4405), - [anon_sym_CR] = ACTIONS(4405), - [anon_sym_CR_LF] = ACTIONS(4405), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(4405), - [anon_sym_const] = ACTIONS(4405), - [anon_sym_LPAREN] = ACTIONS(4405), - [anon_sym___global] = ACTIONS(4405), - [anon_sym_type] = ACTIONS(4405), - [anon_sym_fn] = ACTIONS(4405), - [anon_sym_PLUS] = ACTIONS(4405), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_STAR] = ACTIONS(4405), - [anon_sym_struct] = ACTIONS(4405), - [anon_sym_union] = ACTIONS(4405), - [anon_sym_pub] = ACTIONS(4405), - [anon_sym_mut] = ACTIONS(4405), - [anon_sym_enum] = ACTIONS(4405), - [anon_sym_interface] = ACTIONS(4405), - [anon_sym_QMARK] = ACTIONS(4405), - [anon_sym_BANG] = ACTIONS(4405), - [anon_sym_go] = ACTIONS(4405), - [anon_sym_spawn] = ACTIONS(4405), - [anon_sym_json_DOTdecode] = ACTIONS(4405), - [anon_sym_LBRACK2] = ACTIONS(4405), - [anon_sym_TILDE] = ACTIONS(4405), - [anon_sym_CARET] = ACTIONS(4405), - [anon_sym_AMP] = ACTIONS(4405), - [anon_sym_LT_DASH] = ACTIONS(4405), - [sym_none] = ACTIONS(4405), - [sym_true] = ACTIONS(4405), - [sym_false] = ACTIONS(4405), - [sym_nil] = ACTIONS(4405), - [anon_sym_if] = ACTIONS(4405), - [anon_sym_DOLLARif] = ACTIONS(4405), - [anon_sym_match] = ACTIONS(4405), - [anon_sym_select] = ACTIONS(4405), - [anon_sym_lock] = ACTIONS(4405), - [anon_sym_rlock] = ACTIONS(4405), - [anon_sym_unsafe] = ACTIONS(4405), - [anon_sym_sql] = ACTIONS(4405), - [sym_int_literal] = ACTIONS(4405), - [sym_float_literal] = ACTIONS(4405), - [sym_rune_literal] = ACTIONS(4405), - [anon_sym_SQUOTE] = ACTIONS(4405), - [anon_sym_DQUOTE] = ACTIONS(4405), - [anon_sym_c_SQUOTE] = ACTIONS(4405), - [anon_sym_c_DQUOTE] = ACTIONS(4405), - [anon_sym_r_SQUOTE] = ACTIONS(4405), - [anon_sym_r_DQUOTE] = ACTIONS(4405), - [sym_pseudo_compile_time_identifier] = ACTIONS(4405), - [anon_sym_shared] = ACTIONS(4405), - [anon_sym_map_LBRACK] = ACTIONS(4405), - [anon_sym_chan] = ACTIONS(4405), - [anon_sym_thread] = ACTIONS(4405), - [anon_sym_atomic] = ACTIONS(4405), - [anon_sym_assert] = ACTIONS(4405), - [anon_sym_defer] = ACTIONS(4405), - [anon_sym_goto] = ACTIONS(4405), - [anon_sym_break] = ACTIONS(4405), - [anon_sym_continue] = ACTIONS(4405), - [anon_sym_return] = ACTIONS(4405), - [anon_sym_DOLLARfor] = ACTIONS(4405), - [anon_sym_for] = ACTIONS(4405), - [anon_sym_POUND] = ACTIONS(4405), - [anon_sym_asm] = ACTIONS(4405), - [anon_sym_AT_LBRACK] = ACTIONS(4405), + [sym_import_declaration] = STATE(1624), + [aux_sym_import_list_repeat1] = STATE(1605), + [ts_builtin_sym_end] = ACTIONS(4328), + [sym_identifier] = ACTIONS(4330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_import] = ACTIONS(15), + [anon_sym_DOT] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4328), + [anon_sym_const] = ACTIONS(4330), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym___global] = ACTIONS(4330), + [anon_sym_type] = ACTIONS(4330), + [anon_sym_fn] = ACTIONS(4330), + [anon_sym_PLUS] = ACTIONS(4328), + [anon_sym_DASH] = ACTIONS(4328), + [anon_sym_STAR] = ACTIONS(4328), + [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(4328), + [anon_sym_BANG] = ACTIONS(4328), + [anon_sym_go] = ACTIONS(4330), + [anon_sym_spawn] = ACTIONS(4330), + [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(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(4328), + [sym_rune_literal] = ACTIONS(4328), + [anon_sym_SQUOTE] = ACTIONS(4328), + [anon_sym_DQUOTE] = ACTIONS(4328), + [anon_sym_c_SQUOTE] = ACTIONS(4328), + [anon_sym_c_DQUOTE] = ACTIONS(4328), + [anon_sym_r_SQUOTE] = ACTIONS(4328), + [anon_sym_r_DQUOTE] = ACTIONS(4328), + [sym_pseudo_compile_time_identifier] = ACTIONS(4330), + [anon_sym_shared] = ACTIONS(4330), + [anon_sym_map_LBRACK] = ACTIONS(4328), + [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(4328), + [anon_sym_asm] = ACTIONS(4330), + [anon_sym_AT_LBRACK] = ACTIONS(4328), }, [1545] = { [sym_line_comment] = STATE(1545), [sym_block_comment] = STATE(1545), - [ts_builtin_sym_end] = ACTIONS(4407), - [sym_identifier] = ACTIONS(4409), - [anon_sym_LF] = ACTIONS(4409), - [anon_sym_CR] = ACTIONS(4409), - [anon_sym_CR_LF] = ACTIONS(4409), + [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(4409), - [anon_sym_LBRACE] = ACTIONS(4409), - [anon_sym_const] = ACTIONS(4409), - [anon_sym_LPAREN] = ACTIONS(4409), - [anon_sym___global] = ACTIONS(4409), - [anon_sym_type] = ACTIONS(4409), - [anon_sym_fn] = ACTIONS(4409), - [anon_sym_PLUS] = ACTIONS(4409), - [anon_sym_DASH] = ACTIONS(4409), - [anon_sym_STAR] = ACTIONS(4409), - [anon_sym_struct] = ACTIONS(4409), - [anon_sym_union] = ACTIONS(4409), - [anon_sym_pub] = ACTIONS(4409), - [anon_sym_mut] = ACTIONS(4409), - [anon_sym_enum] = ACTIONS(4409), - [anon_sym_interface] = ACTIONS(4409), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_BANG] = ACTIONS(4409), - [anon_sym_go] = ACTIONS(4409), - [anon_sym_spawn] = ACTIONS(4409), - [anon_sym_json_DOTdecode] = ACTIONS(4409), - [anon_sym_LBRACK2] = ACTIONS(4409), - [anon_sym_TILDE] = ACTIONS(4409), - [anon_sym_CARET] = ACTIONS(4409), - [anon_sym_AMP] = ACTIONS(4409), - [anon_sym_LT_DASH] = ACTIONS(4409), - [sym_none] = ACTIONS(4409), - [sym_true] = ACTIONS(4409), - [sym_false] = ACTIONS(4409), - [sym_nil] = ACTIONS(4409), - [anon_sym_if] = ACTIONS(4409), - [anon_sym_DOLLARif] = ACTIONS(4409), - [anon_sym_match] = ACTIONS(4409), - [anon_sym_select] = ACTIONS(4409), - [anon_sym_lock] = ACTIONS(4409), - [anon_sym_rlock] = ACTIONS(4409), - [anon_sym_unsafe] = ACTIONS(4409), - [anon_sym_sql] = ACTIONS(4409), - [sym_int_literal] = ACTIONS(4409), - [sym_float_literal] = ACTIONS(4409), - [sym_rune_literal] = ACTIONS(4409), - [anon_sym_SQUOTE] = ACTIONS(4409), - [anon_sym_DQUOTE] = ACTIONS(4409), - [anon_sym_c_SQUOTE] = ACTIONS(4409), - [anon_sym_c_DQUOTE] = ACTIONS(4409), - [anon_sym_r_SQUOTE] = ACTIONS(4409), - [anon_sym_r_DQUOTE] = ACTIONS(4409), - [sym_pseudo_compile_time_identifier] = ACTIONS(4409), - [anon_sym_shared] = ACTIONS(4409), - [anon_sym_map_LBRACK] = ACTIONS(4409), - [anon_sym_chan] = ACTIONS(4409), - [anon_sym_thread] = ACTIONS(4409), - [anon_sym_atomic] = ACTIONS(4409), - [anon_sym_assert] = ACTIONS(4409), - [anon_sym_defer] = ACTIONS(4409), - [anon_sym_goto] = ACTIONS(4409), - [anon_sym_break] = ACTIONS(4409), - [anon_sym_continue] = ACTIONS(4409), - [anon_sym_return] = ACTIONS(4409), - [anon_sym_DOLLARfor] = ACTIONS(4409), - [anon_sym_for] = ACTIONS(4409), - [anon_sym_POUND] = ACTIONS(4409), - [anon_sym_asm] = ACTIONS(4409), - [anon_sym_AT_LBRACK] = ACTIONS(4409), + [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), + [anon_sym_SQUOTE] = ACTIONS(4334), + [anon_sym_DQUOTE] = ACTIONS(4334), + [anon_sym_c_SQUOTE] = ACTIONS(4334), + [anon_sym_c_DQUOTE] = ACTIONS(4334), + [anon_sym_r_SQUOTE] = ACTIONS(4334), + [anon_sym_r_DQUOTE] = 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), }, [1546] = { [sym_line_comment] = STATE(1546), [sym_block_comment] = STATE(1546), - [ts_builtin_sym_end] = ACTIONS(4411), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LF] = ACTIONS(4413), - [anon_sym_CR] = ACTIONS(4413), - [anon_sym_CR_LF] = ACTIONS(4413), + [ts_builtin_sym_end] = ACTIONS(4039), + [sym_identifier] = ACTIONS(4041), + [anon_sym_LF] = ACTIONS(4041), + [anon_sym_CR] = ACTIONS(4041), + [anon_sym_CR_LF] = ACTIONS(4041), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4413), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_const] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym___global] = ACTIONS(4413), - [anon_sym_type] = ACTIONS(4413), - [anon_sym_fn] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4413), - [anon_sym_STAR] = ACTIONS(4413), - [anon_sym_struct] = ACTIONS(4413), - [anon_sym_union] = ACTIONS(4413), - [anon_sym_pub] = ACTIONS(4413), - [anon_sym_mut] = ACTIONS(4413), - [anon_sym_enum] = ACTIONS(4413), - [anon_sym_interface] = ACTIONS(4413), - [anon_sym_QMARK] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_go] = ACTIONS(4413), - [anon_sym_spawn] = ACTIONS(4413), - [anon_sym_json_DOTdecode] = ACTIONS(4413), - [anon_sym_LBRACK2] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4413), - [anon_sym_CARET] = ACTIONS(4413), - [anon_sym_AMP] = ACTIONS(4413), - [anon_sym_LT_DASH] = ACTIONS(4413), - [sym_none] = ACTIONS(4413), - [sym_true] = ACTIONS(4413), - [sym_false] = ACTIONS(4413), - [sym_nil] = ACTIONS(4413), - [anon_sym_if] = ACTIONS(4413), - [anon_sym_DOLLARif] = ACTIONS(4413), - [anon_sym_match] = ACTIONS(4413), - [anon_sym_select] = ACTIONS(4413), - [anon_sym_lock] = ACTIONS(4413), - [anon_sym_rlock] = ACTIONS(4413), - [anon_sym_unsafe] = ACTIONS(4413), - [anon_sym_sql] = ACTIONS(4413), - [sym_int_literal] = ACTIONS(4413), - [sym_float_literal] = ACTIONS(4413), - [sym_rune_literal] = ACTIONS(4413), - [anon_sym_SQUOTE] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_c_SQUOTE] = ACTIONS(4413), - [anon_sym_c_DQUOTE] = ACTIONS(4413), - [anon_sym_r_SQUOTE] = ACTIONS(4413), - [anon_sym_r_DQUOTE] = ACTIONS(4413), - [sym_pseudo_compile_time_identifier] = ACTIONS(4413), - [anon_sym_shared] = ACTIONS(4413), - [anon_sym_map_LBRACK] = ACTIONS(4413), - [anon_sym_chan] = ACTIONS(4413), - [anon_sym_thread] = ACTIONS(4413), - [anon_sym_atomic] = ACTIONS(4413), - [anon_sym_assert] = ACTIONS(4413), - [anon_sym_defer] = ACTIONS(4413), - [anon_sym_goto] = ACTIONS(4413), - [anon_sym_break] = ACTIONS(4413), - [anon_sym_continue] = ACTIONS(4413), - [anon_sym_return] = ACTIONS(4413), - [anon_sym_DOLLARfor] = ACTIONS(4413), - [anon_sym_for] = ACTIONS(4413), - [anon_sym_POUND] = ACTIONS(4413), - [anon_sym_asm] = ACTIONS(4413), - [anon_sym_AT_LBRACK] = ACTIONS(4413), + [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_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), + [anon_sym_SQUOTE] = ACTIONS(4041), + [anon_sym_DQUOTE] = ACTIONS(4041), + [anon_sym_c_SQUOTE] = ACTIONS(4041), + [anon_sym_c_DQUOTE] = ACTIONS(4041), + [anon_sym_r_SQUOTE] = ACTIONS(4041), + [anon_sym_r_DQUOTE] = 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), }, [1547] = { [sym_line_comment] = STATE(1547), [sym_block_comment] = STATE(1547), - [ts_builtin_sym_end] = ACTIONS(4415), - [sym_identifier] = ACTIONS(4417), - [anon_sym_LF] = ACTIONS(4417), - [anon_sym_CR] = ACTIONS(4417), - [anon_sym_CR_LF] = ACTIONS(4417), + [ts_builtin_sym_end] = ACTIONS(2773), + [sym_identifier] = ACTIONS(2775), + [anon_sym_LF] = ACTIONS(2775), + [anon_sym_CR] = ACTIONS(2775), + [anon_sym_CR_LF] = ACTIONS(2775), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [anon_sym_const] = ACTIONS(4417), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym___global] = ACTIONS(4417), - [anon_sym_type] = ACTIONS(4417), - [anon_sym_fn] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4417), - [anon_sym_DASH] = ACTIONS(4417), - [anon_sym_STAR] = ACTIONS(4417), - [anon_sym_struct] = ACTIONS(4417), - [anon_sym_union] = ACTIONS(4417), - [anon_sym_pub] = ACTIONS(4417), - [anon_sym_mut] = ACTIONS(4417), - [anon_sym_enum] = ACTIONS(4417), - [anon_sym_interface] = ACTIONS(4417), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(4417), - [anon_sym_go] = ACTIONS(4417), - [anon_sym_spawn] = ACTIONS(4417), - [anon_sym_json_DOTdecode] = ACTIONS(4417), - [anon_sym_LBRACK2] = ACTIONS(4417), - [anon_sym_TILDE] = ACTIONS(4417), - [anon_sym_CARET] = ACTIONS(4417), - [anon_sym_AMP] = ACTIONS(4417), - [anon_sym_LT_DASH] = ACTIONS(4417), - [sym_none] = ACTIONS(4417), - [sym_true] = ACTIONS(4417), - [sym_false] = ACTIONS(4417), - [sym_nil] = ACTIONS(4417), - [anon_sym_if] = ACTIONS(4417), - [anon_sym_DOLLARif] = ACTIONS(4417), - [anon_sym_match] = ACTIONS(4417), - [anon_sym_select] = ACTIONS(4417), - [anon_sym_lock] = ACTIONS(4417), - [anon_sym_rlock] = ACTIONS(4417), - [anon_sym_unsafe] = ACTIONS(4417), - [anon_sym_sql] = ACTIONS(4417), - [sym_int_literal] = ACTIONS(4417), - [sym_float_literal] = ACTIONS(4417), - [sym_rune_literal] = ACTIONS(4417), - [anon_sym_SQUOTE] = ACTIONS(4417), - [anon_sym_DQUOTE] = ACTIONS(4417), - [anon_sym_c_SQUOTE] = ACTIONS(4417), - [anon_sym_c_DQUOTE] = ACTIONS(4417), - [anon_sym_r_SQUOTE] = ACTIONS(4417), - [anon_sym_r_DQUOTE] = ACTIONS(4417), - [sym_pseudo_compile_time_identifier] = ACTIONS(4417), - [anon_sym_shared] = ACTIONS(4417), - [anon_sym_map_LBRACK] = ACTIONS(4417), - [anon_sym_chan] = ACTIONS(4417), - [anon_sym_thread] = ACTIONS(4417), - [anon_sym_atomic] = ACTIONS(4417), - [anon_sym_assert] = ACTIONS(4417), - [anon_sym_defer] = ACTIONS(4417), - [anon_sym_goto] = ACTIONS(4417), - [anon_sym_break] = ACTIONS(4417), - [anon_sym_continue] = ACTIONS(4417), - [anon_sym_return] = ACTIONS(4417), - [anon_sym_DOLLARfor] = ACTIONS(4417), - [anon_sym_for] = ACTIONS(4417), - [anon_sym_POUND] = ACTIONS(4417), - [anon_sym_asm] = ACTIONS(4417), - [anon_sym_AT_LBRACK] = ACTIONS(4417), + [anon_sym_DOT] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_const] = ACTIONS(2775), + [anon_sym_LPAREN] = ACTIONS(2775), + [anon_sym___global] = ACTIONS(2775), + [anon_sym_type] = ACTIONS(2775), + [anon_sym_fn] = ACTIONS(2775), + [anon_sym_PLUS] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2775), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(2775), + [anon_sym_union] = ACTIONS(2775), + [anon_sym_pub] = ACTIONS(2775), + [anon_sym_mut] = ACTIONS(2775), + [anon_sym_enum] = ACTIONS(2775), + [anon_sym_interface] = ACTIONS(2775), + [anon_sym_QMARK] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_go] = ACTIONS(2775), + [anon_sym_spawn] = ACTIONS(2775), + [anon_sym_json_DOTdecode] = ACTIONS(2775), + [anon_sym_LBRACK2] = ACTIONS(2775), + [anon_sym_TILDE] = ACTIONS(2775), + [anon_sym_CARET] = ACTIONS(2775), + [anon_sym_AMP] = ACTIONS(2775), + [anon_sym_LT_DASH] = ACTIONS(2775), + [sym_none] = ACTIONS(2775), + [sym_true] = ACTIONS(2775), + [sym_false] = ACTIONS(2775), + [sym_nil] = ACTIONS(2775), + [anon_sym_if] = ACTIONS(2775), + [anon_sym_DOLLARif] = ACTIONS(2775), + [anon_sym_match] = ACTIONS(2775), + [anon_sym_select] = ACTIONS(2775), + [anon_sym_lock] = ACTIONS(2775), + [anon_sym_rlock] = ACTIONS(2775), + [anon_sym_unsafe] = ACTIONS(2775), + [anon_sym_sql] = ACTIONS(2775), + [sym_int_literal] = ACTIONS(2775), + [sym_float_literal] = ACTIONS(2775), + [sym_rune_literal] = ACTIONS(2775), + [anon_sym_SQUOTE] = ACTIONS(2775), + [anon_sym_DQUOTE] = ACTIONS(2775), + [anon_sym_c_SQUOTE] = ACTIONS(2775), + [anon_sym_c_DQUOTE] = ACTIONS(2775), + [anon_sym_r_SQUOTE] = ACTIONS(2775), + [anon_sym_r_DQUOTE] = ACTIONS(2775), + [sym_pseudo_compile_time_identifier] = ACTIONS(2775), + [anon_sym_shared] = ACTIONS(2775), + [anon_sym_map_LBRACK] = ACTIONS(2775), + [anon_sym_chan] = ACTIONS(2775), + [anon_sym_thread] = ACTIONS(2775), + [anon_sym_atomic] = ACTIONS(2775), + [anon_sym_assert] = ACTIONS(2775), + [anon_sym_defer] = ACTIONS(2775), + [anon_sym_goto] = ACTIONS(2775), + [anon_sym_break] = ACTIONS(2775), + [anon_sym_continue] = ACTIONS(2775), + [anon_sym_return] = ACTIONS(2775), + [anon_sym_DOLLARfor] = ACTIONS(2775), + [anon_sym_for] = ACTIONS(2775), + [anon_sym_POUND] = ACTIONS(2775), + [anon_sym_asm] = ACTIONS(2775), + [anon_sym_AT_LBRACK] = ACTIONS(2775), }, [1548] = { [sym_line_comment] = STATE(1548), [sym_block_comment] = STATE(1548), - [ts_builtin_sym_end] = ACTIONS(4419), - [sym_identifier] = ACTIONS(4421), - [anon_sym_LF] = ACTIONS(4421), - [anon_sym_CR] = ACTIONS(4421), - [anon_sym_CR_LF] = ACTIONS(4421), + [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(4421), - [anon_sym_LBRACE] = ACTIONS(4421), - [anon_sym_const] = ACTIONS(4421), - [anon_sym_LPAREN] = ACTIONS(4421), - [anon_sym___global] = ACTIONS(4421), - [anon_sym_type] = ACTIONS(4421), - [anon_sym_fn] = ACTIONS(4421), - [anon_sym_PLUS] = ACTIONS(4421), - [anon_sym_DASH] = ACTIONS(4421), - [anon_sym_STAR] = ACTIONS(4421), - [anon_sym_struct] = ACTIONS(4421), - [anon_sym_union] = ACTIONS(4421), - [anon_sym_pub] = ACTIONS(4421), - [anon_sym_mut] = ACTIONS(4421), - [anon_sym_enum] = ACTIONS(4421), - [anon_sym_interface] = ACTIONS(4421), - [anon_sym_QMARK] = ACTIONS(4421), - [anon_sym_BANG] = ACTIONS(4421), - [anon_sym_go] = ACTIONS(4421), - [anon_sym_spawn] = ACTIONS(4421), - [anon_sym_json_DOTdecode] = ACTIONS(4421), - [anon_sym_LBRACK2] = ACTIONS(4421), - [anon_sym_TILDE] = ACTIONS(4421), - [anon_sym_CARET] = ACTIONS(4421), - [anon_sym_AMP] = ACTIONS(4421), - [anon_sym_LT_DASH] = ACTIONS(4421), - [sym_none] = ACTIONS(4421), - [sym_true] = ACTIONS(4421), - [sym_false] = ACTIONS(4421), - [sym_nil] = ACTIONS(4421), - [anon_sym_if] = ACTIONS(4421), - [anon_sym_DOLLARif] = ACTIONS(4421), - [anon_sym_match] = ACTIONS(4421), - [anon_sym_select] = ACTIONS(4421), - [anon_sym_lock] = ACTIONS(4421), - [anon_sym_rlock] = ACTIONS(4421), - [anon_sym_unsafe] = ACTIONS(4421), - [anon_sym_sql] = ACTIONS(4421), - [sym_int_literal] = ACTIONS(4421), - [sym_float_literal] = ACTIONS(4421), - [sym_rune_literal] = ACTIONS(4421), - [anon_sym_SQUOTE] = ACTIONS(4421), - [anon_sym_DQUOTE] = ACTIONS(4421), - [anon_sym_c_SQUOTE] = ACTIONS(4421), - [anon_sym_c_DQUOTE] = ACTIONS(4421), - [anon_sym_r_SQUOTE] = ACTIONS(4421), - [anon_sym_r_DQUOTE] = ACTIONS(4421), - [sym_pseudo_compile_time_identifier] = ACTIONS(4421), - [anon_sym_shared] = ACTIONS(4421), - [anon_sym_map_LBRACK] = ACTIONS(4421), - [anon_sym_chan] = ACTIONS(4421), - [anon_sym_thread] = ACTIONS(4421), - [anon_sym_atomic] = ACTIONS(4421), - [anon_sym_assert] = ACTIONS(4421), - [anon_sym_defer] = ACTIONS(4421), - [anon_sym_goto] = ACTIONS(4421), - [anon_sym_break] = ACTIONS(4421), - [anon_sym_continue] = ACTIONS(4421), - [anon_sym_return] = ACTIONS(4421), - [anon_sym_DOLLARfor] = ACTIONS(4421), - [anon_sym_for] = ACTIONS(4421), - [anon_sym_POUND] = ACTIONS(4421), - [anon_sym_asm] = ACTIONS(4421), - [anon_sym_AT_LBRACK] = ACTIONS(4421), + [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), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_DQUOTE] = ACTIONS(4338), + [anon_sym_c_SQUOTE] = ACTIONS(4338), + [anon_sym_c_DQUOTE] = ACTIONS(4338), + [anon_sym_r_SQUOTE] = ACTIONS(4338), + [anon_sym_r_DQUOTE] = 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), }, [1549] = { [sym_line_comment] = STATE(1549), [sym_block_comment] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(4423), - [sym_identifier] = ACTIONS(4425), - [anon_sym_LF] = ACTIONS(4425), - [anon_sym_CR] = ACTIONS(4425), - [anon_sym_CR_LF] = ACTIONS(4425), + [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(4425), - [anon_sym_LBRACE] = ACTIONS(4425), - [anon_sym_const] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym___global] = ACTIONS(4425), - [anon_sym_type] = ACTIONS(4425), - [anon_sym_fn] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4425), - [anon_sym_DASH] = ACTIONS(4425), - [anon_sym_STAR] = ACTIONS(4425), - [anon_sym_struct] = ACTIONS(4425), - [anon_sym_union] = ACTIONS(4425), - [anon_sym_pub] = ACTIONS(4425), - [anon_sym_mut] = ACTIONS(4425), - [anon_sym_enum] = ACTIONS(4425), - [anon_sym_interface] = ACTIONS(4425), - [anon_sym_QMARK] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4425), - [anon_sym_go] = ACTIONS(4425), - [anon_sym_spawn] = ACTIONS(4425), - [anon_sym_json_DOTdecode] = ACTIONS(4425), - [anon_sym_LBRACK2] = ACTIONS(4425), - [anon_sym_TILDE] = ACTIONS(4425), - [anon_sym_CARET] = ACTIONS(4425), - [anon_sym_AMP] = ACTIONS(4425), - [anon_sym_LT_DASH] = ACTIONS(4425), - [sym_none] = ACTIONS(4425), - [sym_true] = ACTIONS(4425), - [sym_false] = ACTIONS(4425), - [sym_nil] = ACTIONS(4425), - [anon_sym_if] = ACTIONS(4425), - [anon_sym_DOLLARif] = ACTIONS(4425), - [anon_sym_match] = ACTIONS(4425), - [anon_sym_select] = ACTIONS(4425), - [anon_sym_lock] = ACTIONS(4425), - [anon_sym_rlock] = ACTIONS(4425), - [anon_sym_unsafe] = ACTIONS(4425), - [anon_sym_sql] = ACTIONS(4425), - [sym_int_literal] = ACTIONS(4425), - [sym_float_literal] = ACTIONS(4425), - [sym_rune_literal] = ACTIONS(4425), - [anon_sym_SQUOTE] = ACTIONS(4425), - [anon_sym_DQUOTE] = ACTIONS(4425), - [anon_sym_c_SQUOTE] = ACTIONS(4425), - [anon_sym_c_DQUOTE] = ACTIONS(4425), - [anon_sym_r_SQUOTE] = ACTIONS(4425), - [anon_sym_r_DQUOTE] = ACTIONS(4425), - [sym_pseudo_compile_time_identifier] = ACTIONS(4425), - [anon_sym_shared] = ACTIONS(4425), - [anon_sym_map_LBRACK] = ACTIONS(4425), - [anon_sym_chan] = ACTIONS(4425), - [anon_sym_thread] = ACTIONS(4425), - [anon_sym_atomic] = ACTIONS(4425), - [anon_sym_assert] = ACTIONS(4425), - [anon_sym_defer] = ACTIONS(4425), - [anon_sym_goto] = ACTIONS(4425), - [anon_sym_break] = ACTIONS(4425), - [anon_sym_continue] = ACTIONS(4425), - [anon_sym_return] = ACTIONS(4425), - [anon_sym_DOLLARfor] = ACTIONS(4425), - [anon_sym_for] = ACTIONS(4425), - [anon_sym_POUND] = ACTIONS(4425), - [anon_sym_asm] = ACTIONS(4425), - [anon_sym_AT_LBRACK] = ACTIONS(4425), + [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), + [anon_sym_SQUOTE] = ACTIONS(4342), + [anon_sym_DQUOTE] = ACTIONS(4342), + [anon_sym_c_SQUOTE] = ACTIONS(4342), + [anon_sym_c_DQUOTE] = ACTIONS(4342), + [anon_sym_r_SQUOTE] = ACTIONS(4342), + [anon_sym_r_DQUOTE] = 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), }, [1550] = { [sym_line_comment] = STATE(1550), [sym_block_comment] = STATE(1550), - [ts_builtin_sym_end] = ACTIONS(4427), - [sym_identifier] = ACTIONS(4429), - [anon_sym_LF] = ACTIONS(4429), - [anon_sym_CR] = ACTIONS(4429), - [anon_sym_CR_LF] = ACTIONS(4429), + [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(4429), - [anon_sym_LBRACE] = ACTIONS(4429), - [anon_sym_const] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym___global] = ACTIONS(4429), - [anon_sym_type] = ACTIONS(4429), - [anon_sym_fn] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4429), - [anon_sym_DASH] = ACTIONS(4429), - [anon_sym_STAR] = ACTIONS(4429), - [anon_sym_struct] = ACTIONS(4429), - [anon_sym_union] = ACTIONS(4429), - [anon_sym_pub] = ACTIONS(4429), - [anon_sym_mut] = ACTIONS(4429), - [anon_sym_enum] = ACTIONS(4429), - [anon_sym_interface] = ACTIONS(4429), - [anon_sym_QMARK] = ACTIONS(4429), - [anon_sym_BANG] = ACTIONS(4429), - [anon_sym_go] = ACTIONS(4429), - [anon_sym_spawn] = ACTIONS(4429), - [anon_sym_json_DOTdecode] = ACTIONS(4429), - [anon_sym_LBRACK2] = ACTIONS(4429), - [anon_sym_TILDE] = ACTIONS(4429), - [anon_sym_CARET] = ACTIONS(4429), - [anon_sym_AMP] = ACTIONS(4429), - [anon_sym_LT_DASH] = ACTIONS(4429), - [sym_none] = ACTIONS(4429), - [sym_true] = ACTIONS(4429), - [sym_false] = ACTIONS(4429), - [sym_nil] = ACTIONS(4429), - [anon_sym_if] = ACTIONS(4429), - [anon_sym_DOLLARif] = ACTIONS(4429), - [anon_sym_match] = ACTIONS(4429), - [anon_sym_select] = ACTIONS(4429), - [anon_sym_lock] = ACTIONS(4429), - [anon_sym_rlock] = ACTIONS(4429), - [anon_sym_unsafe] = ACTIONS(4429), - [anon_sym_sql] = ACTIONS(4429), - [sym_int_literal] = ACTIONS(4429), - [sym_float_literal] = ACTIONS(4429), - [sym_rune_literal] = ACTIONS(4429), - [anon_sym_SQUOTE] = ACTIONS(4429), - [anon_sym_DQUOTE] = ACTIONS(4429), - [anon_sym_c_SQUOTE] = ACTIONS(4429), - [anon_sym_c_DQUOTE] = ACTIONS(4429), - [anon_sym_r_SQUOTE] = ACTIONS(4429), - [anon_sym_r_DQUOTE] = ACTIONS(4429), - [sym_pseudo_compile_time_identifier] = ACTIONS(4429), - [anon_sym_shared] = ACTIONS(4429), - [anon_sym_map_LBRACK] = ACTIONS(4429), - [anon_sym_chan] = ACTIONS(4429), - [anon_sym_thread] = ACTIONS(4429), - [anon_sym_atomic] = ACTIONS(4429), - [anon_sym_assert] = ACTIONS(4429), - [anon_sym_defer] = ACTIONS(4429), - [anon_sym_goto] = ACTIONS(4429), - [anon_sym_break] = ACTIONS(4429), - [anon_sym_continue] = ACTIONS(4429), - [anon_sym_return] = ACTIONS(4429), - [anon_sym_DOLLARfor] = ACTIONS(4429), - [anon_sym_for] = ACTIONS(4429), - [anon_sym_POUND] = ACTIONS(4429), - [anon_sym_asm] = ACTIONS(4429), - [anon_sym_AT_LBRACK] = ACTIONS(4429), + [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), + [anon_sym_SQUOTE] = ACTIONS(4346), + [anon_sym_DQUOTE] = ACTIONS(4346), + [anon_sym_c_SQUOTE] = ACTIONS(4346), + [anon_sym_c_DQUOTE] = ACTIONS(4346), + [anon_sym_r_SQUOTE] = ACTIONS(4346), + [anon_sym_r_DQUOTE] = 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), }, [1551] = { [sym_line_comment] = STATE(1551), [sym_block_comment] = STATE(1551), - [ts_builtin_sym_end] = ACTIONS(4431), - [sym_identifier] = ACTIONS(4433), - [anon_sym_LF] = ACTIONS(4433), - [anon_sym_CR] = ACTIONS(4433), - [anon_sym_CR_LF] = ACTIONS(4433), + [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(4433), - [anon_sym_LBRACE] = ACTIONS(4433), - [anon_sym_const] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4433), - [anon_sym___global] = ACTIONS(4433), - [anon_sym_type] = ACTIONS(4433), - [anon_sym_fn] = ACTIONS(4433), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_struct] = ACTIONS(4433), - [anon_sym_union] = ACTIONS(4433), - [anon_sym_pub] = ACTIONS(4433), - [anon_sym_mut] = ACTIONS(4433), - [anon_sym_enum] = ACTIONS(4433), - [anon_sym_interface] = ACTIONS(4433), - [anon_sym_QMARK] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_go] = ACTIONS(4433), - [anon_sym_spawn] = ACTIONS(4433), - [anon_sym_json_DOTdecode] = ACTIONS(4433), - [anon_sym_LBRACK2] = ACTIONS(4433), - [anon_sym_TILDE] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym_AMP] = ACTIONS(4433), - [anon_sym_LT_DASH] = ACTIONS(4433), - [sym_none] = ACTIONS(4433), - [sym_true] = ACTIONS(4433), - [sym_false] = ACTIONS(4433), - [sym_nil] = ACTIONS(4433), - [anon_sym_if] = ACTIONS(4433), - [anon_sym_DOLLARif] = ACTIONS(4433), - [anon_sym_match] = ACTIONS(4433), - [anon_sym_select] = ACTIONS(4433), - [anon_sym_lock] = ACTIONS(4433), - [anon_sym_rlock] = ACTIONS(4433), - [anon_sym_unsafe] = ACTIONS(4433), - [anon_sym_sql] = ACTIONS(4433), - [sym_int_literal] = ACTIONS(4433), - [sym_float_literal] = ACTIONS(4433), - [sym_rune_literal] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DQUOTE] = ACTIONS(4433), - [anon_sym_c_SQUOTE] = ACTIONS(4433), - [anon_sym_c_DQUOTE] = ACTIONS(4433), - [anon_sym_r_SQUOTE] = ACTIONS(4433), - [anon_sym_r_DQUOTE] = ACTIONS(4433), - [sym_pseudo_compile_time_identifier] = ACTIONS(4433), - [anon_sym_shared] = ACTIONS(4433), - [anon_sym_map_LBRACK] = ACTIONS(4433), - [anon_sym_chan] = ACTIONS(4433), - [anon_sym_thread] = ACTIONS(4433), - [anon_sym_atomic] = ACTIONS(4433), - [anon_sym_assert] = ACTIONS(4433), - [anon_sym_defer] = ACTIONS(4433), - [anon_sym_goto] = ACTIONS(4433), - [anon_sym_break] = ACTIONS(4433), - [anon_sym_continue] = ACTIONS(4433), - [anon_sym_return] = ACTIONS(4433), - [anon_sym_DOLLARfor] = ACTIONS(4433), - [anon_sym_for] = ACTIONS(4433), - [anon_sym_POUND] = ACTIONS(4433), - [anon_sym_asm] = ACTIONS(4433), - [anon_sym_AT_LBRACK] = ACTIONS(4433), + [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), + [anon_sym_SQUOTE] = ACTIONS(4350), + [anon_sym_DQUOTE] = ACTIONS(4350), + [anon_sym_c_SQUOTE] = ACTIONS(4350), + [anon_sym_c_DQUOTE] = ACTIONS(4350), + [anon_sym_r_SQUOTE] = ACTIONS(4350), + [anon_sym_r_DQUOTE] = 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), }, [1552] = { [sym_line_comment] = STATE(1552), [sym_block_comment] = STATE(1552), - [ts_builtin_sym_end] = ACTIONS(4435), - [sym_identifier] = ACTIONS(4437), - [anon_sym_LF] = ACTIONS(4437), - [anon_sym_CR] = ACTIONS(4437), - [anon_sym_CR_LF] = ACTIONS(4437), + [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(4437), - [anon_sym_LBRACE] = ACTIONS(4437), - [anon_sym_const] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4437), - [anon_sym___global] = ACTIONS(4437), - [anon_sym_type] = ACTIONS(4437), - [anon_sym_fn] = ACTIONS(4437), - [anon_sym_PLUS] = ACTIONS(4437), - [anon_sym_DASH] = ACTIONS(4437), - [anon_sym_STAR] = ACTIONS(4437), - [anon_sym_struct] = ACTIONS(4437), - [anon_sym_union] = ACTIONS(4437), - [anon_sym_pub] = ACTIONS(4437), - [anon_sym_mut] = ACTIONS(4437), - [anon_sym_enum] = ACTIONS(4437), - [anon_sym_interface] = ACTIONS(4437), - [anon_sym_QMARK] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4437), - [anon_sym_go] = ACTIONS(4437), - [anon_sym_spawn] = ACTIONS(4437), - [anon_sym_json_DOTdecode] = ACTIONS(4437), - [anon_sym_LBRACK2] = ACTIONS(4437), - [anon_sym_TILDE] = ACTIONS(4437), - [anon_sym_CARET] = ACTIONS(4437), - [anon_sym_AMP] = ACTIONS(4437), - [anon_sym_LT_DASH] = ACTIONS(4437), - [sym_none] = ACTIONS(4437), - [sym_true] = ACTIONS(4437), - [sym_false] = ACTIONS(4437), - [sym_nil] = ACTIONS(4437), - [anon_sym_if] = ACTIONS(4437), - [anon_sym_DOLLARif] = ACTIONS(4437), - [anon_sym_match] = ACTIONS(4437), - [anon_sym_select] = ACTIONS(4437), - [anon_sym_lock] = ACTIONS(4437), - [anon_sym_rlock] = ACTIONS(4437), - [anon_sym_unsafe] = ACTIONS(4437), - [anon_sym_sql] = ACTIONS(4437), - [sym_int_literal] = ACTIONS(4437), - [sym_float_literal] = ACTIONS(4437), - [sym_rune_literal] = ACTIONS(4437), - [anon_sym_SQUOTE] = ACTIONS(4437), - [anon_sym_DQUOTE] = ACTIONS(4437), - [anon_sym_c_SQUOTE] = ACTIONS(4437), - [anon_sym_c_DQUOTE] = ACTIONS(4437), - [anon_sym_r_SQUOTE] = ACTIONS(4437), - [anon_sym_r_DQUOTE] = ACTIONS(4437), - [sym_pseudo_compile_time_identifier] = ACTIONS(4437), - [anon_sym_shared] = ACTIONS(4437), - [anon_sym_map_LBRACK] = ACTIONS(4437), - [anon_sym_chan] = ACTIONS(4437), - [anon_sym_thread] = ACTIONS(4437), - [anon_sym_atomic] = ACTIONS(4437), - [anon_sym_assert] = ACTIONS(4437), - [anon_sym_defer] = ACTIONS(4437), - [anon_sym_goto] = ACTIONS(4437), - [anon_sym_break] = ACTIONS(4437), - [anon_sym_continue] = ACTIONS(4437), - [anon_sym_return] = ACTIONS(4437), - [anon_sym_DOLLARfor] = ACTIONS(4437), - [anon_sym_for] = ACTIONS(4437), - [anon_sym_POUND] = ACTIONS(4437), - [anon_sym_asm] = ACTIONS(4437), - [anon_sym_AT_LBRACK] = ACTIONS(4437), + [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), + [anon_sym_SQUOTE] = ACTIONS(4354), + [anon_sym_DQUOTE] = ACTIONS(4354), + [anon_sym_c_SQUOTE] = ACTIONS(4354), + [anon_sym_c_DQUOTE] = ACTIONS(4354), + [anon_sym_r_SQUOTE] = ACTIONS(4354), + [anon_sym_r_DQUOTE] = 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), }, [1553] = { [sym_line_comment] = STATE(1553), [sym_block_comment] = STATE(1553), - [ts_builtin_sym_end] = ACTIONS(4439), - [sym_identifier] = ACTIONS(4441), - [anon_sym_LF] = ACTIONS(4441), - [anon_sym_CR] = ACTIONS(4441), - [anon_sym_CR_LF] = ACTIONS(4441), + [ts_builtin_sym_end] = ACTIONS(2739), + [sym_identifier] = ACTIONS(2741), + [anon_sym_LF] = ACTIONS(2741), + [anon_sym_CR] = ACTIONS(2741), + [anon_sym_CR_LF] = ACTIONS(2741), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4441), - [anon_sym_LBRACE] = ACTIONS(4441), - [anon_sym_const] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4441), - [anon_sym___global] = ACTIONS(4441), - [anon_sym_type] = ACTIONS(4441), - [anon_sym_fn] = ACTIONS(4441), - [anon_sym_PLUS] = ACTIONS(4441), - [anon_sym_DASH] = ACTIONS(4441), - [anon_sym_STAR] = ACTIONS(4441), - [anon_sym_struct] = ACTIONS(4441), - [anon_sym_union] = ACTIONS(4441), - [anon_sym_pub] = ACTIONS(4441), - [anon_sym_mut] = ACTIONS(4441), - [anon_sym_enum] = ACTIONS(4441), - [anon_sym_interface] = ACTIONS(4441), - [anon_sym_QMARK] = ACTIONS(4441), - [anon_sym_BANG] = ACTIONS(4441), - [anon_sym_go] = ACTIONS(4441), - [anon_sym_spawn] = ACTIONS(4441), - [anon_sym_json_DOTdecode] = ACTIONS(4441), - [anon_sym_LBRACK2] = ACTIONS(4441), - [anon_sym_TILDE] = ACTIONS(4441), - [anon_sym_CARET] = ACTIONS(4441), - [anon_sym_AMP] = ACTIONS(4441), - [anon_sym_LT_DASH] = ACTIONS(4441), - [sym_none] = ACTIONS(4441), - [sym_true] = ACTIONS(4441), - [sym_false] = ACTIONS(4441), - [sym_nil] = ACTIONS(4441), - [anon_sym_if] = ACTIONS(4441), - [anon_sym_DOLLARif] = ACTIONS(4441), - [anon_sym_match] = ACTIONS(4441), - [anon_sym_select] = ACTIONS(4441), - [anon_sym_lock] = ACTIONS(4441), - [anon_sym_rlock] = ACTIONS(4441), - [anon_sym_unsafe] = ACTIONS(4441), - [anon_sym_sql] = ACTIONS(4441), - [sym_int_literal] = ACTIONS(4441), - [sym_float_literal] = ACTIONS(4441), - [sym_rune_literal] = ACTIONS(4441), - [anon_sym_SQUOTE] = ACTIONS(4441), - [anon_sym_DQUOTE] = ACTIONS(4441), - [anon_sym_c_SQUOTE] = ACTIONS(4441), - [anon_sym_c_DQUOTE] = ACTIONS(4441), - [anon_sym_r_SQUOTE] = ACTIONS(4441), - [anon_sym_r_DQUOTE] = ACTIONS(4441), - [sym_pseudo_compile_time_identifier] = ACTIONS(4441), - [anon_sym_shared] = ACTIONS(4441), - [anon_sym_map_LBRACK] = ACTIONS(4441), - [anon_sym_chan] = ACTIONS(4441), - [anon_sym_thread] = ACTIONS(4441), - [anon_sym_atomic] = ACTIONS(4441), - [anon_sym_assert] = ACTIONS(4441), - [anon_sym_defer] = ACTIONS(4441), - [anon_sym_goto] = ACTIONS(4441), - [anon_sym_break] = ACTIONS(4441), - [anon_sym_continue] = ACTIONS(4441), - [anon_sym_return] = ACTIONS(4441), - [anon_sym_DOLLARfor] = ACTIONS(4441), - [anon_sym_for] = ACTIONS(4441), - [anon_sym_POUND] = ACTIONS(4441), - [anon_sym_asm] = ACTIONS(4441), - [anon_sym_AT_LBRACK] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_const] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2741), + [anon_sym___global] = ACTIONS(2741), + [anon_sym_type] = ACTIONS(2741), + [anon_sym_fn] = ACTIONS(2741), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_STAR] = ACTIONS(2741), + [anon_sym_struct] = ACTIONS(2741), + [anon_sym_union] = ACTIONS(2741), + [anon_sym_pub] = ACTIONS(2741), + [anon_sym_mut] = ACTIONS(2741), + [anon_sym_enum] = ACTIONS(2741), + [anon_sym_interface] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(2741), + [anon_sym_BANG] = ACTIONS(2741), + [anon_sym_go] = ACTIONS(2741), + [anon_sym_spawn] = ACTIONS(2741), + [anon_sym_json_DOTdecode] = ACTIONS(2741), + [anon_sym_LBRACK2] = ACTIONS(2741), + [anon_sym_TILDE] = ACTIONS(2741), + [anon_sym_CARET] = ACTIONS(2741), + [anon_sym_AMP] = ACTIONS(2741), + [anon_sym_LT_DASH] = ACTIONS(2741), + [sym_none] = ACTIONS(2741), + [sym_true] = ACTIONS(2741), + [sym_false] = ACTIONS(2741), + [sym_nil] = ACTIONS(2741), + [anon_sym_if] = ACTIONS(2741), + [anon_sym_DOLLARif] = ACTIONS(2741), + [anon_sym_match] = ACTIONS(2741), + [anon_sym_select] = ACTIONS(2741), + [anon_sym_lock] = ACTIONS(2741), + [anon_sym_rlock] = ACTIONS(2741), + [anon_sym_unsafe] = ACTIONS(2741), + [anon_sym_sql] = ACTIONS(2741), + [sym_int_literal] = ACTIONS(2741), + [sym_float_literal] = ACTIONS(2741), + [sym_rune_literal] = ACTIONS(2741), + [anon_sym_SQUOTE] = ACTIONS(2741), + [anon_sym_DQUOTE] = ACTIONS(2741), + [anon_sym_c_SQUOTE] = ACTIONS(2741), + [anon_sym_c_DQUOTE] = ACTIONS(2741), + [anon_sym_r_SQUOTE] = ACTIONS(2741), + [anon_sym_r_DQUOTE] = ACTIONS(2741), + [sym_pseudo_compile_time_identifier] = ACTIONS(2741), + [anon_sym_shared] = ACTIONS(2741), + [anon_sym_map_LBRACK] = ACTIONS(2741), + [anon_sym_chan] = ACTIONS(2741), + [anon_sym_thread] = ACTIONS(2741), + [anon_sym_atomic] = ACTIONS(2741), + [anon_sym_assert] = ACTIONS(2741), + [anon_sym_defer] = ACTIONS(2741), + [anon_sym_goto] = ACTIONS(2741), + [anon_sym_break] = ACTIONS(2741), + [anon_sym_continue] = ACTIONS(2741), + [anon_sym_return] = ACTIONS(2741), + [anon_sym_DOLLARfor] = ACTIONS(2741), + [anon_sym_for] = ACTIONS(2741), + [anon_sym_POUND] = ACTIONS(2741), + [anon_sym_asm] = ACTIONS(2741), + [anon_sym_AT_LBRACK] = ACTIONS(2741), }, [1554] = { [sym_line_comment] = STATE(1554), [sym_block_comment] = STATE(1554), - [ts_builtin_sym_end] = ACTIONS(4443), - [sym_identifier] = ACTIONS(4445), - [anon_sym_LF] = ACTIONS(4445), - [anon_sym_CR] = ACTIONS(4445), - [anon_sym_CR_LF] = ACTIONS(4445), + [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(4445), - [anon_sym_LBRACE] = ACTIONS(4445), - [anon_sym_const] = ACTIONS(4445), - [anon_sym_LPAREN] = ACTIONS(4445), - [anon_sym___global] = ACTIONS(4445), - [anon_sym_type] = ACTIONS(4445), - [anon_sym_fn] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(4445), - [anon_sym_DASH] = ACTIONS(4445), - [anon_sym_STAR] = ACTIONS(4445), - [anon_sym_struct] = ACTIONS(4445), - [anon_sym_union] = ACTIONS(4445), - [anon_sym_pub] = ACTIONS(4445), - [anon_sym_mut] = ACTIONS(4445), - [anon_sym_enum] = ACTIONS(4445), - [anon_sym_interface] = ACTIONS(4445), - [anon_sym_QMARK] = ACTIONS(4445), - [anon_sym_BANG] = ACTIONS(4445), - [anon_sym_go] = ACTIONS(4445), - [anon_sym_spawn] = ACTIONS(4445), - [anon_sym_json_DOTdecode] = ACTIONS(4445), - [anon_sym_LBRACK2] = ACTIONS(4445), - [anon_sym_TILDE] = ACTIONS(4445), - [anon_sym_CARET] = ACTIONS(4445), - [anon_sym_AMP] = ACTIONS(4445), - [anon_sym_LT_DASH] = ACTIONS(4445), - [sym_none] = ACTIONS(4445), - [sym_true] = ACTIONS(4445), - [sym_false] = ACTIONS(4445), - [sym_nil] = ACTIONS(4445), - [anon_sym_if] = ACTIONS(4445), - [anon_sym_DOLLARif] = ACTIONS(4445), - [anon_sym_match] = ACTIONS(4445), - [anon_sym_select] = ACTIONS(4445), - [anon_sym_lock] = ACTIONS(4445), - [anon_sym_rlock] = ACTIONS(4445), - [anon_sym_unsafe] = ACTIONS(4445), - [anon_sym_sql] = ACTIONS(4445), - [sym_int_literal] = ACTIONS(4445), - [sym_float_literal] = ACTIONS(4445), - [sym_rune_literal] = ACTIONS(4445), - [anon_sym_SQUOTE] = ACTIONS(4445), - [anon_sym_DQUOTE] = ACTIONS(4445), - [anon_sym_c_SQUOTE] = ACTIONS(4445), - [anon_sym_c_DQUOTE] = ACTIONS(4445), - [anon_sym_r_SQUOTE] = ACTIONS(4445), - [anon_sym_r_DQUOTE] = ACTIONS(4445), - [sym_pseudo_compile_time_identifier] = ACTIONS(4445), - [anon_sym_shared] = ACTIONS(4445), - [anon_sym_map_LBRACK] = ACTIONS(4445), - [anon_sym_chan] = ACTIONS(4445), - [anon_sym_thread] = ACTIONS(4445), - [anon_sym_atomic] = ACTIONS(4445), - [anon_sym_assert] = ACTIONS(4445), - [anon_sym_defer] = ACTIONS(4445), - [anon_sym_goto] = ACTIONS(4445), - [anon_sym_break] = ACTIONS(4445), - [anon_sym_continue] = ACTIONS(4445), - [anon_sym_return] = ACTIONS(4445), - [anon_sym_DOLLARfor] = ACTIONS(4445), - [anon_sym_for] = ACTIONS(4445), - [anon_sym_POUND] = ACTIONS(4445), - [anon_sym_asm] = ACTIONS(4445), - [anon_sym_AT_LBRACK] = ACTIONS(4445), + [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), + [anon_sym_SQUOTE] = ACTIONS(4358), + [anon_sym_DQUOTE] = ACTIONS(4358), + [anon_sym_c_SQUOTE] = ACTIONS(4358), + [anon_sym_c_DQUOTE] = ACTIONS(4358), + [anon_sym_r_SQUOTE] = ACTIONS(4358), + [anon_sym_r_DQUOTE] = 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), }, [1555] = { [sym_line_comment] = STATE(1555), [sym_block_comment] = STATE(1555), - [ts_builtin_sym_end] = ACTIONS(4447), - [sym_identifier] = ACTIONS(4449), - [anon_sym_LF] = ACTIONS(4449), - [anon_sym_CR] = ACTIONS(4449), - [anon_sym_CR_LF] = ACTIONS(4449), + [ts_builtin_sym_end] = ACTIONS(2777), + [sym_identifier] = ACTIONS(2779), + [anon_sym_LF] = ACTIONS(2779), + [anon_sym_CR] = ACTIONS(2779), + [anon_sym_CR_LF] = ACTIONS(2779), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4449), - [anon_sym_LBRACE] = ACTIONS(4449), - [anon_sym_const] = ACTIONS(4449), - [anon_sym_LPAREN] = ACTIONS(4449), - [anon_sym___global] = ACTIONS(4449), - [anon_sym_type] = ACTIONS(4449), - [anon_sym_fn] = ACTIONS(4449), - [anon_sym_PLUS] = ACTIONS(4449), - [anon_sym_DASH] = ACTIONS(4449), - [anon_sym_STAR] = ACTIONS(4449), - [anon_sym_struct] = ACTIONS(4449), - [anon_sym_union] = ACTIONS(4449), - [anon_sym_pub] = ACTIONS(4449), - [anon_sym_mut] = ACTIONS(4449), - [anon_sym_enum] = ACTIONS(4449), - [anon_sym_interface] = ACTIONS(4449), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_BANG] = ACTIONS(4449), - [anon_sym_go] = ACTIONS(4449), - [anon_sym_spawn] = ACTIONS(4449), - [anon_sym_json_DOTdecode] = ACTIONS(4449), - [anon_sym_LBRACK2] = ACTIONS(4449), - [anon_sym_TILDE] = ACTIONS(4449), - [anon_sym_CARET] = ACTIONS(4449), - [anon_sym_AMP] = ACTIONS(4449), - [anon_sym_LT_DASH] = ACTIONS(4449), - [sym_none] = ACTIONS(4449), - [sym_true] = ACTIONS(4449), - [sym_false] = ACTIONS(4449), - [sym_nil] = ACTIONS(4449), - [anon_sym_if] = ACTIONS(4449), - [anon_sym_DOLLARif] = ACTIONS(4449), - [anon_sym_match] = ACTIONS(4449), - [anon_sym_select] = ACTIONS(4449), - [anon_sym_lock] = ACTIONS(4449), - [anon_sym_rlock] = ACTIONS(4449), - [anon_sym_unsafe] = ACTIONS(4449), - [anon_sym_sql] = ACTIONS(4449), - [sym_int_literal] = ACTIONS(4449), - [sym_float_literal] = ACTIONS(4449), - [sym_rune_literal] = ACTIONS(4449), - [anon_sym_SQUOTE] = ACTIONS(4449), - [anon_sym_DQUOTE] = ACTIONS(4449), - [anon_sym_c_SQUOTE] = ACTIONS(4449), - [anon_sym_c_DQUOTE] = ACTIONS(4449), - [anon_sym_r_SQUOTE] = ACTIONS(4449), - [anon_sym_r_DQUOTE] = ACTIONS(4449), - [sym_pseudo_compile_time_identifier] = ACTIONS(4449), - [anon_sym_shared] = ACTIONS(4449), - [anon_sym_map_LBRACK] = ACTIONS(4449), - [anon_sym_chan] = ACTIONS(4449), - [anon_sym_thread] = ACTIONS(4449), - [anon_sym_atomic] = ACTIONS(4449), - [anon_sym_assert] = ACTIONS(4449), - [anon_sym_defer] = ACTIONS(4449), - [anon_sym_goto] = ACTIONS(4449), - [anon_sym_break] = ACTIONS(4449), - [anon_sym_continue] = ACTIONS(4449), - [anon_sym_return] = ACTIONS(4449), - [anon_sym_DOLLARfor] = ACTIONS(4449), - [anon_sym_for] = ACTIONS(4449), - [anon_sym_POUND] = ACTIONS(4449), - [anon_sym_asm] = ACTIONS(4449), - [anon_sym_AT_LBRACK] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(2779), + [anon_sym_LBRACE] = ACTIONS(2779), + [anon_sym_const] = ACTIONS(2779), + [anon_sym_LPAREN] = ACTIONS(2779), + [anon_sym___global] = ACTIONS(2779), + [anon_sym_type] = ACTIONS(2779), + [anon_sym_fn] = ACTIONS(2779), + [anon_sym_PLUS] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_STAR] = ACTIONS(2779), + [anon_sym_struct] = ACTIONS(2779), + [anon_sym_union] = ACTIONS(2779), + [anon_sym_pub] = ACTIONS(2779), + [anon_sym_mut] = ACTIONS(2779), + [anon_sym_enum] = ACTIONS(2779), + [anon_sym_interface] = ACTIONS(2779), + [anon_sym_QMARK] = ACTIONS(2779), + [anon_sym_BANG] = ACTIONS(2779), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2779), + [anon_sym_json_DOTdecode] = ACTIONS(2779), + [anon_sym_LBRACK2] = ACTIONS(2779), + [anon_sym_TILDE] = ACTIONS(2779), + [anon_sym_CARET] = ACTIONS(2779), + [anon_sym_AMP] = ACTIONS(2779), + [anon_sym_LT_DASH] = ACTIONS(2779), + [sym_none] = ACTIONS(2779), + [sym_true] = ACTIONS(2779), + [sym_false] = ACTIONS(2779), + [sym_nil] = ACTIONS(2779), + [anon_sym_if] = ACTIONS(2779), + [anon_sym_DOLLARif] = ACTIONS(2779), + [anon_sym_match] = ACTIONS(2779), + [anon_sym_select] = ACTIONS(2779), + [anon_sym_lock] = ACTIONS(2779), + [anon_sym_rlock] = ACTIONS(2779), + [anon_sym_unsafe] = ACTIONS(2779), + [anon_sym_sql] = ACTIONS(2779), + [sym_int_literal] = ACTIONS(2779), + [sym_float_literal] = ACTIONS(2779), + [sym_rune_literal] = ACTIONS(2779), + [anon_sym_SQUOTE] = ACTIONS(2779), + [anon_sym_DQUOTE] = ACTIONS(2779), + [anon_sym_c_SQUOTE] = ACTIONS(2779), + [anon_sym_c_DQUOTE] = ACTIONS(2779), + [anon_sym_r_SQUOTE] = ACTIONS(2779), + [anon_sym_r_DQUOTE] = ACTIONS(2779), + [sym_pseudo_compile_time_identifier] = ACTIONS(2779), + [anon_sym_shared] = ACTIONS(2779), + [anon_sym_map_LBRACK] = ACTIONS(2779), + [anon_sym_chan] = ACTIONS(2779), + [anon_sym_thread] = ACTIONS(2779), + [anon_sym_atomic] = ACTIONS(2779), + [anon_sym_assert] = ACTIONS(2779), + [anon_sym_defer] = ACTIONS(2779), + [anon_sym_goto] = ACTIONS(2779), + [anon_sym_break] = ACTIONS(2779), + [anon_sym_continue] = ACTIONS(2779), + [anon_sym_return] = ACTIONS(2779), + [anon_sym_DOLLARfor] = ACTIONS(2779), + [anon_sym_for] = ACTIONS(2779), + [anon_sym_POUND] = ACTIONS(2779), + [anon_sym_asm] = ACTIONS(2779), + [anon_sym_AT_LBRACK] = ACTIONS(2779), }, [1556] = { [sym_line_comment] = STATE(1556), [sym_block_comment] = STATE(1556), - [ts_builtin_sym_end] = ACTIONS(4451), - [sym_identifier] = ACTIONS(4453), - [anon_sym_LF] = ACTIONS(4453), - [anon_sym_CR] = ACTIONS(4453), - [anon_sym_CR_LF] = ACTIONS(4453), + [ts_builtin_sym_end] = ACTIONS(2687), + [sym_identifier] = ACTIONS(2689), + [anon_sym_LF] = ACTIONS(2689), + [anon_sym_CR] = ACTIONS(2689), + [anon_sym_CR_LF] = ACTIONS(2689), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4453), - [anon_sym_LBRACE] = ACTIONS(4453), - [anon_sym_const] = ACTIONS(4453), - [anon_sym_LPAREN] = ACTIONS(4453), - [anon_sym___global] = ACTIONS(4453), - [anon_sym_type] = ACTIONS(4453), - [anon_sym_fn] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(4453), - [anon_sym_DASH] = ACTIONS(4453), - [anon_sym_STAR] = ACTIONS(4453), - [anon_sym_struct] = ACTIONS(4453), - [anon_sym_union] = ACTIONS(4453), - [anon_sym_pub] = ACTIONS(4453), - [anon_sym_mut] = ACTIONS(4453), - [anon_sym_enum] = ACTIONS(4453), - [anon_sym_interface] = ACTIONS(4453), - [anon_sym_QMARK] = ACTIONS(4453), - [anon_sym_BANG] = ACTIONS(4453), - [anon_sym_go] = ACTIONS(4453), - [anon_sym_spawn] = ACTIONS(4453), - [anon_sym_json_DOTdecode] = ACTIONS(4453), - [anon_sym_LBRACK2] = ACTIONS(4453), - [anon_sym_TILDE] = ACTIONS(4453), - [anon_sym_CARET] = ACTIONS(4453), - [anon_sym_AMP] = ACTIONS(4453), - [anon_sym_LT_DASH] = ACTIONS(4453), - [sym_none] = ACTIONS(4453), - [sym_true] = ACTIONS(4453), - [sym_false] = ACTIONS(4453), - [sym_nil] = ACTIONS(4453), - [anon_sym_if] = ACTIONS(4453), - [anon_sym_DOLLARif] = ACTIONS(4453), - [anon_sym_match] = ACTIONS(4453), - [anon_sym_select] = ACTIONS(4453), - [anon_sym_lock] = ACTIONS(4453), - [anon_sym_rlock] = ACTIONS(4453), - [anon_sym_unsafe] = ACTIONS(4453), - [anon_sym_sql] = ACTIONS(4453), - [sym_int_literal] = ACTIONS(4453), - [sym_float_literal] = ACTIONS(4453), - [sym_rune_literal] = ACTIONS(4453), - [anon_sym_SQUOTE] = ACTIONS(4453), - [anon_sym_DQUOTE] = ACTIONS(4453), - [anon_sym_c_SQUOTE] = ACTIONS(4453), - [anon_sym_c_DQUOTE] = ACTIONS(4453), - [anon_sym_r_SQUOTE] = ACTIONS(4453), - [anon_sym_r_DQUOTE] = ACTIONS(4453), - [sym_pseudo_compile_time_identifier] = ACTIONS(4453), - [anon_sym_shared] = ACTIONS(4453), - [anon_sym_map_LBRACK] = ACTIONS(4453), - [anon_sym_chan] = ACTIONS(4453), - [anon_sym_thread] = ACTIONS(4453), - [anon_sym_atomic] = ACTIONS(4453), - [anon_sym_assert] = ACTIONS(4453), - [anon_sym_defer] = ACTIONS(4453), - [anon_sym_goto] = ACTIONS(4453), - [anon_sym_break] = ACTIONS(4453), - [anon_sym_continue] = ACTIONS(4453), - [anon_sym_return] = ACTIONS(4453), - [anon_sym_DOLLARfor] = ACTIONS(4453), - [anon_sym_for] = ACTIONS(4453), - [anon_sym_POUND] = ACTIONS(4453), - [anon_sym_asm] = ACTIONS(4453), - [anon_sym_AT_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2689), + [anon_sym_const] = ACTIONS(2689), + [anon_sym_LPAREN] = ACTIONS(2689), + [anon_sym___global] = ACTIONS(2689), + [anon_sym_type] = ACTIONS(2689), + [anon_sym_fn] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(2689), + [anon_sym_union] = ACTIONS(2689), + [anon_sym_pub] = ACTIONS(2689), + [anon_sym_mut] = ACTIONS(2689), + [anon_sym_enum] = ACTIONS(2689), + [anon_sym_interface] = ACTIONS(2689), + [anon_sym_QMARK] = ACTIONS(2689), + [anon_sym_BANG] = ACTIONS(2689), + [anon_sym_go] = ACTIONS(2689), + [anon_sym_spawn] = ACTIONS(2689), + [anon_sym_json_DOTdecode] = ACTIONS(2689), + [anon_sym_LBRACK2] = ACTIONS(2689), + [anon_sym_TILDE] = ACTIONS(2689), + [anon_sym_CARET] = ACTIONS(2689), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_LT_DASH] = ACTIONS(2689), + [sym_none] = ACTIONS(2689), + [sym_true] = ACTIONS(2689), + [sym_false] = ACTIONS(2689), + [sym_nil] = ACTIONS(2689), + [anon_sym_if] = ACTIONS(2689), + [anon_sym_DOLLARif] = ACTIONS(2689), + [anon_sym_match] = ACTIONS(2689), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2689), + [anon_sym_rlock] = ACTIONS(2689), + [anon_sym_unsafe] = ACTIONS(2689), + [anon_sym_sql] = ACTIONS(2689), + [sym_int_literal] = ACTIONS(2689), + [sym_float_literal] = ACTIONS(2689), + [sym_rune_literal] = ACTIONS(2689), + [anon_sym_SQUOTE] = ACTIONS(2689), + [anon_sym_DQUOTE] = ACTIONS(2689), + [anon_sym_c_SQUOTE] = ACTIONS(2689), + [anon_sym_c_DQUOTE] = ACTIONS(2689), + [anon_sym_r_SQUOTE] = ACTIONS(2689), + [anon_sym_r_DQUOTE] = ACTIONS(2689), + [sym_pseudo_compile_time_identifier] = ACTIONS(2689), + [anon_sym_shared] = ACTIONS(2689), + [anon_sym_map_LBRACK] = ACTIONS(2689), + [anon_sym_chan] = ACTIONS(2689), + [anon_sym_thread] = ACTIONS(2689), + [anon_sym_atomic] = ACTIONS(2689), + [anon_sym_assert] = ACTIONS(2689), + [anon_sym_defer] = ACTIONS(2689), + [anon_sym_goto] = ACTIONS(2689), + [anon_sym_break] = ACTIONS(2689), + [anon_sym_continue] = ACTIONS(2689), + [anon_sym_return] = ACTIONS(2689), + [anon_sym_DOLLARfor] = ACTIONS(2689), + [anon_sym_for] = ACTIONS(2689), + [anon_sym_POUND] = ACTIONS(2689), + [anon_sym_asm] = ACTIONS(2689), + [anon_sym_AT_LBRACK] = ACTIONS(2689), }, [1557] = { [sym_line_comment] = STATE(1557), [sym_block_comment] = STATE(1557), - [ts_builtin_sym_end] = ACTIONS(4455), - [sym_identifier] = ACTIONS(4457), - [anon_sym_LF] = ACTIONS(4457), - [anon_sym_CR] = ACTIONS(4457), - [anon_sym_CR_LF] = ACTIONS(4457), + [ts_builtin_sym_end] = ACTIONS(2759), + [sym_identifier] = ACTIONS(2761), + [anon_sym_LF] = ACTIONS(2761), + [anon_sym_CR] = ACTIONS(2761), + [anon_sym_CR_LF] = ACTIONS(2761), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4457), - [anon_sym_LBRACE] = ACTIONS(4457), - [anon_sym_const] = ACTIONS(4457), - [anon_sym_LPAREN] = ACTIONS(4457), - [anon_sym___global] = ACTIONS(4457), - [anon_sym_type] = ACTIONS(4457), - [anon_sym_fn] = ACTIONS(4457), - [anon_sym_PLUS] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_STAR] = ACTIONS(4457), - [anon_sym_struct] = ACTIONS(4457), - [anon_sym_union] = ACTIONS(4457), - [anon_sym_pub] = ACTIONS(4457), - [anon_sym_mut] = ACTIONS(4457), - [anon_sym_enum] = ACTIONS(4457), - [anon_sym_interface] = ACTIONS(4457), - [anon_sym_QMARK] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_go] = ACTIONS(4457), - [anon_sym_spawn] = ACTIONS(4457), - [anon_sym_json_DOTdecode] = ACTIONS(4457), - [anon_sym_LBRACK2] = ACTIONS(4457), - [anon_sym_TILDE] = ACTIONS(4457), - [anon_sym_CARET] = ACTIONS(4457), - [anon_sym_AMP] = ACTIONS(4457), - [anon_sym_LT_DASH] = ACTIONS(4457), - [sym_none] = ACTIONS(4457), - [sym_true] = ACTIONS(4457), - [sym_false] = ACTIONS(4457), - [sym_nil] = ACTIONS(4457), - [anon_sym_if] = ACTIONS(4457), - [anon_sym_DOLLARif] = ACTIONS(4457), - [anon_sym_match] = ACTIONS(4457), - [anon_sym_select] = ACTIONS(4457), - [anon_sym_lock] = ACTIONS(4457), - [anon_sym_rlock] = ACTIONS(4457), - [anon_sym_unsafe] = ACTIONS(4457), - [anon_sym_sql] = ACTIONS(4457), - [sym_int_literal] = ACTIONS(4457), - [sym_float_literal] = ACTIONS(4457), - [sym_rune_literal] = ACTIONS(4457), - [anon_sym_SQUOTE] = ACTIONS(4457), - [anon_sym_DQUOTE] = ACTIONS(4457), - [anon_sym_c_SQUOTE] = ACTIONS(4457), - [anon_sym_c_DQUOTE] = ACTIONS(4457), - [anon_sym_r_SQUOTE] = ACTIONS(4457), - [anon_sym_r_DQUOTE] = ACTIONS(4457), - [sym_pseudo_compile_time_identifier] = ACTIONS(4457), - [anon_sym_shared] = ACTIONS(4457), - [anon_sym_map_LBRACK] = ACTIONS(4457), - [anon_sym_chan] = ACTIONS(4457), - [anon_sym_thread] = ACTIONS(4457), - [anon_sym_atomic] = ACTIONS(4457), - [anon_sym_assert] = ACTIONS(4457), - [anon_sym_defer] = ACTIONS(4457), - [anon_sym_goto] = ACTIONS(4457), - [anon_sym_break] = ACTIONS(4457), - [anon_sym_continue] = ACTIONS(4457), - [anon_sym_return] = ACTIONS(4457), - [anon_sym_DOLLARfor] = ACTIONS(4457), - [anon_sym_for] = ACTIONS(4457), - [anon_sym_POUND] = ACTIONS(4457), - [anon_sym_asm] = ACTIONS(4457), - [anon_sym_AT_LBRACK] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2761), + [anon_sym_const] = ACTIONS(2761), + [anon_sym_LPAREN] = ACTIONS(2761), + [anon_sym___global] = ACTIONS(2761), + [anon_sym_type] = ACTIONS(2761), + [anon_sym_fn] = ACTIONS(2761), + [anon_sym_PLUS] = ACTIONS(2761), + [anon_sym_DASH] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(2761), + [anon_sym_struct] = ACTIONS(2761), + [anon_sym_union] = ACTIONS(2761), + [anon_sym_pub] = ACTIONS(2761), + [anon_sym_mut] = ACTIONS(2761), + [anon_sym_enum] = ACTIONS(2761), + [anon_sym_interface] = ACTIONS(2761), + [anon_sym_QMARK] = ACTIONS(2761), + [anon_sym_BANG] = ACTIONS(2761), + [anon_sym_go] = ACTIONS(2761), + [anon_sym_spawn] = ACTIONS(2761), + [anon_sym_json_DOTdecode] = ACTIONS(2761), + [anon_sym_LBRACK2] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2761), + [anon_sym_CARET] = ACTIONS(2761), + [anon_sym_AMP] = ACTIONS(2761), + [anon_sym_LT_DASH] = ACTIONS(2761), + [sym_none] = ACTIONS(2761), + [sym_true] = ACTIONS(2761), + [sym_false] = ACTIONS(2761), + [sym_nil] = ACTIONS(2761), + [anon_sym_if] = ACTIONS(2761), + [anon_sym_DOLLARif] = ACTIONS(2761), + [anon_sym_match] = ACTIONS(2761), + [anon_sym_select] = ACTIONS(2761), + [anon_sym_lock] = ACTIONS(2761), + [anon_sym_rlock] = ACTIONS(2761), + [anon_sym_unsafe] = ACTIONS(2761), + [anon_sym_sql] = ACTIONS(2761), + [sym_int_literal] = ACTIONS(2761), + [sym_float_literal] = ACTIONS(2761), + [sym_rune_literal] = ACTIONS(2761), + [anon_sym_SQUOTE] = ACTIONS(2761), + [anon_sym_DQUOTE] = ACTIONS(2761), + [anon_sym_c_SQUOTE] = ACTIONS(2761), + [anon_sym_c_DQUOTE] = ACTIONS(2761), + [anon_sym_r_SQUOTE] = ACTIONS(2761), + [anon_sym_r_DQUOTE] = ACTIONS(2761), + [sym_pseudo_compile_time_identifier] = ACTIONS(2761), + [anon_sym_shared] = ACTIONS(2761), + [anon_sym_map_LBRACK] = ACTIONS(2761), + [anon_sym_chan] = ACTIONS(2761), + [anon_sym_thread] = ACTIONS(2761), + [anon_sym_atomic] = ACTIONS(2761), + [anon_sym_assert] = ACTIONS(2761), + [anon_sym_defer] = ACTIONS(2761), + [anon_sym_goto] = ACTIONS(2761), + [anon_sym_break] = ACTIONS(2761), + [anon_sym_continue] = ACTIONS(2761), + [anon_sym_return] = ACTIONS(2761), + [anon_sym_DOLLARfor] = ACTIONS(2761), + [anon_sym_for] = ACTIONS(2761), + [anon_sym_POUND] = ACTIONS(2761), + [anon_sym_asm] = ACTIONS(2761), + [anon_sym_AT_LBRACK] = ACTIONS(2761), }, [1558] = { [sym_line_comment] = STATE(1558), [sym_block_comment] = STATE(1558), - [ts_builtin_sym_end] = ACTIONS(4459), - [sym_identifier] = ACTIONS(4461), - [anon_sym_LF] = ACTIONS(4461), - [anon_sym_CR] = ACTIONS(4461), - [anon_sym_CR_LF] = ACTIONS(4461), + [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(4461), - [anon_sym_LBRACE] = ACTIONS(4461), - [anon_sym_const] = ACTIONS(4461), - [anon_sym_LPAREN] = ACTIONS(4461), - [anon_sym___global] = ACTIONS(4461), - [anon_sym_type] = ACTIONS(4461), - [anon_sym_fn] = ACTIONS(4461), - [anon_sym_PLUS] = ACTIONS(4461), - [anon_sym_DASH] = ACTIONS(4461), - [anon_sym_STAR] = ACTIONS(4461), - [anon_sym_struct] = ACTIONS(4461), - [anon_sym_union] = ACTIONS(4461), - [anon_sym_pub] = ACTIONS(4461), - [anon_sym_mut] = ACTIONS(4461), - [anon_sym_enum] = ACTIONS(4461), - [anon_sym_interface] = ACTIONS(4461), - [anon_sym_QMARK] = ACTIONS(4461), - [anon_sym_BANG] = ACTIONS(4461), - [anon_sym_go] = ACTIONS(4461), - [anon_sym_spawn] = ACTIONS(4461), - [anon_sym_json_DOTdecode] = ACTIONS(4461), - [anon_sym_LBRACK2] = ACTIONS(4461), - [anon_sym_TILDE] = ACTIONS(4461), - [anon_sym_CARET] = ACTIONS(4461), - [anon_sym_AMP] = ACTIONS(4461), - [anon_sym_LT_DASH] = ACTIONS(4461), - [sym_none] = ACTIONS(4461), - [sym_true] = ACTIONS(4461), - [sym_false] = ACTIONS(4461), - [sym_nil] = ACTIONS(4461), - [anon_sym_if] = ACTIONS(4461), - [anon_sym_DOLLARif] = ACTIONS(4461), - [anon_sym_match] = ACTIONS(4461), - [anon_sym_select] = ACTIONS(4461), - [anon_sym_lock] = ACTIONS(4461), - [anon_sym_rlock] = ACTIONS(4461), - [anon_sym_unsafe] = ACTIONS(4461), - [anon_sym_sql] = ACTIONS(4461), - [sym_int_literal] = ACTIONS(4461), - [sym_float_literal] = ACTIONS(4461), - [sym_rune_literal] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4461), - [anon_sym_DQUOTE] = ACTIONS(4461), - [anon_sym_c_SQUOTE] = ACTIONS(4461), - [anon_sym_c_DQUOTE] = ACTIONS(4461), - [anon_sym_r_SQUOTE] = ACTIONS(4461), - [anon_sym_r_DQUOTE] = ACTIONS(4461), - [sym_pseudo_compile_time_identifier] = ACTIONS(4461), - [anon_sym_shared] = ACTIONS(4461), - [anon_sym_map_LBRACK] = ACTIONS(4461), - [anon_sym_chan] = ACTIONS(4461), - [anon_sym_thread] = ACTIONS(4461), - [anon_sym_atomic] = ACTIONS(4461), - [anon_sym_assert] = ACTIONS(4461), - [anon_sym_defer] = ACTIONS(4461), - [anon_sym_goto] = ACTIONS(4461), - [anon_sym_break] = ACTIONS(4461), - [anon_sym_continue] = ACTIONS(4461), - [anon_sym_return] = ACTIONS(4461), - [anon_sym_DOLLARfor] = ACTIONS(4461), - [anon_sym_for] = ACTIONS(4461), - [anon_sym_POUND] = ACTIONS(4461), - [anon_sym_asm] = ACTIONS(4461), - [anon_sym_AT_LBRACK] = ACTIONS(4461), + [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), + [anon_sym_SQUOTE] = ACTIONS(4362), + [anon_sym_DQUOTE] = ACTIONS(4362), + [anon_sym_c_SQUOTE] = ACTIONS(4362), + [anon_sym_c_DQUOTE] = ACTIONS(4362), + [anon_sym_r_SQUOTE] = ACTIONS(4362), + [anon_sym_r_DQUOTE] = 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), }, [1559] = { [sym_line_comment] = STATE(1559), [sym_block_comment] = STATE(1559), - [ts_builtin_sym_end] = ACTIONS(4463), - [sym_identifier] = ACTIONS(4465), - [anon_sym_LF] = ACTIONS(4465), - [anon_sym_CR] = ACTIONS(4465), - [anon_sym_CR_LF] = ACTIONS(4465), + [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(4465), - [anon_sym_LBRACE] = ACTIONS(4465), - [anon_sym_const] = ACTIONS(4465), - [anon_sym_LPAREN] = ACTIONS(4465), - [anon_sym___global] = ACTIONS(4465), - [anon_sym_type] = ACTIONS(4465), - [anon_sym_fn] = ACTIONS(4465), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [anon_sym_struct] = ACTIONS(4465), - [anon_sym_union] = ACTIONS(4465), - [anon_sym_pub] = ACTIONS(4465), - [anon_sym_mut] = ACTIONS(4465), - [anon_sym_enum] = ACTIONS(4465), - [anon_sym_interface] = ACTIONS(4465), - [anon_sym_QMARK] = ACTIONS(4465), - [anon_sym_BANG] = ACTIONS(4465), - [anon_sym_go] = ACTIONS(4465), - [anon_sym_spawn] = ACTIONS(4465), - [anon_sym_json_DOTdecode] = ACTIONS(4465), - [anon_sym_LBRACK2] = ACTIONS(4465), - [anon_sym_TILDE] = ACTIONS(4465), - [anon_sym_CARET] = ACTIONS(4465), - [anon_sym_AMP] = ACTIONS(4465), - [anon_sym_LT_DASH] = ACTIONS(4465), - [sym_none] = ACTIONS(4465), - [sym_true] = ACTIONS(4465), - [sym_false] = ACTIONS(4465), - [sym_nil] = ACTIONS(4465), - [anon_sym_if] = ACTIONS(4465), - [anon_sym_DOLLARif] = ACTIONS(4465), - [anon_sym_match] = ACTIONS(4465), - [anon_sym_select] = ACTIONS(4465), - [anon_sym_lock] = ACTIONS(4465), - [anon_sym_rlock] = ACTIONS(4465), - [anon_sym_unsafe] = ACTIONS(4465), - [anon_sym_sql] = ACTIONS(4465), - [sym_int_literal] = ACTIONS(4465), - [sym_float_literal] = ACTIONS(4465), - [sym_rune_literal] = ACTIONS(4465), - [anon_sym_SQUOTE] = ACTIONS(4465), - [anon_sym_DQUOTE] = ACTIONS(4465), - [anon_sym_c_SQUOTE] = ACTIONS(4465), - [anon_sym_c_DQUOTE] = ACTIONS(4465), - [anon_sym_r_SQUOTE] = ACTIONS(4465), - [anon_sym_r_DQUOTE] = ACTIONS(4465), - [sym_pseudo_compile_time_identifier] = ACTIONS(4465), - [anon_sym_shared] = ACTIONS(4465), - [anon_sym_map_LBRACK] = ACTIONS(4465), - [anon_sym_chan] = ACTIONS(4465), - [anon_sym_thread] = ACTIONS(4465), - [anon_sym_atomic] = ACTIONS(4465), - [anon_sym_assert] = ACTIONS(4465), - [anon_sym_defer] = ACTIONS(4465), - [anon_sym_goto] = ACTIONS(4465), - [anon_sym_break] = ACTIONS(4465), - [anon_sym_continue] = ACTIONS(4465), - [anon_sym_return] = ACTIONS(4465), - [anon_sym_DOLLARfor] = ACTIONS(4465), - [anon_sym_for] = ACTIONS(4465), - [anon_sym_POUND] = ACTIONS(4465), - [anon_sym_asm] = ACTIONS(4465), - [anon_sym_AT_LBRACK] = ACTIONS(4465), + [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), + [anon_sym_SQUOTE] = ACTIONS(4366), + [anon_sym_DQUOTE] = ACTIONS(4366), + [anon_sym_c_SQUOTE] = ACTIONS(4366), + [anon_sym_c_DQUOTE] = ACTIONS(4366), + [anon_sym_r_SQUOTE] = ACTIONS(4366), + [anon_sym_r_DQUOTE] = 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), }, [1560] = { [sym_line_comment] = STATE(1560), [sym_block_comment] = STATE(1560), - [ts_builtin_sym_end] = ACTIONS(4467), - [sym_identifier] = ACTIONS(4469), - [anon_sym_LF] = ACTIONS(4469), - [anon_sym_CR] = ACTIONS(4469), - [anon_sym_CR_LF] = ACTIONS(4469), + [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(4469), - [anon_sym_LBRACE] = ACTIONS(4469), - [anon_sym_const] = ACTIONS(4469), - [anon_sym_LPAREN] = ACTIONS(4469), - [anon_sym___global] = ACTIONS(4469), - [anon_sym_type] = ACTIONS(4469), - [anon_sym_fn] = ACTIONS(4469), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_STAR] = ACTIONS(4469), - [anon_sym_struct] = ACTIONS(4469), - [anon_sym_union] = ACTIONS(4469), - [anon_sym_pub] = ACTIONS(4469), - [anon_sym_mut] = ACTIONS(4469), - [anon_sym_enum] = ACTIONS(4469), - [anon_sym_interface] = ACTIONS(4469), - [anon_sym_QMARK] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(4469), - [anon_sym_go] = ACTIONS(4469), - [anon_sym_spawn] = ACTIONS(4469), - [anon_sym_json_DOTdecode] = ACTIONS(4469), - [anon_sym_LBRACK2] = ACTIONS(4469), - [anon_sym_TILDE] = ACTIONS(4469), - [anon_sym_CARET] = ACTIONS(4469), - [anon_sym_AMP] = ACTIONS(4469), - [anon_sym_LT_DASH] = ACTIONS(4469), - [sym_none] = ACTIONS(4469), - [sym_true] = ACTIONS(4469), - [sym_false] = ACTIONS(4469), - [sym_nil] = ACTIONS(4469), - [anon_sym_if] = ACTIONS(4469), - [anon_sym_DOLLARif] = ACTIONS(4469), - [anon_sym_match] = ACTIONS(4469), - [anon_sym_select] = ACTIONS(4469), - [anon_sym_lock] = ACTIONS(4469), - [anon_sym_rlock] = ACTIONS(4469), - [anon_sym_unsafe] = ACTIONS(4469), - [anon_sym_sql] = ACTIONS(4469), - [sym_int_literal] = ACTIONS(4469), - [sym_float_literal] = ACTIONS(4469), - [sym_rune_literal] = ACTIONS(4469), - [anon_sym_SQUOTE] = ACTIONS(4469), - [anon_sym_DQUOTE] = ACTIONS(4469), - [anon_sym_c_SQUOTE] = ACTIONS(4469), - [anon_sym_c_DQUOTE] = ACTIONS(4469), - [anon_sym_r_SQUOTE] = ACTIONS(4469), - [anon_sym_r_DQUOTE] = ACTIONS(4469), - [sym_pseudo_compile_time_identifier] = ACTIONS(4469), - [anon_sym_shared] = ACTIONS(4469), - [anon_sym_map_LBRACK] = ACTIONS(4469), - [anon_sym_chan] = ACTIONS(4469), - [anon_sym_thread] = ACTIONS(4469), - [anon_sym_atomic] = ACTIONS(4469), - [anon_sym_assert] = ACTIONS(4469), - [anon_sym_defer] = ACTIONS(4469), - [anon_sym_goto] = ACTIONS(4469), - [anon_sym_break] = ACTIONS(4469), - [anon_sym_continue] = ACTIONS(4469), - [anon_sym_return] = ACTIONS(4469), - [anon_sym_DOLLARfor] = ACTIONS(4469), - [anon_sym_for] = ACTIONS(4469), - [anon_sym_POUND] = ACTIONS(4469), - [anon_sym_asm] = ACTIONS(4469), - [anon_sym_AT_LBRACK] = ACTIONS(4469), + [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), + [anon_sym_SQUOTE] = ACTIONS(4370), + [anon_sym_DQUOTE] = ACTIONS(4370), + [anon_sym_c_SQUOTE] = ACTIONS(4370), + [anon_sym_c_DQUOTE] = ACTIONS(4370), + [anon_sym_r_SQUOTE] = ACTIONS(4370), + [anon_sym_r_DQUOTE] = 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), }, [1561] = { [sym_line_comment] = STATE(1561), [sym_block_comment] = STATE(1561), - [ts_builtin_sym_end] = ACTIONS(4471), - [sym_identifier] = ACTIONS(4473), - [anon_sym_LF] = ACTIONS(4473), - [anon_sym_CR] = ACTIONS(4473), - [anon_sym_CR_LF] = ACTIONS(4473), + [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(4473), - [anon_sym_LBRACE] = ACTIONS(4473), - [anon_sym_const] = ACTIONS(4473), - [anon_sym_LPAREN] = ACTIONS(4473), - [anon_sym___global] = ACTIONS(4473), - [anon_sym_type] = ACTIONS(4473), - [anon_sym_fn] = ACTIONS(4473), - [anon_sym_PLUS] = ACTIONS(4473), - [anon_sym_DASH] = ACTIONS(4473), - [anon_sym_STAR] = ACTIONS(4473), - [anon_sym_struct] = ACTIONS(4473), - [anon_sym_union] = ACTIONS(4473), - [anon_sym_pub] = ACTIONS(4473), - [anon_sym_mut] = ACTIONS(4473), - [anon_sym_enum] = ACTIONS(4473), - [anon_sym_interface] = ACTIONS(4473), - [anon_sym_QMARK] = ACTIONS(4473), - [anon_sym_BANG] = ACTIONS(4473), - [anon_sym_go] = ACTIONS(4473), - [anon_sym_spawn] = ACTIONS(4473), - [anon_sym_json_DOTdecode] = ACTIONS(4473), - [anon_sym_LBRACK2] = ACTIONS(4473), - [anon_sym_TILDE] = ACTIONS(4473), - [anon_sym_CARET] = ACTIONS(4473), - [anon_sym_AMP] = ACTIONS(4473), - [anon_sym_LT_DASH] = ACTIONS(4473), - [sym_none] = ACTIONS(4473), - [sym_true] = ACTIONS(4473), - [sym_false] = ACTIONS(4473), - [sym_nil] = ACTIONS(4473), - [anon_sym_if] = ACTIONS(4473), - [anon_sym_DOLLARif] = ACTIONS(4473), - [anon_sym_match] = ACTIONS(4473), - [anon_sym_select] = ACTIONS(4473), - [anon_sym_lock] = ACTIONS(4473), - [anon_sym_rlock] = ACTIONS(4473), - [anon_sym_unsafe] = ACTIONS(4473), - [anon_sym_sql] = ACTIONS(4473), - [sym_int_literal] = ACTIONS(4473), - [sym_float_literal] = ACTIONS(4473), - [sym_rune_literal] = ACTIONS(4473), - [anon_sym_SQUOTE] = ACTIONS(4473), - [anon_sym_DQUOTE] = ACTIONS(4473), - [anon_sym_c_SQUOTE] = ACTIONS(4473), - [anon_sym_c_DQUOTE] = ACTIONS(4473), - [anon_sym_r_SQUOTE] = ACTIONS(4473), - [anon_sym_r_DQUOTE] = ACTIONS(4473), - [sym_pseudo_compile_time_identifier] = ACTIONS(4473), - [anon_sym_shared] = ACTIONS(4473), - [anon_sym_map_LBRACK] = ACTIONS(4473), - [anon_sym_chan] = ACTIONS(4473), - [anon_sym_thread] = ACTIONS(4473), - [anon_sym_atomic] = ACTIONS(4473), - [anon_sym_assert] = ACTIONS(4473), - [anon_sym_defer] = ACTIONS(4473), - [anon_sym_goto] = ACTIONS(4473), - [anon_sym_break] = ACTIONS(4473), - [anon_sym_continue] = ACTIONS(4473), - [anon_sym_return] = ACTIONS(4473), - [anon_sym_DOLLARfor] = ACTIONS(4473), - [anon_sym_for] = ACTIONS(4473), - [anon_sym_POUND] = ACTIONS(4473), - [anon_sym_asm] = ACTIONS(4473), - [anon_sym_AT_LBRACK] = ACTIONS(4473), + [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), + [anon_sym_SQUOTE] = ACTIONS(4374), + [anon_sym_DQUOTE] = ACTIONS(4374), + [anon_sym_c_SQUOTE] = ACTIONS(4374), + [anon_sym_c_DQUOTE] = ACTIONS(4374), + [anon_sym_r_SQUOTE] = ACTIONS(4374), + [anon_sym_r_DQUOTE] = 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), }, [1562] = { [sym_line_comment] = STATE(1562), [sym_block_comment] = STATE(1562), - [ts_builtin_sym_end] = ACTIONS(4475), - [sym_identifier] = ACTIONS(4477), - [anon_sym_LF] = ACTIONS(4477), - [anon_sym_CR] = ACTIONS(4477), - [anon_sym_CR_LF] = ACTIONS(4477), + [ts_builtin_sym_end] = ACTIONS(2393), + [sym_identifier] = ACTIONS(2395), + [anon_sym_LF] = ACTIONS(2395), + [anon_sym_CR] = ACTIONS(2395), + [anon_sym_CR_LF] = ACTIONS(2395), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4477), - [anon_sym_LBRACE] = ACTIONS(4477), - [anon_sym_const] = ACTIONS(4477), - [anon_sym_LPAREN] = ACTIONS(4477), - [anon_sym___global] = ACTIONS(4477), - [anon_sym_type] = ACTIONS(4477), - [anon_sym_fn] = ACTIONS(4477), - [anon_sym_PLUS] = ACTIONS(4477), - [anon_sym_DASH] = ACTIONS(4477), - [anon_sym_STAR] = ACTIONS(4477), - [anon_sym_struct] = ACTIONS(4477), - [anon_sym_union] = ACTIONS(4477), - [anon_sym_pub] = ACTIONS(4477), - [anon_sym_mut] = ACTIONS(4477), - [anon_sym_enum] = ACTIONS(4477), - [anon_sym_interface] = ACTIONS(4477), - [anon_sym_QMARK] = ACTIONS(4477), - [anon_sym_BANG] = ACTIONS(4477), - [anon_sym_go] = ACTIONS(4477), - [anon_sym_spawn] = ACTIONS(4477), - [anon_sym_json_DOTdecode] = ACTIONS(4477), - [anon_sym_LBRACK2] = ACTIONS(4477), - [anon_sym_TILDE] = ACTIONS(4477), - [anon_sym_CARET] = ACTIONS(4477), - [anon_sym_AMP] = ACTIONS(4477), - [anon_sym_LT_DASH] = ACTIONS(4477), - [sym_none] = ACTIONS(4477), - [sym_true] = ACTIONS(4477), - [sym_false] = ACTIONS(4477), - [sym_nil] = ACTIONS(4477), - [anon_sym_if] = ACTIONS(4477), - [anon_sym_DOLLARif] = ACTIONS(4477), - [anon_sym_match] = ACTIONS(4477), - [anon_sym_select] = ACTIONS(4477), - [anon_sym_lock] = ACTIONS(4477), - [anon_sym_rlock] = ACTIONS(4477), - [anon_sym_unsafe] = ACTIONS(4477), - [anon_sym_sql] = ACTIONS(4477), - [sym_int_literal] = ACTIONS(4477), - [sym_float_literal] = ACTIONS(4477), - [sym_rune_literal] = ACTIONS(4477), - [anon_sym_SQUOTE] = ACTIONS(4477), - [anon_sym_DQUOTE] = ACTIONS(4477), - [anon_sym_c_SQUOTE] = ACTIONS(4477), - [anon_sym_c_DQUOTE] = ACTIONS(4477), - [anon_sym_r_SQUOTE] = ACTIONS(4477), - [anon_sym_r_DQUOTE] = ACTIONS(4477), - [sym_pseudo_compile_time_identifier] = ACTIONS(4477), - [anon_sym_shared] = ACTIONS(4477), - [anon_sym_map_LBRACK] = ACTIONS(4477), - [anon_sym_chan] = ACTIONS(4477), - [anon_sym_thread] = ACTIONS(4477), - [anon_sym_atomic] = ACTIONS(4477), - [anon_sym_assert] = ACTIONS(4477), - [anon_sym_defer] = ACTIONS(4477), - [anon_sym_goto] = ACTIONS(4477), - [anon_sym_break] = ACTIONS(4477), - [anon_sym_continue] = ACTIONS(4477), - [anon_sym_return] = ACTIONS(4477), - [anon_sym_DOLLARfor] = ACTIONS(4477), - [anon_sym_for] = ACTIONS(4477), - [anon_sym_POUND] = ACTIONS(4477), - [anon_sym_asm] = ACTIONS(4477), - [anon_sym_AT_LBRACK] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym___global] = ACTIONS(2395), + [anon_sym_type] = ACTIONS(2395), + [anon_sym_fn] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_pub] = ACTIONS(2395), + [anon_sym_mut] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_interface] = ACTIONS(2395), + [anon_sym_QMARK] = ACTIONS(2395), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_go] = ACTIONS(2395), + [anon_sym_spawn] = ACTIONS(2395), + [anon_sym_json_DOTdecode] = ACTIONS(2395), + [anon_sym_LBRACK2] = ACTIONS(2395), + [anon_sym_TILDE] = ACTIONS(2395), + [anon_sym_CARET] = ACTIONS(2395), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_LT_DASH] = ACTIONS(2395), + [sym_none] = ACTIONS(2395), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_nil] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_DOLLARif] = ACTIONS(2395), + [anon_sym_match] = ACTIONS(2395), + [anon_sym_select] = ACTIONS(2395), + [anon_sym_lock] = ACTIONS(2395), + [anon_sym_rlock] = ACTIONS(2395), + [anon_sym_unsafe] = ACTIONS(2395), + [anon_sym_sql] = ACTIONS(2395), + [sym_int_literal] = ACTIONS(2395), + [sym_float_literal] = ACTIONS(2395), + [sym_rune_literal] = ACTIONS(2395), + [anon_sym_SQUOTE] = ACTIONS(2395), + [anon_sym_DQUOTE] = ACTIONS(2395), + [anon_sym_c_SQUOTE] = ACTIONS(2395), + [anon_sym_c_DQUOTE] = ACTIONS(2395), + [anon_sym_r_SQUOTE] = ACTIONS(2395), + [anon_sym_r_DQUOTE] = ACTIONS(2395), + [sym_pseudo_compile_time_identifier] = ACTIONS(2395), + [anon_sym_shared] = ACTIONS(2395), + [anon_sym_map_LBRACK] = ACTIONS(2395), + [anon_sym_chan] = ACTIONS(2395), + [anon_sym_thread] = ACTIONS(2395), + [anon_sym_atomic] = ACTIONS(2395), + [anon_sym_assert] = ACTIONS(2395), + [anon_sym_defer] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_DOLLARfor] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_POUND] = ACTIONS(2395), + [anon_sym_asm] = ACTIONS(2395), + [anon_sym_AT_LBRACK] = ACTIONS(2395), }, [1563] = { [sym_line_comment] = STATE(1563), [sym_block_comment] = STATE(1563), - [ts_builtin_sym_end] = ACTIONS(4479), - [sym_identifier] = ACTIONS(4481), - [anon_sym_LF] = ACTIONS(4481), - [anon_sym_CR] = ACTIONS(4481), - [anon_sym_CR_LF] = ACTIONS(4481), + [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(4481), - [anon_sym_LBRACE] = ACTIONS(4481), - [anon_sym_const] = ACTIONS(4481), - [anon_sym_LPAREN] = ACTIONS(4481), - [anon_sym___global] = ACTIONS(4481), - [anon_sym_type] = ACTIONS(4481), - [anon_sym_fn] = ACTIONS(4481), - [anon_sym_PLUS] = ACTIONS(4481), - [anon_sym_DASH] = ACTIONS(4481), - [anon_sym_STAR] = ACTIONS(4481), - [anon_sym_struct] = ACTIONS(4481), - [anon_sym_union] = ACTIONS(4481), - [anon_sym_pub] = ACTIONS(4481), - [anon_sym_mut] = ACTIONS(4481), - [anon_sym_enum] = ACTIONS(4481), - [anon_sym_interface] = ACTIONS(4481), - [anon_sym_QMARK] = ACTIONS(4481), - [anon_sym_BANG] = ACTIONS(4481), - [anon_sym_go] = ACTIONS(4481), - [anon_sym_spawn] = ACTIONS(4481), - [anon_sym_json_DOTdecode] = ACTIONS(4481), - [anon_sym_LBRACK2] = ACTIONS(4481), - [anon_sym_TILDE] = ACTIONS(4481), - [anon_sym_CARET] = ACTIONS(4481), - [anon_sym_AMP] = ACTIONS(4481), - [anon_sym_LT_DASH] = ACTIONS(4481), - [sym_none] = ACTIONS(4481), - [sym_true] = ACTIONS(4481), - [sym_false] = ACTIONS(4481), - [sym_nil] = ACTIONS(4481), - [anon_sym_if] = ACTIONS(4481), - [anon_sym_DOLLARif] = ACTIONS(4481), - [anon_sym_match] = ACTIONS(4481), - [anon_sym_select] = ACTIONS(4481), - [anon_sym_lock] = ACTIONS(4481), - [anon_sym_rlock] = ACTIONS(4481), - [anon_sym_unsafe] = ACTIONS(4481), - [anon_sym_sql] = ACTIONS(4481), - [sym_int_literal] = ACTIONS(4481), - [sym_float_literal] = ACTIONS(4481), - [sym_rune_literal] = ACTIONS(4481), - [anon_sym_SQUOTE] = ACTIONS(4481), - [anon_sym_DQUOTE] = ACTIONS(4481), - [anon_sym_c_SQUOTE] = ACTIONS(4481), - [anon_sym_c_DQUOTE] = ACTIONS(4481), - [anon_sym_r_SQUOTE] = ACTIONS(4481), - [anon_sym_r_DQUOTE] = ACTIONS(4481), - [sym_pseudo_compile_time_identifier] = ACTIONS(4481), - [anon_sym_shared] = ACTIONS(4481), - [anon_sym_map_LBRACK] = ACTIONS(4481), - [anon_sym_chan] = ACTIONS(4481), - [anon_sym_thread] = ACTIONS(4481), - [anon_sym_atomic] = ACTIONS(4481), - [anon_sym_assert] = ACTIONS(4481), - [anon_sym_defer] = ACTIONS(4481), - [anon_sym_goto] = ACTIONS(4481), - [anon_sym_break] = ACTIONS(4481), - [anon_sym_continue] = ACTIONS(4481), - [anon_sym_return] = ACTIONS(4481), - [anon_sym_DOLLARfor] = ACTIONS(4481), - [anon_sym_for] = ACTIONS(4481), - [anon_sym_POUND] = ACTIONS(4481), - [anon_sym_asm] = ACTIONS(4481), - [anon_sym_AT_LBRACK] = ACTIONS(4481), + [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), + [anon_sym_SQUOTE] = ACTIONS(4378), + [anon_sym_DQUOTE] = ACTIONS(4378), + [anon_sym_c_SQUOTE] = ACTIONS(4378), + [anon_sym_c_DQUOTE] = ACTIONS(4378), + [anon_sym_r_SQUOTE] = ACTIONS(4378), + [anon_sym_r_DQUOTE] = 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), }, [1564] = { [sym_line_comment] = STATE(1564), [sym_block_comment] = STATE(1564), - [ts_builtin_sym_end] = ACTIONS(4483), - [sym_identifier] = ACTIONS(4485), - [anon_sym_LF] = ACTIONS(4485), - [anon_sym_CR] = ACTIONS(4485), - [anon_sym_CR_LF] = ACTIONS(4485), + [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(4485), - [anon_sym_LBRACE] = ACTIONS(4485), - [anon_sym_const] = ACTIONS(4485), - [anon_sym_LPAREN] = ACTIONS(4485), - [anon_sym___global] = ACTIONS(4485), - [anon_sym_type] = ACTIONS(4485), - [anon_sym_fn] = ACTIONS(4485), - [anon_sym_PLUS] = ACTIONS(4485), - [anon_sym_DASH] = ACTIONS(4485), - [anon_sym_STAR] = ACTIONS(4485), - [anon_sym_struct] = ACTIONS(4485), - [anon_sym_union] = ACTIONS(4485), - [anon_sym_pub] = ACTIONS(4485), - [anon_sym_mut] = ACTIONS(4485), - [anon_sym_enum] = ACTIONS(4485), - [anon_sym_interface] = ACTIONS(4485), - [anon_sym_QMARK] = ACTIONS(4485), - [anon_sym_BANG] = ACTIONS(4485), - [anon_sym_go] = ACTIONS(4485), - [anon_sym_spawn] = ACTIONS(4485), - [anon_sym_json_DOTdecode] = ACTIONS(4485), - [anon_sym_LBRACK2] = ACTIONS(4485), - [anon_sym_TILDE] = ACTIONS(4485), - [anon_sym_CARET] = ACTIONS(4485), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT_DASH] = ACTIONS(4485), - [sym_none] = ACTIONS(4485), - [sym_true] = ACTIONS(4485), - [sym_false] = ACTIONS(4485), - [sym_nil] = ACTIONS(4485), - [anon_sym_if] = ACTIONS(4485), - [anon_sym_DOLLARif] = ACTIONS(4485), - [anon_sym_match] = ACTIONS(4485), - [anon_sym_select] = ACTIONS(4485), - [anon_sym_lock] = ACTIONS(4485), - [anon_sym_rlock] = ACTIONS(4485), - [anon_sym_unsafe] = ACTIONS(4485), - [anon_sym_sql] = ACTIONS(4485), - [sym_int_literal] = ACTIONS(4485), - [sym_float_literal] = ACTIONS(4485), - [sym_rune_literal] = ACTIONS(4485), - [anon_sym_SQUOTE] = ACTIONS(4485), - [anon_sym_DQUOTE] = ACTIONS(4485), - [anon_sym_c_SQUOTE] = ACTIONS(4485), - [anon_sym_c_DQUOTE] = ACTIONS(4485), - [anon_sym_r_SQUOTE] = ACTIONS(4485), - [anon_sym_r_DQUOTE] = ACTIONS(4485), - [sym_pseudo_compile_time_identifier] = ACTIONS(4485), - [anon_sym_shared] = ACTIONS(4485), - [anon_sym_map_LBRACK] = ACTIONS(4485), - [anon_sym_chan] = ACTIONS(4485), - [anon_sym_thread] = ACTIONS(4485), - [anon_sym_atomic] = ACTIONS(4485), - [anon_sym_assert] = ACTIONS(4485), - [anon_sym_defer] = ACTIONS(4485), - [anon_sym_goto] = ACTIONS(4485), - [anon_sym_break] = ACTIONS(4485), - [anon_sym_continue] = ACTIONS(4485), - [anon_sym_return] = ACTIONS(4485), - [anon_sym_DOLLARfor] = ACTIONS(4485), - [anon_sym_for] = ACTIONS(4485), - [anon_sym_POUND] = ACTIONS(4485), - [anon_sym_asm] = ACTIONS(4485), - [anon_sym_AT_LBRACK] = ACTIONS(4485), + [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), + [anon_sym_SQUOTE] = ACTIONS(4382), + [anon_sym_DQUOTE] = ACTIONS(4382), + [anon_sym_c_SQUOTE] = ACTIONS(4382), + [anon_sym_c_DQUOTE] = ACTIONS(4382), + [anon_sym_r_SQUOTE] = ACTIONS(4382), + [anon_sym_r_DQUOTE] = 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), }, [1565] = { [sym_line_comment] = STATE(1565), [sym_block_comment] = STATE(1565), - [ts_builtin_sym_end] = ACTIONS(4487), - [sym_identifier] = ACTIONS(4489), - [anon_sym_LF] = ACTIONS(4489), - [anon_sym_CR] = ACTIONS(4489), - [anon_sym_CR_LF] = ACTIONS(4489), + [ts_builtin_sym_end] = ACTIONS(2753), + [sym_identifier] = ACTIONS(2755), + [anon_sym_LF] = ACTIONS(2755), + [anon_sym_CR] = ACTIONS(2755), + [anon_sym_CR_LF] = ACTIONS(2755), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4489), - [anon_sym_LBRACE] = ACTIONS(4489), - [anon_sym_const] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4489), - [anon_sym___global] = ACTIONS(4489), - [anon_sym_type] = ACTIONS(4489), - [anon_sym_fn] = ACTIONS(4489), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_struct] = ACTIONS(4489), - [anon_sym_union] = ACTIONS(4489), - [anon_sym_pub] = ACTIONS(4489), - [anon_sym_mut] = ACTIONS(4489), - [anon_sym_enum] = ACTIONS(4489), - [anon_sym_interface] = ACTIONS(4489), - [anon_sym_QMARK] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_go] = ACTIONS(4489), - [anon_sym_spawn] = ACTIONS(4489), - [anon_sym_json_DOTdecode] = ACTIONS(4489), - [anon_sym_LBRACK2] = ACTIONS(4489), - [anon_sym_TILDE] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym_AMP] = ACTIONS(4489), - [anon_sym_LT_DASH] = ACTIONS(4489), - [sym_none] = ACTIONS(4489), - [sym_true] = ACTIONS(4489), - [sym_false] = ACTIONS(4489), - [sym_nil] = ACTIONS(4489), - [anon_sym_if] = ACTIONS(4489), - [anon_sym_DOLLARif] = ACTIONS(4489), - [anon_sym_match] = ACTIONS(4489), - [anon_sym_select] = ACTIONS(4489), - [anon_sym_lock] = ACTIONS(4489), - [anon_sym_rlock] = ACTIONS(4489), - [anon_sym_unsafe] = ACTIONS(4489), - [anon_sym_sql] = ACTIONS(4489), - [sym_int_literal] = ACTIONS(4489), - [sym_float_literal] = ACTIONS(4489), - [sym_rune_literal] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DQUOTE] = ACTIONS(4489), - [anon_sym_c_SQUOTE] = ACTIONS(4489), - [anon_sym_c_DQUOTE] = ACTIONS(4489), - [anon_sym_r_SQUOTE] = ACTIONS(4489), - [anon_sym_r_DQUOTE] = ACTIONS(4489), - [sym_pseudo_compile_time_identifier] = ACTIONS(4489), - [anon_sym_shared] = ACTIONS(4489), - [anon_sym_map_LBRACK] = ACTIONS(4489), - [anon_sym_chan] = ACTIONS(4489), - [anon_sym_thread] = ACTIONS(4489), - [anon_sym_atomic] = ACTIONS(4489), - [anon_sym_assert] = ACTIONS(4489), - [anon_sym_defer] = ACTIONS(4489), - [anon_sym_goto] = ACTIONS(4489), - [anon_sym_break] = ACTIONS(4489), - [anon_sym_continue] = ACTIONS(4489), - [anon_sym_return] = ACTIONS(4489), - [anon_sym_DOLLARfor] = ACTIONS(4489), - [anon_sym_for] = ACTIONS(4489), - [anon_sym_POUND] = ACTIONS(4489), - [anon_sym_asm] = ACTIONS(4489), - [anon_sym_AT_LBRACK] = ACTIONS(4489), + [anon_sym_DOT] = ACTIONS(2755), + [anon_sym_LBRACE] = ACTIONS(2755), + [anon_sym_const] = ACTIONS(2755), + [anon_sym_LPAREN] = ACTIONS(2755), + [anon_sym___global] = ACTIONS(2755), + [anon_sym_type] = ACTIONS(2755), + [anon_sym_fn] = ACTIONS(2755), + [anon_sym_PLUS] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_struct] = ACTIONS(2755), + [anon_sym_union] = ACTIONS(2755), + [anon_sym_pub] = ACTIONS(2755), + [anon_sym_mut] = ACTIONS(2755), + [anon_sym_enum] = ACTIONS(2755), + [anon_sym_interface] = ACTIONS(2755), + [anon_sym_QMARK] = ACTIONS(2755), + [anon_sym_BANG] = ACTIONS(2755), + [anon_sym_go] = ACTIONS(2755), + [anon_sym_spawn] = ACTIONS(2755), + [anon_sym_json_DOTdecode] = ACTIONS(2755), + [anon_sym_LBRACK2] = ACTIONS(2755), + [anon_sym_TILDE] = ACTIONS(2755), + [anon_sym_CARET] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(2755), + [anon_sym_LT_DASH] = ACTIONS(2755), + [sym_none] = ACTIONS(2755), + [sym_true] = ACTIONS(2755), + [sym_false] = ACTIONS(2755), + [sym_nil] = ACTIONS(2755), + [anon_sym_if] = ACTIONS(2755), + [anon_sym_DOLLARif] = ACTIONS(2755), + [anon_sym_match] = ACTIONS(2755), + [anon_sym_select] = ACTIONS(2755), + [anon_sym_lock] = ACTIONS(2755), + [anon_sym_rlock] = ACTIONS(2755), + [anon_sym_unsafe] = ACTIONS(2755), + [anon_sym_sql] = ACTIONS(2755), + [sym_int_literal] = ACTIONS(2755), + [sym_float_literal] = ACTIONS(2755), + [sym_rune_literal] = ACTIONS(2755), + [anon_sym_SQUOTE] = ACTIONS(2755), + [anon_sym_DQUOTE] = ACTIONS(2755), + [anon_sym_c_SQUOTE] = ACTIONS(2755), + [anon_sym_c_DQUOTE] = ACTIONS(2755), + [anon_sym_r_SQUOTE] = ACTIONS(2755), + [anon_sym_r_DQUOTE] = ACTIONS(2755), + [sym_pseudo_compile_time_identifier] = ACTIONS(2755), + [anon_sym_shared] = ACTIONS(2755), + [anon_sym_map_LBRACK] = ACTIONS(2755), + [anon_sym_chan] = ACTIONS(2755), + [anon_sym_thread] = ACTIONS(2755), + [anon_sym_atomic] = ACTIONS(2755), + [anon_sym_assert] = ACTIONS(2755), + [anon_sym_defer] = ACTIONS(2755), + [anon_sym_goto] = ACTIONS(2755), + [anon_sym_break] = ACTIONS(2755), + [anon_sym_continue] = ACTIONS(2755), + [anon_sym_return] = ACTIONS(2755), + [anon_sym_DOLLARfor] = ACTIONS(2755), + [anon_sym_for] = ACTIONS(2755), + [anon_sym_POUND] = ACTIONS(2755), + [anon_sym_asm] = ACTIONS(2755), + [anon_sym_AT_LBRACK] = ACTIONS(2755), }, [1566] = { [sym_line_comment] = STATE(1566), [sym_block_comment] = STATE(1566), - [ts_builtin_sym_end] = ACTIONS(4491), - [sym_identifier] = ACTIONS(4493), - [anon_sym_LF] = ACTIONS(4493), - [anon_sym_CR] = ACTIONS(4493), - [anon_sym_CR_LF] = ACTIONS(4493), + [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(4493), - [anon_sym_LBRACE] = ACTIONS(4493), - [anon_sym_const] = ACTIONS(4493), - [anon_sym_LPAREN] = ACTIONS(4493), - [anon_sym___global] = ACTIONS(4493), - [anon_sym_type] = ACTIONS(4493), - [anon_sym_fn] = ACTIONS(4493), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_STAR] = ACTIONS(4493), - [anon_sym_struct] = ACTIONS(4493), - [anon_sym_union] = ACTIONS(4493), - [anon_sym_pub] = ACTIONS(4493), - [anon_sym_mut] = ACTIONS(4493), - [anon_sym_enum] = ACTIONS(4493), - [anon_sym_interface] = ACTIONS(4493), - [anon_sym_QMARK] = ACTIONS(4493), - [anon_sym_BANG] = ACTIONS(4493), - [anon_sym_go] = ACTIONS(4493), - [anon_sym_spawn] = ACTIONS(4493), - [anon_sym_json_DOTdecode] = ACTIONS(4493), - [anon_sym_LBRACK2] = ACTIONS(4493), - [anon_sym_TILDE] = ACTIONS(4493), - [anon_sym_CARET] = ACTIONS(4493), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_LT_DASH] = ACTIONS(4493), - [sym_none] = ACTIONS(4493), - [sym_true] = ACTIONS(4493), - [sym_false] = ACTIONS(4493), - [sym_nil] = ACTIONS(4493), - [anon_sym_if] = ACTIONS(4493), - [anon_sym_DOLLARif] = ACTIONS(4493), - [anon_sym_match] = ACTIONS(4493), - [anon_sym_select] = ACTIONS(4493), - [anon_sym_lock] = ACTIONS(4493), - [anon_sym_rlock] = ACTIONS(4493), - [anon_sym_unsafe] = ACTIONS(4493), - [anon_sym_sql] = ACTIONS(4493), - [sym_int_literal] = ACTIONS(4493), - [sym_float_literal] = ACTIONS(4493), - [sym_rune_literal] = ACTIONS(4493), - [anon_sym_SQUOTE] = ACTIONS(4493), - [anon_sym_DQUOTE] = ACTIONS(4493), - [anon_sym_c_SQUOTE] = ACTIONS(4493), - [anon_sym_c_DQUOTE] = ACTIONS(4493), - [anon_sym_r_SQUOTE] = ACTIONS(4493), - [anon_sym_r_DQUOTE] = ACTIONS(4493), - [sym_pseudo_compile_time_identifier] = ACTIONS(4493), - [anon_sym_shared] = ACTIONS(4493), - [anon_sym_map_LBRACK] = ACTIONS(4493), - [anon_sym_chan] = ACTIONS(4493), - [anon_sym_thread] = ACTIONS(4493), - [anon_sym_atomic] = ACTIONS(4493), - [anon_sym_assert] = ACTIONS(4493), - [anon_sym_defer] = ACTIONS(4493), - [anon_sym_goto] = ACTIONS(4493), - [anon_sym_break] = ACTIONS(4493), - [anon_sym_continue] = ACTIONS(4493), - [anon_sym_return] = ACTIONS(4493), - [anon_sym_DOLLARfor] = ACTIONS(4493), - [anon_sym_for] = ACTIONS(4493), - [anon_sym_POUND] = ACTIONS(4493), - [anon_sym_asm] = ACTIONS(4493), - [anon_sym_AT_LBRACK] = ACTIONS(4493), + [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), + [anon_sym_SQUOTE] = ACTIONS(4386), + [anon_sym_DQUOTE] = ACTIONS(4386), + [anon_sym_c_SQUOTE] = ACTIONS(4386), + [anon_sym_c_DQUOTE] = ACTIONS(4386), + [anon_sym_r_SQUOTE] = ACTIONS(4386), + [anon_sym_r_DQUOTE] = 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), }, [1567] = { [sym_line_comment] = STATE(1567), [sym_block_comment] = STATE(1567), - [ts_builtin_sym_end] = ACTIONS(4495), - [sym_identifier] = ACTIONS(4497), - [anon_sym_LF] = ACTIONS(4497), - [anon_sym_CR] = ACTIONS(4497), - [anon_sym_CR_LF] = ACTIONS(4497), + [ts_builtin_sym_end] = ACTIONS(2097), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LF] = ACTIONS(2099), + [anon_sym_CR] = ACTIONS(2099), + [anon_sym_CR_LF] = ACTIONS(2099), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4497), - [anon_sym_LBRACE] = ACTIONS(4497), - [anon_sym_const] = ACTIONS(4497), - [anon_sym_LPAREN] = ACTIONS(4497), - [anon_sym___global] = ACTIONS(4497), - [anon_sym_type] = ACTIONS(4497), - [anon_sym_fn] = ACTIONS(4497), - [anon_sym_PLUS] = ACTIONS(4497), - [anon_sym_DASH] = ACTIONS(4497), - [anon_sym_STAR] = ACTIONS(4497), - [anon_sym_struct] = ACTIONS(4497), - [anon_sym_union] = ACTIONS(4497), - [anon_sym_pub] = ACTIONS(4497), - [anon_sym_mut] = ACTIONS(4497), - [anon_sym_enum] = ACTIONS(4497), - [anon_sym_interface] = ACTIONS(4497), - [anon_sym_QMARK] = ACTIONS(4497), - [anon_sym_BANG] = ACTIONS(4497), - [anon_sym_go] = ACTIONS(4497), - [anon_sym_spawn] = ACTIONS(4497), - [anon_sym_json_DOTdecode] = ACTIONS(4497), - [anon_sym_LBRACK2] = ACTIONS(4497), - [anon_sym_TILDE] = ACTIONS(4497), - [anon_sym_CARET] = ACTIONS(4497), - [anon_sym_AMP] = ACTIONS(4497), - [anon_sym_LT_DASH] = ACTIONS(4497), - [sym_none] = ACTIONS(4497), - [sym_true] = ACTIONS(4497), - [sym_false] = ACTIONS(4497), - [sym_nil] = ACTIONS(4497), - [anon_sym_if] = ACTIONS(4497), - [anon_sym_DOLLARif] = ACTIONS(4497), - [anon_sym_match] = ACTIONS(4497), - [anon_sym_select] = ACTIONS(4497), - [anon_sym_lock] = ACTIONS(4497), - [anon_sym_rlock] = ACTIONS(4497), - [anon_sym_unsafe] = ACTIONS(4497), - [anon_sym_sql] = ACTIONS(4497), - [sym_int_literal] = ACTIONS(4497), - [sym_float_literal] = ACTIONS(4497), - [sym_rune_literal] = ACTIONS(4497), - [anon_sym_SQUOTE] = ACTIONS(4497), - [anon_sym_DQUOTE] = ACTIONS(4497), - [anon_sym_c_SQUOTE] = ACTIONS(4497), - [anon_sym_c_DQUOTE] = ACTIONS(4497), - [anon_sym_r_SQUOTE] = ACTIONS(4497), - [anon_sym_r_DQUOTE] = ACTIONS(4497), - [sym_pseudo_compile_time_identifier] = ACTIONS(4497), - [anon_sym_shared] = ACTIONS(4497), - [anon_sym_map_LBRACK] = ACTIONS(4497), - [anon_sym_chan] = ACTIONS(4497), - [anon_sym_thread] = ACTIONS(4497), - [anon_sym_atomic] = ACTIONS(4497), - [anon_sym_assert] = ACTIONS(4497), - [anon_sym_defer] = ACTIONS(4497), - [anon_sym_goto] = ACTIONS(4497), - [anon_sym_break] = ACTIONS(4497), - [anon_sym_continue] = ACTIONS(4497), - [anon_sym_return] = ACTIONS(4497), - [anon_sym_DOLLARfor] = ACTIONS(4497), - [anon_sym_for] = ACTIONS(4497), - [anon_sym_POUND] = ACTIONS(4497), - [anon_sym_asm] = ACTIONS(4497), - [anon_sym_AT_LBRACK] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_const] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(2099), + [anon_sym___global] = ACTIONS(2099), + [anon_sym_type] = ACTIONS(2099), + [anon_sym_fn] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(2099), + [anon_sym_DASH] = ACTIONS(2099), + [anon_sym_STAR] = ACTIONS(2099), + [anon_sym_struct] = ACTIONS(2099), + [anon_sym_union] = ACTIONS(2099), + [anon_sym_pub] = ACTIONS(2099), + [anon_sym_mut] = ACTIONS(2099), + [anon_sym_enum] = ACTIONS(2099), + [anon_sym_interface] = ACTIONS(2099), + [anon_sym_QMARK] = ACTIONS(2099), + [anon_sym_BANG] = ACTIONS(2099), + [anon_sym_go] = ACTIONS(2099), + [anon_sym_spawn] = ACTIONS(2099), + [anon_sym_json_DOTdecode] = ACTIONS(2099), + [anon_sym_LBRACK2] = ACTIONS(2099), + [anon_sym_TILDE] = ACTIONS(2099), + [anon_sym_CARET] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(2099), + [sym_true] = ACTIONS(2099), + [sym_false] = ACTIONS(2099), + [sym_nil] = ACTIONS(2099), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_DOLLARif] = ACTIONS(2099), + [anon_sym_match] = ACTIONS(2099), + [anon_sym_select] = ACTIONS(2099), + [anon_sym_lock] = ACTIONS(2099), + [anon_sym_rlock] = ACTIONS(2099), + [anon_sym_unsafe] = ACTIONS(2099), + [anon_sym_sql] = ACTIONS(2099), + [sym_int_literal] = ACTIONS(2099), + [sym_float_literal] = ACTIONS(2099), + [sym_rune_literal] = ACTIONS(2099), + [anon_sym_SQUOTE] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(2099), + [anon_sym_c_SQUOTE] = ACTIONS(2099), + [anon_sym_c_DQUOTE] = ACTIONS(2099), + [anon_sym_r_SQUOTE] = ACTIONS(2099), + [anon_sym_r_DQUOTE] = ACTIONS(2099), + [sym_pseudo_compile_time_identifier] = ACTIONS(2099), + [anon_sym_shared] = ACTIONS(2099), + [anon_sym_map_LBRACK] = ACTIONS(2099), + [anon_sym_chan] = ACTIONS(2099), + [anon_sym_thread] = ACTIONS(2099), + [anon_sym_atomic] = ACTIONS(2099), + [anon_sym_assert] = ACTIONS(2099), + [anon_sym_defer] = ACTIONS(2099), + [anon_sym_goto] = ACTIONS(2099), + [anon_sym_break] = ACTIONS(2099), + [anon_sym_continue] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2099), + [anon_sym_DOLLARfor] = ACTIONS(2099), + [anon_sym_for] = ACTIONS(2099), + [anon_sym_POUND] = ACTIONS(2099), + [anon_sym_asm] = ACTIONS(2099), + [anon_sym_AT_LBRACK] = ACTIONS(2099), }, [1568] = { [sym_line_comment] = STATE(1568), [sym_block_comment] = STATE(1568), - [ts_builtin_sym_end] = ACTIONS(4499), - [sym_identifier] = ACTIONS(4501), - [anon_sym_LF] = ACTIONS(4501), - [anon_sym_CR] = ACTIONS(4501), - [anon_sym_CR_LF] = ACTIONS(4501), + [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(4501), - [anon_sym_LBRACE] = ACTIONS(4501), - [anon_sym_const] = ACTIONS(4501), - [anon_sym_LPAREN] = ACTIONS(4501), - [anon_sym___global] = ACTIONS(4501), - [anon_sym_type] = ACTIONS(4501), - [anon_sym_fn] = ACTIONS(4501), - [anon_sym_PLUS] = ACTIONS(4501), - [anon_sym_DASH] = ACTIONS(4501), - [anon_sym_STAR] = ACTIONS(4501), - [anon_sym_struct] = ACTIONS(4501), - [anon_sym_union] = ACTIONS(4501), - [anon_sym_pub] = ACTIONS(4501), - [anon_sym_mut] = ACTIONS(4501), - [anon_sym_enum] = ACTIONS(4501), - [anon_sym_interface] = ACTIONS(4501), - [anon_sym_QMARK] = ACTIONS(4501), - [anon_sym_BANG] = ACTIONS(4501), - [anon_sym_go] = ACTIONS(4501), - [anon_sym_spawn] = ACTIONS(4501), - [anon_sym_json_DOTdecode] = ACTIONS(4501), - [anon_sym_LBRACK2] = ACTIONS(4501), - [anon_sym_TILDE] = ACTIONS(4501), - [anon_sym_CARET] = ACTIONS(4501), - [anon_sym_AMP] = ACTIONS(4501), - [anon_sym_LT_DASH] = ACTIONS(4501), - [sym_none] = ACTIONS(4501), - [sym_true] = ACTIONS(4501), - [sym_false] = ACTIONS(4501), - [sym_nil] = ACTIONS(4501), - [anon_sym_if] = ACTIONS(4501), - [anon_sym_DOLLARif] = ACTIONS(4501), - [anon_sym_match] = ACTIONS(4501), - [anon_sym_select] = ACTIONS(4501), - [anon_sym_lock] = ACTIONS(4501), - [anon_sym_rlock] = ACTIONS(4501), - [anon_sym_unsafe] = ACTIONS(4501), - [anon_sym_sql] = ACTIONS(4501), - [sym_int_literal] = ACTIONS(4501), - [sym_float_literal] = ACTIONS(4501), - [sym_rune_literal] = ACTIONS(4501), - [anon_sym_SQUOTE] = ACTIONS(4501), - [anon_sym_DQUOTE] = ACTIONS(4501), - [anon_sym_c_SQUOTE] = ACTIONS(4501), - [anon_sym_c_DQUOTE] = ACTIONS(4501), - [anon_sym_r_SQUOTE] = ACTIONS(4501), - [anon_sym_r_DQUOTE] = ACTIONS(4501), - [sym_pseudo_compile_time_identifier] = ACTIONS(4501), - [anon_sym_shared] = ACTIONS(4501), - [anon_sym_map_LBRACK] = ACTIONS(4501), - [anon_sym_chan] = ACTIONS(4501), - [anon_sym_thread] = ACTIONS(4501), - [anon_sym_atomic] = ACTIONS(4501), - [anon_sym_assert] = ACTIONS(4501), - [anon_sym_defer] = ACTIONS(4501), - [anon_sym_goto] = ACTIONS(4501), - [anon_sym_break] = ACTIONS(4501), - [anon_sym_continue] = ACTIONS(4501), - [anon_sym_return] = ACTIONS(4501), - [anon_sym_DOLLARfor] = ACTIONS(4501), - [anon_sym_for] = ACTIONS(4501), - [anon_sym_POUND] = ACTIONS(4501), - [anon_sym_asm] = ACTIONS(4501), - [anon_sym_AT_LBRACK] = ACTIONS(4501), + [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), + [anon_sym_SQUOTE] = ACTIONS(4390), + [anon_sym_DQUOTE] = ACTIONS(4390), + [anon_sym_c_SQUOTE] = ACTIONS(4390), + [anon_sym_c_DQUOTE] = ACTIONS(4390), + [anon_sym_r_SQUOTE] = ACTIONS(4390), + [anon_sym_r_DQUOTE] = 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), }, [1569] = { [sym_line_comment] = STATE(1569), [sym_block_comment] = STATE(1569), - [ts_builtin_sym_end] = ACTIONS(4503), - [sym_identifier] = ACTIONS(4505), - [anon_sym_LF] = ACTIONS(4505), - [anon_sym_CR] = ACTIONS(4505), - [anon_sym_CR_LF] = ACTIONS(4505), + [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(4505), - [anon_sym_LBRACE] = ACTIONS(4505), - [anon_sym_const] = ACTIONS(4505), - [anon_sym_LPAREN] = ACTIONS(4505), - [anon_sym___global] = ACTIONS(4505), - [anon_sym_type] = ACTIONS(4505), - [anon_sym_fn] = ACTIONS(4505), - [anon_sym_PLUS] = ACTIONS(4505), - [anon_sym_DASH] = ACTIONS(4505), - [anon_sym_STAR] = ACTIONS(4505), - [anon_sym_struct] = ACTIONS(4505), - [anon_sym_union] = ACTIONS(4505), - [anon_sym_pub] = ACTIONS(4505), - [anon_sym_mut] = ACTIONS(4505), - [anon_sym_enum] = ACTIONS(4505), - [anon_sym_interface] = ACTIONS(4505), - [anon_sym_QMARK] = ACTIONS(4505), - [anon_sym_BANG] = ACTIONS(4505), - [anon_sym_go] = ACTIONS(4505), - [anon_sym_spawn] = ACTIONS(4505), - [anon_sym_json_DOTdecode] = ACTIONS(4505), - [anon_sym_LBRACK2] = ACTIONS(4505), - [anon_sym_TILDE] = ACTIONS(4505), - [anon_sym_CARET] = ACTIONS(4505), - [anon_sym_AMP] = ACTIONS(4505), - [anon_sym_LT_DASH] = ACTIONS(4505), - [sym_none] = ACTIONS(4505), - [sym_true] = ACTIONS(4505), - [sym_false] = ACTIONS(4505), - [sym_nil] = ACTIONS(4505), - [anon_sym_if] = ACTIONS(4505), - [anon_sym_DOLLARif] = ACTIONS(4505), - [anon_sym_match] = ACTIONS(4505), - [anon_sym_select] = ACTIONS(4505), - [anon_sym_lock] = ACTIONS(4505), - [anon_sym_rlock] = ACTIONS(4505), - [anon_sym_unsafe] = ACTIONS(4505), - [anon_sym_sql] = ACTIONS(4505), - [sym_int_literal] = ACTIONS(4505), - [sym_float_literal] = ACTIONS(4505), - [sym_rune_literal] = ACTIONS(4505), - [anon_sym_SQUOTE] = ACTIONS(4505), - [anon_sym_DQUOTE] = ACTIONS(4505), - [anon_sym_c_SQUOTE] = ACTIONS(4505), - [anon_sym_c_DQUOTE] = ACTIONS(4505), - [anon_sym_r_SQUOTE] = ACTIONS(4505), - [anon_sym_r_DQUOTE] = ACTIONS(4505), - [sym_pseudo_compile_time_identifier] = ACTIONS(4505), - [anon_sym_shared] = ACTIONS(4505), - [anon_sym_map_LBRACK] = ACTIONS(4505), - [anon_sym_chan] = ACTIONS(4505), - [anon_sym_thread] = ACTIONS(4505), - [anon_sym_atomic] = ACTIONS(4505), - [anon_sym_assert] = ACTIONS(4505), - [anon_sym_defer] = ACTIONS(4505), - [anon_sym_goto] = ACTIONS(4505), - [anon_sym_break] = ACTIONS(4505), - [anon_sym_continue] = ACTIONS(4505), - [anon_sym_return] = ACTIONS(4505), - [anon_sym_DOLLARfor] = ACTIONS(4505), - [anon_sym_for] = ACTIONS(4505), - [anon_sym_POUND] = ACTIONS(4505), - [anon_sym_asm] = ACTIONS(4505), - [anon_sym_AT_LBRACK] = ACTIONS(4505), + [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), + [anon_sym_SQUOTE] = ACTIONS(4394), + [anon_sym_DQUOTE] = ACTIONS(4394), + [anon_sym_c_SQUOTE] = ACTIONS(4394), + [anon_sym_c_DQUOTE] = ACTIONS(4394), + [anon_sym_r_SQUOTE] = ACTIONS(4394), + [anon_sym_r_DQUOTE] = 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), }, [1570] = { [sym_line_comment] = STATE(1570), [sym_block_comment] = STATE(1570), - [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), + [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(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), - [anon_sym_SQUOTE] = ACTIONS(4509), - [anon_sym_DQUOTE] = ACTIONS(4509), - [anon_sym_c_SQUOTE] = ACTIONS(4509), - [anon_sym_c_DQUOTE] = ACTIONS(4509), - [anon_sym_r_SQUOTE] = ACTIONS(4509), - [anon_sym_r_DQUOTE] = 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), + [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), + [anon_sym_SQUOTE] = ACTIONS(4398), + [anon_sym_DQUOTE] = ACTIONS(4398), + [anon_sym_c_SQUOTE] = ACTIONS(4398), + [anon_sym_c_DQUOTE] = ACTIONS(4398), + [anon_sym_r_SQUOTE] = ACTIONS(4398), + [anon_sym_r_DQUOTE] = 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), }, [1571] = { [sym_line_comment] = STATE(1571), [sym_block_comment] = STATE(1571), - [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), + [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(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), - [anon_sym_SQUOTE] = ACTIONS(4513), - [anon_sym_DQUOTE] = ACTIONS(4513), - [anon_sym_c_SQUOTE] = ACTIONS(4513), - [anon_sym_c_DQUOTE] = ACTIONS(4513), - [anon_sym_r_SQUOTE] = ACTIONS(4513), - [anon_sym_r_DQUOTE] = 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), + [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), + [anon_sym_SQUOTE] = ACTIONS(4402), + [anon_sym_DQUOTE] = ACTIONS(4402), + [anon_sym_c_SQUOTE] = ACTIONS(4402), + [anon_sym_c_DQUOTE] = ACTIONS(4402), + [anon_sym_r_SQUOTE] = ACTIONS(4402), + [anon_sym_r_DQUOTE] = 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), }, [1572] = { [sym_line_comment] = STATE(1572), [sym_block_comment] = STATE(1572), - [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), + [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(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), - [anon_sym_SQUOTE] = ACTIONS(4517), - [anon_sym_DQUOTE] = ACTIONS(4517), - [anon_sym_c_SQUOTE] = ACTIONS(4517), - [anon_sym_c_DQUOTE] = ACTIONS(4517), - [anon_sym_r_SQUOTE] = ACTIONS(4517), - [anon_sym_r_DQUOTE] = 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), + [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), + [anon_sym_SQUOTE] = ACTIONS(4406), + [anon_sym_DQUOTE] = ACTIONS(4406), + [anon_sym_c_SQUOTE] = ACTIONS(4406), + [anon_sym_c_DQUOTE] = ACTIONS(4406), + [anon_sym_r_SQUOTE] = ACTIONS(4406), + [anon_sym_r_DQUOTE] = 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), }, [1573] = { [sym_line_comment] = STATE(1573), [sym_block_comment] = STATE(1573), - [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), + [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(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), - [anon_sym_SQUOTE] = ACTIONS(4521), - [anon_sym_DQUOTE] = ACTIONS(4521), - [anon_sym_c_SQUOTE] = ACTIONS(4521), - [anon_sym_c_DQUOTE] = ACTIONS(4521), - [anon_sym_r_SQUOTE] = ACTIONS(4521), - [anon_sym_r_DQUOTE] = 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), + [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), + [anon_sym_SQUOTE] = ACTIONS(4410), + [anon_sym_DQUOTE] = ACTIONS(4410), + [anon_sym_c_SQUOTE] = ACTIONS(4410), + [anon_sym_c_DQUOTE] = ACTIONS(4410), + [anon_sym_r_SQUOTE] = ACTIONS(4410), + [anon_sym_r_DQUOTE] = 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), }, [1574] = { [sym_line_comment] = STATE(1574), [sym_block_comment] = STATE(1574), - [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), + [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(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), - [anon_sym_SQUOTE] = ACTIONS(4525), - [anon_sym_DQUOTE] = ACTIONS(4525), - [anon_sym_c_SQUOTE] = ACTIONS(4525), - [anon_sym_c_DQUOTE] = ACTIONS(4525), - [anon_sym_r_SQUOTE] = ACTIONS(4525), - [anon_sym_r_DQUOTE] = 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), + [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), + [anon_sym_SQUOTE] = ACTIONS(4414), + [anon_sym_DQUOTE] = ACTIONS(4414), + [anon_sym_c_SQUOTE] = ACTIONS(4414), + [anon_sym_c_DQUOTE] = ACTIONS(4414), + [anon_sym_r_SQUOTE] = ACTIONS(4414), + [anon_sym_r_DQUOTE] = 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), }, [1575] = { [sym_line_comment] = STATE(1575), [sym_block_comment] = STATE(1575), - [ts_builtin_sym_end] = ACTIONS(4527), - [sym_identifier] = ACTIONS(4529), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_module] = ACTIONS(4529), - [anon_sym_import] = ACTIONS(4529), - [anon_sym_DOT] = ACTIONS(4529), - [anon_sym_LBRACE] = ACTIONS(4527), - [anon_sym_const] = ACTIONS(4529), - [anon_sym_LPAREN] = ACTIONS(4527), - [anon_sym___global] = ACTIONS(4529), - [anon_sym_type] = ACTIONS(4529), - [anon_sym_fn] = ACTIONS(4529), - [anon_sym_PLUS] = ACTIONS(4527), - [anon_sym_DASH] = ACTIONS(4527), - [anon_sym_STAR] = ACTIONS(4527), - [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(4527), - [anon_sym_BANG] = ACTIONS(4527), - [anon_sym_go] = ACTIONS(4529), - [anon_sym_spawn] = ACTIONS(4529), - [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(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(4527), - [sym_rune_literal] = ACTIONS(4527), - [anon_sym_SQUOTE] = ACTIONS(4527), - [anon_sym_DQUOTE] = ACTIONS(4527), - [anon_sym_c_SQUOTE] = ACTIONS(4527), - [anon_sym_c_DQUOTE] = ACTIONS(4527), - [anon_sym_r_SQUOTE] = ACTIONS(4527), - [anon_sym_r_DQUOTE] = ACTIONS(4527), - [sym_pseudo_compile_time_identifier] = ACTIONS(4529), - [anon_sym_shared] = ACTIONS(4529), - [anon_sym_map_LBRACK] = ACTIONS(4527), - [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(4527), - [anon_sym_asm] = ACTIONS(4529), - [anon_sym_AT_LBRACK] = ACTIONS(4527), + [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), + [anon_sym_SQUOTE] = ACTIONS(4418), + [anon_sym_DQUOTE] = ACTIONS(4418), + [anon_sym_c_SQUOTE] = ACTIONS(4418), + [anon_sym_c_DQUOTE] = ACTIONS(4418), + [anon_sym_r_SQUOTE] = ACTIONS(4418), + [anon_sym_r_DQUOTE] = 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), }, [1576] = { [sym_line_comment] = STATE(1576), [sym_block_comment] = STATE(1576), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2311), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(605), + [ts_builtin_sym_end] = ACTIONS(2369), + [sym_identifier] = ACTIONS(2371), + [anon_sym_LF] = ACTIONS(2371), + [anon_sym_CR] = ACTIONS(2371), + [anon_sym_CR_LF] = ACTIONS(2371), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_const] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym___global] = ACTIONS(2371), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_fn] = ACTIONS(2371), + [anon_sym_PLUS] = ACTIONS(2371), + [anon_sym_DASH] = ACTIONS(2371), + [anon_sym_STAR] = ACTIONS(2371), + [anon_sym_struct] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), + [anon_sym_pub] = ACTIONS(2371), + [anon_sym_mut] = ACTIONS(2371), + [anon_sym_enum] = ACTIONS(2371), + [anon_sym_interface] = ACTIONS(2371), + [anon_sym_QMARK] = ACTIONS(2371), + [anon_sym_BANG] = ACTIONS(2371), + [anon_sym_go] = ACTIONS(2371), + [anon_sym_spawn] = ACTIONS(2371), + [anon_sym_json_DOTdecode] = ACTIONS(2371), + [anon_sym_LBRACK2] = ACTIONS(2371), + [anon_sym_TILDE] = ACTIONS(2371), + [anon_sym_CARET] = ACTIONS(2371), + [anon_sym_AMP] = ACTIONS(2371), + [anon_sym_LT_DASH] = ACTIONS(2371), + [sym_none] = ACTIONS(2371), + [sym_true] = ACTIONS(2371), + [sym_false] = ACTIONS(2371), + [sym_nil] = ACTIONS(2371), + [anon_sym_if] = ACTIONS(2371), + [anon_sym_DOLLARif] = ACTIONS(2371), + [anon_sym_match] = ACTIONS(2371), + [anon_sym_select] = ACTIONS(2371), + [anon_sym_lock] = ACTIONS(2371), + [anon_sym_rlock] = ACTIONS(2371), + [anon_sym_unsafe] = ACTIONS(2371), + [anon_sym_sql] = ACTIONS(2371), + [sym_int_literal] = ACTIONS(2371), + [sym_float_literal] = ACTIONS(2371), + [sym_rune_literal] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2371), + [anon_sym_DQUOTE] = ACTIONS(2371), + [anon_sym_c_SQUOTE] = ACTIONS(2371), + [anon_sym_c_DQUOTE] = ACTIONS(2371), + [anon_sym_r_SQUOTE] = ACTIONS(2371), + [anon_sym_r_DQUOTE] = ACTIONS(2371), + [sym_pseudo_compile_time_identifier] = ACTIONS(2371), + [anon_sym_shared] = ACTIONS(2371), + [anon_sym_map_LBRACK] = ACTIONS(2371), + [anon_sym_chan] = ACTIONS(2371), + [anon_sym_thread] = ACTIONS(2371), + [anon_sym_atomic] = ACTIONS(2371), + [anon_sym_assert] = ACTIONS(2371), + [anon_sym_defer] = ACTIONS(2371), + [anon_sym_goto] = ACTIONS(2371), + [anon_sym_break] = ACTIONS(2371), + [anon_sym_continue] = ACTIONS(2371), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_DOLLARfor] = ACTIONS(2371), + [anon_sym_for] = ACTIONS(2371), + [anon_sym_POUND] = ACTIONS(2371), + [anon_sym_asm] = ACTIONS(2371), + [anon_sym_AT_LBRACK] = ACTIONS(2371), + }, + [1577] = { + [sym_line_comment] = STATE(1577), + [sym_block_comment] = STATE(1577), + [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), + [anon_sym_SQUOTE] = ACTIONS(4422), + [anon_sym_DQUOTE] = ACTIONS(4422), + [anon_sym_c_SQUOTE] = ACTIONS(4422), + [anon_sym_c_DQUOTE] = ACTIONS(4422), + [anon_sym_r_SQUOTE] = ACTIONS(4422), + [anon_sym_r_DQUOTE] = 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), + }, + [1578] = { + [sym_line_comment] = STATE(1578), + [sym_block_comment] = STATE(1578), + [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), + [anon_sym_SQUOTE] = ACTIONS(4426), + [anon_sym_DQUOTE] = ACTIONS(4426), + [anon_sym_c_SQUOTE] = ACTIONS(4426), + [anon_sym_c_DQUOTE] = ACTIONS(4426), + [anon_sym_r_SQUOTE] = ACTIONS(4426), + [anon_sym_r_DQUOTE] = 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), + }, + [1579] = { + [sym_line_comment] = STATE(1579), + [sym_block_comment] = STATE(1579), + [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), + [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), + [anon_sym_LPAREN] = ACTIONS(4430), + [anon_sym___global] = ACTIONS(4430), + [anon_sym_type] = ACTIONS(4430), + [anon_sym_fn] = ACTIONS(4430), + [anon_sym_PLUS] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4430), + [anon_sym_struct] = ACTIONS(4430), + [anon_sym_union] = ACTIONS(4430), + [anon_sym_pub] = ACTIONS(4430), + [anon_sym_mut] = ACTIONS(4430), + [anon_sym_enum] = ACTIONS(4430), + [anon_sym_interface] = ACTIONS(4430), + [anon_sym_QMARK] = ACTIONS(4430), + [anon_sym_BANG] = ACTIONS(4430), + [anon_sym_go] = ACTIONS(4430), + [anon_sym_spawn] = ACTIONS(4430), + [anon_sym_json_DOTdecode] = ACTIONS(4430), + [anon_sym_LBRACK2] = ACTIONS(4430), + [anon_sym_TILDE] = ACTIONS(4430), + [anon_sym_CARET] = ACTIONS(4430), + [anon_sym_AMP] = ACTIONS(4430), + [anon_sym_LT_DASH] = ACTIONS(4430), + [sym_none] = ACTIONS(4430), + [sym_true] = ACTIONS(4430), + [sym_false] = ACTIONS(4430), + [sym_nil] = ACTIONS(4430), + [anon_sym_if] = ACTIONS(4430), + [anon_sym_DOLLARif] = ACTIONS(4430), + [anon_sym_match] = ACTIONS(4430), + [anon_sym_select] = ACTIONS(4430), + [anon_sym_lock] = ACTIONS(4430), + [anon_sym_rlock] = ACTIONS(4430), + [anon_sym_unsafe] = ACTIONS(4430), + [anon_sym_sql] = ACTIONS(4430), + [sym_int_literal] = ACTIONS(4430), + [sym_float_literal] = ACTIONS(4430), + [sym_rune_literal] = ACTIONS(4430), + [anon_sym_SQUOTE] = ACTIONS(4430), + [anon_sym_DQUOTE] = ACTIONS(4430), + [anon_sym_c_SQUOTE] = ACTIONS(4430), + [anon_sym_c_DQUOTE] = ACTIONS(4430), + [anon_sym_r_SQUOTE] = ACTIONS(4430), + [anon_sym_r_DQUOTE] = ACTIONS(4430), + [sym_pseudo_compile_time_identifier] = ACTIONS(4430), + [anon_sym_shared] = ACTIONS(4430), + [anon_sym_map_LBRACK] = ACTIONS(4430), + [anon_sym_chan] = ACTIONS(4430), + [anon_sym_thread] = ACTIONS(4430), + [anon_sym_atomic] = ACTIONS(4430), + [anon_sym_assert] = ACTIONS(4430), + [anon_sym_defer] = ACTIONS(4430), + [anon_sym_goto] = ACTIONS(4430), + [anon_sym_break] = ACTIONS(4430), + [anon_sym_continue] = ACTIONS(4430), + [anon_sym_return] = ACTIONS(4430), + [anon_sym_DOLLARfor] = ACTIONS(4430), + [anon_sym_for] = ACTIONS(4430), + [anon_sym_POUND] = ACTIONS(4430), + [anon_sym_asm] = ACTIONS(4430), + [anon_sym_AT_LBRACK] = ACTIONS(4430), + }, + [1580] = { + [sym_line_comment] = STATE(1580), + [sym_block_comment] = STATE(1580), + [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), + [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), + [anon_sym_LPAREN] = ACTIONS(4434), + [anon_sym___global] = ACTIONS(4434), + [anon_sym_type] = ACTIONS(4434), + [anon_sym_fn] = ACTIONS(4434), + [anon_sym_PLUS] = ACTIONS(4434), + [anon_sym_DASH] = ACTIONS(4434), + [anon_sym_STAR] = ACTIONS(4434), + [anon_sym_struct] = ACTIONS(4434), + [anon_sym_union] = ACTIONS(4434), + [anon_sym_pub] = ACTIONS(4434), + [anon_sym_mut] = ACTIONS(4434), + [anon_sym_enum] = ACTIONS(4434), + [anon_sym_interface] = ACTIONS(4434), + [anon_sym_QMARK] = ACTIONS(4434), + [anon_sym_BANG] = ACTIONS(4434), + [anon_sym_go] = ACTIONS(4434), + [anon_sym_spawn] = ACTIONS(4434), + [anon_sym_json_DOTdecode] = ACTIONS(4434), + [anon_sym_LBRACK2] = ACTIONS(4434), + [anon_sym_TILDE] = ACTIONS(4434), + [anon_sym_CARET] = ACTIONS(4434), + [anon_sym_AMP] = ACTIONS(4434), + [anon_sym_LT_DASH] = ACTIONS(4434), + [sym_none] = ACTIONS(4434), + [sym_true] = ACTIONS(4434), + [sym_false] = ACTIONS(4434), + [sym_nil] = ACTIONS(4434), + [anon_sym_if] = ACTIONS(4434), + [anon_sym_DOLLARif] = ACTIONS(4434), + [anon_sym_match] = ACTIONS(4434), + [anon_sym_select] = ACTIONS(4434), + [anon_sym_lock] = ACTIONS(4434), + [anon_sym_rlock] = ACTIONS(4434), + [anon_sym_unsafe] = ACTIONS(4434), + [anon_sym_sql] = ACTIONS(4434), + [sym_int_literal] = ACTIONS(4434), + [sym_float_literal] = ACTIONS(4434), + [sym_rune_literal] = ACTIONS(4434), + [anon_sym_SQUOTE] = ACTIONS(4434), + [anon_sym_DQUOTE] = ACTIONS(4434), + [anon_sym_c_SQUOTE] = ACTIONS(4434), + [anon_sym_c_DQUOTE] = ACTIONS(4434), + [anon_sym_r_SQUOTE] = ACTIONS(4434), + [anon_sym_r_DQUOTE] = ACTIONS(4434), + [sym_pseudo_compile_time_identifier] = ACTIONS(4434), + [anon_sym_shared] = ACTIONS(4434), + [anon_sym_map_LBRACK] = ACTIONS(4434), + [anon_sym_chan] = ACTIONS(4434), + [anon_sym_thread] = ACTIONS(4434), + [anon_sym_atomic] = ACTIONS(4434), + [anon_sym_assert] = ACTIONS(4434), + [anon_sym_defer] = ACTIONS(4434), + [anon_sym_goto] = ACTIONS(4434), + [anon_sym_break] = ACTIONS(4434), + [anon_sym_continue] = ACTIONS(4434), + [anon_sym_return] = ACTIONS(4434), + [anon_sym_DOLLARfor] = ACTIONS(4434), + [anon_sym_for] = ACTIONS(4434), + [anon_sym_POUND] = ACTIONS(4434), + [anon_sym_asm] = ACTIONS(4434), + [anon_sym_AT_LBRACK] = ACTIONS(4434), + }, + [1581] = { + [sym_line_comment] = STATE(1581), + [sym_block_comment] = STATE(1581), + [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), + [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), + [anon_sym_LPAREN] = ACTIONS(4438), + [anon_sym___global] = ACTIONS(4438), + [anon_sym_type] = ACTIONS(4438), + [anon_sym_fn] = ACTIONS(4438), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4438), + [anon_sym_struct] = ACTIONS(4438), + [anon_sym_union] = ACTIONS(4438), + [anon_sym_pub] = ACTIONS(4438), + [anon_sym_mut] = ACTIONS(4438), + [anon_sym_enum] = ACTIONS(4438), + [anon_sym_interface] = ACTIONS(4438), + [anon_sym_QMARK] = ACTIONS(4438), + [anon_sym_BANG] = ACTIONS(4438), + [anon_sym_go] = ACTIONS(4438), + [anon_sym_spawn] = ACTIONS(4438), + [anon_sym_json_DOTdecode] = ACTIONS(4438), + [anon_sym_LBRACK2] = ACTIONS(4438), + [anon_sym_TILDE] = ACTIONS(4438), + [anon_sym_CARET] = ACTIONS(4438), + [anon_sym_AMP] = ACTIONS(4438), + [anon_sym_LT_DASH] = ACTIONS(4438), + [sym_none] = ACTIONS(4438), + [sym_true] = ACTIONS(4438), + [sym_false] = ACTIONS(4438), + [sym_nil] = ACTIONS(4438), + [anon_sym_if] = ACTIONS(4438), + [anon_sym_DOLLARif] = ACTIONS(4438), + [anon_sym_match] = ACTIONS(4438), + [anon_sym_select] = ACTIONS(4438), + [anon_sym_lock] = ACTIONS(4438), + [anon_sym_rlock] = ACTIONS(4438), + [anon_sym_unsafe] = ACTIONS(4438), + [anon_sym_sql] = ACTIONS(4438), + [sym_int_literal] = ACTIONS(4438), + [sym_float_literal] = ACTIONS(4438), + [sym_rune_literal] = ACTIONS(4438), + [anon_sym_SQUOTE] = ACTIONS(4438), + [anon_sym_DQUOTE] = ACTIONS(4438), + [anon_sym_c_SQUOTE] = ACTIONS(4438), + [anon_sym_c_DQUOTE] = ACTIONS(4438), + [anon_sym_r_SQUOTE] = ACTIONS(4438), + [anon_sym_r_DQUOTE] = ACTIONS(4438), + [sym_pseudo_compile_time_identifier] = ACTIONS(4438), + [anon_sym_shared] = ACTIONS(4438), + [anon_sym_map_LBRACK] = ACTIONS(4438), + [anon_sym_chan] = ACTIONS(4438), + [anon_sym_thread] = ACTIONS(4438), + [anon_sym_atomic] = ACTIONS(4438), + [anon_sym_assert] = ACTIONS(4438), + [anon_sym_defer] = ACTIONS(4438), + [anon_sym_goto] = ACTIONS(4438), + [anon_sym_break] = ACTIONS(4438), + [anon_sym_continue] = ACTIONS(4438), + [anon_sym_return] = ACTIONS(4438), + [anon_sym_DOLLARfor] = ACTIONS(4438), + [anon_sym_for] = ACTIONS(4438), + [anon_sym_POUND] = ACTIONS(4438), + [anon_sym_asm] = ACTIONS(4438), + [anon_sym_AT_LBRACK] = ACTIONS(4438), + }, + [1582] = { + [sym_line_comment] = STATE(1582), + [sym_block_comment] = STATE(1582), + [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), + [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), + [anon_sym_LPAREN] = ACTIONS(4442), + [anon_sym___global] = ACTIONS(4442), + [anon_sym_type] = ACTIONS(4442), + [anon_sym_fn] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4442), + [anon_sym_struct] = ACTIONS(4442), + [anon_sym_union] = ACTIONS(4442), + [anon_sym_pub] = ACTIONS(4442), + [anon_sym_mut] = ACTIONS(4442), + [anon_sym_enum] = ACTIONS(4442), + [anon_sym_interface] = ACTIONS(4442), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_BANG] = ACTIONS(4442), + [anon_sym_go] = ACTIONS(4442), + [anon_sym_spawn] = ACTIONS(4442), + [anon_sym_json_DOTdecode] = ACTIONS(4442), + [anon_sym_LBRACK2] = ACTIONS(4442), + [anon_sym_TILDE] = ACTIONS(4442), + [anon_sym_CARET] = ACTIONS(4442), + [anon_sym_AMP] = ACTIONS(4442), + [anon_sym_LT_DASH] = ACTIONS(4442), + [sym_none] = ACTIONS(4442), + [sym_true] = ACTIONS(4442), + [sym_false] = ACTIONS(4442), + [sym_nil] = ACTIONS(4442), + [anon_sym_if] = ACTIONS(4442), + [anon_sym_DOLLARif] = ACTIONS(4442), + [anon_sym_match] = ACTIONS(4442), + [anon_sym_select] = ACTIONS(4442), + [anon_sym_lock] = ACTIONS(4442), + [anon_sym_rlock] = ACTIONS(4442), + [anon_sym_unsafe] = ACTIONS(4442), + [anon_sym_sql] = ACTIONS(4442), + [sym_int_literal] = ACTIONS(4442), + [sym_float_literal] = ACTIONS(4442), + [sym_rune_literal] = ACTIONS(4442), + [anon_sym_SQUOTE] = ACTIONS(4442), + [anon_sym_DQUOTE] = ACTIONS(4442), + [anon_sym_c_SQUOTE] = ACTIONS(4442), + [anon_sym_c_DQUOTE] = ACTIONS(4442), + [anon_sym_r_SQUOTE] = ACTIONS(4442), + [anon_sym_r_DQUOTE] = ACTIONS(4442), + [sym_pseudo_compile_time_identifier] = ACTIONS(4442), + [anon_sym_shared] = ACTIONS(4442), + [anon_sym_map_LBRACK] = ACTIONS(4442), + [anon_sym_chan] = ACTIONS(4442), + [anon_sym_thread] = ACTIONS(4442), + [anon_sym_atomic] = ACTIONS(4442), + [anon_sym_assert] = ACTIONS(4442), + [anon_sym_defer] = ACTIONS(4442), + [anon_sym_goto] = ACTIONS(4442), + [anon_sym_break] = ACTIONS(4442), + [anon_sym_continue] = ACTIONS(4442), + [anon_sym_return] = ACTIONS(4442), + [anon_sym_DOLLARfor] = ACTIONS(4442), + [anon_sym_for] = ACTIONS(4442), + [anon_sym_POUND] = ACTIONS(4442), + [anon_sym_asm] = ACTIONS(4442), + [anon_sym_AT_LBRACK] = ACTIONS(4442), + }, + [1583] = { + [sym_line_comment] = STATE(1583), + [sym_block_comment] = STATE(1583), + [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), + [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), + [anon_sym_LPAREN] = ACTIONS(4446), + [anon_sym___global] = ACTIONS(4446), + [anon_sym_type] = ACTIONS(4446), + [anon_sym_fn] = ACTIONS(4446), + [anon_sym_PLUS] = ACTIONS(4446), + [anon_sym_DASH] = ACTIONS(4446), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_struct] = ACTIONS(4446), + [anon_sym_union] = ACTIONS(4446), + [anon_sym_pub] = ACTIONS(4446), + [anon_sym_mut] = ACTIONS(4446), + [anon_sym_enum] = ACTIONS(4446), + [anon_sym_interface] = ACTIONS(4446), + [anon_sym_QMARK] = ACTIONS(4446), + [anon_sym_BANG] = ACTIONS(4446), + [anon_sym_go] = ACTIONS(4446), + [anon_sym_spawn] = ACTIONS(4446), + [anon_sym_json_DOTdecode] = ACTIONS(4446), + [anon_sym_LBRACK2] = ACTIONS(4446), + [anon_sym_TILDE] = ACTIONS(4446), + [anon_sym_CARET] = ACTIONS(4446), + [anon_sym_AMP] = ACTIONS(4446), + [anon_sym_LT_DASH] = ACTIONS(4446), + [sym_none] = ACTIONS(4446), + [sym_true] = ACTIONS(4446), + [sym_false] = ACTIONS(4446), + [sym_nil] = ACTIONS(4446), + [anon_sym_if] = ACTIONS(4446), + [anon_sym_DOLLARif] = ACTIONS(4446), + [anon_sym_match] = ACTIONS(4446), + [anon_sym_select] = ACTIONS(4446), + [anon_sym_lock] = ACTIONS(4446), + [anon_sym_rlock] = ACTIONS(4446), + [anon_sym_unsafe] = ACTIONS(4446), + [anon_sym_sql] = ACTIONS(4446), + [sym_int_literal] = ACTIONS(4446), + [sym_float_literal] = ACTIONS(4446), + [sym_rune_literal] = ACTIONS(4446), + [anon_sym_SQUOTE] = ACTIONS(4446), + [anon_sym_DQUOTE] = ACTIONS(4446), + [anon_sym_c_SQUOTE] = ACTIONS(4446), + [anon_sym_c_DQUOTE] = ACTIONS(4446), + [anon_sym_r_SQUOTE] = ACTIONS(4446), + [anon_sym_r_DQUOTE] = ACTIONS(4446), + [sym_pseudo_compile_time_identifier] = ACTIONS(4446), + [anon_sym_shared] = ACTIONS(4446), + [anon_sym_map_LBRACK] = ACTIONS(4446), + [anon_sym_chan] = ACTIONS(4446), + [anon_sym_thread] = ACTIONS(4446), + [anon_sym_atomic] = ACTIONS(4446), + [anon_sym_assert] = ACTIONS(4446), + [anon_sym_defer] = ACTIONS(4446), + [anon_sym_goto] = ACTIONS(4446), + [anon_sym_break] = ACTIONS(4446), + [anon_sym_continue] = ACTIONS(4446), + [anon_sym_return] = ACTIONS(4446), + [anon_sym_DOLLARfor] = ACTIONS(4446), + [anon_sym_for] = ACTIONS(4446), + [anon_sym_POUND] = ACTIONS(4446), + [anon_sym_asm] = ACTIONS(4446), + [anon_sym_AT_LBRACK] = ACTIONS(4446), + }, + [1584] = { + [sym_line_comment] = STATE(1584), + [sym_block_comment] = STATE(1584), + [ts_builtin_sym_end] = ACTIONS(1689), + [sym_identifier] = ACTIONS(1691), + [anon_sym_LF] = ACTIONS(1691), + [anon_sym_CR] = ACTIONS(1691), + [anon_sym_CR_LF] = ACTIONS(1691), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym___global] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_fn] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1691), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1691), + [anon_sym_struct] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(1691), + [anon_sym_pub] = ACTIONS(1691), + [anon_sym_mut] = ACTIONS(1691), + [anon_sym_enum] = ACTIONS(1691), + [anon_sym_interface] = ACTIONS(1691), + [anon_sym_QMARK] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1691), + [anon_sym_go] = ACTIONS(1691), + [anon_sym_spawn] = ACTIONS(1691), + [anon_sym_json_DOTdecode] = ACTIONS(1691), + [anon_sym_LBRACK2] = ACTIONS(1691), + [anon_sym_TILDE] = ACTIONS(1691), + [anon_sym_CARET] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1691), + [anon_sym_LT_DASH] = ACTIONS(1691), + [sym_none] = ACTIONS(1691), + [sym_true] = ACTIONS(1691), + [sym_false] = ACTIONS(1691), + [sym_nil] = ACTIONS(1691), + [anon_sym_if] = ACTIONS(1691), + [anon_sym_DOLLARif] = ACTIONS(1691), + [anon_sym_match] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1691), + [anon_sym_lock] = ACTIONS(1691), + [anon_sym_rlock] = ACTIONS(1691), + [anon_sym_unsafe] = ACTIONS(1691), + [anon_sym_sql] = ACTIONS(1691), + [sym_int_literal] = ACTIONS(1691), + [sym_float_literal] = ACTIONS(1691), + [sym_rune_literal] = ACTIONS(1691), + [anon_sym_SQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [anon_sym_c_SQUOTE] = ACTIONS(1691), + [anon_sym_c_DQUOTE] = ACTIONS(1691), + [anon_sym_r_SQUOTE] = ACTIONS(1691), + [anon_sym_r_DQUOTE] = ACTIONS(1691), + [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_shared] = ACTIONS(1691), + [anon_sym_map_LBRACK] = ACTIONS(1691), + [anon_sym_chan] = ACTIONS(1691), + [anon_sym_thread] = ACTIONS(1691), + [anon_sym_atomic] = ACTIONS(1691), + [anon_sym_assert] = ACTIONS(1691), + [anon_sym_defer] = ACTIONS(1691), + [anon_sym_goto] = ACTIONS(1691), + [anon_sym_break] = ACTIONS(1691), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_return] = ACTIONS(1691), + [anon_sym_DOLLARfor] = ACTIONS(1691), + [anon_sym_for] = ACTIONS(1691), + [anon_sym_POUND] = ACTIONS(1691), + [anon_sym_asm] = ACTIONS(1691), + [anon_sym_AT_LBRACK] = ACTIONS(1691), + }, + [1585] = { + [sym_line_comment] = STATE(1585), + [sym_block_comment] = STATE(1585), + [ts_builtin_sym_end] = ACTIONS(2637), + [sym_identifier] = ACTIONS(2639), + [anon_sym_LF] = ACTIONS(2639), + [anon_sym_CR] = ACTIONS(2639), + [anon_sym_CR_LF] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2639), + [anon_sym___global] = ACTIONS(2639), + [anon_sym_type] = ACTIONS(2639), + [anon_sym_fn] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_union] = ACTIONS(2639), + [anon_sym_pub] = ACTIONS(2639), + [anon_sym_mut] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), + [anon_sym_interface] = ACTIONS(2639), + [anon_sym_QMARK] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_go] = ACTIONS(2639), + [anon_sym_spawn] = ACTIONS(2639), + [anon_sym_json_DOTdecode] = ACTIONS(2639), + [anon_sym_LBRACK2] = ACTIONS(2639), + [anon_sym_TILDE] = ACTIONS(2639), + [anon_sym_CARET] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_LT_DASH] = ACTIONS(2639), + [sym_none] = ACTIONS(2639), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [sym_nil] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_DOLLARif] = ACTIONS(2639), + [anon_sym_match] = ACTIONS(2639), + [anon_sym_select] = ACTIONS(2639), + [anon_sym_lock] = ACTIONS(2639), + [anon_sym_rlock] = ACTIONS(2639), + [anon_sym_unsafe] = ACTIONS(2639), + [anon_sym_sql] = ACTIONS(2639), + [sym_int_literal] = ACTIONS(2639), + [sym_float_literal] = ACTIONS(2639), + [sym_rune_literal] = ACTIONS(2639), + [anon_sym_SQUOTE] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2639), + [anon_sym_c_SQUOTE] = ACTIONS(2639), + [anon_sym_c_DQUOTE] = ACTIONS(2639), + [anon_sym_r_SQUOTE] = ACTIONS(2639), + [anon_sym_r_DQUOTE] = ACTIONS(2639), + [sym_pseudo_compile_time_identifier] = ACTIONS(2639), + [anon_sym_shared] = ACTIONS(2639), + [anon_sym_map_LBRACK] = ACTIONS(2639), + [anon_sym_chan] = ACTIONS(2639), + [anon_sym_thread] = ACTIONS(2639), + [anon_sym_atomic] = ACTIONS(2639), + [anon_sym_assert] = ACTIONS(2639), + [anon_sym_defer] = ACTIONS(2639), + [anon_sym_goto] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_DOLLARfor] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_POUND] = ACTIONS(2639), + [anon_sym_asm] = ACTIONS(2639), + [anon_sym_AT_LBRACK] = ACTIONS(2639), + }, + [1586] = { + [sym_line_comment] = STATE(1586), + [sym_block_comment] = STATE(1586), + [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), + [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), + [anon_sym_LPAREN] = ACTIONS(4450), + [anon_sym___global] = ACTIONS(4450), + [anon_sym_type] = ACTIONS(4450), + [anon_sym_fn] = ACTIONS(4450), + [anon_sym_PLUS] = ACTIONS(4450), + [anon_sym_DASH] = ACTIONS(4450), + [anon_sym_STAR] = ACTIONS(4450), + [anon_sym_struct] = ACTIONS(4450), + [anon_sym_union] = ACTIONS(4450), + [anon_sym_pub] = ACTIONS(4450), + [anon_sym_mut] = ACTIONS(4450), + [anon_sym_enum] = ACTIONS(4450), + [anon_sym_interface] = ACTIONS(4450), + [anon_sym_QMARK] = ACTIONS(4450), + [anon_sym_BANG] = ACTIONS(4450), + [anon_sym_go] = ACTIONS(4450), + [anon_sym_spawn] = ACTIONS(4450), + [anon_sym_json_DOTdecode] = ACTIONS(4450), + [anon_sym_LBRACK2] = ACTIONS(4450), + [anon_sym_TILDE] = ACTIONS(4450), + [anon_sym_CARET] = ACTIONS(4450), + [anon_sym_AMP] = ACTIONS(4450), + [anon_sym_LT_DASH] = ACTIONS(4450), + [sym_none] = ACTIONS(4450), + [sym_true] = ACTIONS(4450), + [sym_false] = ACTIONS(4450), + [sym_nil] = ACTIONS(4450), + [anon_sym_if] = ACTIONS(4450), + [anon_sym_DOLLARif] = ACTIONS(4450), + [anon_sym_match] = ACTIONS(4450), + [anon_sym_select] = ACTIONS(4450), + [anon_sym_lock] = ACTIONS(4450), + [anon_sym_rlock] = ACTIONS(4450), + [anon_sym_unsafe] = ACTIONS(4450), + [anon_sym_sql] = ACTIONS(4450), + [sym_int_literal] = ACTIONS(4450), + [sym_float_literal] = ACTIONS(4450), + [sym_rune_literal] = ACTIONS(4450), + [anon_sym_SQUOTE] = ACTIONS(4450), + [anon_sym_DQUOTE] = ACTIONS(4450), + [anon_sym_c_SQUOTE] = ACTIONS(4450), + [anon_sym_c_DQUOTE] = ACTIONS(4450), + [anon_sym_r_SQUOTE] = ACTIONS(4450), + [anon_sym_r_DQUOTE] = ACTIONS(4450), + [sym_pseudo_compile_time_identifier] = ACTIONS(4450), + [anon_sym_shared] = ACTIONS(4450), + [anon_sym_map_LBRACK] = ACTIONS(4450), + [anon_sym_chan] = ACTIONS(4450), + [anon_sym_thread] = ACTIONS(4450), + [anon_sym_atomic] = ACTIONS(4450), + [anon_sym_assert] = ACTIONS(4450), + [anon_sym_defer] = ACTIONS(4450), + [anon_sym_goto] = ACTIONS(4450), + [anon_sym_break] = ACTIONS(4450), + [anon_sym_continue] = ACTIONS(4450), + [anon_sym_return] = ACTIONS(4450), + [anon_sym_DOLLARfor] = ACTIONS(4450), + [anon_sym_for] = ACTIONS(4450), + [anon_sym_POUND] = ACTIONS(4450), + [anon_sym_asm] = ACTIONS(4450), + [anon_sym_AT_LBRACK] = ACTIONS(4450), + }, + [1587] = { + [sym_line_comment] = STATE(1587), + [sym_block_comment] = STATE(1587), + [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), + [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), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym___global] = ACTIONS(4454), + [anon_sym_type] = ACTIONS(4454), + [anon_sym_fn] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4454), + [anon_sym_DASH] = ACTIONS(4454), + [anon_sym_STAR] = ACTIONS(4454), + [anon_sym_struct] = ACTIONS(4454), + [anon_sym_union] = ACTIONS(4454), + [anon_sym_pub] = ACTIONS(4454), + [anon_sym_mut] = ACTIONS(4454), + [anon_sym_enum] = ACTIONS(4454), + [anon_sym_interface] = ACTIONS(4454), + [anon_sym_QMARK] = ACTIONS(4454), + [anon_sym_BANG] = ACTIONS(4454), + [anon_sym_go] = ACTIONS(4454), + [anon_sym_spawn] = ACTIONS(4454), + [anon_sym_json_DOTdecode] = ACTIONS(4454), + [anon_sym_LBRACK2] = ACTIONS(4454), + [anon_sym_TILDE] = ACTIONS(4454), + [anon_sym_CARET] = ACTIONS(4454), + [anon_sym_AMP] = ACTIONS(4454), + [anon_sym_LT_DASH] = ACTIONS(4454), + [sym_none] = ACTIONS(4454), + [sym_true] = ACTIONS(4454), + [sym_false] = ACTIONS(4454), + [sym_nil] = ACTIONS(4454), + [anon_sym_if] = ACTIONS(4454), + [anon_sym_DOLLARif] = ACTIONS(4454), + [anon_sym_match] = ACTIONS(4454), + [anon_sym_select] = ACTIONS(4454), + [anon_sym_lock] = ACTIONS(4454), + [anon_sym_rlock] = ACTIONS(4454), + [anon_sym_unsafe] = ACTIONS(4454), + [anon_sym_sql] = ACTIONS(4454), + [sym_int_literal] = ACTIONS(4454), + [sym_float_literal] = ACTIONS(4454), + [sym_rune_literal] = ACTIONS(4454), + [anon_sym_SQUOTE] = ACTIONS(4454), + [anon_sym_DQUOTE] = ACTIONS(4454), + [anon_sym_c_SQUOTE] = ACTIONS(4454), + [anon_sym_c_DQUOTE] = ACTIONS(4454), + [anon_sym_r_SQUOTE] = ACTIONS(4454), + [anon_sym_r_DQUOTE] = ACTIONS(4454), + [sym_pseudo_compile_time_identifier] = ACTIONS(4454), + [anon_sym_shared] = ACTIONS(4454), + [anon_sym_map_LBRACK] = ACTIONS(4454), + [anon_sym_chan] = ACTIONS(4454), + [anon_sym_thread] = ACTIONS(4454), + [anon_sym_atomic] = ACTIONS(4454), + [anon_sym_assert] = ACTIONS(4454), + [anon_sym_defer] = ACTIONS(4454), + [anon_sym_goto] = ACTIONS(4454), + [anon_sym_break] = ACTIONS(4454), + [anon_sym_continue] = ACTIONS(4454), + [anon_sym_return] = ACTIONS(4454), + [anon_sym_DOLLARfor] = ACTIONS(4454), + [anon_sym_for] = ACTIONS(4454), + [anon_sym_POUND] = ACTIONS(4454), + [anon_sym_asm] = ACTIONS(4454), + [anon_sym_AT_LBRACK] = ACTIONS(4454), + }, + [1588] = { + [sym_line_comment] = STATE(1588), + [sym_block_comment] = STATE(1588), + [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), + [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), + [anon_sym_LPAREN] = ACTIONS(4458), + [anon_sym___global] = ACTIONS(4458), + [anon_sym_type] = ACTIONS(4458), + [anon_sym_fn] = ACTIONS(4458), + [anon_sym_PLUS] = ACTIONS(4458), + [anon_sym_DASH] = ACTIONS(4458), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_struct] = ACTIONS(4458), + [anon_sym_union] = ACTIONS(4458), + [anon_sym_pub] = ACTIONS(4458), + [anon_sym_mut] = ACTIONS(4458), + [anon_sym_enum] = ACTIONS(4458), + [anon_sym_interface] = ACTIONS(4458), + [anon_sym_QMARK] = ACTIONS(4458), + [anon_sym_BANG] = ACTIONS(4458), + [anon_sym_go] = ACTIONS(4458), + [anon_sym_spawn] = ACTIONS(4458), + [anon_sym_json_DOTdecode] = ACTIONS(4458), + [anon_sym_LBRACK2] = ACTIONS(4458), + [anon_sym_TILDE] = ACTIONS(4458), + [anon_sym_CARET] = ACTIONS(4458), + [anon_sym_AMP] = ACTIONS(4458), + [anon_sym_LT_DASH] = ACTIONS(4458), + [sym_none] = ACTIONS(4458), + [sym_true] = ACTIONS(4458), + [sym_false] = ACTIONS(4458), + [sym_nil] = ACTIONS(4458), + [anon_sym_if] = ACTIONS(4458), + [anon_sym_DOLLARif] = ACTIONS(4458), + [anon_sym_match] = ACTIONS(4458), + [anon_sym_select] = ACTIONS(4458), + [anon_sym_lock] = ACTIONS(4458), + [anon_sym_rlock] = ACTIONS(4458), + [anon_sym_unsafe] = ACTIONS(4458), + [anon_sym_sql] = ACTIONS(4458), + [sym_int_literal] = ACTIONS(4458), + [sym_float_literal] = ACTIONS(4458), + [sym_rune_literal] = ACTIONS(4458), + [anon_sym_SQUOTE] = ACTIONS(4458), + [anon_sym_DQUOTE] = ACTIONS(4458), + [anon_sym_c_SQUOTE] = ACTIONS(4458), + [anon_sym_c_DQUOTE] = ACTIONS(4458), + [anon_sym_r_SQUOTE] = ACTIONS(4458), + [anon_sym_r_DQUOTE] = ACTIONS(4458), + [sym_pseudo_compile_time_identifier] = ACTIONS(4458), + [anon_sym_shared] = ACTIONS(4458), + [anon_sym_map_LBRACK] = ACTIONS(4458), + [anon_sym_chan] = ACTIONS(4458), + [anon_sym_thread] = ACTIONS(4458), + [anon_sym_atomic] = ACTIONS(4458), + [anon_sym_assert] = ACTIONS(4458), + [anon_sym_defer] = ACTIONS(4458), + [anon_sym_goto] = ACTIONS(4458), + [anon_sym_break] = ACTIONS(4458), + [anon_sym_continue] = ACTIONS(4458), + [anon_sym_return] = ACTIONS(4458), + [anon_sym_DOLLARfor] = ACTIONS(4458), + [anon_sym_for] = ACTIONS(4458), + [anon_sym_POUND] = ACTIONS(4458), + [anon_sym_asm] = ACTIONS(4458), + [anon_sym_AT_LBRACK] = ACTIONS(4458), + }, + [1589] = { + [sym_line_comment] = STATE(1589), + [sym_block_comment] = STATE(1589), + [ts_builtin_sym_end] = ACTIONS(4460), + [sym_identifier] = ACTIONS(4462), + [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), + [anon_sym_LPAREN] = ACTIONS(4462), + [anon_sym___global] = ACTIONS(4462), + [anon_sym_type] = ACTIONS(4462), + [anon_sym_fn] = ACTIONS(4462), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4462), + [anon_sym_struct] = ACTIONS(4462), + [anon_sym_union] = ACTIONS(4462), + [anon_sym_pub] = ACTIONS(4462), + [anon_sym_mut] = ACTIONS(4462), + [anon_sym_enum] = ACTIONS(4462), + [anon_sym_interface] = ACTIONS(4462), + [anon_sym_QMARK] = ACTIONS(4462), + [anon_sym_BANG] = ACTIONS(4462), + [anon_sym_go] = ACTIONS(4462), + [anon_sym_spawn] = ACTIONS(4462), + [anon_sym_json_DOTdecode] = ACTIONS(4462), + [anon_sym_LBRACK2] = ACTIONS(4462), + [anon_sym_TILDE] = ACTIONS(4462), + [anon_sym_CARET] = ACTIONS(4462), + [anon_sym_AMP] = ACTIONS(4462), + [anon_sym_LT_DASH] = ACTIONS(4462), + [sym_none] = ACTIONS(4462), + [sym_true] = ACTIONS(4462), + [sym_false] = ACTIONS(4462), + [sym_nil] = ACTIONS(4462), + [anon_sym_if] = ACTIONS(4462), + [anon_sym_DOLLARif] = ACTIONS(4462), + [anon_sym_match] = ACTIONS(4462), + [anon_sym_select] = ACTIONS(4462), + [anon_sym_lock] = ACTIONS(4462), + [anon_sym_rlock] = ACTIONS(4462), + [anon_sym_unsafe] = ACTIONS(4462), + [anon_sym_sql] = ACTIONS(4462), + [sym_int_literal] = ACTIONS(4462), + [sym_float_literal] = ACTIONS(4462), + [sym_rune_literal] = ACTIONS(4462), + [anon_sym_SQUOTE] = ACTIONS(4462), + [anon_sym_DQUOTE] = ACTIONS(4462), + [anon_sym_c_SQUOTE] = ACTIONS(4462), + [anon_sym_c_DQUOTE] = ACTIONS(4462), + [anon_sym_r_SQUOTE] = ACTIONS(4462), + [anon_sym_r_DQUOTE] = ACTIONS(4462), + [sym_pseudo_compile_time_identifier] = ACTIONS(4462), + [anon_sym_shared] = ACTIONS(4462), + [anon_sym_map_LBRACK] = ACTIONS(4462), + [anon_sym_chan] = ACTIONS(4462), + [anon_sym_thread] = ACTIONS(4462), + [anon_sym_atomic] = ACTIONS(4462), + [anon_sym_assert] = ACTIONS(4462), + [anon_sym_defer] = ACTIONS(4462), + [anon_sym_goto] = ACTIONS(4462), + [anon_sym_break] = ACTIONS(4462), + [anon_sym_continue] = ACTIONS(4462), + [anon_sym_return] = ACTIONS(4462), + [anon_sym_DOLLARfor] = ACTIONS(4462), + [anon_sym_for] = ACTIONS(4462), + [anon_sym_POUND] = ACTIONS(4462), + [anon_sym_asm] = ACTIONS(4462), + [anon_sym_AT_LBRACK] = ACTIONS(4462), + }, + [1590] = { + [sym_line_comment] = STATE(1590), + [sym_block_comment] = STATE(1590), + [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), + [anon_sym_SQUOTE] = ACTIONS(4466), + [anon_sym_DQUOTE] = ACTIONS(4466), + [anon_sym_c_SQUOTE] = ACTIONS(4466), + [anon_sym_c_DQUOTE] = ACTIONS(4466), + [anon_sym_r_SQUOTE] = ACTIONS(4466), + [anon_sym_r_DQUOTE] = 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), + }, + [1591] = { + [sym_line_comment] = STATE(1591), + [sym_block_comment] = STATE(1591), + [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), + [anon_sym_SQUOTE] = ACTIONS(4470), + [anon_sym_DQUOTE] = ACTIONS(4470), + [anon_sym_c_SQUOTE] = ACTIONS(4470), + [anon_sym_c_DQUOTE] = ACTIONS(4470), + [anon_sym_r_SQUOTE] = ACTIONS(4470), + [anon_sym_r_DQUOTE] = 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), + }, + [1592] = { + [sym_line_comment] = STATE(1592), + [sym_block_comment] = STATE(1592), + [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), + [anon_sym_SQUOTE] = ACTIONS(4474), + [anon_sym_DQUOTE] = ACTIONS(4474), + [anon_sym_c_SQUOTE] = ACTIONS(4474), + [anon_sym_c_DQUOTE] = ACTIONS(4474), + [anon_sym_r_SQUOTE] = ACTIONS(4474), + [anon_sym_r_DQUOTE] = 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), + }, + [1593] = { + [sym_line_comment] = STATE(1593), + [sym_block_comment] = STATE(1593), + [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), + [anon_sym_SQUOTE] = ACTIONS(4478), + [anon_sym_DQUOTE] = ACTIONS(4478), + [anon_sym_c_SQUOTE] = ACTIONS(4478), + [anon_sym_c_DQUOTE] = ACTIONS(4478), + [anon_sym_r_SQUOTE] = ACTIONS(4478), + [anon_sym_r_DQUOTE] = 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), + }, + [1594] = { + [sym_line_comment] = STATE(1594), + [sym_block_comment] = STATE(1594), + [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), + [anon_sym_SQUOTE] = ACTIONS(4482), + [anon_sym_DQUOTE] = ACTIONS(4482), + [anon_sym_c_SQUOTE] = ACTIONS(4482), + [anon_sym_c_DQUOTE] = ACTIONS(4482), + [anon_sym_r_SQUOTE] = ACTIONS(4482), + [anon_sym_r_DQUOTE] = 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), + }, + [1595] = { + [sym_line_comment] = STATE(1595), + [sym_block_comment] = STATE(1595), + [ts_builtin_sym_end] = ACTIONS(4484), + [sym_identifier] = ACTIONS(4486), + [anon_sym_LF] = ACTIONS(4488), + [anon_sym_CR] = ACTIONS(4488), + [anon_sym_CR_LF] = ACTIONS(4488), + [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), + [anon_sym_SQUOTE] = ACTIONS(4486), + [anon_sym_DQUOTE] = ACTIONS(4486), + [anon_sym_c_SQUOTE] = ACTIONS(4486), + [anon_sym_c_DQUOTE] = ACTIONS(4486), + [anon_sym_r_SQUOTE] = ACTIONS(4486), + [anon_sym_r_DQUOTE] = 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), + }, + [1596] = { + [sym_line_comment] = STATE(1596), + [sym_block_comment] = STATE(1596), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [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), + [anon_sym_SQUOTE] = ACTIONS(4492), + [anon_sym_DQUOTE] = ACTIONS(4492), + [anon_sym_c_SQUOTE] = ACTIONS(4492), + [anon_sym_c_DQUOTE] = ACTIONS(4492), + [anon_sym_r_SQUOTE] = ACTIONS(4492), + [anon_sym_r_DQUOTE] = 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), + }, + [1597] = { + [sym_line_comment] = STATE(1597), + [sym_block_comment] = STATE(1597), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [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), + [anon_sym_SQUOTE] = ACTIONS(4496), + [anon_sym_DQUOTE] = ACTIONS(4496), + [anon_sym_c_SQUOTE] = ACTIONS(4496), + [anon_sym_c_DQUOTE] = ACTIONS(4496), + [anon_sym_r_SQUOTE] = ACTIONS(4496), + [anon_sym_r_DQUOTE] = 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), + }, + [1598] = { + [sym_line_comment] = STATE(1598), + [sym_block_comment] = STATE(1598), + [ts_builtin_sym_end] = ACTIONS(4498), + [sym_identifier] = ACTIONS(4500), + [anon_sym_LF] = ACTIONS(4500), + [anon_sym_CR] = ACTIONS(4500), + [anon_sym_CR_LF] = ACTIONS(4500), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4500), + [anon_sym_LBRACE] = ACTIONS(4500), + [anon_sym_const] = ACTIONS(4500), + [anon_sym_LPAREN] = ACTIONS(4500), + [anon_sym___global] = ACTIONS(4500), + [anon_sym_type] = ACTIONS(4500), + [anon_sym_fn] = ACTIONS(4500), + [anon_sym_PLUS] = ACTIONS(4500), + [anon_sym_DASH] = ACTIONS(4500), + [anon_sym_STAR] = ACTIONS(4500), + [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_QMARK] = ACTIONS(4500), + [anon_sym_BANG] = ACTIONS(4500), + [anon_sym_go] = ACTIONS(4500), + [anon_sym_spawn] = ACTIONS(4500), + [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(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_float_literal] = ACTIONS(4500), + [sym_rune_literal] = ACTIONS(4500), + [anon_sym_SQUOTE] = ACTIONS(4500), + [anon_sym_DQUOTE] = ACTIONS(4500), + [anon_sym_c_SQUOTE] = ACTIONS(4500), + [anon_sym_c_DQUOTE] = ACTIONS(4500), + [anon_sym_r_SQUOTE] = ACTIONS(4500), + [anon_sym_r_DQUOTE] = ACTIONS(4500), + [sym_pseudo_compile_time_identifier] = ACTIONS(4500), + [anon_sym_shared] = ACTIONS(4500), + [anon_sym_map_LBRACK] = ACTIONS(4500), + [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_POUND] = ACTIONS(4500), + [anon_sym_asm] = ACTIONS(4500), + [anon_sym_AT_LBRACK] = ACTIONS(4500), + }, + [1599] = { + [sym_line_comment] = STATE(1599), + [sym_block_comment] = STATE(1599), + [ts_builtin_sym_end] = ACTIONS(4502), + [sym_identifier] = ACTIONS(4504), + [anon_sym_LF] = ACTIONS(4504), + [anon_sym_CR] = ACTIONS(4504), + [anon_sym_CR_LF] = ACTIONS(4504), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4504), + [anon_sym_LBRACE] = ACTIONS(4504), + [anon_sym_const] = ACTIONS(4504), + [anon_sym_LPAREN] = ACTIONS(4504), + [anon_sym___global] = ACTIONS(4504), + [anon_sym_type] = ACTIONS(4504), + [anon_sym_fn] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4504), + [anon_sym_DASH] = ACTIONS(4504), + [anon_sym_STAR] = ACTIONS(4504), + [anon_sym_struct] = ACTIONS(4504), + [anon_sym_union] = ACTIONS(4504), + [anon_sym_pub] = ACTIONS(4504), + [anon_sym_mut] = ACTIONS(4504), + [anon_sym_enum] = ACTIONS(4504), + [anon_sym_interface] = ACTIONS(4504), + [anon_sym_QMARK] = ACTIONS(4504), + [anon_sym_BANG] = ACTIONS(4504), + [anon_sym_go] = ACTIONS(4504), + [anon_sym_spawn] = ACTIONS(4504), + [anon_sym_json_DOTdecode] = ACTIONS(4504), + [anon_sym_LBRACK2] = ACTIONS(4504), + [anon_sym_TILDE] = ACTIONS(4504), + [anon_sym_CARET] = ACTIONS(4504), + [anon_sym_AMP] = ACTIONS(4504), + [anon_sym_LT_DASH] = ACTIONS(4504), + [sym_none] = ACTIONS(4504), + [sym_true] = ACTIONS(4504), + [sym_false] = ACTIONS(4504), + [sym_nil] = ACTIONS(4504), + [anon_sym_if] = ACTIONS(4504), + [anon_sym_DOLLARif] = ACTIONS(4504), + [anon_sym_match] = ACTIONS(4504), + [anon_sym_select] = ACTIONS(4504), + [anon_sym_lock] = ACTIONS(4504), + [anon_sym_rlock] = ACTIONS(4504), + [anon_sym_unsafe] = ACTIONS(4504), + [anon_sym_sql] = ACTIONS(4504), + [sym_int_literal] = ACTIONS(4504), + [sym_float_literal] = ACTIONS(4504), + [sym_rune_literal] = ACTIONS(4504), + [anon_sym_SQUOTE] = ACTIONS(4504), + [anon_sym_DQUOTE] = ACTIONS(4504), + [anon_sym_c_SQUOTE] = ACTIONS(4504), + [anon_sym_c_DQUOTE] = ACTIONS(4504), + [anon_sym_r_SQUOTE] = ACTIONS(4504), + [anon_sym_r_DQUOTE] = ACTIONS(4504), + [sym_pseudo_compile_time_identifier] = ACTIONS(4504), + [anon_sym_shared] = ACTIONS(4504), + [anon_sym_map_LBRACK] = ACTIONS(4504), + [anon_sym_chan] = ACTIONS(4504), + [anon_sym_thread] = ACTIONS(4504), + [anon_sym_atomic] = ACTIONS(4504), + [anon_sym_assert] = ACTIONS(4504), + [anon_sym_defer] = ACTIONS(4504), + [anon_sym_goto] = ACTIONS(4504), + [anon_sym_break] = ACTIONS(4504), + [anon_sym_continue] = ACTIONS(4504), + [anon_sym_return] = ACTIONS(4504), + [anon_sym_DOLLARfor] = ACTIONS(4504), + [anon_sym_for] = ACTIONS(4504), + [anon_sym_POUND] = ACTIONS(4504), + [anon_sym_asm] = ACTIONS(4504), + [anon_sym_AT_LBRACK] = ACTIONS(4504), + }, + [1600] = { + [sym_line_comment] = STATE(1600), + [sym_block_comment] = STATE(1600), + [ts_builtin_sym_end] = ACTIONS(4506), + [sym_identifier] = ACTIONS(4508), + [anon_sym_LF] = ACTIONS(4508), + [anon_sym_CR] = ACTIONS(4508), + [anon_sym_CR_LF] = ACTIONS(4508), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4508), + [anon_sym_LBRACE] = ACTIONS(4508), + [anon_sym_const] = ACTIONS(4508), + [anon_sym_LPAREN] = ACTIONS(4508), + [anon_sym___global] = ACTIONS(4508), + [anon_sym_type] = ACTIONS(4508), + [anon_sym_fn] = ACTIONS(4508), + [anon_sym_PLUS] = ACTIONS(4508), + [anon_sym_DASH] = ACTIONS(4508), + [anon_sym_STAR] = ACTIONS(4508), + [anon_sym_struct] = ACTIONS(4508), + [anon_sym_union] = ACTIONS(4508), + [anon_sym_pub] = ACTIONS(4508), + [anon_sym_mut] = ACTIONS(4508), + [anon_sym_enum] = ACTIONS(4508), + [anon_sym_interface] = ACTIONS(4508), + [anon_sym_QMARK] = ACTIONS(4508), + [anon_sym_BANG] = ACTIONS(4508), + [anon_sym_go] = ACTIONS(4508), + [anon_sym_spawn] = ACTIONS(4508), + [anon_sym_json_DOTdecode] = ACTIONS(4508), + [anon_sym_LBRACK2] = ACTIONS(4508), + [anon_sym_TILDE] = ACTIONS(4508), + [anon_sym_CARET] = ACTIONS(4508), + [anon_sym_AMP] = ACTIONS(4508), + [anon_sym_LT_DASH] = ACTIONS(4508), + [sym_none] = ACTIONS(4508), + [sym_true] = ACTIONS(4508), + [sym_false] = ACTIONS(4508), + [sym_nil] = ACTIONS(4508), + [anon_sym_if] = ACTIONS(4508), + [anon_sym_DOLLARif] = ACTIONS(4508), + [anon_sym_match] = ACTIONS(4508), + [anon_sym_select] = ACTIONS(4508), + [anon_sym_lock] = ACTIONS(4508), + [anon_sym_rlock] = ACTIONS(4508), + [anon_sym_unsafe] = ACTIONS(4508), + [anon_sym_sql] = ACTIONS(4508), + [sym_int_literal] = ACTIONS(4508), + [sym_float_literal] = ACTIONS(4508), + [sym_rune_literal] = ACTIONS(4508), + [anon_sym_SQUOTE] = ACTIONS(4508), + [anon_sym_DQUOTE] = ACTIONS(4508), + [anon_sym_c_SQUOTE] = ACTIONS(4508), + [anon_sym_c_DQUOTE] = ACTIONS(4508), + [anon_sym_r_SQUOTE] = ACTIONS(4508), + [anon_sym_r_DQUOTE] = ACTIONS(4508), + [sym_pseudo_compile_time_identifier] = ACTIONS(4508), + [anon_sym_shared] = ACTIONS(4508), + [anon_sym_map_LBRACK] = ACTIONS(4508), + [anon_sym_chan] = ACTIONS(4508), + [anon_sym_thread] = ACTIONS(4508), + [anon_sym_atomic] = ACTIONS(4508), + [anon_sym_assert] = ACTIONS(4508), + [anon_sym_defer] = ACTIONS(4508), + [anon_sym_goto] = ACTIONS(4508), + [anon_sym_break] = ACTIONS(4508), + [anon_sym_continue] = ACTIONS(4508), + [anon_sym_return] = ACTIONS(4508), + [anon_sym_DOLLARfor] = ACTIONS(4508), + [anon_sym_for] = ACTIONS(4508), + [anon_sym_POUND] = ACTIONS(4508), + [anon_sym_asm] = ACTIONS(4508), + [anon_sym_AT_LBRACK] = ACTIONS(4508), + }, + [1601] = { + [sym_line_comment] = STATE(1601), + [sym_block_comment] = STATE(1601), + [ts_builtin_sym_end] = ACTIONS(2377), + [sym_identifier] = ACTIONS(2379), + [anon_sym_LF] = ACTIONS(2379), + [anon_sym_CR] = ACTIONS(2379), + [anon_sym_CR_LF] = ACTIONS(2379), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_const] = ACTIONS(2379), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym___global] = ACTIONS(2379), + [anon_sym_type] = ACTIONS(2379), + [anon_sym_fn] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_STAR] = ACTIONS(2379), + [anon_sym_struct] = ACTIONS(2379), + [anon_sym_union] = ACTIONS(2379), + [anon_sym_pub] = ACTIONS(2379), + [anon_sym_mut] = ACTIONS(2379), + [anon_sym_enum] = ACTIONS(2379), + [anon_sym_interface] = ACTIONS(2379), + [anon_sym_QMARK] = ACTIONS(2379), + [anon_sym_BANG] = ACTIONS(2379), + [anon_sym_go] = ACTIONS(2379), + [anon_sym_spawn] = ACTIONS(2379), + [anon_sym_json_DOTdecode] = ACTIONS(2379), + [anon_sym_LBRACK2] = ACTIONS(2379), + [anon_sym_TILDE] = ACTIONS(2379), + [anon_sym_CARET] = ACTIONS(2379), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_LT_DASH] = ACTIONS(2379), + [sym_none] = ACTIONS(2379), + [sym_true] = ACTIONS(2379), + [sym_false] = ACTIONS(2379), + [sym_nil] = ACTIONS(2379), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_DOLLARif] = ACTIONS(2379), + [anon_sym_match] = ACTIONS(2379), + [anon_sym_select] = ACTIONS(2379), + [anon_sym_lock] = ACTIONS(2379), + [anon_sym_rlock] = ACTIONS(2379), + [anon_sym_unsafe] = ACTIONS(2379), + [anon_sym_sql] = ACTIONS(2379), + [sym_int_literal] = ACTIONS(2379), + [sym_float_literal] = ACTIONS(2379), + [sym_rune_literal] = ACTIONS(2379), + [anon_sym_SQUOTE] = ACTIONS(2379), + [anon_sym_DQUOTE] = ACTIONS(2379), + [anon_sym_c_SQUOTE] = ACTIONS(2379), + [anon_sym_c_DQUOTE] = ACTIONS(2379), + [anon_sym_r_SQUOTE] = ACTIONS(2379), + [anon_sym_r_DQUOTE] = ACTIONS(2379), + [sym_pseudo_compile_time_identifier] = ACTIONS(2379), + [anon_sym_shared] = ACTIONS(2379), + [anon_sym_map_LBRACK] = ACTIONS(2379), + [anon_sym_chan] = ACTIONS(2379), + [anon_sym_thread] = ACTIONS(2379), + [anon_sym_atomic] = ACTIONS(2379), + [anon_sym_assert] = ACTIONS(2379), + [anon_sym_defer] = ACTIONS(2379), + [anon_sym_goto] = ACTIONS(2379), + [anon_sym_break] = ACTIONS(2379), + [anon_sym_continue] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2379), + [anon_sym_DOLLARfor] = ACTIONS(2379), + [anon_sym_for] = ACTIONS(2379), + [anon_sym_POUND] = ACTIONS(2379), + [anon_sym_asm] = ACTIONS(2379), + [anon_sym_AT_LBRACK] = ACTIONS(2379), + }, + [1602] = { + [sym_line_comment] = STATE(1602), + [sym_block_comment] = STATE(1602), + [ts_builtin_sym_end] = ACTIONS(4510), + [sym_identifier] = ACTIONS(4512), + [anon_sym_LF] = ACTIONS(4512), + [anon_sym_CR] = ACTIONS(4512), + [anon_sym_CR_LF] = ACTIONS(4512), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4512), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_const] = ACTIONS(4512), + [anon_sym_LPAREN] = ACTIONS(4512), + [anon_sym___global] = ACTIONS(4512), + [anon_sym_type] = ACTIONS(4512), + [anon_sym_fn] = ACTIONS(4512), + [anon_sym_PLUS] = ACTIONS(4512), + [anon_sym_DASH] = ACTIONS(4512), + [anon_sym_STAR] = ACTIONS(4512), + [anon_sym_struct] = ACTIONS(4512), + [anon_sym_union] = ACTIONS(4512), + [anon_sym_pub] = ACTIONS(4512), + [anon_sym_mut] = ACTIONS(4512), + [anon_sym_enum] = ACTIONS(4512), + [anon_sym_interface] = ACTIONS(4512), + [anon_sym_QMARK] = ACTIONS(4512), + [anon_sym_BANG] = ACTIONS(4512), + [anon_sym_go] = ACTIONS(4512), + [anon_sym_spawn] = ACTIONS(4512), + [anon_sym_json_DOTdecode] = ACTIONS(4512), + [anon_sym_LBRACK2] = ACTIONS(4512), + [anon_sym_TILDE] = ACTIONS(4512), + [anon_sym_CARET] = ACTIONS(4512), + [anon_sym_AMP] = ACTIONS(4512), + [anon_sym_LT_DASH] = ACTIONS(4512), + [sym_none] = ACTIONS(4512), + [sym_true] = ACTIONS(4512), + [sym_false] = ACTIONS(4512), + [sym_nil] = ACTIONS(4512), + [anon_sym_if] = ACTIONS(4512), + [anon_sym_DOLLARif] = ACTIONS(4512), + [anon_sym_match] = ACTIONS(4512), + [anon_sym_select] = ACTIONS(4512), + [anon_sym_lock] = ACTIONS(4512), + [anon_sym_rlock] = ACTIONS(4512), + [anon_sym_unsafe] = ACTIONS(4512), + [anon_sym_sql] = ACTIONS(4512), + [sym_int_literal] = ACTIONS(4512), + [sym_float_literal] = ACTIONS(4512), + [sym_rune_literal] = ACTIONS(4512), + [anon_sym_SQUOTE] = ACTIONS(4512), + [anon_sym_DQUOTE] = ACTIONS(4512), + [anon_sym_c_SQUOTE] = ACTIONS(4512), + [anon_sym_c_DQUOTE] = ACTIONS(4512), + [anon_sym_r_SQUOTE] = ACTIONS(4512), + [anon_sym_r_DQUOTE] = ACTIONS(4512), + [sym_pseudo_compile_time_identifier] = ACTIONS(4512), + [anon_sym_shared] = ACTIONS(4512), + [anon_sym_map_LBRACK] = ACTIONS(4512), + [anon_sym_chan] = ACTIONS(4512), + [anon_sym_thread] = ACTIONS(4512), + [anon_sym_atomic] = ACTIONS(4512), + [anon_sym_assert] = ACTIONS(4512), + [anon_sym_defer] = ACTIONS(4512), + [anon_sym_goto] = ACTIONS(4512), + [anon_sym_break] = ACTIONS(4512), + [anon_sym_continue] = ACTIONS(4512), + [anon_sym_return] = ACTIONS(4512), + [anon_sym_DOLLARfor] = ACTIONS(4512), + [anon_sym_for] = ACTIONS(4512), + [anon_sym_POUND] = ACTIONS(4512), + [anon_sym_asm] = ACTIONS(4512), + [anon_sym_AT_LBRACK] = ACTIONS(4512), + }, + [1603] = { + [sym_line_comment] = STATE(1603), + [sym_block_comment] = STATE(1603), + [ts_builtin_sym_end] = ACTIONS(4514), + [sym_identifier] = ACTIONS(4516), + [anon_sym_LF] = ACTIONS(4516), + [anon_sym_CR] = ACTIONS(4516), + [anon_sym_CR_LF] = ACTIONS(4516), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4516), + [anon_sym_LBRACE] = ACTIONS(4516), + [anon_sym_const] = ACTIONS(4516), + [anon_sym_LPAREN] = ACTIONS(4516), + [anon_sym___global] = ACTIONS(4516), + [anon_sym_type] = ACTIONS(4516), + [anon_sym_fn] = ACTIONS(4516), + [anon_sym_PLUS] = ACTIONS(4516), + [anon_sym_DASH] = ACTIONS(4516), + [anon_sym_STAR] = ACTIONS(4516), + [anon_sym_struct] = ACTIONS(4516), + [anon_sym_union] = ACTIONS(4516), + [anon_sym_pub] = ACTIONS(4516), + [anon_sym_mut] = ACTIONS(4516), + [anon_sym_enum] = ACTIONS(4516), + [anon_sym_interface] = ACTIONS(4516), + [anon_sym_QMARK] = ACTIONS(4516), + [anon_sym_BANG] = ACTIONS(4516), + [anon_sym_go] = ACTIONS(4516), + [anon_sym_spawn] = ACTIONS(4516), + [anon_sym_json_DOTdecode] = ACTIONS(4516), + [anon_sym_LBRACK2] = ACTIONS(4516), + [anon_sym_TILDE] = ACTIONS(4516), + [anon_sym_CARET] = ACTIONS(4516), + [anon_sym_AMP] = ACTIONS(4516), + [anon_sym_LT_DASH] = ACTIONS(4516), + [sym_none] = ACTIONS(4516), + [sym_true] = ACTIONS(4516), + [sym_false] = ACTIONS(4516), + [sym_nil] = ACTIONS(4516), + [anon_sym_if] = ACTIONS(4516), + [anon_sym_DOLLARif] = ACTIONS(4516), + [anon_sym_match] = ACTIONS(4516), + [anon_sym_select] = ACTIONS(4516), + [anon_sym_lock] = ACTIONS(4516), + [anon_sym_rlock] = ACTIONS(4516), + [anon_sym_unsafe] = ACTIONS(4516), + [anon_sym_sql] = ACTIONS(4516), + [sym_int_literal] = ACTIONS(4516), + [sym_float_literal] = ACTIONS(4516), + [sym_rune_literal] = ACTIONS(4516), + [anon_sym_SQUOTE] = ACTIONS(4516), + [anon_sym_DQUOTE] = ACTIONS(4516), + [anon_sym_c_SQUOTE] = ACTIONS(4516), + [anon_sym_c_DQUOTE] = ACTIONS(4516), + [anon_sym_r_SQUOTE] = ACTIONS(4516), + [anon_sym_r_DQUOTE] = ACTIONS(4516), + [sym_pseudo_compile_time_identifier] = ACTIONS(4516), + [anon_sym_shared] = ACTIONS(4516), + [anon_sym_map_LBRACK] = ACTIONS(4516), + [anon_sym_chan] = ACTIONS(4516), + [anon_sym_thread] = ACTIONS(4516), + [anon_sym_atomic] = ACTIONS(4516), + [anon_sym_assert] = ACTIONS(4516), + [anon_sym_defer] = ACTIONS(4516), + [anon_sym_goto] = ACTIONS(4516), + [anon_sym_break] = ACTIONS(4516), + [anon_sym_continue] = ACTIONS(4516), + [anon_sym_return] = ACTIONS(4516), + [anon_sym_DOLLARfor] = ACTIONS(4516), + [anon_sym_for] = ACTIONS(4516), + [anon_sym_POUND] = ACTIONS(4516), + [anon_sym_asm] = ACTIONS(4516), + [anon_sym_AT_LBRACK] = ACTIONS(4516), + }, + [1604] = { + [sym_line_comment] = STATE(1604), + [sym_block_comment] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(4518), + [sym_identifier] = ACTIONS(4520), + [anon_sym_LF] = ACTIONS(4520), + [anon_sym_CR] = ACTIONS(4520), + [anon_sym_CR_LF] = ACTIONS(4520), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4520), + [anon_sym_LBRACE] = ACTIONS(4520), + [anon_sym_const] = ACTIONS(4520), + [anon_sym_LPAREN] = ACTIONS(4520), + [anon_sym___global] = ACTIONS(4520), + [anon_sym_type] = ACTIONS(4520), + [anon_sym_fn] = ACTIONS(4520), + [anon_sym_PLUS] = ACTIONS(4520), + [anon_sym_DASH] = ACTIONS(4520), + [anon_sym_STAR] = ACTIONS(4520), + [anon_sym_struct] = ACTIONS(4520), + [anon_sym_union] = ACTIONS(4520), + [anon_sym_pub] = ACTIONS(4520), + [anon_sym_mut] = ACTIONS(4520), + [anon_sym_enum] = ACTIONS(4520), + [anon_sym_interface] = ACTIONS(4520), + [anon_sym_QMARK] = ACTIONS(4520), + [anon_sym_BANG] = ACTIONS(4520), + [anon_sym_go] = ACTIONS(4520), + [anon_sym_spawn] = ACTIONS(4520), + [anon_sym_json_DOTdecode] = ACTIONS(4520), + [anon_sym_LBRACK2] = ACTIONS(4520), + [anon_sym_TILDE] = ACTIONS(4520), + [anon_sym_CARET] = ACTIONS(4520), + [anon_sym_AMP] = ACTIONS(4520), + [anon_sym_LT_DASH] = ACTIONS(4520), + [sym_none] = ACTIONS(4520), + [sym_true] = ACTIONS(4520), + [sym_false] = ACTIONS(4520), + [sym_nil] = ACTIONS(4520), + [anon_sym_if] = ACTIONS(4520), + [anon_sym_DOLLARif] = ACTIONS(4520), + [anon_sym_match] = ACTIONS(4520), + [anon_sym_select] = ACTIONS(4520), + [anon_sym_lock] = ACTIONS(4520), + [anon_sym_rlock] = ACTIONS(4520), + [anon_sym_unsafe] = ACTIONS(4520), + [anon_sym_sql] = ACTIONS(4520), + [sym_int_literal] = ACTIONS(4520), + [sym_float_literal] = ACTIONS(4520), + [sym_rune_literal] = ACTIONS(4520), + [anon_sym_SQUOTE] = ACTIONS(4520), + [anon_sym_DQUOTE] = ACTIONS(4520), + [anon_sym_c_SQUOTE] = ACTIONS(4520), + [anon_sym_c_DQUOTE] = ACTIONS(4520), + [anon_sym_r_SQUOTE] = ACTIONS(4520), + [anon_sym_r_DQUOTE] = ACTIONS(4520), + [sym_pseudo_compile_time_identifier] = ACTIONS(4520), + [anon_sym_shared] = ACTIONS(4520), + [anon_sym_map_LBRACK] = ACTIONS(4520), + [anon_sym_chan] = ACTIONS(4520), + [anon_sym_thread] = ACTIONS(4520), + [anon_sym_atomic] = ACTIONS(4520), + [anon_sym_assert] = ACTIONS(4520), + [anon_sym_defer] = ACTIONS(4520), + [anon_sym_goto] = ACTIONS(4520), + [anon_sym_break] = ACTIONS(4520), + [anon_sym_continue] = ACTIONS(4520), + [anon_sym_return] = ACTIONS(4520), + [anon_sym_DOLLARfor] = ACTIONS(4520), + [anon_sym_for] = ACTIONS(4520), + [anon_sym_POUND] = ACTIONS(4520), + [anon_sym_asm] = ACTIONS(4520), + [anon_sym_AT_LBRACK] = ACTIONS(4520), + }, + [1605] = { + [sym_line_comment] = STATE(1605), + [sym_block_comment] = STATE(1605), + [sym_import_declaration] = STATE(1624), + [aux_sym_import_list_repeat1] = STATE(1605), + [ts_builtin_sym_end] = ACTIONS(4522), + [sym_identifier] = ACTIONS(4524), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_import] = ACTIONS(4526), + [anon_sym_DOT] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4522), + [anon_sym_const] = ACTIONS(4524), + [anon_sym_LPAREN] = ACTIONS(4522), + [anon_sym___global] = ACTIONS(4524), + [anon_sym_type] = ACTIONS(4524), + [anon_sym_fn] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4522), + [anon_sym_DASH] = ACTIONS(4522), + [anon_sym_STAR] = ACTIONS(4522), + [anon_sym_struct] = ACTIONS(4524), + [anon_sym_union] = ACTIONS(4524), + [anon_sym_pub] = ACTIONS(4524), + [anon_sym_mut] = ACTIONS(4524), + [anon_sym_enum] = ACTIONS(4524), + [anon_sym_interface] = ACTIONS(4524), + [anon_sym_QMARK] = ACTIONS(4522), + [anon_sym_BANG] = ACTIONS(4522), + [anon_sym_go] = ACTIONS(4524), + [anon_sym_spawn] = ACTIONS(4524), + [anon_sym_json_DOTdecode] = ACTIONS(4522), + [anon_sym_LBRACK2] = ACTIONS(4522), + [anon_sym_TILDE] = ACTIONS(4522), + [anon_sym_CARET] = ACTIONS(4522), + [anon_sym_AMP] = ACTIONS(4522), + [anon_sym_LT_DASH] = ACTIONS(4522), + [sym_none] = ACTIONS(4524), + [sym_true] = ACTIONS(4524), + [sym_false] = ACTIONS(4524), + [sym_nil] = ACTIONS(4524), + [anon_sym_if] = ACTIONS(4524), + [anon_sym_DOLLARif] = ACTIONS(4524), + [anon_sym_match] = ACTIONS(4524), + [anon_sym_select] = ACTIONS(4524), + [anon_sym_lock] = ACTIONS(4524), + [anon_sym_rlock] = ACTIONS(4524), + [anon_sym_unsafe] = ACTIONS(4524), + [anon_sym_sql] = ACTIONS(4524), + [sym_int_literal] = ACTIONS(4524), + [sym_float_literal] = ACTIONS(4522), + [sym_rune_literal] = ACTIONS(4522), + [anon_sym_SQUOTE] = ACTIONS(4522), + [anon_sym_DQUOTE] = ACTIONS(4522), + [anon_sym_c_SQUOTE] = ACTIONS(4522), + [anon_sym_c_DQUOTE] = ACTIONS(4522), + [anon_sym_r_SQUOTE] = ACTIONS(4522), + [anon_sym_r_DQUOTE] = ACTIONS(4522), + [sym_pseudo_compile_time_identifier] = ACTIONS(4524), + [anon_sym_shared] = ACTIONS(4524), + [anon_sym_map_LBRACK] = ACTIONS(4522), + [anon_sym_chan] = ACTIONS(4524), + [anon_sym_thread] = ACTIONS(4524), + [anon_sym_atomic] = ACTIONS(4524), + [anon_sym_assert] = ACTIONS(4524), + [anon_sym_defer] = ACTIONS(4524), + [anon_sym_goto] = ACTIONS(4524), + [anon_sym_break] = ACTIONS(4524), + [anon_sym_continue] = ACTIONS(4524), + [anon_sym_return] = ACTIONS(4524), + [anon_sym_DOLLARfor] = ACTIONS(4524), + [anon_sym_for] = ACTIONS(4524), + [anon_sym_POUND] = ACTIONS(4522), + [anon_sym_asm] = ACTIONS(4524), + [anon_sym_AT_LBRACK] = ACTIONS(4522), + }, + [1606] = { + [sym_line_comment] = STATE(1606), + [sym_block_comment] = STATE(1606), + [ts_builtin_sym_end] = ACTIONS(2451), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LF] = ACTIONS(2453), + [anon_sym_CR] = ACTIONS(2453), + [anon_sym_CR_LF] = ACTIONS(2453), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym___global] = ACTIONS(2453), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_fn] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(2453), + [anon_sym_struct] = ACTIONS(2453), + [anon_sym_union] = ACTIONS(2453), + [anon_sym_pub] = ACTIONS(2453), + [anon_sym_mut] = ACTIONS(2453), + [anon_sym_enum] = ACTIONS(2453), + [anon_sym_interface] = ACTIONS(2453), + [anon_sym_QMARK] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2453), + [anon_sym_go] = ACTIONS(2453), + [anon_sym_spawn] = ACTIONS(2453), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2453), + [anon_sym_TILDE] = ACTIONS(2453), + [anon_sym_CARET] = ACTIONS(2453), + [anon_sym_AMP] = ACTIONS(2453), + [anon_sym_LT_DASH] = ACTIONS(2453), + [sym_none] = ACTIONS(2453), + [sym_true] = ACTIONS(2453), + [sym_false] = ACTIONS(2453), + [sym_nil] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_DOLLARif] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_select] = ACTIONS(2453), + [anon_sym_lock] = ACTIONS(2453), + [anon_sym_rlock] = ACTIONS(2453), + [anon_sym_unsafe] = ACTIONS(2453), + [anon_sym_sql] = ACTIONS(2453), + [sym_int_literal] = ACTIONS(2453), + [sym_float_literal] = ACTIONS(2453), + [sym_rune_literal] = ACTIONS(2453), + [anon_sym_SQUOTE] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2453), + [anon_sym_c_SQUOTE] = ACTIONS(2453), + [anon_sym_c_DQUOTE] = ACTIONS(2453), + [anon_sym_r_SQUOTE] = ACTIONS(2453), + [anon_sym_r_DQUOTE] = ACTIONS(2453), + [sym_pseudo_compile_time_identifier] = ACTIONS(2453), + [anon_sym_shared] = ACTIONS(2453), + [anon_sym_map_LBRACK] = ACTIONS(2453), + [anon_sym_chan] = ACTIONS(2453), + [anon_sym_thread] = ACTIONS(2453), + [anon_sym_atomic] = ACTIONS(2453), + [anon_sym_assert] = ACTIONS(2453), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_goto] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_DOLLARfor] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_POUND] = ACTIONS(2453), + [anon_sym_asm] = ACTIONS(2453), + [anon_sym_AT_LBRACK] = ACTIONS(2453), + }, + [1607] = { + [sym_line_comment] = STATE(1607), + [sym_block_comment] = STATE(1607), + [ts_builtin_sym_end] = ACTIONS(4021), + [sym_identifier] = ACTIONS(4023), + [anon_sym_LF] = ACTIONS(4023), + [anon_sym_CR] = ACTIONS(4023), + [anon_sym_CR_LF] = ACTIONS(4023), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4023), + [anon_sym_LBRACE] = ACTIONS(4023), + [anon_sym_const] = ACTIONS(4023), + [anon_sym_LPAREN] = ACTIONS(4023), + [anon_sym___global] = ACTIONS(4023), + [anon_sym_type] = ACTIONS(4023), + [anon_sym_fn] = ACTIONS(4023), + [anon_sym_PLUS] = ACTIONS(4023), + [anon_sym_DASH] = ACTIONS(4023), + [anon_sym_STAR] = ACTIONS(4023), + [anon_sym_struct] = ACTIONS(4023), + [anon_sym_union] = ACTIONS(4023), + [anon_sym_pub] = ACTIONS(4023), + [anon_sym_mut] = ACTIONS(4023), + [anon_sym_enum] = ACTIONS(4023), + [anon_sym_interface] = ACTIONS(4023), + [anon_sym_QMARK] = ACTIONS(4023), + [anon_sym_BANG] = ACTIONS(4023), + [anon_sym_go] = ACTIONS(4023), + [anon_sym_spawn] = ACTIONS(4023), + [anon_sym_json_DOTdecode] = ACTIONS(4023), + [anon_sym_LBRACK2] = ACTIONS(4023), + [anon_sym_TILDE] = ACTIONS(4023), + [anon_sym_CARET] = ACTIONS(4023), + [anon_sym_AMP] = ACTIONS(4023), + [anon_sym_LT_DASH] = ACTIONS(4023), + [sym_none] = ACTIONS(4023), + [sym_true] = ACTIONS(4023), + [sym_false] = ACTIONS(4023), + [sym_nil] = ACTIONS(4023), + [anon_sym_if] = ACTIONS(4023), + [anon_sym_DOLLARif] = ACTIONS(4023), + [anon_sym_match] = ACTIONS(4023), + [anon_sym_select] = ACTIONS(4023), + [anon_sym_lock] = ACTIONS(4023), + [anon_sym_rlock] = ACTIONS(4023), + [anon_sym_unsafe] = ACTIONS(4023), + [anon_sym_sql] = ACTIONS(4023), + [sym_int_literal] = ACTIONS(4023), + [sym_float_literal] = ACTIONS(4023), + [sym_rune_literal] = ACTIONS(4023), + [anon_sym_SQUOTE] = ACTIONS(4023), + [anon_sym_DQUOTE] = ACTIONS(4023), + [anon_sym_c_SQUOTE] = ACTIONS(4023), + [anon_sym_c_DQUOTE] = ACTIONS(4023), + [anon_sym_r_SQUOTE] = ACTIONS(4023), + [anon_sym_r_DQUOTE] = ACTIONS(4023), + [sym_pseudo_compile_time_identifier] = ACTIONS(4023), + [anon_sym_shared] = ACTIONS(4023), + [anon_sym_map_LBRACK] = ACTIONS(4023), + [anon_sym_chan] = ACTIONS(4023), + [anon_sym_thread] = ACTIONS(4023), + [anon_sym_atomic] = ACTIONS(4023), + [anon_sym_assert] = ACTIONS(4023), + [anon_sym_defer] = ACTIONS(4023), + [anon_sym_goto] = ACTIONS(4023), + [anon_sym_break] = ACTIONS(4023), + [anon_sym_continue] = ACTIONS(4023), + [anon_sym_return] = ACTIONS(4023), + [anon_sym_DOLLARfor] = ACTIONS(4023), + [anon_sym_for] = ACTIONS(4023), + [anon_sym_POUND] = ACTIONS(4023), + [anon_sym_asm] = ACTIONS(4023), + [anon_sym_AT_LBRACK] = ACTIONS(4023), + }, + [1608] = { + [sym_line_comment] = STATE(1608), + [sym_block_comment] = STATE(1608), + [ts_builtin_sym_end] = ACTIONS(4529), + [sym_identifier] = ACTIONS(4531), + [anon_sym_LF] = ACTIONS(4531), + [anon_sym_CR] = ACTIONS(4531), + [anon_sym_CR_LF] = ACTIONS(4531), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4531), + [anon_sym_const] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4531), + [anon_sym___global] = ACTIONS(4531), + [anon_sym_type] = ACTIONS(4531), + [anon_sym_fn] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_DASH] = ACTIONS(4531), + [anon_sym_STAR] = ACTIONS(4531), + [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_QMARK] = ACTIONS(4531), + [anon_sym_BANG] = ACTIONS(4531), + [anon_sym_go] = ACTIONS(4531), + [anon_sym_spawn] = ACTIONS(4531), + [anon_sym_json_DOTdecode] = ACTIONS(4531), + [anon_sym_LBRACK2] = ACTIONS(4531), + [anon_sym_TILDE] = ACTIONS(4531), + [anon_sym_CARET] = ACTIONS(4531), + [anon_sym_AMP] = ACTIONS(4531), + [anon_sym_LT_DASH] = ACTIONS(4531), + [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_float_literal] = ACTIONS(4531), + [sym_rune_literal] = ACTIONS(4531), + [anon_sym_SQUOTE] = ACTIONS(4531), + [anon_sym_DQUOTE] = ACTIONS(4531), + [anon_sym_c_SQUOTE] = ACTIONS(4531), + [anon_sym_c_DQUOTE] = ACTIONS(4531), + [anon_sym_r_SQUOTE] = ACTIONS(4531), + [anon_sym_r_DQUOTE] = ACTIONS(4531), + [sym_pseudo_compile_time_identifier] = ACTIONS(4531), + [anon_sym_shared] = ACTIONS(4531), + [anon_sym_map_LBRACK] = ACTIONS(4531), + [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_POUND] = ACTIONS(4531), + [anon_sym_asm] = ACTIONS(4531), + [anon_sym_AT_LBRACK] = ACTIONS(4531), + }, + [1609] = { + [sym_line_comment] = STATE(1609), + [sym_block_comment] = STATE(1609), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [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), + [anon_sym_SQUOTE] = ACTIONS(4535), + [anon_sym_DQUOTE] = ACTIONS(4535), + [anon_sym_c_SQUOTE] = ACTIONS(4535), + [anon_sym_c_DQUOTE] = ACTIONS(4535), + [anon_sym_r_SQUOTE] = ACTIONS(4535), + [anon_sym_r_DQUOTE] = 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), + }, + [1610] = { + [sym_line_comment] = STATE(1610), + [sym_block_comment] = STATE(1610), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [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), + [anon_sym_SQUOTE] = ACTIONS(4539), + [anon_sym_DQUOTE] = ACTIONS(4539), + [anon_sym_c_SQUOTE] = ACTIONS(4539), + [anon_sym_c_DQUOTE] = ACTIONS(4539), + [anon_sym_r_SQUOTE] = ACTIONS(4539), + [anon_sym_r_DQUOTE] = 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), + }, + [1611] = { + [sym_line_comment] = STATE(1611), + [sym_block_comment] = STATE(1611), + [ts_builtin_sym_end] = ACTIONS(1875), + [sym_identifier] = ACTIONS(1877), + [anon_sym_LF] = ACTIONS(1877), + [anon_sym_CR] = ACTIONS(1877), + [anon_sym_CR_LF] = ACTIONS(1877), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_const] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym___global] = ACTIONS(1877), + [anon_sym_type] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_struct] = ACTIONS(1877), + [anon_sym_union] = ACTIONS(1877), + [anon_sym_pub] = ACTIONS(1877), + [anon_sym_mut] = ACTIONS(1877), + [anon_sym_enum] = ACTIONS(1877), + [anon_sym_interface] = ACTIONS(1877), + [anon_sym_QMARK] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_go] = ACTIONS(1877), + [anon_sym_spawn] = ACTIONS(1877), + [anon_sym_json_DOTdecode] = ACTIONS(1877), + [anon_sym_LBRACK2] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1877), + [sym_none] = ACTIONS(1877), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [sym_nil] = ACTIONS(1877), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_DOLLARif] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1877), + [anon_sym_select] = ACTIONS(1877), + [anon_sym_lock] = ACTIONS(1877), + [anon_sym_rlock] = ACTIONS(1877), + [anon_sym_unsafe] = ACTIONS(1877), + [anon_sym_sql] = ACTIONS(1877), + [sym_int_literal] = ACTIONS(1877), + [sym_float_literal] = ACTIONS(1877), + [sym_rune_literal] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_c_SQUOTE] = ACTIONS(1877), + [anon_sym_c_DQUOTE] = ACTIONS(1877), + [anon_sym_r_SQUOTE] = ACTIONS(1877), + [anon_sym_r_DQUOTE] = ACTIONS(1877), + [sym_pseudo_compile_time_identifier] = ACTIONS(1877), + [anon_sym_shared] = ACTIONS(1877), + [anon_sym_map_LBRACK] = ACTIONS(1877), + [anon_sym_chan] = ACTIONS(1877), + [anon_sym_thread] = ACTIONS(1877), + [anon_sym_atomic] = ACTIONS(1877), + [anon_sym_assert] = ACTIONS(1877), + [anon_sym_defer] = ACTIONS(1877), + [anon_sym_goto] = ACTIONS(1877), + [anon_sym_break] = ACTIONS(1877), + [anon_sym_continue] = ACTIONS(1877), + [anon_sym_return] = ACTIONS(1877), + [anon_sym_DOLLARfor] = ACTIONS(1877), + [anon_sym_for] = ACTIONS(1877), + [anon_sym_POUND] = ACTIONS(1877), + [anon_sym_asm] = ACTIONS(1877), + [anon_sym_AT_LBRACK] = ACTIONS(1877), + }, + [1612] = { + [sym_line_comment] = STATE(1612), + [sym_block_comment] = STATE(1612), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [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), + [anon_sym_SQUOTE] = ACTIONS(4543), + [anon_sym_DQUOTE] = ACTIONS(4543), + [anon_sym_c_SQUOTE] = ACTIONS(4543), + [anon_sym_c_DQUOTE] = ACTIONS(4543), + [anon_sym_r_SQUOTE] = ACTIONS(4543), + [anon_sym_r_DQUOTE] = 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), + }, + [1613] = { + [sym_line_comment] = STATE(1613), + [sym_block_comment] = STATE(1613), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [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), + [anon_sym_SQUOTE] = ACTIONS(4547), + [anon_sym_DQUOTE] = ACTIONS(4547), + [anon_sym_c_SQUOTE] = ACTIONS(4547), + [anon_sym_c_DQUOTE] = ACTIONS(4547), + [anon_sym_r_SQUOTE] = ACTIONS(4547), + [anon_sym_r_DQUOTE] = 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), + }, + [1614] = { + [sym_line_comment] = STATE(1614), + [sym_block_comment] = STATE(1614), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [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), + [anon_sym_SQUOTE] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_c_SQUOTE] = ACTIONS(4551), + [anon_sym_c_DQUOTE] = ACTIONS(4551), + [anon_sym_r_SQUOTE] = ACTIONS(4551), + [anon_sym_r_DQUOTE] = 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), + }, + [1615] = { + [sym_line_comment] = STATE(1615), + [sym_block_comment] = STATE(1615), + [sym_reference_expression] = STATE(4549), + [sym_type_reference_expression] = STATE(2644), + [sym_plain_type] = STATE(2778), + [sym__plain_type_without_special] = STATE(2752), + [sym_anon_struct_type] = STATE(2753), + [sym_multi_return_type] = STATE(2752), + [sym_result_type] = STATE(2752), + [sym_option_type] = STATE(2752), + [sym_qualified_type] = STATE(2644), + [sym_fixed_array_type] = STATE(2753), + [sym_array_type] = STATE(2753), + [sym_pointer_type] = STATE(2753), + [sym_wrong_pointer_type] = STATE(2753), + [sym_map_type] = STATE(2753), + [sym_channel_type] = STATE(2753), + [sym_shared_type] = STATE(2753), + [sym_thread_type] = STATE(2753), + [sym_atomic_type] = STATE(2753), + [sym_generic_type] = STATE(2753), + [sym_function_type] = STATE(2753), + [sym_identifier] = ACTIONS(4553), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(4555), + [anon_sym_fn] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(4559), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(599), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(599), + [anon_sym_BANG_EQ] = ACTIONS(599), + [anon_sym_LT_EQ] = ACTIONS(599), + [anon_sym_GT_EQ] = ACTIONS(599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(4561), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(4563), + [anon_sym_BANG] = ACTIONS(4565), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_LBRACK2] = ACTIONS(4567), + [anon_sym_CARET] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(4569), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(599), + [anon_sym_AMP_CARET] = ACTIONS(599), + [anon_sym_AMP_AMP] = ACTIONS(599), + [anon_sym_PIPE_PIPE] = ACTIONS(599), + [anon_sym_or] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(599), + [anon_sym_POUND_LBRACK] = ACTIONS(599), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(599), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(599), + [anon_sym_shared] = ACTIONS(4571), + [anon_sym_map_LBRACK] = ACTIONS(4573), + [anon_sym_chan] = ACTIONS(4575), + [anon_sym_thread] = ACTIONS(4577), + [anon_sym_atomic] = ACTIONS(4579), + [anon_sym_DOT_DOT] = ACTIONS(601), + }, + [1616] = { + [sym_line_comment] = STATE(1616), + [sym_block_comment] = STATE(1616), + [sym_reference_expression] = STATE(4549), + [sym_type_reference_expression] = STATE(2644), + [sym_plain_type] = STATE(2762), + [sym__plain_type_without_special] = STATE(2752), + [sym_anon_struct_type] = STATE(2753), + [sym_multi_return_type] = STATE(2752), + [sym_result_type] = STATE(2752), + [sym_option_type] = STATE(2752), + [sym_qualified_type] = STATE(2644), + [sym_fixed_array_type] = STATE(2753), + [sym_array_type] = STATE(2753), + [sym_pointer_type] = STATE(2753), + [sym_wrong_pointer_type] = STATE(2753), + [sym_map_type] = STATE(2753), + [sym_channel_type] = STATE(2753), + [sym_shared_type] = STATE(2753), + [sym_thread_type] = STATE(2753), + [sym_atomic_type] = STATE(2753), + [sym_generic_type] = STATE(2753), + [sym_function_type] = STATE(2753), + [sym_identifier] = ACTIONS(4553), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(625), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_as] = ACTIONS(627), + [anon_sym_DOT] = ACTIONS(567), + [anon_sym_as] = ACTIONS(567), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(625), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(625), - [anon_sym_BANG_EQ] = ACTIONS(625), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_QMARK] = ACTIONS(627), - [anon_sym_BANG] = ACTIONS(627), - [anon_sym_LBRACK2] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(627), - [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(623), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(4555), + [anon_sym_fn] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_STAR] = ACTIONS(4559), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(4561), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(4563), + [anon_sym_BANG] = ACTIONS(4565), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_LBRACK2] = ACTIONS(4567), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(4569), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_GT_GT_GT] = ACTIONS(563), + [anon_sym_AMP_CARET] = ACTIONS(563), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_or] = ACTIONS(567), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_is] = ACTIONS(567), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(567), + [anon_sym_BANGin] = ACTIONS(563), + [anon_sym_shared] = ACTIONS(4571), + [anon_sym_map_LBRACK] = ACTIONS(4573), + [anon_sym_chan] = ACTIONS(4575), + [anon_sym_thread] = ACTIONS(4577), + [anon_sym_atomic] = ACTIONS(4579), + [anon_sym_DOT_DOT] = ACTIONS(567), + }, + [1617] = { + [sym_line_comment] = STATE(1617), + [sym_block_comment] = STATE(1617), + [ts_builtin_sym_end] = ACTIONS(4581), + [sym_identifier] = ACTIONS(4583), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_module] = ACTIONS(4583), + [anon_sym_import] = ACTIONS(4583), + [anon_sym_DOT] = ACTIONS(4583), + [anon_sym_LBRACE] = ACTIONS(4581), + [anon_sym_const] = ACTIONS(4583), + [anon_sym_LPAREN] = ACTIONS(4581), + [anon_sym___global] = ACTIONS(4583), + [anon_sym_type] = ACTIONS(4583), + [anon_sym_fn] = ACTIONS(4583), + [anon_sym_PLUS] = ACTIONS(4581), + [anon_sym_DASH] = ACTIONS(4581), + [anon_sym_STAR] = ACTIONS(4581), + [anon_sym_struct] = ACTIONS(4583), + [anon_sym_union] = ACTIONS(4583), + [anon_sym_pub] = ACTIONS(4583), + [anon_sym_mut] = ACTIONS(4583), + [anon_sym_enum] = ACTIONS(4583), + [anon_sym_interface] = ACTIONS(4583), + [anon_sym_QMARK] = ACTIONS(4581), + [anon_sym_BANG] = ACTIONS(4581), + [anon_sym_go] = ACTIONS(4583), + [anon_sym_spawn] = ACTIONS(4583), + [anon_sym_json_DOTdecode] = ACTIONS(4581), + [anon_sym_LBRACK2] = ACTIONS(4581), + [anon_sym_TILDE] = ACTIONS(4581), + [anon_sym_CARET] = ACTIONS(4581), + [anon_sym_AMP] = ACTIONS(4581), + [anon_sym_LT_DASH] = ACTIONS(4581), + [sym_none] = ACTIONS(4583), + [sym_true] = ACTIONS(4583), + [sym_false] = ACTIONS(4583), + [sym_nil] = ACTIONS(4583), + [anon_sym_if] = ACTIONS(4583), + [anon_sym_DOLLARif] = ACTIONS(4583), + [anon_sym_match] = ACTIONS(4583), + [anon_sym_select] = ACTIONS(4583), + [anon_sym_lock] = ACTIONS(4583), + [anon_sym_rlock] = ACTIONS(4583), + [anon_sym_unsafe] = ACTIONS(4583), + [anon_sym_sql] = ACTIONS(4583), + [sym_int_literal] = ACTIONS(4583), + [sym_float_literal] = ACTIONS(4581), + [sym_rune_literal] = ACTIONS(4581), + [anon_sym_SQUOTE] = ACTIONS(4581), + [anon_sym_DQUOTE] = ACTIONS(4581), + [anon_sym_c_SQUOTE] = ACTIONS(4581), + [anon_sym_c_DQUOTE] = ACTIONS(4581), + [anon_sym_r_SQUOTE] = ACTIONS(4581), + [anon_sym_r_DQUOTE] = ACTIONS(4581), + [sym_pseudo_compile_time_identifier] = ACTIONS(4583), + [anon_sym_shared] = ACTIONS(4583), + [anon_sym_map_LBRACK] = ACTIONS(4581), + [anon_sym_chan] = ACTIONS(4583), + [anon_sym_thread] = ACTIONS(4583), + [anon_sym_atomic] = ACTIONS(4583), + [anon_sym_assert] = ACTIONS(4583), + [anon_sym_defer] = ACTIONS(4583), + [anon_sym_goto] = ACTIONS(4583), + [anon_sym_break] = ACTIONS(4583), + [anon_sym_continue] = ACTIONS(4583), + [anon_sym_return] = ACTIONS(4583), + [anon_sym_DOLLARfor] = ACTIONS(4583), + [anon_sym_for] = ACTIONS(4583), + [anon_sym_POUND] = ACTIONS(4581), + [anon_sym_asm] = ACTIONS(4583), + [anon_sym_AT_LBRACK] = ACTIONS(4581), + }, + [1618] = { + [sym_line_comment] = STATE(1618), + [sym_block_comment] = STATE(1618), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2421), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(609), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_as] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(3600), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_LT_EQ] = ACTIONS(607), + [anon_sym_GT_EQ] = ACTIONS(607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(4585), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(607), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(607), + [anon_sym_AMP_CARET] = ACTIONS(607), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [anon_sym_or] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(607), + [anon_sym_POUND_LBRACK] = ACTIONS(607), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(607), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(607), + [anon_sym_shared] = ACTIONS(627), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), - }, - [1577] = { - [sym_line_comment] = STATE(1577), - [sym_block_comment] = STATE(1577), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(605), + [anon_sym_DOT_DOT] = ACTIONS(611), + }, + [1619] = { + [sym_line_comment] = STATE(1619), + [sym_block_comment] = STATE(1619), + [sym_reference_expression] = STATE(4549), + [sym_type_reference_expression] = STATE(2644), + [sym_plain_type] = STATE(2774), + [sym__plain_type_without_special] = STATE(2752), + [sym_anon_struct_type] = STATE(2753), + [sym_multi_return_type] = STATE(2752), + [sym_result_type] = STATE(2752), + [sym_option_type] = STATE(2752), + [sym_qualified_type] = STATE(2644), + [sym_fixed_array_type] = STATE(2753), + [sym_array_type] = STATE(2753), + [sym_pointer_type] = STATE(2753), + [sym_wrong_pointer_type] = STATE(2753), + [sym_map_type] = STATE(2753), + [sym_channel_type] = STATE(2753), + [sym_shared_type] = STATE(2753), + [sym_thread_type] = STATE(2753), + [sym_atomic_type] = STATE(2753), + [sym_generic_type] = STATE(2753), + [sym_function_type] = STATE(2753), + [sym_identifier] = ACTIONS(4553), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(605), + [anon_sym_as] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(603), [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(607), + [anon_sym_LPAREN] = ACTIONS(4555), + [anon_sym_fn] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(4559), + [anon_sym_SLASH] = ACTIONS(605), [anon_sym_PERCENT] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), [anon_sym_EQ_EQ] = ACTIONS(603), [anon_sym_BANG_EQ] = ACTIONS(603), [anon_sym_LT_EQ] = ACTIONS(603), [anon_sym_GT_EQ] = ACTIONS(603), [anon_sym_DOT_DOT_DOT] = ACTIONS(603), [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), + [anon_sym_struct] = ACTIONS(4561), [anon_sym_PLUS_PLUS] = ACTIONS(603), [anon_sym_DASH_DASH] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(4531), - [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(4563), + [anon_sym_BANG] = ACTIONS(4565), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_LBRACK2] = ACTIONS(4567), [anon_sym_CARET] = ACTIONS(603), - [anon_sym_AMP] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(4569), [anon_sym_LT_LT] = ACTIONS(603), - [anon_sym_GT_GT] = ACTIONS(607), + [anon_sym_GT_GT] = ACTIONS(605), [anon_sym_GT_GT_GT] = ACTIONS(603), [anon_sym_AMP_CARET] = ACTIONS(603), [anon_sym_AMP_AMP] = ACTIONS(603), [anon_sym_PIPE_PIPE] = ACTIONS(603), - [anon_sym_or] = ACTIONS(607), + [anon_sym_or] = ACTIONS(605), [anon_sym_QMARK_DOT] = ACTIONS(603), [anon_sym_POUND_LBRACK] = ACTIONS(603), - [anon_sym_is] = ACTIONS(607), + [anon_sym_is] = ACTIONS(605), [anon_sym_BANGis] = ACTIONS(603), - [anon_sym_in] = ACTIONS(607), + [anon_sym_in] = ACTIONS(605), [anon_sym_BANGin] = ACTIONS(603), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(97), - [anon_sym_chan] = ACTIONS(99), - [anon_sym_thread] = ACTIONS(101), - [anon_sym_atomic] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(607), - }, - [1578] = { - [sym_line_comment] = STATE(1578), - [sym_block_comment] = STATE(1578), - [sym_reference_expression] = STATE(4316), - [sym_type_reference_expression] = STATE(2611), - [sym_plain_type] = STATE(2719), - [sym__plain_type_without_special] = STATE(2692), - [sym_anon_struct_type] = STATE(2693), - [sym_multi_return_type] = STATE(2692), - [sym_result_type] = STATE(2692), - [sym_option_type] = STATE(2692), - [sym_qualified_type] = STATE(2611), - [sym_fixed_array_type] = STATE(2693), - [sym_array_type] = STATE(2693), - [sym_pointer_type] = STATE(2693), - [sym_wrong_pointer_type] = STATE(2693), - [sym_map_type] = STATE(2693), - [sym_channel_type] = STATE(2693), - [sym_shared_type] = STATE(2693), - [sym_thread_type] = STATE(2693), - [sym_atomic_type] = STATE(2693), - [sym_generic_type] = STATE(2693), - [sym_function_type] = STATE(2693), - [sym_identifier] = ACTIONS(4533), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(567), - [anon_sym_as] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(4535), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(4537), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(4539), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(4541), - [anon_sym_PLUS_PLUS] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(4543), - [anon_sym_BANG] = ACTIONS(4545), - [anon_sym_LBRACK2] = ACTIONS(4547), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(4549), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(563), - [anon_sym_AMP_CARET] = ACTIONS(563), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_or] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(563), - [anon_sym_POUND_LBRACK] = ACTIONS(563), - [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(563), - [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(4551), - [anon_sym_map_LBRACK] = ACTIONS(4553), - [anon_sym_chan] = ACTIONS(4555), - [anon_sym_thread] = ACTIONS(4557), - [anon_sym_atomic] = ACTIONS(4559), - [anon_sym_DOT_DOT] = ACTIONS(567), - }, - [1579] = { - [sym_line_comment] = STATE(1579), - [sym_block_comment] = STATE(1579), - [sym_reference_expression] = STATE(4316), - [sym_type_reference_expression] = STATE(2611), - [sym_plain_type] = STATE(2715), - [sym__plain_type_without_special] = STATE(2692), - [sym_anon_struct_type] = STATE(2693), - [sym_multi_return_type] = STATE(2692), - [sym_result_type] = STATE(2692), - [sym_option_type] = STATE(2692), - [sym_qualified_type] = STATE(2611), - [sym_fixed_array_type] = STATE(2693), - [sym_array_type] = STATE(2693), - [sym_pointer_type] = STATE(2693), - [sym_wrong_pointer_type] = STATE(2693), - [sym_map_type] = STATE(2693), - [sym_channel_type] = STATE(2693), - [sym_shared_type] = STATE(2693), - [sym_thread_type] = STATE(2693), - [sym_atomic_type] = STATE(2693), - [sym_generic_type] = STATE(2693), - [sym_function_type] = STATE(2693), - [sym_identifier] = ACTIONS(4533), + [anon_sym_shared] = ACTIONS(4571), + [anon_sym_map_LBRACK] = ACTIONS(4573), + [anon_sym_chan] = ACTIONS(4575), + [anon_sym_thread] = ACTIONS(4577), + [anon_sym_atomic] = ACTIONS(4579), + [anon_sym_DOT_DOT] = ACTIONS(605), + }, + [1620] = { + [sym_line_comment] = STATE(1620), + [sym_block_comment] = STATE(1620), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2418), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(609), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(595), [anon_sym_as] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_LBRACE] = ACTIONS(599), [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(4535), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(4537), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_fn] = ACTIONS(615), [anon_sym_PLUS] = ACTIONS(597), [anon_sym_DASH] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(4539), + [anon_sym_STAR] = ACTIONS(595), [anon_sym_SLASH] = ACTIONS(597), [anon_sym_PERCENT] = ACTIONS(595), [anon_sym_LT] = ACTIONS(597), @@ -186730,16 +190254,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(595), [anon_sym_LT_EQ] = ACTIONS(595), [anon_sym_GT_EQ] = ACTIONS(595), - [anon_sym_DOT_DOT_DOT] = ACTIONS(595), [anon_sym_LBRACK] = ACTIONS(595), - [anon_sym_struct] = ACTIONS(4541), + [anon_sym_struct] = ACTIONS(619), [anon_sym_PLUS_PLUS] = ACTIONS(595), [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(4543), - [anon_sym_BANG] = ACTIONS(4545), - [anon_sym_LBRACK2] = ACTIONS(4547), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(4549), + [anon_sym_AMP] = ACTIONS(597), [anon_sym_LT_LT] = ACTIONS(595), [anon_sym_GT_GT] = ACTIONS(597), [anon_sym_GT_GT_GT] = ACTIONS(595), @@ -186753,2148 +190277,2143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(595), [anon_sym_in] = ACTIONS(597), [anon_sym_BANGin] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(4551), - [anon_sym_map_LBRACK] = ACTIONS(4553), - [anon_sym_chan] = ACTIONS(4555), - [anon_sym_thread] = ACTIONS(4557), - [anon_sym_atomic] = ACTIONS(4559), - [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_COLON_EQ] = ACTIONS(595), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [1580] = { - [sym_line_comment] = STATE(1580), - [sym_block_comment] = STATE(1580), - [sym_reference_expression] = STATE(4316), - [sym_type_reference_expression] = STATE(2611), - [sym_plain_type] = STATE(2703), - [sym__plain_type_without_special] = STATE(2692), - [sym_anon_struct_type] = STATE(2693), - [sym_multi_return_type] = STATE(2692), - [sym_result_type] = STATE(2692), - [sym_option_type] = STATE(2692), - [sym_qualified_type] = STATE(2611), - [sym_fixed_array_type] = STATE(2693), - [sym_array_type] = STATE(2693), - [sym_pointer_type] = STATE(2693), - [sym_wrong_pointer_type] = STATE(2693), - [sym_map_type] = STATE(2693), - [sym_channel_type] = STATE(2693), - [sym_shared_type] = STATE(2693), - [sym_thread_type] = STATE(2693), - [sym_atomic_type] = STATE(2693), - [sym_generic_type] = STATE(2693), - [sym_function_type] = STATE(2693), - [sym_identifier] = ACTIONS(4533), + [1621] = { + [sym_line_comment] = STATE(1621), + [sym_block_comment] = STATE(1621), + [ts_builtin_sym_end] = ACTIONS(4587), + [sym_identifier] = ACTIONS(4589), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(601), - [anon_sym_as] = ACTIONS(601), - [anon_sym_LBRACE] = ACTIONS(599), - [anon_sym_COMMA] = ACTIONS(599), - [anon_sym_LPAREN] = ACTIONS(4535), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(4537), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(4539), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(599), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(599), - [anon_sym_BANG_EQ] = ACTIONS(599), - [anon_sym_LT_EQ] = ACTIONS(599), - [anon_sym_GT_EQ] = ACTIONS(599), - [anon_sym_DOT_DOT_DOT] = ACTIONS(599), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_struct] = ACTIONS(4541), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_QMARK] = ACTIONS(4543), - [anon_sym_BANG] = ACTIONS(4545), - [anon_sym_LBRACK2] = ACTIONS(4547), - [anon_sym_CARET] = ACTIONS(599), - [anon_sym_AMP] = ACTIONS(4549), - [anon_sym_LT_LT] = ACTIONS(599), - [anon_sym_GT_GT] = ACTIONS(601), - [anon_sym_GT_GT_GT] = ACTIONS(599), - [anon_sym_AMP_CARET] = ACTIONS(599), - [anon_sym_AMP_AMP] = ACTIONS(599), - [anon_sym_PIPE_PIPE] = ACTIONS(599), - [anon_sym_or] = ACTIONS(601), - [anon_sym_QMARK_DOT] = ACTIONS(599), - [anon_sym_POUND_LBRACK] = ACTIONS(599), - [anon_sym_is] = ACTIONS(601), - [anon_sym_BANGis] = ACTIONS(599), - [anon_sym_in] = ACTIONS(601), - [anon_sym_BANGin] = ACTIONS(599), - [anon_sym_shared] = ACTIONS(4551), - [anon_sym_map_LBRACK] = ACTIONS(4553), - [anon_sym_chan] = ACTIONS(4555), - [anon_sym_thread] = ACTIONS(4557), - [anon_sym_atomic] = ACTIONS(4559), - [anon_sym_DOT_DOT] = ACTIONS(601), - }, - [1581] = { - [sym_line_comment] = STATE(1581), - [sym_block_comment] = STATE(1581), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(605), + [anon_sym_import] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_LBRACE] = ACTIONS(4587), + [anon_sym_const] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4587), + [anon_sym___global] = ACTIONS(4589), + [anon_sym_type] = ACTIONS(4589), + [anon_sym_fn] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4587), + [anon_sym_DASH] = ACTIONS(4587), + [anon_sym_STAR] = ACTIONS(4587), + [anon_sym_struct] = ACTIONS(4589), + [anon_sym_union] = ACTIONS(4589), + [anon_sym_pub] = ACTIONS(4589), + [anon_sym_mut] = ACTIONS(4589), + [anon_sym_enum] = ACTIONS(4589), + [anon_sym_interface] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4587), + [anon_sym_BANG] = ACTIONS(4587), + [anon_sym_go] = ACTIONS(4589), + [anon_sym_spawn] = ACTIONS(4589), + [anon_sym_json_DOTdecode] = ACTIONS(4587), + [anon_sym_LBRACK2] = ACTIONS(4587), + [anon_sym_TILDE] = ACTIONS(4587), + [anon_sym_CARET] = ACTIONS(4587), + [anon_sym_AMP] = ACTIONS(4587), + [anon_sym_LT_DASH] = ACTIONS(4587), + [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(4587), + [sym_rune_literal] = ACTIONS(4587), + [anon_sym_SQUOTE] = ACTIONS(4587), + [anon_sym_DQUOTE] = ACTIONS(4587), + [anon_sym_c_SQUOTE] = ACTIONS(4587), + [anon_sym_c_DQUOTE] = ACTIONS(4587), + [anon_sym_r_SQUOTE] = ACTIONS(4587), + [anon_sym_r_DQUOTE] = ACTIONS(4587), + [sym_pseudo_compile_time_identifier] = ACTIONS(4589), + [anon_sym_shared] = ACTIONS(4589), + [anon_sym_map_LBRACK] = ACTIONS(4587), + [anon_sym_chan] = ACTIONS(4589), + [anon_sym_thread] = ACTIONS(4589), + [anon_sym_atomic] = ACTIONS(4589), + [anon_sym_assert] = ACTIONS(4589), + [anon_sym_defer] = ACTIONS(4589), + [anon_sym_goto] = ACTIONS(4589), + [anon_sym_break] = ACTIONS(4589), + [anon_sym_continue] = ACTIONS(4589), + [anon_sym_return] = ACTIONS(4589), + [anon_sym_DOLLARfor] = ACTIONS(4589), + [anon_sym_for] = ACTIONS(4589), + [anon_sym_POUND] = ACTIONS(4587), + [anon_sym_asm] = ACTIONS(4589), + [anon_sym_AT_LBRACK] = ACTIONS(4587), + }, + [1622] = { + [sym_line_comment] = STATE(1622), + [sym_block_comment] = STATE(1622), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2389), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(4591), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(603), - [anon_sym_as] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(603), - [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_DOT] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_fn] = ACTIONS(4591), + [anon_sym_PLUS] = ACTIONS(4593), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4593), + [anon_sym_struct] = ACTIONS(4591), + [anon_sym_mut] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4593), + [anon_sym_go] = ACTIONS(4591), + [anon_sym_spawn] = ACTIONS(4591), + [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(4591), + [sym_true] = ACTIONS(4591), + [sym_false] = ACTIONS(4591), + [sym_nil] = ACTIONS(4591), + [anon_sym_if] = ACTIONS(4591), + [anon_sym_DOLLARif] = ACTIONS(4591), + [anon_sym_match] = ACTIONS(4591), + [anon_sym_select] = ACTIONS(4591), + [anon_sym_lock] = ACTIONS(4591), + [anon_sym_rlock] = ACTIONS(4591), + [anon_sym_unsafe] = ACTIONS(4591), + [anon_sym_sql] = ACTIONS(4591), + [sym_int_literal] = ACTIONS(4591), + [sym_float_literal] = ACTIONS(4593), + [sym_rune_literal] = ACTIONS(4593), + [anon_sym_SQUOTE] = ACTIONS(4593), + [anon_sym_DQUOTE] = ACTIONS(4593), + [anon_sym_c_SQUOTE] = ACTIONS(4593), + [anon_sym_c_DQUOTE] = ACTIONS(4593), + [anon_sym_r_SQUOTE] = ACTIONS(4593), + [anon_sym_r_DQUOTE] = ACTIONS(4593), + [sym_pseudo_compile_time_identifier] = ACTIONS(4591), + [anon_sym_shared] = ACTIONS(4591), + [anon_sym_map_LBRACK] = ACTIONS(4593), + [anon_sym_chan] = ACTIONS(4591), + [anon_sym_thread] = ACTIONS(4591), + [anon_sym_atomic] = ACTIONS(4591), + }, + [1623] = { + [sym_line_comment] = STATE(1623), + [sym_block_comment] = STATE(1623), + [ts_builtin_sym_end] = ACTIONS(4595), + [sym_identifier] = ACTIONS(4597), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_import] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4595), + [anon_sym_const] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4595), + [anon_sym___global] = ACTIONS(4597), + [anon_sym_type] = ACTIONS(4597), + [anon_sym_fn] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4595), + [anon_sym_STAR] = ACTIONS(4595), + [anon_sym_struct] = ACTIONS(4597), + [anon_sym_union] = ACTIONS(4597), + [anon_sym_pub] = ACTIONS(4597), + [anon_sym_mut] = ACTIONS(4597), + [anon_sym_enum] = ACTIONS(4597), + [anon_sym_interface] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4595), + [anon_sym_BANG] = ACTIONS(4595), + [anon_sym_go] = ACTIONS(4597), + [anon_sym_spawn] = ACTIONS(4597), + [anon_sym_json_DOTdecode] = ACTIONS(4595), + [anon_sym_LBRACK2] = ACTIONS(4595), + [anon_sym_TILDE] = ACTIONS(4595), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_AMP] = ACTIONS(4595), + [anon_sym_LT_DASH] = ACTIONS(4595), + [sym_none] = ACTIONS(4597), + [sym_true] = ACTIONS(4597), + [sym_false] = ACTIONS(4597), + [sym_nil] = ACTIONS(4597), + [anon_sym_if] = ACTIONS(4597), + [anon_sym_DOLLARif] = ACTIONS(4597), + [anon_sym_match] = ACTIONS(4597), + [anon_sym_select] = ACTIONS(4597), + [anon_sym_lock] = ACTIONS(4597), + [anon_sym_rlock] = ACTIONS(4597), + [anon_sym_unsafe] = ACTIONS(4597), + [anon_sym_sql] = ACTIONS(4597), + [sym_int_literal] = ACTIONS(4597), + [sym_float_literal] = ACTIONS(4595), + [sym_rune_literal] = ACTIONS(4595), + [anon_sym_SQUOTE] = ACTIONS(4595), + [anon_sym_DQUOTE] = ACTIONS(4595), + [anon_sym_c_SQUOTE] = ACTIONS(4595), + [anon_sym_c_DQUOTE] = ACTIONS(4595), + [anon_sym_r_SQUOTE] = ACTIONS(4595), + [anon_sym_r_DQUOTE] = ACTIONS(4595), + [sym_pseudo_compile_time_identifier] = ACTIONS(4597), + [anon_sym_shared] = ACTIONS(4597), + [anon_sym_map_LBRACK] = ACTIONS(4595), + [anon_sym_chan] = ACTIONS(4597), + [anon_sym_thread] = ACTIONS(4597), + [anon_sym_atomic] = ACTIONS(4597), + [anon_sym_assert] = ACTIONS(4597), + [anon_sym_defer] = ACTIONS(4597), + [anon_sym_goto] = ACTIONS(4597), + [anon_sym_break] = ACTIONS(4597), + [anon_sym_continue] = ACTIONS(4597), + [anon_sym_return] = ACTIONS(4597), + [anon_sym_DOLLARfor] = ACTIONS(4597), + [anon_sym_for] = ACTIONS(4597), + [anon_sym_POUND] = ACTIONS(4595), + [anon_sym_asm] = ACTIONS(4597), + [anon_sym_AT_LBRACK] = ACTIONS(4595), + }, + [1624] = { + [sym_line_comment] = STATE(1624), + [sym_block_comment] = STATE(1624), + [ts_builtin_sym_end] = ACTIONS(4599), + [sym_identifier] = ACTIONS(4601), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_import] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_LBRACE] = ACTIONS(4599), + [anon_sym_const] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4599), + [anon_sym___global] = ACTIONS(4601), + [anon_sym_type] = ACTIONS(4601), + [anon_sym_fn] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4599), + [anon_sym_STAR] = ACTIONS(4599), + [anon_sym_struct] = ACTIONS(4601), + [anon_sym_union] = ACTIONS(4601), + [anon_sym_pub] = ACTIONS(4601), + [anon_sym_mut] = ACTIONS(4601), + [anon_sym_enum] = ACTIONS(4601), + [anon_sym_interface] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4599), + [anon_sym_BANG] = ACTIONS(4599), + [anon_sym_go] = ACTIONS(4601), + [anon_sym_spawn] = ACTIONS(4601), + [anon_sym_json_DOTdecode] = ACTIONS(4599), + [anon_sym_LBRACK2] = ACTIONS(4599), + [anon_sym_TILDE] = ACTIONS(4599), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_AMP] = ACTIONS(4599), + [anon_sym_LT_DASH] = ACTIONS(4599), + [sym_none] = ACTIONS(4601), + [sym_true] = ACTIONS(4601), + [sym_false] = ACTIONS(4601), + [sym_nil] = ACTIONS(4601), + [anon_sym_if] = ACTIONS(4601), + [anon_sym_DOLLARif] = ACTIONS(4601), + [anon_sym_match] = ACTIONS(4601), + [anon_sym_select] = ACTIONS(4601), + [anon_sym_lock] = ACTIONS(4601), + [anon_sym_rlock] = ACTIONS(4601), + [anon_sym_unsafe] = ACTIONS(4601), + [anon_sym_sql] = ACTIONS(4601), + [sym_int_literal] = ACTIONS(4601), + [sym_float_literal] = ACTIONS(4599), + [sym_rune_literal] = ACTIONS(4599), + [anon_sym_SQUOTE] = ACTIONS(4599), + [anon_sym_DQUOTE] = ACTIONS(4599), + [anon_sym_c_SQUOTE] = ACTIONS(4599), + [anon_sym_c_DQUOTE] = ACTIONS(4599), + [anon_sym_r_SQUOTE] = ACTIONS(4599), + [anon_sym_r_DQUOTE] = ACTIONS(4599), + [sym_pseudo_compile_time_identifier] = ACTIONS(4601), + [anon_sym_shared] = ACTIONS(4601), + [anon_sym_map_LBRACK] = ACTIONS(4599), + [anon_sym_chan] = ACTIONS(4601), + [anon_sym_thread] = ACTIONS(4601), + [anon_sym_atomic] = ACTIONS(4601), + [anon_sym_assert] = ACTIONS(4601), + [anon_sym_defer] = ACTIONS(4601), + [anon_sym_goto] = ACTIONS(4601), + [anon_sym_break] = ACTIONS(4601), + [anon_sym_continue] = ACTIONS(4601), + [anon_sym_return] = ACTIONS(4601), + [anon_sym_DOLLARfor] = ACTIONS(4601), + [anon_sym_for] = ACTIONS(4601), + [anon_sym_POUND] = ACTIONS(4599), + [anon_sym_asm] = ACTIONS(4601), + [anon_sym_AT_LBRACK] = ACTIONS(4599), + }, + [1625] = { + [sym_line_comment] = STATE(1625), + [sym_block_comment] = STATE(1625), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2421), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(609), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(607), + [anon_sym_as] = ACTIONS(611), + [anon_sym_COMMA] = ACTIONS(607), [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_LT_EQ] = ACTIONS(603), - [anon_sym_GT_EQ] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_LT_EQ] = ACTIONS(607), + [anon_sym_GT_EQ] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(607), [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(4531), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(603), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(603), - [anon_sym_GT_GT] = ACTIONS(607), - [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(607), - [anon_sym_QMARK_DOT] = ACTIONS(603), - [anon_sym_POUND_LBRACK] = ACTIONS(603), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(603), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(603), - [anon_sym_COLON_EQ] = ACTIONS(603), - [anon_sym_shared] = ACTIONS(623), + [anon_sym_BANG] = ACTIONS(4603), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(607), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(607), + [anon_sym_AMP_CARET] = ACTIONS(607), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [anon_sym_or] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(607), + [anon_sym_POUND_LBRACK] = ACTIONS(607), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(607), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(607), + [anon_sym_COLON_EQ] = ACTIONS(607), + [anon_sym_shared] = ACTIONS(627), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [1582] = { - [sym_line_comment] = STATE(1582), - [sym_block_comment] = STATE(1582), - [ts_builtin_sym_end] = ACTIONS(4561), - [sym_identifier] = ACTIONS(4563), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_import] = ACTIONS(4563), - [anon_sym_DOT] = ACTIONS(4563), - [anon_sym_LBRACE] = ACTIONS(4561), - [anon_sym_const] = ACTIONS(4563), - [anon_sym_LPAREN] = ACTIONS(4561), - [anon_sym___global] = ACTIONS(4563), - [anon_sym_type] = ACTIONS(4563), - [anon_sym_fn] = ACTIONS(4563), - [anon_sym_PLUS] = ACTIONS(4561), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_STAR] = ACTIONS(4561), - [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(4561), - [anon_sym_BANG] = ACTIONS(4561), - [anon_sym_go] = ACTIONS(4563), - [anon_sym_spawn] = ACTIONS(4563), - [anon_sym_json_DOTdecode] = ACTIONS(4561), - [anon_sym_LBRACK2] = ACTIONS(4561), - [anon_sym_TILDE] = ACTIONS(4561), - [anon_sym_CARET] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(4561), - [anon_sym_LT_DASH] = ACTIONS(4561), - [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(4561), - [sym_rune_literal] = ACTIONS(4561), - [anon_sym_SQUOTE] = ACTIONS(4561), - [anon_sym_DQUOTE] = ACTIONS(4561), - [anon_sym_c_SQUOTE] = ACTIONS(4561), - [anon_sym_c_DQUOTE] = ACTIONS(4561), - [anon_sym_r_SQUOTE] = ACTIONS(4561), - [anon_sym_r_DQUOTE] = ACTIONS(4561), - [sym_pseudo_compile_time_identifier] = ACTIONS(4563), - [anon_sym_shared] = ACTIONS(4563), - [anon_sym_map_LBRACK] = ACTIONS(4561), - [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(4561), - [anon_sym_asm] = ACTIONS(4563), - [anon_sym_AT_LBRACK] = ACTIONS(4561), - }, - [1583] = { - [sym_line_comment] = STATE(1583), - [sym_block_comment] = STATE(1583), - [ts_builtin_sym_end] = ACTIONS(4565), - [sym_identifier] = ACTIONS(4567), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_import] = ACTIONS(4567), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_LBRACE] = ACTIONS(4565), - [anon_sym_const] = ACTIONS(4567), - [anon_sym_LPAREN] = ACTIONS(4565), - [anon_sym___global] = ACTIONS(4567), - [anon_sym_type] = ACTIONS(4567), - [anon_sym_fn] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4565), - [anon_sym_DASH] = ACTIONS(4565), - [anon_sym_STAR] = ACTIONS(4565), - [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(4565), - [anon_sym_BANG] = ACTIONS(4565), - [anon_sym_go] = ACTIONS(4567), - [anon_sym_spawn] = ACTIONS(4567), - [anon_sym_json_DOTdecode] = ACTIONS(4565), - [anon_sym_LBRACK2] = ACTIONS(4565), - [anon_sym_TILDE] = ACTIONS(4565), - [anon_sym_CARET] = ACTIONS(4565), - [anon_sym_AMP] = ACTIONS(4565), - [anon_sym_LT_DASH] = ACTIONS(4565), - [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(4565), - [sym_rune_literal] = ACTIONS(4565), - [anon_sym_SQUOTE] = ACTIONS(4565), - [anon_sym_DQUOTE] = ACTIONS(4565), - [anon_sym_c_SQUOTE] = ACTIONS(4565), - [anon_sym_c_DQUOTE] = ACTIONS(4565), - [anon_sym_r_SQUOTE] = ACTIONS(4565), - [anon_sym_r_DQUOTE] = ACTIONS(4565), - [sym_pseudo_compile_time_identifier] = ACTIONS(4567), - [anon_sym_shared] = ACTIONS(4567), - [anon_sym_map_LBRACK] = ACTIONS(4565), - [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(4565), - [anon_sym_asm] = ACTIONS(4567), - [anon_sym_AT_LBRACK] = ACTIONS(4565), - }, - [1584] = { - [sym_line_comment] = STATE(1584), - [sym_block_comment] = STATE(1584), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2386), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(605), + [1626] = { + [sym_line_comment] = STATE(1626), + [sym_block_comment] = STATE(1626), + [sym_reference_expression] = STATE(4596), + [sym_type_reference_expression] = STATE(3593), + [sym_plain_type] = STATE(2421), + [sym__plain_type_without_special] = STATE(2348), + [sym_anon_struct_type] = STATE(2350), + [sym_multi_return_type] = STATE(2348), + [sym_result_type] = STATE(2348), + [sym_option_type] = STATE(2348), + [sym_qualified_type] = STATE(3593), + [sym_fixed_array_type] = STATE(2350), + [sym_array_type] = STATE(2350), + [sym_pointer_type] = STATE(2350), + [sym_wrong_pointer_type] = STATE(2350), + [sym_map_type] = STATE(2350), + [sym_channel_type] = STATE(2350), + [sym_shared_type] = STATE(2350), + [sym_thread_type] = STATE(2350), + [sym_atomic_type] = STATE(2350), + [sym_generic_type] = STATE(2350), + [sym_function_type] = STATE(2350), + [sym_identifier] = ACTIONS(609), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(603), - [anon_sym_DOT] = ACTIONS(603), - [anon_sym_as] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_DOT] = ACTIONS(607), + [anon_sym_as] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(607), [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_LT_EQ] = ACTIONS(603), - [anon_sym_GT_EQ] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_LT_EQ] = ACTIONS(607), + [anon_sym_GT_EQ] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(607), [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(4569), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(603), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(603), - [anon_sym_GT_GT] = ACTIONS(607), - [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(607), - [anon_sym_QMARK_DOT] = ACTIONS(603), - [anon_sym_POUND_LBRACK] = ACTIONS(603), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(603), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(603), - [anon_sym_COLON_EQ] = ACTIONS(603), - [anon_sym_shared] = ACTIONS(623), + [anon_sym_BANG] = ACTIONS(4585), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(607), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(607), + [anon_sym_AMP_CARET] = ACTIONS(607), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [anon_sym_or] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(607), + [anon_sym_POUND_LBRACK] = ACTIONS(607), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(607), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(607), + [anon_sym_COLON_EQ] = ACTIONS(607), + [anon_sym_shared] = ACTIONS(627), [anon_sym_map_LBRACK] = ACTIONS(97), [anon_sym_chan] = ACTIONS(99), [anon_sym_thread] = ACTIONS(101), [anon_sym_atomic] = ACTIONS(103), }, - [1585] = { - [sym_line_comment] = STATE(1585), - [sym_block_comment] = STATE(1585), - [ts_builtin_sym_end] = ACTIONS(4571), - [sym_identifier] = ACTIONS(4573), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_import] = ACTIONS(4573), - [anon_sym_DOT] = ACTIONS(4573), - [anon_sym_LBRACE] = ACTIONS(4571), - [anon_sym_const] = ACTIONS(4573), - [anon_sym_LPAREN] = ACTIONS(4571), - [anon_sym___global] = ACTIONS(4573), - [anon_sym_type] = ACTIONS(4573), - [anon_sym_fn] = ACTIONS(4573), - [anon_sym_PLUS] = ACTIONS(4571), - [anon_sym_DASH] = ACTIONS(4571), - [anon_sym_STAR] = ACTIONS(4571), - [anon_sym_struct] = ACTIONS(4573), - [anon_sym_union] = ACTIONS(4573), - [anon_sym_pub] = ACTIONS(4573), - [anon_sym_mut] = ACTIONS(4573), - [anon_sym_enum] = ACTIONS(4573), - [anon_sym_interface] = ACTIONS(4573), - [anon_sym_QMARK] = ACTIONS(4571), - [anon_sym_BANG] = ACTIONS(4571), - [anon_sym_go] = ACTIONS(4573), - [anon_sym_spawn] = ACTIONS(4573), - [anon_sym_json_DOTdecode] = ACTIONS(4571), - [anon_sym_LBRACK2] = ACTIONS(4571), - [anon_sym_TILDE] = ACTIONS(4571), - [anon_sym_CARET] = ACTIONS(4571), - [anon_sym_AMP] = ACTIONS(4571), - [anon_sym_LT_DASH] = ACTIONS(4571), - [sym_none] = ACTIONS(4573), - [sym_true] = ACTIONS(4573), - [sym_false] = ACTIONS(4573), - [sym_nil] = ACTIONS(4573), - [anon_sym_if] = ACTIONS(4573), - [anon_sym_DOLLARif] = ACTIONS(4573), - [anon_sym_match] = ACTIONS(4573), - [anon_sym_select] = ACTIONS(4573), - [anon_sym_lock] = ACTIONS(4573), - [anon_sym_rlock] = ACTIONS(4573), - [anon_sym_unsafe] = ACTIONS(4573), - [anon_sym_sql] = ACTIONS(4573), - [sym_int_literal] = ACTIONS(4573), - [sym_float_literal] = ACTIONS(4571), - [sym_rune_literal] = ACTIONS(4571), - [anon_sym_SQUOTE] = ACTIONS(4571), - [anon_sym_DQUOTE] = ACTIONS(4571), - [anon_sym_c_SQUOTE] = ACTIONS(4571), - [anon_sym_c_DQUOTE] = ACTIONS(4571), - [anon_sym_r_SQUOTE] = ACTIONS(4571), - [anon_sym_r_DQUOTE] = ACTIONS(4571), - [sym_pseudo_compile_time_identifier] = ACTIONS(4573), - [anon_sym_shared] = ACTIONS(4573), - [anon_sym_map_LBRACK] = ACTIONS(4571), - [anon_sym_chan] = ACTIONS(4573), - [anon_sym_thread] = ACTIONS(4573), - [anon_sym_atomic] = ACTIONS(4573), - [anon_sym_assert] = ACTIONS(4573), - [anon_sym_defer] = ACTIONS(4573), - [anon_sym_goto] = ACTIONS(4573), - [anon_sym_break] = ACTIONS(4573), - [anon_sym_continue] = ACTIONS(4573), - [anon_sym_return] = ACTIONS(4573), - [anon_sym_DOLLARfor] = ACTIONS(4573), - [anon_sym_for] = ACTIONS(4573), - [anon_sym_POUND] = ACTIONS(4571), - [anon_sym_asm] = ACTIONS(4573), - [anon_sym_AT_LBRACK] = ACTIONS(4571), - }, - [1586] = { - [sym_line_comment] = STATE(1586), - [sym_block_comment] = STATE(1586), - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2307), - [sym__plain_type_without_special] = STATE(2290), - [sym_anon_struct_type] = STATE(2292), - [sym_multi_return_type] = STATE(2290), - [sym_result_type] = STATE(2290), - [sym_option_type] = STATE(2290), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2292), - [sym_array_type] = STATE(2292), - [sym_pointer_type] = STATE(2292), - [sym_wrong_pointer_type] = STATE(2292), - [sym_map_type] = STATE(2292), - [sym_channel_type] = STATE(2292), - [sym_shared_type] = STATE(2292), - [sym_thread_type] = STATE(2292), - [sym_atomic_type] = STATE(2292), - [sym_generic_type] = STATE(2292), - [sym_function_type] = STATE(2292), - [sym_identifier] = ACTIONS(4575), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_LBRACE] = ACTIONS(4577), - [anon_sym_LPAREN] = ACTIONS(4577), - [anon_sym_fn] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_STAR] = ACTIONS(4577), - [anon_sym_struct] = ACTIONS(4575), - [anon_sym_mut] = ACTIONS(4575), - [anon_sym_QMARK] = ACTIONS(4577), - [anon_sym_BANG] = ACTIONS(4577), - [anon_sym_go] = ACTIONS(4575), - [anon_sym_spawn] = ACTIONS(4575), - [anon_sym_json_DOTdecode] = ACTIONS(4577), - [anon_sym_LBRACK2] = ACTIONS(4577), - [anon_sym_TILDE] = ACTIONS(4577), - [anon_sym_CARET] = ACTIONS(4577), - [anon_sym_AMP] = ACTIONS(4577), - [anon_sym_LT_DASH] = ACTIONS(4577), - [sym_none] = ACTIONS(4575), - [sym_true] = ACTIONS(4575), - [sym_false] = ACTIONS(4575), - [sym_nil] = ACTIONS(4575), - [anon_sym_if] = ACTIONS(4575), - [anon_sym_DOLLARif] = ACTIONS(4575), - [anon_sym_match] = ACTIONS(4575), - [anon_sym_select] = ACTIONS(4575), - [anon_sym_lock] = ACTIONS(4575), - [anon_sym_rlock] = ACTIONS(4575), - [anon_sym_unsafe] = ACTIONS(4575), - [anon_sym_sql] = ACTIONS(4575), - [sym_int_literal] = ACTIONS(4575), - [sym_float_literal] = ACTIONS(4577), - [sym_rune_literal] = ACTIONS(4577), - [anon_sym_SQUOTE] = ACTIONS(4577), - [anon_sym_DQUOTE] = ACTIONS(4577), - [anon_sym_c_SQUOTE] = ACTIONS(4577), - [anon_sym_c_DQUOTE] = ACTIONS(4577), - [anon_sym_r_SQUOTE] = ACTIONS(4577), - [anon_sym_r_DQUOTE] = ACTIONS(4577), - [sym_pseudo_compile_time_identifier] = ACTIONS(4575), - [anon_sym_shared] = ACTIONS(4575), - [anon_sym_map_LBRACK] = ACTIONS(4577), - [anon_sym_chan] = ACTIONS(4575), - [anon_sym_thread] = ACTIONS(4575), - [anon_sym_atomic] = ACTIONS(4575), - }, - [1587] = { - [sym_line_comment] = STATE(1587), - [sym_block_comment] = STATE(1587), - [ts_builtin_sym_end] = ACTIONS(4579), - [sym_identifier] = ACTIONS(4581), + [1627] = { + [sym_line_comment] = STATE(1627), + [sym_block_comment] = STATE(1627), + [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(4581), - [anon_sym_DOT] = ACTIONS(4581), - [anon_sym_LBRACE] = ACTIONS(4579), - [anon_sym_const] = ACTIONS(4581), - [anon_sym_LPAREN] = ACTIONS(4579), - [anon_sym___global] = ACTIONS(4581), - [anon_sym_type] = ACTIONS(4581), - [anon_sym_fn] = ACTIONS(4581), - [anon_sym_PLUS] = ACTIONS(4579), - [anon_sym_DASH] = ACTIONS(4579), - [anon_sym_STAR] = ACTIONS(4579), - [anon_sym_struct] = ACTIONS(4581), - [anon_sym_union] = ACTIONS(4581), - [anon_sym_pub] = ACTIONS(4581), - [anon_sym_mut] = ACTIONS(4581), - [anon_sym_enum] = ACTIONS(4581), - [anon_sym_interface] = ACTIONS(4581), - [anon_sym_QMARK] = ACTIONS(4579), - [anon_sym_BANG] = ACTIONS(4579), - [anon_sym_go] = ACTIONS(4581), - [anon_sym_spawn] = ACTIONS(4581), - [anon_sym_json_DOTdecode] = ACTIONS(4579), - [anon_sym_LBRACK2] = ACTIONS(4579), - [anon_sym_TILDE] = ACTIONS(4579), - [anon_sym_CARET] = ACTIONS(4579), - [anon_sym_AMP] = ACTIONS(4579), - [anon_sym_LT_DASH] = ACTIONS(4579), - [sym_none] = ACTIONS(4581), - [sym_true] = ACTIONS(4581), - [sym_false] = ACTIONS(4581), - [sym_nil] = ACTIONS(4581), - [anon_sym_if] = ACTIONS(4581), - [anon_sym_DOLLARif] = ACTIONS(4581), - [anon_sym_match] = ACTIONS(4581), - [anon_sym_select] = ACTIONS(4581), - [anon_sym_lock] = ACTIONS(4581), - [anon_sym_rlock] = ACTIONS(4581), - [anon_sym_unsafe] = ACTIONS(4581), - [anon_sym_sql] = ACTIONS(4581), - [sym_int_literal] = ACTIONS(4581), - [sym_float_literal] = ACTIONS(4579), - [sym_rune_literal] = ACTIONS(4579), - [anon_sym_SQUOTE] = ACTIONS(4579), - [anon_sym_DQUOTE] = ACTIONS(4579), - [anon_sym_c_SQUOTE] = ACTIONS(4579), - [anon_sym_c_DQUOTE] = ACTIONS(4579), - [anon_sym_r_SQUOTE] = ACTIONS(4579), - [anon_sym_r_DQUOTE] = ACTIONS(4579), - [sym_pseudo_compile_time_identifier] = ACTIONS(4581), - [anon_sym_shared] = ACTIONS(4581), - [anon_sym_map_LBRACK] = ACTIONS(4579), - [anon_sym_chan] = ACTIONS(4581), - [anon_sym_thread] = ACTIONS(4581), - [anon_sym_atomic] = ACTIONS(4581), - [anon_sym_assert] = ACTIONS(4581), - [anon_sym_defer] = ACTIONS(4581), - [anon_sym_goto] = ACTIONS(4581), - [anon_sym_break] = ACTIONS(4581), - [anon_sym_continue] = ACTIONS(4581), - [anon_sym_return] = ACTIONS(4581), - [anon_sym_DOLLARfor] = ACTIONS(4581), - [anon_sym_for] = ACTIONS(4581), - [anon_sym_POUND] = ACTIONS(4579), - [anon_sym_asm] = ACTIONS(4581), - [anon_sym_AT_LBRACK] = ACTIONS(4579), - }, - [1588] = { - [sym_line_comment] = STATE(1588), - [sym_block_comment] = STATE(1588), - [ts_builtin_sym_end] = ACTIONS(135), - [sym_identifier] = ACTIONS(4583), + [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), + [anon_sym_SQUOTE] = ACTIONS(4605), + [anon_sym_DQUOTE] = ACTIONS(4605), + [anon_sym_c_SQUOTE] = ACTIONS(4605), + [anon_sym_c_DQUOTE] = ACTIONS(4605), + [anon_sym_r_SQUOTE] = ACTIONS(4605), + [anon_sym_r_DQUOTE] = 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), + }, + [1628] = { + [sym_line_comment] = STATE(1628), + [sym_block_comment] = STATE(1628), + [ts_builtin_sym_end] = ACTIONS(133), + [sym_identifier] = ACTIONS(4609), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(4583), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym___global] = ACTIONS(4583), - [anon_sym_type] = ACTIONS(4583), - [anon_sym_fn] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(135), - [anon_sym_struct] = ACTIONS(4583), - [anon_sym_union] = ACTIONS(4583), - [anon_sym_pub] = ACTIONS(4583), - [anon_sym_mut] = ACTIONS(4583), - [anon_sym_enum] = ACTIONS(4583), - [anon_sym_interface] = ACTIONS(4583), - [anon_sym_QMARK] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_go] = ACTIONS(4583), - [anon_sym_spawn] = ACTIONS(4583), - [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(4583), - [sym_true] = ACTIONS(4583), - [sym_false] = ACTIONS(4583), - [sym_nil] = ACTIONS(4583), - [anon_sym_if] = ACTIONS(4583), - [anon_sym_DOLLARif] = ACTIONS(4583), - [anon_sym_match] = ACTIONS(4583), - [anon_sym_select] = ACTIONS(4583), - [anon_sym_lock] = ACTIONS(4583), - [anon_sym_rlock] = ACTIONS(4583), - [anon_sym_unsafe] = ACTIONS(4583), - [anon_sym_sql] = ACTIONS(4583), - [sym_int_literal] = ACTIONS(4583), - [sym_float_literal] = ACTIONS(135), - [sym_rune_literal] = ACTIONS(135), - [anon_sym_SQUOTE] = ACTIONS(135), - [anon_sym_DQUOTE] = ACTIONS(135), - [anon_sym_c_SQUOTE] = ACTIONS(135), - [anon_sym_c_DQUOTE] = ACTIONS(135), - [anon_sym_r_SQUOTE] = ACTIONS(135), - [anon_sym_r_DQUOTE] = ACTIONS(135), - [sym_pseudo_compile_time_identifier] = ACTIONS(4583), - [anon_sym_shared] = ACTIONS(4583), - [anon_sym_map_LBRACK] = ACTIONS(135), - [anon_sym_chan] = ACTIONS(4583), - [anon_sym_thread] = ACTIONS(4583), - [anon_sym_atomic] = ACTIONS(4583), - [anon_sym_assert] = ACTIONS(4583), - [anon_sym_defer] = ACTIONS(4583), - [anon_sym_goto] = ACTIONS(4583), - [anon_sym_break] = ACTIONS(4583), - [anon_sym_continue] = ACTIONS(4583), - [anon_sym_return] = ACTIONS(4583), - [anon_sym_DOLLARfor] = ACTIONS(4583), - [anon_sym_for] = ACTIONS(4583), - [anon_sym_POUND] = ACTIONS(135), - [anon_sym_asm] = ACTIONS(4583), - [anon_sym_AT_LBRACK] = ACTIONS(135), - }, - [1589] = { - [sym_line_comment] = STATE(1589), - [sym_block_comment] = STATE(1589), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LF] = ACTIONS(2237), - [anon_sym_CR] = ACTIONS(2237), - [anon_sym_CR_LF] = ACTIONS(2237), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_LBRACE] = ACTIONS(133), + [anon_sym_const] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym___global] = ACTIONS(4609), + [anon_sym_type] = ACTIONS(4609), + [anon_sym_fn] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_struct] = ACTIONS(4609), + [anon_sym_union] = ACTIONS(4609), + [anon_sym_pub] = ACTIONS(4609), + [anon_sym_mut] = ACTIONS(4609), + [anon_sym_enum] = ACTIONS(4609), + [anon_sym_interface] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_go] = ACTIONS(4609), + [anon_sym_spawn] = ACTIONS(4609), + [anon_sym_json_DOTdecode] = ACTIONS(133), + [anon_sym_LBRACK2] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(133), + [anon_sym_LT_DASH] = ACTIONS(133), + [sym_none] = ACTIONS(4609), + [sym_true] = ACTIONS(4609), + [sym_false] = ACTIONS(4609), + [sym_nil] = ACTIONS(4609), + [anon_sym_if] = ACTIONS(4609), + [anon_sym_DOLLARif] = ACTIONS(4609), + [anon_sym_match] = ACTIONS(4609), + [anon_sym_select] = ACTIONS(4609), + [anon_sym_lock] = ACTIONS(4609), + [anon_sym_rlock] = ACTIONS(4609), + [anon_sym_unsafe] = ACTIONS(4609), + [anon_sym_sql] = ACTIONS(4609), + [sym_int_literal] = ACTIONS(4609), + [sym_float_literal] = ACTIONS(133), + [sym_rune_literal] = ACTIONS(133), + [anon_sym_SQUOTE] = ACTIONS(133), + [anon_sym_DQUOTE] = ACTIONS(133), + [anon_sym_c_SQUOTE] = ACTIONS(133), + [anon_sym_c_DQUOTE] = ACTIONS(133), + [anon_sym_r_SQUOTE] = ACTIONS(133), + [anon_sym_r_DQUOTE] = ACTIONS(133), + [sym_pseudo_compile_time_identifier] = ACTIONS(4609), + [anon_sym_shared] = ACTIONS(4609), + [anon_sym_map_LBRACK] = ACTIONS(133), + [anon_sym_chan] = ACTIONS(4609), + [anon_sym_thread] = ACTIONS(4609), + [anon_sym_atomic] = ACTIONS(4609), + [anon_sym_assert] = ACTIONS(4609), + [anon_sym_defer] = ACTIONS(4609), + [anon_sym_goto] = ACTIONS(4609), + [anon_sym_break] = ACTIONS(4609), + [anon_sym_continue] = ACTIONS(4609), + [anon_sym_return] = ACTIONS(4609), + [anon_sym_DOLLARfor] = ACTIONS(4609), + [anon_sym_for] = ACTIONS(4609), + [anon_sym_POUND] = ACTIONS(133), + [anon_sym_asm] = ACTIONS(4609), + [anon_sym_AT_LBRACK] = ACTIONS(133), + }, + [1629] = { + [sym_line_comment] = STATE(1629), + [sym_block_comment] = STATE(1629), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LF] = ACTIONS(2099), + [anon_sym_CR] = ACTIONS(2099), + [anon_sym_CR_LF] = ACTIONS(2099), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2237), - [anon_sym_as] = ACTIONS(2237), - [anon_sym_COMMA] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_EQ] = ACTIONS(2237), - [anon_sym_PIPE] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_PERCENT] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_GT] = ACTIONS(2237), - [anon_sym_EQ_EQ] = ACTIONS(2237), - [anon_sym_BANG_EQ] = ACTIONS(2237), - [anon_sym_LT_EQ] = ACTIONS(2237), - [anon_sym_GT_EQ] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2237), - [anon_sym_COLON] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [anon_sym_QMARK] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_LBRACK2] = ACTIONS(2237), - [anon_sym_CARET] = ACTIONS(2237), - [anon_sym_AMP] = ACTIONS(2237), - [anon_sym_LT_DASH] = ACTIONS(2237), - [anon_sym_LT_LT] = ACTIONS(2237), - [anon_sym_GT_GT] = ACTIONS(2237), - [anon_sym_GT_GT_GT] = ACTIONS(2237), - [anon_sym_AMP_CARET] = ACTIONS(2237), - [anon_sym_AMP_AMP] = ACTIONS(2237), - [anon_sym_PIPE_PIPE] = ACTIONS(2237), - [anon_sym_or] = ACTIONS(2237), - [anon_sym_QMARK_DOT] = ACTIONS(2237), - [anon_sym_POUND_LBRACK] = ACTIONS(2237), - [anon_sym_is] = ACTIONS(2237), - [anon_sym_BANGis] = ACTIONS(2237), - [anon_sym_in] = ACTIONS(2237), - [anon_sym_BANGin] = ACTIONS(2237), - [anon_sym_STAR_EQ] = ACTIONS(2237), - [anon_sym_SLASH_EQ] = ACTIONS(2237), - [anon_sym_PERCENT_EQ] = ACTIONS(2237), - [anon_sym_LT_LT_EQ] = ACTIONS(2237), - [anon_sym_GT_GT_EQ] = ACTIONS(2237), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2237), - [anon_sym_AMP_EQ] = ACTIONS(2237), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2237), - [anon_sym_PLUS_EQ] = ACTIONS(2237), - [anon_sym_DASH_EQ] = ACTIONS(2237), - [anon_sym_PIPE_EQ] = ACTIONS(2237), - [anon_sym_CARET_EQ] = ACTIONS(2237), - [anon_sym_COLON_EQ] = ACTIONS(2237), - [anon_sym_shared] = ACTIONS(2237), - [anon_sym_map_LBRACK] = ACTIONS(2237), - [anon_sym_chan] = ACTIONS(2237), - [anon_sym_thread] = ACTIONS(2237), - [anon_sym_atomic] = ACTIONS(2237), - }, - [1590] = { - [sym_line_comment] = STATE(1590), - [sym_block_comment] = STATE(1590), - [sym_identifier] = ACTIONS(2197), - [anon_sym_LF] = ACTIONS(2197), - [anon_sym_CR] = ACTIONS(2197), - [anon_sym_CR_LF] = ACTIONS(2197), + [anon_sym_DOT] = ACTIONS(2099), + [anon_sym_as] = ACTIONS(2099), + [anon_sym_COMMA] = ACTIONS(2099), + [anon_sym_RBRACE] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(2099), + [anon_sym_EQ] = ACTIONS(2099), + [anon_sym_fn] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(2099), + [anon_sym_DASH] = ACTIONS(2099), + [anon_sym_STAR] = ACTIONS(2099), + [anon_sym_SLASH] = ACTIONS(2099), + [anon_sym_PERCENT] = ACTIONS(2099), + [anon_sym_LT] = ACTIONS(2099), + [anon_sym_GT] = ACTIONS(2099), + [anon_sym_EQ_EQ] = ACTIONS(2099), + [anon_sym_BANG_EQ] = ACTIONS(2099), + [anon_sym_LT_EQ] = ACTIONS(2099), + [anon_sym_GT_EQ] = ACTIONS(2099), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_struct] = ACTIONS(2099), + [anon_sym_COLON] = ACTIONS(2099), + [anon_sym_PLUS_PLUS] = ACTIONS(2099), + [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_QMARK] = ACTIONS(2099), + [anon_sym_BANG] = ACTIONS(2099), + [anon_sym_PIPE] = ACTIONS(2099), + [anon_sym_LBRACK2] = ACTIONS(2099), + [anon_sym_CARET] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_LT_DASH] = ACTIONS(2099), + [anon_sym_LT_LT] = ACTIONS(2099), + [anon_sym_GT_GT] = ACTIONS(2099), + [anon_sym_GT_GT_GT] = ACTIONS(2099), + [anon_sym_AMP_CARET] = ACTIONS(2099), + [anon_sym_AMP_AMP] = ACTIONS(2099), + [anon_sym_PIPE_PIPE] = ACTIONS(2099), + [anon_sym_or] = ACTIONS(2099), + [anon_sym_QMARK_DOT] = ACTIONS(2099), + [anon_sym_POUND_LBRACK] = ACTIONS(2099), + [anon_sym_is] = ACTIONS(2099), + [anon_sym_BANGis] = ACTIONS(2099), + [anon_sym_in] = ACTIONS(2099), + [anon_sym_BANGin] = ACTIONS(2099), + [anon_sym_STAR_EQ] = ACTIONS(2099), + [anon_sym_SLASH_EQ] = ACTIONS(2099), + [anon_sym_PERCENT_EQ] = ACTIONS(2099), + [anon_sym_LT_LT_EQ] = ACTIONS(2099), + [anon_sym_GT_GT_EQ] = ACTIONS(2099), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2099), + [anon_sym_AMP_EQ] = ACTIONS(2099), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2099), + [anon_sym_PLUS_EQ] = ACTIONS(2099), + [anon_sym_DASH_EQ] = ACTIONS(2099), + [anon_sym_PIPE_EQ] = ACTIONS(2099), + [anon_sym_CARET_EQ] = ACTIONS(2099), + [anon_sym_COLON_EQ] = ACTIONS(2099), + [anon_sym_shared] = ACTIONS(2099), + [anon_sym_map_LBRACK] = ACTIONS(2099), + [anon_sym_chan] = ACTIONS(2099), + [anon_sym_thread] = ACTIONS(2099), + [anon_sym_atomic] = ACTIONS(2099), + }, + [1630] = { + [sym_line_comment] = STATE(1630), + [sym_block_comment] = STATE(1630), + [sym_identifier] = ACTIONS(2705), + [anon_sym_LF] = ACTIONS(2705), + [anon_sym_CR] = ACTIONS(2705), + [anon_sym_CR_LF] = ACTIONS(2705), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_COMMA] = ACTIONS(2197), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_EQ] = ACTIONS(2197), - [anon_sym_PIPE] = ACTIONS(2197), - [anon_sym_fn] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2197), - [anon_sym_SLASH] = ACTIONS(2197), - [anon_sym_PERCENT] = ACTIONS(2197), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_GT] = ACTIONS(2197), - [anon_sym_EQ_EQ] = ACTIONS(2197), - [anon_sym_BANG_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2197), - [anon_sym_COLON] = ACTIONS(2197), - [anon_sym_PLUS_PLUS] = ACTIONS(2197), - [anon_sym_DASH_DASH] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_LBRACK2] = ACTIONS(2197), - [anon_sym_CARET] = ACTIONS(2197), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_LT_DASH] = ACTIONS(2197), - [anon_sym_LT_LT] = ACTIONS(2197), - [anon_sym_GT_GT] = ACTIONS(2197), - [anon_sym_GT_GT_GT] = ACTIONS(2197), - [anon_sym_AMP_CARET] = ACTIONS(2197), - [anon_sym_AMP_AMP] = ACTIONS(2197), - [anon_sym_PIPE_PIPE] = ACTIONS(2197), - [anon_sym_or] = ACTIONS(2197), - [anon_sym_QMARK_DOT] = ACTIONS(2197), - [anon_sym_POUND_LBRACK] = ACTIONS(2197), - [anon_sym_is] = ACTIONS(2197), - [anon_sym_BANGis] = ACTIONS(2197), - [anon_sym_in] = ACTIONS(2197), - [anon_sym_BANGin] = ACTIONS(2197), - [anon_sym_STAR_EQ] = ACTIONS(2197), - [anon_sym_SLASH_EQ] = ACTIONS(2197), - [anon_sym_PERCENT_EQ] = ACTIONS(2197), - [anon_sym_LT_LT_EQ] = ACTIONS(2197), - [anon_sym_GT_GT_EQ] = ACTIONS(2197), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2197), - [anon_sym_AMP_EQ] = ACTIONS(2197), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2197), - [anon_sym_PLUS_EQ] = ACTIONS(2197), - [anon_sym_DASH_EQ] = ACTIONS(2197), - [anon_sym_PIPE_EQ] = ACTIONS(2197), - [anon_sym_CARET_EQ] = ACTIONS(2197), - [anon_sym_COLON_EQ] = ACTIONS(2197), - [anon_sym_shared] = ACTIONS(2197), - [anon_sym_map_LBRACK] = ACTIONS(2197), - [anon_sym_chan] = ACTIONS(2197), - [anon_sym_thread] = ACTIONS(2197), - [anon_sym_atomic] = ACTIONS(2197), - }, - [1591] = { - [sym_line_comment] = STATE(1591), - [sym_block_comment] = STATE(1591), - [sym_identifier] = ACTIONS(2171), - [anon_sym_LF] = ACTIONS(2171), - [anon_sym_CR] = ACTIONS(2171), - [anon_sym_CR_LF] = ACTIONS(2171), + [anon_sym_DOT] = ACTIONS(2705), + [anon_sym_as] = ACTIONS(2705), + [anon_sym_COMMA] = ACTIONS(2705), + [anon_sym_RBRACE] = ACTIONS(2705), + [anon_sym_LPAREN] = ACTIONS(2705), + [anon_sym_EQ] = ACTIONS(2705), + [anon_sym_fn] = ACTIONS(2705), + [anon_sym_PLUS] = ACTIONS(2705), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2705), + [anon_sym_SLASH] = ACTIONS(2705), + [anon_sym_PERCENT] = ACTIONS(2705), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_GT] = ACTIONS(2705), + [anon_sym_EQ_EQ] = ACTIONS(2705), + [anon_sym_BANG_EQ] = ACTIONS(2705), + [anon_sym_LT_EQ] = ACTIONS(2705), + [anon_sym_GT_EQ] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_struct] = ACTIONS(2705), + [anon_sym_COLON] = ACTIONS(2705), + [anon_sym_PLUS_PLUS] = ACTIONS(2705), + [anon_sym_DASH_DASH] = ACTIONS(2705), + [anon_sym_QMARK] = ACTIONS(2705), + [anon_sym_BANG] = ACTIONS(2705), + [anon_sym_PIPE] = ACTIONS(2705), + [anon_sym_LBRACK2] = ACTIONS(2705), + [anon_sym_CARET] = ACTIONS(2705), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_LT_DASH] = ACTIONS(2705), + [anon_sym_LT_LT] = ACTIONS(2705), + [anon_sym_GT_GT] = ACTIONS(2705), + [anon_sym_GT_GT_GT] = ACTIONS(2705), + [anon_sym_AMP_CARET] = ACTIONS(2705), + [anon_sym_AMP_AMP] = ACTIONS(2705), + [anon_sym_PIPE_PIPE] = ACTIONS(2705), + [anon_sym_or] = ACTIONS(2705), + [anon_sym_QMARK_DOT] = ACTIONS(2705), + [anon_sym_POUND_LBRACK] = ACTIONS(2705), + [anon_sym_is] = ACTIONS(2705), + [anon_sym_BANGis] = ACTIONS(2705), + [anon_sym_in] = ACTIONS(2705), + [anon_sym_BANGin] = ACTIONS(2705), + [anon_sym_STAR_EQ] = ACTIONS(2705), + [anon_sym_SLASH_EQ] = ACTIONS(2705), + [anon_sym_PERCENT_EQ] = ACTIONS(2705), + [anon_sym_LT_LT_EQ] = ACTIONS(2705), + [anon_sym_GT_GT_EQ] = ACTIONS(2705), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2705), + [anon_sym_AMP_EQ] = ACTIONS(2705), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2705), + [anon_sym_PLUS_EQ] = ACTIONS(2705), + [anon_sym_DASH_EQ] = ACTIONS(2705), + [anon_sym_PIPE_EQ] = ACTIONS(2705), + [anon_sym_CARET_EQ] = ACTIONS(2705), + [anon_sym_COLON_EQ] = ACTIONS(2705), + [anon_sym_shared] = ACTIONS(2705), + [anon_sym_map_LBRACK] = ACTIONS(2705), + [anon_sym_chan] = ACTIONS(2705), + [anon_sym_thread] = ACTIONS(2705), + [anon_sym_atomic] = ACTIONS(2705), + }, + [1631] = { + [sym_line_comment] = STATE(1631), + [sym_block_comment] = STATE(1631), + [sym_identifier] = ACTIONS(3022), + [anon_sym_LF] = ACTIONS(3022), + [anon_sym_CR] = ACTIONS(3022), + [anon_sym_CR_LF] = ACTIONS(3022), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_as] = ACTIONS(2171), - [anon_sym_COMMA] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2171), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_EQ] = ACTIONS(2171), - [anon_sym_PIPE] = ACTIONS(2171), - [anon_sym_fn] = ACTIONS(2171), - [anon_sym_PLUS] = ACTIONS(2171), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_STAR] = ACTIONS(2171), - [anon_sym_SLASH] = ACTIONS(2171), - [anon_sym_PERCENT] = ACTIONS(2171), - [anon_sym_LT] = ACTIONS(2171), - [anon_sym_GT] = ACTIONS(2171), - [anon_sym_EQ_EQ] = ACTIONS(2171), - [anon_sym_BANG_EQ] = ACTIONS(2171), - [anon_sym_LT_EQ] = ACTIONS(2171), - [anon_sym_GT_EQ] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_struct] = ACTIONS(2171), - [anon_sym_COLON] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_QMARK] = ACTIONS(2171), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_LBRACK2] = ACTIONS(2171), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_LT_DASH] = ACTIONS(2171), - [anon_sym_LT_LT] = ACTIONS(2171), - [anon_sym_GT_GT] = ACTIONS(2171), - [anon_sym_GT_GT_GT] = ACTIONS(2171), - [anon_sym_AMP_CARET] = ACTIONS(2171), - [anon_sym_AMP_AMP] = ACTIONS(2171), - [anon_sym_PIPE_PIPE] = ACTIONS(2171), - [anon_sym_or] = ACTIONS(2171), - [anon_sym_QMARK_DOT] = ACTIONS(2171), - [anon_sym_POUND_LBRACK] = ACTIONS(2171), - [anon_sym_is] = ACTIONS(2171), - [anon_sym_BANGis] = ACTIONS(2171), - [anon_sym_in] = ACTIONS(2171), - [anon_sym_BANGin] = ACTIONS(2171), - [anon_sym_STAR_EQ] = ACTIONS(2171), - [anon_sym_SLASH_EQ] = ACTIONS(2171), - [anon_sym_PERCENT_EQ] = ACTIONS(2171), - [anon_sym_LT_LT_EQ] = ACTIONS(2171), - [anon_sym_GT_GT_EQ] = ACTIONS(2171), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2171), - [anon_sym_AMP_EQ] = ACTIONS(2171), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2171), - [anon_sym_PLUS_EQ] = ACTIONS(2171), - [anon_sym_DASH_EQ] = ACTIONS(2171), - [anon_sym_PIPE_EQ] = ACTIONS(2171), - [anon_sym_CARET_EQ] = ACTIONS(2171), - [anon_sym_COLON_EQ] = ACTIONS(2171), - [anon_sym_shared] = ACTIONS(2171), - [anon_sym_map_LBRACK] = ACTIONS(2171), - [anon_sym_chan] = ACTIONS(2171), - [anon_sym_thread] = ACTIONS(2171), - [anon_sym_atomic] = ACTIONS(2171), - }, - [1592] = { - [sym_line_comment] = STATE(1592), - [sym_block_comment] = STATE(1592), - [sym_identifier] = ACTIONS(2167), - [anon_sym_LF] = ACTIONS(2167), - [anon_sym_CR] = ACTIONS(2167), - [anon_sym_CR_LF] = ACTIONS(2167), + [anon_sym_DOT] = ACTIONS(3022), + [anon_sym_as] = ACTIONS(3022), + [anon_sym_COMMA] = ACTIONS(3022), + [anon_sym_RBRACE] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_EQ] = ACTIONS(3022), + [anon_sym_fn] = ACTIONS(3022), + [anon_sym_PLUS] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(3022), + [anon_sym_SLASH] = ACTIONS(3022), + [anon_sym_PERCENT] = ACTIONS(3022), + [anon_sym_LT] = ACTIONS(3022), + [anon_sym_GT] = ACTIONS(3022), + [anon_sym_EQ_EQ] = ACTIONS(3022), + [anon_sym_BANG_EQ] = ACTIONS(3022), + [anon_sym_LT_EQ] = ACTIONS(3022), + [anon_sym_GT_EQ] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_struct] = ACTIONS(3022), + [anon_sym_COLON] = ACTIONS(3022), + [anon_sym_PLUS_PLUS] = ACTIONS(3022), + [anon_sym_DASH_DASH] = ACTIONS(3022), + [anon_sym_QMARK] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_PIPE] = ACTIONS(3022), + [anon_sym_LBRACK2] = ACTIONS(3022), + [anon_sym_CARET] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3022), + [anon_sym_LT_DASH] = ACTIONS(3022), + [anon_sym_LT_LT] = ACTIONS(3022), + [anon_sym_GT_GT] = ACTIONS(3022), + [anon_sym_GT_GT_GT] = ACTIONS(3022), + [anon_sym_AMP_CARET] = ACTIONS(3022), + [anon_sym_AMP_AMP] = ACTIONS(3022), + [anon_sym_PIPE_PIPE] = ACTIONS(3022), + [anon_sym_or] = ACTIONS(3022), + [anon_sym_QMARK_DOT] = ACTIONS(3022), + [anon_sym_POUND_LBRACK] = ACTIONS(3022), + [anon_sym_is] = ACTIONS(3022), + [anon_sym_BANGis] = ACTIONS(3022), + [anon_sym_in] = ACTIONS(3022), + [anon_sym_BANGin] = ACTIONS(3022), + [anon_sym_STAR_EQ] = ACTIONS(3022), + [anon_sym_SLASH_EQ] = ACTIONS(3022), + [anon_sym_PERCENT_EQ] = ACTIONS(3022), + [anon_sym_LT_LT_EQ] = ACTIONS(3022), + [anon_sym_GT_GT_EQ] = ACTIONS(3022), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3022), + [anon_sym_AMP_EQ] = ACTIONS(3022), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3022), + [anon_sym_PLUS_EQ] = ACTIONS(3022), + [anon_sym_DASH_EQ] = ACTIONS(3022), + [anon_sym_PIPE_EQ] = ACTIONS(3022), + [anon_sym_CARET_EQ] = ACTIONS(3022), + [anon_sym_COLON_EQ] = ACTIONS(3022), + [anon_sym_shared] = ACTIONS(3022), + [anon_sym_map_LBRACK] = ACTIONS(3022), + [anon_sym_chan] = ACTIONS(3022), + [anon_sym_thread] = ACTIONS(3022), + [anon_sym_atomic] = ACTIONS(3022), + }, + [1632] = { + [sym_line_comment] = STATE(1632), + [sym_block_comment] = STATE(1632), + [sym_identifier] = ACTIONS(2689), + [anon_sym_LF] = ACTIONS(2689), + [anon_sym_CR] = ACTIONS(2689), + [anon_sym_CR_LF] = ACTIONS(2689), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2167), - [anon_sym_as] = ACTIONS(2167), - [anon_sym_COMMA] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_EQ] = ACTIONS(2167), - [anon_sym_PIPE] = ACTIONS(2167), - [anon_sym_fn] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_STAR] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_PERCENT] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_GT] = ACTIONS(2167), - [anon_sym_EQ_EQ] = ACTIONS(2167), - [anon_sym_BANG_EQ] = ACTIONS(2167), - [anon_sym_LT_EQ] = ACTIONS(2167), - [anon_sym_GT_EQ] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_struct] = ACTIONS(2167), - [anon_sym_COLON] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [anon_sym_QMARK] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_LBRACK2] = ACTIONS(2167), - [anon_sym_CARET] = ACTIONS(2167), - [anon_sym_AMP] = ACTIONS(2167), - [anon_sym_LT_DASH] = ACTIONS(2167), - [anon_sym_LT_LT] = ACTIONS(2167), - [anon_sym_GT_GT] = ACTIONS(2167), - [anon_sym_GT_GT_GT] = ACTIONS(2167), - [anon_sym_AMP_CARET] = ACTIONS(2167), - [anon_sym_AMP_AMP] = ACTIONS(2167), - [anon_sym_PIPE_PIPE] = ACTIONS(2167), - [anon_sym_or] = ACTIONS(2167), - [anon_sym_QMARK_DOT] = ACTIONS(2167), - [anon_sym_POUND_LBRACK] = ACTIONS(2167), - [anon_sym_is] = ACTIONS(2167), - [anon_sym_BANGis] = ACTIONS(2167), - [anon_sym_in] = ACTIONS(2167), - [anon_sym_BANGin] = ACTIONS(2167), - [anon_sym_STAR_EQ] = ACTIONS(2167), - [anon_sym_SLASH_EQ] = ACTIONS(2167), - [anon_sym_PERCENT_EQ] = ACTIONS(2167), - [anon_sym_LT_LT_EQ] = ACTIONS(2167), - [anon_sym_GT_GT_EQ] = ACTIONS(2167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2167), - [anon_sym_AMP_EQ] = ACTIONS(2167), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2167), - [anon_sym_PLUS_EQ] = ACTIONS(2167), - [anon_sym_DASH_EQ] = ACTIONS(2167), - [anon_sym_PIPE_EQ] = ACTIONS(2167), - [anon_sym_CARET_EQ] = ACTIONS(2167), - [anon_sym_COLON_EQ] = ACTIONS(2167), - [anon_sym_shared] = ACTIONS(2167), - [anon_sym_map_LBRACK] = ACTIONS(2167), - [anon_sym_chan] = ACTIONS(2167), - [anon_sym_thread] = ACTIONS(2167), - [anon_sym_atomic] = ACTIONS(2167), - }, - [1593] = { - [sym_line_comment] = STATE(1593), - [sym_block_comment] = STATE(1593), - [sym_identifier] = ACTIONS(2193), - [anon_sym_LF] = ACTIONS(2193), - [anon_sym_CR] = ACTIONS(2193), - [anon_sym_CR_LF] = ACTIONS(2193), + [anon_sym_DOT] = ACTIONS(2689), + [anon_sym_as] = ACTIONS(2689), + [anon_sym_COMMA] = ACTIONS(2689), + [anon_sym_RBRACE] = ACTIONS(2689), + [anon_sym_LPAREN] = ACTIONS(2689), + [anon_sym_EQ] = ACTIONS(2689), + [anon_sym_fn] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_SLASH] = ACTIONS(2689), + [anon_sym_PERCENT] = ACTIONS(2689), + [anon_sym_LT] = ACTIONS(2689), + [anon_sym_GT] = ACTIONS(2689), + [anon_sym_EQ_EQ] = ACTIONS(2689), + [anon_sym_BANG_EQ] = ACTIONS(2689), + [anon_sym_LT_EQ] = ACTIONS(2689), + [anon_sym_GT_EQ] = ACTIONS(2689), + [anon_sym_LBRACK] = ACTIONS(2687), + [anon_sym_struct] = ACTIONS(2689), + [anon_sym_COLON] = ACTIONS(2689), + [anon_sym_PLUS_PLUS] = ACTIONS(2689), + [anon_sym_DASH_DASH] = ACTIONS(2689), + [anon_sym_QMARK] = ACTIONS(2689), + [anon_sym_BANG] = ACTIONS(2689), + [anon_sym_PIPE] = ACTIONS(2689), + [anon_sym_LBRACK2] = ACTIONS(2689), + [anon_sym_CARET] = ACTIONS(2689), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_LT_DASH] = ACTIONS(2689), + [anon_sym_LT_LT] = ACTIONS(2689), + [anon_sym_GT_GT] = ACTIONS(2689), + [anon_sym_GT_GT_GT] = ACTIONS(2689), + [anon_sym_AMP_CARET] = ACTIONS(2689), + [anon_sym_AMP_AMP] = ACTIONS(2689), + [anon_sym_PIPE_PIPE] = ACTIONS(2689), + [anon_sym_or] = ACTIONS(2689), + [anon_sym_QMARK_DOT] = ACTIONS(2689), + [anon_sym_POUND_LBRACK] = ACTIONS(2689), + [anon_sym_is] = ACTIONS(2689), + [anon_sym_BANGis] = ACTIONS(2689), + [anon_sym_in] = ACTIONS(2689), + [anon_sym_BANGin] = ACTIONS(2689), + [anon_sym_STAR_EQ] = ACTIONS(2689), + [anon_sym_SLASH_EQ] = ACTIONS(2689), + [anon_sym_PERCENT_EQ] = ACTIONS(2689), + [anon_sym_LT_LT_EQ] = ACTIONS(2689), + [anon_sym_GT_GT_EQ] = ACTIONS(2689), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2689), + [anon_sym_AMP_EQ] = ACTIONS(2689), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2689), + [anon_sym_PLUS_EQ] = ACTIONS(2689), + [anon_sym_DASH_EQ] = ACTIONS(2689), + [anon_sym_PIPE_EQ] = ACTIONS(2689), + [anon_sym_CARET_EQ] = ACTIONS(2689), + [anon_sym_COLON_EQ] = ACTIONS(2689), + [anon_sym_shared] = ACTIONS(2689), + [anon_sym_map_LBRACK] = ACTIONS(2689), + [anon_sym_chan] = ACTIONS(2689), + [anon_sym_thread] = ACTIONS(2689), + [anon_sym_atomic] = ACTIONS(2689), + }, + [1633] = { + [sym_line_comment] = STATE(1633), + [sym_block_comment] = STATE(1633), + [sym_identifier] = ACTIONS(2741), + [anon_sym_LF] = ACTIONS(2741), + [anon_sym_CR] = ACTIONS(2741), + [anon_sym_CR_LF] = ACTIONS(2741), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2193), - [anon_sym_as] = ACTIONS(2193), - [anon_sym_COMMA] = ACTIONS(2193), - [anon_sym_RBRACE] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2193), - [anon_sym_EQ] = ACTIONS(2193), - [anon_sym_PIPE] = ACTIONS(2193), - [anon_sym_fn] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_PERCENT] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_GT] = ACTIONS(2193), - [anon_sym_EQ_EQ] = ACTIONS(2193), - [anon_sym_BANG_EQ] = ACTIONS(2193), - [anon_sym_LT_EQ] = ACTIONS(2193), - [anon_sym_GT_EQ] = ACTIONS(2193), - [anon_sym_LBRACK] = ACTIONS(2191), - [anon_sym_struct] = ACTIONS(2193), - [anon_sym_COLON] = ACTIONS(2193), - [anon_sym_PLUS_PLUS] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2193), - [anon_sym_QMARK] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2193), - [anon_sym_LBRACK2] = ACTIONS(2193), - [anon_sym_CARET] = ACTIONS(2193), - [anon_sym_AMP] = ACTIONS(2193), - [anon_sym_LT_DASH] = ACTIONS(2193), - [anon_sym_LT_LT] = ACTIONS(2193), - [anon_sym_GT_GT] = ACTIONS(2193), - [anon_sym_GT_GT_GT] = ACTIONS(2193), - [anon_sym_AMP_CARET] = ACTIONS(2193), - [anon_sym_AMP_AMP] = ACTIONS(2193), - [anon_sym_PIPE_PIPE] = ACTIONS(2193), - [anon_sym_or] = ACTIONS(2193), - [anon_sym_QMARK_DOT] = ACTIONS(2193), - [anon_sym_POUND_LBRACK] = ACTIONS(2193), - [anon_sym_is] = ACTIONS(2193), - [anon_sym_BANGis] = ACTIONS(2193), - [anon_sym_in] = ACTIONS(2193), - [anon_sym_BANGin] = ACTIONS(2193), - [anon_sym_STAR_EQ] = ACTIONS(2193), - [anon_sym_SLASH_EQ] = ACTIONS(2193), - [anon_sym_PERCENT_EQ] = ACTIONS(2193), - [anon_sym_LT_LT_EQ] = ACTIONS(2193), - [anon_sym_GT_GT_EQ] = ACTIONS(2193), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2193), - [anon_sym_AMP_EQ] = ACTIONS(2193), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2193), - [anon_sym_PLUS_EQ] = ACTIONS(2193), - [anon_sym_DASH_EQ] = ACTIONS(2193), - [anon_sym_PIPE_EQ] = ACTIONS(2193), - [anon_sym_CARET_EQ] = ACTIONS(2193), - [anon_sym_COLON_EQ] = ACTIONS(2193), - [anon_sym_shared] = ACTIONS(2193), - [anon_sym_map_LBRACK] = ACTIONS(2193), - [anon_sym_chan] = ACTIONS(2193), - [anon_sym_thread] = ACTIONS(2193), - [anon_sym_atomic] = ACTIONS(2193), + [anon_sym_DOT] = ACTIONS(2741), + [anon_sym_as] = ACTIONS(2741), + [anon_sym_COMMA] = ACTIONS(2741), + [anon_sym_RBRACE] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2741), + [anon_sym_EQ] = ACTIONS(2741), + [anon_sym_fn] = ACTIONS(2741), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_STAR] = ACTIONS(2741), + [anon_sym_SLASH] = ACTIONS(2741), + [anon_sym_PERCENT] = ACTIONS(2741), + [anon_sym_LT] = ACTIONS(2741), + [anon_sym_GT] = ACTIONS(2741), + [anon_sym_EQ_EQ] = ACTIONS(2741), + [anon_sym_BANG_EQ] = ACTIONS(2741), + [anon_sym_LT_EQ] = ACTIONS(2741), + [anon_sym_GT_EQ] = ACTIONS(2741), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_struct] = ACTIONS(2741), + [anon_sym_COLON] = ACTIONS(2741), + [anon_sym_PLUS_PLUS] = ACTIONS(2741), + [anon_sym_DASH_DASH] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(2741), + [anon_sym_BANG] = ACTIONS(2741), + [anon_sym_PIPE] = ACTIONS(2741), + [anon_sym_LBRACK2] = ACTIONS(2741), + [anon_sym_CARET] = ACTIONS(2741), + [anon_sym_AMP] = ACTIONS(2741), + [anon_sym_LT_DASH] = ACTIONS(2741), + [anon_sym_LT_LT] = ACTIONS(2741), + [anon_sym_GT_GT] = ACTIONS(2741), + [anon_sym_GT_GT_GT] = ACTIONS(2741), + [anon_sym_AMP_CARET] = ACTIONS(2741), + [anon_sym_AMP_AMP] = ACTIONS(2741), + [anon_sym_PIPE_PIPE] = ACTIONS(2741), + [anon_sym_or] = ACTIONS(2741), + [anon_sym_QMARK_DOT] = ACTIONS(2741), + [anon_sym_POUND_LBRACK] = ACTIONS(2741), + [anon_sym_is] = ACTIONS(2741), + [anon_sym_BANGis] = ACTIONS(2741), + [anon_sym_in] = ACTIONS(2741), + [anon_sym_BANGin] = ACTIONS(2741), + [anon_sym_STAR_EQ] = ACTIONS(2741), + [anon_sym_SLASH_EQ] = ACTIONS(2741), + [anon_sym_PERCENT_EQ] = ACTIONS(2741), + [anon_sym_LT_LT_EQ] = ACTIONS(2741), + [anon_sym_GT_GT_EQ] = ACTIONS(2741), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2741), + [anon_sym_AMP_EQ] = ACTIONS(2741), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2741), + [anon_sym_PLUS_EQ] = ACTIONS(2741), + [anon_sym_DASH_EQ] = ACTIONS(2741), + [anon_sym_PIPE_EQ] = ACTIONS(2741), + [anon_sym_CARET_EQ] = ACTIONS(2741), + [anon_sym_COLON_EQ] = ACTIONS(2741), + [anon_sym_shared] = ACTIONS(2741), + [anon_sym_map_LBRACK] = ACTIONS(2741), + [anon_sym_chan] = ACTIONS(2741), + [anon_sym_thread] = ACTIONS(2741), + [anon_sym_atomic] = ACTIONS(2741), }, - [1594] = { - [sym_line_comment] = STATE(1594), - [sym_block_comment] = STATE(1594), - [sym_identifier] = ACTIONS(2193), - [anon_sym_LF] = ACTIONS(2193), - [anon_sym_CR] = ACTIONS(2193), - [anon_sym_CR_LF] = ACTIONS(2193), + [1634] = { + [sym_line_comment] = STATE(1634), + [sym_block_comment] = STATE(1634), + [sym_identifier] = ACTIONS(2705), + [anon_sym_LF] = ACTIONS(2705), + [anon_sym_CR] = ACTIONS(2705), + [anon_sym_CR_LF] = ACTIONS(2705), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2193), - [anon_sym_as] = ACTIONS(2193), - [anon_sym_COMMA] = ACTIONS(2193), - [anon_sym_RBRACE] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2193), - [anon_sym_EQ] = ACTIONS(2193), - [anon_sym_PIPE] = ACTIONS(2193), - [anon_sym_fn] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_PERCENT] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_GT] = ACTIONS(2193), - [anon_sym_EQ_EQ] = ACTIONS(2193), - [anon_sym_BANG_EQ] = ACTIONS(2193), - [anon_sym_LT_EQ] = ACTIONS(2193), - [anon_sym_GT_EQ] = ACTIONS(2193), - [anon_sym_LBRACK] = ACTIONS(2191), - [anon_sym_struct] = ACTIONS(2193), - [anon_sym_PLUS_PLUS] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2193), - [anon_sym_QMARK] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2193), - [anon_sym_LBRACK2] = ACTIONS(2193), - [anon_sym_CARET] = ACTIONS(2193), - [anon_sym_AMP] = ACTIONS(2193), - [anon_sym_LT_LT] = ACTIONS(2193), - [anon_sym_GT_GT] = ACTIONS(2193), - [anon_sym_GT_GT_GT] = ACTIONS(2193), - [anon_sym_AMP_CARET] = ACTIONS(2193), - [anon_sym_AMP_AMP] = ACTIONS(2193), - [anon_sym_PIPE_PIPE] = ACTIONS(2193), - [anon_sym_or] = ACTIONS(2193), - [anon_sym_QMARK_DOT] = ACTIONS(2193), - [anon_sym_POUND_LBRACK] = ACTIONS(2193), - [anon_sym_is] = ACTIONS(2193), - [anon_sym_BANGis] = ACTIONS(2193), - [anon_sym_in] = ACTIONS(2193), - [anon_sym_BANGin] = ACTIONS(2193), - [anon_sym_STAR_EQ] = ACTIONS(2193), - [anon_sym_SLASH_EQ] = ACTIONS(2193), - [anon_sym_PERCENT_EQ] = ACTIONS(2193), - [anon_sym_LT_LT_EQ] = ACTIONS(2193), - [anon_sym_GT_GT_EQ] = ACTIONS(2193), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2193), - [anon_sym_AMP_EQ] = ACTIONS(2193), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2193), - [anon_sym_PLUS_EQ] = ACTIONS(2193), - [anon_sym_DASH_EQ] = ACTIONS(2193), - [anon_sym_PIPE_EQ] = ACTIONS(2193), - [anon_sym_CARET_EQ] = ACTIONS(2193), - [anon_sym_COLON_EQ] = ACTIONS(2193), - [anon_sym_shared] = ACTIONS(2193), - [anon_sym_map_LBRACK] = ACTIONS(2193), - [anon_sym_chan] = ACTIONS(2193), - [anon_sym_thread] = ACTIONS(2193), - [anon_sym_atomic] = ACTIONS(2193), - }, - [1595] = { - [sym_line_comment] = STATE(1595), - [sym_block_comment] = STATE(1595), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LF] = ACTIONS(2237), - [anon_sym_CR] = ACTIONS(2237), - [anon_sym_CR_LF] = ACTIONS(2237), + [anon_sym_DOT] = ACTIONS(2705), + [anon_sym_as] = ACTIONS(2705), + [anon_sym_COMMA] = ACTIONS(2705), + [anon_sym_RBRACE] = ACTIONS(2705), + [anon_sym_LPAREN] = ACTIONS(2705), + [anon_sym_EQ] = ACTIONS(2705), + [anon_sym_fn] = ACTIONS(2705), + [anon_sym_PLUS] = ACTIONS(2705), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2705), + [anon_sym_SLASH] = ACTIONS(2705), + [anon_sym_PERCENT] = ACTIONS(2705), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_GT] = ACTIONS(2705), + [anon_sym_EQ_EQ] = ACTIONS(2705), + [anon_sym_BANG_EQ] = ACTIONS(2705), + [anon_sym_LT_EQ] = ACTIONS(2705), + [anon_sym_GT_EQ] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_struct] = ACTIONS(2705), + [anon_sym_PLUS_PLUS] = ACTIONS(2705), + [anon_sym_DASH_DASH] = ACTIONS(2705), + [anon_sym_QMARK] = ACTIONS(2705), + [anon_sym_BANG] = ACTIONS(2705), + [anon_sym_PIPE] = ACTIONS(2705), + [anon_sym_LBRACK2] = ACTIONS(2705), + [anon_sym_CARET] = ACTIONS(2705), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_LT_LT] = ACTIONS(2705), + [anon_sym_GT_GT] = ACTIONS(2705), + [anon_sym_GT_GT_GT] = ACTIONS(2705), + [anon_sym_AMP_CARET] = ACTIONS(2705), + [anon_sym_AMP_AMP] = ACTIONS(2705), + [anon_sym_PIPE_PIPE] = ACTIONS(2705), + [anon_sym_or] = ACTIONS(2705), + [anon_sym_QMARK_DOT] = ACTIONS(2705), + [anon_sym_POUND_LBRACK] = ACTIONS(2705), + [anon_sym_is] = ACTIONS(2705), + [anon_sym_BANGis] = ACTIONS(2705), + [anon_sym_in] = ACTIONS(2705), + [anon_sym_BANGin] = ACTIONS(2705), + [anon_sym_STAR_EQ] = ACTIONS(2705), + [anon_sym_SLASH_EQ] = ACTIONS(2705), + [anon_sym_PERCENT_EQ] = ACTIONS(2705), + [anon_sym_LT_LT_EQ] = ACTIONS(2705), + [anon_sym_GT_GT_EQ] = ACTIONS(2705), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2705), + [anon_sym_AMP_EQ] = ACTIONS(2705), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2705), + [anon_sym_PLUS_EQ] = ACTIONS(2705), + [anon_sym_DASH_EQ] = ACTIONS(2705), + [anon_sym_PIPE_EQ] = ACTIONS(2705), + [anon_sym_CARET_EQ] = ACTIONS(2705), + [anon_sym_COLON_EQ] = ACTIONS(2705), + [anon_sym_shared] = ACTIONS(2705), + [anon_sym_map_LBRACK] = ACTIONS(2705), + [anon_sym_chan] = ACTIONS(2705), + [anon_sym_thread] = ACTIONS(2705), + [anon_sym_atomic] = ACTIONS(2705), + }, + [1635] = { + [sym_line_comment] = STATE(1635), + [sym_block_comment] = STATE(1635), + [sym_identifier] = ACTIONS(2689), + [anon_sym_LF] = ACTIONS(2689), + [anon_sym_CR] = ACTIONS(2689), + [anon_sym_CR_LF] = ACTIONS(2689), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2237), - [anon_sym_as] = ACTIONS(2237), - [anon_sym_COMMA] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_EQ] = ACTIONS(2237), - [anon_sym_PIPE] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_PERCENT] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_GT] = ACTIONS(2237), - [anon_sym_EQ_EQ] = ACTIONS(2237), - [anon_sym_BANG_EQ] = ACTIONS(2237), - [anon_sym_LT_EQ] = ACTIONS(2237), - [anon_sym_GT_EQ] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [anon_sym_QMARK] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_LBRACK2] = ACTIONS(2237), - [anon_sym_CARET] = ACTIONS(2237), - [anon_sym_AMP] = ACTIONS(2237), - [anon_sym_LT_LT] = ACTIONS(2237), - [anon_sym_GT_GT] = ACTIONS(2237), - [anon_sym_GT_GT_GT] = ACTIONS(2237), - [anon_sym_AMP_CARET] = ACTIONS(2237), - [anon_sym_AMP_AMP] = ACTIONS(2237), - [anon_sym_PIPE_PIPE] = ACTIONS(2237), - [anon_sym_or] = ACTIONS(2237), - [anon_sym_QMARK_DOT] = ACTIONS(2237), - [anon_sym_POUND_LBRACK] = ACTIONS(2237), - [anon_sym_is] = ACTIONS(2237), - [anon_sym_BANGis] = ACTIONS(2237), - [anon_sym_in] = ACTIONS(2237), - [anon_sym_BANGin] = ACTIONS(2237), - [anon_sym_STAR_EQ] = ACTIONS(2237), - [anon_sym_SLASH_EQ] = ACTIONS(2237), - [anon_sym_PERCENT_EQ] = ACTIONS(2237), - [anon_sym_LT_LT_EQ] = ACTIONS(2237), - [anon_sym_GT_GT_EQ] = ACTIONS(2237), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2237), - [anon_sym_AMP_EQ] = ACTIONS(2237), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2237), - [anon_sym_PLUS_EQ] = ACTIONS(2237), - [anon_sym_DASH_EQ] = ACTIONS(2237), - [anon_sym_PIPE_EQ] = ACTIONS(2237), - [anon_sym_CARET_EQ] = ACTIONS(2237), - [anon_sym_COLON_EQ] = ACTIONS(2237), - [anon_sym_shared] = ACTIONS(2237), - [anon_sym_map_LBRACK] = ACTIONS(2237), - [anon_sym_chan] = ACTIONS(2237), - [anon_sym_thread] = ACTIONS(2237), - [anon_sym_atomic] = ACTIONS(2237), - }, - [1596] = { - [sym_line_comment] = STATE(1596), - [sym_block_comment] = STATE(1596), - [sym_identifier] = ACTIONS(2197), - [anon_sym_LF] = ACTIONS(2197), - [anon_sym_CR] = ACTIONS(2197), - [anon_sym_CR_LF] = ACTIONS(2197), + [anon_sym_DOT] = ACTIONS(2689), + [anon_sym_as] = ACTIONS(2689), + [anon_sym_COMMA] = ACTIONS(2689), + [anon_sym_RBRACE] = ACTIONS(2689), + [anon_sym_LPAREN] = ACTIONS(2689), + [anon_sym_EQ] = ACTIONS(2689), + [anon_sym_fn] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_SLASH] = ACTIONS(2689), + [anon_sym_PERCENT] = ACTIONS(2689), + [anon_sym_LT] = ACTIONS(2689), + [anon_sym_GT] = ACTIONS(2689), + [anon_sym_EQ_EQ] = ACTIONS(2689), + [anon_sym_BANG_EQ] = ACTIONS(2689), + [anon_sym_LT_EQ] = ACTIONS(2689), + [anon_sym_GT_EQ] = ACTIONS(2689), + [anon_sym_LBRACK] = ACTIONS(2687), + [anon_sym_struct] = ACTIONS(2689), + [anon_sym_PLUS_PLUS] = ACTIONS(2689), + [anon_sym_DASH_DASH] = ACTIONS(2689), + [anon_sym_QMARK] = ACTIONS(2689), + [anon_sym_BANG] = ACTIONS(2689), + [anon_sym_PIPE] = ACTIONS(2689), + [anon_sym_LBRACK2] = ACTIONS(2689), + [anon_sym_CARET] = ACTIONS(2689), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_LT_LT] = ACTIONS(2689), + [anon_sym_GT_GT] = ACTIONS(2689), + [anon_sym_GT_GT_GT] = ACTIONS(2689), + [anon_sym_AMP_CARET] = ACTIONS(2689), + [anon_sym_AMP_AMP] = ACTIONS(2689), + [anon_sym_PIPE_PIPE] = ACTIONS(2689), + [anon_sym_or] = ACTIONS(2689), + [anon_sym_QMARK_DOT] = ACTIONS(2689), + [anon_sym_POUND_LBRACK] = ACTIONS(2689), + [anon_sym_is] = ACTIONS(2689), + [anon_sym_BANGis] = ACTIONS(2689), + [anon_sym_in] = ACTIONS(2689), + [anon_sym_BANGin] = ACTIONS(2689), + [anon_sym_STAR_EQ] = ACTIONS(2689), + [anon_sym_SLASH_EQ] = ACTIONS(2689), + [anon_sym_PERCENT_EQ] = ACTIONS(2689), + [anon_sym_LT_LT_EQ] = ACTIONS(2689), + [anon_sym_GT_GT_EQ] = ACTIONS(2689), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2689), + [anon_sym_AMP_EQ] = ACTIONS(2689), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2689), + [anon_sym_PLUS_EQ] = ACTIONS(2689), + [anon_sym_DASH_EQ] = ACTIONS(2689), + [anon_sym_PIPE_EQ] = ACTIONS(2689), + [anon_sym_CARET_EQ] = ACTIONS(2689), + [anon_sym_COLON_EQ] = ACTIONS(2689), + [anon_sym_shared] = ACTIONS(2689), + [anon_sym_map_LBRACK] = ACTIONS(2689), + [anon_sym_chan] = ACTIONS(2689), + [anon_sym_thread] = ACTIONS(2689), + [anon_sym_atomic] = ACTIONS(2689), + }, + [1636] = { + [sym_line_comment] = STATE(1636), + [sym_block_comment] = STATE(1636), + [sym_identifier] = ACTIONS(2741), + [anon_sym_LF] = ACTIONS(2741), + [anon_sym_CR] = ACTIONS(2741), + [anon_sym_CR_LF] = ACTIONS(2741), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_COMMA] = ACTIONS(2197), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_EQ] = ACTIONS(2197), - [anon_sym_PIPE] = ACTIONS(2197), - [anon_sym_fn] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2197), - [anon_sym_SLASH] = ACTIONS(2197), - [anon_sym_PERCENT] = ACTIONS(2197), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_GT] = ACTIONS(2197), - [anon_sym_EQ_EQ] = ACTIONS(2197), - [anon_sym_BANG_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2197), - [anon_sym_PLUS_PLUS] = ACTIONS(2197), - [anon_sym_DASH_DASH] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_LBRACK2] = ACTIONS(2197), - [anon_sym_CARET] = ACTIONS(2197), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_LT_LT] = ACTIONS(2197), - [anon_sym_GT_GT] = ACTIONS(2197), - [anon_sym_GT_GT_GT] = ACTIONS(2197), - [anon_sym_AMP_CARET] = ACTIONS(2197), - [anon_sym_AMP_AMP] = ACTIONS(2197), - [anon_sym_PIPE_PIPE] = ACTIONS(2197), - [anon_sym_or] = ACTIONS(2197), - [anon_sym_QMARK_DOT] = ACTIONS(2197), - [anon_sym_POUND_LBRACK] = ACTIONS(2197), - [anon_sym_is] = ACTIONS(2197), - [anon_sym_BANGis] = ACTIONS(2197), - [anon_sym_in] = ACTIONS(2197), - [anon_sym_BANGin] = ACTIONS(2197), - [anon_sym_STAR_EQ] = ACTIONS(2197), - [anon_sym_SLASH_EQ] = ACTIONS(2197), - [anon_sym_PERCENT_EQ] = ACTIONS(2197), - [anon_sym_LT_LT_EQ] = ACTIONS(2197), - [anon_sym_GT_GT_EQ] = ACTIONS(2197), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2197), - [anon_sym_AMP_EQ] = ACTIONS(2197), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2197), - [anon_sym_PLUS_EQ] = ACTIONS(2197), - [anon_sym_DASH_EQ] = ACTIONS(2197), - [anon_sym_PIPE_EQ] = ACTIONS(2197), - [anon_sym_CARET_EQ] = ACTIONS(2197), - [anon_sym_COLON_EQ] = ACTIONS(2197), - [anon_sym_shared] = ACTIONS(2197), - [anon_sym_map_LBRACK] = ACTIONS(2197), - [anon_sym_chan] = ACTIONS(2197), - [anon_sym_thread] = ACTIONS(2197), - [anon_sym_atomic] = ACTIONS(2197), + [anon_sym_DOT] = ACTIONS(2741), + [anon_sym_as] = ACTIONS(2741), + [anon_sym_COMMA] = ACTIONS(2741), + [anon_sym_RBRACE] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2741), + [anon_sym_EQ] = ACTIONS(2741), + [anon_sym_fn] = ACTIONS(2741), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_STAR] = ACTIONS(2741), + [anon_sym_SLASH] = ACTIONS(2741), + [anon_sym_PERCENT] = ACTIONS(2741), + [anon_sym_LT] = ACTIONS(2741), + [anon_sym_GT] = ACTIONS(2741), + [anon_sym_EQ_EQ] = ACTIONS(2741), + [anon_sym_BANG_EQ] = ACTIONS(2741), + [anon_sym_LT_EQ] = ACTIONS(2741), + [anon_sym_GT_EQ] = ACTIONS(2741), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_struct] = ACTIONS(2741), + [anon_sym_PLUS_PLUS] = ACTIONS(2741), + [anon_sym_DASH_DASH] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(2741), + [anon_sym_BANG] = ACTIONS(2741), + [anon_sym_PIPE] = ACTIONS(2741), + [anon_sym_LBRACK2] = ACTIONS(2741), + [anon_sym_CARET] = ACTIONS(2741), + [anon_sym_AMP] = ACTIONS(2741), + [anon_sym_LT_LT] = ACTIONS(2741), + [anon_sym_GT_GT] = ACTIONS(2741), + [anon_sym_GT_GT_GT] = ACTIONS(2741), + [anon_sym_AMP_CARET] = ACTIONS(2741), + [anon_sym_AMP_AMP] = ACTIONS(2741), + [anon_sym_PIPE_PIPE] = ACTIONS(2741), + [anon_sym_or] = ACTIONS(2741), + [anon_sym_QMARK_DOT] = ACTIONS(2741), + [anon_sym_POUND_LBRACK] = ACTIONS(2741), + [anon_sym_is] = ACTIONS(2741), + [anon_sym_BANGis] = ACTIONS(2741), + [anon_sym_in] = ACTIONS(2741), + [anon_sym_BANGin] = ACTIONS(2741), + [anon_sym_STAR_EQ] = ACTIONS(2741), + [anon_sym_SLASH_EQ] = ACTIONS(2741), + [anon_sym_PERCENT_EQ] = ACTIONS(2741), + [anon_sym_LT_LT_EQ] = ACTIONS(2741), + [anon_sym_GT_GT_EQ] = ACTIONS(2741), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2741), + [anon_sym_AMP_EQ] = ACTIONS(2741), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2741), + [anon_sym_PLUS_EQ] = ACTIONS(2741), + [anon_sym_DASH_EQ] = ACTIONS(2741), + [anon_sym_PIPE_EQ] = ACTIONS(2741), + [anon_sym_CARET_EQ] = ACTIONS(2741), + [anon_sym_COLON_EQ] = ACTIONS(2741), + [anon_sym_shared] = ACTIONS(2741), + [anon_sym_map_LBRACK] = ACTIONS(2741), + [anon_sym_chan] = ACTIONS(2741), + [anon_sym_thread] = ACTIONS(2741), + [anon_sym_atomic] = ACTIONS(2741), }, - [1597] = { - [sym_line_comment] = STATE(1597), - [sym_block_comment] = STATE(1597), - [sym_identifier] = ACTIONS(2167), - [anon_sym_LF] = ACTIONS(2167), - [anon_sym_CR] = ACTIONS(2167), - [anon_sym_CR_LF] = ACTIONS(2167), + [1637] = { + [sym_line_comment] = STATE(1637), + [sym_block_comment] = STATE(1637), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LF] = ACTIONS(2099), + [anon_sym_CR] = ACTIONS(2099), + [anon_sym_CR_LF] = ACTIONS(2099), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2167), - [anon_sym_as] = ACTIONS(2167), - [anon_sym_COMMA] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_EQ] = ACTIONS(2167), - [anon_sym_PIPE] = ACTIONS(2167), - [anon_sym_fn] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_STAR] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_PERCENT] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_GT] = ACTIONS(2167), - [anon_sym_EQ_EQ] = ACTIONS(2167), - [anon_sym_BANG_EQ] = ACTIONS(2167), - [anon_sym_LT_EQ] = ACTIONS(2167), - [anon_sym_GT_EQ] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_struct] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [anon_sym_QMARK] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_LBRACK2] = ACTIONS(2167), - [anon_sym_CARET] = ACTIONS(2167), - [anon_sym_AMP] = ACTIONS(2167), - [anon_sym_LT_LT] = ACTIONS(2167), - [anon_sym_GT_GT] = ACTIONS(2167), - [anon_sym_GT_GT_GT] = ACTIONS(2167), - [anon_sym_AMP_CARET] = ACTIONS(2167), - [anon_sym_AMP_AMP] = ACTIONS(2167), - [anon_sym_PIPE_PIPE] = ACTIONS(2167), - [anon_sym_or] = ACTIONS(2167), - [anon_sym_QMARK_DOT] = ACTIONS(2167), - [anon_sym_POUND_LBRACK] = ACTIONS(2167), - [anon_sym_is] = ACTIONS(2167), - [anon_sym_BANGis] = ACTIONS(2167), - [anon_sym_in] = ACTIONS(2167), - [anon_sym_BANGin] = ACTIONS(2167), - [anon_sym_STAR_EQ] = ACTIONS(2167), - [anon_sym_SLASH_EQ] = ACTIONS(2167), - [anon_sym_PERCENT_EQ] = ACTIONS(2167), - [anon_sym_LT_LT_EQ] = ACTIONS(2167), - [anon_sym_GT_GT_EQ] = ACTIONS(2167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2167), - [anon_sym_AMP_EQ] = ACTIONS(2167), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2167), - [anon_sym_PLUS_EQ] = ACTIONS(2167), - [anon_sym_DASH_EQ] = ACTIONS(2167), - [anon_sym_PIPE_EQ] = ACTIONS(2167), - [anon_sym_CARET_EQ] = ACTIONS(2167), - [anon_sym_COLON_EQ] = ACTIONS(2167), - [anon_sym_shared] = ACTIONS(2167), - [anon_sym_map_LBRACK] = ACTIONS(2167), - [anon_sym_chan] = ACTIONS(2167), - [anon_sym_thread] = ACTIONS(2167), - [anon_sym_atomic] = ACTIONS(2167), - }, - [1598] = { - [sym_line_comment] = STATE(1598), - [sym_block_comment] = STATE(1598), - [sym_identifier] = ACTIONS(2171), - [anon_sym_LF] = ACTIONS(2171), - [anon_sym_CR] = ACTIONS(2171), - [anon_sym_CR_LF] = ACTIONS(2171), + [anon_sym_DOT] = ACTIONS(2099), + [anon_sym_as] = ACTIONS(2099), + [anon_sym_COMMA] = ACTIONS(2099), + [anon_sym_RBRACE] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(2099), + [anon_sym_EQ] = ACTIONS(2099), + [anon_sym_fn] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(2099), + [anon_sym_DASH] = ACTIONS(2099), + [anon_sym_STAR] = ACTIONS(2099), + [anon_sym_SLASH] = ACTIONS(2099), + [anon_sym_PERCENT] = ACTIONS(2099), + [anon_sym_LT] = ACTIONS(2099), + [anon_sym_GT] = ACTIONS(2099), + [anon_sym_EQ_EQ] = ACTIONS(2099), + [anon_sym_BANG_EQ] = ACTIONS(2099), + [anon_sym_LT_EQ] = ACTIONS(2099), + [anon_sym_GT_EQ] = ACTIONS(2099), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_struct] = ACTIONS(2099), + [anon_sym_PLUS_PLUS] = ACTIONS(2099), + [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_QMARK] = ACTIONS(2099), + [anon_sym_BANG] = ACTIONS(2099), + [anon_sym_PIPE] = ACTIONS(2099), + [anon_sym_LBRACK2] = ACTIONS(2099), + [anon_sym_CARET] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_LT_LT] = ACTIONS(2099), + [anon_sym_GT_GT] = ACTIONS(2099), + [anon_sym_GT_GT_GT] = ACTIONS(2099), + [anon_sym_AMP_CARET] = ACTIONS(2099), + [anon_sym_AMP_AMP] = ACTIONS(2099), + [anon_sym_PIPE_PIPE] = ACTIONS(2099), + [anon_sym_or] = ACTIONS(2099), + [anon_sym_QMARK_DOT] = ACTIONS(2099), + [anon_sym_POUND_LBRACK] = ACTIONS(2099), + [anon_sym_is] = ACTIONS(2099), + [anon_sym_BANGis] = ACTIONS(2099), + [anon_sym_in] = ACTIONS(2099), + [anon_sym_BANGin] = ACTIONS(2099), + [anon_sym_STAR_EQ] = ACTIONS(2099), + [anon_sym_SLASH_EQ] = ACTIONS(2099), + [anon_sym_PERCENT_EQ] = ACTIONS(2099), + [anon_sym_LT_LT_EQ] = ACTIONS(2099), + [anon_sym_GT_GT_EQ] = ACTIONS(2099), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2099), + [anon_sym_AMP_EQ] = ACTIONS(2099), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2099), + [anon_sym_PLUS_EQ] = ACTIONS(2099), + [anon_sym_DASH_EQ] = ACTIONS(2099), + [anon_sym_PIPE_EQ] = ACTIONS(2099), + [anon_sym_CARET_EQ] = ACTIONS(2099), + [anon_sym_COLON_EQ] = ACTIONS(2099), + [anon_sym_shared] = ACTIONS(2099), + [anon_sym_map_LBRACK] = ACTIONS(2099), + [anon_sym_chan] = ACTIONS(2099), + [anon_sym_thread] = ACTIONS(2099), + [anon_sym_atomic] = ACTIONS(2099), + }, + [1638] = { + [sym_line_comment] = STATE(1638), + [sym_block_comment] = STATE(1638), + [sym_identifier] = ACTIONS(3022), + [anon_sym_LF] = ACTIONS(3022), + [anon_sym_CR] = ACTIONS(3022), + [anon_sym_CR_LF] = ACTIONS(3022), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_as] = ACTIONS(2171), - [anon_sym_COMMA] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2171), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_EQ] = ACTIONS(2171), - [anon_sym_PIPE] = ACTIONS(2171), - [anon_sym_fn] = ACTIONS(2171), - [anon_sym_PLUS] = ACTIONS(2171), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_STAR] = ACTIONS(2171), - [anon_sym_SLASH] = ACTIONS(2171), - [anon_sym_PERCENT] = ACTIONS(2171), - [anon_sym_LT] = ACTIONS(2171), - [anon_sym_GT] = ACTIONS(2171), - [anon_sym_EQ_EQ] = ACTIONS(2171), - [anon_sym_BANG_EQ] = ACTIONS(2171), - [anon_sym_LT_EQ] = ACTIONS(2171), - [anon_sym_GT_EQ] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_struct] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_QMARK] = ACTIONS(2171), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_LBRACK2] = ACTIONS(2171), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_LT_LT] = ACTIONS(2171), - [anon_sym_GT_GT] = ACTIONS(2171), - [anon_sym_GT_GT_GT] = ACTIONS(2171), - [anon_sym_AMP_CARET] = ACTIONS(2171), - [anon_sym_AMP_AMP] = ACTIONS(2171), - [anon_sym_PIPE_PIPE] = ACTIONS(2171), - [anon_sym_or] = ACTIONS(2171), - [anon_sym_QMARK_DOT] = ACTIONS(2171), - [anon_sym_POUND_LBRACK] = ACTIONS(2171), - [anon_sym_is] = ACTIONS(2171), - [anon_sym_BANGis] = ACTIONS(2171), - [anon_sym_in] = ACTIONS(2171), - [anon_sym_BANGin] = ACTIONS(2171), - [anon_sym_STAR_EQ] = ACTIONS(2171), - [anon_sym_SLASH_EQ] = ACTIONS(2171), - [anon_sym_PERCENT_EQ] = ACTIONS(2171), - [anon_sym_LT_LT_EQ] = ACTIONS(2171), - [anon_sym_GT_GT_EQ] = ACTIONS(2171), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2171), - [anon_sym_AMP_EQ] = ACTIONS(2171), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2171), - [anon_sym_PLUS_EQ] = ACTIONS(2171), - [anon_sym_DASH_EQ] = ACTIONS(2171), - [anon_sym_PIPE_EQ] = ACTIONS(2171), - [anon_sym_CARET_EQ] = ACTIONS(2171), - [anon_sym_COLON_EQ] = ACTIONS(2171), - [anon_sym_shared] = ACTIONS(2171), - [anon_sym_map_LBRACK] = ACTIONS(2171), - [anon_sym_chan] = ACTIONS(2171), - [anon_sym_thread] = ACTIONS(2171), - [anon_sym_atomic] = ACTIONS(2171), - }, - [1599] = { - [sym_line_comment] = STATE(1599), - [sym_block_comment] = STATE(1599), - [sym_identifier] = ACTIONS(2167), + [anon_sym_DOT] = ACTIONS(3022), + [anon_sym_as] = ACTIONS(3022), + [anon_sym_COMMA] = ACTIONS(3022), + [anon_sym_RBRACE] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_EQ] = ACTIONS(3022), + [anon_sym_fn] = ACTIONS(3022), + [anon_sym_PLUS] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(3022), + [anon_sym_SLASH] = ACTIONS(3022), + [anon_sym_PERCENT] = ACTIONS(3022), + [anon_sym_LT] = ACTIONS(3022), + [anon_sym_GT] = ACTIONS(3022), + [anon_sym_EQ_EQ] = ACTIONS(3022), + [anon_sym_BANG_EQ] = ACTIONS(3022), + [anon_sym_LT_EQ] = ACTIONS(3022), + [anon_sym_GT_EQ] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_struct] = ACTIONS(3022), + [anon_sym_PLUS_PLUS] = ACTIONS(3022), + [anon_sym_DASH_DASH] = ACTIONS(3022), + [anon_sym_QMARK] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_PIPE] = ACTIONS(3022), + [anon_sym_LBRACK2] = ACTIONS(3022), + [anon_sym_CARET] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3022), + [anon_sym_LT_LT] = ACTIONS(3022), + [anon_sym_GT_GT] = ACTIONS(3022), + [anon_sym_GT_GT_GT] = ACTIONS(3022), + [anon_sym_AMP_CARET] = ACTIONS(3022), + [anon_sym_AMP_AMP] = ACTIONS(3022), + [anon_sym_PIPE_PIPE] = ACTIONS(3022), + [anon_sym_or] = ACTIONS(3022), + [anon_sym_QMARK_DOT] = ACTIONS(3022), + [anon_sym_POUND_LBRACK] = ACTIONS(3022), + [anon_sym_is] = ACTIONS(3022), + [anon_sym_BANGis] = ACTIONS(3022), + [anon_sym_in] = ACTIONS(3022), + [anon_sym_BANGin] = ACTIONS(3022), + [anon_sym_STAR_EQ] = ACTIONS(3022), + [anon_sym_SLASH_EQ] = ACTIONS(3022), + [anon_sym_PERCENT_EQ] = ACTIONS(3022), + [anon_sym_LT_LT_EQ] = ACTIONS(3022), + [anon_sym_GT_GT_EQ] = ACTIONS(3022), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3022), + [anon_sym_AMP_EQ] = ACTIONS(3022), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3022), + [anon_sym_PLUS_EQ] = ACTIONS(3022), + [anon_sym_DASH_EQ] = ACTIONS(3022), + [anon_sym_PIPE_EQ] = ACTIONS(3022), + [anon_sym_CARET_EQ] = ACTIONS(3022), + [anon_sym_COLON_EQ] = ACTIONS(3022), + [anon_sym_shared] = ACTIONS(3022), + [anon_sym_map_LBRACK] = ACTIONS(3022), + [anon_sym_chan] = ACTIONS(3022), + [anon_sym_thread] = ACTIONS(3022), + [anon_sym_atomic] = ACTIONS(3022), + }, + [1639] = { + [sym_line_comment] = STATE(1639), + [sym_block_comment] = STATE(1639), + [sym_identifier] = ACTIONS(2705), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2165), - [anon_sym_as] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_COMMA] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2165), - [anon_sym_EQ] = ACTIONS(2167), - [anon_sym_PIPE] = ACTIONS(2167), - [anon_sym_fn] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_STAR] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_PERCENT] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_GT] = ACTIONS(2167), - [anon_sym_EQ_EQ] = ACTIONS(2165), - [anon_sym_BANG_EQ] = ACTIONS(2165), - [anon_sym_LT_EQ] = ACTIONS(2165), - [anon_sym_GT_EQ] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_struct] = ACTIONS(2167), - [anon_sym_COLON] = ACTIONS(2165), - [anon_sym_PLUS_PLUS] = ACTIONS(2165), - [anon_sym_DASH_DASH] = ACTIONS(2165), - [anon_sym_QMARK] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_LBRACK2] = ACTIONS(2167), - [anon_sym_CARET] = ACTIONS(2167), - [anon_sym_AMP] = ACTIONS(2167), - [anon_sym_LT_DASH] = ACTIONS(2165), - [anon_sym_LT_LT] = ACTIONS(2167), - [anon_sym_GT_GT] = ACTIONS(2167), - [anon_sym_GT_GT_GT] = ACTIONS(2167), - [anon_sym_AMP_CARET] = ACTIONS(2167), - [anon_sym_AMP_AMP] = ACTIONS(2165), - [anon_sym_PIPE_PIPE] = ACTIONS(2165), - [anon_sym_or] = ACTIONS(2167), - [anon_sym_QMARK_DOT] = ACTIONS(2165), - [anon_sym_POUND_LBRACK] = ACTIONS(2165), - [anon_sym_is] = ACTIONS(2167), - [anon_sym_BANGis] = ACTIONS(2165), - [anon_sym_in] = ACTIONS(2167), - [anon_sym_BANGin] = ACTIONS(2165), - [anon_sym_STAR_EQ] = ACTIONS(2165), - [anon_sym_SLASH_EQ] = ACTIONS(2165), - [anon_sym_PERCENT_EQ] = ACTIONS(2165), - [anon_sym_LT_LT_EQ] = ACTIONS(2165), - [anon_sym_GT_GT_EQ] = ACTIONS(2165), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2165), - [anon_sym_AMP_EQ] = ACTIONS(2165), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2165), - [anon_sym_PLUS_EQ] = ACTIONS(2165), - [anon_sym_DASH_EQ] = ACTIONS(2165), - [anon_sym_PIPE_EQ] = ACTIONS(2165), - [anon_sym_CARET_EQ] = ACTIONS(2165), - [anon_sym_shared] = ACTIONS(2167), - [anon_sym_map_LBRACK] = ACTIONS(2165), - [anon_sym_chan] = ACTIONS(2167), - [anon_sym_thread] = ACTIONS(2167), - [anon_sym_atomic] = ACTIONS(2167), - }, - [1600] = { - [sym_line_comment] = STATE(1600), - [sym_block_comment] = STATE(1600), - [sym_identifier] = ACTIONS(2171), + [anon_sym_DOT] = ACTIONS(2703), + [anon_sym_as] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_COMMA] = ACTIONS(2703), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_EQ] = ACTIONS(2705), + [anon_sym_fn] = ACTIONS(2705), + [anon_sym_PLUS] = ACTIONS(2705), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2705), + [anon_sym_SLASH] = ACTIONS(2705), + [anon_sym_PERCENT] = ACTIONS(2705), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_GT] = ACTIONS(2705), + [anon_sym_EQ_EQ] = ACTIONS(2703), + [anon_sym_BANG_EQ] = ACTIONS(2703), + [anon_sym_LT_EQ] = ACTIONS(2703), + [anon_sym_GT_EQ] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_struct] = ACTIONS(2705), + [anon_sym_COLON] = ACTIONS(2703), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_QMARK] = ACTIONS(2705), + [anon_sym_BANG] = ACTIONS(2705), + [anon_sym_PIPE] = ACTIONS(2705), + [anon_sym_LBRACK2] = ACTIONS(2705), + [anon_sym_CARET] = ACTIONS(2705), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_LT_DASH] = ACTIONS(2703), + [anon_sym_LT_LT] = ACTIONS(2705), + [anon_sym_GT_GT] = ACTIONS(2705), + [anon_sym_GT_GT_GT] = ACTIONS(2705), + [anon_sym_AMP_CARET] = ACTIONS(2705), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_PIPE_PIPE] = ACTIONS(2703), + [anon_sym_or] = ACTIONS(2705), + [anon_sym_QMARK_DOT] = ACTIONS(2703), + [anon_sym_POUND_LBRACK] = ACTIONS(2703), + [anon_sym_is] = ACTIONS(2705), + [anon_sym_BANGis] = ACTIONS(2703), + [anon_sym_in] = ACTIONS(2705), + [anon_sym_BANGin] = ACTIONS(2703), + [anon_sym_STAR_EQ] = ACTIONS(2703), + [anon_sym_SLASH_EQ] = ACTIONS(2703), + [anon_sym_PERCENT_EQ] = ACTIONS(2703), + [anon_sym_LT_LT_EQ] = ACTIONS(2703), + [anon_sym_GT_GT_EQ] = ACTIONS(2703), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2703), + [anon_sym_AMP_EQ] = ACTIONS(2703), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2703), + [anon_sym_PLUS_EQ] = ACTIONS(2703), + [anon_sym_DASH_EQ] = ACTIONS(2703), + [anon_sym_PIPE_EQ] = ACTIONS(2703), + [anon_sym_CARET_EQ] = ACTIONS(2703), + [anon_sym_shared] = ACTIONS(2705), + [anon_sym_map_LBRACK] = ACTIONS(2703), + [anon_sym_chan] = ACTIONS(2705), + [anon_sym_thread] = ACTIONS(2705), + [anon_sym_atomic] = ACTIONS(2705), + }, + [1640] = { + [sym_line_comment] = STATE(1640), + [sym_block_comment] = STATE(1640), + [sym_type_parameters] = STATE(4155), + [sym_argument_list] = STATE(1712), + [sym_or_block] = STATE(1713), + [aux_sym_strictly_expression_list_repeat1] = STATE(3336), + [anon_sym_LF] = ACTIONS(1691), + [anon_sym_CR] = ACTIONS(1691), + [anon_sym_CR_LF] = ACTIONS(1691), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4611), + [anon_sym_as] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [anon_sym_RBRACE] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4619), + [anon_sym_STAR] = ACTIONS(4621), + [anon_sym_SLASH] = ACTIONS(4621), + [anon_sym_PERCENT] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4623), + [anon_sym_EQ_EQ] = ACTIONS(4623), + [anon_sym_BANG_EQ] = ACTIONS(4623), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LBRACK] = ACTIONS(4625), + [anon_sym_COLON] = ACTIONS(4627), + [anon_sym_PLUS_PLUS] = ACTIONS(4629), + [anon_sym_DASH_DASH] = ACTIONS(4631), + [anon_sym_QMARK] = ACTIONS(4633), + [anon_sym_BANG] = ACTIONS(4635), + [anon_sym_PIPE] = ACTIONS(4619), + [anon_sym_LBRACK2] = ACTIONS(4637), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_AMP] = ACTIONS(4621), + [anon_sym_LT_DASH] = ACTIONS(4639), + [anon_sym_LT_LT] = ACTIONS(4641), + [anon_sym_GT_GT] = ACTIONS(4621), + [anon_sym_GT_GT_GT] = ACTIONS(4621), + [anon_sym_AMP_CARET] = ACTIONS(4621), + [anon_sym_AMP_AMP] = ACTIONS(4643), + [anon_sym_PIPE_PIPE] = ACTIONS(4645), + [anon_sym_or] = ACTIONS(4647), + [anon_sym_QMARK_DOT] = ACTIONS(4611), + [anon_sym_POUND_LBRACK] = ACTIONS(4637), + [anon_sym_is] = ACTIONS(4649), + [anon_sym_BANGis] = ACTIONS(4649), + [anon_sym_in] = ACTIONS(4651), + [anon_sym_BANGin] = ACTIONS(4651), + [anon_sym_STAR_EQ] = ACTIONS(1695), + [anon_sym_SLASH_EQ] = ACTIONS(1695), + [anon_sym_PERCENT_EQ] = ACTIONS(1695), + [anon_sym_LT_LT_EQ] = ACTIONS(1695), + [anon_sym_GT_GT_EQ] = ACTIONS(1695), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1695), + [anon_sym_AMP_EQ] = ACTIONS(1695), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1695), + [anon_sym_PLUS_EQ] = ACTIONS(1695), + [anon_sym_DASH_EQ] = ACTIONS(1695), + [anon_sym_PIPE_EQ] = ACTIONS(1695), + [anon_sym_CARET_EQ] = ACTIONS(1695), + [anon_sym_COLON_EQ] = ACTIONS(1695), + }, + [1641] = { + [sym_line_comment] = STATE(1641), + [sym_block_comment] = STATE(1641), + [sym_identifier] = ACTIONS(2741), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2169), - [anon_sym_as] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_COMMA] = ACTIONS(2169), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_EQ] = ACTIONS(2171), - [anon_sym_PIPE] = ACTIONS(2171), - [anon_sym_fn] = ACTIONS(2171), - [anon_sym_PLUS] = ACTIONS(2171), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_STAR] = ACTIONS(2171), - [anon_sym_SLASH] = ACTIONS(2171), - [anon_sym_PERCENT] = ACTIONS(2171), - [anon_sym_LT] = ACTIONS(2171), - [anon_sym_GT] = ACTIONS(2171), - [anon_sym_EQ_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ] = ACTIONS(2169), - [anon_sym_LT_EQ] = ACTIONS(2169), - [anon_sym_GT_EQ] = ACTIONS(2169), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_struct] = ACTIONS(2171), - [anon_sym_COLON] = ACTIONS(2169), - [anon_sym_PLUS_PLUS] = ACTIONS(2169), - [anon_sym_DASH_DASH] = ACTIONS(2169), - [anon_sym_QMARK] = ACTIONS(2171), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_LBRACK2] = ACTIONS(2171), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_LT_DASH] = ACTIONS(2169), - [anon_sym_LT_LT] = ACTIONS(2171), - [anon_sym_GT_GT] = ACTIONS(2171), - [anon_sym_GT_GT_GT] = ACTIONS(2171), - [anon_sym_AMP_CARET] = ACTIONS(2171), - [anon_sym_AMP_AMP] = ACTIONS(2169), - [anon_sym_PIPE_PIPE] = ACTIONS(2169), - [anon_sym_or] = ACTIONS(2171), - [anon_sym_QMARK_DOT] = ACTIONS(2169), - [anon_sym_POUND_LBRACK] = ACTIONS(2169), - [anon_sym_is] = ACTIONS(2171), - [anon_sym_BANGis] = ACTIONS(2169), - [anon_sym_in] = ACTIONS(2171), - [anon_sym_BANGin] = ACTIONS(2169), - [anon_sym_STAR_EQ] = ACTIONS(2169), - [anon_sym_SLASH_EQ] = ACTIONS(2169), - [anon_sym_PERCENT_EQ] = ACTIONS(2169), - [anon_sym_LT_LT_EQ] = ACTIONS(2169), - [anon_sym_GT_GT_EQ] = ACTIONS(2169), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2169), - [anon_sym_AMP_EQ] = ACTIONS(2169), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2169), - [anon_sym_PLUS_EQ] = ACTIONS(2169), - [anon_sym_DASH_EQ] = ACTIONS(2169), - [anon_sym_PIPE_EQ] = ACTIONS(2169), - [anon_sym_CARET_EQ] = ACTIONS(2169), - [anon_sym_shared] = ACTIONS(2171), - [anon_sym_map_LBRACK] = ACTIONS(2169), - [anon_sym_chan] = ACTIONS(2171), - [anon_sym_thread] = ACTIONS(2171), - [anon_sym_atomic] = ACTIONS(2171), + [anon_sym_SEMI] = ACTIONS(2739), + [anon_sym_DOT] = ACTIONS(2739), + [anon_sym_as] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2739), + [anon_sym_COMMA] = ACTIONS(2739), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_EQ] = ACTIONS(2741), + [anon_sym_fn] = ACTIONS(2741), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_STAR] = ACTIONS(2741), + [anon_sym_SLASH] = ACTIONS(2741), + [anon_sym_PERCENT] = ACTIONS(2741), + [anon_sym_LT] = ACTIONS(2741), + [anon_sym_GT] = ACTIONS(2741), + [anon_sym_EQ_EQ] = ACTIONS(2739), + [anon_sym_BANG_EQ] = ACTIONS(2739), + [anon_sym_LT_EQ] = ACTIONS(2739), + [anon_sym_GT_EQ] = ACTIONS(2739), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_struct] = ACTIONS(2741), + [anon_sym_PLUS_PLUS] = ACTIONS(2739), + [anon_sym_DASH_DASH] = ACTIONS(2739), + [anon_sym_QMARK] = ACTIONS(2741), + [anon_sym_BANG] = ACTIONS(2741), + [anon_sym_PIPE] = ACTIONS(2741), + [anon_sym_LBRACK2] = ACTIONS(2741), + [anon_sym_CARET] = ACTIONS(2741), + [anon_sym_AMP] = ACTIONS(2741), + [anon_sym_LT_LT] = ACTIONS(2741), + [anon_sym_GT_GT] = ACTIONS(2741), + [anon_sym_GT_GT_GT] = ACTIONS(2741), + [anon_sym_AMP_CARET] = ACTIONS(2741), + [anon_sym_AMP_AMP] = ACTIONS(2739), + [anon_sym_PIPE_PIPE] = ACTIONS(2739), + [anon_sym_or] = ACTIONS(2741), + [anon_sym_QMARK_DOT] = ACTIONS(2739), + [anon_sym_POUND_LBRACK] = ACTIONS(2739), + [anon_sym_is] = ACTIONS(2741), + [anon_sym_BANGis] = ACTIONS(2739), + [anon_sym_in] = ACTIONS(2741), + [anon_sym_BANGin] = ACTIONS(2739), + [anon_sym_STAR_EQ] = ACTIONS(2739), + [anon_sym_SLASH_EQ] = ACTIONS(2739), + [anon_sym_PERCENT_EQ] = ACTIONS(2739), + [anon_sym_LT_LT_EQ] = ACTIONS(2739), + [anon_sym_GT_GT_EQ] = ACTIONS(2739), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2739), + [anon_sym_AMP_EQ] = ACTIONS(2739), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2739), + [anon_sym_PLUS_EQ] = ACTIONS(2739), + [anon_sym_DASH_EQ] = ACTIONS(2739), + [anon_sym_PIPE_EQ] = ACTIONS(2739), + [anon_sym_CARET_EQ] = ACTIONS(2739), + [anon_sym_COLON_EQ] = ACTIONS(2739), + [anon_sym_shared] = ACTIONS(2741), + [anon_sym_map_LBRACK] = ACTIONS(2739), + [anon_sym_chan] = ACTIONS(2741), + [anon_sym_thread] = ACTIONS(2741), + [anon_sym_atomic] = ACTIONS(2741), }, - [1601] = { - [sym_line_comment] = STATE(1601), - [sym_block_comment] = STATE(1601), - [sym_identifier] = ACTIONS(2197), + [1642] = { + [sym_line_comment] = STATE(1642), + [sym_block_comment] = STATE(1642), + [sym_identifier] = ACTIONS(2689), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2195), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_COMMA] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_EQ] = ACTIONS(2197), - [anon_sym_PIPE] = ACTIONS(2197), - [anon_sym_fn] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2197), - [anon_sym_SLASH] = ACTIONS(2197), - [anon_sym_PERCENT] = ACTIONS(2197), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_GT] = ACTIONS(2197), - [anon_sym_EQ_EQ] = ACTIONS(2195), - [anon_sym_BANG_EQ] = ACTIONS(2195), - [anon_sym_LT_EQ] = ACTIONS(2195), - [anon_sym_GT_EQ] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2197), - [anon_sym_COLON] = ACTIONS(2195), - [anon_sym_PLUS_PLUS] = ACTIONS(2195), - [anon_sym_DASH_DASH] = ACTIONS(2195), - [anon_sym_QMARK] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_LBRACK2] = ACTIONS(2197), - [anon_sym_CARET] = ACTIONS(2197), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_LT_DASH] = ACTIONS(2195), - [anon_sym_LT_LT] = ACTIONS(2197), - [anon_sym_GT_GT] = ACTIONS(2197), - [anon_sym_GT_GT_GT] = ACTIONS(2197), - [anon_sym_AMP_CARET] = ACTIONS(2197), - [anon_sym_AMP_AMP] = ACTIONS(2195), - [anon_sym_PIPE_PIPE] = ACTIONS(2195), - [anon_sym_or] = ACTIONS(2197), - [anon_sym_QMARK_DOT] = ACTIONS(2195), - [anon_sym_POUND_LBRACK] = ACTIONS(2195), - [anon_sym_is] = ACTIONS(2197), - [anon_sym_BANGis] = ACTIONS(2195), - [anon_sym_in] = ACTIONS(2197), - [anon_sym_BANGin] = ACTIONS(2195), - [anon_sym_STAR_EQ] = ACTIONS(2195), - [anon_sym_SLASH_EQ] = ACTIONS(2195), - [anon_sym_PERCENT_EQ] = ACTIONS(2195), - [anon_sym_LT_LT_EQ] = ACTIONS(2195), - [anon_sym_GT_GT_EQ] = ACTIONS(2195), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2195), - [anon_sym_AMP_EQ] = ACTIONS(2195), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2195), - [anon_sym_PLUS_EQ] = ACTIONS(2195), - [anon_sym_DASH_EQ] = ACTIONS(2195), - [anon_sym_PIPE_EQ] = ACTIONS(2195), - [anon_sym_CARET_EQ] = ACTIONS(2195), - [anon_sym_shared] = ACTIONS(2197), - [anon_sym_map_LBRACK] = ACTIONS(2195), - [anon_sym_chan] = ACTIONS(2197), - [anon_sym_thread] = ACTIONS(2197), - [anon_sym_atomic] = ACTIONS(2197), - }, - [1602] = { - [sym_line_comment] = STATE(1602), - [sym_block_comment] = STATE(1602), - [sym_identifier] = ACTIONS(2237), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_DOT] = ACTIONS(2687), + [anon_sym_as] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_COMMA] = ACTIONS(2687), + [anon_sym_LPAREN] = ACTIONS(2687), + [anon_sym_EQ] = ACTIONS(2689), + [anon_sym_fn] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_SLASH] = ACTIONS(2689), + [anon_sym_PERCENT] = ACTIONS(2689), + [anon_sym_LT] = ACTIONS(2689), + [anon_sym_GT] = ACTIONS(2689), + [anon_sym_EQ_EQ] = ACTIONS(2687), + [anon_sym_BANG_EQ] = ACTIONS(2687), + [anon_sym_LT_EQ] = ACTIONS(2687), + [anon_sym_GT_EQ] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2687), + [anon_sym_struct] = ACTIONS(2689), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_QMARK] = ACTIONS(2689), + [anon_sym_BANG] = ACTIONS(2689), + [anon_sym_PIPE] = ACTIONS(2689), + [anon_sym_LBRACK2] = ACTIONS(2689), + [anon_sym_CARET] = ACTIONS(2689), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_LT_LT] = ACTIONS(2689), + [anon_sym_GT_GT] = ACTIONS(2689), + [anon_sym_GT_GT_GT] = ACTIONS(2689), + [anon_sym_AMP_CARET] = ACTIONS(2689), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_PIPE_PIPE] = ACTIONS(2687), + [anon_sym_or] = ACTIONS(2689), + [anon_sym_QMARK_DOT] = ACTIONS(2687), + [anon_sym_POUND_LBRACK] = ACTIONS(2687), + [anon_sym_is] = ACTIONS(2689), + [anon_sym_BANGis] = ACTIONS(2687), + [anon_sym_in] = ACTIONS(2689), + [anon_sym_BANGin] = ACTIONS(2687), + [anon_sym_STAR_EQ] = ACTIONS(2687), + [anon_sym_SLASH_EQ] = ACTIONS(2687), + [anon_sym_PERCENT_EQ] = ACTIONS(2687), + [anon_sym_LT_LT_EQ] = ACTIONS(2687), + [anon_sym_GT_GT_EQ] = ACTIONS(2687), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2687), + [anon_sym_AMP_EQ] = ACTIONS(2687), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2687), + [anon_sym_PLUS_EQ] = ACTIONS(2687), + [anon_sym_DASH_EQ] = ACTIONS(2687), + [anon_sym_PIPE_EQ] = ACTIONS(2687), + [anon_sym_CARET_EQ] = ACTIONS(2687), + [anon_sym_COLON_EQ] = ACTIONS(2687), + [anon_sym_shared] = ACTIONS(2689), + [anon_sym_map_LBRACK] = ACTIONS(2687), + [anon_sym_chan] = ACTIONS(2689), + [anon_sym_thread] = ACTIONS(2689), + [anon_sym_atomic] = ACTIONS(2689), + }, + [1643] = { + [sym_line_comment] = STATE(1643), + [sym_block_comment] = STATE(1643), + [sym_identifier] = ACTIONS(3022), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_COMMA] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2235), - [anon_sym_EQ] = ACTIONS(2237), - [anon_sym_PIPE] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_PERCENT] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_GT] = ACTIONS(2237), - [anon_sym_EQ_EQ] = ACTIONS(2235), - [anon_sym_BANG_EQ] = ACTIONS(2235), - [anon_sym_LT_EQ] = ACTIONS(2235), - [anon_sym_GT_EQ] = ACTIONS(2235), - [anon_sym_LBRACK] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2237), - [anon_sym_COLON] = ACTIONS(2235), - [anon_sym_PLUS_PLUS] = ACTIONS(2235), - [anon_sym_DASH_DASH] = ACTIONS(2235), - [anon_sym_QMARK] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_LBRACK2] = ACTIONS(2237), - [anon_sym_CARET] = ACTIONS(2237), - [anon_sym_AMP] = ACTIONS(2237), - [anon_sym_LT_DASH] = ACTIONS(2235), - [anon_sym_LT_LT] = ACTIONS(2237), - [anon_sym_GT_GT] = ACTIONS(2237), - [anon_sym_GT_GT_GT] = ACTIONS(2237), - [anon_sym_AMP_CARET] = ACTIONS(2237), - [anon_sym_AMP_AMP] = ACTIONS(2235), - [anon_sym_PIPE_PIPE] = ACTIONS(2235), - [anon_sym_or] = ACTIONS(2237), - [anon_sym_QMARK_DOT] = ACTIONS(2235), - [anon_sym_POUND_LBRACK] = ACTIONS(2235), - [anon_sym_is] = ACTIONS(2237), - [anon_sym_BANGis] = ACTIONS(2235), - [anon_sym_in] = ACTIONS(2237), - [anon_sym_BANGin] = ACTIONS(2235), - [anon_sym_STAR_EQ] = ACTIONS(2235), - [anon_sym_SLASH_EQ] = ACTIONS(2235), - [anon_sym_PERCENT_EQ] = ACTIONS(2235), - [anon_sym_LT_LT_EQ] = ACTIONS(2235), - [anon_sym_GT_GT_EQ] = ACTIONS(2235), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2235), - [anon_sym_AMP_EQ] = ACTIONS(2235), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2235), - [anon_sym_PLUS_EQ] = ACTIONS(2235), - [anon_sym_DASH_EQ] = ACTIONS(2235), - [anon_sym_PIPE_EQ] = ACTIONS(2235), - [anon_sym_CARET_EQ] = ACTIONS(2235), - [anon_sym_shared] = ACTIONS(2237), - [anon_sym_map_LBRACK] = ACTIONS(2235), - [anon_sym_chan] = ACTIONS(2237), - [anon_sym_thread] = ACTIONS(2237), - [anon_sym_atomic] = ACTIONS(2237), - }, - [1603] = { - [sym_line_comment] = STATE(1603), - [sym_block_comment] = STATE(1603), - [sym_identifier] = ACTIONS(2193), + [anon_sym_DOT] = ACTIONS(3020), + [anon_sym_as] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_COMMA] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3020), + [anon_sym_EQ] = ACTIONS(3022), + [anon_sym_fn] = ACTIONS(3022), + [anon_sym_PLUS] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(3022), + [anon_sym_SLASH] = ACTIONS(3022), + [anon_sym_PERCENT] = ACTIONS(3022), + [anon_sym_LT] = ACTIONS(3022), + [anon_sym_GT] = ACTIONS(3022), + [anon_sym_EQ_EQ] = ACTIONS(3020), + [anon_sym_BANG_EQ] = ACTIONS(3020), + [anon_sym_LT_EQ] = ACTIONS(3020), + [anon_sym_GT_EQ] = ACTIONS(3020), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_struct] = ACTIONS(3022), + [anon_sym_COLON] = ACTIONS(3020), + [anon_sym_PLUS_PLUS] = ACTIONS(3020), + [anon_sym_DASH_DASH] = ACTIONS(3020), + [anon_sym_QMARK] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_PIPE] = ACTIONS(3022), + [anon_sym_LBRACK2] = ACTIONS(3022), + [anon_sym_CARET] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3022), + [anon_sym_LT_DASH] = ACTIONS(3020), + [anon_sym_LT_LT] = ACTIONS(3022), + [anon_sym_GT_GT] = ACTIONS(3022), + [anon_sym_GT_GT_GT] = ACTIONS(3022), + [anon_sym_AMP_CARET] = ACTIONS(3022), + [anon_sym_AMP_AMP] = ACTIONS(3020), + [anon_sym_PIPE_PIPE] = ACTIONS(3020), + [anon_sym_or] = ACTIONS(3022), + [anon_sym_QMARK_DOT] = ACTIONS(3020), + [anon_sym_POUND_LBRACK] = ACTIONS(3020), + [anon_sym_is] = ACTIONS(3022), + [anon_sym_BANGis] = ACTIONS(3020), + [anon_sym_in] = ACTIONS(3022), + [anon_sym_BANGin] = ACTIONS(3020), + [anon_sym_STAR_EQ] = ACTIONS(3020), + [anon_sym_SLASH_EQ] = ACTIONS(3020), + [anon_sym_PERCENT_EQ] = ACTIONS(3020), + [anon_sym_LT_LT_EQ] = ACTIONS(3020), + [anon_sym_GT_GT_EQ] = ACTIONS(3020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3020), + [anon_sym_AMP_EQ] = ACTIONS(3020), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3020), + [anon_sym_PLUS_EQ] = ACTIONS(3020), + [anon_sym_DASH_EQ] = ACTIONS(3020), + [anon_sym_PIPE_EQ] = ACTIONS(3020), + [anon_sym_CARET_EQ] = ACTIONS(3020), + [anon_sym_shared] = ACTIONS(3022), + [anon_sym_map_LBRACK] = ACTIONS(3020), + [anon_sym_chan] = ACTIONS(3022), + [anon_sym_thread] = ACTIONS(3022), + [anon_sym_atomic] = ACTIONS(3022), + }, + [1644] = { + [sym_line_comment] = STATE(1644), + [sym_block_comment] = STATE(1644), + [sym_identifier] = ACTIONS(2741), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_as] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2191), - [anon_sym_COMMA] = ACTIONS(2191), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_EQ] = ACTIONS(2193), - [anon_sym_PIPE] = ACTIONS(2193), - [anon_sym_fn] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_PERCENT] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_GT] = ACTIONS(2193), - [anon_sym_EQ_EQ] = ACTIONS(2191), - [anon_sym_BANG_EQ] = ACTIONS(2191), - [anon_sym_LT_EQ] = ACTIONS(2191), - [anon_sym_GT_EQ] = ACTIONS(2191), - [anon_sym_LBRACK] = ACTIONS(2191), - [anon_sym_struct] = ACTIONS(2193), - [anon_sym_COLON] = ACTIONS(2191), - [anon_sym_PLUS_PLUS] = ACTIONS(2191), - [anon_sym_DASH_DASH] = ACTIONS(2191), - [anon_sym_QMARK] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2193), - [anon_sym_LBRACK2] = ACTIONS(2193), - [anon_sym_CARET] = ACTIONS(2193), - [anon_sym_AMP] = ACTIONS(2193), - [anon_sym_LT_DASH] = ACTIONS(2191), - [anon_sym_LT_LT] = ACTIONS(2193), - [anon_sym_GT_GT] = ACTIONS(2193), - [anon_sym_GT_GT_GT] = ACTIONS(2193), - [anon_sym_AMP_CARET] = ACTIONS(2193), - [anon_sym_AMP_AMP] = ACTIONS(2191), - [anon_sym_PIPE_PIPE] = ACTIONS(2191), - [anon_sym_or] = ACTIONS(2193), - [anon_sym_QMARK_DOT] = ACTIONS(2191), - [anon_sym_POUND_LBRACK] = ACTIONS(2191), - [anon_sym_is] = ACTIONS(2193), - [anon_sym_BANGis] = ACTIONS(2191), - [anon_sym_in] = ACTIONS(2193), - [anon_sym_BANGin] = ACTIONS(2191), - [anon_sym_STAR_EQ] = ACTIONS(2191), - [anon_sym_SLASH_EQ] = ACTIONS(2191), - [anon_sym_PERCENT_EQ] = ACTIONS(2191), - [anon_sym_LT_LT_EQ] = ACTIONS(2191), - [anon_sym_GT_GT_EQ] = ACTIONS(2191), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2191), - [anon_sym_AMP_EQ] = ACTIONS(2191), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2191), - [anon_sym_PLUS_EQ] = ACTIONS(2191), - [anon_sym_DASH_EQ] = ACTIONS(2191), - [anon_sym_PIPE_EQ] = ACTIONS(2191), - [anon_sym_CARET_EQ] = ACTIONS(2191), - [anon_sym_shared] = ACTIONS(2193), - [anon_sym_map_LBRACK] = ACTIONS(2191), - [anon_sym_chan] = ACTIONS(2193), - [anon_sym_thread] = ACTIONS(2193), - [anon_sym_atomic] = ACTIONS(2193), - }, - [1604] = { - [sym_line_comment] = STATE(1604), - [sym_block_comment] = STATE(1604), - [sym_type_parameters] = STATE(4227), - [sym_argument_list] = STATE(1718), - [sym_or_block] = STATE(1719), - [aux_sym_strictly_expression_list_repeat1] = STATE(3275), - [anon_sym_LF] = ACTIONS(1711), - [anon_sym_CR] = ACTIONS(1711), - [anon_sym_CR_LF] = ACTIONS(1711), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4585), - [anon_sym_as] = ACTIONS(4587), - [anon_sym_COMMA] = ACTIONS(4589), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(4591), - [anon_sym_EQ] = ACTIONS(1721), - [anon_sym_PIPE] = ACTIONS(4593), - [anon_sym_PLUS] = ACTIONS(4593), - [anon_sym_DASH] = ACTIONS(4593), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_SLASH] = ACTIONS(4595), - [anon_sym_PERCENT] = ACTIONS(4595), - [anon_sym_LT] = ACTIONS(4597), - [anon_sym_GT] = ACTIONS(4597), - [anon_sym_EQ_EQ] = ACTIONS(4597), - [anon_sym_BANG_EQ] = ACTIONS(4597), - [anon_sym_LT_EQ] = ACTIONS(4597), - [anon_sym_GT_EQ] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4599), - [anon_sym_COLON] = ACTIONS(4601), - [anon_sym_PLUS_PLUS] = ACTIONS(4603), - [anon_sym_DASH_DASH] = ACTIONS(4605), - [anon_sym_QMARK] = ACTIONS(4607), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_LBRACK2] = ACTIONS(4611), - [anon_sym_CARET] = ACTIONS(4593), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_LT_DASH] = ACTIONS(4613), - [anon_sym_LT_LT] = ACTIONS(4615), - [anon_sym_GT_GT] = ACTIONS(4595), - [anon_sym_GT_GT_GT] = ACTIONS(4595), - [anon_sym_AMP_CARET] = ACTIONS(4595), - [anon_sym_AMP_AMP] = ACTIONS(4617), - [anon_sym_PIPE_PIPE] = ACTIONS(4619), - [anon_sym_or] = ACTIONS(4621), - [anon_sym_QMARK_DOT] = ACTIONS(4585), - [anon_sym_POUND_LBRACK] = ACTIONS(4611), - [anon_sym_is] = ACTIONS(4623), - [anon_sym_BANGis] = ACTIONS(4623), - [anon_sym_in] = ACTIONS(4625), - [anon_sym_BANGin] = ACTIONS(4625), - [anon_sym_STAR_EQ] = ACTIONS(1721), - [anon_sym_SLASH_EQ] = ACTIONS(1721), - [anon_sym_PERCENT_EQ] = ACTIONS(1721), - [anon_sym_LT_LT_EQ] = ACTIONS(1721), - [anon_sym_GT_GT_EQ] = ACTIONS(1721), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1721), - [anon_sym_AMP_EQ] = ACTIONS(1721), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1721), - [anon_sym_PLUS_EQ] = ACTIONS(1721), - [anon_sym_DASH_EQ] = ACTIONS(1721), - [anon_sym_PIPE_EQ] = ACTIONS(1721), - [anon_sym_CARET_EQ] = ACTIONS(1721), - [anon_sym_COLON_EQ] = ACTIONS(1721), + [anon_sym_DOT] = ACTIONS(2739), + [anon_sym_as] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2739), + [anon_sym_COMMA] = ACTIONS(2739), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_EQ] = ACTIONS(2741), + [anon_sym_fn] = ACTIONS(2741), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_STAR] = ACTIONS(2741), + [anon_sym_SLASH] = ACTIONS(2741), + [anon_sym_PERCENT] = ACTIONS(2741), + [anon_sym_LT] = ACTIONS(2741), + [anon_sym_GT] = ACTIONS(2741), + [anon_sym_EQ_EQ] = ACTIONS(2739), + [anon_sym_BANG_EQ] = ACTIONS(2739), + [anon_sym_LT_EQ] = ACTIONS(2739), + [anon_sym_GT_EQ] = ACTIONS(2739), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_struct] = ACTIONS(2741), + [anon_sym_COLON] = ACTIONS(2739), + [anon_sym_PLUS_PLUS] = ACTIONS(2739), + [anon_sym_DASH_DASH] = ACTIONS(2739), + [anon_sym_QMARK] = ACTIONS(2741), + [anon_sym_BANG] = ACTIONS(2741), + [anon_sym_PIPE] = ACTIONS(2741), + [anon_sym_LBRACK2] = ACTIONS(2741), + [anon_sym_CARET] = ACTIONS(2741), + [anon_sym_AMP] = ACTIONS(2741), + [anon_sym_LT_DASH] = ACTIONS(2739), + [anon_sym_LT_LT] = ACTIONS(2741), + [anon_sym_GT_GT] = ACTIONS(2741), + [anon_sym_GT_GT_GT] = ACTIONS(2741), + [anon_sym_AMP_CARET] = ACTIONS(2741), + [anon_sym_AMP_AMP] = ACTIONS(2739), + [anon_sym_PIPE_PIPE] = ACTIONS(2739), + [anon_sym_or] = ACTIONS(2741), + [anon_sym_QMARK_DOT] = ACTIONS(2739), + [anon_sym_POUND_LBRACK] = ACTIONS(2739), + [anon_sym_is] = ACTIONS(2741), + [anon_sym_BANGis] = ACTIONS(2739), + [anon_sym_in] = ACTIONS(2741), + [anon_sym_BANGin] = ACTIONS(2739), + [anon_sym_STAR_EQ] = ACTIONS(2739), + [anon_sym_SLASH_EQ] = ACTIONS(2739), + [anon_sym_PERCENT_EQ] = ACTIONS(2739), + [anon_sym_LT_LT_EQ] = ACTIONS(2739), + [anon_sym_GT_GT_EQ] = ACTIONS(2739), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2739), + [anon_sym_AMP_EQ] = ACTIONS(2739), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2739), + [anon_sym_PLUS_EQ] = ACTIONS(2739), + [anon_sym_DASH_EQ] = ACTIONS(2739), + [anon_sym_PIPE_EQ] = ACTIONS(2739), + [anon_sym_CARET_EQ] = ACTIONS(2739), + [anon_sym_shared] = ACTIONS(2741), + [anon_sym_map_LBRACK] = ACTIONS(2739), + [anon_sym_chan] = ACTIONS(2741), + [anon_sym_thread] = ACTIONS(2741), + [anon_sym_atomic] = ACTIONS(2741), }, - [1605] = { - [sym_line_comment] = STATE(1605), - [sym_block_comment] = STATE(1605), - [sym_identifier] = ACTIONS(2171), + [1645] = { + [sym_line_comment] = STATE(1645), + [sym_block_comment] = STATE(1645), + [sym_identifier] = ACTIONS(2705), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2169), - [anon_sym_DOT] = ACTIONS(2169), - [anon_sym_as] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_COMMA] = ACTIONS(2169), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_EQ] = ACTIONS(2171), - [anon_sym_PIPE] = ACTIONS(2171), - [anon_sym_fn] = ACTIONS(2171), - [anon_sym_PLUS] = ACTIONS(2171), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_STAR] = ACTIONS(2171), - [anon_sym_SLASH] = ACTIONS(2171), - [anon_sym_PERCENT] = ACTIONS(2171), - [anon_sym_LT] = ACTIONS(2171), - [anon_sym_GT] = ACTIONS(2171), - [anon_sym_EQ_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ] = ACTIONS(2169), - [anon_sym_LT_EQ] = ACTIONS(2169), - [anon_sym_GT_EQ] = ACTIONS(2169), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_struct] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(2169), - [anon_sym_DASH_DASH] = ACTIONS(2169), - [anon_sym_QMARK] = ACTIONS(2171), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_LBRACK2] = ACTIONS(2171), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_LT_LT] = ACTIONS(2171), - [anon_sym_GT_GT] = ACTIONS(2171), - [anon_sym_GT_GT_GT] = ACTIONS(2171), - [anon_sym_AMP_CARET] = ACTIONS(2171), - [anon_sym_AMP_AMP] = ACTIONS(2169), - [anon_sym_PIPE_PIPE] = ACTIONS(2169), - [anon_sym_or] = ACTIONS(2171), - [anon_sym_QMARK_DOT] = ACTIONS(2169), - [anon_sym_POUND_LBRACK] = ACTIONS(2169), - [anon_sym_is] = ACTIONS(2171), - [anon_sym_BANGis] = ACTIONS(2169), - [anon_sym_in] = ACTIONS(2171), - [anon_sym_BANGin] = ACTIONS(2169), - [anon_sym_STAR_EQ] = ACTIONS(2169), - [anon_sym_SLASH_EQ] = ACTIONS(2169), - [anon_sym_PERCENT_EQ] = ACTIONS(2169), - [anon_sym_LT_LT_EQ] = ACTIONS(2169), - [anon_sym_GT_GT_EQ] = ACTIONS(2169), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2169), - [anon_sym_AMP_EQ] = ACTIONS(2169), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2169), - [anon_sym_PLUS_EQ] = ACTIONS(2169), - [anon_sym_DASH_EQ] = ACTIONS(2169), - [anon_sym_PIPE_EQ] = ACTIONS(2169), - [anon_sym_CARET_EQ] = ACTIONS(2169), - [anon_sym_COLON_EQ] = ACTIONS(2169), - [anon_sym_shared] = ACTIONS(2171), - [anon_sym_map_LBRACK] = ACTIONS(2169), - [anon_sym_chan] = ACTIONS(2171), - [anon_sym_thread] = ACTIONS(2171), - [anon_sym_atomic] = ACTIONS(2171), - }, - [1606] = { - [sym_line_comment] = STATE(1606), - [sym_block_comment] = STATE(1606), - [sym_identifier] = ACTIONS(2193), + [anon_sym_SEMI] = ACTIONS(2703), + [anon_sym_DOT] = ACTIONS(2703), + [anon_sym_as] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_COMMA] = ACTIONS(2703), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_EQ] = ACTIONS(2705), + [anon_sym_fn] = ACTIONS(2705), + [anon_sym_PLUS] = ACTIONS(2705), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2705), + [anon_sym_SLASH] = ACTIONS(2705), + [anon_sym_PERCENT] = ACTIONS(2705), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_GT] = ACTIONS(2705), + [anon_sym_EQ_EQ] = ACTIONS(2703), + [anon_sym_BANG_EQ] = ACTIONS(2703), + [anon_sym_LT_EQ] = ACTIONS(2703), + [anon_sym_GT_EQ] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_struct] = ACTIONS(2705), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_QMARK] = ACTIONS(2705), + [anon_sym_BANG] = ACTIONS(2705), + [anon_sym_PIPE] = ACTIONS(2705), + [anon_sym_LBRACK2] = ACTIONS(2705), + [anon_sym_CARET] = ACTIONS(2705), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_LT_LT] = ACTIONS(2705), + [anon_sym_GT_GT] = ACTIONS(2705), + [anon_sym_GT_GT_GT] = ACTIONS(2705), + [anon_sym_AMP_CARET] = ACTIONS(2705), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_PIPE_PIPE] = ACTIONS(2703), + [anon_sym_or] = ACTIONS(2705), + [anon_sym_QMARK_DOT] = ACTIONS(2703), + [anon_sym_POUND_LBRACK] = ACTIONS(2703), + [anon_sym_is] = ACTIONS(2705), + [anon_sym_BANGis] = ACTIONS(2703), + [anon_sym_in] = ACTIONS(2705), + [anon_sym_BANGin] = ACTIONS(2703), + [anon_sym_STAR_EQ] = ACTIONS(2703), + [anon_sym_SLASH_EQ] = ACTIONS(2703), + [anon_sym_PERCENT_EQ] = ACTIONS(2703), + [anon_sym_LT_LT_EQ] = ACTIONS(2703), + [anon_sym_GT_GT_EQ] = ACTIONS(2703), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2703), + [anon_sym_AMP_EQ] = ACTIONS(2703), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2703), + [anon_sym_PLUS_EQ] = ACTIONS(2703), + [anon_sym_DASH_EQ] = ACTIONS(2703), + [anon_sym_PIPE_EQ] = ACTIONS(2703), + [anon_sym_CARET_EQ] = ACTIONS(2703), + [anon_sym_COLON_EQ] = ACTIONS(2703), + [anon_sym_shared] = ACTIONS(2705), + [anon_sym_map_LBRACK] = ACTIONS(2703), + [anon_sym_chan] = ACTIONS(2705), + [anon_sym_thread] = ACTIONS(2705), + [anon_sym_atomic] = ACTIONS(2705), + }, + [1646] = { + [sym_line_comment] = STATE(1646), + [sym_block_comment] = STATE(1646), + [sym_identifier] = ACTIONS(2099), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2191), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_as] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2191), - [anon_sym_COMMA] = ACTIONS(2191), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_EQ] = ACTIONS(2193), - [anon_sym_PIPE] = ACTIONS(2193), - [anon_sym_fn] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_PERCENT] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_GT] = ACTIONS(2193), - [anon_sym_EQ_EQ] = ACTIONS(2191), - [anon_sym_BANG_EQ] = ACTIONS(2191), - [anon_sym_LT_EQ] = ACTIONS(2191), - [anon_sym_GT_EQ] = ACTIONS(2191), - [anon_sym_LBRACK] = ACTIONS(2191), - [anon_sym_struct] = ACTIONS(2193), - [anon_sym_PLUS_PLUS] = ACTIONS(2191), - [anon_sym_DASH_DASH] = ACTIONS(2191), - [anon_sym_QMARK] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2193), - [anon_sym_LBRACK2] = ACTIONS(2193), - [anon_sym_CARET] = ACTIONS(2193), - [anon_sym_AMP] = ACTIONS(2193), - [anon_sym_LT_LT] = ACTIONS(2193), - [anon_sym_GT_GT] = ACTIONS(2193), - [anon_sym_GT_GT_GT] = ACTIONS(2193), - [anon_sym_AMP_CARET] = ACTIONS(2193), - [anon_sym_AMP_AMP] = ACTIONS(2191), - [anon_sym_PIPE_PIPE] = ACTIONS(2191), - [anon_sym_or] = ACTIONS(2193), - [anon_sym_QMARK_DOT] = ACTIONS(2191), - [anon_sym_POUND_LBRACK] = ACTIONS(2191), - [anon_sym_is] = ACTIONS(2193), - [anon_sym_BANGis] = ACTIONS(2191), - [anon_sym_in] = ACTIONS(2193), - [anon_sym_BANGin] = ACTIONS(2191), - [anon_sym_STAR_EQ] = ACTIONS(2191), - [anon_sym_SLASH_EQ] = ACTIONS(2191), - [anon_sym_PERCENT_EQ] = ACTIONS(2191), - [anon_sym_LT_LT_EQ] = ACTIONS(2191), - [anon_sym_GT_GT_EQ] = ACTIONS(2191), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2191), - [anon_sym_AMP_EQ] = ACTIONS(2191), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2191), - [anon_sym_PLUS_EQ] = ACTIONS(2191), - [anon_sym_DASH_EQ] = ACTIONS(2191), - [anon_sym_PIPE_EQ] = ACTIONS(2191), - [anon_sym_CARET_EQ] = ACTIONS(2191), - [anon_sym_COLON_EQ] = ACTIONS(2191), - [anon_sym_shared] = ACTIONS(2193), - [anon_sym_map_LBRACK] = ACTIONS(2191), - [anon_sym_chan] = ACTIONS(2193), - [anon_sym_thread] = ACTIONS(2193), - [anon_sym_atomic] = ACTIONS(2193), - }, - [1607] = { - [sym_line_comment] = STATE(1607), - [sym_block_comment] = STATE(1607), - [sym_identifier] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2097), + [anon_sym_DOT] = ACTIONS(2097), + [anon_sym_as] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_COMMA] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_EQ] = ACTIONS(2099), + [anon_sym_fn] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(2099), + [anon_sym_DASH] = ACTIONS(2099), + [anon_sym_STAR] = ACTIONS(2099), + [anon_sym_SLASH] = ACTIONS(2099), + [anon_sym_PERCENT] = ACTIONS(2099), + [anon_sym_LT] = ACTIONS(2099), + [anon_sym_GT] = ACTIONS(2099), + [anon_sym_EQ_EQ] = ACTIONS(2097), + [anon_sym_BANG_EQ] = ACTIONS(2097), + [anon_sym_LT_EQ] = ACTIONS(2097), + [anon_sym_GT_EQ] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_struct] = ACTIONS(2099), + [anon_sym_PLUS_PLUS] = ACTIONS(2097), + [anon_sym_DASH_DASH] = ACTIONS(2097), + [anon_sym_QMARK] = ACTIONS(2099), + [anon_sym_BANG] = ACTIONS(2099), + [anon_sym_PIPE] = ACTIONS(2099), + [anon_sym_LBRACK2] = ACTIONS(2099), + [anon_sym_CARET] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_LT_LT] = ACTIONS(2099), + [anon_sym_GT_GT] = ACTIONS(2099), + [anon_sym_GT_GT_GT] = ACTIONS(2099), + [anon_sym_AMP_CARET] = ACTIONS(2099), + [anon_sym_AMP_AMP] = ACTIONS(2097), + [anon_sym_PIPE_PIPE] = ACTIONS(2097), + [anon_sym_or] = ACTIONS(2099), + [anon_sym_QMARK_DOT] = ACTIONS(2097), + [anon_sym_POUND_LBRACK] = ACTIONS(2097), + [anon_sym_is] = ACTIONS(2099), + [anon_sym_BANGis] = ACTIONS(2097), + [anon_sym_in] = ACTIONS(2099), + [anon_sym_BANGin] = ACTIONS(2097), + [anon_sym_STAR_EQ] = ACTIONS(2097), + [anon_sym_SLASH_EQ] = ACTIONS(2097), + [anon_sym_PERCENT_EQ] = ACTIONS(2097), + [anon_sym_LT_LT_EQ] = ACTIONS(2097), + [anon_sym_GT_GT_EQ] = ACTIONS(2097), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2097), + [anon_sym_AMP_EQ] = ACTIONS(2097), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2097), + [anon_sym_PLUS_EQ] = ACTIONS(2097), + [anon_sym_DASH_EQ] = ACTIONS(2097), + [anon_sym_PIPE_EQ] = ACTIONS(2097), + [anon_sym_CARET_EQ] = ACTIONS(2097), + [anon_sym_COLON_EQ] = ACTIONS(2097), + [anon_sym_shared] = ACTIONS(2099), + [anon_sym_map_LBRACK] = ACTIONS(2097), + [anon_sym_chan] = ACTIONS(2099), + [anon_sym_thread] = ACTIONS(2099), + [anon_sym_atomic] = ACTIONS(2099), + }, + [1647] = { + [sym_line_comment] = STATE(1647), + [sym_block_comment] = STATE(1647), + [sym_identifier] = ACTIONS(2689), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2195), - [anon_sym_DOT] = ACTIONS(2195), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_COMMA] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_EQ] = ACTIONS(2197), - [anon_sym_PIPE] = ACTIONS(2197), - [anon_sym_fn] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2197), - [anon_sym_SLASH] = ACTIONS(2197), - [anon_sym_PERCENT] = ACTIONS(2197), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_GT] = ACTIONS(2197), - [anon_sym_EQ_EQ] = ACTIONS(2195), - [anon_sym_BANG_EQ] = ACTIONS(2195), - [anon_sym_LT_EQ] = ACTIONS(2195), - [anon_sym_GT_EQ] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2197), - [anon_sym_PLUS_PLUS] = ACTIONS(2195), - [anon_sym_DASH_DASH] = ACTIONS(2195), - [anon_sym_QMARK] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_LBRACK2] = ACTIONS(2197), - [anon_sym_CARET] = ACTIONS(2197), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_LT_LT] = ACTIONS(2197), - [anon_sym_GT_GT] = ACTIONS(2197), - [anon_sym_GT_GT_GT] = ACTIONS(2197), - [anon_sym_AMP_CARET] = ACTIONS(2197), - [anon_sym_AMP_AMP] = ACTIONS(2195), - [anon_sym_PIPE_PIPE] = ACTIONS(2195), - [anon_sym_or] = ACTIONS(2197), - [anon_sym_QMARK_DOT] = ACTIONS(2195), - [anon_sym_POUND_LBRACK] = ACTIONS(2195), - [anon_sym_is] = ACTIONS(2197), - [anon_sym_BANGis] = ACTIONS(2195), - [anon_sym_in] = ACTIONS(2197), - [anon_sym_BANGin] = ACTIONS(2195), - [anon_sym_STAR_EQ] = ACTIONS(2195), - [anon_sym_SLASH_EQ] = ACTIONS(2195), - [anon_sym_PERCENT_EQ] = ACTIONS(2195), - [anon_sym_LT_LT_EQ] = ACTIONS(2195), - [anon_sym_GT_GT_EQ] = ACTIONS(2195), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2195), - [anon_sym_AMP_EQ] = ACTIONS(2195), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2195), - [anon_sym_PLUS_EQ] = ACTIONS(2195), - [anon_sym_DASH_EQ] = ACTIONS(2195), - [anon_sym_PIPE_EQ] = ACTIONS(2195), - [anon_sym_CARET_EQ] = ACTIONS(2195), - [anon_sym_COLON_EQ] = ACTIONS(2195), - [anon_sym_shared] = ACTIONS(2197), - [anon_sym_map_LBRACK] = ACTIONS(2195), - [anon_sym_chan] = ACTIONS(2197), - [anon_sym_thread] = ACTIONS(2197), - [anon_sym_atomic] = ACTIONS(2197), - }, - [1608] = { - [sym_line_comment] = STATE(1608), - [sym_block_comment] = STATE(1608), - [sym_identifier] = ACTIONS(2237), + [anon_sym_DOT] = ACTIONS(2687), + [anon_sym_as] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_COMMA] = ACTIONS(2687), + [anon_sym_LPAREN] = ACTIONS(2687), + [anon_sym_EQ] = ACTIONS(2689), + [anon_sym_fn] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_SLASH] = ACTIONS(2689), + [anon_sym_PERCENT] = ACTIONS(2689), + [anon_sym_LT] = ACTIONS(2689), + [anon_sym_GT] = ACTIONS(2689), + [anon_sym_EQ_EQ] = ACTIONS(2687), + [anon_sym_BANG_EQ] = ACTIONS(2687), + [anon_sym_LT_EQ] = ACTIONS(2687), + [anon_sym_GT_EQ] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2687), + [anon_sym_struct] = ACTIONS(2689), + [anon_sym_COLON] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_QMARK] = ACTIONS(2689), + [anon_sym_BANG] = ACTIONS(2689), + [anon_sym_PIPE] = ACTIONS(2689), + [anon_sym_LBRACK2] = ACTIONS(2689), + [anon_sym_CARET] = ACTIONS(2689), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_LT_DASH] = ACTIONS(2687), + [anon_sym_LT_LT] = ACTIONS(2689), + [anon_sym_GT_GT] = ACTIONS(2689), + [anon_sym_GT_GT_GT] = ACTIONS(2689), + [anon_sym_AMP_CARET] = ACTIONS(2689), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_PIPE_PIPE] = ACTIONS(2687), + [anon_sym_or] = ACTIONS(2689), + [anon_sym_QMARK_DOT] = ACTIONS(2687), + [anon_sym_POUND_LBRACK] = ACTIONS(2687), + [anon_sym_is] = ACTIONS(2689), + [anon_sym_BANGis] = ACTIONS(2687), + [anon_sym_in] = ACTIONS(2689), + [anon_sym_BANGin] = ACTIONS(2687), + [anon_sym_STAR_EQ] = ACTIONS(2687), + [anon_sym_SLASH_EQ] = ACTIONS(2687), + [anon_sym_PERCENT_EQ] = ACTIONS(2687), + [anon_sym_LT_LT_EQ] = ACTIONS(2687), + [anon_sym_GT_GT_EQ] = ACTIONS(2687), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2687), + [anon_sym_AMP_EQ] = ACTIONS(2687), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2687), + [anon_sym_PLUS_EQ] = ACTIONS(2687), + [anon_sym_DASH_EQ] = ACTIONS(2687), + [anon_sym_PIPE_EQ] = ACTIONS(2687), + [anon_sym_CARET_EQ] = ACTIONS(2687), + [anon_sym_shared] = ACTIONS(2689), + [anon_sym_map_LBRACK] = ACTIONS(2687), + [anon_sym_chan] = ACTIONS(2689), + [anon_sym_thread] = ACTIONS(2689), + [anon_sym_atomic] = ACTIONS(2689), + }, + [1648] = { + [sym_line_comment] = STATE(1648), + [sym_block_comment] = STATE(1648), + [sym_identifier] = ACTIONS(2099), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2235), - [anon_sym_DOT] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_COMMA] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2235), - [anon_sym_EQ] = ACTIONS(2237), - [anon_sym_PIPE] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_PERCENT] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_GT] = ACTIONS(2237), - [anon_sym_EQ_EQ] = ACTIONS(2235), - [anon_sym_BANG_EQ] = ACTIONS(2235), - [anon_sym_LT_EQ] = ACTIONS(2235), - [anon_sym_GT_EQ] = ACTIONS(2235), - [anon_sym_LBRACK] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2235), - [anon_sym_DASH_DASH] = ACTIONS(2235), - [anon_sym_QMARK] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_LBRACK2] = ACTIONS(2237), - [anon_sym_CARET] = ACTIONS(2237), - [anon_sym_AMP] = ACTIONS(2237), - [anon_sym_LT_LT] = ACTIONS(2237), - [anon_sym_GT_GT] = ACTIONS(2237), - [anon_sym_GT_GT_GT] = ACTIONS(2237), - [anon_sym_AMP_CARET] = ACTIONS(2237), - [anon_sym_AMP_AMP] = ACTIONS(2235), - [anon_sym_PIPE_PIPE] = ACTIONS(2235), - [anon_sym_or] = ACTIONS(2237), - [anon_sym_QMARK_DOT] = ACTIONS(2235), - [anon_sym_POUND_LBRACK] = ACTIONS(2235), - [anon_sym_is] = ACTIONS(2237), - [anon_sym_BANGis] = ACTIONS(2235), - [anon_sym_in] = ACTIONS(2237), - [anon_sym_BANGin] = ACTIONS(2235), - [anon_sym_STAR_EQ] = ACTIONS(2235), - [anon_sym_SLASH_EQ] = ACTIONS(2235), - [anon_sym_PERCENT_EQ] = ACTIONS(2235), - [anon_sym_LT_LT_EQ] = ACTIONS(2235), - [anon_sym_GT_GT_EQ] = ACTIONS(2235), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2235), - [anon_sym_AMP_EQ] = ACTIONS(2235), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2235), - [anon_sym_PLUS_EQ] = ACTIONS(2235), - [anon_sym_DASH_EQ] = ACTIONS(2235), - [anon_sym_PIPE_EQ] = ACTIONS(2235), - [anon_sym_CARET_EQ] = ACTIONS(2235), - [anon_sym_COLON_EQ] = ACTIONS(2235), - [anon_sym_shared] = ACTIONS(2237), - [anon_sym_map_LBRACK] = ACTIONS(2235), - [anon_sym_chan] = ACTIONS(2237), - [anon_sym_thread] = ACTIONS(2237), - [anon_sym_atomic] = ACTIONS(2237), - }, - [1609] = { - [sym_line_comment] = STATE(1609), - [sym_block_comment] = STATE(1609), - [sym_identifier] = ACTIONS(2167), + [anon_sym_DOT] = ACTIONS(2097), + [anon_sym_as] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_COMMA] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_EQ] = ACTIONS(2099), + [anon_sym_fn] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(2099), + [anon_sym_DASH] = ACTIONS(2099), + [anon_sym_STAR] = ACTIONS(2099), + [anon_sym_SLASH] = ACTIONS(2099), + [anon_sym_PERCENT] = ACTIONS(2099), + [anon_sym_LT] = ACTIONS(2099), + [anon_sym_GT] = ACTIONS(2099), + [anon_sym_EQ_EQ] = ACTIONS(2097), + [anon_sym_BANG_EQ] = ACTIONS(2097), + [anon_sym_LT_EQ] = ACTIONS(2097), + [anon_sym_GT_EQ] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_struct] = ACTIONS(2099), + [anon_sym_COLON] = ACTIONS(2097), + [anon_sym_PLUS_PLUS] = ACTIONS(2097), + [anon_sym_DASH_DASH] = ACTIONS(2097), + [anon_sym_QMARK] = ACTIONS(2099), + [anon_sym_BANG] = ACTIONS(2099), + [anon_sym_PIPE] = ACTIONS(2099), + [anon_sym_LBRACK2] = ACTIONS(2099), + [anon_sym_CARET] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_LT_DASH] = ACTIONS(2097), + [anon_sym_LT_LT] = ACTIONS(2099), + [anon_sym_GT_GT] = ACTIONS(2099), + [anon_sym_GT_GT_GT] = ACTIONS(2099), + [anon_sym_AMP_CARET] = ACTIONS(2099), + [anon_sym_AMP_AMP] = ACTIONS(2097), + [anon_sym_PIPE_PIPE] = ACTIONS(2097), + [anon_sym_or] = ACTIONS(2099), + [anon_sym_QMARK_DOT] = ACTIONS(2097), + [anon_sym_POUND_LBRACK] = ACTIONS(2097), + [anon_sym_is] = ACTIONS(2099), + [anon_sym_BANGis] = ACTIONS(2097), + [anon_sym_in] = ACTIONS(2099), + [anon_sym_BANGin] = ACTIONS(2097), + [anon_sym_STAR_EQ] = ACTIONS(2097), + [anon_sym_SLASH_EQ] = ACTIONS(2097), + [anon_sym_PERCENT_EQ] = ACTIONS(2097), + [anon_sym_LT_LT_EQ] = ACTIONS(2097), + [anon_sym_GT_GT_EQ] = ACTIONS(2097), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2097), + [anon_sym_AMP_EQ] = ACTIONS(2097), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2097), + [anon_sym_PLUS_EQ] = ACTIONS(2097), + [anon_sym_DASH_EQ] = ACTIONS(2097), + [anon_sym_PIPE_EQ] = ACTIONS(2097), + [anon_sym_CARET_EQ] = ACTIONS(2097), + [anon_sym_shared] = ACTIONS(2099), + [anon_sym_map_LBRACK] = ACTIONS(2097), + [anon_sym_chan] = ACTIONS(2099), + [anon_sym_thread] = ACTIONS(2099), + [anon_sym_atomic] = ACTIONS(2099), + }, + [1649] = { + [sym_line_comment] = STATE(1649), + [sym_block_comment] = STATE(1649), + [sym_identifier] = ACTIONS(3022), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2165), - [anon_sym_DOT] = ACTIONS(2165), - [anon_sym_as] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_COMMA] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2165), - [anon_sym_EQ] = ACTIONS(2167), - [anon_sym_PIPE] = ACTIONS(2167), - [anon_sym_fn] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_STAR] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_PERCENT] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_GT] = ACTIONS(2167), - [anon_sym_EQ_EQ] = ACTIONS(2165), - [anon_sym_BANG_EQ] = ACTIONS(2165), - [anon_sym_LT_EQ] = ACTIONS(2165), - [anon_sym_GT_EQ] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_struct] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2165), - [anon_sym_DASH_DASH] = ACTIONS(2165), - [anon_sym_QMARK] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_LBRACK2] = ACTIONS(2167), - [anon_sym_CARET] = ACTIONS(2167), - [anon_sym_AMP] = ACTIONS(2167), - [anon_sym_LT_LT] = ACTIONS(2167), - [anon_sym_GT_GT] = ACTIONS(2167), - [anon_sym_GT_GT_GT] = ACTIONS(2167), - [anon_sym_AMP_CARET] = ACTIONS(2167), - [anon_sym_AMP_AMP] = ACTIONS(2165), - [anon_sym_PIPE_PIPE] = ACTIONS(2165), - [anon_sym_or] = ACTIONS(2167), - [anon_sym_QMARK_DOT] = ACTIONS(2165), - [anon_sym_POUND_LBRACK] = ACTIONS(2165), - [anon_sym_is] = ACTIONS(2167), - [anon_sym_BANGis] = ACTIONS(2165), - [anon_sym_in] = ACTIONS(2167), - [anon_sym_BANGin] = ACTIONS(2165), - [anon_sym_STAR_EQ] = ACTIONS(2165), - [anon_sym_SLASH_EQ] = ACTIONS(2165), - [anon_sym_PERCENT_EQ] = ACTIONS(2165), - [anon_sym_LT_LT_EQ] = ACTIONS(2165), - [anon_sym_GT_GT_EQ] = ACTIONS(2165), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2165), - [anon_sym_AMP_EQ] = ACTIONS(2165), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2165), - [anon_sym_PLUS_EQ] = ACTIONS(2165), - [anon_sym_DASH_EQ] = ACTIONS(2165), - [anon_sym_PIPE_EQ] = ACTIONS(2165), - [anon_sym_CARET_EQ] = ACTIONS(2165), - [anon_sym_COLON_EQ] = ACTIONS(2165), - [anon_sym_shared] = ACTIONS(2167), - [anon_sym_map_LBRACK] = ACTIONS(2165), - [anon_sym_chan] = ACTIONS(2167), - [anon_sym_thread] = ACTIONS(2167), - [anon_sym_atomic] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(3020), + [anon_sym_DOT] = ACTIONS(3020), + [anon_sym_as] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_COMMA] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3020), + [anon_sym_EQ] = ACTIONS(3022), + [anon_sym_fn] = ACTIONS(3022), + [anon_sym_PLUS] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(3022), + [anon_sym_SLASH] = ACTIONS(3022), + [anon_sym_PERCENT] = ACTIONS(3022), + [anon_sym_LT] = ACTIONS(3022), + [anon_sym_GT] = ACTIONS(3022), + [anon_sym_EQ_EQ] = ACTIONS(3020), + [anon_sym_BANG_EQ] = ACTIONS(3020), + [anon_sym_LT_EQ] = ACTIONS(3020), + [anon_sym_GT_EQ] = ACTIONS(3020), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_struct] = ACTIONS(3022), + [anon_sym_PLUS_PLUS] = ACTIONS(3020), + [anon_sym_DASH_DASH] = ACTIONS(3020), + [anon_sym_QMARK] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_PIPE] = ACTIONS(3022), + [anon_sym_LBRACK2] = ACTIONS(3022), + [anon_sym_CARET] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3022), + [anon_sym_LT_LT] = ACTIONS(3022), + [anon_sym_GT_GT] = ACTIONS(3022), + [anon_sym_GT_GT_GT] = ACTIONS(3022), + [anon_sym_AMP_CARET] = ACTIONS(3022), + [anon_sym_AMP_AMP] = ACTIONS(3020), + [anon_sym_PIPE_PIPE] = ACTIONS(3020), + [anon_sym_or] = ACTIONS(3022), + [anon_sym_QMARK_DOT] = ACTIONS(3020), + [anon_sym_POUND_LBRACK] = ACTIONS(3020), + [anon_sym_is] = ACTIONS(3022), + [anon_sym_BANGis] = ACTIONS(3020), + [anon_sym_in] = ACTIONS(3022), + [anon_sym_BANGin] = ACTIONS(3020), + [anon_sym_STAR_EQ] = ACTIONS(3020), + [anon_sym_SLASH_EQ] = ACTIONS(3020), + [anon_sym_PERCENT_EQ] = ACTIONS(3020), + [anon_sym_LT_LT_EQ] = ACTIONS(3020), + [anon_sym_GT_GT_EQ] = ACTIONS(3020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3020), + [anon_sym_AMP_EQ] = ACTIONS(3020), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3020), + [anon_sym_PLUS_EQ] = ACTIONS(3020), + [anon_sym_DASH_EQ] = ACTIONS(3020), + [anon_sym_PIPE_EQ] = ACTIONS(3020), + [anon_sym_CARET_EQ] = ACTIONS(3020), + [anon_sym_COLON_EQ] = ACTIONS(3020), + [anon_sym_shared] = ACTIONS(3022), + [anon_sym_map_LBRACK] = ACTIONS(3020), + [anon_sym_chan] = ACTIONS(3022), + [anon_sym_thread] = ACTIONS(3022), + [anon_sym_atomic] = ACTIONS(3022), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 14, + [0] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4591), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(4625), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, + ACTIONS(4633), 1, anon_sym_QMARK, - ACTIONS(4609), 1, + ACTIONS(4635), 1, anon_sym_BANG, - STATE(1718), 1, + STATE(1712), 1, sym_argument_list, - STATE(1719), 1, + STATE(1713), 1, sym_or_block, - STATE(4227), 1, + STATE(4155), 1, sym_type_parameters, - ACTIONS(4585), 2, + ACTIONS(4611), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4611), 2, + ACTIONS(4637), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(1610), 2, + STATE(1650), 2, sym_line_comment, sym_block_comment, - ACTIONS(4595), 8, + ACTIONS(1771), 49, + 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, + 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_PIPE, + 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(1791), 41, + 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, + [91] = 13, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4617), 1, + anon_sym_LPAREN, + ACTIONS(4625), 1, + anon_sym_LBRACK, + ACTIONS(4633), 1, + anon_sym_QMARK, + ACTIONS(4635), 1, + anon_sym_BANG, + STATE(1712), 1, + sym_argument_list, + STATE(1713), 1, + sym_or_block, + STATE(4155), 1, + sym_type_parameters, + ACTIONS(4611), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4637), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1651), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1789), 49, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -188902,9 +192421,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -188914,7 +192435,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PIPE, + 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, + [182] = 15, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4617), 1, + anon_sym_LPAREN, + ACTIONS(4625), 1, + anon_sym_LBRACK, + ACTIONS(4633), 1, + anon_sym_QMARK, + ACTIONS(4635), 1, + anon_sym_BANG, + STATE(1712), 1, + sym_argument_list, + STATE(1713), 1, + sym_or_block, + STATE(4155), 1, + sym_type_parameters, + ACTIONS(4611), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4637), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1652), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4619), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, + ACTIONS(4621), 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(1793), 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, @@ -188936,71 +192543,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [93] = 13, + [277] = 18, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4591), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(4625), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, + ACTIONS(4633), 1, anon_sym_QMARK, - ACTIONS(4609), 1, + ACTIONS(4635), 1, anon_sym_BANG, - STATE(1718), 1, + ACTIONS(4643), 1, + anon_sym_AMP_AMP, + STATE(1712), 1, sym_argument_list, - STATE(1719), 1, + STATE(1713), 1, sym_or_block, - STATE(4227), 1, + STATE(4155), 1, sym_type_parameters, - ACTIONS(4585), 2, + ACTIONS(4611), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4611), 2, + ACTIONS(4637), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(1611), 2, + ACTIONS(4651), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1653), 2, sym_line_comment, sym_block_comment, - ACTIONS(1791), 49, - 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, + ACTIONS(4619), 4, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4623), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(4621), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, + ACTIONS(1767), 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_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -189014,40 +192626,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [184] = 15, + [378] = 17, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4591), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(4625), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, + ACTIONS(4633), 1, anon_sym_QMARK, - ACTIONS(4609), 1, + ACTIONS(4635), 1, anon_sym_BANG, - STATE(1718), 1, + STATE(1712), 1, sym_argument_list, - STATE(1719), 1, + STATE(1713), 1, sym_or_block, - STATE(4227), 1, + STATE(4155), 1, sym_type_parameters, - ACTIONS(4585), 2, + ACTIONS(4611), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4611), 2, + ACTIONS(4637), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(1612), 2, + ACTIONS(4651), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1654), 2, sym_line_comment, sym_block_comment, - ACTIONS(4593), 4, - anon_sym_PIPE, + ACTIONS(4619), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4595), 8, + ACTIONS(4623), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4621), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -189056,7 +192678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1791), 37, + ACTIONS(1767), 29, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -189064,12 +192686,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -189079,8 +192695,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -189094,44 +192708,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [279] = 14, + [477] = 14, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4591), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(4625), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, + ACTIONS(4633), 1, anon_sym_QMARK, - ACTIONS(4609), 1, + ACTIONS(4635), 1, anon_sym_BANG, - STATE(1718), 1, + STATE(1712), 1, sym_argument_list, - STATE(1719), 1, + STATE(1713), 1, sym_or_block, - STATE(4227), 1, + STATE(4155), 1, sym_type_parameters, - ACTIONS(4585), 2, + ACTIONS(4611), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4611), 2, + ACTIONS(4637), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(1613), 2, + STATE(1655), 2, sym_line_comment, sym_block_comment, - ACTIONS(1795), 4, + ACTIONS(1765), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - ACTIONS(1791), 45, + ACTIONS(1767), 45, anon_sym_as, anon_sym_COMMA, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -189146,6 +192759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_DASH, @@ -189173,50 +192787,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [372] = 17, + [570] = 15, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4591), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(4625), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, + ACTIONS(4633), 1, anon_sym_QMARK, - ACTIONS(4609), 1, + ACTIONS(4635), 1, anon_sym_BANG, - STATE(1718), 1, + STATE(1712), 1, sym_argument_list, - STATE(1719), 1, + STATE(1713), 1, sym_or_block, - STATE(4227), 1, + STATE(4155), 1, sym_type_parameters, - ACTIONS(4585), 2, + ACTIONS(4611), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4611), 2, + ACTIONS(4637), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4625), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1614), 2, + STATE(1656), 2, sym_line_comment, sym_block_comment, - ACTIONS(4593), 4, - anon_sym_PIPE, + ACTIONS(4619), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4597), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4595), 8, + ACTIONS(4621), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -189225,7 +192829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1791), 29, + ACTIONS(1767), 37, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -189233,6 +192837,12 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -189242,6 +192852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -189255,76 +192867,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [471] = 18, + [665] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4591), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(4625), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, + ACTIONS(4633), 1, anon_sym_QMARK, - ACTIONS(4609), 1, + ACTIONS(4635), 1, anon_sym_BANG, - ACTIONS(4617), 1, - anon_sym_AMP_AMP, - STATE(1718), 1, + STATE(1712), 1, sym_argument_list, - STATE(1719), 1, + STATE(1713), 1, sym_or_block, - STATE(4227), 1, + STATE(4155), 1, sym_type_parameters, - ACTIONS(4585), 2, + ACTIONS(4611), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4611), 2, + ACTIONS(4637), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4625), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1615), 2, + STATE(1657), 2, sym_line_comment, sym_block_comment, - ACTIONS(4593), 4, - anon_sym_PIPE, + ACTIONS(1767), 49, + 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, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4597), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4595), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + 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(1791), 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_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, @@ -189338,35 +192945,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [572] = 13, + [756] = 14, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4591), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(4625), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, + ACTIONS(4633), 1, anon_sym_QMARK, - ACTIONS(4609), 1, + ACTIONS(4635), 1, anon_sym_BANG, - STATE(1718), 1, + STATE(1712), 1, sym_argument_list, - STATE(1719), 1, + STATE(1713), 1, sym_or_block, - STATE(4227), 1, + STATE(4155), 1, sym_type_parameters, - ACTIONS(4585), 2, + ACTIONS(4611), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4611), 2, + ACTIONS(4637), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(1616), 2, + STATE(1658), 2, sym_line_comment, sym_block_comment, - ACTIONS(1783), 49, + ACTIONS(4621), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1767), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -189374,12 +192990,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -189389,13 +193001,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PIPE, 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, @@ -189416,82 +193024,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [663] = 24, + [849] = 29, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4587), 1, + ACTIONS(4613), 1, anon_sym_as, - ACTIONS(4591), 1, + ACTIONS(4615), 1, + anon_sym_COMMA, + ACTIONS(4617), 1, anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(4625), 1, anon_sym_LBRACK, - ACTIONS(4603), 1, + ACTIONS(4629), 1, anon_sym_PLUS_PLUS, - ACTIONS(4605), 1, + ACTIONS(4631), 1, anon_sym_DASH_DASH, - ACTIONS(4607), 1, + ACTIONS(4633), 1, anon_sym_QMARK, - ACTIONS(4609), 1, + ACTIONS(4635), 1, anon_sym_BANG, - ACTIONS(4617), 1, + ACTIONS(4639), 1, + anon_sym_LT_DASH, + ACTIONS(4641), 1, + anon_sym_LT_LT, + ACTIONS(4643), 1, anon_sym_AMP_AMP, - ACTIONS(4619), 1, + ACTIONS(4645), 1, anon_sym_PIPE_PIPE, - ACTIONS(4621), 1, + ACTIONS(4647), 1, anon_sym_or, - STATE(1718), 1, + STATE(1712), 1, sym_argument_list, - STATE(1719), 1, + STATE(1713), 1, sym_or_block, - STATE(4227), 1, + STATE(3336), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4155), 1, sym_type_parameters, - ACTIONS(4585), 2, + ACTIONS(4611), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4611), 2, + ACTIONS(4637), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4623), 2, + ACTIONS(4649), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4625), 2, + ACTIONS(4651), 2, anon_sym_in, anon_sym_BANGin, - STATE(1617), 2, + STATE(1659), 2, sym_line_comment, sym_block_comment, - ACTIONS(4593), 4, - anon_sym_PIPE, + ACTIONS(1691), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(4619), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4597), 6, + ACTIONS(4623), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4595), 8, + ACTIONS(4621), 7, 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(1765), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1695), 14, anon_sym_EQ, - anon_sym_COLON, - anon_sym_LT_DASH, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -189505,71 +193118,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [776] = 13, + [972] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4591), 1, + ACTIONS(4613), 1, + anon_sym_as, + ACTIONS(4617), 1, anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(4625), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, + ACTIONS(4629), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4631), 1, + anon_sym_DASH_DASH, + ACTIONS(4633), 1, anon_sym_QMARK, - ACTIONS(4609), 1, + ACTIONS(4635), 1, anon_sym_BANG, - STATE(1718), 1, + ACTIONS(4643), 1, + anon_sym_AMP_AMP, + ACTIONS(4645), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4647), 1, + anon_sym_or, + STATE(1712), 1, sym_argument_list, - STATE(1719), 1, + STATE(1713), 1, sym_or_block, - STATE(4227), 1, + STATE(4155), 1, sym_type_parameters, - ACTIONS(4585), 2, + ACTIONS(4611), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4611), 2, + ACTIONS(4637), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(1618), 2, + ACTIONS(4649), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4651), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1660), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 49, - 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, + ACTIONS(4619), 4, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4623), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(4621), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(1775), 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, @@ -189583,65 +193207,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [867] = 24, + [1085] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4587), 1, + ACTIONS(4613), 1, anon_sym_as, - ACTIONS(4591), 1, + ACTIONS(4617), 1, anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(4625), 1, anon_sym_LBRACK, - ACTIONS(4603), 1, + ACTIONS(4629), 1, anon_sym_PLUS_PLUS, - ACTIONS(4605), 1, + ACTIONS(4631), 1, anon_sym_DASH_DASH, - ACTIONS(4607), 1, + ACTIONS(4633), 1, anon_sym_QMARK, - ACTIONS(4609), 1, + ACTIONS(4635), 1, anon_sym_BANG, - ACTIONS(4617), 1, + ACTIONS(4643), 1, anon_sym_AMP_AMP, - ACTIONS(4619), 1, + ACTIONS(4645), 1, anon_sym_PIPE_PIPE, - ACTIONS(4621), 1, + ACTIONS(4647), 1, anon_sym_or, - STATE(1718), 1, + STATE(1712), 1, sym_argument_list, - STATE(1719), 1, + STATE(1713), 1, sym_or_block, - STATE(4227), 1, + STATE(4155), 1, sym_type_parameters, - ACTIONS(4585), 2, + ACTIONS(4611), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4611), 2, + ACTIONS(4637), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4623), 2, + ACTIONS(4649), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4625), 2, + ACTIONS(4651), 2, anon_sym_in, anon_sym_BANGin, - STATE(1619), 2, + STATE(1661), 2, sym_line_comment, sym_block_comment, - ACTIONS(4593), 4, - anon_sym_PIPE, + ACTIONS(4619), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4597), 6, + ACTIONS(4623), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4595), 8, + ACTIONS(4621), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -189672,56 +193296,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [980] = 15, + [1198] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4591), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(1875), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, - anon_sym_QMARK, - ACTIONS(4609), 1, - anon_sym_BANG, - STATE(1718), 1, - sym_argument_list, - STATE(1719), 1, - sym_or_block, - STATE(4227), 1, - sym_type_parameters, - ACTIONS(4585), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4611), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(1620), 2, + STATE(1662), 2, sym_line_comment, sym_block_comment, - ACTIONS(4593), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4595), 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(1787), 37, + ACTIONS(1877), 58, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -189731,10 +193330,24 @@ 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_PIPE, + 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, @@ -189752,86 +193365,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1075] = 29, + [1272] = 26, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4587), 1, + ACTIONS(4655), 1, anon_sym_as, - ACTIONS(4589), 1, - anon_sym_COMMA, - ACTIONS(4591), 1, + ACTIONS(4657), 1, anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(4665), 1, anon_sym_LBRACK, - ACTIONS(4603), 1, + ACTIONS(4667), 1, anon_sym_PLUS_PLUS, - ACTIONS(4605), 1, + ACTIONS(4669), 1, anon_sym_DASH_DASH, - ACTIONS(4607), 1, + ACTIONS(4671), 1, anon_sym_QMARK, - ACTIONS(4609), 1, + ACTIONS(4673), 1, anon_sym_BANG, - ACTIONS(4613), 1, - anon_sym_LT_DASH, - ACTIONS(4615), 1, - anon_sym_LT_LT, - ACTIONS(4617), 1, + ACTIONS(4677), 1, anon_sym_AMP_AMP, - ACTIONS(4619), 1, + ACTIONS(4679), 1, anon_sym_PIPE_PIPE, - ACTIONS(4621), 1, + ACTIONS(4681), 1, anon_sym_or, - STATE(1718), 1, - sym_argument_list, - STATE(1719), 1, + STATE(1821), 1, sym_or_block, - STATE(3275), 1, + STATE(1900), 1, + sym_argument_list, + STATE(3597), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4227), 1, + STATE(4297), 1, sym_type_parameters, - ACTIONS(4585), 2, + ACTIONS(4653), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4611), 2, + ACTIONS(4675), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4623), 2, + ACTIONS(4683), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4625), 2, + ACTIONS(4685), 2, anon_sym_in, anon_sym_BANGin, - STATE(1621), 2, + STATE(1663), 2, sym_line_comment, sym_block_comment, - ACTIONS(1711), 4, + ACTIONS(1651), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - ACTIONS(4593), 4, - anon_sym_PIPE, + ACTIONS(4659), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4597), 6, + ACTIONS(4663), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4595), 7, + ACTIONS(4661), 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(1721), 14, + ACTIONS(1657), 15, + anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -189846,83 +193455,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1198] = 26, + [1388] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4629), 1, - anon_sym_as, - ACTIONS(4631), 1, - anon_sym_LPAREN, - ACTIONS(4639), 1, + ACTIONS(1797), 1, anon_sym_LBRACK, - ACTIONS(4641), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4643), 1, - anon_sym_DASH_DASH, - ACTIONS(4645), 1, - anon_sym_QMARK, - ACTIONS(4647), 1, - anon_sym_BANG, - ACTIONS(4651), 1, - anon_sym_AMP_AMP, - ACTIONS(4653), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4655), 1, - anon_sym_or, - STATE(1780), 1, - sym_or_block, - STATE(1843), 1, - sym_argument_list, - STATE(3546), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4302), 1, - sym_type_parameters, - ACTIONS(4627), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4649), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4657), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4659), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1622), 2, + ACTIONS(4687), 1, + anon_sym_else, + STATE(1758), 1, + sym_else_branch, + STATE(1664), 2, sym_line_comment, sym_block_comment, - ACTIONS(1757), 4, + ACTIONS(1799), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4633), 4, - anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4637), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4635), 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_PIPE, + 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(1759), 15, - anon_sym_COMMA, - 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, @@ -189936,18 +193526,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1314] = 7, + [1466] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, ACTIONS(1803), 1, anon_sym_LBRACK, - ACTIONS(4661), 1, + ACTIONS(4687), 1, anon_sym_else, - STATE(1689), 1, + STATE(1757), 1, sym_else_branch, - STATE(1623), 2, + STATE(1665), 2, sym_line_comment, sym_block_comment, ACTIONS(1805), 56, @@ -189960,7 +193550,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -189977,6 +193566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -190007,17 +193597,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1392] = 5, + [1544] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1807), 1, + ACTIONS(1835), 1, anon_sym_LBRACK, - STATE(1624), 2, + STATE(1666), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 58, + ACTIONS(1837), 58, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -190027,7 +193617,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -190044,6 +193633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -190076,31 +193666,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1466] = 7, + [1618] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1797), 1, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(4661), 1, - anon_sym_else, - STATE(1685), 1, - sym_else_branch, - STATE(1625), 2, + STATE(1667), 2, sym_line_comment, sym_block_comment, - ACTIONS(1799), 56, + ACTIONS(3030), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -190117,6 +193703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -190147,58 +193734,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1544] = 5, + [1691] = 15, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1887), 1, + ACTIONS(4657), 1, + anon_sym_LPAREN, + ACTIONS(4665), 1, anon_sym_LBRACK, - STATE(1626), 2, + ACTIONS(4671), 1, + anon_sym_QMARK, + ACTIONS(4673), 1, + anon_sym_BANG, + STATE(1821), 1, + sym_or_block, + STATE(1900), 1, + sym_argument_list, + STATE(4297), 1, + sym_type_parameters, + ACTIONS(4653), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4675), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1668), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 58, + ACTIONS(4659), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4661), 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(1793), 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, @@ -190216,28 +193812,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1618] = 5, + [1784] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2199), 1, + ACTIONS(1943), 1, anon_sym_LBRACK, - STATE(1627), 2, + STATE(1718), 1, + sym_type_parameters, + STATE(1669), 2, sym_line_comment, sym_block_comment, - ACTIONS(2201), 57, + ACTIONS(1945), 56, 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, @@ -190254,6 +193850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -190284,17 +193881,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1691] = 5, + [1859] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2267), 1, + ACTIONS(2753), 1, anon_sym_LBRACK, - STATE(1628), 2, + STATE(1670), 2, sym_line_comment, sym_block_comment, - ACTIONS(2269), 57, + ACTIONS(2755), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -190305,7 +193902,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -190322,6 +193918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -190352,29 +193949,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1764] = 6, + [1932] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2060), 1, + ACTIONS(1943), 1, anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LBRACE, - STATE(1629), 2, + STATE(1671), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 56, + ACTIONS(1945), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -190391,6 +193986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -190421,28 +194017,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1839] = 5, + [2005] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2183), 1, + ACTIONS(1835), 1, anon_sym_LBRACK, - STATE(1630), 2, + ACTIONS(1845), 1, + anon_sym_LBRACE, + STATE(1672), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 57, + ACTIONS(1837), 56, 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, @@ -190459,6 +194055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -190489,80 +194086,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1912] = 24, + [2080] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4629), 1, - anon_sym_as, - ACTIONS(4631), 1, - anon_sym_LPAREN, - ACTIONS(4639), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(4641), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4643), 1, - anon_sym_DASH_DASH, - ACTIONS(4645), 1, - anon_sym_QMARK, - ACTIONS(4647), 1, - anon_sym_BANG, - ACTIONS(4651), 1, - anon_sym_AMP_AMP, - ACTIONS(4653), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4655), 1, - anon_sym_or, - STATE(1780), 1, - sym_or_block, - STATE(1843), 1, - sym_argument_list, - STATE(4302), 1, - sym_type_parameters, - ACTIONS(4627), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4649), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4657), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4659), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1631), 2, + STATE(1673), 2, sym_line_comment, sym_block_comment, - ACTIONS(4633), 4, - anon_sym_PIPE, + ACTIONS(2761), 57, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4637), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4635), 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_PIPE, + 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(1779), 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, @@ -190576,28 +194154,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2023] = 5, + [2153] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2179), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - STATE(1632), 2, + ACTIONS(2095), 1, + anon_sym_LBRACE, + STATE(1674), 2, sym_line_comment, sym_block_comment, - ACTIONS(2181), 57, + ACTIONS(1887), 56, 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, @@ -190614,6 +194192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -190644,29 +194223,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2096] = 6, + [2228] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2039), 1, + ACTIONS(4657), 1, + anon_sym_LPAREN, + ACTIONS(4665), 1, anon_sym_LBRACK, - ACTIONS(4663), 1, - anon_sym_DOLLARelse, - STATE(1633), 2, + ACTIONS(4671), 1, + anon_sym_QMARK, + ACTIONS(4673), 1, + anon_sym_BANG, + STATE(1821), 1, + sym_or_block, + STATE(1900), 1, + sym_argument_list, + STATE(4297), 1, + sym_type_parameters, + ACTIONS(4653), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4675), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1675), 2, sym_line_comment, sym_block_comment, - ACTIONS(2041), 56, + ACTIONS(1771), 47, 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, @@ -190678,15 +194270,11 @@ 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_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -190694,8 +194282,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, @@ -190713,17 +194299,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2171] = 5, + [2317] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2203), 1, + ACTIONS(2777), 1, anon_sym_LBRACK, - STATE(1634), 2, + STATE(1676), 2, sym_line_comment, sym_block_comment, - ACTIONS(2205), 57, + ACTIONS(2779), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -190734,7 +194320,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -190751,6 +194336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -190781,61 +194367,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2244] = 5, + [2390] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2207), 1, + ACTIONS(4655), 1, + anon_sym_as, + ACTIONS(4657), 1, + anon_sym_LPAREN, + ACTIONS(4665), 1, anon_sym_LBRACK, - STATE(1635), 2, + ACTIONS(4667), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4669), 1, + anon_sym_DASH_DASH, + ACTIONS(4671), 1, + anon_sym_QMARK, + ACTIONS(4673), 1, + anon_sym_BANG, + ACTIONS(4677), 1, + anon_sym_AMP_AMP, + ACTIONS(4679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4681), 1, + anon_sym_or, + STATE(1821), 1, + sym_or_block, + STATE(1900), 1, + sym_argument_list, + STATE(4297), 1, + sym_type_parameters, + ACTIONS(4653), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4675), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4683), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4685), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1677), 2, sym_line_comment, sym_block_comment, - ACTIONS(2209), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(4659), 4, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4663), 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(4661), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(1775), 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, @@ -190849,65 +194454,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2317] = 24, + [2501] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4629), 1, + ACTIONS(4655), 1, anon_sym_as, - ACTIONS(4631), 1, + ACTIONS(4657), 1, anon_sym_LPAREN, - ACTIONS(4639), 1, + ACTIONS(4665), 1, anon_sym_LBRACK, - ACTIONS(4641), 1, + ACTIONS(4667), 1, anon_sym_PLUS_PLUS, - ACTIONS(4643), 1, + ACTIONS(4669), 1, anon_sym_DASH_DASH, - ACTIONS(4645), 1, + ACTIONS(4671), 1, anon_sym_QMARK, - ACTIONS(4647), 1, + ACTIONS(4673), 1, anon_sym_BANG, - ACTIONS(4651), 1, + ACTIONS(4677), 1, anon_sym_AMP_AMP, - ACTIONS(4653), 1, + ACTIONS(4679), 1, anon_sym_PIPE_PIPE, - ACTIONS(4655), 1, + ACTIONS(4681), 1, anon_sym_or, - STATE(1780), 1, + STATE(1821), 1, sym_or_block, - STATE(1843), 1, + STATE(1900), 1, sym_argument_list, - STATE(4302), 1, + STATE(4297), 1, sym_type_parameters, - ACTIONS(4627), 2, + ACTIONS(4653), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4649), 2, + ACTIONS(4675), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4659), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(4665), 2, + ACTIONS(4683), 2, anon_sym_is, anon_sym_BANGis, - STATE(1636), 2, + ACTIONS(4685), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1678), 2, sym_line_comment, sym_block_comment, - ACTIONS(4633), 4, - anon_sym_PIPE, + ACTIONS(4659), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4637), 6, + ACTIONS(4663), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4635), 8, + ACTIONS(4661), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -190916,7 +194521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1773), 19, + ACTIONS(1779), 19, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -190936,96 +194541,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2428] = 5, + [2612] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2211), 1, - anon_sym_LBRACK, - STATE(1637), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2213), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4657), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4665), 1, + anon_sym_LBRACK, + ACTIONS(4671), 1, anon_sym_QMARK, + ACTIONS(4673), 1, anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, + STATE(1821), 1, + sym_or_block, + STATE(1900), 1, + sym_argument_list, + STATE(4297), 1, + sym_type_parameters, + ACTIONS(4653), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, + ACTIONS(4675), 2, + anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [2501] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2215), 1, - anon_sym_LBRACK, - STATE(1638), 2, + STATE(1679), 2, sym_line_comment, sym_block_comment, - ACTIONS(2217), 57, + ACTIONS(1789), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -191037,15 +194588,11 @@ 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_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -191053,8 +194600,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, @@ -191072,28 +194617,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2574] = 5, + [2701] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2219), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - STATE(1639), 2, + ACTIONS(1895), 1, + anon_sym_COLON, + ACTIONS(2095), 1, + anon_sym_LBRACE, + STATE(1680), 2, sym_line_comment, sym_block_comment, - ACTIONS(2221), 57, + ACTIONS(1887), 55, 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, @@ -191105,11 +194652,11 @@ 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_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -191140,17 +194687,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2647] = 5, + [2778] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2223), 1, + ACTIONS(2959), 1, anon_sym_LBRACK, - STATE(1640), 2, + STATE(1681), 2, sym_line_comment, sym_block_comment, - ACTIONS(2225), 57, + ACTIONS(2961), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191161,7 +194708,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -191178,6 +194724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -191208,17 +194755,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2720] = 5, + [2851] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2227), 1, + ACTIONS(2963), 1, anon_sym_LBRACK, - STATE(1641), 2, + STATE(1682), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 57, + ACTIONS(2965), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191229,7 +194776,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -191246,6 +194792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -191276,17 +194823,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2793] = 5, + [2924] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2243), 1, + ACTIONS(2979), 1, anon_sym_LBRACK, - STATE(1642), 2, + STATE(1683), 2, sym_line_comment, sym_block_comment, - ACTIONS(2245), 57, + ACTIONS(2981), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191297,7 +194844,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -191314,6 +194860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -191344,130 +194891,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2866] = 15, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4631), 1, - anon_sym_LPAREN, - ACTIONS(4639), 1, - anon_sym_LBRACK, - ACTIONS(4645), 1, - anon_sym_QMARK, - ACTIONS(4647), 1, - anon_sym_BANG, - STATE(1780), 1, - sym_or_block, - STATE(1843), 1, - sym_argument_list, - STATE(4302), 1, - sym_type_parameters, - ACTIONS(4627), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4649), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(1643), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4633), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4635), 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(1787), 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, - [2959] = 18, + [2997] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4631), 1, + ACTIONS(4655), 1, + anon_sym_as, + ACTIONS(4657), 1, anon_sym_LPAREN, - ACTIONS(4639), 1, + ACTIONS(4665), 1, anon_sym_LBRACK, - ACTIONS(4645), 1, + ACTIONS(4667), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4669), 1, + anon_sym_DASH_DASH, + ACTIONS(4671), 1, anon_sym_QMARK, - ACTIONS(4647), 1, + ACTIONS(4673), 1, anon_sym_BANG, - ACTIONS(4651), 1, + ACTIONS(4677), 1, anon_sym_AMP_AMP, - STATE(1780), 1, + ACTIONS(4679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4681), 1, + anon_sym_or, + STATE(1821), 1, sym_or_block, - STATE(1843), 1, + STATE(1900), 1, sym_argument_list, - STATE(4302), 1, + STATE(4297), 1, sym_type_parameters, - ACTIONS(4627), 2, + ACTIONS(4653), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4649), 2, + ACTIONS(4675), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4659), 2, + ACTIONS(4685), 2, anon_sym_in, anon_sym_BANGin, - STATE(1644), 2, + ACTIONS(4689), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(1684), 2, sym_line_comment, sym_block_comment, - ACTIONS(4633), 4, - anon_sym_PIPE, + ACTIONS(4659), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4637), 6, + ACTIONS(4663), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4635), 8, + ACTIONS(4661), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -191476,20 +194958,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1791), 26, + ACTIONS(1783), 19, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -191503,17 +194978,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3058] = 5, + [3108] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2247), 1, + ACTIONS(2987), 1, anon_sym_LBRACK, - STATE(1645), 2, + STATE(1685), 2, sym_line_comment, sym_block_comment, - ACTIONS(2249), 57, + ACTIONS(2989), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191524,7 +194999,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -191541,6 +195015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -191571,17 +195046,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3131] = 5, + [3181] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1686), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4693), 24, + 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_SQUOTE, + anon_sym_DQUOTE, + anon_sym_c_SQUOTE, + anon_sym_c_DQUOTE, + anon_sym_r_SQUOTE, + anon_sym_r_DQUOTE, + anon_sym_map_LBRACK, + anon_sym_POUND, + ACTIONS(4691), 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, + [3254] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2251), 1, + ACTIONS(3008), 1, anon_sym_LBRACK, - STATE(1646), 2, + STATE(1687), 2, sym_line_comment, sym_block_comment, - ACTIONS(2253), 57, + ACTIONS(3010), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191592,7 +195135,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -191609,6 +195151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -191639,17 +195182,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3204] = 5, + [3327] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2259), 1, + ACTIONS(3024), 1, anon_sym_LBRACK, - STATE(1647), 2, + STATE(1688), 2, sym_line_comment, sym_block_comment, - ACTIONS(2261), 57, + ACTIONS(3026), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191660,7 +195203,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -191677,6 +195219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -191707,17 +195250,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3277] = 5, + [3400] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2187), 1, + ACTIONS(3036), 1, anon_sym_LBRACK, - STATE(1648), 2, + STATE(1689), 2, sym_line_comment, sym_block_comment, - ACTIONS(2189), 57, + ACTIONS(3038), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191728,7 +195271,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -191745,6 +195287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -191775,73 +195318,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3350] = 17, + [3473] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4631), 1, - anon_sym_LPAREN, - ACTIONS(4639), 1, + ACTIONS(3040), 1, anon_sym_LBRACK, - ACTIONS(4645), 1, - anon_sym_QMARK, - ACTIONS(4647), 1, - anon_sym_BANG, - STATE(1780), 1, - sym_or_block, - STATE(1843), 1, - sym_argument_list, - STATE(4302), 1, - sym_type_parameters, - ACTIONS(4627), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4649), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4659), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1649), 2, + STATE(1690), 2, sym_line_comment, sym_block_comment, - ACTIONS(4633), 4, - anon_sym_PIPE, + ACTIONS(3042), 57, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4637), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4635), 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_PIPE, + 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(1791), 27, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -191855,67 +195386,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3447] = 15, + [3546] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4631), 1, - anon_sym_LPAREN, - ACTIONS(4639), 1, + ACTIONS(3056), 1, anon_sym_LBRACK, - ACTIONS(4645), 1, - anon_sym_QMARK, - ACTIONS(4647), 1, - anon_sym_BANG, - STATE(1780), 1, - sym_or_block, - STATE(1843), 1, - sym_argument_list, - STATE(4302), 1, - sym_type_parameters, - ACTIONS(4627), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4649), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(1650), 2, + STATE(1691), 2, sym_line_comment, sym_block_comment, - ACTIONS(4633), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4635), 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(1791), 35, + ACTIONS(3058), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, + anon_sym_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_PIPE, + 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, @@ -191933,31 +195454,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3540] = 7, + [3619] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2060), 1, + ACTIONS(3068), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, - anon_sym_COLON, - ACTIONS(2159), 1, - anon_sym_LBRACE, - STATE(1651), 2, + STATE(1692), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 55, + ACTIONS(3070), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -191969,10 +195486,12 @@ 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_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -192003,66 +195522,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3617] = 14, + [3692] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4631), 1, - anon_sym_LPAREN, - ACTIONS(4639), 1, + ACTIONS(3048), 1, anon_sym_LBRACK, - ACTIONS(4645), 1, - anon_sym_QMARK, - ACTIONS(4647), 1, - anon_sym_BANG, - STATE(1780), 1, - sym_or_block, - STATE(1843), 1, - sym_argument_list, - STATE(4302), 1, - sym_type_parameters, - ACTIONS(4627), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4649), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(1652), 2, + STATE(1693), 2, sym_line_comment, sym_block_comment, - ACTIONS(4635), 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(1791), 39, + ACTIONS(3050), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + 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, @@ -192080,129 +195590,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3708] = 5, + [3765] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1653), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4669), 24, + ACTIONS(1689), 1, + anon_sym_SEMI, + ACTIONS(1695), 1, + anon_sym_EQ, + ACTIONS(4697), 1, + anon_sym_as, + ACTIONS(4699), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(4701), 1, + anon_sym_COMMA, + ACTIONS(4703), 1, anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(4713), 1, + anon_sym_LBRACK, + ACTIONS(4715), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4717), 1, + anon_sym_DASH_DASH, + ACTIONS(4719), 1, anon_sym_QMARK, + ACTIONS(4721), 1, anon_sym_BANG, - anon_sym_json_DOTdecode, + ACTIONS(4723), 1, anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_c_SQUOTE, - anon_sym_c_DQUOTE, - anon_sym_r_SQUOTE, - anon_sym_r_DQUOTE, - anon_sym_map_LBRACK, - anon_sym_POUND, - ACTIONS(4667), 34, + ACTIONS(4725), 1, + anon_sym_AMP_AMP, + ACTIONS(4727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4729), 1, + anon_sym_or, + ACTIONS(4731), 1, + anon_sym_POUND_LBRACK, + STATE(1561), 1, + sym_block, + STATE(1987), 1, + sym_or_block, + STATE(1988), 1, + sym_argument_list, + STATE(3336), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4173), 1, + sym_type_parameters, + ACTIONS(4695), 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, - 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, - [3781] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2271), 1, - anon_sym_LBRACK, - STATE(1654), 2, + anon_sym_QMARK_DOT, + ACTIONS(4709), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4733), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4735), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1694), 2, sym_line_comment, sym_block_comment, - ACTIONS(2273), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(4705), 4, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4711), 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_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(3492), 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, + [3892] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1689), 1, + anon_sym_SEMI, + ACTIONS(1695), 1, + anon_sym_EQ, + ACTIONS(4697), 1, + anon_sym_as, + ACTIONS(4701), 1, + anon_sym_COMMA, + ACTIONS(4703), 1, + anon_sym_LPAREN, + ACTIONS(4713), 1, + anon_sym_LBRACK, + ACTIONS(4715), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4717), 1, + anon_sym_DASH_DASH, + ACTIONS(4719), 1, + anon_sym_QMARK, + ACTIONS(4721), 1, + anon_sym_BANG, + ACTIONS(4723), 1, + anon_sym_LBRACK2, + ACTIONS(4725), 1, anon_sym_AMP_AMP, + ACTIONS(4727), 1, anon_sym_PIPE_PIPE, + ACTIONS(4729), 1, anon_sym_or, - anon_sym_QMARK_DOT, + ACTIONS(4731), 1, anon_sym_POUND_LBRACK, + ACTIONS(4737), 1, + anon_sym_LBRACE, + STATE(1987), 1, + sym_or_block, + STATE(1988), 1, + sym_argument_list, + STATE(3336), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3730), 1, + sym_block, + STATE(4173), 1, + sym_type_parameters, + ACTIONS(4695), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4709), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4733), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(4735), 2, anon_sym_in, anon_sym_BANGin, + STATE(1695), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4705), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4711), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4707), 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(3492), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -192216,28 +195780,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3854] = 5, + [4019] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2421), 1, + ACTIONS(2077), 1, anon_sym_LBRACK, - STATE(1655), 2, + ACTIONS(4739), 1, + anon_sym_DOLLARelse, + STATE(1696), 2, sym_line_comment, sym_block_comment, - ACTIONS(2423), 57, + ACTIONS(2079), 56, 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, @@ -192254,6 +195818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -192284,29 +195849,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3927] = 6, + [4094] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1807), 1, + ACTIONS(2773), 1, anon_sym_LBRACK, - ACTIONS(2029), 1, - anon_sym_LBRACE, - STATE(1656), 2, + STATE(1697), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 56, + ACTIONS(2775), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -192323,6 +195886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -192353,28 +195917,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4002] = 5, + [4167] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1897), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - STATE(1657), 2, + ACTIONS(2095), 1, + anon_sym_LBRACE, + STATE(1698), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 57, + ACTIONS(1887), 56, 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, @@ -192391,6 +195955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -192421,17 +195986,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4075] = 5, + [4242] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2425), 1, + ACTIONS(2451), 1, anon_sym_LBRACK, - STATE(1658), 2, + STATE(1699), 2, sym_line_comment, sym_block_comment, - ACTIONS(2427), 57, + ACTIONS(2453), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -192442,7 +196007,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -192459,6 +196023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -192489,29 +196054,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4148] = 6, + [4315] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1897), 1, + ACTIONS(2393), 1, anon_sym_LBRACK, - STATE(1717), 1, - sym_type_parameters, - STATE(1659), 2, + STATE(1700), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 56, + ACTIONS(2395), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -192528,6 +196091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -192558,35 +196122,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4223] = 13, + [4388] = 14, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4631), 1, + ACTIONS(4657), 1, anon_sym_LPAREN, - ACTIONS(4639), 1, + ACTIONS(4665), 1, anon_sym_LBRACK, - ACTIONS(4645), 1, + ACTIONS(4671), 1, anon_sym_QMARK, - ACTIONS(4647), 1, + ACTIONS(4673), 1, anon_sym_BANG, - STATE(1780), 1, + STATE(1821), 1, sym_or_block, - STATE(1843), 1, + STATE(1900), 1, sym_argument_list, - STATE(4302), 1, + STATE(4297), 1, sym_type_parameters, - ACTIONS(4627), 2, + ACTIONS(4653), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4649), 2, + ACTIONS(4675), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(1660), 2, + STATE(1701), 2, sym_line_comment, sym_block_comment, - ACTIONS(1791), 47, + ACTIONS(4661), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1767), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -192594,12 +196167,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -192608,12 +196177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PIPE, 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, @@ -192634,43 +196199,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4312] = 13, + [4479] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4631), 1, - anon_sym_LPAREN, - ACTIONS(4639), 1, + ACTIONS(2369), 1, anon_sym_LBRACK, - ACTIONS(4645), 1, - anon_sym_QMARK, - ACTIONS(4647), 1, - anon_sym_BANG, - STATE(1780), 1, - sym_or_block, - STATE(1843), 1, - sym_argument_list, - STATE(4302), 1, - sym_type_parameters, - ACTIONS(4627), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4649), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(1661), 2, + STATE(1702), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 47, + ACTIONS(2371), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -192682,10 +196231,16 @@ 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_PIPE, + 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, @@ -192693,6 +196248,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, @@ -192710,17 +196267,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4401] = 5, + [4552] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2173), 1, + ACTIONS(2377), 1, anon_sym_LBRACK, - STATE(1662), 2, + STATE(1703), 2, sym_line_comment, sym_block_comment, - ACTIONS(2175), 57, + ACTIONS(2379), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -192731,7 +196288,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -192748,6 +196304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -192778,62 +196335,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4474] = 6, + [4625] = 18, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2029), 1, - anon_sym_LBRACE, - ACTIONS(2713), 1, + ACTIONS(4657), 1, + anon_sym_LPAREN, + ACTIONS(4665), 1, anon_sym_LBRACK, - STATE(1663), 2, + ACTIONS(4671), 1, + anon_sym_QMARK, + ACTIONS(4673), 1, + anon_sym_BANG, + ACTIONS(4677), 1, + anon_sym_AMP_AMP, + STATE(1821), 1, + sym_or_block, + STATE(1900), 1, + sym_argument_list, + STATE(4297), 1, + sym_type_parameters, + ACTIONS(4653), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4675), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4685), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1704), 2, sym_line_comment, sym_block_comment, - ACTIONS(2715), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(4659), 4, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4663), 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(4661), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, + ACTIONS(1767), 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_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, @@ -192847,29 +196416,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4549] = 6, + [4724] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2077), 1, + ACTIONS(4657), 1, + anon_sym_LPAREN, + ACTIONS(4665), 1, anon_sym_LBRACK, ACTIONS(4671), 1, - anon_sym_DOLLARelse, - STATE(1664), 2, + anon_sym_QMARK, + ACTIONS(4673), 1, + anon_sym_BANG, + STATE(1821), 1, + sym_or_block, + STATE(1900), 1, + sym_argument_list, + STATE(4297), 1, + sym_type_parameters, + ACTIONS(4653), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4675), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1705), 2, sym_line_comment, sym_block_comment, - ACTIONS(2079), 56, + ACTIONS(1767), 47, 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, @@ -192881,15 +196463,11 @@ 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_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -192897,8 +196475,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, @@ -192916,79 +196492,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4624] = 32, - ACTIONS(3), 1, + [4813] = 15, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1709), 1, - anon_sym_SEMI, - ACTIONS(1721), 1, - anon_sym_EQ, - ACTIONS(4675), 1, - anon_sym_as, - ACTIONS(4677), 1, - anon_sym_LBRACE, - ACTIONS(4679), 1, - anon_sym_COMMA, - ACTIONS(4681), 1, + ACTIONS(4657), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4665), 1, anon_sym_LBRACK, - ACTIONS(4693), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4695), 1, - anon_sym_DASH_DASH, - ACTIONS(4697), 1, + ACTIONS(4671), 1, anon_sym_QMARK, - ACTIONS(4699), 1, + ACTIONS(4673), 1, anon_sym_BANG, - ACTIONS(4701), 1, - anon_sym_LBRACK2, - ACTIONS(4703), 1, - anon_sym_AMP_AMP, - ACTIONS(4705), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4707), 1, - anon_sym_or, - ACTIONS(4709), 1, - anon_sym_POUND_LBRACK, - STATE(1515), 1, - sym_block, - STATE(1977), 1, + STATE(1821), 1, sym_or_block, - STATE(1984), 1, + STATE(1900), 1, sym_argument_list, - STATE(3275), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4284), 1, + STATE(4297), 1, sym_type_parameters, - ACTIONS(4673), 2, + ACTIONS(4653), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4687), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4711), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4713), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1665), 2, + ACTIONS(4675), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1706), 2, sym_line_comment, sym_block_comment, - ACTIONS(4683), 4, - anon_sym_PIPE, + ACTIONS(4659), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4689), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4685), 8, + ACTIONS(4661), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -192997,7 +196534,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3488), 13, + ACTIONS(1767), 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, @@ -193011,79 +196570,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4751] = 32, - ACTIONS(3), 1, + [4906] = 17, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1709), 1, - anon_sym_SEMI, - ACTIONS(1721), 1, - anon_sym_EQ, - ACTIONS(4675), 1, - anon_sym_as, - ACTIONS(4679), 1, - anon_sym_COMMA, - ACTIONS(4681), 1, + ACTIONS(4657), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4665), 1, anon_sym_LBRACK, - ACTIONS(4693), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4695), 1, - anon_sym_DASH_DASH, - ACTIONS(4697), 1, + ACTIONS(4671), 1, anon_sym_QMARK, - ACTIONS(4699), 1, + ACTIONS(4673), 1, anon_sym_BANG, - ACTIONS(4701), 1, - anon_sym_LBRACK2, - ACTIONS(4703), 1, - anon_sym_AMP_AMP, - ACTIONS(4705), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4707), 1, - anon_sym_or, - ACTIONS(4709), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4715), 1, - anon_sym_LBRACE, - STATE(1977), 1, + STATE(1821), 1, sym_or_block, - STATE(1984), 1, + STATE(1900), 1, sym_argument_list, - STATE(3275), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3692), 1, - sym_block, - STATE(4284), 1, + STATE(4297), 1, sym_type_parameters, - ACTIONS(4673), 2, + ACTIONS(4653), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4687), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4711), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4713), 2, + ACTIONS(4675), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4685), 2, anon_sym_in, anon_sym_BANGin, - STATE(1666), 2, + STATE(1707), 2, sym_line_comment, sym_block_comment, - ACTIONS(4683), 4, - anon_sym_PIPE, + ACTIONS(4659), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4689), 4, + ACTIONS(4663), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4685), 8, + ACTIONS(4661), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -193092,7 +196622,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3488), 13, + ACTIONS(1767), 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, @@ -193106,19 +196650,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4878] = 6, + [5003] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2060), 1, + ACTIONS(1851), 1, anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LBRACE, - STATE(1667), 2, + ACTIONS(4741), 1, + anon_sym_DOLLARelse, + STATE(1708), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 56, + ACTIONS(1853), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193128,7 +196672,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -193145,6 +196688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -193175,43 +196719,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4953] = 13, + [5078] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4631), 1, - anon_sym_LPAREN, - ACTIONS(4639), 1, + ACTIONS(1845), 1, + anon_sym_LBRACE, + ACTIONS(2641), 1, anon_sym_LBRACK, - ACTIONS(4645), 1, - anon_sym_QMARK, - ACTIONS(4647), 1, - anon_sym_BANG, - STATE(1780), 1, - sym_or_block, - STATE(1843), 1, - sym_argument_list, - STATE(4302), 1, - sym_type_parameters, - ACTIONS(4627), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4649), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(1668), 2, + STATE(1709), 2, sym_line_comment, sym_block_comment, - ACTIONS(1783), 47, + ACTIONS(2643), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -193223,10 +196752,16 @@ 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_PIPE, + 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, @@ -193234,6 +196769,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, @@ -193251,80 +196788,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5042] = 24, + [5153] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4629), 1, - anon_sym_as, - ACTIONS(4631), 1, - anon_sym_LPAREN, - ACTIONS(4639), 1, + ACTIONS(2632), 1, anon_sym_LBRACK, - ACTIONS(4641), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4643), 1, - anon_sym_DASH_DASH, - ACTIONS(4645), 1, - anon_sym_QMARK, - ACTIONS(4647), 1, - anon_sym_BANG, - ACTIONS(4651), 1, - anon_sym_AMP_AMP, - ACTIONS(4653), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4655), 1, - anon_sym_or, - STATE(1780), 1, - sym_or_block, - STATE(1843), 1, - sym_argument_list, - STATE(4302), 1, - sym_type_parameters, - ACTIONS(4627), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4649), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4657), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4659), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1669), 2, + STATE(1710), 2, sym_line_comment, sym_block_comment, - ACTIONS(4633), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4637), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4635), 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(1765), 19, + ACTIONS(2627), 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, @@ -193338,17 +196820,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5153] = 5, + ACTIONS(2629), 35, + anon_sym_DOT, + anon_sym_as, + 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_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_PIPE, + anon_sym_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, + [5227] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3050), 1, + ACTIONS(3064), 1, anon_sym_LBRACK, - STATE(1670), 2, + STATE(1711), 2, sym_line_comment, sym_block_comment, - ACTIONS(3052), 56, + ACTIONS(3066), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193358,7 +196876,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -193375,6 +196892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -193405,17 +196923,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5225] = 5, + [5299] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2451), 1, + ACTIONS(2385), 1, anon_sym_LBRACK, - STATE(1671), 2, + STATE(1712), 2, sym_line_comment, sym_block_comment, - ACTIONS(2453), 56, + ACTIONS(2387), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193425,7 +196943,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -193442,6 +196959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -193472,17 +196990,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5297] = 5, + [5371] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2505), 1, + ACTIONS(2381), 1, anon_sym_LBRACK, - STATE(1672), 2, + STATE(1713), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 56, + ACTIONS(2383), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193492,7 +197010,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -193509,6 +197026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -193539,17 +197057,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5369] = 5, + [5443] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2861), 1, + ACTIONS(2325), 1, anon_sym_LBRACK, - STATE(1673), 2, + STATE(1714), 2, sym_line_comment, sym_block_comment, - ACTIONS(2863), 56, + ACTIONS(2327), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193559,7 +197077,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -193576,73 +197093,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - [5441] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2881), 1, - anon_sym_LBRACK, - STATE(1674), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2883), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -193673,17 +197124,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5513] = 5, + [5515] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2885), 1, + ACTIONS(2109), 1, anon_sym_LBRACK, - STATE(1675), 2, + STATE(1715), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 56, + ACTIONS(2111), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193693,7 +197144,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -193710,73 +197160,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - [5585] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2437), 1, - anon_sym_LBRACK, - STATE(1676), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2439), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -193807,17 +197191,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5657] = 5, + [5587] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3009), 1, + ACTIONS(2189), 1, anon_sym_LBRACK, - STATE(1677), 2, + STATE(1716), 2, sym_line_comment, sym_block_comment, - ACTIONS(3011), 56, + ACTIONS(2191), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193827,7 +197211,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -193844,6 +197227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -193874,17 +197258,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5729] = 5, + [5659] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2113), 1, + ACTIONS(2365), 1, anon_sym_LBRACK, - STATE(1678), 2, + STATE(1717), 2, sym_line_comment, sym_block_comment, - ACTIONS(2115), 56, + ACTIONS(2367), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193894,7 +197278,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -193911,6 +197294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -193941,17 +197325,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5801] = 5, + [5731] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2777), 1, + ACTIONS(2743), 1, anon_sym_LBRACK, - STATE(1679), 2, + STATE(1718), 2, sym_line_comment, sym_block_comment, - ACTIONS(2779), 56, + ACTIONS(2745), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193961,7 +197345,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -193978,6 +197361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -194008,17 +197392,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5873] = 5, + [5803] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2773), 1, + ACTIONS(2497), 1, anon_sym_LBRACK, - STATE(1680), 2, + ACTIONS(4743), 1, + anon_sym_BANG, + STATE(1719), 2, sym_line_comment, sym_block_comment, - ACTIONS(2775), 56, + ACTIONS(2499), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194028,7 +197414,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -194044,7 +197429,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_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -194075,17 +197460,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5945] = 5, + [5877] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2255), 1, + ACTIONS(2935), 1, anon_sym_LBRACK, - STATE(1681), 2, + STATE(1720), 2, sym_line_comment, sym_block_comment, - ACTIONS(2257), 56, + ACTIONS(2937), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194095,7 +197480,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -194112,6 +197496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -194142,17 +197527,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6017] = 5, + [5949] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2239), 1, + ACTIONS(2319), 1, anon_sym_LBRACK, - STATE(1682), 2, + STATE(1721), 2, sym_line_comment, sym_block_comment, - ACTIONS(2241), 56, + ACTIONS(2321), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194162,7 +197547,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -194179,6 +197563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -194209,17 +197594,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6089] = 5, + [6021] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2889), 1, + ACTIONS(2699), 1, anon_sym_LBRACK, - STATE(1683), 2, + STATE(1722), 2, sym_line_comment, sym_block_comment, - ACTIONS(2891), 56, + ACTIONS(2701), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194229,7 +197614,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -194246,74 +197630,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - [6161] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2885), 1, - anon_sym_LBRACK, - ACTIONS(3039), 1, - anon_sym_DOT, - STATE(1684), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2887), 55, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - 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, @@ -194344,17 +197661,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6235] = 5, + [6093] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, + ACTIONS(2707), 1, anon_sym_LBRACK, - STATE(1685), 2, + STATE(1723), 2, sym_line_comment, sym_block_comment, - ACTIONS(2457), 56, + ACTIONS(2709), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194364,7 +197681,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -194381,6 +197697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -194411,17 +197728,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6307] = 5, + [6165] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2835), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - STATE(1686), 2, + STATE(1724), 2, sym_line_comment, sym_block_comment, - ACTIONS(2837), 56, + ACTIONS(2341), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194431,7 +197748,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -194448,6 +197764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -194478,17 +197795,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6379] = 5, + [6237] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2761), 1, + ACTIONS(2713), 1, anon_sym_LBRACK, - STATE(1687), 2, + STATE(1725), 2, sym_line_comment, sym_block_comment, - ACTIONS(2763), 56, + ACTIONS(2715), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194498,7 +197815,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -194515,6 +197831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -194545,17 +197862,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6451] = 5, + [6309] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2087), 1, + ACTIONS(2725), 1, anon_sym_LBRACK, - STATE(1688), 2, + STATE(1726), 2, sym_line_comment, sym_block_comment, - ACTIONS(2089), 56, + ACTIONS(2727), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194565,7 +197882,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -194582,6 +197898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -194612,17 +197929,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6523] = 5, + [6381] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2461), 1, + ACTIONS(2729), 1, anon_sym_LBRACK, - STATE(1689), 2, + STATE(1727), 2, sym_line_comment, sym_block_comment, - ACTIONS(2463), 56, + ACTIONS(2731), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194632,7 +197949,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -194649,6 +197965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -194679,17 +197996,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6595] = 5, + [6453] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2739), 1, + ACTIONS(2923), 1, anon_sym_LBRACK, - STATE(1690), 2, + STATE(1728), 2, sym_line_comment, sym_block_comment, - ACTIONS(2741), 56, + ACTIONS(2925), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194699,7 +198016,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -194716,6 +198032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -194746,17 +198063,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6667] = 5, + [6525] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2473), 1, + ACTIONS(2927), 1, anon_sym_LBRACK, - STATE(1691), 2, + STATE(1729), 2, sym_line_comment, sym_block_comment, - ACTIONS(2475), 56, + ACTIONS(2929), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194766,7 +198083,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -194783,6 +198099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -194813,19 +198130,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6739] = 6, + [6597] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2583), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(4717), 1, - anon_sym_BANG, - STATE(1692), 2, + STATE(1730), 2, sym_line_comment, sym_block_comment, - ACTIONS(2585), 55, + ACTIONS(2469), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194835,7 +198150,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -194851,6 +198165,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -194881,28 +198197,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6813] = 6, + [6669] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2031), 1, + ACTIONS(2939), 1, anon_sym_LBRACK, - STATE(1693), 2, + STATE(1731), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 4, + ACTIONS(2941), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(2029), 52, 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, @@ -194919,6 +198233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -194949,17 +198264,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6887] = 5, + [6741] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2099), 1, + ACTIONS(1875), 1, anon_sym_LBRACK, - STATE(1694), 2, + STATE(1732), 2, sym_line_comment, sym_block_comment, - ACTIONS(2101), 56, + ACTIONS(1877), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194969,7 +198284,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -194981,15 +198295,14 @@ 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_PIPE, 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, @@ -194999,6 +198312,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, @@ -195016,17 +198331,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6959] = 5, + [6813] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2705), 1, + ACTIONS(1835), 1, anon_sym_LBRACK, - STATE(1695), 2, + STATE(1733), 2, sym_line_comment, sym_block_comment, - ACTIONS(2707), 56, + ACTIONS(1837), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195036,7 +198351,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -195048,15 +198362,14 @@ 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_PIPE, 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, @@ -195066,6 +198379,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, @@ -195083,17 +198398,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7031] = 5, + [6885] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2765), 1, + ACTIONS(2637), 1, anon_sym_LBRACK, - STATE(1696), 2, + STATE(1734), 2, sym_line_comment, sym_block_comment, - ACTIONS(2767), 56, + ACTIONS(2639), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195103,7 +198418,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -195120,6 +198434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -195150,17 +198465,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7103] = 5, + [6957] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2769), 1, + ACTIONS(2399), 1, anon_sym_LBRACK, - STATE(1697), 2, + STATE(1735), 2, sym_line_comment, sym_block_comment, - ACTIONS(2771), 56, + ACTIONS(2401), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195170,7 +198485,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -195187,6 +198501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -195217,17 +198532,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7175] = 5, + [7029] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2849), 1, + ACTIONS(2983), 1, anon_sym_LBRACK, - STATE(1698), 2, + STATE(1736), 2, sym_line_comment, sym_block_comment, - ACTIONS(2851), 56, + ACTIONS(2985), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195237,7 +198552,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -195254,6 +198568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -195284,17 +198599,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7247] = 5, + [7101] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2091), 1, + ACTIONS(2993), 1, anon_sym_LBRACK, - STATE(1699), 2, + STATE(1737), 2, sym_line_comment, sym_block_comment, - ACTIONS(2093), 56, + ACTIONS(2995), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195304,7 +198619,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -195321,6 +198635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -195351,17 +198666,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7319] = 5, + [7173] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2875), 1, + ACTIONS(2997), 1, anon_sym_LBRACK, - STATE(1700), 2, + STATE(1738), 2, sym_line_comment, sym_block_comment, - ACTIONS(2877), 56, + ACTIONS(2999), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195371,7 +198686,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -195388,6 +198702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -195418,17 +198733,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7391] = 5, + [7245] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2803), 1, + ACTIONS(1847), 1, anon_sym_LBRACK, - STATE(1701), 2, + STATE(1739), 2, sym_line_comment, sym_block_comment, - ACTIONS(2805), 56, + ACTIONS(1845), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195438,7 +198753,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -195455,6 +198769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -195485,21 +198800,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7463] = 7, + [7317] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1797), 1, + ACTIONS(3001), 1, anon_sym_LBRACK, - ACTIONS(4719), 1, - anon_sym_else, - STATE(1876), 1, - sym_else_branch, - STATE(1702), 2, + STATE(1740), 2, sym_line_comment, sym_block_comment, - ACTIONS(1799), 54, + ACTIONS(3003), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195509,7 +198820,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -195521,13 +198831,16 @@ 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_PIPE, 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, @@ -195554,31 +198867,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7539] = 7, + [7389] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1803), 1, + ACTIONS(1847), 1, anon_sym_LBRACK, - ACTIONS(4719), 1, - anon_sym_else, - STATE(1877), 1, - sym_else_branch, - STATE(1703), 2, + STATE(1741), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 54, + ACTIONS(1837), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(1845), 52, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -195594,6 +198905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -195623,17 +198935,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7615] = 5, + [7463] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2819), 1, + ACTIONS(2361), 1, anon_sym_LBRACK, - STATE(1704), 2, + STATE(1742), 2, sym_line_comment, sym_block_comment, - ACTIONS(2821), 56, + ACTIONS(2363), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195643,7 +198955,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -195660,6 +198971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -195690,27 +199002,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7687] = 5, + [7535] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2231), 1, + ACTIONS(2935), 1, anon_sym_LBRACK, - STATE(1705), 2, + ACTIONS(3005), 1, + anon_sym_DOT, + STATE(1743), 2, sym_line_comment, sym_block_comment, - ACTIONS(2233), 56, + ACTIONS(2937), 55, 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, @@ -195727,6 +199039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -195757,17 +199070,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7759] = 5, + [7609] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2831), 1, + ACTIONS(1885), 1, anon_sym_LBRACK, - STATE(1706), 2, + STATE(1744), 2, sym_line_comment, sym_block_comment, - ACTIONS(2833), 56, + ACTIONS(1887), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195777,7 +199090,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -195794,6 +199106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -195824,28 +199137,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7831] = 6, + [7681] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2057), 1, - anon_sym_DOT, - ACTIONS(2157), 1, + ACTIONS(3060), 1, anon_sym_LBRACK, - STATE(1707), 2, + STATE(1745), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 55, + ACTIONS(3062), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -195862,6 +199173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -195892,27 +199204,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7905] = 5, + [7753] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1807), 1, + ACTIONS(1889), 1, + anon_sym_DOT, + ACTIONS(2093), 1, anon_sym_LBRACK, - STATE(1708), 2, + STATE(1746), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 56, + ACTIONS(2095), 55, 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, @@ -195924,13 +199236,16 @@ 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_PIPE, 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, @@ -195940,8 +199255,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, @@ -195959,17 +199272,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7977] = 5, + [7827] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1887), 1, + ACTIONS(2423), 1, anon_sym_LBRACK, - STATE(1709), 2, + STATE(1747), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 56, + ACTIONS(2425), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195979,7 +199292,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -195991,13 +199303,16 @@ 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_PIPE, 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, @@ -196007,8 +199322,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, @@ -196026,17 +199339,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8049] = 5, + [7899] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2117), 1, + ACTIONS(2329), 1, anon_sym_LBRACK, - STATE(1710), 2, + STATE(1748), 2, sym_line_comment, sym_block_comment, - ACTIONS(2119), 56, + ACTIONS(2331), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196046,7 +199359,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -196063,6 +199375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -196093,43 +199406,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8121] = 6, + [7971] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2142), 1, + ACTIONS(2335), 1, anon_sym_LBRACK, - STATE(1711), 2, + STATE(1749), 2, sym_line_comment, sym_block_comment, - ACTIONS(2137), 21, + ACTIONS(2337), 56, 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(2139), 35, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -196141,13 +199437,16 @@ 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_PIPE, 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, @@ -196161,30 +199460,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [8195] = 6, + 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, + [8043] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2031), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(1712), 2, + STATE(1750), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 4, + ACTIONS(2449), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(2029), 52, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -196196,13 +199504,16 @@ 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_PIPE, 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, @@ -196229,17 +199540,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8269] = 5, + [8115] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2103), 1, + ACTIONS(2431), 1, anon_sym_LBRACK, - STATE(1713), 2, + STATE(1751), 2, sym_line_comment, sym_block_comment, - ACTIONS(2105), 56, + ACTIONS(2433), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196249,7 +199560,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -196266,6 +199576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -196296,27 +199607,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8341] = 5, + [8187] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2125), 1, + ACTIONS(1847), 1, anon_sym_LBRACK, - STATE(1714), 2, + STATE(1752), 2, sym_line_comment, sym_block_comment, - ACTIONS(2127), 56, + ACTIONS(1837), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(1845), 52, 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, @@ -196333,6 +199644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -196363,17 +199675,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8413] = 5, + [8261] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2121), 1, + ACTIONS(2439), 1, anon_sym_LBRACK, - STATE(1715), 2, + STATE(1753), 2, sym_line_comment, sym_block_comment, - ACTIONS(2123), 56, + ACTIONS(2441), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196383,7 +199695,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -196400,6 +199711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -196430,17 +199742,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8485] = 5, + [8333] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2095), 1, + ACTIONS(1803), 1, anon_sym_LBRACK, - STATE(1716), 2, + ACTIONS(4745), 1, + anon_sym_else, + STATE(1860), 1, + sym_else_branch, + STATE(1754), 2, sym_line_comment, sym_block_comment, - ACTIONS(2097), 56, + ACTIONS(1805), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196450,7 +199766,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -196462,15 +199777,14 @@ 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_PIPE, 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, @@ -196497,17 +199811,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8557] = 5, + [8409] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2161), 1, + ACTIONS(2897), 1, anon_sym_LBRACK, - STATE(1717), 2, + STATE(1755), 2, sym_line_comment, sym_block_comment, - ACTIONS(2163), 56, + ACTIONS(2899), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196517,7 +199831,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -196534,6 +199847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -196564,17 +199878,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8629] = 5, + [8481] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2429), 1, + ACTIONS(2455), 1, anon_sym_LBRACK, - STATE(1718), 2, + STATE(1756), 2, sym_line_comment, sym_block_comment, - ACTIONS(2431), 56, + ACTIONS(2457), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196584,7 +199898,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -196601,6 +199914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -196631,17 +199945,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8701] = 5, + [8553] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2545), 1, + ACTIONS(2463), 1, anon_sym_LBRACK, - STATE(1719), 2, + STATE(1757), 2, sym_line_comment, sym_block_comment, - ACTIONS(2547), 56, + ACTIONS(2465), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196651,7 +199965,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -196668,6 +199981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -196698,17 +200012,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8773] = 5, + [8625] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2469), 1, + ACTIONS(2619), 1, anon_sym_LBRACK, - STATE(1720), 2, + STATE(1758), 2, sym_line_comment, sym_block_comment, - ACTIONS(2471), 56, + ACTIONS(2621), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196718,7 +200032,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -196735,6 +200048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -196765,17 +200079,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8845] = 5, + [8697] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2157), 1, + ACTIONS(2971), 1, anon_sym_LBRACK, - STATE(1721), 2, + STATE(1759), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 56, + ACTIONS(2973), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196785,7 +200099,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -196802,6 +200115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -196832,17 +200146,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8917] = 5, + [8769] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2153), 1, + ACTIONS(2721), 1, anon_sym_LBRACK, - STATE(1722), 2, + STATE(1760), 2, sym_line_comment, sym_block_comment, - ACTIONS(2155), 56, + ACTIONS(2723), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196852,7 +200166,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -196869,6 +200182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -196899,17 +200213,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8989] = 5, + [8841] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2053), 1, + ACTIONS(2931), 1, anon_sym_LBRACK, - STATE(1723), 2, + STATE(1761), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 56, + ACTIONS(2933), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196919,7 +200233,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -196936,6 +200249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -196966,17 +200280,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9061] = 5, + [8913] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2149), 1, + ACTIONS(2747), 1, anon_sym_LBRACK, - STATE(1724), 2, + STATE(1762), 2, sym_line_comment, sym_block_comment, - ACTIONS(2151), 56, + ACTIONS(2749), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196986,7 +200300,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -197003,6 +200316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -197033,17 +200347,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9133] = 5, + [8985] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2845), 1, + ACTIONS(2763), 1, anon_sym_LBRACK, - STATE(1725), 2, + STATE(1763), 2, sym_line_comment, sym_block_comment, - ACTIONS(2847), 56, + ACTIONS(2765), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197053,7 +200367,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -197070,6 +200383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -197100,17 +200414,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9205] = 5, + [9057] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2717), 1, + ACTIONS(2769), 1, anon_sym_LBRACK, - STATE(1726), 2, + STATE(1764), 2, sym_line_comment, sym_block_comment, - ACTIONS(2719), 56, + ACTIONS(2771), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197120,7 +200434,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -197137,6 +200450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -197167,17 +200481,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9277] = 5, + [9129] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2723), 1, + ACTIONS(2419), 1, anon_sym_LBRACK, - STATE(1727), 2, + STATE(1765), 2, sym_line_comment, sym_block_comment, - ACTIONS(2725), 56, + ACTIONS(2421), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197187,7 +200501,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -197204,6 +200517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -197234,17 +200548,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9349] = 5, + [9201] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2727), 1, + ACTIONS(3052), 1, anon_sym_LBRACK, - STATE(1728), 2, + STATE(1766), 2, sym_line_comment, sym_block_comment, - ACTIONS(2729), 56, + ACTIONS(3054), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197254,7 +200568,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -197271,73 +200584,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - [9421] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2735), 1, - anon_sym_LBRACK, - STATE(1729), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2737), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -197368,17 +200615,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9493] = 5, + [9273] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2743), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - STATE(1730), 2, + STATE(1767), 2, sym_line_comment, sym_block_comment, - ACTIONS(2745), 56, + ACTIONS(3046), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197388,7 +200635,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -197405,73 +200651,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - [9565] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2031), 1, - anon_sym_LBRACK, - STATE(1731), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2029), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -197502,17 +200682,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9637] = 5, + [9345] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2747), 1, + ACTIONS(2947), 1, anon_sym_LBRACK, - STATE(1732), 2, + STATE(1768), 2, sym_line_comment, sym_block_comment, - ACTIONS(2749), 56, + ACTIONS(2949), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197522,7 +200702,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -197539,6 +200718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -197569,94 +200749,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9709] = 5, + [9417] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2799), 1, + ACTIONS(2632), 1, anon_sym_LBRACK, - STATE(1733), 2, + STATE(1769), 2, sym_line_comment, sym_block_comment, - ACTIONS(2801), 56, + ACTIONS(2627), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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, - [9781] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2807), 1, - anon_sym_LBRACK, - STATE(1734), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2809), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2629), 50, 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, @@ -197668,15 +200783,14 @@ 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_PIPE, 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, @@ -197703,17 +200817,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9853] = 5, + [9491] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2811), 1, + ACTIONS(3016), 1, anon_sym_LBRACK, - STATE(1735), 2, + STATE(1770), 2, sym_line_comment, sym_block_comment, - ACTIONS(2813), 56, + ACTIONS(3018), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197723,7 +200837,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -197740,6 +200853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -197770,17 +200884,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9925] = 5, + [9563] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2131), 1, + ACTIONS(3012), 1, anon_sym_LBRACK, - STATE(1736), 2, + STATE(1771), 2, sym_line_comment, sym_block_comment, - ACTIONS(2133), 56, + ACTIONS(3014), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197790,7 +200904,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -197807,6 +200920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -197837,17 +200951,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9997] = 5, + [9635] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2815), 1, + ACTIONS(2955), 1, anon_sym_LBRACK, - STATE(1737), 2, + STATE(1772), 2, sym_line_comment, sym_block_comment, - ACTIONS(2817), 56, + ACTIONS(2957), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197857,7 +200971,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -197874,6 +200987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -197904,17 +201018,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10069] = 5, + [9707] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2857), 1, + ACTIONS(2313), 1, anon_sym_LBRACK, - STATE(1738), 2, + STATE(1773), 2, sym_line_comment, sym_block_comment, - ACTIONS(2859), 56, + ACTIONS(2315), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197924,7 +201038,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -197941,6 +201054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -197971,17 +201085,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10141] = 5, + [9779] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2841), 1, + ACTIONS(2343), 1, anon_sym_LBRACK, - STATE(1739), 2, + STATE(1774), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 56, + ACTIONS(2345), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197991,7 +201105,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -198008,6 +201121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -198038,17 +201152,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10213] = 5, + [9851] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3013), 1, + ACTIONS(2975), 1, anon_sym_LBRACK, - STATE(1740), 2, + STATE(1775), 2, sym_line_comment, sym_block_comment, - ACTIONS(3015), 56, + ACTIONS(2977), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198058,7 +201172,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -198075,6 +201188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -198105,17 +201219,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10285] = 5, + [9923] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3019), 1, + ACTIONS(2349), 1, anon_sym_LBRACK, - STATE(1741), 2, + STATE(1776), 2, sym_line_comment, sym_block_comment, - ACTIONS(3021), 56, + ACTIONS(2351), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198125,7 +201239,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -198142,6 +201255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -198172,17 +201286,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10357] = 5, + [9995] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3064), 1, + ACTIONS(2103), 1, anon_sym_LBRACK, - STATE(1742), 2, + STATE(1777), 2, sym_line_comment, sym_block_comment, - ACTIONS(3066), 56, + ACTIONS(2105), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198192,7 +201306,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -198209,6 +201322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -198239,17 +201353,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10429] = 5, + [10067] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2853), 1, + ACTIONS(1797), 1, anon_sym_LBRACK, - STATE(1743), 2, + ACTIONS(4745), 1, + anon_sym_else, + STATE(1859), 1, + sym_else_branch, + STATE(1778), 2, sym_line_comment, sym_block_comment, - ACTIONS(2855), 56, + ACTIONS(1799), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198259,7 +201377,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -198271,15 +201388,14 @@ 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_PIPE, 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, @@ -198306,17 +201422,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10501] = 5, + [10143] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3023), 1, + ACTIONS(2681), 1, anon_sym_LBRACK, - STATE(1744), 2, + STATE(1779), 2, sym_line_comment, sym_block_comment, - ACTIONS(3025), 56, + ACTIONS(2683), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198326,7 +201442,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -198343,6 +201458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -198373,17 +201489,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10573] = 5, + [10215] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3027), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - STATE(1745), 2, + STATE(1780), 2, sym_line_comment, sym_block_comment, - ACTIONS(3029), 56, + ACTIONS(2095), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198393,7 +201509,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -198410,6 +201525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -198440,30 +201556,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10645] = 6, + [10287] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2142), 1, + ACTIONS(2717), 1, anon_sym_LBRACK, - STATE(1746), 2, + STATE(1781), 2, sym_line_comment, sym_block_comment, - ACTIONS(2137), 6, + ACTIONS(2719), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_LT_DASH, - ACTIONS(2139), 50, 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, @@ -198475,13 +201587,16 @@ 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_PIPE, 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, @@ -198508,17 +201623,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10719] = 5, + [10359] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3054), 1, + ACTIONS(2655), 1, anon_sym_LBRACK, - STATE(1747), 2, + STATE(1782), 2, sym_line_comment, sym_block_comment, - ACTIONS(3056), 56, + ACTIONS(2657), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198528,7 +201643,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -198545,6 +201659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -198575,17 +201690,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10791] = 5, + [10431] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2145), 1, + ACTIONS(2967), 1, anon_sym_LBRACK, - STATE(1748), 2, + STATE(1783), 2, sym_line_comment, sym_block_comment, - ACTIONS(2147), 56, + ACTIONS(2969), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198595,7 +201710,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -198612,6 +201726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -198642,17 +201757,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10863] = 5, + [10503] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2263), 1, + ACTIONS(2355), 1, anon_sym_LBRACK, - STATE(1749), 2, + STATE(1784), 2, sym_line_comment, sym_block_comment, - ACTIONS(2265), 56, + ACTIONS(2357), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198662,7 +201777,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -198679,6 +201793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -198709,17 +201824,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10935] = 5, + [10575] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(2651), 1, anon_sym_LBRACK, - STATE(1750), 2, + STATE(1785), 2, sym_line_comment, sym_block_comment, - ACTIONS(3046), 56, + ACTIONS(2653), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198729,7 +201844,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -198746,6 +201860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -198776,95 +201891,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11007] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4681), 1, - anon_sym_LPAREN, - ACTIONS(4691), 1, - anon_sym_LBRACK, - ACTIONS(4697), 1, - anon_sym_QMARK, - ACTIONS(4699), 1, - anon_sym_BANG, - ACTIONS(4701), 1, - anon_sym_LBRACK2, - ACTIONS(4709), 1, - anon_sym_POUND_LBRACK, - STATE(1977), 1, - sym_or_block, - STATE(1984), 1, - sym_argument_list, - STATE(4284), 1, - sym_type_parameters, - ACTIONS(4673), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1751), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1783), 15, - anon_sym_EQ, - 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(1781), 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, - 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, - [11098] = 6, + [10647] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1807), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(2029), 1, - anon_sym_LBRACE, - STATE(1752), 2, + STATE(1786), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 54, + ACTIONS(2647), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198874,7 +201911,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -198886,13 +201922,16 @@ 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_PIPE, 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, @@ -198919,19 +201958,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11171] = 6, + [10719] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2029), 1, - anon_sym_LBRACE, - ACTIONS(2713), 1, + ACTIONS(2489), 1, anon_sym_LBRACK, - STATE(1753), 2, + STATE(1787), 2, sym_line_comment, sym_block_comment, - ACTIONS(2715), 54, + ACTIONS(2491), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198941,7 +201978,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -198953,13 +201989,16 @@ 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_PIPE, 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, @@ -198986,19 +202025,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11244] = 6, + [10791] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2039), 1, + ACTIONS(2477), 1, anon_sym_LBRACK, - ACTIONS(4721), 1, - anon_sym_DOLLARelse, - STATE(1754), 2, + STATE(1788), 2, sym_line_comment, sym_block_comment, - ACTIONS(2041), 54, + ACTIONS(2479), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199008,7 +202045,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -199020,13 +202056,16 @@ 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_PIPE, 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, @@ -199053,97 +202092,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11317] = 17, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4725), 1, - anon_sym_LPAREN, - ACTIONS(4731), 1, - anon_sym_LBRACK, - ACTIONS(4733), 1, - anon_sym_QMARK, - ACTIONS(4735), 1, - anon_sym_BANG, - ACTIONS(4737), 1, - anon_sym_LBRACK2, - ACTIONS(4739), 1, - anon_sym_POUND_LBRACK, - STATE(2073), 1, - sym_argument_list, - STATE(2074), 1, - sym_or_block, - STATE(4147), 1, - sym_type_parameters, - ACTIONS(4723), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1755), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1787), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4727), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4729), 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(1785), 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_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, - [11412] = 6, + [10863] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2060), 1, + ACTIONS(2473), 1, anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LBRACE, - STATE(1756), 2, + STATE(1789), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 54, + ACTIONS(2475), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199153,7 +202112,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -199165,13 +202123,16 @@ 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_PIPE, 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, @@ -199198,76 +202159,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11485] = 21, - ACTIONS(3), 1, + [10935] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1791), 1, - anon_sym_EQ, - ACTIONS(4725), 1, - anon_sym_LPAREN, - ACTIONS(4731), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(4733), 1, - anon_sym_QMARK, - ACTIONS(4735), 1, - anon_sym_BANG, - ACTIONS(4737), 1, - anon_sym_LBRACK2, - ACTIONS(4739), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - STATE(2073), 1, - sym_argument_list, - STATE(2074), 1, - sym_or_block, - STATE(4147), 1, - sym_type_parameters, - ACTIONS(4723), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4741), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4747), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1757), 2, + STATE(1790), 2, sym_line_comment, sym_block_comment, - ACTIONS(4727), 4, - anon_sym_PIPE, + ACTIONS(2445), 56, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4743), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4729), 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_PIPE, + 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(1789), 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_AMP_AMP, anon_sym_PIPE_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, @@ -199280,54 +202225,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11588] = 20, + anon_sym_COLON_EQ, + [11007] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1791), 1, + ACTIONS(1767), 1, anon_sym_EQ, - ACTIONS(4725), 1, + ACTIONS(4749), 1, anon_sym_LPAREN, - ACTIONS(4731), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(4733), 1, + ACTIONS(4761), 1, anon_sym_QMARK, - ACTIONS(4735), 1, + ACTIONS(4763), 1, anon_sym_BANG, - ACTIONS(4737), 1, + ACTIONS(4765), 1, anon_sym_LBRACK2, - ACTIONS(4739), 1, + ACTIONS(4767), 1, anon_sym_POUND_LBRACK, - STATE(2073), 1, + STATE(2077), 1, sym_argument_list, - STATE(2074), 1, + STATE(2078), 1, sym_or_block, - STATE(4147), 1, + STATE(4272), 1, sym_type_parameters, - ACTIONS(4723), 2, + ACTIONS(4747), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4741), 2, + ACTIONS(4755), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4747), 2, + ACTIONS(4769), 2, anon_sym_in, anon_sym_BANGin, - STATE(1758), 2, + STATE(1791), 2, sym_line_comment, sym_block_comment, - ACTIONS(4727), 4, - anon_sym_PIPE, + ACTIONS(4751), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4743), 4, + ACTIONS(4757), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4729), 8, + ACTIONS(4753), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -199336,7 +202282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1789), 24, + ACTIONS(1795), 24, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -199361,45 +202307,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11689] = 17, + [11108] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4725), 1, + ACTIONS(4749), 1, anon_sym_LPAREN, - ACTIONS(4731), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(4733), 1, + ACTIONS(4761), 1, anon_sym_QMARK, - ACTIONS(4735), 1, + ACTIONS(4763), 1, anon_sym_BANG, - ACTIONS(4737), 1, + ACTIONS(4765), 1, anon_sym_LBRACK2, - ACTIONS(4739), 1, + ACTIONS(4767), 1, anon_sym_POUND_LBRACK, - STATE(2073), 1, + STATE(2077), 1, sym_argument_list, - STATE(2074), 1, + STATE(2078), 1, sym_or_block, - STATE(4147), 1, + STATE(4272), 1, sym_type_parameters, - ACTIONS(4723), 2, + ACTIONS(4747), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1759), 2, + STATE(1792), 2, sym_line_comment, sym_block_comment, - ACTIONS(1791), 3, + ACTIONS(1767), 7, anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4727), 4, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, - ACTIONS(4729), 8, + ACTIONS(4753), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -199408,7 +202353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1789), 30, + ACTIONS(1795), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -199439,60 +202384,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11784] = 6, - ACTIONS(497), 1, + [11201] = 27, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1897), 1, + ACTIONS(1775), 1, + anon_sym_EQ, + ACTIONS(4749), 1, + anon_sym_LPAREN, + ACTIONS(4759), 1, anon_sym_LBRACK, - STATE(1810), 1, + ACTIONS(4761), 1, + anon_sym_QMARK, + ACTIONS(4763), 1, + anon_sym_BANG, + ACTIONS(4765), 1, + anon_sym_LBRACK2, + ACTIONS(4767), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4771), 1, + anon_sym_as, + ACTIONS(4773), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4775), 1, + anon_sym_DASH_DASH, + ACTIONS(4777), 1, + anon_sym_AMP_AMP, + ACTIONS(4779), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4781), 1, + anon_sym_or, + STATE(2077), 1, + sym_argument_list, + STATE(2078), 1, + sym_or_block, + STATE(4272), 1, sym_type_parameters, - STATE(1760), 2, + ACTIONS(4747), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4755), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4769), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(4783), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(1793), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(4751), 4, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4757), 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(4753), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(1773), 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, @@ -199505,54 +202472,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, - [11857] = 16, + [11316] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4725), 1, + ACTIONS(4703), 1, anon_sym_LPAREN, - ACTIONS(4731), 1, + ACTIONS(4713), 1, anon_sym_LBRACK, - ACTIONS(4733), 1, + ACTIONS(4719), 1, anon_sym_QMARK, - ACTIONS(4735), 1, + ACTIONS(4721), 1, anon_sym_BANG, - ACTIONS(4737), 1, + ACTIONS(4723), 1, anon_sym_LBRACK2, - ACTIONS(4739), 1, + ACTIONS(4731), 1, anon_sym_POUND_LBRACK, - STATE(2073), 1, - sym_argument_list, - STATE(2074), 1, + STATE(1987), 1, sym_or_block, - STATE(4147), 1, + STATE(1988), 1, + sym_argument_list, + STATE(4173), 1, sym_type_parameters, - ACTIONS(4723), 2, + ACTIONS(4695), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1761), 2, + STATE(1794), 2, sym_line_comment, sym_block_comment, - ACTIONS(1791), 7, + ACTIONS(1767), 15, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, - ACTIONS(4729), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1789), 30, + ACTIONS(1795), 30, + anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -199560,10 +202526,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, @@ -199583,56 +202547,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11950] = 6, - ACTIONS(497), 1, + anon_sym_COLON_EQ, + [11407] = 17, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2077), 1, + ACTIONS(4703), 1, + anon_sym_LPAREN, + ACTIONS(4713), 1, anon_sym_LBRACK, - ACTIONS(4749), 1, - anon_sym_DOLLARelse, - STATE(1762), 2, + ACTIONS(4719), 1, + anon_sym_QMARK, + ACTIONS(4721), 1, + anon_sym_BANG, + ACTIONS(4723), 1, + anon_sym_LBRACK2, + ACTIONS(4731), 1, + anon_sym_POUND_LBRACK, + STATE(1987), 1, + sym_or_block, + STATE(1988), 1, + sym_argument_list, + STATE(4173), 1, + sym_type_parameters, + ACTIONS(4695), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1795), 2, sym_line_comment, sym_block_comment, - ACTIONS(2079), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1767), 3, anon_sym_EQ, - anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4705), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4707), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1795), 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, @@ -199650,45 +202626,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12023] = 17, + [11502] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4681), 1, + ACTIONS(1767), 1, + anon_sym_EQ, + ACTIONS(4703), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4713), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4719), 1, anon_sym_QMARK, - ACTIONS(4699), 1, + ACTIONS(4721), 1, anon_sym_BANG, - ACTIONS(4701), 1, + ACTIONS(4723), 1, anon_sym_LBRACK2, - ACTIONS(4709), 1, + ACTIONS(4731), 1, anon_sym_POUND_LBRACK, - STATE(1977), 1, + STATE(1987), 1, sym_or_block, - STATE(1984), 1, + STATE(1988), 1, sym_argument_list, - STATE(4284), 1, + STATE(4173), 1, sym_type_parameters, - ACTIONS(4673), 2, + ACTIONS(4695), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1763), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1787), 3, - anon_sym_EQ, + ACTIONS(4709), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4683), 4, - anon_sym_PIPE, + ACTIONS(4735), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1796), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4705), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4685), 8, + ACTIONS(4711), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4707), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -199697,15 +202682,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1785), 30, + ACTIONS(1795), 24, 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, @@ -199713,8 +202694,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -199728,56 +202707,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12118] = 21, + [11603] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1791), 1, + ACTIONS(1767), 1, anon_sym_EQ, - ACTIONS(4681), 1, + ACTIONS(4703), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4713), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4719), 1, anon_sym_QMARK, - ACTIONS(4699), 1, + ACTIONS(4721), 1, anon_sym_BANG, - ACTIONS(4701), 1, + ACTIONS(4723), 1, anon_sym_LBRACK2, - ACTIONS(4703), 1, + ACTIONS(4725), 1, anon_sym_AMP_AMP, - ACTIONS(4709), 1, + ACTIONS(4731), 1, anon_sym_POUND_LBRACK, - STATE(1977), 1, + STATE(1987), 1, sym_or_block, - STATE(1984), 1, + STATE(1988), 1, sym_argument_list, - STATE(4284), 1, + STATE(4173), 1, sym_type_parameters, - ACTIONS(4673), 2, + ACTIONS(4695), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4687), 2, + ACTIONS(4709), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4713), 2, + ACTIONS(4735), 2, anon_sym_in, anon_sym_BANGin, - STATE(1764), 2, + STATE(1797), 2, sym_line_comment, sym_block_comment, - ACTIONS(4683), 4, - anon_sym_PIPE, + ACTIONS(4705), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4689), 4, + ACTIONS(4711), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4685), 8, + ACTIONS(4707), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -199786,7 +202765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1789), 23, + ACTIONS(1795), 23, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -199810,54 +202789,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12221] = 20, + [11706] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1791), 1, - anon_sym_EQ, - ACTIONS(4681), 1, + ACTIONS(4703), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4713), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4719), 1, anon_sym_QMARK, - ACTIONS(4699), 1, + ACTIONS(4721), 1, anon_sym_BANG, - ACTIONS(4701), 1, + ACTIONS(4723), 1, anon_sym_LBRACK2, - ACTIONS(4709), 1, + ACTIONS(4731), 1, anon_sym_POUND_LBRACK, - STATE(1977), 1, + STATE(1987), 1, sym_or_block, - STATE(1984), 1, + STATE(1988), 1, sym_argument_list, - STATE(4284), 1, + STATE(4173), 1, sym_type_parameters, - ACTIONS(4673), 2, + ACTIONS(4695), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4687), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4713), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1765), 2, + STATE(1798), 2, sym_line_comment, sym_block_comment, - ACTIONS(4683), 4, - anon_sym_PIPE, + ACTIONS(1793), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4705), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4689), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4685), 8, + ACTIONS(4707), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -199866,11 +202836,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1789), 24, + ACTIONS(1791), 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, @@ -199878,6 +202852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -199891,69 +202867,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12322] = 27, + [11801] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1765), 1, + ACTIONS(1689), 1, + anon_sym_LBRACE, + ACTIONS(1695), 1, anon_sym_EQ, - ACTIONS(4675), 1, + ACTIONS(4697), 1, anon_sym_as, - ACTIONS(4681), 1, + ACTIONS(4703), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4713), 1, anon_sym_LBRACK, - ACTIONS(4693), 1, + ACTIONS(4715), 1, anon_sym_PLUS_PLUS, - ACTIONS(4695), 1, + ACTIONS(4717), 1, anon_sym_DASH_DASH, - ACTIONS(4697), 1, + ACTIONS(4719), 1, anon_sym_QMARK, - ACTIONS(4699), 1, + ACTIONS(4721), 1, anon_sym_BANG, - ACTIONS(4701), 1, + ACTIONS(4723), 1, anon_sym_LBRACK2, - ACTIONS(4703), 1, + ACTIONS(4725), 1, anon_sym_AMP_AMP, - ACTIONS(4705), 1, + ACTIONS(4727), 1, anon_sym_PIPE_PIPE, - ACTIONS(4707), 1, + ACTIONS(4729), 1, anon_sym_or, - ACTIONS(4709), 1, + ACTIONS(4731), 1, anon_sym_POUND_LBRACK, - STATE(1977), 1, + ACTIONS(4785), 1, + anon_sym_COMMA, + STATE(1987), 1, sym_or_block, - STATE(1984), 1, + STATE(1988), 1, sym_argument_list, - STATE(4284), 1, + STATE(3336), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4173), 1, sym_type_parameters, - ACTIONS(4673), 2, + ACTIONS(4695), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4687), 2, + ACTIONS(4709), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4711), 2, + ACTIONS(4733), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4713), 2, + ACTIONS(4735), 2, anon_sym_in, anon_sym_BANGin, - STATE(1766), 2, + STATE(1799), 2, sym_line_comment, sym_block_comment, - ACTIONS(4683), 4, - anon_sym_PIPE, + ACTIONS(4705), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4689), 4, + ACTIONS(4711), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4685), 8, + ACTIONS(4707), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -199962,10 +202944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 16, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3492), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -199979,67 +202958,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12437] = 17, - ACTIONS(3), 1, + [11922] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4681), 1, - anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(1943), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, - anon_sym_QMARK, - ACTIONS(4699), 1, - anon_sym_BANG, - ACTIONS(4701), 1, - anon_sym_LBRACK2, - ACTIONS(4709), 1, - anon_sym_POUND_LBRACK, - STATE(1977), 1, - sym_or_block, - STATE(1984), 1, - sym_argument_list, - STATE(4284), 1, + STATE(1899), 1, sym_type_parameters, - ACTIONS(4673), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1767), 2, + STATE(1800), 2, sym_line_comment, sym_block_comment, - ACTIONS(1791), 3, + ACTIONS(1945), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4683), 4, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4685), 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(1789), 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_PIPE, + anon_sym_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, @@ -200057,38 +203025,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12532] = 15, - ACTIONS(3), 1, + [11995] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4681), 1, - anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(1835), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, - anon_sym_QMARK, - ACTIONS(4699), 1, - anon_sym_BANG, - ACTIONS(4701), 1, - anon_sym_LBRACK2, - ACTIONS(4709), 1, - anon_sym_POUND_LBRACK, - STATE(1977), 1, - sym_or_block, - STATE(1984), 1, - sym_argument_list, - STATE(4284), 1, - sym_type_parameters, - ACTIONS(4673), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1768), 2, + ACTIONS(1845), 1, + anon_sym_LBRACE, + STATE(1801), 2, sym_line_comment, sym_block_comment, - ACTIONS(1791), 15, + ACTIONS(1837), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -200096,26 +203054,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1789), 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_PIPE, + anon_sym_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, @@ -200133,44 +203092,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12623] = 16, + [12068] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4681), 1, + ACTIONS(1775), 1, + anon_sym_EQ, + ACTIONS(4697), 1, + anon_sym_as, + ACTIONS(4703), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4713), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4715), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4717), 1, + anon_sym_DASH_DASH, + ACTIONS(4719), 1, anon_sym_QMARK, - ACTIONS(4699), 1, + ACTIONS(4721), 1, anon_sym_BANG, - ACTIONS(4701), 1, + ACTIONS(4723), 1, anon_sym_LBRACK2, - ACTIONS(4709), 1, + ACTIONS(4725), 1, + anon_sym_AMP_AMP, + ACTIONS(4727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4729), 1, + anon_sym_or, + ACTIONS(4731), 1, anon_sym_POUND_LBRACK, - STATE(1977), 1, + STATE(1987), 1, sym_or_block, - STATE(1984), 1, + STATE(1988), 1, sym_argument_list, - STATE(4284), 1, + STATE(4173), 1, sym_type_parameters, - ACTIONS(4673), 2, + ACTIONS(4695), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1769), 2, + ACTIONS(4709), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4733), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4735), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1802), 2, sym_line_comment, sym_block_comment, - ACTIONS(1791), 7, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(4705), 4, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4685), 8, + ACTIONS(4711), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4707), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -200179,24 +203163,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1789), 30, + ACTIONS(1773), 16, 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, @@ -200210,38 +203180,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12716] = 15, + [12183] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4725), 1, + ACTIONS(4749), 1, anon_sym_LPAREN, - ACTIONS(4731), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(4733), 1, + ACTIONS(4761), 1, anon_sym_QMARK, - ACTIONS(4735), 1, + ACTIONS(4763), 1, anon_sym_BANG, - ACTIONS(4737), 1, + ACTIONS(4765), 1, anon_sym_LBRACK2, - ACTIONS(4739), 1, + ACTIONS(4767), 1, anon_sym_POUND_LBRACK, - STATE(2073), 1, + STATE(2077), 1, sym_argument_list, - STATE(2074), 1, + STATE(2078), 1, sym_or_block, - STATE(4147), 1, + STATE(4272), 1, sym_type_parameters, - ACTIONS(4723), 2, + ACTIONS(4747), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1770), 2, + STATE(1803), 2, sym_line_comment, sym_block_comment, - ACTIONS(1783), 15, + ACTIONS(1771), 15, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -200249,13 +203218,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1781), 30, + ACTIONS(1769), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -200286,84 +203256,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12807] = 30, - ACTIONS(3), 1, + [12274] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1709), 1, - anon_sym_LBRACE, - ACTIONS(1721), 1, - anon_sym_EQ, - ACTIONS(4675), 1, + ACTIONS(1851), 1, + anon_sym_LBRACK, + ACTIONS(4787), 1, + anon_sym_DOLLARelse, + STATE(1804), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1853), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, - ACTIONS(4681), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4691), 1, - anon_sym_LBRACK, - ACTIONS(4693), 1, + anon_sym_EQ, + 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, - ACTIONS(4695), 1, anon_sym_DASH_DASH, - ACTIONS(4697), 1, anon_sym_QMARK, - ACTIONS(4699), 1, anon_sym_BANG, - ACTIONS(4701), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(4703), 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(4705), 1, anon_sym_PIPE_PIPE, - ACTIONS(4707), 1, anon_sym_or, - ACTIONS(4709), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4751), 1, - anon_sym_COMMA, - STATE(1977), 1, - sym_or_block, - STATE(1984), 1, - sym_argument_list, - STATE(3275), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4284), 1, - sym_type_parameters, - ACTIONS(4673), 2, - anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4687), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4711), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(4713), 2, anon_sym_in, anon_sym_BANGin, - STATE(1771), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4683), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4689), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4685), 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(3488), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -200377,69 +203323,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12928] = 27, + [12347] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1765), 1, - anon_sym_EQ, - ACTIONS(4725), 1, + ACTIONS(4703), 1, anon_sym_LPAREN, - ACTIONS(4731), 1, + ACTIONS(4713), 1, anon_sym_LBRACK, - ACTIONS(4733), 1, + ACTIONS(4719), 1, anon_sym_QMARK, - ACTIONS(4735), 1, + ACTIONS(4721), 1, anon_sym_BANG, - ACTIONS(4737), 1, + ACTIONS(4723), 1, anon_sym_LBRACK2, - ACTIONS(4739), 1, + ACTIONS(4731), 1, anon_sym_POUND_LBRACK, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - ACTIONS(4753), 1, - anon_sym_as, - ACTIONS(4755), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4757), 1, - anon_sym_DASH_DASH, - ACTIONS(4759), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4761), 1, - anon_sym_or, - STATE(2073), 1, - sym_argument_list, - STATE(2074), 1, + STATE(1987), 1, sym_or_block, - STATE(4147), 1, + STATE(1988), 1, + sym_argument_list, + STATE(4173), 1, sym_type_parameters, - ACTIONS(4723), 2, + ACTIONS(4695), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4741), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4747), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(4763), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(1772), 2, + STATE(1805), 2, sym_line_comment, sym_block_comment, - ACTIONS(4727), 4, - anon_sym_PIPE, + ACTIONS(1767), 7, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4743), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4729), 8, + ACTIONS(4707), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -200448,11 +203369,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 16, + ACTIONS(1795), 30, + anon_sym_SEMI, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LT_DASH, + 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, @@ -200465,69 +203399,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13043] = 27, + anon_sym_COLON_EQ, + [12440] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(4725), 1, + ACTIONS(4749), 1, anon_sym_LPAREN, - ACTIONS(4731), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(4733), 1, + ACTIONS(4761), 1, anon_sym_QMARK, - ACTIONS(4735), 1, + ACTIONS(4763), 1, anon_sym_BANG, - ACTIONS(4737), 1, + ACTIONS(4765), 1, anon_sym_LBRACK2, - ACTIONS(4739), 1, + ACTIONS(4767), 1, anon_sym_POUND_LBRACK, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - ACTIONS(4753), 1, - anon_sym_as, - ACTIONS(4755), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4757), 1, - anon_sym_DASH_DASH, - ACTIONS(4759), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4761), 1, - anon_sym_or, - STATE(2073), 1, + STATE(2077), 1, sym_argument_list, - STATE(2074), 1, + STATE(2078), 1, sym_or_block, - STATE(4147), 1, + STATE(4272), 1, sym_type_parameters, - ACTIONS(4723), 2, + ACTIONS(4747), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4741), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4747), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(4763), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(1773), 2, + STATE(1806), 2, sym_line_comment, sym_block_comment, - ACTIONS(4727), 4, - anon_sym_PIPE, + ACTIONS(1793), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4751), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4743), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4729), 8, + ACTIONS(4753), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -200536,11 +203447,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1777), 16, + ACTIONS(1791), 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_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -200553,70 +203478,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13158] = 15, + [12535] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4725), 1, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(4749), 1, anon_sym_LPAREN, - ACTIONS(4731), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(4733), 1, + ACTIONS(4761), 1, anon_sym_QMARK, - ACTIONS(4735), 1, + ACTIONS(4763), 1, anon_sym_BANG, - ACTIONS(4737), 1, + ACTIONS(4765), 1, anon_sym_LBRACK2, - ACTIONS(4739), 1, + ACTIONS(4767), 1, anon_sym_POUND_LBRACK, - STATE(2073), 1, + ACTIONS(4771), 1, + anon_sym_as, + ACTIONS(4773), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4775), 1, + anon_sym_DASH_DASH, + ACTIONS(4777), 1, + anon_sym_AMP_AMP, + ACTIONS(4779), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4781), 1, + anon_sym_or, + STATE(2077), 1, sym_argument_list, - STATE(2074), 1, + STATE(2078), 1, sym_or_block, - STATE(4147), 1, + STATE(4272), 1, sym_type_parameters, - ACTIONS(4723), 2, + ACTIONS(4747), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1774), 2, + ACTIONS(4755), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4769), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(4783), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(1807), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 15, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(4751), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4757), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4753), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1767), 30, - anon_sym_as, + ACTIONS(1777), 16, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -200629,69 +203566,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13249] = 27, + [12650] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(1779), 1, anon_sym_EQ, - ACTIONS(4675), 1, + ACTIONS(4697), 1, anon_sym_as, - ACTIONS(4681), 1, + ACTIONS(4703), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4713), 1, anon_sym_LBRACK, - ACTIONS(4693), 1, + ACTIONS(4715), 1, anon_sym_PLUS_PLUS, - ACTIONS(4695), 1, + ACTIONS(4717), 1, anon_sym_DASH_DASH, - ACTIONS(4697), 1, + ACTIONS(4719), 1, anon_sym_QMARK, - ACTIONS(4699), 1, + ACTIONS(4721), 1, anon_sym_BANG, - ACTIONS(4701), 1, + ACTIONS(4723), 1, anon_sym_LBRACK2, - ACTIONS(4703), 1, + ACTIONS(4725), 1, anon_sym_AMP_AMP, - ACTIONS(4705), 1, + ACTIONS(4727), 1, anon_sym_PIPE_PIPE, - ACTIONS(4707), 1, + ACTIONS(4729), 1, anon_sym_or, - ACTIONS(4709), 1, + ACTIONS(4731), 1, anon_sym_POUND_LBRACK, - STATE(1977), 1, + STATE(1987), 1, sym_or_block, - STATE(1984), 1, + STATE(1988), 1, sym_argument_list, - STATE(4284), 1, + STATE(4173), 1, sym_type_parameters, - ACTIONS(4673), 2, + ACTIONS(4695), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4687), 2, + ACTIONS(4709), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4711), 2, + ACTIONS(4733), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4713), 2, + ACTIONS(4735), 2, anon_sym_in, anon_sym_BANGin, - STATE(1775), 2, + STATE(1808), 2, sym_line_comment, sym_block_comment, - ACTIONS(4683), 4, - anon_sym_PIPE, + ACTIONS(4705), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4689), 4, + ACTIONS(4711), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4685), 8, + ACTIONS(4707), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -200717,83 +203654,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13364] = 29, - ACTIONS(3), 1, + [12765] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1755), 1, + ACTIONS(1892), 1, + anon_sym_LBRACK, + ACTIONS(2095), 1, anon_sym_LBRACE, - ACTIONS(1759), 1, - anon_sym_EQ, - ACTIONS(4675), 1, + STATE(1809), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1887), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, - ACTIONS(4681), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4691), 1, - anon_sym_LBRACK, - ACTIONS(4693), 1, + anon_sym_EQ, + 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, - ACTIONS(4695), 1, anon_sym_DASH_DASH, - ACTIONS(4697), 1, anon_sym_QMARK, - ACTIONS(4699), 1, anon_sym_BANG, - ACTIONS(4701), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(4703), 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(4705), 1, anon_sym_PIPE_PIPE, - ACTIONS(4707), 1, anon_sym_or, - ACTIONS(4709), 1, - anon_sym_POUND_LBRACK, - STATE(1977), 1, - sym_or_block, - STATE(1984), 1, - sym_argument_list, - STATE(3862), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4284), 1, - sym_type_parameters, - ACTIONS(4673), 2, - anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4687), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4711), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(4713), 2, anon_sym_in, anon_sym_BANGin, - STATE(1776), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4683), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4689), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4685), 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(3534), 14, - anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -200807,70 +203721,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13483] = 15, + [12838] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4725), 1, + ACTIONS(1767), 1, + anon_sym_EQ, + ACTIONS(4749), 1, anon_sym_LPAREN, - ACTIONS(4731), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(4733), 1, + ACTIONS(4761), 1, anon_sym_QMARK, - ACTIONS(4735), 1, + ACTIONS(4763), 1, anon_sym_BANG, - ACTIONS(4737), 1, + ACTIONS(4765), 1, anon_sym_LBRACK2, - ACTIONS(4739), 1, + ACTIONS(4767), 1, anon_sym_POUND_LBRACK, - STATE(2073), 1, + ACTIONS(4777), 1, + anon_sym_AMP_AMP, + STATE(2077), 1, sym_argument_list, - STATE(2074), 1, + STATE(2078), 1, sym_or_block, - STATE(4147), 1, + STATE(4272), 1, sym_type_parameters, - ACTIONS(4723), 2, + ACTIONS(4747), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1777), 2, + ACTIONS(4755), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4769), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1810), 2, sym_line_comment, sym_block_comment, - ACTIONS(1791), 15, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(4751), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4757), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4753), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1789), 30, + ACTIONS(1795), 23, 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_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -200883,83 +203803,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13574] = 29, + [12941] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1755), 1, - anon_sym_SEMI, - ACTIONS(1759), 1, - anon_sym_EQ, - ACTIONS(4675), 1, - anon_sym_as, - ACTIONS(4681), 1, + ACTIONS(4703), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4713), 1, anon_sym_LBRACK, - ACTIONS(4693), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4695), 1, - anon_sym_DASH_DASH, - ACTIONS(4697), 1, + ACTIONS(4719), 1, anon_sym_QMARK, - ACTIONS(4699), 1, + ACTIONS(4721), 1, anon_sym_BANG, - ACTIONS(4701), 1, + ACTIONS(4723), 1, anon_sym_LBRACK2, - ACTIONS(4707), 1, - anon_sym_or, - ACTIONS(4709), 1, + ACTIONS(4731), 1, anon_sym_POUND_LBRACK, - ACTIONS(4773), 1, - anon_sym_AMP_AMP, - ACTIONS(4775), 1, - anon_sym_PIPE_PIPE, - STATE(1977), 1, + STATE(1987), 1, sym_or_block, - STATE(1984), 1, + STATE(1988), 1, sym_argument_list, - STATE(3825), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4284), 1, + STATE(4173), 1, sym_type_parameters, - ACTIONS(4673), 2, + ACTIONS(4695), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4711), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4769), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4777), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1778), 2, + STATE(1811), 2, sym_line_comment, sym_block_comment, - ACTIONS(4765), 4, - anon_sym_PIPE, + ACTIONS(1771), 15, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4771), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4767), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3534), 14, + ACTIONS(1769), 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, @@ -200973,53 +203879,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13693] = 15, + [13032] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4681), 1, + ACTIONS(4749), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4761), 1, anon_sym_QMARK, - ACTIONS(4699), 1, + ACTIONS(4763), 1, anon_sym_BANG, - ACTIONS(4701), 1, + ACTIONS(4765), 1, anon_sym_LBRACK2, - ACTIONS(4709), 1, + ACTIONS(4767), 1, anon_sym_POUND_LBRACK, - STATE(1977), 1, - sym_or_block, - STATE(1984), 1, + STATE(2077), 1, sym_argument_list, - STATE(4284), 1, + STATE(2078), 1, + sym_or_block, + STATE(4272), 1, sym_type_parameters, - ACTIONS(4673), 2, + ACTIONS(4747), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1779), 2, + STATE(1812), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 15, + ACTIONS(1767), 3, anon_sym_EQ, - anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4751), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4753), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1767), 30, - anon_sym_SEMI, + ACTIONS(1795), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -201027,8 +203934,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -201048,18 +203957,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, - [13784] = 5, + [13127] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2545), 1, + ACTIONS(2077), 1, anon_sym_LBRACK, - STATE(1780), 2, + ACTIONS(4789), 1, + anon_sym_DOLLARelse, + STATE(1813), 2, sym_line_comment, sym_block_comment, - ACTIONS(2547), 54, + ACTIONS(2079), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201069,7 +203979,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -201085,6 +203994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -201114,27 +204024,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13854] = 5, - ACTIONS(497), 1, + [13200] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2113), 1, + ACTIONS(4703), 1, + anon_sym_LPAREN, + ACTIONS(4713), 1, anon_sym_LBRACK, - STATE(1781), 2, + ACTIONS(4719), 1, + anon_sym_QMARK, + ACTIONS(4721), 1, + anon_sym_BANG, + ACTIONS(4723), 1, + anon_sym_LBRACK2, + ACTIONS(4731), 1, + anon_sym_POUND_LBRACK, + STATE(1987), 1, + sym_or_block, + STATE(1988), 1, + sym_argument_list, + STATE(4173), 1, + sym_type_parameters, + ACTIONS(4695), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1814), 2, sym_line_comment, sym_block_comment, - ACTIONS(2115), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1789), 15, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -201142,26 +204062,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1787), 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, @@ -201179,17 +204100,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13924] = 5, + [13291] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2149), 1, + ACTIONS(1845), 1, + anon_sym_LBRACE, + ACTIONS(2641), 1, anon_sym_LBRACK, - STATE(1782), 2, + STATE(1815), 2, sym_line_comment, sym_block_comment, - ACTIONS(2151), 54, + ACTIONS(2643), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201199,7 +204122,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -201215,6 +204137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -201244,58 +204167,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13994] = 5, - ACTIONS(497), 1, + [13364] = 29, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2179), 1, - anon_sym_LBRACK, - STATE(1783), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2181), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + ACTIONS(1649), 1, + anon_sym_LBRACE, + ACTIONS(1657), 1, + anon_sym_EQ, + ACTIONS(4697), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4703), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4713), 1, + anon_sym_LBRACK, + ACTIONS(4715), 1, anon_sym_PLUS_PLUS, + ACTIONS(4717), 1, anon_sym_DASH_DASH, + ACTIONS(4719), 1, anon_sym_QMARK, + ACTIONS(4721), 1, anon_sym_BANG, + ACTIONS(4723), 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(4725), 1, anon_sym_AMP_AMP, + ACTIONS(4727), 1, anon_sym_PIPE_PIPE, + ACTIONS(4729), 1, anon_sym_or, - anon_sym_QMARK_DOT, + ACTIONS(4731), 1, anon_sym_POUND_LBRACK, + STATE(1987), 1, + sym_or_block, + STATE(1988), 1, + sym_argument_list, + STATE(3882), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4173), 1, + sym_type_parameters, + ACTIONS(4695), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4709), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4733), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(4735), 2, anon_sym_in, anon_sym_BANGin, + STATE(1816), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4705), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4711), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4707), 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(3530), 14, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -201309,69 +204257,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14064] = 27, + [13483] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1773), 1, + ACTIONS(1649), 1, + anon_sym_SEMI, + ACTIONS(1657), 1, anon_sym_EQ, - ACTIONS(4675), 1, + ACTIONS(4697), 1, anon_sym_as, - ACTIONS(4681), 1, + ACTIONS(4703), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4713), 1, anon_sym_LBRACK, - ACTIONS(4693), 1, + ACTIONS(4715), 1, anon_sym_PLUS_PLUS, - ACTIONS(4695), 1, + ACTIONS(4717), 1, anon_sym_DASH_DASH, - ACTIONS(4697), 1, + ACTIONS(4719), 1, anon_sym_QMARK, - ACTIONS(4699), 1, + ACTIONS(4721), 1, anon_sym_BANG, - ACTIONS(4701), 1, + ACTIONS(4723), 1, anon_sym_LBRACK2, - ACTIONS(4707), 1, + ACTIONS(4729), 1, anon_sym_or, - ACTIONS(4709), 1, + ACTIONS(4731), 1, anon_sym_POUND_LBRACK, - ACTIONS(4773), 1, + ACTIONS(4799), 1, anon_sym_AMP_AMP, - ACTIONS(4775), 1, + ACTIONS(4801), 1, anon_sym_PIPE_PIPE, - STATE(1977), 1, + STATE(1987), 1, sym_or_block, - STATE(1984), 1, + STATE(1988), 1, sym_argument_list, - STATE(4284), 1, + STATE(3892), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4173), 1, sym_type_parameters, - ACTIONS(4673), 2, + ACTIONS(4695), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4769), 2, + ACTIONS(4733), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4795), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4777), 2, + ACTIONS(4803), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(4779), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(1784), 2, + STATE(1817), 2, sym_line_comment, sym_block_comment, - ACTIONS(4765), 4, - anon_sym_PIPE, + ACTIONS(4791), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4771), 4, + ACTIONS(4797), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4767), 8, + ACTIONS(4793), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -201380,8 +204332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1771), 15, - anon_sym_SEMI, + ACTIONS(3530), 14, anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -201396,27 +204347,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14178] = 5, - ACTIONS(497), 1, + [13602] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2183), 1, + ACTIONS(4749), 1, + anon_sym_LPAREN, + ACTIONS(4759), 1, anon_sym_LBRACK, - STATE(1785), 2, + ACTIONS(4761), 1, + anon_sym_QMARK, + ACTIONS(4763), 1, + anon_sym_BANG, + ACTIONS(4765), 1, + anon_sym_LBRACK2, + ACTIONS(4767), 1, + anon_sym_POUND_LBRACK, + STATE(2077), 1, + sym_argument_list, + STATE(2078), 1, + sym_or_block, + STATE(4272), 1, + sym_type_parameters, + ACTIONS(4747), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1818), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1789), 15, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -201424,26 +204385,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1787), 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_is, anon_sym_BANGis, anon_sym_in, @@ -201460,28 +204423,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [14248] = 5, - ACTIONS(497), 1, + [13693] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2187), 1, + ACTIONS(4749), 1, + anon_sym_LPAREN, + ACTIONS(4759), 1, anon_sym_LBRACK, - STATE(1786), 2, + ACTIONS(4761), 1, + anon_sym_QMARK, + ACTIONS(4763), 1, + anon_sym_BANG, + ACTIONS(4765), 1, + anon_sym_LBRACK2, + ACTIONS(4767), 1, + anon_sym_POUND_LBRACK, + STATE(2077), 1, + sym_argument_list, + STATE(2078), 1, + sym_or_block, + STATE(4272), 1, + sym_type_parameters, + ACTIONS(4747), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1819), 2, sym_line_comment, sym_block_comment, - ACTIONS(2189), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1767), 15, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -201489,26 +204461,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1795), 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_is, anon_sym_BANGis, anon_sym_in, @@ -201525,28 +204499,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [14318] = 5, - ACTIONS(497), 1, + [13784] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2199), 1, - anon_sym_LBRACK, - STATE(1787), 2, + STATE(1820), 2, sym_line_comment, sym_block_comment, - ACTIONS(2201), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1837), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -201554,14 +204516,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -201569,11 +204526,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1835), 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, @@ -201591,17 +204564,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14388] = 5, + [13854] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2153), 1, + ACTIONS(2381), 1, anon_sym_LBRACK, - STATE(1788), 2, + STATE(1821), 2, sym_line_comment, sym_block_comment, - ACTIONS(2155), 54, + ACTIONS(2383), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201611,7 +204584,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -201627,6 +204599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -201656,27 +204629,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14458] = 5, - ACTIONS(497), 1, + [13924] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2157), 1, - anon_sym_LBRACK, - STATE(1789), 2, + STATE(1822), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1877), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -201684,14 +204646,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -201699,11 +204656,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1875), 37, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -201720,42 +204694,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [14528] = 6, - ACTIONS(497), 1, + [13994] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2142), 1, - anon_sym_LBRACK, - STATE(1790), 2, + ACTIONS(4805), 1, + anon_sym_else, + STATE(2017), 1, + sym_else_branch, + STATE(1823), 2, sym_line_comment, sym_block_comment, - ACTIONS(2137), 19, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1799), 18, 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(2139), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -201763,14 +204715,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -201778,6 +204725,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1797), 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, @@ -201787,21 +204749,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [14600] = 7, + 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, + [14068] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4781), 1, + ACTIONS(4805), 1, anon_sym_else, - STATE(1988), 1, + STATE(2022), 1, sym_else_branch, - STATE(1791), 2, + STATE(1824), 2, sym_line_comment, sym_block_comment, - ACTIONS(1799), 18, + ACTIONS(1805), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -201811,6 +204784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -201818,8 +204792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1797), 35, - anon_sym_SEMI, + ACTIONS(1803), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -201830,8 +204803,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, @@ -201853,61 +204828,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [14674] = 7, + [14142] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4781), 1, - anon_sym_else, + ACTIONS(1783), 1, + anon_sym_EQ, + ACTIONS(4697), 1, + anon_sym_as, + ACTIONS(4703), 1, + anon_sym_LPAREN, + ACTIONS(4713), 1, + anon_sym_LBRACK, + ACTIONS(4715), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4717), 1, + anon_sym_DASH_DASH, + ACTIONS(4719), 1, + anon_sym_QMARK, + ACTIONS(4721), 1, + anon_sym_BANG, + ACTIONS(4723), 1, + anon_sym_LBRACK2, + ACTIONS(4725), 1, + anon_sym_AMP_AMP, + ACTIONS(4727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4729), 1, + anon_sym_or, + ACTIONS(4731), 1, + anon_sym_POUND_LBRACK, STATE(1987), 1, - sym_else_branch, - STATE(1792), 2, + sym_or_block, + STATE(1988), 1, + sym_argument_list, + STATE(4173), 1, + sym_type_parameters, + ACTIONS(4695), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4709), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4735), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(4807), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(1825), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 18, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(4705), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4711), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4707), 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(1803), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + ACTIONS(1781), 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, + [14256] = 27, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1783), 1, + anon_sym_EQ, + ACTIONS(4697), 1, + anon_sym_as, + ACTIONS(4703), 1, anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4713), 1, anon_sym_LBRACK, + ACTIONS(4715), 1, anon_sym_PLUS_PLUS, + ACTIONS(4717), 1, anon_sym_DASH_DASH, + ACTIONS(4719), 1, + anon_sym_QMARK, + ACTIONS(4721), 1, + anon_sym_BANG, + ACTIONS(4723), 1, + anon_sym_LBRACK2, + ACTIONS(4729), 1, + anon_sym_or, + ACTIONS(4731), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4799), 1, anon_sym_AMP_AMP, + ACTIONS(4801), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + STATE(1987), 1, + sym_or_block, + STATE(1988), 1, + sym_argument_list, + STATE(4173), 1, + sym_type_parameters, + ACTIONS(4695), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(4795), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4803), 2, anon_sym_in, anon_sym_BANGin, + ACTIONS(4807), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(1826), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4791), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4797), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4793), 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(1781), 15, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -201921,27 +205002,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14748] = 5, - ACTIONS(497), 1, + [14370] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2173), 1, + ACTIONS(4809), 1, + anon_sym_COMMA, + ACTIONS(4811), 1, + anon_sym_COLON_EQ, + STATE(4044), 1, + aux_sym_identifier_list_repeat1, + ACTIONS(1892), 2, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(1793), 2, + STATE(1827), 2, sym_line_comment, sym_block_comment, - ACTIONS(2175), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1887), 19, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -201949,14 +205028,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -201964,6 +205039,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1885), 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, @@ -201985,70 +205071,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [14818] = 27, + [14448] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1765), 1, + ACTIONS(1779), 1, anon_sym_EQ, - ACTIONS(4675), 1, + ACTIONS(4697), 1, anon_sym_as, - ACTIONS(4681), 1, + ACTIONS(4703), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4713), 1, anon_sym_LBRACK, - ACTIONS(4693), 1, + ACTIONS(4715), 1, anon_sym_PLUS_PLUS, - ACTIONS(4695), 1, + ACTIONS(4717), 1, anon_sym_DASH_DASH, - ACTIONS(4697), 1, + ACTIONS(4719), 1, anon_sym_QMARK, - ACTIONS(4699), 1, + ACTIONS(4721), 1, anon_sym_BANG, - ACTIONS(4701), 1, + ACTIONS(4723), 1, anon_sym_LBRACK2, - ACTIONS(4707), 1, + ACTIONS(4729), 1, anon_sym_or, - ACTIONS(4709), 1, + ACTIONS(4731), 1, anon_sym_POUND_LBRACK, - ACTIONS(4773), 1, + ACTIONS(4799), 1, anon_sym_AMP_AMP, - ACTIONS(4775), 1, + ACTIONS(4801), 1, anon_sym_PIPE_PIPE, - STATE(1977), 1, + STATE(1987), 1, sym_or_block, - STATE(1984), 1, + STATE(1988), 1, sym_argument_list, - STATE(4284), 1, + STATE(4173), 1, sym_type_parameters, - ACTIONS(4673), 2, + ACTIONS(4695), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4711), 2, + ACTIONS(4733), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4769), 2, + ACTIONS(4795), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4777), 2, + ACTIONS(4803), 2, anon_sym_in, anon_sym_BANGin, - STATE(1794), 2, + STATE(1828), 2, sym_line_comment, sym_block_comment, - ACTIONS(4765), 4, + ACTIONS(4791), 4, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4797), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4793), 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(1777), 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, + [14562] = 27, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1775), 1, + anon_sym_EQ, + ACTIONS(4697), 1, + anon_sym_as, + ACTIONS(4703), 1, + anon_sym_LPAREN, + ACTIONS(4713), 1, + anon_sym_LBRACK, + ACTIONS(4715), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4717), 1, + anon_sym_DASH_DASH, + ACTIONS(4719), 1, + anon_sym_QMARK, + ACTIONS(4721), 1, + anon_sym_BANG, + ACTIONS(4723), 1, + anon_sym_LBRACK2, + ACTIONS(4729), 1, + anon_sym_or, + ACTIONS(4731), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4799), 1, + anon_sym_AMP_AMP, + ACTIONS(4801), 1, + anon_sym_PIPE_PIPE, + STATE(1987), 1, + sym_or_block, + STATE(1988), 1, + sym_argument_list, + STATE(4173), 1, + sym_type_parameters, + ACTIONS(4695), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4733), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4795), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4803), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1829), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4791), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4771), 4, + ACTIONS(4797), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4767), 8, + ACTIONS(4793), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -202057,7 +205229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 15, + ACTIONS(1773), 15, anon_sym_SEMI, anon_sym_COMMA, anon_sym_STAR_EQ, @@ -202073,27 +205245,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14932] = 5, + [14676] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2131), 1, + ACTIONS(2703), 1, anon_sym_LBRACK, - STATE(1795), 2, + STATE(1830), 2, sym_line_comment, sym_block_comment, - ACTIONS(2133), 54, + ACTIONS(2705), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + anon_sym___global, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -202105,10 +205278,15 @@ 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, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -202125,40 +205303,35 @@ 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, - [15002] = 5, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [14746] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2203), 1, + ACTIONS(2097), 1, anon_sym_LBRACK, - STATE(1796), 2, + STATE(1831), 2, sym_line_comment, sym_block_comment, - ACTIONS(2205), 54, + ACTIONS(2099), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + anon_sym___global, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -202170,10 +205343,15 @@ 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, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -202190,78 +205368,61 @@ 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, - [15072] = 16, - ACTIONS(3), 1, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [14816] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4681), 1, - anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(2769), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, - anon_sym_QMARK, - ACTIONS(4699), 1, - anon_sym_BANG, - ACTIONS(4701), 1, - anon_sym_LBRACK2, - ACTIONS(4709), 1, - anon_sym_POUND_LBRACK, - STATE(1977), 1, - sym_or_block, - STATE(1984), 1, - sym_argument_list, - STATE(4284), 1, - sym_type_parameters, - ACTIONS(4673), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1797), 2, + STATE(1832), 2, sym_line_comment, sym_block_comment, - ACTIONS(1791), 7, + ACTIONS(2771), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, - ACTIONS(4767), 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(1789), 29, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_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, @@ -202279,27 +205440,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15164] = 5, + [14886] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2207), 1, + ACTIONS(2687), 1, anon_sym_LBRACK, - STATE(1798), 2, + STATE(1833), 2, sym_line_comment, sym_block_comment, - ACTIONS(2209), 54, + ACTIONS(2689), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + anon_sym___global, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -202311,10 +205473,15 @@ 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, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -202331,79 +205498,191 @@ 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, - [15234] = 17, - ACTIONS(3), 1, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [14956] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4681), 1, - anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(2739), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + STATE(1834), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2741), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, + anon_sym_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, - ACTIONS(4699), 1, anon_sym_BANG, - ACTIONS(4701), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(4709), 1, - anon_sym_POUND_LBRACK, - STATE(1977), 1, - sym_or_block, - STATE(1984), 1, - sym_argument_list, - STATE(4284), 1, - sym_type_parameters, - ACTIONS(4673), 2, - anon_sym_DOT, + 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, - STATE(1799), 2, + 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, + [15026] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3020), 1, + anon_sym_LBRACK, + STATE(1835), 2, sym_line_comment, sym_block_comment, - ACTIONS(1791), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4765), 4, - anon_sym_PIPE, + ACTIONS(3022), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4767), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_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_PIPE, + anon_sym_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(1789), 29, - 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, + [15096] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2343), 1, + anon_sym_LBRACK, + STATE(1836), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2345), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_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_PIPE, + anon_sym_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, @@ -202421,17 +205700,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15328] = 5, + [15166] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2211), 1, + ACTIONS(2349), 1, anon_sym_LBRACK, - STATE(1800), 2, + STATE(1837), 2, sym_line_comment, sym_block_comment, - ACTIONS(2213), 54, + ACTIONS(2351), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202441,7 +205720,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -202457,6 +205735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -202486,17 +205765,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15398] = 5, + [15236] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2215), 1, + ACTIONS(2355), 1, anon_sym_LBRACK, - STATE(1801), 2, + STATE(1838), 2, sym_line_comment, sym_block_comment, - ACTIONS(2217), 54, + ACTIONS(2357), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202506,7 +205785,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -202522,6 +205800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -202551,17 +205830,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15468] = 5, + [15306] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2219), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - STATE(1802), 2, + STATE(1839), 2, sym_line_comment, sym_block_comment, - ACTIONS(2221), 54, + ACTIONS(2469), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202571,7 +205850,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -202587,6 +205865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -202616,17 +205895,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15538] = 5, + [15376] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2223), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - STATE(1803), 2, + STATE(1840), 2, sym_line_comment, sym_block_comment, - ACTIONS(2225), 54, + ACTIONS(2445), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202636,7 +205915,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -202652,6 +205930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -202681,17 +205960,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15608] = 5, + [15446] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2227), 1, + ACTIONS(2473), 1, anon_sym_LBRACK, - STATE(1804), 2, + STATE(1841), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 54, + ACTIONS(2475), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202701,7 +205980,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -202717,6 +205995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -202746,17 +206025,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15678] = 5, + [15516] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2243), 1, + ACTIONS(2477), 1, anon_sym_LBRACK, - STATE(1805), 2, + STATE(1842), 2, sym_line_comment, sym_block_comment, - ACTIONS(2245), 54, + ACTIONS(2479), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202766,7 +206045,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -202782,6 +206060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -202811,154 +206090,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15748] = 20, - ACTIONS(3), 1, + [15586] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1791), 1, - anon_sym_EQ, - ACTIONS(4681), 1, - anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(2489), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, - anon_sym_QMARK, - ACTIONS(4699), 1, - anon_sym_BANG, - ACTIONS(4701), 1, - anon_sym_LBRACK2, - ACTIONS(4709), 1, - anon_sym_POUND_LBRACK, - STATE(1977), 1, - sym_or_block, - STATE(1984), 1, - sym_argument_list, - STATE(4284), 1, - sym_type_parameters, - ACTIONS(4673), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4769), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4777), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1806), 2, + STATE(1843), 2, sym_line_comment, sym_block_comment, - ACTIONS(4765), 4, - anon_sym_PIPE, + ACTIONS(2491), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4771), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4767), 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(1789), 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, - [15848] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1791), 1, - anon_sym_EQ, - ACTIONS(4681), 1, - anon_sym_LPAREN, - ACTIONS(4691), 1, - anon_sym_LBRACK, - ACTIONS(4697), 1, anon_sym_QMARK, - ACTIONS(4699), 1, anon_sym_BANG, - ACTIONS(4701), 1, - anon_sym_LBRACK2, - ACTIONS(4709), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4773), 1, - anon_sym_AMP_AMP, - STATE(1977), 1, - sym_or_block, - STATE(1984), 1, - sym_argument_list, - STATE(4284), 1, - sym_type_parameters, - ACTIONS(4673), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4769), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4777), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1807), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4765), 4, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LBRACK2, anon_sym_CARET, - ACTIONS(4771), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4767), 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(1789), 22, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_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, @@ -202972,157 +206155,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15950] = 17, - ACTIONS(3), 1, + [15656] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4681), 1, - anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, - anon_sym_QMARK, - ACTIONS(4699), 1, - anon_sym_BANG, - ACTIONS(4701), 1, - anon_sym_LBRACK2, - ACTIONS(4709), 1, - anon_sym_POUND_LBRACK, - STATE(1977), 1, - sym_or_block, - STATE(1984), 1, - sym_argument_list, - STATE(4284), 1, - sym_type_parameters, - ACTIONS(4673), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1808), 2, + STATE(1844), 2, sym_line_comment, sym_block_comment, - ACTIONS(1787), 3, + ACTIONS(2647), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4765), 4, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4767), 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(1785), 29, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_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, - [16044] = 27, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(4675), 1, - anon_sym_as, - ACTIONS(4681), 1, - anon_sym_LPAREN, - ACTIONS(4691), 1, - anon_sym_LBRACK, - ACTIONS(4693), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4695), 1, - anon_sym_DASH_DASH, - ACTIONS(4697), 1, anon_sym_QMARK, - ACTIONS(4699), 1, anon_sym_BANG, - ACTIONS(4701), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(4707), 1, - anon_sym_or, - ACTIONS(4709), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4773), 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(4775), 1, anon_sym_PIPE_PIPE, - STATE(1977), 1, - sym_or_block, - STATE(1984), 1, - sym_argument_list, - STATE(4284), 1, - sym_type_parameters, - ACTIONS(4673), 2, - anon_sym_DOT, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(4711), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(4769), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4777), 2, anon_sym_in, anon_sym_BANGin, - STATE(1809), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4765), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4771), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4767), 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(1777), 15, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -203136,17 +206220,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16158] = 5, + [15726] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2161), 1, + ACTIONS(2651), 1, anon_sym_LBRACK, - STATE(1810), 2, + STATE(1845), 2, sym_line_comment, sym_block_comment, - ACTIONS(2163), 54, + ACTIONS(2653), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203156,7 +206240,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -203172,6 +206255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -203201,17 +206285,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16228] = 5, + [15796] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2505), 1, + ACTIONS(2655), 1, anon_sym_LBRACK, - STATE(1811), 2, + STATE(1846), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 54, + ACTIONS(2657), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203221,7 +206305,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -203237,6 +206320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -203266,17 +206350,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16298] = 5, + [15866] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2861), 1, + ACTIONS(2717), 1, anon_sym_LBRACK, - STATE(1812), 2, + STATE(1847), 2, sym_line_comment, sym_block_comment, - ACTIONS(2863), 54, + ACTIONS(2719), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203286,7 +206370,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -203302,6 +206385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -203331,28 +206415,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16368] = 6, + [15936] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2057), 1, - anon_sym_DOT, - ACTIONS(2157), 1, + ACTIONS(2369), 1, anon_sym_LBRACK, - STATE(1813), 2, + STATE(1848), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 53, + ACTIONS(2371), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -203368,6 +206450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -203397,17 +206480,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16440] = 5, + [16006] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2881), 1, + ACTIONS(3012), 1, anon_sym_LBRACK, - STATE(1814), 2, + STATE(1849), 2, sym_line_comment, sym_block_comment, - ACTIONS(2883), 54, + ACTIONS(3014), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203417,7 +206500,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -203433,6 +206515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -203462,17 +206545,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16510] = 5, + [16076] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2247), 1, + ACTIONS(3016), 1, anon_sym_LBRACK, - STATE(1815), 2, + STATE(1850), 2, sym_line_comment, sym_block_comment, - ACTIONS(2249), 54, + ACTIONS(3018), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203482,7 +206565,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -203498,6 +206580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -203527,17 +206610,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16580] = 5, + [16146] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2251), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - STATE(1816), 2, + STATE(1851), 2, sym_line_comment, sym_block_comment, - ACTIONS(2253), 54, + ACTIONS(3046), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203547,7 +206630,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -203563,6 +206645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -203592,17 +206675,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16650] = 5, + [16216] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2259), 1, + ACTIONS(2637), 1, anon_sym_LBRACK, - STATE(1817), 2, + STATE(1852), 2, sym_line_comment, sym_block_comment, - ACTIONS(2261), 54, + ACTIONS(2639), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203612,7 +206695,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -203628,6 +206710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -203657,17 +206740,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16720] = 5, + [16286] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2267), 1, + ACTIONS(3052), 1, anon_sym_LBRACK, - STATE(1818), 2, + STATE(1853), 2, sym_line_comment, sym_block_comment, - ACTIONS(2269), 54, + ACTIONS(3054), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203677,7 +206760,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -203693,6 +206775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -203722,17 +206805,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16790] = 5, + [16356] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2885), 1, + ACTIONS(3064), 1, anon_sym_LBRACK, - STATE(1819), 2, + STATE(1854), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 54, + ACTIONS(3066), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203742,7 +206825,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -203758,6 +206840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -203787,17 +206870,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16860] = 5, - ACTIONS(3), 1, + [16426] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(1820), 2, + ACTIONS(2377), 1, + anon_sym_LBRACK, + STATE(1855), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 18, + ACTIONS(2379), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -203805,8 +206897,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -203814,27 +206913,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 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, @@ -203852,21 +206935,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16930] = 7, - ACTIONS(3), 1, + [16496] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4783), 1, - anon_sym_else, - STATE(2114), 1, - sym_else_branch, - STATE(1821), 2, + ACTIONS(2763), 1, + anon_sym_LBRACK, + STATE(1856), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 18, + ACTIONS(2765), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -203874,8 +206962,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -203883,21 +206978,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1803), 35, + anon_sym_AMP_AMP, + anon_sym_PIPE_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, + [16566] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2747), 1, + anon_sym_LBRACK, + STATE(1857), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2749), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_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_LT_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_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, @@ -203919,21 +207064,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [17004] = 7, - ACTIONS(3), 1, + anon_sym_COLON_EQ, + [16636] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4783), 1, - anon_sym_else, - STATE(2101), 1, - sym_else_branch, - STATE(1822), 2, + ACTIONS(2721), 1, + anon_sym_LBRACK, + STATE(1858), 2, sym_line_comment, sym_block_comment, - ACTIONS(1799), 18, + ACTIONS(2723), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -203941,8 +207092,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -203950,21 +207108,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1797), 35, + anon_sym_AMP_AMP, + anon_sym_PIPE_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, + [16706] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2619), 1, + anon_sym_LBRACK, + STATE(1859), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2621), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_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_LT_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_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, @@ -203986,17 +207194,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [17078] = 5, + anon_sym_COLON_EQ, + [16776] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2889), 1, + ACTIONS(2463), 1, anon_sym_LBRACK, - STATE(1823), 2, + STATE(1860), 2, sym_line_comment, sym_block_comment, - ACTIONS(2891), 54, + ACTIONS(2465), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204006,7 +207215,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -204022,6 +207230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -204051,17 +207260,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17148] = 5, + [16846] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2835), 1, + ACTIONS(2455), 1, anon_sym_LBRACK, - STATE(1824), 2, + STATE(1861), 2, sym_line_comment, sym_block_comment, - ACTIONS(2837), 54, + ACTIONS(2457), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204071,7 +207280,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -204087,6 +207295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -204116,17 +207325,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17218] = 5, + [16916] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2271), 1, + ACTIONS(2393), 1, anon_sym_LBRACK, - STATE(1825), 2, + STATE(1862), 2, sym_line_comment, sym_block_comment, - ACTIONS(2273), 54, + ACTIONS(2395), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204136,7 +207345,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -204152,6 +207360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -204181,17 +207390,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17288] = 5, + [16986] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2421), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(1826), 2, + STATE(1863), 2, sym_line_comment, sym_block_comment, - ACTIONS(2423), 54, + ACTIONS(2449), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204201,7 +207410,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -204217,6 +207425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -204246,17 +207455,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17358] = 5, + [17056] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2099), 1, + ACTIONS(2451), 1, anon_sym_LBRACK, - STATE(1827), 2, + STATE(1864), 2, sym_line_comment, sym_block_comment, - ACTIONS(2101), 54, + ACTIONS(2453), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204266,7 +207475,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -204282,6 +207490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -204311,17 +207520,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17428] = 5, + [17126] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2717), 1, + ACTIONS(2313), 1, anon_sym_LBRACK, - STATE(1828), 2, + STATE(1865), 2, sym_line_comment, sym_block_comment, - ACTIONS(2719), 54, + ACTIONS(2315), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204331,7 +207540,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -204347,6 +207555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -204376,17 +207585,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17498] = 5, + [17196] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2765), 1, + ACTIONS(2329), 1, anon_sym_LBRACK, - STATE(1829), 2, + STATE(1866), 2, sym_line_comment, sym_block_comment, - ACTIONS(2767), 54, + ACTIONS(2331), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204396,7 +207605,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -204412,6 +207620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -204441,17 +207650,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17568] = 5, + [17266] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1897), 1, + ACTIONS(2335), 1, anon_sym_LBRACK, - STATE(1830), 2, + STATE(1867), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 54, + ACTIONS(2337), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204461,7 +207670,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -204477,6 +207685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -204506,17 +207715,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17638] = 5, + [17336] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2425), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - STATE(1831), 2, + STATE(1868), 2, sym_line_comment, sym_block_comment, - ACTIONS(2427), 54, + ACTIONS(2341), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204526,7 +207735,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -204542,6 +207750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -204571,17 +207780,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17708] = 5, + [17406] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2723), 1, + ACTIONS(2773), 1, anon_sym_LBRACK, - STATE(1832), 2, + STATE(1869), 2, sym_line_comment, sym_block_comment, - ACTIONS(2725), 54, + ACTIONS(2775), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204591,7 +207800,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -204607,6 +207815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -204636,28 +207845,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17778] = 6, + [17476] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2885), 1, + ACTIONS(3060), 1, anon_sym_LBRACK, - ACTIONS(3039), 1, - anon_sym_DOT, - STATE(1833), 2, + STATE(1870), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 53, + ACTIONS(3062), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -204673,6 +207880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -204702,17 +207910,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17850] = 5, + [17546] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2769), 1, + ACTIONS(2681), 1, anon_sym_LBRACK, - STATE(1834), 2, + STATE(1871), 2, sym_line_comment, sym_block_comment, - ACTIONS(2771), 54, + ACTIONS(2683), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204722,7 +207930,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -204738,6 +207945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -204767,17 +207975,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17920] = 5, + [17616] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2849), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - STATE(1835), 2, + STATE(1872), 2, sym_line_comment, sym_block_comment, - ACTIONS(2851), 54, + ACTIONS(2095), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204787,7 +207995,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -204803,6 +208010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -204832,17 +208040,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17990] = 5, + [17686] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2091), 1, + ACTIONS(3001), 1, anon_sym_LBRACK, - STATE(1836), 2, + STATE(1873), 2, sym_line_comment, sym_block_comment, - ACTIONS(2093), 54, + ACTIONS(3003), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204852,7 +208060,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -204868,6 +208075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -204897,17 +208105,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18060] = 5, + [17756] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2875), 1, + ACTIONS(2997), 1, anon_sym_LBRACK, - STATE(1837), 2, + STATE(1874), 2, sym_line_comment, sym_block_comment, - ACTIONS(2877), 54, + ACTIONS(2999), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204917,7 +208125,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -204933,6 +208140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -204962,17 +208170,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18130] = 5, + [17826] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2803), 1, + ACTIONS(2993), 1, anon_sym_LBRACK, - STATE(1838), 2, + STATE(1875), 2, sym_line_comment, sym_block_comment, - ACTIONS(2805), 54, + ACTIONS(2995), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204982,7 +208190,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -204998,6 +208205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -205027,17 +208235,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18200] = 5, + [17896] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2103), 1, + ACTIONS(2939), 1, anon_sym_LBRACK, - STATE(1839), 2, + STATE(1876), 2, sym_line_comment, sym_block_comment, - ACTIONS(2105), 54, + ACTIONS(2941), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205047,7 +208255,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -205063,6 +208270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -205092,17 +208300,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18270] = 5, + [17966] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2125), 1, + ACTIONS(2927), 1, anon_sym_LBRACK, - STATE(1840), 2, + STATE(1877), 2, sym_line_comment, sym_block_comment, - ACTIONS(2127), 54, + ACTIONS(2929), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205112,7 +208320,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -205128,6 +208335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -205157,17 +208365,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18340] = 5, + [18036] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2121), 1, + ACTIONS(2923), 1, anon_sym_LBRACK, - STATE(1841), 2, + STATE(1878), 2, sym_line_comment, sym_block_comment, - ACTIONS(2123), 54, + ACTIONS(2925), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205177,7 +208385,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -205193,6 +208400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -205222,17 +208430,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18410] = 5, + [18106] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2095), 1, + ACTIONS(2729), 1, anon_sym_LBRACK, - STATE(1842), 2, + STATE(1879), 2, sym_line_comment, sym_block_comment, - ACTIONS(2097), 54, + ACTIONS(2731), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205242,7 +208450,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -205258,6 +208465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -205287,17 +208495,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18480] = 5, + [18176] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2429), 1, + ACTIONS(2725), 1, anon_sym_LBRACK, - STATE(1843), 2, + STATE(1880), 2, sym_line_comment, sym_block_comment, - ACTIONS(2431), 54, + ACTIONS(2727), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205307,7 +208515,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -205323,6 +208530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -205352,17 +208560,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18550] = 5, + [18246] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2727), 1, + ACTIONS(2713), 1, anon_sym_LBRACK, - STATE(1844), 2, + STATE(1881), 2, sym_line_comment, sym_block_comment, - ACTIONS(2729), 54, + ACTIONS(2715), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205372,7 +208580,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -205388,6 +208595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -205417,17 +208625,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18620] = 5, + [18316] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2469), 1, + ACTIONS(2707), 1, anon_sym_LBRACK, - STATE(1845), 2, + STATE(1882), 2, sym_line_comment, sym_block_comment, - ACTIONS(2471), 54, + ACTIONS(2709), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205437,7 +208645,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -205453,6 +208660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -205482,17 +208690,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18690] = 5, + [18386] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2735), 1, + ACTIONS(2699), 1, anon_sym_LBRACK, - STATE(1846), 2, + STATE(1883), 2, sym_line_comment, sym_block_comment, - ACTIONS(2737), 54, + ACTIONS(2701), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205502,7 +208710,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -205518,6 +208725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -205547,17 +208755,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18760] = 5, + [18456] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2031), 1, + ACTIONS(2497), 1, anon_sym_LBRACK, - STATE(1847), 2, + ACTIONS(4813), 1, + anon_sym_BANG, + STATE(1884), 2, sym_line_comment, sym_block_comment, - ACTIONS(2029), 54, + ACTIONS(2499), 53, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205567,7 +208777,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, + 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_PIPE, + anon_sym_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, + [18528] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3048), 1, + anon_sym_LBRACK, + STATE(1885), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3050), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -205583,6 +208856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -205612,17 +208886,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18830] = 5, + [18598] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2145), 1, + ACTIONS(3068), 1, anon_sym_LBRACK, - STATE(1848), 2, + STATE(1886), 2, sym_line_comment, sym_block_comment, - ACTIONS(2147), 54, + ACTIONS(3070), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205632,7 +208906,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -205648,6 +208921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -205677,29 +208951,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18900] = 5, + [18668] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2235), 1, + ACTIONS(3056), 1, anon_sym_LBRACK, - STATE(1849), 2, + STATE(1887), 2, sym_line_comment, sym_block_comment, - ACTIONS(2237), 54, + ACTIONS(3058), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_fn, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -205711,14 +208982,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_struct, - anon_sym_pub, - anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -205735,24 +209003,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [18970] = 5, + 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, + [18738] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2263), 1, + ACTIONS(3040), 1, anon_sym_LBRACK, - STATE(1850), 2, + STATE(1888), 2, sym_line_comment, sym_block_comment, - ACTIONS(2265), 54, + ACTIONS(3042), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205762,7 +209036,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -205778,6 +209051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -205807,19 +209081,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19040] = 6, + [18808] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2583), 1, + ACTIONS(3036), 1, anon_sym_LBRACK, - ACTIONS(4785), 1, - anon_sym_BANG, - STATE(1851), 2, + STATE(1889), 2, sym_line_comment, sym_block_comment, - ACTIONS(2585), 53, + ACTIONS(3038), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205829,7 +209101,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -205844,6 +209115,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -205873,17 +209146,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19112] = 5, + [18878] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2739), 1, + ACTIONS(3028), 1, anon_sym_LBRACK, - STATE(1852), 2, + STATE(1890), 2, sym_line_comment, sym_block_comment, - ACTIONS(2741), 54, + ACTIONS(3030), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205893,7 +209166,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -205909,6 +209181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -205938,17 +209211,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19182] = 5, + [18948] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2087), 1, + ACTIONS(3024), 1, anon_sym_LBRACK, - STATE(1853), 2, + STATE(1891), 2, sym_line_comment, sym_block_comment, - ACTIONS(2089), 54, + ACTIONS(3026), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205958,7 +209231,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -205974,6 +209246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -206003,17 +209276,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19252] = 5, + [19018] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2761), 1, + ACTIONS(2365), 1, anon_sym_LBRACK, - STATE(1854), 2, + STATE(1892), 2, sym_line_comment, sym_block_comment, - ACTIONS(2763), 54, + ACTIONS(2367), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206023,7 +209296,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -206039,6 +209311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -206068,17 +209341,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19322] = 5, + [19088] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2773), 1, + ACTIONS(3008), 1, anon_sym_LBRACK, - STATE(1855), 2, + STATE(1893), 2, sym_line_comment, sym_block_comment, - ACTIONS(2775), 54, + ACTIONS(3010), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206088,7 +209361,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -206104,6 +209376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -206133,17 +209406,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19392] = 5, + [19158] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2777), 1, + ACTIONS(2189), 1, anon_sym_LBRACK, - STATE(1856), 2, + STATE(1894), 2, sym_line_comment, sym_block_comment, - ACTIONS(2779), 54, + ACTIONS(2191), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206153,7 +209426,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -206169,6 +209441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -206198,17 +209471,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19462] = 5, + [19228] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2841), 1, + ACTIONS(1885), 1, anon_sym_LBRACK, - STATE(1857), 2, + STATE(1895), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 54, + ACTIONS(1887), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206218,7 +209491,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -206234,6 +209506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -206263,17 +209536,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19532] = 5, + [19298] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2845), 1, + ACTIONS(1847), 1, anon_sym_LBRACK, - STATE(1858), 2, + STATE(1896), 2, sym_line_comment, sym_block_comment, - ACTIONS(2847), 54, + ACTIONS(1845), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206283,7 +209556,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -206299,6 +209571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -206328,17 +209601,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19602] = 5, + [19368] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2857), 1, + ACTIONS(2109), 1, anon_sym_LBRACK, - STATE(1859), 2, + STATE(1897), 2, sym_line_comment, sym_block_comment, - ACTIONS(2859), 54, + ACTIONS(2111), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206348,7 +209621,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -206364,6 +209636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -206393,17 +209666,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19672] = 5, + [19438] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2743), 1, + ACTIONS(2325), 1, anon_sym_LBRACK, - STATE(1860), 2, + STATE(1898), 2, sym_line_comment, sym_block_comment, - ACTIONS(2745), 54, + ACTIONS(2327), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206413,7 +209686,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -206429,6 +209701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -206458,17 +209731,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19742] = 5, + [19508] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3009), 1, + ACTIONS(2743), 1, anon_sym_LBRACK, - STATE(1861), 2, + STATE(1899), 2, sym_line_comment, sym_block_comment, - ACTIONS(3011), 54, + ACTIONS(2745), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206478,7 +209751,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -206494,6 +209766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -206523,17 +209796,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19812] = 5, + [19578] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3013), 1, + ACTIONS(2385), 1, anon_sym_LBRACK, - STATE(1862), 2, + STATE(1900), 2, sym_line_comment, sym_block_comment, - ACTIONS(3015), 54, + ACTIONS(2387), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206543,7 +209816,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -206559,6 +209831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -206588,17 +209861,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19882] = 5, + [19648] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3019), 1, + ACTIONS(2419), 1, anon_sym_LBRACK, - STATE(1863), 2, + STATE(1901), 2, sym_line_comment, sym_block_comment, - ACTIONS(3021), 54, + ACTIONS(2421), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206608,7 +209881,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -206624,6 +209896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -206653,17 +209926,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19952] = 5, + [19718] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3064), 1, + ACTIONS(2423), 1, anon_sym_LBRACK, - STATE(1864), 2, + STATE(1902), 2, sym_line_comment, sym_block_comment, - ACTIONS(3066), 54, + ACTIONS(2425), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206673,7 +209946,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -206689,6 +209961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -206718,29 +209991,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20022] = 5, + [19788] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2195), 1, + ACTIONS(2431), 1, anon_sym_LBRACK, - STATE(1865), 2, + STATE(1903), 2, sym_line_comment, sym_block_comment, - ACTIONS(2197), 54, + ACTIONS(2433), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_fn, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -206752,14 +210022,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_struct, - anon_sym_pub, - anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -206776,36 +210043,39 @@ 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, - [20092] = 5, + 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, + [19858] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2191), 1, + ACTIONS(2439), 1, anon_sym_LBRACK, - STATE(1866), 2, + STATE(1904), 2, sym_line_comment, sym_block_comment, - ACTIONS(2193), 54, + ACTIONS(2441), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_fn, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -206817,14 +210087,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_struct, - anon_sym_pub, - anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -206841,24 +210108,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [20162] = 5, + 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, + [19928] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2117), 1, + ACTIONS(2987), 1, anon_sym_LBRACK, - STATE(1867), 2, + STATE(1905), 2, sym_line_comment, sym_block_comment, - ACTIONS(2119), 54, + ACTIONS(2989), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206868,7 +210141,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -206884,6 +210156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -206913,17 +210186,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20232] = 5, + [19998] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2747), 1, + ACTIONS(2979), 1, anon_sym_LBRACK, - STATE(1868), 2, + STATE(1906), 2, sym_line_comment, sym_block_comment, - ACTIONS(2749), 54, + ACTIONS(2981), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206933,7 +210206,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -206949,6 +210221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -206978,17 +210251,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20302] = 5, + [20068] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2231), 1, + ACTIONS(2963), 1, anon_sym_LBRACK, - STATE(1869), 2, + STATE(1907), 2, sym_line_comment, sym_block_comment, - ACTIONS(2233), 54, + ACTIONS(2965), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206998,7 +210271,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -207014,6 +210286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -207043,17 +210316,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20372] = 5, + [20138] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2239), 1, + ACTIONS(2959), 1, anon_sym_LBRACK, - STATE(1870), 2, + STATE(1908), 2, sym_line_comment, sym_block_comment, - ACTIONS(2241), 54, + ACTIONS(2961), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207063,7 +210336,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -207079,6 +210351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -207108,17 +210381,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20442] = 5, + [20208] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2142), 1, + ACTIONS(2897), 1, anon_sym_LBRACK, - STATE(1871), 2, + STATE(1909), 2, sym_line_comment, sym_block_comment, - ACTIONS(2139), 54, + ACTIONS(2899), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207128,7 +210401,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -207144,6 +210416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -207173,17 +210446,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20512] = 5, + [20278] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2255), 1, + ACTIONS(2931), 1, anon_sym_LBRACK, - STATE(1872), 2, + STATE(1910), 2, sym_line_comment, sym_block_comment, - ACTIONS(2257), 54, + ACTIONS(2933), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207193,7 +210466,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -207209,6 +210481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -207238,17 +210511,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20582] = 5, + [20348] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2437), 1, + ACTIONS(2947), 1, anon_sym_LBRACK, - STATE(1873), 2, + STATE(1911), 2, sym_line_comment, sym_block_comment, - ACTIONS(2439), 54, + ACTIONS(2949), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207258,7 +210531,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -207274,6 +210546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -207303,17 +210576,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20652] = 5, - ACTIONS(3), 1, + [20418] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(1874), 2, + ACTIONS(2955), 1, + anon_sym_LBRACK, + STATE(1912), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 18, + ACTIONS(2957), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -207321,8 +210603,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -207330,28 +210619,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1807), 37, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -207368,17 +210640,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [20722] = 5, + anon_sym_COLON_EQ, + [20488] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2451), 1, + ACTIONS(2971), 1, anon_sym_LBRACK, - STATE(1875), 2, + STATE(1913), 2, sym_line_comment, sym_block_comment, - ACTIONS(2453), 54, + ACTIONS(2973), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207388,7 +210661,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -207404,6 +210676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -207433,17 +210706,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20792] = 5, + [20558] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, + ACTIONS(2975), 1, anon_sym_LBRACK, - STATE(1876), 2, + STATE(1914), 2, sym_line_comment, sym_block_comment, - ACTIONS(2457), 54, + ACTIONS(2977), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207453,7 +210726,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -207469,6 +210741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -207498,17 +210771,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20862] = 5, + [20628] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2461), 1, + ACTIONS(2967), 1, anon_sym_LBRACK, - STATE(1877), 2, + STATE(1915), 2, sym_line_comment, sym_block_comment, - ACTIONS(2463), 54, + ACTIONS(2969), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207518,7 +210791,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -207534,6 +210806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -207563,17 +210836,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20932] = 5, + [20698] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2473), 1, + ACTIONS(2777), 1, anon_sym_LBRACK, - STATE(1878), 2, + STATE(1916), 2, sym_line_comment, sym_block_comment, - ACTIONS(2475), 54, + ACTIONS(2779), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207583,7 +210856,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -207599,6 +210871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -207628,17 +210901,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21002] = 5, + [20768] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2705), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - STATE(1879), 2, + STATE(1917), 2, sym_line_comment, sym_block_comment, - ACTIONS(2707), 54, + ACTIONS(2761), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207648,7 +210921,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -207664,6 +210936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -207693,17 +210966,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21072] = 5, + [20838] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2819), 1, + ACTIONS(2361), 1, anon_sym_LBRACK, - STATE(1880), 2, + STATE(1918), 2, sym_line_comment, sym_block_comment, - ACTIONS(2821), 54, + ACTIONS(2363), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207713,7 +210986,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -207729,6 +211001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -207758,80 +211031,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21142] = 27, - ACTIONS(3), 1, + [20908] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1773), 1, - anon_sym_EQ, - ACTIONS(4675), 1, + ACTIONS(1943), 1, + anon_sym_LBRACK, + STATE(1919), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1945), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, - ACTIONS(4681), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4691), 1, - anon_sym_LBRACK, - ACTIONS(4693), 1, + anon_sym_EQ, + 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, - ACTIONS(4695), 1, anon_sym_DASH_DASH, - ACTIONS(4697), 1, anon_sym_QMARK, - ACTIONS(4699), 1, anon_sym_BANG, - ACTIONS(4701), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(4703), 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(4705), 1, anon_sym_PIPE_PIPE, - ACTIONS(4707), 1, anon_sym_or, - ACTIONS(4709), 1, - anon_sym_POUND_LBRACK, - STATE(1977), 1, - sym_or_block, - STATE(1984), 1, - sym_argument_list, - STATE(4284), 1, - sym_type_parameters, - ACTIONS(4673), 2, - anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4687), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4713), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(4779), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - STATE(1881), 2, + 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, + [20978] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2753), 1, + anon_sym_LBRACK, + STATE(1920), 2, sym_line_comment, sym_block_comment, - ACTIONS(4683), 4, - anon_sym_PIPE, + ACTIONS(2755), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4689), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4685), 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_PIPE, + anon_sym_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(1771), 15, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -207845,17 +211161,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21256] = 5, - ACTIONS(3), 1, + [21048] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(1882), 2, + ACTIONS(2983), 1, + anon_sym_LBRACK, + STATE(1921), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 18, + ACTIONS(2985), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -207863,8 +211188,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -207872,28 +211204,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 37, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -207910,17 +211225,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [21326] = 5, + anon_sym_COLON_EQ, + [21118] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3054), 1, + ACTIONS(2935), 1, anon_sym_LBRACK, - STATE(1883), 2, + STATE(1922), 2, sym_line_comment, sym_block_comment, - ACTIONS(3056), 54, + ACTIONS(2937), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207930,7 +211246,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -207946,6 +211261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -207975,17 +211291,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21396] = 5, + [21188] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2831), 1, + ACTIONS(2319), 1, anon_sym_LBRACK, - STATE(1884), 2, + STATE(1923), 2, sym_line_comment, sym_block_comment, - ACTIONS(2833), 54, + ACTIONS(2321), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207995,7 +211311,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -208011,6 +211326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -208040,17 +211356,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21466] = 5, + [21258] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3050), 1, + ACTIONS(2399), 1, anon_sym_LBRACK, - STATE(1885), 2, + STATE(1924), 2, sym_line_comment, sym_block_comment, - ACTIONS(3052), 54, + ACTIONS(2401), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208060,7 +211376,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -208076,6 +211391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -208105,17 +211421,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21536] = 5, + [21328] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(2103), 1, anon_sym_LBRACK, - STATE(1886), 2, + STATE(1925), 2, sym_line_comment, sym_block_comment, - ACTIONS(3046), 54, + ACTIONS(2105), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208125,7 +211441,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -208141,6 +211456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -208170,17 +211486,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21606] = 5, + [21398] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3027), 1, + ACTIONS(2632), 1, anon_sym_LBRACK, - STATE(1887), 2, + STATE(1926), 2, sym_line_comment, sym_block_comment, - ACTIONS(3029), 54, + ACTIONS(2629), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208190,7 +211506,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -208206,6 +211521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -208235,17 +211551,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21676] = 5, + [21468] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1888), 2, + STATE(1927), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 18, + ACTIONS(1837), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -208255,6 +211570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -208262,8 +211578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1807), 37, - anon_sym_SEMI, + ACTIONS(1835), 37, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -208274,8 +211589,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, @@ -208299,59 +211616,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, - [21746] = 5, + [21538] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3023), 1, + ACTIONS(2632), 1, anon_sym_LBRACK, - STATE(1889), 2, + STATE(1928), 2, sym_line_comment, sym_block_comment, - ACTIONS(3025), 54, + ACTIONS(2627), 19, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -208365,29 +211646,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21816] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2169), 1, - anon_sym_LBRACK, - STATE(1890), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2171), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(2629), 35, 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, @@ -208399,14 +211661,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_struct, - anon_sym_pub, - anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -208423,36 +211682,27 @@ 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, - [21886] = 5, + [21610] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2165), 1, + ACTIONS(2935), 1, anon_sym_LBRACK, - STATE(1891), 2, + ACTIONS(3005), 1, + anon_sym_DOT, + STATE(1929), 2, sym_line_comment, sym_block_comment, - ACTIONS(2167), 54, + ACTIONS(2937), 53, 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_fn, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -208464,14 +211714,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_struct, - anon_sym_pub, - anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -208488,34 +211735,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [21956] = 5, + 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, + [21682] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2053), 1, + ACTIONS(1889), 1, + anon_sym_DOT, + ACTIONS(2093), 1, anon_sym_LBRACK, - STATE(1892), 2, + STATE(1930), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 54, + ACTIONS(2095), 53, 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, @@ -208531,6 +211784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -208560,58 +211814,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22026] = 5, - ACTIONS(497), 1, + [21754] = 17, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2853), 1, + ACTIONS(4703), 1, + anon_sym_LPAREN, + ACTIONS(4713), 1, anon_sym_LBRACK, - STATE(1893), 2, + ACTIONS(4719), 1, + anon_sym_QMARK, + ACTIONS(4721), 1, + anon_sym_BANG, + ACTIONS(4723), 1, + anon_sym_LBRACK2, + ACTIONS(4731), 1, + anon_sym_POUND_LBRACK, + STATE(1987), 1, + sym_or_block, + STATE(1988), 1, + sym_argument_list, + STATE(4173), 1, + sym_type_parameters, + ACTIONS(4695), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1931), 2, sym_line_comment, sym_block_comment, - ACTIONS(2855), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1793), 3, anon_sym_EQ, - anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4791), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4793), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1791), 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, + [21848] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1767), 1, + anon_sym_EQ, + ACTIONS(4703), 1, + anon_sym_LPAREN, + ACTIONS(4713), 1, + anon_sym_LBRACK, + ACTIONS(4719), 1, anon_sym_QMARK, + ACTIONS(4721), 1, anon_sym_BANG, + ACTIONS(4723), 1, anon_sym_LBRACK2, + ACTIONS(4731), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4799), 1, + anon_sym_AMP_AMP, + STATE(1987), 1, + sym_or_block, + STATE(1988), 1, + sym_argument_list, + STATE(4173), 1, + sym_type_parameters, + ACTIONS(4695), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4795), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4803), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1932), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4791), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, + ACTIONS(4797), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4793), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, + ACTIONS(1795), 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, @@ -208625,54 +211972,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22096] = 5, - ACTIONS(497), 1, + [21950] = 20, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2815), 1, + ACTIONS(1767), 1, + anon_sym_EQ, + ACTIONS(4703), 1, + anon_sym_LPAREN, + ACTIONS(4713), 1, anon_sym_LBRACK, - STATE(1894), 2, + ACTIONS(4719), 1, + anon_sym_QMARK, + ACTIONS(4721), 1, + anon_sym_BANG, + ACTIONS(4723), 1, + anon_sym_LBRACK2, + ACTIONS(4731), 1, + anon_sym_POUND_LBRACK, + STATE(1987), 1, + sym_or_block, + STATE(1988), 1, + sym_argument_list, + STATE(4173), 1, + sym_type_parameters, + ACTIONS(4695), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4795), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4803), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1933), 2, sym_line_comment, sym_block_comment, - ACTIONS(2817), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(4791), 4, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4797), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(4793), 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(1795), 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, + [22050] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4703), 1, + anon_sym_LPAREN, + ACTIONS(4713), 1, + anon_sym_LBRACK, + ACTIONS(4719), 1, anon_sym_QMARK, + ACTIONS(4721), 1, anon_sym_BANG, + ACTIONS(4723), 1, anon_sym_LBRACK2, + ACTIONS(4731), 1, + anon_sym_POUND_LBRACK, + STATE(1987), 1, + sym_or_block, + STATE(1988), 1, + sym_argument_list, + STATE(4173), 1, + sym_type_parameters, + ACTIONS(4695), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1934), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1767), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4791), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, + ACTIONS(4793), 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(1795), 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_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -208690,59 +212129,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22166] = 9, + [22144] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4787), 1, - anon_sym_COMMA, - ACTIONS(4789), 1, - anon_sym_COLON_EQ, - STATE(3833), 1, - aux_sym_identifier_list_repeat1, - ACTIONS(2060), 2, - anon_sym_LBRACE, + ACTIONS(4703), 1, + anon_sym_LPAREN, + ACTIONS(4713), 1, anon_sym_LBRACK, - STATE(1895), 2, + ACTIONS(4719), 1, + anon_sym_QMARK, + ACTIONS(4721), 1, + anon_sym_BANG, + ACTIONS(4723), 1, + anon_sym_LBRACK2, + ACTIONS(4731), 1, + anon_sym_POUND_LBRACK, + STATE(1987), 1, + sym_or_block, + STATE(1988), 1, + sym_argument_list, + STATE(4173), 1, + sym_type_parameters, + ACTIONS(4695), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1935), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 19, + ACTIONS(1767), 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_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + anon_sym_PIPE, anon_sym_CARET, + ACTIONS(4793), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2053), 31, - anon_sym_DOT, + ACTIONS(1795), 29, + anon_sym_SEMI, anon_sym_as, - anon_sym_LPAREN, + 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_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, @@ -208759,27 +212204,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [22244] = 5, - ACTIONS(497), 1, + anon_sym_COLON_EQ, + [22236] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2811), 1, - anon_sym_LBRACK, - STATE(1896), 2, + ACTIONS(4815), 1, + anon_sym_else, + STATE(2016), 1, + sym_else_branch, + STATE(1936), 2, sym_line_comment, sym_block_comment, - ACTIONS(2813), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1805), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -208787,14 +212226,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -208802,6 +212236,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1803), 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, @@ -208824,27 +212272,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22314] = 5, - ACTIONS(497), 1, + [22310] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2807), 1, - anon_sym_LBRACK, - STATE(1897), 2, + ACTIONS(4815), 1, + anon_sym_else, + STATE(2021), 1, + sym_else_branch, + STATE(1937), 2, sym_line_comment, sym_block_comment, - ACTIONS(2809), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1799), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -208852,14 +212293,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -208867,6 +212303,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1797), 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, @@ -208890,26 +212340,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_COLON_EQ, [22384] = 5, - ACTIONS(497), 1, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2799), 1, - anon_sym_LBRACK, - STATE(1898), 2, + STATE(1938), 2, sym_line_comment, sym_block_comment, - ACTIONS(2801), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1877), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -208917,14 +212356,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -208932,11 +212366,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1875), 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, @@ -208959,14 +212409,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1966), 1, + STATE(2093), 1, sym_type_parameters, - STATE(1899), 2, + STATE(1939), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 18, + ACTIONS(1945), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -208976,6 +212425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -208983,7 +212433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1897), 35, + ACTIONS(1943), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -209024,14 +212474,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4791), 1, - anon_sym_DOLLARelse, - STATE(1900), 2, + STATE(1968), 1, + sym_type_parameters, + STATE(1940), 2, sym_line_comment, sym_block_comment, - ACTIONS(2041), 18, + ACTIONS(1945), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -209041,6 +212490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -209048,7 +212498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2039), 35, + ACTIONS(1943), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -209084,15 +212534,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22596] = 4, + [22596] = 27, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1783), 1, + anon_sym_EQ, + ACTIONS(4697), 1, + anon_sym_as, + ACTIONS(4703), 1, + anon_sym_LPAREN, + ACTIONS(4713), 1, + anon_sym_LBRACK, + ACTIONS(4715), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4717), 1, + anon_sym_DASH_DASH, + ACTIONS(4719), 1, + anon_sym_QMARK, + ACTIONS(4721), 1, + anon_sym_BANG, + ACTIONS(4723), 1, + anon_sym_LBRACK2, + ACTIONS(4729), 1, + anon_sym_or, + ACTIONS(4731), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4799), 1, + anon_sym_AMP_AMP, + ACTIONS(4801), 1, + anon_sym_PIPE_PIPE, + STATE(1987), 1, + sym_or_block, + STATE(1988), 1, + sym_argument_list, + STATE(4173), 1, + sym_type_parameters, + ACTIONS(4695), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4795), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4803), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(4817), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(1941), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4791), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4797), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4793), 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(1781), 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, + [22709] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(1901), 2, + STATE(1942), 2, sym_line_comment, sym_block_comment, - ACTIONS(3728), 54, + ACTIONS(3732), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209147,21 +212683,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [22663] = 9, + [22776] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(1943), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4821), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(4819), 49, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_DOT_DOT_DOT, + anon_sym_struct, + anon_sym_mut, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_go, + anon_sym_spawn, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_float_literal, + sym_rune_literal, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_c_SQUOTE, + anon_sym_c_DQUOTE, + anon_sym_r_SQUOTE, + anon_sym_r_DQUOTE, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [22845] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4795), 1, + ACTIONS(4825), 1, anon_sym_COMMA, - ACTIONS(4797), 1, + ACTIONS(4827), 1, anon_sym_EQ, - STATE(3273), 1, + STATE(3333), 1, aux_sym_expression_without_blocks_list_repeat1, - STATE(1902), 2, + STATE(1944), 2, sym_line_comment, sym_block_comment, - ACTIONS(4793), 13, + ACTIONS(4823), 13, anon_sym_LBRACE, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -209175,8 +212775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - ACTIONS(2883), 17, - anon_sym_PIPE, + ACTIONS(2321), 17, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -209186,6 +212785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -209193,7 +212793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2881), 21, + ACTIONS(2319), 21, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -209215,69 +212815,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [22740] = 27, + [22922] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1759), 1, + ACTIONS(1657), 1, anon_sym_EQ, - ACTIONS(4675), 1, + ACTIONS(4697), 1, anon_sym_as, - ACTIONS(4681), 1, + ACTIONS(4703), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4713), 1, anon_sym_LBRACK, - ACTIONS(4693), 1, + ACTIONS(4715), 1, anon_sym_PLUS_PLUS, - ACTIONS(4695), 1, + ACTIONS(4717), 1, anon_sym_DASH_DASH, - ACTIONS(4697), 1, + ACTIONS(4719), 1, anon_sym_QMARK, - ACTIONS(4699), 1, + ACTIONS(4721), 1, anon_sym_BANG, - ACTIONS(4701), 1, + ACTIONS(4723), 1, anon_sym_LBRACK2, - ACTIONS(4707), 1, + ACTIONS(4729), 1, anon_sym_or, - ACTIONS(4709), 1, + ACTIONS(4731), 1, anon_sym_POUND_LBRACK, - ACTIONS(4773), 1, + ACTIONS(4799), 1, anon_sym_AMP_AMP, - ACTIONS(4775), 1, + ACTIONS(4801), 1, anon_sym_PIPE_PIPE, - STATE(1977), 1, + STATE(1987), 1, sym_or_block, - STATE(1984), 1, + STATE(1988), 1, sym_argument_list, - STATE(4284), 1, + STATE(4173), 1, sym_type_parameters, - ACTIONS(4673), 2, + ACTIONS(4695), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4711), 2, + ACTIONS(4733), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4769), 2, + ACTIONS(4795), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4777), 2, + ACTIONS(4803), 2, anon_sym_in, anon_sym_BANGin, - STATE(1903), 2, + STATE(1945), 2, sym_line_comment, sym_block_comment, - ACTIONS(4765), 4, - anon_sym_PIPE, + ACTIONS(4791), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4771), 4, + ACTIONS(4797), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4767), 8, + ACTIONS(4793), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -209286,7 +212886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3534), 14, + ACTIONS(3530), 14, anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -209301,58 +212901,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22853] = 6, + [23035] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2017), 1, + ACTIONS(1783), 1, + anon_sym_EQ, + ACTIONS(4697), 1, + anon_sym_as, + ACTIONS(4703), 1, + anon_sym_LPAREN, + ACTIONS(4713), 1, + anon_sym_LBRACK, + ACTIONS(4715), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4717), 1, + anon_sym_DASH_DASH, + ACTIONS(4719), 1, + anon_sym_QMARK, + ACTIONS(4721), 1, + anon_sym_BANG, + ACTIONS(4723), 1, + anon_sym_LBRACK2, + ACTIONS(4729), 1, + anon_sym_or, + ACTIONS(4731), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4799), 1, + anon_sym_AMP_AMP, + ACTIONS(4801), 1, + anon_sym_PIPE_PIPE, + STATE(1987), 1, + sym_or_block, + STATE(1988), 1, + sym_argument_list, + STATE(4173), 1, sym_type_parameters, - STATE(1904), 2, + ACTIONS(4695), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4795), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4803), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(4829), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(1946), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 18, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(4791), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4797), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4793), 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(1897), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(1781), 14, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -209366,69 +212987,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22924] = 27, + [23148] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1773), 1, + ACTIONS(1783), 1, anon_sym_EQ, - ACTIONS(4675), 1, + ACTIONS(4697), 1, anon_sym_as, - ACTIONS(4681), 1, + ACTIONS(4703), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4713), 1, anon_sym_LBRACK, - ACTIONS(4693), 1, + ACTIONS(4715), 1, anon_sym_PLUS_PLUS, - ACTIONS(4695), 1, + ACTIONS(4717), 1, anon_sym_DASH_DASH, - ACTIONS(4697), 1, + ACTIONS(4719), 1, anon_sym_QMARK, - ACTIONS(4699), 1, + ACTIONS(4721), 1, anon_sym_BANG, - ACTIONS(4701), 1, + ACTIONS(4723), 1, anon_sym_LBRACK2, - ACTIONS(4707), 1, + ACTIONS(4729), 1, anon_sym_or, - ACTIONS(4709), 1, + ACTIONS(4731), 1, anon_sym_POUND_LBRACK, - ACTIONS(4773), 1, + ACTIONS(4799), 1, anon_sym_AMP_AMP, - ACTIONS(4775), 1, + ACTIONS(4801), 1, anon_sym_PIPE_PIPE, - STATE(1977), 1, + STATE(1987), 1, sym_or_block, - STATE(1984), 1, + STATE(1988), 1, sym_argument_list, - STATE(4284), 1, + STATE(4173), 1, sym_type_parameters, - ACTIONS(4673), 2, + ACTIONS(4695), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4769), 2, + ACTIONS(4795), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4777), 2, + ACTIONS(4803), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(4799), 2, + ACTIONS(4831), 2, anon_sym_is, anon_sym_BANGis, - STATE(1905), 2, + STATE(1947), 2, sym_line_comment, sym_block_comment, - ACTIONS(4765), 4, - anon_sym_PIPE, + ACTIONS(4791), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4771), 4, + ACTIONS(4797), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4767), 8, + ACTIONS(4793), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -209437,7 +213058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1771), 14, + ACTIONS(1781), 14, anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -209452,79 +213073,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23037] = 27, + [23261] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1773), 1, + ACTIONS(4833), 1, + anon_sym_DOLLARelse, + STATE(1948), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1853), 18, anon_sym_EQ, - ACTIONS(4675), 1, + 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_PIPE, + anon_sym_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), 35, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - ACTIONS(4681), 1, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4691), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - ACTIONS(4693), 1, anon_sym_PLUS_PLUS, - ACTIONS(4695), 1, anon_sym_DASH_DASH, - ACTIONS(4697), 1, - anon_sym_QMARK, - ACTIONS(4699), 1, - anon_sym_BANG, - ACTIONS(4701), 1, - anon_sym_LBRACK2, - ACTIONS(4707), 1, - anon_sym_or, - ACTIONS(4709), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4773), 1, anon_sym_AMP_AMP, - ACTIONS(4775), 1, anon_sym_PIPE_PIPE, - STATE(1977), 1, - sym_or_block, - STATE(1984), 1, - sym_argument_list, - STATE(4284), 1, - sym_type_parameters, - ACTIONS(4673), 2, - anon_sym_DOT, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(4769), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4777), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(4801), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - STATE(1906), 2, + 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, + [23332] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4835), 1, + anon_sym_DOLLARelse, + STATE(1949), 2, sym_line_comment, sym_block_comment, - ACTIONS(4765), 4, - anon_sym_PIPE, + ACTIONS(2079), 18, + anon_sym_EQ, 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_PIPE, + anon_sym_LBRACK2, anon_sym_CARET, - ACTIONS(4771), 4, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2077), 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, - ACTIONS(4767), 8, + 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, + [23403] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4837), 1, + anon_sym_DOLLARelse, + STATE(1950), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1853), 18, + anon_sym_EQ, + 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_PIPE, + anon_sym_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(1771), 14, + ACTIONS(1851), 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, @@ -209537,20 +213268,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [23150] = 6, + [23474] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4803), 1, + ACTIONS(4839), 1, anon_sym_DOLLARelse, - STATE(1907), 2, + STATE(1951), 2, sym_line_comment, sym_block_comment, ACTIONS(2079), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -209560,6 +213289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -209603,19 +213333,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23221] = 6, + [23545] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, - anon_sym_DOLLARelse, - STATE(1908), 2, + STATE(1952), 2, sym_line_comment, sym_block_comment, - ACTIONS(2079), 18, + ACTIONS(2933), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -209625,6 +213352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -209632,8 +213360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2077), 35, - anon_sym_SEMI, + ACTIONS(2931), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -209644,8 +213371,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, @@ -209667,20 +213396,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [23292] = 6, + [23613] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4807), 1, - anon_sym_DOLLARelse, - STATE(1909), 2, + STATE(1953), 2, sym_line_comment, sym_block_comment, - ACTIONS(2041), 18, + ACTIONS(2985), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -209690,6 +213415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -209697,7 +213423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2039), 35, + ACTIONS(2983), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -209733,79 +213459,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23363] = 27, + [23681] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1773), 1, + STATE(1954), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3042), 18, anon_sym_EQ, - ACTIONS(4675), 1, + 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_PIPE, + anon_sym_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(3040), 35, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - ACTIONS(4681), 1, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4691), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - ACTIONS(4693), 1, anon_sym_PLUS_PLUS, - ACTIONS(4695), 1, anon_sym_DASH_DASH, - ACTIONS(4697), 1, - anon_sym_QMARK, - ACTIONS(4699), 1, - anon_sym_BANG, - ACTIONS(4701), 1, - anon_sym_LBRACK2, - ACTIONS(4707), 1, - anon_sym_or, - ACTIONS(4709), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4773), 1, anon_sym_AMP_AMP, - ACTIONS(4775), 1, anon_sym_PIPE_PIPE, - STATE(1977), 1, - sym_or_block, - STATE(1984), 1, - sym_argument_list, - STATE(4284), 1, - sym_type_parameters, - ACTIONS(4673), 2, - anon_sym_DOT, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(4769), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4777), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(4809), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - STATE(1910), 2, + 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, + [23749] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1955), 2, sym_line_comment, sym_block_comment, - ACTIONS(4765), 4, - anon_sym_PIPE, + ACTIONS(3038), 18, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4771), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4767), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_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(1771), 14, + ACTIONS(3036), 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, @@ -209819,85 +213585,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23476] = 5, - ACTIONS(497), 1, + [23817] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1911), 2, + STATE(1956), 2, sym_line_comment, sym_block_comment, - ACTIONS(4813), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(4811), 49, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_fn, + ACTIONS(3030), 18, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_mut, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, - anon_sym_go, - anon_sym_spawn, - anon_sym_json_DOTdecode, + anon_sym_PIPE, 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, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_c_SQUOTE, - anon_sym_c_DQUOTE, - anon_sym_r_SQUOTE, - anon_sym_r_DQUOTE, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [23545] = 7, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3028), 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, + [23885] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2060), 1, - anon_sym_LBRACK, - ACTIONS(2157), 1, - anon_sym_LBRACE, - STATE(1912), 2, + STATE(1957), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 18, + ACTIONS(2995), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -209907,6 +213667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -209914,16 +213675,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2053), 33, + ACTIONS(2993), 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, @@ -209948,17 +213711,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23617] = 5, + [23953] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1913), 2, + STATE(1958), 2, sym_line_comment, sym_block_comment, - ACTIONS(2745), 18, + ACTIONS(3026), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -209968,6 +213730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -209975,7 +213738,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2743), 35, + ACTIONS(3024), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -209986,10 +213750,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, @@ -210011,17 +213773,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23685] = 5, + anon_sym_COLON_EQ, + [24021] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1914), 2, + STATE(1959), 2, sym_line_comment, sym_block_comment, - ACTIONS(2817), 18, + ACTIONS(2941), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -210031,6 +213793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -210038,7 +213801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2815), 35, + ACTIONS(2939), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -210074,17 +213837,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23753] = 5, + [24089] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1915), 2, + STATE(1960), 2, sym_line_comment, sym_block_comment, - ACTIONS(2855), 18, + ACTIONS(3010), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -210094,6 +213856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -210101,7 +213864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2853), 35, + ACTIONS(3008), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -210137,17 +213900,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23821] = 5, + [24157] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1916), 2, + STATE(1961), 2, sym_line_comment, sym_block_comment, - ACTIONS(2245), 18, + ACTIONS(2929), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -210157,6 +213919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -210164,7 +213927,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2243), 35, + ACTIONS(2927), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210175,10 +213939,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, @@ -210200,17 +213962,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23889] = 5, + anon_sym_COLON_EQ, + [24225] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1917), 2, + STATE(1962), 2, sym_line_comment, sym_block_comment, - ACTIONS(2181), 18, + ACTIONS(2925), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -210220,6 +213982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -210227,7 +213990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2179), 35, + ACTIONS(2923), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -210263,17 +214026,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23957] = 5, + [24293] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1918), 2, + STATE(1963), 2, sym_line_comment, sym_block_comment, - ACTIONS(2427), 18, + ACTIONS(2731), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -210283,6 +214045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -210290,7 +214053,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2425), 35, + ACTIONS(2729), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210301,10 +214065,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, @@ -210326,17 +214088,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24025] = 5, + anon_sym_COLON_EQ, + [24361] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1919), 2, + STATE(1964), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 18, + ACTIONS(2727), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -210346,6 +214108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -210353,7 +214116,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1807), 35, + ACTIONS(2725), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210364,10 +214128,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, @@ -210389,20 +214151,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24093] = 6, + anon_sym_COLON_EQ, + [24429] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2060), 2, + STATE(1965), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2715), 18, + anon_sym_EQ, + 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_PIPE, + anon_sym_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(2713), 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, - STATE(1920), 2, + 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, + [24497] = 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(2055), 18, + ACTIONS(2643), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -210412,6 +214234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -210419,19 +214242,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2053), 33, + ACTIONS(2641), 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_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, @@ -210453,19 +214277,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24163] = 6, + anon_sym_COLON_EQ, + [24565] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2060), 1, - anon_sym_DOT, - STATE(1921), 2, + STATE(1967), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 18, + ACTIONS(2709), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -210475,6 +214297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -210482,8 +214305,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2157), 34, + ACTIONS(2707), 35, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -210517,17 +214341,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24233] = 5, + [24633] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1922), 2, + STATE(1968), 2, sym_line_comment, sym_block_comment, - ACTIONS(2273), 18, + ACTIONS(2745), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -210537,6 +214360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -210544,7 +214368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2271), 35, + ACTIONS(2743), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -210580,17 +214404,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24301] = 5, + [24701] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1923), 2, + STATE(1969), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 18, + ACTIONS(2701), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -210600,6 +214423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -210607,7 +214431,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2227), 35, + ACTIONS(2699), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210618,10 +214443,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, @@ -210643,19 +214466,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24369] = 6, + anon_sym_COLON_EQ, + [24769] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2060), 1, - anon_sym_DOT, - STATE(1924), 2, + STATE(1970), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 18, + ACTIONS(2449), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -210665,6 +214486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -210672,7 +214494,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2157), 34, + ACTIONS(2447), 35, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -210682,10 +214506,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, @@ -210707,17 +214529,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24439] = 5, + anon_sym_COLON_EQ, + [24837] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1925), 2, + STATE(1971), 2, sym_line_comment, sym_block_comment, - ACTIONS(3052), 18, + ACTIONS(2111), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -210727,6 +214549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -210734,7 +214557,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3050), 35, + ACTIONS(2109), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210745,10 +214569,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, @@ -210770,80 +214592,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24507] = 5, - ACTIONS(497), 1, + anon_sym_COLON_EQ, + [24905] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1926), 2, + STATE(1972), 2, sym_line_comment, sym_block_comment, - ACTIONS(4817), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2989), 18, + anon_sym_EQ, + 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_PIPE, + anon_sym_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_SEMI, - anon_sym_COMMA, - ACTIONS(4815), 48, anon_sym_DOT, + anon_sym_as, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_fn, + 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, + [24973] = 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(2981), 18, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_struct, - anon_sym_mut, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, - anon_sym_go, - anon_sym_spawn, - anon_sym_json_DOTdecode, + anon_sym_PIPE, 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, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_c_SQUOTE, - anon_sym_c_DQUOTE, - anon_sym_r_SQUOTE, - anon_sym_r_DQUOTE, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [24575] = 5, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2979), 35, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [25041] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1927), 2, + STATE(1974), 2, sym_line_comment, sym_block_comment, - ACTIONS(2139), 18, + ACTIONS(2367), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -210853,6 +214738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -210860,7 +214746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2142), 35, + ACTIONS(2365), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -210896,17 +214782,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24643] = 5, + [25109] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1928), 2, + STATE(1975), 2, sym_line_comment, sym_block_comment, - ACTIONS(3056), 18, + ACTIONS(2647), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -210916,6 +214801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -210923,7 +214809,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3054), 35, + ACTIONS(2645), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210934,10 +214821,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, @@ -210959,17 +214844,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24711] = 5, + anon_sym_COLON_EQ, + [25177] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1929), 2, + STATE(1976), 2, sym_line_comment, sym_block_comment, - ACTIONS(2147), 18, + ACTIONS(2965), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -210979,6 +214864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -210986,7 +214872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2145), 35, + ACTIONS(2963), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211022,17 +214908,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24779] = 5, + [25245] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1930), 2, + STATE(1977), 2, sym_line_comment, sym_block_comment, - ACTIONS(2029), 18, + ACTIONS(2191), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -211042,6 +214927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -211049,7 +214935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2031), 35, + ACTIONS(2189), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211085,17 +214971,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24847] = 5, + [25313] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1931), 2, + STATE(1978), 2, sym_line_comment, sym_block_comment, - ACTIONS(3025), 18, + ACTIONS(2961), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -211105,6 +214990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -211112,7 +214998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3023), 35, + ACTIONS(2959), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211148,17 +215034,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24915] = 5, + [25381] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1932), 2, + STATE(1979), 2, sym_line_comment, sym_block_comment, - ACTIONS(3029), 18, + ACTIONS(2779), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -211168,6 +215053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -211175,7 +215061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3027), 35, + ACTIONS(2777), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211211,80 +215097,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24983] = 5, - ACTIONS(3), 1, + [25449] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(1933), 2, + STATE(1980), 2, sym_line_comment, sym_block_comment, - ACTIONS(2821), 18, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(4843), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(4841), 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_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + 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_LT, - 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, - 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, - [25051] = 5, + 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, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_c_SQUOTE, + anon_sym_c_DQUOTE, + anon_sym_r_SQUOTE, + anon_sym_r_DQUOTE, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [25517] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1934), 2, + STATE(1981), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 18, + ACTIONS(2653), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -211294,6 +215179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -211301,7 +215187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1807), 35, + ACTIONS(2651), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211337,17 +215223,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25119] = 5, + [25585] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1935), 2, + STATE(1982), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 18, + ACTIONS(2761), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -211357,6 +215242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -211364,7 +215250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2053), 35, + ACTIONS(2759), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211400,17 +215286,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25187] = 5, + [25653] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1936), 2, + STATE(1983), 2, sym_line_comment, sym_block_comment, - ACTIONS(2707), 18, + ACTIONS(1887), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -211420,6 +215305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -211427,7 +215313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2705), 35, + ACTIONS(1885), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211463,17 +215349,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25255] = 5, + [25721] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1937), 2, + STATE(1984), 2, sym_line_comment, sym_block_comment, - ACTIONS(2225), 18, + ACTIONS(2327), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -211483,6 +215368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -211490,7 +215376,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2223), 35, + ACTIONS(2325), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211501,10 +215388,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, @@ -211526,17 +215411,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25323] = 5, + anon_sym_COLON_EQ, + [25789] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1938), 2, + STATE(1985), 2, sym_line_comment, sym_block_comment, - ACTIONS(3046), 18, + ACTIONS(1945), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -211546,6 +215431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -211553,7 +215439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3044), 35, + ACTIONS(1943), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211589,17 +215475,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25391] = 5, + [25857] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1939), 2, + STATE(1986), 2, sym_line_comment, sym_block_comment, - ACTIONS(2097), 18, + ACTIONS(2755), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -211609,6 +215494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -211616,7 +215502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2095), 35, + ACTIONS(2753), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211652,17 +215538,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25459] = 5, + [25925] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1940), 2, + STATE(1987), 2, sym_line_comment, sym_block_comment, - ACTIONS(2453), 18, + ACTIONS(2383), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -211672,6 +215557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -211679,7 +215565,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2451), 35, + ACTIONS(2381), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211690,10 +215577,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, @@ -211715,17 +215600,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25527] = 5, + anon_sym_COLON_EQ, + [25993] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1941), 2, + STATE(1988), 2, sym_line_comment, sym_block_comment, - ACTIONS(3052), 18, + ACTIONS(2387), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -211735,6 +215620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -211742,7 +215628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3050), 35, + ACTIONS(2385), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211778,17 +215664,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25595] = 5, + [26061] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1942), 2, + STATE(1989), 2, sym_line_comment, sym_block_comment, - ACTIONS(2813), 18, + ACTIONS(2421), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -211798,6 +215683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -211805,7 +215691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2811), 35, + ACTIONS(2419), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211841,17 +215727,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25663] = 5, + [26129] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1943), 2, + STATE(1990), 2, sym_line_comment, sym_block_comment, - ACTIONS(2715), 18, + ACTIONS(2425), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -211861,6 +215746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -211868,7 +215754,8 @@ 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(2423), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211879,10 +215766,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, @@ -211904,17 +215789,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25731] = 5, + anon_sym_COLON_EQ, + [26197] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1944), 2, + STATE(1991), 2, sym_line_comment, sym_block_comment, - ACTIONS(2877), 18, + ACTIONS(2433), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -211924,6 +215809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -211931,7 +215817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2875), 35, + ACTIONS(2431), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211967,17 +215853,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25799] = 5, + [26265] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1945), 2, + STATE(1992), 2, sym_line_comment, sym_block_comment, - ACTIONS(2439), 18, + ACTIONS(2441), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -211987,6 +215872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -211994,7 +215880,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2437), 35, + ACTIONS(2439), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212005,10 +215892,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, @@ -212030,17 +215915,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25867] = 5, + anon_sym_COLON_EQ, + [26333] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1946), 2, + STATE(1993), 2, sym_line_comment, sym_block_comment, - ACTIONS(2809), 18, + ACTIONS(2345), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -212050,6 +215935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -212057,8 +215943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2807), 35, - anon_sym_SEMI, + ACTIONS(2343), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212069,8 +215954,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, @@ -212092,18 +215979,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [25935] = 5, + [26401] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1947), 2, + STATE(1994), 2, sym_line_comment, sym_block_comment, - ACTIONS(3056), 18, + ACTIONS(2351), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -212113,6 +215998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -212120,8 +216006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3054), 35, - anon_sym_SEMI, + ACTIONS(2349), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212132,8 +216017,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, @@ -212155,18 +216042,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26003] = 5, + [26469] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1948), 2, + STATE(1995), 2, sym_line_comment, sym_block_comment, - ACTIONS(2093), 18, + ACTIONS(2475), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -212176,6 +216061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -212183,8 +216069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2091), 35, - anon_sym_SEMI, + ACTIONS(2473), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212195,8 +216080,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, @@ -212218,18 +216105,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26071] = 5, + [26537] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1949), 2, + STATE(1996), 2, sym_line_comment, sym_block_comment, - ACTIONS(2801), 18, + ACTIONS(2479), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -212239,6 +216124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -212246,8 +216132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2799), 35, - anon_sym_SEMI, + ACTIONS(2477), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212258,8 +216143,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, @@ -212281,18 +216168,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26139] = 5, + [26605] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1950), 2, + STATE(1997), 2, sym_line_comment, sym_block_comment, - ACTIONS(2749), 18, + ACTIONS(2491), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -212302,6 +216187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -212309,8 +216195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2747), 35, - anon_sym_SEMI, + ACTIONS(2489), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212321,8 +216206,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, @@ -212344,18 +216231,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26207] = 5, + [26673] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1951), 2, + STATE(1998), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 18, + ACTIONS(2647), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -212365,6 +216250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -212372,8 +216258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2505), 35, - anon_sym_SEMI, + ACTIONS(2645), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212384,8 +216269,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, @@ -212407,18 +216294,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26275] = 5, + [26741] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1952), 2, + STATE(1999), 2, sym_line_comment, sym_block_comment, - ACTIONS(2863), 18, + ACTIONS(2899), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -212428,6 +216313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -212435,7 +216321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2861), 35, + ACTIONS(2897), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212471,17 +216357,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26343] = 5, + [26809] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1953), 2, + STATE(2000), 2, sym_line_comment, sym_block_comment, - ACTIONS(2745), 18, + ACTIONS(2933), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -212491,6 +216376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -212498,7 +216384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2743), 35, + ACTIONS(2931), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212534,19 +216420,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26411] = 6, + [26877] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, - anon_sym_DOT, - STATE(1954), 2, + STATE(2001), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 18, + ACTIONS(2949), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -212556,6 +216439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -212563,8 +216447,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2885), 34, + ACTIONS(2947), 35, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212598,17 +216483,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26481] = 5, + [26945] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1955), 2, + STATE(2002), 2, sym_line_comment, sym_block_comment, - ACTIONS(2737), 18, + ACTIONS(2957), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -212618,6 +216502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -212625,7 +216510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2735), 35, + ACTIONS(2955), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212661,17 +216546,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26549] = 5, + [27013] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1956), 2, + STATE(2003), 2, sym_line_comment, sym_block_comment, - ACTIONS(2729), 18, + ACTIONS(2973), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -212681,6 +216565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -212688,7 +216573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2727), 35, + ACTIONS(2971), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212724,17 +216609,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26617] = 5, + [27081] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1957), 2, + STATE(2004), 2, sym_line_comment, sym_block_comment, - ACTIONS(2715), 18, + ACTIONS(2653), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -212744,6 +216628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -212751,8 +216636,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, + ACTIONS(2651), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212763,8 +216647,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, @@ -212786,18 +216672,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26685] = 5, + [27149] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1958), 2, + STATE(2005), 2, sym_line_comment, sym_block_comment, - ACTIONS(2883), 18, + ACTIONS(2657), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -212807,6 +216691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -212814,8 +216699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2881), 35, - anon_sym_SEMI, + ACTIONS(2655), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212826,8 +216710,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, @@ -212849,18 +216735,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26753] = 5, + [27217] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1959), 2, + STATE(2006), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 18, + ACTIONS(2977), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -212870,6 +216754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -212877,7 +216762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2885), 35, + ACTIONS(2975), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212913,19 +216798,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26821] = 6, + [27285] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, - anon_sym_DOT, - STATE(1960), 2, + STATE(2007), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 18, + ACTIONS(3014), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -212935,6 +216817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -212942,7 +216825,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2885), 34, + ACTIONS(3012), 35, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212977,17 +216861,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26891] = 5, + [27353] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1961), 2, + STATE(2008), 2, sym_line_comment, sym_block_comment, - ACTIONS(2833), 18, + ACTIONS(3018), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -212997,6 +216880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -213004,8 +216888,7 @@ 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, + ACTIONS(3016), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213016,8 +216899,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, @@ -213039,18 +216924,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26959] = 5, + [27421] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1962), 2, + STATE(2009), 2, sym_line_comment, sym_block_comment, - ACTIONS(2891), 18, + ACTIONS(2765), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -213060,6 +216943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -213067,8 +216951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2889), 35, - anon_sym_SEMI, + ACTIONS(2763), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213079,8 +216962,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, @@ -213102,81 +216987,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, - [27027] = 5, + [27489] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1963), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2725), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2723), 35, + ACTIONS(2625), 2, 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, - [27095] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(1964), 2, + STATE(2010), 2, sym_line_comment, sym_block_comment, - ACTIONS(2719), 18, + ACTIONS(2629), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -213186,6 +217009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -213193,11 +217017,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2717), 35, - anon_sym_SEMI, + ACTIONS(2632), 33, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -213229,17 +217051,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27163] = 5, + [27559] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1965), 2, + STATE(2011), 2, sym_line_comment, sym_block_comment, - ACTIONS(2115), 18, + ACTIONS(2969), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -213249,6 +217070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -213256,7 +217078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2113), 35, + ACTIONS(2967), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213292,17 +217114,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27231] = 5, + [27627] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1966), 2, + STATE(2012), 2, sym_line_comment, sym_block_comment, - ACTIONS(2163), 18, + ACTIONS(2749), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -213312,6 +217133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -213319,7 +217141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2161), 35, + ACTIONS(2747), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213355,17 +217177,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27299] = 5, + [27695] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1967), 2, + STATE(2013), 2, sym_line_comment, sym_block_comment, - ACTIONS(2249), 18, + ACTIONS(2723), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -213375,6 +217196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -213382,7 +217204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2247), 35, + ACTIONS(2721), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213418,17 +217240,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27367] = 5, + [27763] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1968), 2, + STATE(2014), 2, sym_line_comment, sym_block_comment, - ACTIONS(2253), 18, + ACTIONS(2363), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -213438,6 +217259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -213445,7 +217267,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2251), 35, + ACTIONS(2361), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213456,10 +217279,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, @@ -213481,17 +217302,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27435] = 5, + anon_sym_COLON_EQ, + [27831] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1969), 2, + STATE(2015), 2, sym_line_comment, sym_block_comment, - ACTIONS(2821), 18, + ACTIONS(2457), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -213501,6 +217322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -213508,7 +217330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2819), 35, + ACTIONS(2455), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213544,17 +217366,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27503] = 5, + [27899] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1970), 2, + STATE(2016), 2, sym_line_comment, sym_block_comment, - ACTIONS(2471), 18, + ACTIONS(2465), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -213564,6 +217385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -213571,7 +217393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2469), 35, + ACTIONS(2463), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213607,17 +217429,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27571] = 5, + [27967] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1971), 2, + STATE(2017), 2, sym_line_comment, sym_block_comment, - ACTIONS(2261), 18, + ACTIONS(2621), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -213627,6 +217448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -213634,7 +217456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2259), 35, + ACTIONS(2619), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213670,17 +217492,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27639] = 5, + [28035] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1972), 2, + STATE(2018), 2, sym_line_comment, sym_block_comment, - ACTIONS(2269), 18, + ACTIONS(2985), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -213690,6 +217511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -213697,7 +217519,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2267), 35, + ACTIONS(2983), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213708,10 +217531,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, @@ -213733,17 +217554,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27707] = 5, + anon_sym_COLON_EQ, + [28103] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1973), 2, + STATE(2019), 2, sym_line_comment, sym_block_comment, - ACTIONS(2265), 18, + ACTIONS(2937), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -213753,6 +217574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -213760,7 +217582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2263), 35, + ACTIONS(2935), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213796,17 +217618,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27775] = 5, + [28171] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1974), 2, + STATE(2020), 2, sym_line_comment, sym_block_comment, - ACTIONS(2273), 18, + ACTIONS(2321), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -213816,6 +217637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -213823,7 +217645,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2271), 35, + ACTIONS(2319), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213834,10 +217657,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, @@ -213859,17 +217680,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27843] = 5, + anon_sym_COLON_EQ, + [28239] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1975), 2, + STATE(2021), 2, sym_line_comment, sym_block_comment, - ACTIONS(2883), 18, + ACTIONS(2621), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -213879,6 +217700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -213886,7 +217708,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2881), 35, + ACTIONS(2619), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213897,10 +217720,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, @@ -213922,17 +217743,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27911] = 5, + anon_sym_COLON_EQ, + [28307] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1976), 2, + STATE(2022), 2, sym_line_comment, sym_block_comment, - ACTIONS(2891), 18, + ACTIONS(2465), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -213942,6 +217763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -213949,7 +217771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2889), 35, + ACTIONS(2463), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213985,17 +217807,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27979] = 5, + [28375] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1977), 2, + STATE(2023), 2, sym_line_comment, sym_block_comment, - ACTIONS(2547), 18, + ACTIONS(2723), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -214005,6 +217826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -214012,7 +217834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2545), 35, + ACTIONS(2721), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214048,17 +217870,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28047] = 5, + [28443] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1978), 2, + STATE(2024), 2, sym_line_comment, sym_block_comment, - ACTIONS(2427), 18, + ACTIONS(2401), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -214068,6 +217889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -214075,7 +217897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2425), 35, + ACTIONS(2399), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214111,17 +217933,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28115] = 5, + [28511] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1979), 2, + STATE(2025), 2, sym_line_comment, sym_block_comment, - ACTIONS(2805), 18, + ACTIONS(2105), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -214131,6 +217952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -214138,7 +217960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2803), 35, + ACTIONS(2103), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214174,17 +217996,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28183] = 5, + [28579] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1980), 2, + STATE(2026), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 18, + ACTIONS(2491), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -214194,6 +218015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -214201,7 +218023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1897), 35, + ACTIONS(2489), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214237,19 +218059,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28251] = 6, + [28647] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2031), 1, - anon_sym_LBRACE, - STATE(1981), 2, + STATE(2027), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 18, + ACTIONS(2105), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -214259,6 +218078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -214266,10 +218086,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1807), 34, - anon_sym_SEMI, + ACTIONS(2103), 35, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -214277,8 +218097,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, @@ -214300,18 +218122,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28321] = 5, + [28715] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1982), 2, + STATE(2028), 2, sym_line_comment, sym_block_comment, - ACTIONS(2707), 18, + ACTIONS(2401), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -214321,6 +218141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -214328,8 +218149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2705), 35, - anon_sym_SEMI, + ACTIONS(2399), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214340,8 +218160,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, @@ -214363,21 +218185,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28389] = 6, + [28783] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2060), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - STATE(1983), 2, + STATE(2029), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 18, + ACTIONS(2719), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -214387,6 +218204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -214394,16 +218212,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2053), 33, + ACTIONS(2717), 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, @@ -214428,17 +218248,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28459] = 5, + [28851] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1984), 2, + STATE(2030), 2, sym_line_comment, sym_block_comment, - ACTIONS(2431), 18, + ACTIONS(2749), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -214448,6 +218267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -214455,7 +218275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2429), 35, + ACTIONS(2747), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214491,17 +218311,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28527] = 5, + [28919] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1985), 2, + ACTIONS(1892), 1, + anon_sym_DOT, + STATE(2031), 2, sym_line_comment, sym_block_comment, - ACTIONS(2205), 18, + ACTIONS(2095), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -214511,6 +218332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -214518,8 +218340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2203), 35, - anon_sym_DOT, + ACTIONS(2093), 34, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -214554,17 +218375,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28595] = 5, + [28989] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1986), 2, + STATE(2032), 2, sym_line_comment, sym_block_comment, - ACTIONS(2423), 18, + ACTIONS(2479), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -214574,6 +218394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -214581,7 +218402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2421), 35, + ACTIONS(2477), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214617,17 +218438,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28663] = 5, + [29057] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1987), 2, + STATE(2033), 2, sym_line_comment, sym_block_comment, - ACTIONS(2463), 18, + ACTIONS(2937), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -214637,6 +218457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -214644,8 +218465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2461), 35, - anon_sym_SEMI, + ACTIONS(2935), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214656,8 +218476,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, @@ -214679,18 +218501,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28731] = 5, + [29125] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1988), 2, + STATE(2034), 2, sym_line_comment, sym_block_comment, - ACTIONS(2457), 18, + ACTIONS(2315), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -214700,69 +218520,7 @@ static const uint16_t ts_small_parse_table[] = { 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(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, - 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, - [28799] = 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(2423), 18, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -214770,7 +218528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2421), 35, + ACTIONS(2313), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214806,17 +218564,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28867] = 5, + [29193] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1990), 2, + STATE(2035), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 18, + ACTIONS(2765), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -214826,69 +218583,7 @@ static const uint16_t ts_small_parse_table[] = { 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(2053), 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, - [28935] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(1991), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2475), 18, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -214896,7 +218591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2473), 35, + ACTIONS(2763), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214932,17 +218627,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29003] = 5, + [29261] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1992), 2, + STATE(2036), 2, sym_line_comment, sym_block_comment, - ACTIONS(2767), 18, + ACTIONS(3014), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -214952,6 +218646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -214959,7 +218654,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2765), 35, + ACTIONS(3012), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214970,10 +218666,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, @@ -214995,17 +218689,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29071] = 5, + anon_sym_COLON_EQ, + [29329] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1993), 2, + STATE(2037), 2, sym_line_comment, sym_block_comment, - ACTIONS(2771), 18, + ACTIONS(2331), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -215015,6 +218709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -215022,7 +218717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2769), 35, + ACTIONS(2329), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215058,17 +218753,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29139] = 5, + [29397] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1994), 2, + STATE(2038), 2, sym_line_comment, sym_block_comment, - ACTIONS(2851), 18, + ACTIONS(2475), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -215078,6 +218772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -215085,7 +218780,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2849), 35, + ACTIONS(2473), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215096,10 +218792,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, @@ -215121,17 +218815,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29207] = 5, + anon_sym_COLON_EQ, + [29465] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1995), 2, + STATE(2039), 2, sym_line_comment, sym_block_comment, - ACTIONS(2233), 18, + ACTIONS(3062), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -215141,6 +218835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -215148,7 +218843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2231), 35, + ACTIONS(3060), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215184,17 +218879,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29275] = 5, + [29533] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1996), 2, + STATE(2040), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 18, + ACTIONS(2363), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -215204,6 +218898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -215211,7 +218906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1897), 35, + ACTIONS(2361), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215247,17 +218942,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29343] = 5, + [29601] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1997), 2, + ACTIONS(1892), 1, + anon_sym_DOT, + STATE(2041), 2, sym_line_comment, sym_block_comment, - ACTIONS(2453), 18, + ACTIONS(2095), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -215267,6 +218963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -215274,9 +218971,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2451), 35, + ACTIONS(2093), 34, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -215310,17 +219006,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29411] = 5, + [29671] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1998), 2, + STATE(2042), 2, sym_line_comment, sym_block_comment, - ACTIONS(2439), 18, + ACTIONS(2095), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -215330,6 +219025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -215337,7 +219033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2437), 35, + ACTIONS(2093), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215373,17 +219069,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29479] = 5, + [29739] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1999), 2, + STATE(2043), 2, sym_line_comment, sym_block_comment, - ACTIONS(2257), 18, + ACTIONS(1845), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -215393,6 +219088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -215400,7 +219096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2255), 35, + ACTIONS(1847), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215436,17 +219132,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29547] = 5, + [29807] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2000), 2, + STATE(2044), 2, sym_line_comment, sym_block_comment, - ACTIONS(2151), 18, + ACTIONS(2683), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -215456,6 +219151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -215463,7 +219159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2149), 35, + ACTIONS(2681), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215499,17 +219195,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29615] = 5, + [29875] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2001), 2, + STATE(2045), 2, sym_line_comment, sym_block_comment, - ACTIONS(2241), 18, + ACTIONS(2775), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -215519,6 +219214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -215526,7 +219222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2239), 35, + ACTIONS(2773), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215562,17 +219258,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29683] = 5, + [29943] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2002), 2, + STATE(2046), 2, sym_line_comment, sym_block_comment, - ACTIONS(2269), 18, + ACTIONS(2453), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -215582,6 +219277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -215589,7 +219285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2267), 35, + ACTIONS(2451), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215625,81 +219321,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29751] = 6, + [30011] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2135), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(2003), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2139), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2142), 33, + ACTIONS(4845), 1, 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, - 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, - [29821] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2004), 2, + STATE(2047), 2, sym_line_comment, sym_block_comment, - ACTIONS(2261), 18, + ACTIONS(2937), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -215709,6 +219342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -215716,9 +219350,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2259), 35, + ACTIONS(2935), 34, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -215752,17 +219385,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29889] = 5, + [30081] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2005), 2, + ACTIONS(1892), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + STATE(2048), 2, sym_line_comment, sym_block_comment, - ACTIONS(2253), 18, + ACTIONS(1887), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -215772,6 +219407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -215779,20 +219415,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2251), 35, - anon_sym_SEMI, + ACTIONS(1885), 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, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -215814,18 +219449,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [29957] = 5, + [30151] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2006), 2, + STATE(2049), 2, sym_line_comment, sym_block_comment, - ACTIONS(2249), 18, + ACTIONS(2395), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -215835,6 +219468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -215842,7 +219476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2247), 35, + ACTIONS(2393), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215878,35 +219512,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30025] = 7, + [30219] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2137), 1, - anon_sym_EQ, - STATE(2007), 2, + STATE(2050), 2, sym_line_comment, sym_block_comment, - ACTIONS(2135), 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(2139), 17, - anon_sym_PIPE, + ACTIONS(2771), 18, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -215916,6 +219531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -215923,17 +219539,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2142), 19, + ACTIONS(2769), 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, @@ -215943,17 +219563,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [30097] = 5, + 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, + [30287] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2008), 2, + STATE(2051), 2, sym_line_comment, sym_block_comment, - ACTIONS(2233), 18, + ACTIONS(2709), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -215963,6 +219594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -215970,8 +219602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2231), 35, - anon_sym_SEMI, + ACTIONS(2707), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215982,8 +219613,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, @@ -216005,18 +219638,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30165] = 5, + [30355] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2009), 2, + STATE(2052), 2, sym_line_comment, sym_block_comment, - ACTIONS(2119), 18, + ACTIONS(2379), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -216026,6 +219657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -216033,7 +219665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2117), 35, + ACTIONS(2377), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216069,17 +219701,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30233] = 5, + [30423] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2010), 2, + STATE(2053), 2, sym_line_comment, sym_block_comment, - ACTIONS(2719), 18, + ACTIONS(2969), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -216089,6 +219720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -216096,7 +219728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2717), 35, + ACTIONS(2967), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216132,17 +219764,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30301] = 5, + [30491] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2011), 2, + STATE(2054), 2, sym_line_comment, sym_block_comment, - ACTIONS(2123), 18, + ACTIONS(2701), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -216152,6 +219783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -216159,8 +219791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2121), 35, - anon_sym_SEMI, + ACTIONS(2699), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216171,8 +219802,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, @@ -216194,18 +219827,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30369] = 5, + [30559] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2012), 2, + STATE(2055), 2, sym_line_comment, sym_block_comment, - ACTIONS(3046), 18, + ACTIONS(2639), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -216215,6 +219846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -216222,7 +219854,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3044), 35, + ACTIONS(2637), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216233,10 +219866,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, @@ -216258,17 +219889,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30437] = 5, + anon_sym_COLON_EQ, + [30627] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2013), 2, + STATE(2056), 2, sym_line_comment, sym_block_comment, - ACTIONS(2725), 18, + ACTIONS(1837), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -216278,6 +219909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -216285,7 +219917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2723), 35, + ACTIONS(1835), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216321,17 +219953,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30505] = 5, + [30695] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2014), 2, + STATE(2057), 2, sym_line_comment, sym_block_comment, - ACTIONS(2221), 18, + ACTIONS(2371), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -216341,6 +219972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -216348,7 +219980,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2219), 35, + ACTIONS(2369), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216359,10 +219992,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, @@ -216384,17 +220015,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30573] = 5, + anon_sym_COLON_EQ, + [30763] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2015), 2, + ACTIONS(1892), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + ACTIONS(4848), 2, + anon_sym_COMMA, + anon_sym_in, + STATE(2058), 2, sym_line_comment, sym_block_comment, - ACTIONS(2217), 18, + ACTIONS(1887), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -216404,6 +220041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -216411,21 +220049,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2215), 35, + ACTIONS(1885), 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, @@ -216433,7 +220067,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, @@ -216447,17 +220080,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30641] = 5, + anon_sym_COLON_EQ, + [30835] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2016), 2, + STATE(2059), 2, sym_line_comment, sym_block_comment, - ACTIONS(2133), 18, + ACTIONS(2771), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -216467,6 +220100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -216474,7 +220108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2131), 35, + ACTIONS(2769), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216510,17 +220144,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30709] = 5, + [30903] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2017), 2, + STATE(2060), 2, sym_line_comment, sym_block_comment, - ACTIONS(2163), 18, + ACTIONS(2949), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -216530,6 +220163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -216537,8 +220171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2161), 35, - anon_sym_SEMI, + ACTIONS(2947), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216549,8 +220182,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, @@ -216572,18 +220207,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30777] = 5, + [30971] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2018), 2, + STATE(2061), 2, sym_line_comment, sym_block_comment, - ACTIONS(2471), 18, + ACTIONS(2657), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -216593,6 +220226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -216600,7 +220234,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2469), 35, + ACTIONS(2655), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216611,10 +220246,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, @@ -216636,17 +220269,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30845] = 5, + anon_sym_COLON_EQ, + [31039] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2019), 2, + STATE(2062), 2, sym_line_comment, sym_block_comment, - ACTIONS(2119), 18, + ACTIONS(2899), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -216656,6 +220289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -216663,7 +220297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2117), 35, + ACTIONS(2897), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216699,17 +220333,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30913] = 5, + [31107] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2020), 2, + ACTIONS(4850), 1, + anon_sym_LBRACE, + STATE(2063), 2, sym_line_comment, sym_block_comment, - ACTIONS(3066), 18, + ACTIONS(2937), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -216719,6 +220354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -216726,11 +220362,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3064), 35, + ACTIONS(2935), 34, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -216762,17 +220397,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30981] = 5, + [31177] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2021), 2, + STATE(2064), 2, sym_line_comment, sym_block_comment, - ACTIONS(3021), 18, + ACTIONS(2469), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -216782,6 +220416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -216789,7 +220424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3019), 35, + ACTIONS(2467), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216825,17 +220460,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [31049] = 5, + [31245] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2022), 2, + STATE(2065), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 18, + ACTIONS(1845), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -216845,6 +220479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -216852,7 +220487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2505), 35, + ACTIONS(1847), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216888,17 +220523,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31117] = 5, + [31313] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2023), 2, + STATE(2066), 2, sym_line_comment, sym_block_comment, - ACTIONS(2863), 18, + ACTIONS(2111), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -216908,6 +220542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -216915,7 +220550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2861), 35, + ACTIONS(2109), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216951,17 +220586,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31185] = 5, + [31381] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2024), 2, + STATE(2067), 2, sym_line_comment, sym_block_comment, - ACTIONS(2749), 18, + ACTIONS(3058), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -216971,6 +220605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -216978,7 +220613,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2747), 35, + ACTIONS(3056), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216989,10 +220625,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, @@ -217014,17 +220648,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31253] = 5, + anon_sym_COLON_EQ, + [31449] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2025), 2, + STATE(2068), 2, sym_line_comment, sym_block_comment, - ACTIONS(2115), 18, + ACTIONS(3070), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -217034,6 +220668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -217041,7 +220676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2113), 35, + ACTIONS(3068), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217077,17 +220712,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31321] = 5, + [31517] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2026), 2, + STATE(2069), 2, sym_line_comment, sym_block_comment, - ACTIONS(2029), 18, + ACTIONS(2999), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -217097,6 +220731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -217104,7 +220739,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2031), 35, + ACTIONS(2997), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217115,10 +220751,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, @@ -217140,17 +220774,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31389] = 5, + anon_sym_COLON_EQ, + [31585] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2027), 2, + STATE(2070), 2, sym_line_comment, sym_block_comment, - ACTIONS(2801), 18, + ACTIONS(2981), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -217160,6 +220794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -217167,7 +220802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2799), 35, + ACTIONS(2979), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217203,17 +220838,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31457] = 5, + [31653] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2028), 2, + STATE(2071), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 18, + ACTIONS(2433), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -217223,6 +220857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -217230,7 +220865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2885), 35, + ACTIONS(2431), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217266,17 +220901,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31525] = 5, + [31721] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2029), 2, + STATE(2072), 2, sym_line_comment, sym_block_comment, - ACTIONS(2245), 18, + ACTIONS(2425), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -217286,6 +220920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -217293,8 +220928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2243), 35, - anon_sym_SEMI, + ACTIONS(2423), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217305,8 +220939,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, @@ -217328,18 +220964,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31593] = 5, + [31789] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2030), 2, + STATE(2073), 2, sym_line_comment, sym_block_comment, - ACTIONS(2809), 18, + ACTIONS(2421), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -217349,6 +220983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -217356,7 +220991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2807), 35, + ACTIONS(2419), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217392,17 +221027,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31661] = 5, + [31857] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2031), 2, + STATE(2074), 2, sym_line_comment, sym_block_comment, - ACTIONS(2813), 18, + ACTIONS(2331), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -217412,6 +221046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -217419,7 +221054,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2811), 35, + ACTIONS(2329), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217430,10 +221066,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, @@ -217455,17 +221089,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31729] = 5, + anon_sym_COLON_EQ, + [31925] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2032), 2, + STATE(2075), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 18, + ACTIONS(1945), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -217475,6 +221109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -217482,8 +221117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2227), 35, - anon_sym_SEMI, + ACTIONS(1943), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217494,8 +221128,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, @@ -217517,18 +221153,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31797] = 5, + [31993] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2033), 2, + STATE(2076), 2, sym_line_comment, sym_block_comment, - ACTIONS(2225), 18, + ACTIONS(2761), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -217538,6 +221172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -217545,8 +221180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2223), 35, - anon_sym_SEMI, + ACTIONS(2759), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217557,8 +221191,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, @@ -217580,18 +221216,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31865] = 5, + [32061] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2034), 2, + STATE(2077), 2, sym_line_comment, sym_block_comment, - ACTIONS(2221), 18, + ACTIONS(2387), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -217601,6 +221235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -217608,8 +221243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2219), 35, - anon_sym_SEMI, + ACTIONS(2385), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217620,8 +221254,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, @@ -217643,18 +221279,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31933] = 5, + [32129] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2035), 2, + STATE(2078), 2, sym_line_comment, sym_block_comment, - ACTIONS(2837), 18, + ACTIONS(2383), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -217664,6 +221298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -217671,7 +221306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2835), 35, + ACTIONS(2381), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217707,17 +221342,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32001] = 5, + [32197] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2036), 2, + STATE(2079), 2, sym_line_comment, sym_block_comment, - ACTIONS(2217), 18, + ACTIONS(3070), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -217727,6 +221361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -217734,7 +221369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2215), 35, + ACTIONS(3068), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -217770,17 +221405,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32069] = 5, + [32265] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2037), 2, + STATE(2080), 2, sym_line_comment, sym_block_comment, - ACTIONS(2213), 18, + ACTIONS(2779), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -217790,6 +221424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -217797,8 +221432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2211), 35, - anon_sym_SEMI, + ACTIONS(2777), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217809,8 +221443,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, @@ -217832,18 +221468,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [32137] = 5, + [32333] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2038), 2, + STATE(2081), 2, sym_line_comment, sym_block_comment, - ACTIONS(3015), 18, + ACTIONS(2957), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -217853,6 +221487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -217860,8 +221495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3013), 35, - anon_sym_SEMI, + ACTIONS(2955), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217872,8 +221506,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, @@ -217895,18 +221531,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [32205] = 5, + [32401] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2039), 2, + STATE(2082), 2, sym_line_comment, sym_block_comment, - ACTIONS(3011), 18, + ACTIONS(2973), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -217916,6 +221550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -217923,8 +221558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3009), 35, - anon_sym_SEMI, + ACTIONS(2971), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217935,8 +221569,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, @@ -217958,18 +221594,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [32273] = 5, + [32469] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2040), 2, + STATE(2083), 2, sym_line_comment, sym_block_comment, - ACTIONS(2817), 18, + ACTIONS(2977), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -217979,6 +221613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -217986,7 +221621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2815), 35, + ACTIONS(2975), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218022,17 +221657,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32341] = 5, + [32537] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2041), 2, + STATE(2084), 2, sym_line_comment, sym_block_comment, - ACTIONS(2859), 18, + ACTIONS(2445), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -218042,6 +221676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -218049,7 +221684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2857), 35, + ACTIONS(2443), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -218085,17 +221720,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32409] = 5, + [32605] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2042), 2, + STATE(2085), 2, sym_line_comment, sym_block_comment, - ACTIONS(2847), 18, + ACTIONS(2191), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -218105,6 +221739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -218112,8 +221747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2845), 35, - anon_sym_SEMI, + ACTIONS(2189), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218124,8 +221758,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, @@ -218147,18 +221783,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [32477] = 5, + [32673] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2043), 2, + STATE(2086), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 18, + ACTIONS(2961), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -218168,6 +221802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -218175,8 +221810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2841), 35, - anon_sym_SEMI, + ACTIONS(2959), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218187,8 +221821,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, @@ -218210,18 +221846,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [32545] = 5, + [32741] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2044), 2, + STATE(2087), 2, sym_line_comment, sym_block_comment, - ACTIONS(2213), 18, + ACTIONS(2965), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -218231,6 +221865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -218238,7 +221873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2211), 35, + ACTIONS(2963), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218274,17 +221909,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32613] = 5, + [32809] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2045), 2, + STATE(2088), 2, sym_line_comment, sym_block_comment, - ACTIONS(2209), 18, + ACTIONS(2367), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -218294,6 +221928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -218301,8 +221936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2207), 35, - anon_sym_SEMI, + ACTIONS(2365), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218313,8 +221947,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, @@ -218336,18 +221972,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [32681] = 5, + [32877] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2046), 2, + STATE(2089), 2, sym_line_comment, sym_block_comment, - ACTIONS(2779), 18, + ACTIONS(2441), 18, anon_sym_EQ, + 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_PIPE, + anon_sym_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(2439), 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, + [32945] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2090), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3003), 18, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -218357,6 +222054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -218364,7 +222062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2777), 35, + ACTIONS(3001), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -218400,17 +222098,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32749] = 5, + [33013] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2047), 2, + STATE(2091), 2, sym_line_comment, sym_block_comment, - ACTIONS(2775), 18, + ACTIONS(3062), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -218420,6 +222117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -218427,7 +222125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2773), 35, + ACTIONS(3060), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -218463,17 +222161,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32817] = 5, + [33081] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2048), 2, + STATE(2092), 2, sym_line_comment, sym_block_comment, - ACTIONS(2101), 18, + ACTIONS(2989), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -218483,6 +222180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -218490,7 +222188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2099), 35, + ACTIONS(2987), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218526,17 +222224,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32885] = 5, + [33149] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2049), 2, + STATE(2093), 2, sym_line_comment, sym_block_comment, - ACTIONS(2763), 18, + ACTIONS(2745), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -218546,6 +222243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -218553,8 +222251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2761), 35, - anon_sym_SEMI, + ACTIONS(2743), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218565,8 +222262,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, @@ -218588,18 +222287,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [32953] = 5, + [33217] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2050), 2, + STATE(2094), 2, sym_line_comment, sym_block_comment, - ACTIONS(2175), 18, + ACTIONS(2357), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -218609,6 +222306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -218616,7 +222314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2173), 35, + ACTIONS(2355), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -218652,17 +222350,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [33021] = 5, + [33285] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2051), 2, + STATE(2095), 2, sym_line_comment, sym_block_comment, - ACTIONS(2205), 18, + ACTIONS(3050), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -218672,6 +222369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -218679,7 +222377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2203), 35, + ACTIONS(3048), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -218715,17 +222413,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [33089] = 5, + [33353] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2052), 2, + STATE(2096), 2, sym_line_comment, sym_block_comment, - ACTIONS(2089), 18, + ACTIONS(2341), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -218735,6 +222432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -218742,7 +222440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2087), 35, + ACTIONS(2339), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -218778,23 +222476,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [33157] = 7, + [33421] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2060), 2, + ACTIONS(1892), 2, anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4822), 2, - anon_sym_COMMA, - anon_sym_in, - STATE(2053), 2, + STATE(2097), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 18, + ACTIONS(1887), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -218804,6 +222498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -218811,10 +222506,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2053), 31, + ACTIONS(1885), 33, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -218829,6 +222525,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, @@ -218843,19 +222540,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [33229] = 6, + [33491] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4824), 1, - anon_sym_LBRACE, - STATE(2054), 2, + STATE(2098), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 18, + ACTIONS(2629), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -218865,6 +222559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -218872,10 +222567,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2885), 34, + ACTIONS(2632), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -218907,17 +222603,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [33299] = 5, + [33559] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2055), 2, + ACTIONS(4852), 1, + anon_sym_BANG, + STATE(2099), 2, sym_line_comment, sym_block_comment, - ACTIONS(3025), 18, + ACTIONS(2499), 17, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -218926,7 +222623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -218934,7 +222631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3023), 35, + ACTIONS(2497), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218970,17 +222667,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33367] = 5, + [33629] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2056), 2, + STATE(2100), 2, sym_line_comment, sym_block_comment, - ACTIONS(2093), 18, + ACTIONS(2351), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -218990,6 +222686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -218997,7 +222694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2091), 35, + ACTIONS(2349), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219008,10 +222706,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, @@ -219033,17 +222729,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33435] = 5, + anon_sym_COLON_EQ, + [33697] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2057), 2, + STATE(2101), 2, sym_line_comment, sym_block_comment, - ACTIONS(2877), 18, + ACTIONS(2643), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -219053,6 +222749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -219060,7 +222757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2875), 35, + ACTIONS(2641), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219096,17 +222793,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33503] = 5, + [33765] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2058), 2, + STATE(2102), 2, sym_line_comment, sym_block_comment, - ACTIONS(2805), 18, + ACTIONS(2345), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -219116,6 +222812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -219123,7 +222820,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2803), 35, + ACTIONS(2343), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219134,10 +222832,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, @@ -219159,17 +222855,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33571] = 5, + anon_sym_COLON_EQ, + [33833] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2059), 2, + ACTIONS(1847), 1, + anon_sym_LBRACE, + STATE(2103), 2, sym_line_comment, sym_block_comment, - ACTIONS(2133), 18, + ACTIONS(2643), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -219179,6 +222877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -219186,10 +222885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2131), 35, + ACTIONS(2641), 34, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -219197,10 +222896,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, @@ -219222,17 +222919,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33639] = 5, + anon_sym_COLON_EQ, + [33903] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2060), 2, + ACTIONS(1847), 1, + anon_sym_LBRACE, + STATE(2104), 2, sym_line_comment, sym_block_comment, - ACTIONS(2741), 18, + ACTIONS(1837), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -219242,6 +222941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -219249,10 +222949,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2739), 35, + ACTIONS(1835), 34, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -219260,10 +222960,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, @@ -219285,17 +222983,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33707] = 5, + anon_sym_COLON_EQ, + [33973] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2061), 2, + STATE(2105), 2, sym_line_comment, sym_block_comment, - ACTIONS(3029), 18, + ACTIONS(3010), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -219305,6 +223003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -219312,7 +223011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3027), 35, + ACTIONS(3008), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219348,17 +223047,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33775] = 5, + [34041] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2062), 2, + STATE(2106), 2, sym_line_comment, sym_block_comment, - ACTIONS(2127), 18, + ACTIONS(3026), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -219368,6 +223066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -219375,8 +223074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2125), 35, - anon_sym_SEMI, + ACTIONS(3024), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219387,8 +223085,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, @@ -219410,18 +223110,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33843] = 5, + [34109] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2063), 2, + STATE(2107), 2, sym_line_comment, sym_block_comment, - ACTIONS(2101), 18, + ACTIONS(2715), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -219431,6 +223129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -219438,8 +223137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2099), 35, - anon_sym_SEMI, + ACTIONS(2713), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219450,8 +223148,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, @@ -219473,18 +223173,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33911] = 5, + [34177] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2064), 2, + STATE(2108), 2, sym_line_comment, sym_block_comment, - ACTIONS(2741), 18, + ACTIONS(2727), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -219494,6 +223192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -219501,8 +223200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2739), 35, - anon_sym_SEMI, + ACTIONS(2725), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219513,8 +223211,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, @@ -219536,18 +223236,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33979] = 5, + [34245] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2065), 2, + STATE(2109), 2, sym_line_comment, sym_block_comment, - ACTIONS(2209), 18, + ACTIONS(2731), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -219557,6 +223255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -219564,7 +223263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2207), 35, + ACTIONS(2729), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219600,17 +223299,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34047] = 5, + [34313] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2066), 2, + STATE(2110), 2, sym_line_comment, sym_block_comment, - ACTIONS(2105), 18, + ACTIONS(2755), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -219620,6 +223318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -219627,7 +223326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2103), 35, + ACTIONS(2753), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219663,17 +223362,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34115] = 5, + [34381] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2067), 2, + STATE(2111), 2, sym_line_comment, sym_block_comment, - ACTIONS(2127), 18, + ACTIONS(2925), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -219683,6 +223381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -219690,7 +223389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2125), 35, + ACTIONS(2923), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219726,17 +223425,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34183] = 5, + [34449] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2068), 2, + STATE(2112), 2, sym_line_comment, sym_block_comment, - ACTIONS(2123), 18, + ACTIONS(2929), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -219746,6 +223444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -219753,7 +223452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2121), 35, + ACTIONS(2927), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219789,17 +223488,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34251] = 5, + [34517] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2069), 2, + STATE(2113), 2, sym_line_comment, sym_block_comment, - ACTIONS(2097), 18, + ACTIONS(2941), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -219809,6 +223507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -219816,7 +223515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2095), 35, + ACTIONS(2939), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219852,17 +223551,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34319] = 5, + [34585] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2070), 2, + STATE(2114), 2, sym_line_comment, sym_block_comment, - ACTIONS(2089), 18, + ACTIONS(3030), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -219872,6 +223570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -219879,7 +223578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2087), 35, + ACTIONS(3028), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219915,17 +223614,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34387] = 5, + [34653] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2071), 2, + STATE(2115), 2, sym_line_comment, sym_block_comment, - ACTIONS(2175), 18, + ACTIONS(2321), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -219935,6 +223633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -219942,7 +223641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2173), 35, + ACTIONS(2319), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219978,17 +223677,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34455] = 5, + [34721] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2072), 2, + STATE(2116), 2, sym_line_comment, sym_block_comment, - ACTIONS(2151), 18, + ACTIONS(3038), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -219998,6 +223696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -220005,7 +223704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2149), 35, + ACTIONS(3036), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220041,17 +223740,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34523] = 5, + [34789] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2073), 2, + STATE(2117), 2, sym_line_comment, sym_block_comment, - ACTIONS(2431), 18, + ACTIONS(3042), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -220061,6 +223759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -220068,7 +223767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2429), 35, + ACTIONS(3040), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220104,17 +223803,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34591] = 5, + [34857] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2074), 2, + STATE(2118), 2, sym_line_comment, sym_block_comment, - ACTIONS(2547), 18, + ACTIONS(3058), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -220124,6 +223822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -220131,7 +223830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2545), 35, + ACTIONS(3056), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220167,17 +223866,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34659] = 5, + [34925] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2075), 2, + STATE(2119), 2, sym_line_comment, sym_block_comment, - ACTIONS(2181), 18, + ACTIONS(2995), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -220187,6 +223885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -220194,7 +223893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2179), 35, + ACTIONS(2993), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220230,17 +223929,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34727] = 5, + [34993] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2076), 2, + STATE(2120), 2, sym_line_comment, sym_block_comment, - ACTIONS(2833), 18, + ACTIONS(2999), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -220250,6 +223948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -220257,7 +223956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2831), 35, + ACTIONS(2997), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220293,17 +223992,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34795] = 5, + [35061] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2077), 2, + STATE(2121), 2, sym_line_comment, sym_block_comment, - ACTIONS(2851), 18, + ACTIONS(2327), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -220313,69 +224011,7 @@ static const uint16_t ts_small_parse_table[] = { 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(2849), 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, - [34863] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2078), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2185), 18, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -220383,7 +224019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2183), 35, + ACTIONS(2325), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220419,17 +224055,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34931] = 5, + [35129] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2079), 2, + STATE(2122), 2, sym_line_comment, sym_block_comment, - ACTIONS(2189), 18, + ACTIONS(3003), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -220439,6 +224074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -220446,7 +224082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2187), 35, + ACTIONS(3001), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220482,17 +224118,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34999] = 5, + [35197] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2080), 2, + STATE(2123), 2, sym_line_comment, sym_block_comment, - ACTIONS(2105), 18, + ACTIONS(2315), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -220502,6 +224137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -220509,7 +224145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2103), 35, + ACTIONS(2313), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -220545,17 +224181,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [35067] = 5, + [35265] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2081), 2, + ACTIONS(1892), 1, + anon_sym_LBRACK, + ACTIONS(2093), 1, + anon_sym_LBRACE, + STATE(2124), 2, sym_line_comment, sym_block_comment, - ACTIONS(2147), 18, + ACTIONS(1887), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -220565,6 +224204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -220572,21 +224212,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2145), 35, + ACTIONS(1885), 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_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -220608,17 +224245,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35135] = 5, + anon_sym_COLON_EQ, + [35337] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2082), 2, + STATE(2125), 2, sym_line_comment, sym_block_comment, - ACTIONS(2201), 18, + ACTIONS(3066), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -220628,6 +224265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -220635,7 +224273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2199), 35, + ACTIONS(3064), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220646,10 +224285,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, @@ -220671,17 +224308,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35203] = 5, + anon_sym_COLON_EQ, + [35405] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2083), 2, + STATE(2126), 2, sym_line_comment, sym_block_comment, - ACTIONS(2729), 18, + ACTIONS(2469), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -220691,6 +224328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -220698,7 +224336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2727), 35, + ACTIONS(2467), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220734,17 +224372,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35271] = 5, + [35473] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2084), 2, + STATE(2127), 2, sym_line_comment, sym_block_comment, - ACTIONS(2265), 18, + ACTIONS(3050), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -220754,6 +224391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -220761,7 +224399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2263), 35, + ACTIONS(3048), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220797,17 +224435,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35339] = 5, + [35541] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2085), 2, + STATE(2128), 2, sym_line_comment, sym_block_comment, - ACTIONS(2155), 18, + ACTIONS(2337), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -220817,6 +224454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -220824,7 +224462,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2153), 35, + ACTIONS(2335), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220835,10 +224474,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, @@ -220860,17 +224497,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35407] = 5, + anon_sym_COLON_EQ, + [35609] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2086), 2, + STATE(2129), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 18, + ACTIONS(2341), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -220880,6 +224517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -220887,8 +224525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2157), 35, - anon_sym_SEMI, + ACTIONS(2339), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220899,8 +224536,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, @@ -220922,18 +224561,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35475] = 5, + [35677] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2087), 2, + STATE(2130), 2, sym_line_comment, sym_block_comment, - ACTIONS(2155), 18, + ACTIONS(2337), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -220943,6 +224580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -220950,8 +224588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2153), 35, - anon_sym_SEMI, + ACTIONS(2335), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220962,8 +224599,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, @@ -220985,18 +224624,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35543] = 5, + [35745] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2088), 2, + ACTIONS(4845), 1, + anon_sym_DOT, + STATE(2131), 2, sym_line_comment, sym_block_comment, - ACTIONS(3066), 18, + ACTIONS(2937), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -221006,6 +224645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -221013,8 +224653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3064), 35, - anon_sym_DOT, + ACTIONS(2935), 34, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -221049,17 +224688,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35611] = 5, + [35815] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2089), 2, + STATE(2132), 2, sym_line_comment, sym_block_comment, - ACTIONS(2201), 18, + ACTIONS(3018), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -221069,6 +224707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -221076,7 +224715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2199), 35, + ACTIONS(3016), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -221112,17 +224751,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [35679] = 5, + [35883] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2090), 2, + STATE(2133), 2, sym_line_comment, sym_block_comment, - ACTIONS(2837), 18, + ACTIONS(3046), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -221132,6 +224770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -221139,7 +224778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2835), 35, + ACTIONS(3044), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -221175,17 +224814,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [35747] = 5, + [35951] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2091), 2, + STATE(2134), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 18, + ACTIONS(2449), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -221195,6 +224833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -221202,7 +224841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2157), 35, + ACTIONS(2447), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221238,17 +224877,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35815] = 5, + [36019] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2092), 2, + STATE(2135), 2, sym_line_comment, sym_block_comment, - ACTIONS(2241), 18, + ACTIONS(2371), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -221258,6 +224896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -221265,7 +224904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2239), 35, + ACTIONS(2369), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221301,17 +224940,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35883] = 5, + [36087] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2093), 2, + STATE(2136), 2, sym_line_comment, sym_block_comment, - ACTIONS(2257), 18, + ACTIONS(2457), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -221321,6 +224959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -221328,7 +224967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2255), 35, + ACTIONS(2455), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221364,17 +225003,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35951] = 5, + [36155] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2094), 2, + STATE(2137), 2, sym_line_comment, sym_block_comment, - ACTIONS(2189), 18, + ACTIONS(2095), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -221384,70 +225022,7 @@ static const uint16_t ts_small_parse_table[] = { 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(2187), 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, - [36019] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4826), 1, - anon_sym_BANG, - STATE(2095), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2585), 17, - anon_sym_EQ, 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_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -221455,7 +225030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2583), 35, + ACTIONS(2093), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221491,17 +225066,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [36089] = 5, + [36223] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2096), 2, + STATE(2138), 2, sym_line_comment, sym_block_comment, - ACTIONS(2737), 18, + ACTIONS(3054), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -221511,69 +225085,7 @@ static const uint16_t ts_small_parse_table[] = { 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(2735), 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, - [36157] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2097), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2767), 18, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -221581,7 +225093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2765), 35, + ACTIONS(3052), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -221617,17 +225129,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [36225] = 5, + [36291] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2098), 2, + STATE(2139), 2, sym_line_comment, sym_block_comment, - ACTIONS(2855), 18, + ACTIONS(2357), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -221637,6 +225148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -221644,7 +225156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2853), 35, + ACTIONS(2355), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221680,19 +225192,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [36293] = 6, + [36359] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2031), 1, - anon_sym_LBRACE, - STATE(2099), 2, + STATE(2140), 2, sym_line_comment, sym_block_comment, - ACTIONS(2715), 18, + ACTIONS(2445), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -221702,6 +225211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -221709,10 +225219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2713), 34, - anon_sym_SEMI, + ACTIONS(2443), 35, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -221720,8 +225230,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, @@ -221743,18 +225255,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [36363] = 5, + [36427] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2100), 2, + ACTIONS(4854), 1, + anon_sym_BANG, + STATE(2141), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 18, + ACTIONS(2499), 17, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -221763,7 +225275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -221771,7 +225283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2183), 35, + ACTIONS(2497), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -221807,57 +225319,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [36431] = 5, + [36497] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2101), 2, + ACTIONS(2627), 1, + anon_sym_EQ, + STATE(2142), 2, sym_line_comment, sym_block_comment, - ACTIONS(2457), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2455), 35, - anon_sym_DOT, - anon_sym_as, + ACTIONS(2625), 16, 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, @@ -221870,35 +225346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [36499] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(2137), 1, - anon_sym_EQ, - STATE(2102), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2135), 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(2139), 17, - anon_sym_PIPE, + ACTIONS(2629), 17, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -221908,6 +225356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -221915,7 +225364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2142), 19, + ACTIONS(2632), 19, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -221935,17 +225384,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [36571] = 5, + [36569] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2103), 2, + STATE(2143), 2, sym_line_comment, sym_block_comment, - ACTIONS(2763), 18, + ACTIONS(2683), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -221955,6 +225403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -221962,7 +225411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2761), 35, + ACTIONS(2681), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221998,17 +225447,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [36639] = 5, + [36637] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2104), 2, + STATE(2144), 2, sym_line_comment, sym_block_comment, ACTIONS(2775), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -222018,6 +225466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -222061,17 +225510,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [36707] = 5, + [36705] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2105), 2, + STATE(2145), 2, sym_line_comment, sym_block_comment, - ACTIONS(2779), 18, + ACTIONS(3066), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -222081,6 +225529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -222088,7 +225537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2777), 35, + ACTIONS(3064), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222124,17 +225573,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [36775] = 5, + [36773] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2106), 2, + STATE(2146), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 18, + ACTIONS(3054), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -222144,6 +225592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -222151,7 +225600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2841), 35, + ACTIONS(3052), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222187,17 +225636,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [36843] = 5, + [36841] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2107), 2, + STATE(2147), 2, sym_line_comment, sym_block_comment, - ACTIONS(2847), 18, + ACTIONS(2639), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -222207,6 +225655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -222214,7 +225663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2845), 35, + ACTIONS(2637), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222250,17 +225699,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [36911] = 5, + [36909] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2108), 2, + STATE(2148), 2, sym_line_comment, sym_block_comment, - ACTIONS(2859), 18, + ACTIONS(3046), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -222270,6 +225718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -222277,7 +225726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2857), 35, + ACTIONS(3044), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222313,17 +225762,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [36979] = 5, + [36977] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2109), 2, + ACTIONS(2627), 1, + anon_sym_EQ, + STATE(2149), 2, sym_line_comment, sym_block_comment, - ACTIONS(2771), 18, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(2625), 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(2629), 17, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -222333,6 +225799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -222340,12 +225807,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2769), 35, - anon_sym_SEMI, + ACTIONS(2632), 19, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -222363,32 +225827,16 @@ 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, - [37047] = 6, + [37049] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4828), 1, - anon_sym_BANG, - STATE(2110), 2, + STATE(2150), 2, sym_line_comment, sym_block_comment, - ACTIONS(2585), 17, + ACTIONS(2453), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -222397,6 +225845,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -222404,8 +225854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2583), 35, - anon_sym_SEMI, + ACTIONS(2451), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222416,8 +225865,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, @@ -222439,18 +225890,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, [37117] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2111), 2, + STATE(2151), 2, sym_line_comment, sym_block_comment, - ACTIONS(3011), 18, + ACTIONS(2379), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -222460,6 +225909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -222467,7 +225917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3009), 35, + ACTIONS(2377), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222508,12 +225958,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2112), 2, + STATE(2152), 2, sym_line_comment, sym_block_comment, - ACTIONS(3015), 18, + ACTIONS(1837), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -222523,6 +225972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -222530,7 +225980,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3013), 35, + ACTIONS(1835), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222541,10 +225992,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, @@ -222566,17 +226015,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_COLON_EQ, [37253] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2113), 2, + STATE(2153), 2, sym_line_comment, sym_block_comment, - ACTIONS(3021), 18, + ACTIONS(1887), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -222586,6 +226035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -222593,7 +226043,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3019), 35, + ACTIONS(1885), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222604,10 +226055,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, @@ -222629,17 +226078,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_COLON_EQ, [37321] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2114), 2, + STATE(2154), 2, sym_line_comment, sym_block_comment, - ACTIONS(2463), 18, + ACTIONS(2395), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -222649,6 +226098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -222656,7 +226106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2461), 35, + ACTIONS(2393), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222697,12 +226147,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2115), 2, + STATE(2155), 2, sym_line_comment, sym_block_comment, - ACTIONS(2475), 18, + ACTIONS(2719), 18, anon_sym_EQ, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -222712,6 +226161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -222719,7 +226169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2473), 35, + ACTIONS(2717), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222760,13 +226210,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2116), 2, + STATE(2156), 2, sym_line_comment, sym_block_comment, - ACTIONS(2197), 24, + ACTIONS(3022), 24, anon_sym_DOT, anon_sym_as, - anon_sym_PIPE, anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, @@ -222777,6 +226226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, @@ -222788,7 +226238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2195), 28, + ACTIONS(3020), 28, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -222822,13 +226272,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2117), 2, + STATE(2157), 2, sym_line_comment, sym_block_comment, - ACTIONS(2167), 24, + ACTIONS(2741), 24, anon_sym_DOT, anon_sym_as, - anon_sym_PIPE, anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, @@ -222839,6 +226288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, @@ -222850,7 +226300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2165), 28, + ACTIONS(2739), 28, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -222884,13 +226334,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2118), 2, + STATE(2158), 2, sym_line_comment, sym_block_comment, - ACTIONS(2171), 24, + ACTIONS(2705), 24, anon_sym_DOT, anon_sym_as, - anon_sym_PIPE, anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, @@ -222901,6 +226350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, @@ -222912,7 +226362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2169), 28, + ACTIONS(2703), 28, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -222946,13 +226396,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2119), 2, + STATE(2159), 2, sym_line_comment, sym_block_comment, - ACTIONS(2237), 24, + ACTIONS(2099), 24, anon_sym_DOT, anon_sym_as, - anon_sym_PIPE, anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, @@ -222963,6 +226412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, @@ -222974,7 +226424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2235), 28, + ACTIONS(2097), 28, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -223008,13 +226458,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2120), 2, + STATE(2160), 2, sym_line_comment, sym_block_comment, - ACTIONS(2193), 24, + ACTIONS(2689), 24, anon_sym_DOT, anon_sym_as, - anon_sym_PIPE, anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, @@ -223025,6 +226474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, @@ -223036,7 +226486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2191), 28, + ACTIONS(2687), 28, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -223065,17 +226515,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, anon_sym_map_LBRACK, anon_sym_DOT_DOT, - [37792] = 7, + [37792] = 13, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4858), 1, + anon_sym_LPAREN, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4862), 1, + anon_sym_QMARK, + ACTIONS(4864), 1, + anon_sym_BANG, + STATE(2291), 1, + sym_or_block, + STATE(2292), 1, + sym_argument_list, + STATE(4319), 1, + sym_type_parameters, + ACTIONS(4856), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4866), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2161), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1767), 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_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_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [37874] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4832), 1, + ACTIONS(4870), 1, anon_sym_EQ, - STATE(2121), 2, + STATE(2162), 2, sym_line_comment, sym_block_comment, - ACTIONS(4830), 14, + ACTIONS(4868), 14, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_STAR_EQ, @@ -223090,8 +226609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - ACTIONS(2883), 17, - anon_sym_PIPE, + ACTIONS(2321), 17, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -223101,6 +226619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -223108,7 +226627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2881), 19, + ACTIONS(2319), 19, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -223128,35 +226647,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [37862] = 13, + [37944] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4836), 1, + ACTIONS(4858), 1, anon_sym_LPAREN, - ACTIONS(4838), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4840), 1, + ACTIONS(4862), 1, anon_sym_QMARK, - ACTIONS(4842), 1, + ACTIONS(4864), 1, anon_sym_BANG, - STATE(2234), 1, + STATE(2291), 1, sym_or_block, - STATE(2236), 1, + STATE(2292), 1, sym_argument_list, - STATE(4213), 1, + STATE(4319), 1, sym_type_parameters, - ACTIONS(4834), 2, + ACTIONS(4856), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4844), 2, + ACTIONS(4866), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2122), 2, + STATE(2163), 2, sym_line_comment, sym_block_comment, - ACTIONS(1791), 40, + ACTIONS(1789), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -223165,7 +226684,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -223182,6 +226700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, @@ -223197,35 +226716,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37944] = 13, + [38026] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4836), 1, + ACTIONS(4858), 1, anon_sym_LPAREN, - ACTIONS(4838), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4840), 1, + ACTIONS(4862), 1, anon_sym_QMARK, - ACTIONS(4842), 1, + ACTIONS(4864), 1, anon_sym_BANG, - STATE(2234), 1, + STATE(2291), 1, sym_or_block, - STATE(2236), 1, + STATE(2292), 1, sym_argument_list, - STATE(4213), 1, + STATE(4319), 1, sym_type_parameters, - ACTIONS(4834), 2, + ACTIONS(4856), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4844), 2, + ACTIONS(4866), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2123), 2, + STATE(2164), 2, sym_line_comment, sym_block_comment, - ACTIONS(1783), 40, + ACTIONS(1771), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -223234,7 +226753,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -223251,6 +226769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, @@ -223266,44 +226785,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38026] = 13, + [38108] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4836), 1, - anon_sym_LPAREN, - ACTIONS(4838), 1, + ACTIONS(1803), 1, anon_sym_LBRACK, - ACTIONS(4840), 1, - anon_sym_QMARK, - ACTIONS(4842), 1, - anon_sym_BANG, - STATE(2234), 1, - sym_or_block, - STATE(2236), 1, - sym_argument_list, - STATE(4213), 1, - sym_type_parameters, - ACTIONS(4834), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4844), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2124), 2, + ACTIONS(4872), 1, + anon_sym_else, + STATE(2244), 1, + sym_else_branch, + STATE(2165), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 40, + ACTIONS(1805), 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, @@ -223320,6 +226826,10 @@ 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_PIPE, + anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, @@ -223329,27 +226839,29 @@ 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, - [38108] = 8, + [38177] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2755), 1, + ACTIONS(2693), 1, anon_sym_static, - ACTIONS(2757), 1, + ACTIONS(2695), 1, anon_sym_volatile, - ACTIONS(4846), 1, + ACTIONS(4874), 1, anon_sym_COLON, - STATE(2125), 2, + STATE(2166), 2, sym_line_comment, sym_block_comment, - ACTIONS(4577), 22, + ACTIONS(4593), 22, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_PLUS, @@ -223372,7 +226884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_r_SQUOTE, anon_sym_r_DQUOTE, anon_sym_map_LBRACK, - ACTIONS(4575), 25, + ACTIONS(4591), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -223398,21 +226910,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [38179] = 7, + [38248] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1803), 1, + ACTIONS(1797), 1, anon_sym_LBRACK, - ACTIONS(4848), 1, + ACTIONS(4872), 1, anon_sym_else, - STATE(2167), 1, + STATE(2243), 1, sym_else_branch, - STATE(2126), 2, + STATE(2167), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 47, + ACTIONS(1799), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -223423,7 +226935,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -223442,6 +226953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -223460,21 +226972,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38248] = 7, + [38317] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym_LBRACK, - ACTIONS(4848), 1, - anon_sym_else, - STATE(2168), 1, - sym_else_branch, - STATE(2127), 2, + STATE(2168), 2, sym_line_comment, sym_block_comment, - ACTIONS(1799), 47, + ACTIONS(1837), 48, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -223485,7 +226993,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -223504,6 +227011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -223516,25 +227024,83 @@ 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, - [38317] = 6, + [38381] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2169), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1875), 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_SQUOTE, + anon_sym_DQUOTE, + anon_sym_c_SQUOTE, + anon_sym_c_DQUOTE, + anon_sym_r_SQUOTE, + anon_sym_r_DQUOTE, + anon_sym_map_LBRACK, + ACTIONS(1877), 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, + [38445] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2077), 1, + ACTIONS(1835), 1, anon_sym_LBRACK, - ACTIONS(4850), 1, - anon_sym_DOLLARelse, - STATE(2128), 2, + STATE(2170), 2, sym_line_comment, sym_block_comment, - ACTIONS(2079), 47, + ACTIONS(1837), 48, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -223545,7 +227111,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -223564,6 +227129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -223576,84 +227142,145 @@ 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, - [38383] = 5, - ACTIONS(3), 1, + [38509] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2129), 2, + ACTIONS(1875), 1, + anon_sym_LBRACK, + STATE(2171), 2, sym_line_comment, sym_block_comment, - ACTIONS(1514), 24, - anon_sym_LBRACE, + ACTIONS(1877), 48, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym___global, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, - anon_sym_json_DOTdecode, + anon_sym_PIPE, anon_sym_LBRACK2, - anon_sym_TILDE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_c_SQUOTE, - anon_sym_c_DQUOTE, - anon_sym_r_SQUOTE, - anon_sym_r_DQUOTE, - anon_sym_map_LBRACK, - ACTIONS(4852), 25, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_DOLLARelse, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [38573] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2077), 1, + anon_sym_LBRACK, + ACTIONS(4876), 1, + anon_sym_DOLLARelse, + STATE(2172), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2079), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, + 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_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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_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, - [38447] = 6, + anon_sym_AT_LBRACK, + [38639] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1897), 1, + ACTIONS(1851), 1, anon_sym_LBRACK, - STATE(2209), 1, - sym_type_parameters, - STATE(2130), 2, + ACTIONS(4878), 1, + anon_sym_DOLLARelse, + STATE(2173), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 47, + ACTIONS(1853), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -223664,7 +227291,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -223683,6 +227309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -223701,20 +227328,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38513] = 7, + [38705] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2755), 1, - anon_sym_static, - ACTIONS(2757), 1, - anon_sym_volatile, - STATE(2131), 2, + STATE(2174), 2, sym_line_comment, sym_block_comment, - ACTIONS(4577), 22, + ACTIONS(4882), 23, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, @@ -223736,7 +227360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_r_SQUOTE, anon_sym_r_DQUOTE, anon_sym_map_LBRACK, - ACTIONS(4575), 25, + ACTIONS(4880), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -223748,6 +227372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_nil, anon_sym_if, + anon_sym_else, anon_sym_DOLLARif, anon_sym_match, anon_sym_select, @@ -223762,15 +227387,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [38581] = 5, + [38769] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2132), 2, + STATE(2175), 2, sym_line_comment, sym_block_comment, - ACTIONS(1887), 23, + ACTIONS(4886), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -223794,7 +227419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_r_SQUOTE, anon_sym_r_DQUOTE, anon_sym_map_LBRACK, - ACTIONS(1889), 26, + ACTIONS(4884), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -223821,15 +227446,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [38645] = 5, + [38833] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(1892), 1, + anon_sym_LBRACK, + ACTIONS(2095), 1, + anon_sym_LBRACE, + STATE(2176), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1887), 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_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_PIPE, + anon_sym_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, + [38899] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2133), 2, + STATE(2177), 2, sym_line_comment, sym_block_comment, - ACTIONS(1807), 23, + ACTIONS(4890), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -223853,7 +227538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_r_SQUOTE, anon_sym_r_DQUOTE, anon_sym_map_LBRACK, - ACTIONS(1809), 26, + ACTIONS(4888), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -223880,15 +227565,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [38709] = 5, + [38963] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2134), 2, + STATE(2178), 2, sym_line_comment, sym_block_comment, - ACTIONS(4856), 23, + ACTIONS(4894), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -223912,7 +227597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_r_SQUOTE, anon_sym_r_DQUOTE, anon_sym_map_LBRACK, - ACTIONS(4854), 26, + ACTIONS(4892), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -223939,17 +227624,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [38773] = 5, + [39027] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2179), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4898), 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_SQUOTE, + anon_sym_DQUOTE, + anon_sym_c_SQUOTE, + anon_sym_c_DQUOTE, + anon_sym_r_SQUOTE, + anon_sym_r_DQUOTE, + anon_sym_map_LBRACK, + ACTIONS(4896), 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, + [39091] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1807), 1, + ACTIONS(1875), 1, anon_sym_LBRACK, - STATE(2135), 2, + STATE(2180), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 48, + ACTIONS(1877), 48, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -223960,7 +227704,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -223979,6 +227722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -223991,22 +227735,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_DOLLARelse, + anon_sym_else, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38837] = 5, + [39155] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2136), 2, + STATE(2181), 2, sym_line_comment, sym_block_comment, - ACTIONS(4860), 23, + ACTIONS(1835), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -224030,7 +227774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_r_SQUOTE, anon_sym_r_DQUOTE, anon_sym_map_LBRACK, - ACTIONS(4858), 26, + ACTIONS(1837), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -224057,70 +227801,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [38901] = 27, + [39219] = 27, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4836), 1, + ACTIONS(4858), 1, anon_sym_LPAREN, - ACTIONS(4838), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4840), 1, + ACTIONS(4862), 1, anon_sym_QMARK, - ACTIONS(4842), 1, + ACTIONS(4864), 1, anon_sym_BANG, - ACTIONS(4844), 1, + ACTIONS(4866), 1, anon_sym_POUND_LBRACK, - ACTIONS(4864), 1, + ACTIONS(4902), 1, anon_sym_as, - ACTIONS(4872), 1, + ACTIONS(4910), 1, anon_sym_PLUS_PLUS, - ACTIONS(4874), 1, + ACTIONS(4912), 1, anon_sym_DASH_DASH, - ACTIONS(4876), 1, + ACTIONS(4914), 1, anon_sym_LBRACK2, - ACTIONS(4878), 1, + ACTIONS(4916), 1, anon_sym_AMP_AMP, - ACTIONS(4880), 1, + ACTIONS(4918), 1, anon_sym_PIPE_PIPE, - ACTIONS(4882), 1, + ACTIONS(4920), 1, anon_sym_or, - ACTIONS(4888), 1, + ACTIONS(4926), 1, anon_sym_AT_LBRACK, - STATE(2234), 1, + STATE(2291), 1, sym_or_block, - STATE(2236), 1, + STATE(2292), 1, sym_argument_list, - STATE(3396), 1, + STATE(3460), 1, sym_attribute, - STATE(4213), 1, + STATE(4319), 1, sym_type_parameters, - ACTIONS(4834), 2, + ACTIONS(4856), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4884), 2, + ACTIONS(4922), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4886), 2, + ACTIONS(4924), 2, anon_sym_in, anon_sym_BANGin, - STATE(2137), 2, + STATE(2182), 2, sym_line_comment, sym_block_comment, - ACTIONS(4866), 4, - anon_sym_PIPE, + ACTIONS(4904), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4870), 6, + ACTIONS(4908), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4862), 8, + ACTIONS(4900), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224129,7 +227873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - ACTIONS(4868), 8, + ACTIONS(4906), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -224138,76 +227882,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [39009] = 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(4892), 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_SQUOTE, - anon_sym_DQUOTE, - anon_sym_c_SQUOTE, - anon_sym_c_DQUOTE, - anon_sym_r_SQUOTE, - anon_sym_r_DQUOTE, - anon_sym_map_LBRACK, - ACTIONS(4890), 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, - [39073] = 5, + [39327] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1887), 1, + ACTIONS(1943), 1, anon_sym_LBRACK, - STATE(2139), 2, + STATE(2290), 1, + sym_type_parameters, + STATE(2183), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 48, + ACTIONS(1945), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224218,7 +227905,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -224237,6 +227923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -224249,28 +227936,28 @@ 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, - [39137] = 5, + [39393] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2140), 2, + STATE(2184), 2, sym_line_comment, sym_block_comment, - ACTIONS(4896), 23, + ACTIONS(1534), 24, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, + anon_sym_DOT_DOT_DOT, anon_sym_QMARK, anon_sym_BANG, anon_sym_json_DOTdecode, @@ -224288,7 +227975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_r_SQUOTE, anon_sym_r_DQUOTE, anon_sym_map_LBRACK, - ACTIONS(4894), 26, + ACTIONS(4928), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -224300,7 +227987,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, @@ -224315,136 +228001,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [39201] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2039), 1, - anon_sym_LBRACK, - ACTIONS(4898), 1, - anon_sym_DOLLARelse, - STATE(2141), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2041), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [39267] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1807), 1, - anon_sym_LBRACK, - STATE(2142), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1809), 48, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [39331] = 5, + [39457] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2143), 2, + ACTIONS(2693), 1, + anon_sym_static, + ACTIONS(2695), 1, + anon_sym_volatile, + STATE(2185), 2, sym_line_comment, sym_block_comment, - ACTIONS(4902), 23, + ACTIONS(4593), 22, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, @@ -224466,7 +228036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_r_SQUOTE, anon_sym_r_DQUOTE, anon_sym_map_LBRACK, - ACTIONS(4900), 26, + ACTIONS(4591), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -224478,7 +228048,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, @@ -224493,19 +228062,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [39395] = 6, + [39525] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2060), 1, + ACTIONS(2349), 1, anon_sym_LBRACK, - ACTIONS(2159), 1, - anon_sym_LBRACE, - STATE(2144), 2, + STATE(2186), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 47, + ACTIONS(2351), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224516,7 +228083,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -224535,6 +228101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -224553,134 +228120,370 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39461] = 5, - ACTIONS(497), 1, + [39588] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1887), 1, - anon_sym_LBRACK, - STATE(2145), 2, + STATE(2187), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 48, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + ACTIONS(2687), 24, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_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(2689), 24, + anon_sym_DOT, + anon_sym_as, + 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_PIPE, anon_sym_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, + anon_sym_DOT_DOT, + [39651] = 24, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4858), 1, + anon_sym_LPAREN, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4862), 1, + anon_sym_QMARK, + ACTIONS(4864), 1, + anon_sym_BANG, + ACTIONS(4902), 1, + anon_sym_as, + ACTIONS(4910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4912), 1, + anon_sym_DASH_DASH, + ACTIONS(4916), 1, anon_sym_AMP_AMP, + ACTIONS(4918), 1, anon_sym_PIPE_PIPE, + ACTIONS(4920), 1, anon_sym_or, + STATE(2291), 1, + sym_or_block, + STATE(2292), 1, + sym_argument_list, + STATE(4319), 1, + sym_type_parameters, + ACTIONS(4856), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, + ACTIONS(4866), 2, + anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - anon_sym_else, + ACTIONS(4922), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(4924), 2, anon_sym_in, anon_sym_BANGin, + STATE(2188), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4904), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4908), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4906), 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(1779), 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, - [39525] = 5, + [39752] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2255), 1, + ACTIONS(4858), 1, + anon_sym_LPAREN, + ACTIONS(4860), 1, anon_sym_LBRACK, - STATE(2146), 2, + ACTIONS(4862), 1, + anon_sym_QMARK, + ACTIONS(4864), 1, + anon_sym_BANG, + ACTIONS(4902), 1, + anon_sym_as, + ACTIONS(4910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4912), 1, + anon_sym_DASH_DASH, + ACTIONS(4916), 1, + anon_sym_AMP_AMP, + ACTIONS(4918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4920), 1, + anon_sym_or, + STATE(2291), 1, + sym_or_block, + STATE(2292), 1, + sym_argument_list, + STATE(4319), 1, + sym_type_parameters, + ACTIONS(4856), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4866), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4922), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4924), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2189), 2, sym_line_comment, sym_block_comment, - ACTIONS(2257), 47, + ACTIONS(4904), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4908), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4906), 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(1775), 9, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + anon_sym_AT_LBRACK, + [39853] = 18, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4858), 1, + anon_sym_LPAREN, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4862), 1, + anon_sym_QMARK, + ACTIONS(4864), 1, + anon_sym_BANG, + ACTIONS(4916), 1, + anon_sym_AMP_AMP, + STATE(2291), 1, + sym_or_block, + STATE(2292), 1, + sym_argument_list, + STATE(4319), 1, + sym_type_parameters, + ACTIONS(4856), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4866), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4924), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2190), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4904), 4, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4908), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + ACTIONS(4906), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1767), 16, + anon_sym_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, + [39942] = 17, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4858), 1, + anon_sym_LPAREN, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4862), 1, anon_sym_QMARK, + ACTIONS(4864), 1, anon_sym_BANG, + STATE(2291), 1, + sym_or_block, + STATE(2292), 1, + sym_argument_list, + STATE(4319), 1, + sym_type_parameters, + ACTIONS(4856), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4866), 2, anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4924), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2191), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4904), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, + ACTIONS(4908), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4906), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1767), 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, - [39588] = 5, + [40029] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2717), 1, + ACTIONS(2769), 1, anon_sym_LBRACK, - STATE(2147), 2, + STATE(2192), 2, sym_line_comment, sym_block_comment, - ACTIONS(2719), 47, + ACTIONS(2771), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224691,7 +228494,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -224710,6 +228512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -224728,28 +228531,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39651] = 5, + [40092] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2727), 1, + ACTIONS(1889), 1, + anon_sym_DOT, + ACTIONS(2093), 1, anon_sym_LBRACK, - STATE(2148), 2, + STATE(2193), 2, sym_line_comment, sym_block_comment, - ACTIONS(2729), 47, + ACTIONS(2095), 46, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -224768,6 +228571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -224786,17 +228590,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39714] = 5, + [40157] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2735), 1, + ACTIONS(2777), 1, anon_sym_LBRACK, - STATE(2149), 2, + STATE(2194), 2, sym_line_comment, sym_block_comment, - ACTIONS(2737), 47, + ACTIONS(2779), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224807,7 +228611,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -224826,6 +228629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -224844,17 +228648,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39777] = 5, + [40220] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2743), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - STATE(2150), 2, + STATE(2195), 2, sym_line_comment, sym_block_comment, - ACTIONS(2745), 47, + ACTIONS(2761), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224865,7 +228669,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -224884,6 +228687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -224902,75 +228706,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39840] = 5, + [40283] = 15, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2747), 1, + ACTIONS(4858), 1, + anon_sym_LPAREN, + ACTIONS(4860), 1, anon_sym_LBRACK, - STATE(2151), 2, + ACTIONS(4862), 1, + anon_sym_QMARK, + ACTIONS(4864), 1, + anon_sym_BANG, + STATE(2291), 1, + sym_or_block, + STATE(2292), 1, + sym_argument_list, + STATE(4319), 1, + sym_type_parameters, + ACTIONS(4856), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4866), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2196), 2, sym_line_comment, sym_block_comment, - ACTIONS(2749), 47, + ACTIONS(4904), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4906), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1767), 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, - [39903] = 5, + [40366] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2799), 1, + ACTIONS(2361), 1, anon_sym_LBRACK, - STATE(2152), 2, + STATE(2197), 2, sym_line_comment, sym_block_comment, - ACTIONS(2801), 47, + ACTIONS(2363), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224981,7 +228795,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -225000,6 +228813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -225018,133 +228832,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39966] = 5, + [40429] = 14, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2807), 1, + ACTIONS(4858), 1, + anon_sym_LPAREN, + ACTIONS(4860), 1, anon_sym_LBRACK, - STATE(2153), 2, + ACTIONS(4862), 1, + anon_sym_QMARK, + ACTIONS(4864), 1, + anon_sym_BANG, + STATE(2291), 1, + sym_or_block, + STATE(2292), 1, + sym_argument_list, + STATE(4319), 1, + sym_type_parameters, + ACTIONS(4856), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4866), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2198), 2, sym_line_comment, sym_block_comment, - ACTIONS(2809), 47, + ACTIONS(4906), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1767), 29, 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_PIPE, 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, - [40029] = 5, - ACTIONS(497), 1, + [40510] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2811), 1, - anon_sym_LBRACK, - STATE(2154), 2, + STATE(2199), 2, sym_line_comment, sym_block_comment, - ACTIONS(2813), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + ACTIONS(2739), 24, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, + anon_sym_map_LBRACK, + ACTIONS(2741), 24, + anon_sym_DOT, + anon_sym_as, + 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_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_is, + anon_sym_in, sym_identifier, - anon_sym_AT_LBRACK, - [40092] = 5, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [40573] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2815), 1, + ACTIONS(1885), 1, anon_sym_LBRACK, - STATE(2155), 2, + STATE(2200), 2, sym_line_comment, sym_block_comment, - ACTIONS(2817), 47, + ACTIONS(1887), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225155,7 +228978,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -225174,6 +228996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -225192,17 +229015,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40155] = 5, + [40636] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4934), 1, + anon_sym_volatile, + STATE(2201), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4932), 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_SQUOTE, + anon_sym_DQUOTE, + anon_sym_c_SQUOTE, + anon_sym_c_DQUOTE, + anon_sym_r_SQUOTE, + anon_sym_r_DQUOTE, + anon_sym_map_LBRACK, + ACTIONS(4930), 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, + [40701] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2853), 1, + ACTIONS(1943), 1, anon_sym_LBRACK, - STATE(2156), 2, + STATE(2202), 2, sym_line_comment, sym_block_comment, - ACTIONS(2855), 47, + ACTIONS(1945), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225213,7 +229095,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -225232,6 +229113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -225250,17 +229132,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40218] = 5, + [40764] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3023), 1, + ACTIONS(2753), 1, anon_sym_LBRACK, - STATE(2157), 2, + STATE(2203), 2, sym_line_comment, sym_block_comment, - ACTIONS(3025), 47, + ACTIONS(2755), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225271,7 +229153,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -225290,6 +229171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -225308,28 +229190,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40281] = 5, + [40827] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3027), 1, + ACTIONS(2935), 1, anon_sym_LBRACK, - STATE(2158), 2, + ACTIONS(3005), 1, + anon_sym_DOT, + STATE(2204), 2, sym_line_comment, sym_block_comment, - ACTIONS(3029), 47, + ACTIONS(2937), 46, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -225348,6 +229230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -225366,17 +229249,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40344] = 5, + [40892] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(2983), 1, anon_sym_LBRACK, - STATE(2159), 2, + STATE(2205), 2, sym_line_comment, sym_block_comment, - ACTIONS(3046), 47, + ACTIONS(2985), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225387,7 +229270,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -225406,6 +229288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -225424,17 +229307,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40407] = 5, + [40955] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3050), 1, + ACTIONS(2935), 1, anon_sym_LBRACK, - STATE(2160), 2, + STATE(2206), 2, sym_line_comment, sym_block_comment, - ACTIONS(3052), 47, + ACTIONS(2937), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225445,7 +229328,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -225464,6 +229346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -225482,17 +229365,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40470] = 5, + [41018] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3054), 1, + ACTIONS(2319), 1, anon_sym_LBRACK, - STATE(2161), 2, + STATE(2207), 2, sym_line_comment, sym_block_comment, - ACTIONS(3056), 47, + ACTIONS(2321), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225503,7 +229386,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -225522,6 +229404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -225540,17 +229423,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40533] = 5, + [41081] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2149), 1, + ACTIONS(2967), 1, anon_sym_LBRACK, - STATE(2162), 2, + STATE(2208), 2, sym_line_comment, sym_block_comment, - ACTIONS(2151), 47, + ACTIONS(2969), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225561,7 +229444,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -225580,6 +229462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -225598,21 +229481,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40596] = 5, + [41144] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2163), 2, + STATE(2209), 2, sym_line_comment, sym_block_comment, - ACTIONS(2610), 23, + ACTIONS(4938), 23, anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -225630,7 +229513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_r_SQUOTE, anon_sym_r_DQUOTE, anon_sym_map_LBRACK, - ACTIONS(4904), 25, + ACTIONS(4936), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -225656,17 +229539,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [40659] = 5, + [41207] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2819), 1, + ACTIONS(2975), 1, anon_sym_LBRACK, - STATE(2164), 2, + STATE(2210), 2, sym_line_comment, sym_block_comment, - ACTIONS(2821), 47, + ACTIONS(2977), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225677,7 +229560,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -225696,6 +229578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -225714,17 +229597,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40722] = 5, + [41270] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2705), 1, + ACTIONS(2399), 1, anon_sym_LBRACK, - STATE(2165), 2, + STATE(2211), 2, sym_line_comment, sym_block_comment, - ACTIONS(2707), 47, + ACTIONS(2401), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225735,7 +229618,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -225754,6 +229636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -225772,17 +229655,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40785] = 5, + [41333] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2473), 1, + ACTIONS(2103), 1, anon_sym_LBRACK, - STATE(2166), 2, + STATE(2212), 2, sym_line_comment, sym_block_comment, - ACTIONS(2475), 47, + ACTIONS(2105), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225793,7 +229676,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -225812,6 +229694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -225830,203 +229713,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40848] = 5, + [41396] = 15, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2461), 1, + ACTIONS(4858), 1, + anon_sym_LPAREN, + ACTIONS(4860), 1, anon_sym_LBRACK, - STATE(2167), 2, + ACTIONS(4862), 1, + anon_sym_QMARK, + ACTIONS(4864), 1, + anon_sym_BANG, + STATE(2291), 1, + sym_or_block, + STATE(2292), 1, + sym_argument_list, + STATE(4319), 1, + sym_type_parameters, + ACTIONS(4856), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4866), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2213), 2, sym_line_comment, sym_block_comment, - ACTIONS(2463), 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, + ACTIONS(4904), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4906), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_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, - [40911] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_LBRACK, - STATE(2168), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2457), 47, + ACTIONS(1793), 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, - [40974] = 17, - ACTIONS(497), 1, + [41479] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4836), 1, - anon_sym_LPAREN, - ACTIONS(4838), 1, - anon_sym_LBRACK, - ACTIONS(4840), 1, - anon_sym_QMARK, - ACTIONS(4842), 1, - anon_sym_BANG, - STATE(2234), 1, - sym_or_block, - STATE(2236), 1, - sym_argument_list, - STATE(4213), 1, - sym_type_parameters, - ACTIONS(4834), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4844), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4886), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2169), 2, + STATE(2214), 2, sym_line_comment, sym_block_comment, - ACTIONS(4866), 4, - anon_sym_PIPE, + ACTIONS(1964), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4870), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4868), 8, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + 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(1791), 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_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_c_SQUOTE, + anon_sym_c_DQUOTE, + anon_sym_r_SQUOTE, + anon_sym_r_DQUOTE, + anon_sym_map_LBRACK, + ACTIONS(4940), 25, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, + anon_sym_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_AT_LBRACK, - [41061] = 5, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [41542] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2451), 1, + ACTIONS(2971), 1, anon_sym_LBRACK, - STATE(2170), 2, + STATE(2215), 2, sym_line_comment, sym_block_comment, - ACTIONS(2453), 47, + ACTIONS(2973), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226037,7 +229860,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -226056,6 +229878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -226074,17 +229897,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41124] = 5, + [41605] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2437), 1, + ACTIONS(2955), 1, anon_sym_LBRACK, - STATE(2171), 2, + STATE(2216), 2, sym_line_comment, sym_block_comment, - ACTIONS(2439), 47, + ACTIONS(2957), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226095,7 +229918,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -226114,6 +229936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -226132,17 +229955,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41187] = 5, + [41668] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2179), 1, + ACTIONS(2947), 1, anon_sym_LBRACK, - STATE(2172), 2, + STATE(2217), 2, sym_line_comment, sym_block_comment, - ACTIONS(2181), 47, + ACTIONS(2949), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226153,7 +229976,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -226172,6 +229994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -226190,85 +230013,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41250] = 15, + [41731] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4836), 1, - anon_sym_LPAREN, - ACTIONS(4838), 1, + ACTIONS(2632), 1, anon_sym_LBRACK, - ACTIONS(4840), 1, - anon_sym_QMARK, - ACTIONS(4842), 1, - anon_sym_BANG, - STATE(2234), 1, - sym_or_block, - STATE(2236), 1, - sym_argument_list, - STATE(4213), 1, - sym_type_parameters, - ACTIONS(4834), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4844), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2173), 2, + STATE(2218), 2, sym_line_comment, sym_block_comment, - ACTIONS(4866), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4868), 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(1791), 25, + ACTIONS(2627), 12, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_as, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym___global, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + anon_sym_AT_LBRACK, + ACTIONS(2629), 35, + anon_sym_DOT, + anon_sym_as, + 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_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_pub, - anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_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, - [41333] = 5, + [41796] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2239), 1, + ACTIONS(2343), 1, anon_sym_LBRACK, - STATE(2174), 2, + STATE(2219), 2, sym_line_comment, sym_block_comment, - ACTIONS(2241), 47, + ACTIONS(2345), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226279,7 +230093,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -226298,6 +230111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -226316,17 +230130,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41396] = 5, + [41859] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2231), 1, + ACTIONS(2355), 1, anon_sym_LBRACK, - STATE(2175), 2, + STATE(2220), 2, sym_line_comment, sym_block_comment, - ACTIONS(2233), 47, + ACTIONS(2357), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226337,7 +230151,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -226356,64 +230169,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - [41459] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2117), 1, - anon_sym_LBRACK, - STATE(2176), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2119), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -226432,17 +230188,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41522] = 5, + [41922] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2131), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - STATE(2177), 2, + STATE(2221), 2, sym_line_comment, sym_block_comment, - ACTIONS(2133), 47, + ACTIONS(2469), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226453,7 +230209,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -226472,64 +230227,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - [41585] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2425), 1, - anon_sym_LBRACK, - STATE(2178), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2427), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -226548,17 +230246,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41648] = 5, + [41985] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1897), 1, + ACTIONS(2931), 1, anon_sym_LBRACK, - STATE(2179), 2, + STATE(2222), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 47, + ACTIONS(2933), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226569,7 +230267,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -226588,64 +230285,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - [41711] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2889), 1, - anon_sym_LBRACK, - STATE(2180), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2891), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -226664,17 +230304,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41774] = 5, + [42048] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3064), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - STATE(2181), 2, + STATE(2223), 2, sym_line_comment, sym_block_comment, - ACTIONS(3066), 47, + ACTIONS(2445), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226685,7 +230325,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -226704,6 +230343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -226722,17 +230362,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41837] = 5, + [42111] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2885), 1, + ACTIONS(2473), 1, anon_sym_LBRACK, - STATE(2182), 2, + STATE(2224), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 47, + ACTIONS(2475), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226743,7 +230383,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -226762,6 +230401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -226780,17 +230420,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41900] = 5, + [42174] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3019), 1, + ACTIONS(2477), 1, anon_sym_LBRACK, - STATE(2183), 2, + STATE(2225), 2, sym_line_comment, sym_block_comment, - ACTIONS(3021), 47, + ACTIONS(2479), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226801,7 +230441,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -226820,6 +230459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -226838,17 +230478,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41963] = 5, + [42237] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2881), 1, + ACTIONS(2489), 1, anon_sym_LBRACK, - STATE(2184), 2, + STATE(2226), 2, sym_line_comment, sym_block_comment, - ACTIONS(2883), 47, + ACTIONS(2491), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226859,7 +230499,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -226878,6 +230517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -226896,17 +230536,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42026] = 5, + [42300] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2421), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - STATE(2185), 2, + STATE(2227), 2, sym_line_comment, sym_block_comment, - ACTIONS(2423), 47, + ACTIONS(2647), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226917,7 +230557,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -226936,6 +230575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -226954,84 +230594,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42089] = 14, + [42363] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4836), 1, - anon_sym_LPAREN, - ACTIONS(4838), 1, - anon_sym_LBRACK, - ACTIONS(4840), 1, - anon_sym_QMARK, - ACTIONS(4842), 1, - anon_sym_BANG, - STATE(2234), 1, - sym_or_block, - STATE(2236), 1, - sym_argument_list, - STATE(4213), 1, - sym_type_parameters, - ACTIONS(4834), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4844), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2186), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4868), 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(1791), 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, - [42170] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(3013), 1, + ACTIONS(2651), 1, anon_sym_LBRACK, - STATE(2187), 2, + STATE(2228), 2, sym_line_comment, sym_block_comment, - ACTIONS(3015), 47, + ACTIONS(2653), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227042,7 +230615,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -227061,6 +230633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -227079,17 +230652,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42233] = 5, + [42426] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3009), 1, + ACTIONS(2655), 1, anon_sym_LBRACK, - STATE(2188), 2, + STATE(2229), 2, sym_line_comment, sym_block_comment, - ACTIONS(3011), 47, + ACTIONS(2657), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227100,7 +230673,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -227119,6 +230691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -227137,17 +230710,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42296] = 5, + [42489] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2271), 1, + ACTIONS(2717), 1, anon_sym_LBRACK, - STATE(2189), 2, + STATE(2230), 2, sym_line_comment, sym_block_comment, - ACTIONS(2273), 47, + ACTIONS(2719), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227158,7 +230731,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -227177,6 +230749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -227195,17 +230768,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42359] = 5, + [42552] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2857), 1, + ACTIONS(2369), 1, anon_sym_LBRACK, - STATE(2190), 2, + STATE(2231), 2, sym_line_comment, sym_block_comment, - ACTIONS(2859), 47, + ACTIONS(2371), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227216,7 +230789,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -227235,6 +230807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -227253,17 +230826,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42422] = 5, + [42615] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2845), 1, + ACTIONS(2897), 1, anon_sym_LBRACK, - STATE(2191), 2, + STATE(2232), 2, sym_line_comment, sym_block_comment, - ACTIONS(2847), 47, + ACTIONS(2899), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227274,7 +230847,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -227293,6 +230865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -227311,17 +230884,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42485] = 5, + [42678] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2841), 1, + ACTIONS(3012), 1, anon_sym_LBRACK, - STATE(2192), 2, + STATE(2233), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 47, + ACTIONS(3014), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227332,7 +230905,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -227351,6 +230923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -227369,75 +230942,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42548] = 5, - ACTIONS(3), 1, + [42741] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2193), 2, + ACTIONS(3016), 1, + anon_sym_LBRACK, + STATE(2234), 2, sym_line_comment, sym_block_comment, - ACTIONS(2165), 24, - anon_sym_LBRACE, + ACTIONS(3018), 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_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(2167), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, anon_sym_is, + anon_sym_BANGis, anon_sym_in, + anon_sym_BANGin, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [42611] = 5, + anon_sym_AT_LBRACK, + [42804] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2777), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - STATE(2194), 2, + STATE(2235), 2, sym_line_comment, sym_block_comment, - ACTIONS(2779), 47, + ACTIONS(3046), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227448,7 +231021,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -227467,6 +231039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -227485,17 +231058,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42674] = 5, + [42867] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2773), 1, + ACTIONS(2637), 1, anon_sym_LBRACK, - STATE(2195), 2, + STATE(2236), 2, sym_line_comment, sym_block_comment, - ACTIONS(2775), 47, + ACTIONS(2639), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227506,7 +231079,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -227525,6 +231097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -227543,17 +231116,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42737] = 5, + [42930] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2053), 1, + ACTIONS(3052), 1, anon_sym_LBRACK, - STATE(2196), 2, + STATE(2237), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 47, + ACTIONS(3054), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227564,7 +231137,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -227583,6 +231155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -227601,17 +231174,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42800] = 5, + [42993] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2831), 1, + ACTIONS(3064), 1, anon_sym_LBRACK, - STATE(2197), 2, + STATE(2238), 2, sym_line_comment, sym_block_comment, - ACTIONS(2833), 47, + ACTIONS(3066), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227622,7 +231195,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -227641,6 +231213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -227659,75 +231232,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42863] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2198), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1916), 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_SQUOTE, - anon_sym_DQUOTE, - anon_sym_c_SQUOTE, - anon_sym_c_DQUOTE, - anon_sym_r_SQUOTE, - anon_sym_r_DQUOTE, - anon_sym_map_LBRACK, - ACTIONS(4906), 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, - [42926] = 5, + [43056] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2183), 1, + ACTIONS(2377), 1, anon_sym_LBRACK, - STATE(2199), 2, + STATE(2239), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 47, + ACTIONS(2379), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227738,7 +231253,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -227757,6 +231271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -227775,17 +231290,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42989] = 5, + [43119] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2761), 1, + ACTIONS(2763), 1, anon_sym_LBRACK, - STATE(2200), 2, + STATE(2240), 2, sym_line_comment, sym_block_comment, - ACTIONS(2763), 47, + ACTIONS(2765), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227796,7 +231311,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -227815,6 +231329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -227833,17 +231348,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43052] = 5, + [43182] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2267), 1, + ACTIONS(2747), 1, anon_sym_LBRACK, - STATE(2201), 2, + STATE(2241), 2, sym_line_comment, sym_block_comment, - ACTIONS(2269), 47, + ACTIONS(2749), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227854,7 +231369,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -227873,6 +231387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -227891,17 +231406,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43115] = 5, + [43245] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2259), 1, + ACTIONS(2721), 1, anon_sym_LBRACK, - STATE(2202), 2, + STATE(2242), 2, sym_line_comment, sym_block_comment, - ACTIONS(2261), 47, + ACTIONS(2723), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227912,7 +231427,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -227931,6 +231445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -227949,17 +231464,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43178] = 5, + [43308] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2251), 1, + ACTIONS(2619), 1, anon_sym_LBRACK, - STATE(2203), 2, + STATE(2243), 2, sym_line_comment, sym_block_comment, - ACTIONS(2253), 47, + ACTIONS(2621), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227970,7 +231485,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -227989,6 +231503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -228007,17 +231522,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43241] = 5, + [43371] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2247), 1, + ACTIONS(2463), 1, anon_sym_LBRACK, - STATE(2204), 2, + STATE(2244), 2, sym_line_comment, sym_block_comment, - ACTIONS(2249), 47, + ACTIONS(2465), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228028,7 +231543,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -228047,6 +231561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -228065,17 +231580,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43304] = 5, + [43434] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2087), 1, + ACTIONS(2455), 1, anon_sym_LBRACK, - STATE(2205), 2, + STATE(2245), 2, sym_line_comment, sym_block_comment, - ACTIONS(2089), 47, + ACTIONS(2457), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228086,7 +231601,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -228105,6 +231619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -228123,94 +231638,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43367] = 24, + [43497] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4836), 1, - anon_sym_LPAREN, - ACTIONS(4838), 1, + ACTIONS(2393), 1, anon_sym_LBRACK, - ACTIONS(4840), 1, - anon_sym_QMARK, - ACTIONS(4842), 1, - anon_sym_BANG, - ACTIONS(4864), 1, - anon_sym_as, - ACTIONS(4872), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4874), 1, - anon_sym_DASH_DASH, - ACTIONS(4878), 1, - anon_sym_AMP_AMP, - ACTIONS(4880), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4882), 1, - anon_sym_or, - STATE(2234), 1, - sym_or_block, - STATE(2236), 1, - sym_argument_list, - STATE(4213), 1, - sym_type_parameters, - ACTIONS(4834), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4844), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4884), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4886), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2206), 2, + STATE(2246), 2, sym_line_comment, sym_block_comment, - ACTIONS(4866), 4, - anon_sym_PIPE, + ACTIONS(2395), 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_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4870), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4868), 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_PIPE, + anon_sym_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(1765), 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, - [43468] = 5, + [43560] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2723), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(2207), 2, + STATE(2247), 2, sym_line_comment, sym_block_comment, - ACTIONS(2725), 47, + ACTIONS(2449), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228221,7 +231717,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -228240,6 +231735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -228258,17 +231754,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43531] = 5, + [43623] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2739), 1, + ACTIONS(2451), 1, anon_sym_LBRACK, - STATE(2208), 2, + STATE(2248), 2, sym_line_comment, sym_block_comment, - ACTIONS(2741), 47, + ACTIONS(2453), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228279,7 +231775,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -228298,6 +231793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -228316,17 +231812,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43594] = 5, + [43686] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2161), 1, + ACTIONS(2313), 1, anon_sym_LBRACK, - STATE(2209), 2, + STATE(2249), 2, sym_line_comment, sym_block_comment, - ACTIONS(2163), 47, + ACTIONS(2315), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228337,7 +231833,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -228356,6 +231851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -228374,77 +231870,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43657] = 5, - ACTIONS(3), 1, + [43749] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2210), 2, + ACTIONS(2329), 1, + anon_sym_LBRACK, + STATE(2250), 2, sym_line_comment, sym_block_comment, - ACTIONS(2235), 24, - anon_sym_LBRACE, + ACTIONS(2331), 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_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(2237), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, anon_sym_is, + anon_sym_BANGis, anon_sym_in, + anon_sym_BANGin, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [43720] = 6, + anon_sym_AT_LBRACK, + [43812] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2583), 1, + ACTIONS(2335), 1, anon_sym_LBRACK, - ACTIONS(4908), 1, - anon_sym_BANG, - STATE(2211), 2, + STATE(2251), 2, sym_line_comment, sym_block_comment, - ACTIONS(2585), 46, + ACTIONS(2337), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228455,7 +231949,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -228473,6 +231966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -228491,133 +231986,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43785] = 5, - ACTIONS(3), 1, + [43875] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2212), 2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + STATE(2252), 2, sym_line_comment, sym_block_comment, - ACTIONS(2191), 24, - anon_sym_LBRACE, + ACTIONS(2341), 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_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(2193), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, anon_sym_is, + anon_sym_BANGis, anon_sym_in, + anon_sym_BANGin, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [43848] = 5, - ACTIONS(3), 1, + anon_sym_AT_LBRACK, + [43938] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2213), 2, + ACTIONS(2773), 1, + anon_sym_LBRACK, + STATE(2253), 2, sym_line_comment, sym_block_comment, - ACTIONS(2195), 24, - anon_sym_LBRACE, + ACTIONS(2775), 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_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(2197), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, anon_sym_is, + anon_sym_BANGis, anon_sym_in, + anon_sym_BANGin, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [43911] = 5, + anon_sym_AT_LBRACK, + [44001] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2835), 1, + ACTIONS(3060), 1, anon_sym_LBRACK, - STATE(2214), 2, + STATE(2254), 2, sym_line_comment, sym_block_comment, - ACTIONS(2837), 47, + ACTIONS(3062), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228628,7 +232123,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -228647,6 +232141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -228665,17 +232160,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43974] = 5, + [44064] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2263), 1, + ACTIONS(2681), 1, anon_sym_LBRACK, - STATE(2215), 2, + STATE(2255), 2, sym_line_comment, sym_block_comment, - ACTIONS(2265), 47, + ACTIONS(2683), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228686,7 +232181,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -228705,6 +232199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -228723,75 +232218,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44037] = 5, - ACTIONS(3), 1, + [44127] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2216), 2, + ACTIONS(2093), 1, + anon_sym_LBRACK, + STATE(2256), 2, sym_line_comment, sym_block_comment, - ACTIONS(2169), 24, - anon_sym_LBRACE, + ACTIONS(2095), 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_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(2171), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, anon_sym_is, + anon_sym_BANGis, anon_sym_in, + anon_sym_BANGin, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [44100] = 5, + anon_sym_AT_LBRACK, + [44190] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2187), 1, + ACTIONS(2959), 1, anon_sym_LBRACK, - STATE(2217), 2, + STATE(2257), 2, sym_line_comment, sym_block_comment, - ACTIONS(2189), 47, + ACTIONS(2961), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228802,7 +232297,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -228821,6 +232315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -228839,29 +232334,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44163] = 6, + [44253] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2885), 1, + ACTIONS(2963), 1, anon_sym_LBRACK, - ACTIONS(3039), 1, - anon_sym_DOT, - STATE(2218), 2, + STATE(2258), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 46, + ACTIONS(2965), 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, @@ -228880,6 +232373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -228898,76 +232392,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44228] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4914), 1, - anon_sym_volatile, - STATE(2219), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4912), 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_SQUOTE, - anon_sym_DQUOTE, - anon_sym_c_SQUOTE, - anon_sym_c_DQUOTE, - anon_sym_r_SQUOTE, - anon_sym_r_DQUOTE, - anon_sym_map_LBRACK, - ACTIONS(4910), 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, - [44293] = 5, + [44316] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2145), 1, + ACTIONS(3001), 1, anon_sym_LBRACK, - STATE(2220), 2, + STATE(2259), 2, sym_line_comment, sym_block_comment, - ACTIONS(2147), 47, + ACTIONS(3003), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228978,7 +232413,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -228997,6 +232431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -229015,17 +232450,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44356] = 5, + [44379] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2031), 1, + ACTIONS(2997), 1, anon_sym_LBRACK, - STATE(2221), 2, + STATE(2260), 2, sym_line_comment, sym_block_comment, - ACTIONS(2029), 47, + ACTIONS(2999), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229036,7 +232471,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, + 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_PIPE, + anon_sym_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, + [44442] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2993), 1, + anon_sym_LBRACK, + STATE(2261), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2995), 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_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -229055,6 +232547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -229073,21 +232566,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44419] = 5, + [44505] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2222), 2, + STATE(2262), 2, sym_line_comment, sym_block_comment, - ACTIONS(4918), 23, + ACTIONS(2524), 23, anon_sym_LBRACE, - anon_sym_RBRACE, 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, @@ -229105,7 +232598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_r_SQUOTE, anon_sym_r_DQUOTE, anon_sym_map_LBRACK, - ACTIONS(4916), 25, + ACTIONS(4942), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -229131,17 +232624,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [44482] = 5, + [44568] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2113), 1, + ACTIONS(2939), 1, anon_sym_LBRACK, - STATE(2223), 2, + STATE(2263), 2, sym_line_comment, sym_block_comment, - ACTIONS(2115), 47, + ACTIONS(2941), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229152,7 +232645,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -229171,6 +232663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -229189,17 +232682,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44545] = 5, + [44631] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2243), 1, + ACTIONS(2927), 1, anon_sym_LBRACK, - STATE(2224), 2, + STATE(2264), 2, sym_line_comment, sym_block_comment, - ACTIONS(2245), 47, + ACTIONS(2929), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229210,7 +232703,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -229229,6 +232721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -229247,94 +232740,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44608] = 24, + [44694] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4836), 1, - anon_sym_LPAREN, - ACTIONS(4838), 1, + ACTIONS(2923), 1, anon_sym_LBRACK, - ACTIONS(4840), 1, - anon_sym_QMARK, - ACTIONS(4842), 1, - anon_sym_BANG, - ACTIONS(4864), 1, - anon_sym_as, - ACTIONS(4872), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4874), 1, - anon_sym_DASH_DASH, - ACTIONS(4878), 1, - anon_sym_AMP_AMP, - ACTIONS(4880), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4882), 1, - anon_sym_or, - STATE(2234), 1, - sym_or_block, - STATE(2236), 1, - sym_argument_list, - STATE(4213), 1, - sym_type_parameters, - ACTIONS(4834), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4844), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4884), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4886), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2225), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4866), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4870), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4868), 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(1779), 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, - [44709] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2469), 1, - anon_sym_LBRACK, - STATE(2226), 2, + STATE(2265), 2, sym_line_comment, sym_block_comment, - ACTIONS(2471), 47, + ACTIONS(2925), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229345,7 +232761,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -229364,6 +232779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -229382,17 +232798,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44772] = 5, + [44757] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2227), 1, + ACTIONS(2979), 1, anon_sym_LBRACK, - STATE(2227), 2, + STATE(2266), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 47, + ACTIONS(2981), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229403,7 +232819,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -229422,6 +232837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -229440,17 +232856,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44835] = 5, + [44820] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2223), 1, + ACTIONS(2729), 1, anon_sym_LBRACK, - STATE(2228), 2, + STATE(2267), 2, sym_line_comment, sym_block_comment, - ACTIONS(2225), 47, + ACTIONS(2731), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229461,7 +232877,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -229480,6 +232895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -229498,17 +232914,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44898] = 5, + [44883] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2219), 1, + ACTIONS(2725), 1, anon_sym_LBRACK, - STATE(2229), 2, + STATE(2268), 2, sym_line_comment, sym_block_comment, - ACTIONS(2221), 47, + ACTIONS(2727), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229519,7 +232935,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -229538,6 +232953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -229556,17 +232972,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44961] = 5, + [44946] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2215), 1, + ACTIONS(2713), 1, anon_sym_LBRACK, - STATE(2230), 2, + STATE(2269), 2, sym_line_comment, sym_block_comment, - ACTIONS(2217), 47, + ACTIONS(2715), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229577,7 +232993,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -229596,6 +233011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -229614,17 +233030,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45024] = 5, + [45009] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2211), 1, + ACTIONS(2707), 1, anon_sym_LBRACK, - STATE(2231), 2, + STATE(2270), 2, sym_line_comment, sym_block_comment, - ACTIONS(2213), 47, + ACTIONS(2709), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229635,7 +233051,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -229654,6 +233069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -229672,85 +233088,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45087] = 15, + [45072] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4836), 1, - anon_sym_LPAREN, - ACTIONS(4838), 1, + ACTIONS(2987), 1, anon_sym_LBRACK, - ACTIONS(4840), 1, - anon_sym_QMARK, - ACTIONS(4842), 1, - anon_sym_BANG, - STATE(2234), 1, - sym_or_block, - STATE(2236), 1, - sym_argument_list, - STATE(4213), 1, - sym_type_parameters, - ACTIONS(4834), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4844), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2232), 2, + STATE(2271), 2, sym_line_comment, sym_block_comment, - ACTIONS(4866), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4868), 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(1787), 25, + ACTIONS(2989), 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_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_PIPE, + anon_sym_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, - [45170] = 5, + [45135] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2207), 1, + ACTIONS(2699), 1, anon_sym_LBRACK, - STATE(2233), 2, + STATE(2272), 2, sym_line_comment, sym_block_comment, - ACTIONS(2209), 47, + ACTIONS(2701), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229761,7 +233167,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -229780,6 +233185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -229798,17 +233204,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45233] = 5, + [45198] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2545), 1, + ACTIONS(2497), 1, anon_sym_LBRACK, - STATE(2234), 2, + ACTIONS(4944), 1, + anon_sym_BANG, + STATE(2273), 2, sym_line_comment, sym_block_comment, - ACTIONS(2547), 47, + ACTIONS(2499), 46, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229819,7 +233227,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -229837,7 +233244,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_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -229856,17 +233263,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45296] = 5, + [45263] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2203), 1, + ACTIONS(3048), 1, anon_sym_LBRACK, - STATE(2235), 2, + STATE(2274), 2, sym_line_comment, sym_block_comment, - ACTIONS(2205), 47, + ACTIONS(3050), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229877,7 +233284,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -229896,6 +233302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -229914,75 +233321,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45359] = 5, - ACTIONS(497), 1, + [45326] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2429), 1, - anon_sym_LBRACK, - STATE(2236), 2, + STATE(2275), 2, sym_line_comment, sym_block_comment, - ACTIONS(2431), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + ACTIONS(2097), 24, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, + anon_sym_map_LBRACK, + ACTIONS(2099), 24, + anon_sym_DOT, + anon_sym_as, + 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_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_is, + anon_sym_in, sym_identifier, - anon_sym_AT_LBRACK, - [45422] = 5, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [45389] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2861), 1, + ACTIONS(2439), 1, anon_sym_LBRACK, - STATE(2237), 2, + STATE(2276), 2, sym_line_comment, sym_block_comment, - ACTIONS(2863), 47, + ACTIONS(2441), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229993,7 +233400,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -230012,6 +233418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -230030,17 +233437,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45485] = 5, + [45452] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2095), 1, + ACTIONS(3068), 1, anon_sym_LBRACK, - STATE(2238), 2, + STATE(2277), 2, sym_line_comment, sym_block_comment, - ACTIONS(2097), 47, + ACTIONS(3070), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230051,7 +233458,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -230070,6 +233476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -230088,17 +233495,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45548] = 5, + [45515] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2121), 1, + ACTIONS(3056), 1, anon_sym_LBRACK, - STATE(2239), 2, + STATE(2278), 2, sym_line_comment, sym_block_comment, - ACTIONS(2123), 47, + ACTIONS(3058), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230109,7 +233516,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -230128,6 +233534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -230146,17 +233553,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45611] = 5, + [45578] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2125), 1, + ACTIONS(3040), 1, anon_sym_LBRACK, - STATE(2240), 2, + STATE(2279), 2, sym_line_comment, sym_block_comment, - ACTIONS(2127), 47, + ACTIONS(3042), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230167,7 +233574,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -230186,6 +233592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -230204,17 +233611,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45674] = 5, + [45641] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2505), 1, + ACTIONS(3036), 1, anon_sym_LBRACK, - STATE(2241), 2, + STATE(2280), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 47, + ACTIONS(3038), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230225,7 +233632,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -230244,6 +233650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -230262,17 +233669,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45737] = 5, + [45704] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2199), 1, + ACTIONS(3028), 1, anon_sym_LBRACK, - STATE(2242), 2, + STATE(2281), 2, sym_line_comment, sym_block_comment, - ACTIONS(2201), 47, + ACTIONS(3030), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230283,7 +233690,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -230302,6 +233708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -230320,17 +233727,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45800] = 5, + [45767] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2103), 1, + ACTIONS(3024), 1, anon_sym_LBRACK, - STATE(2243), 2, + STATE(2282), 2, sym_line_comment, sym_block_comment, - ACTIONS(2105), 47, + ACTIONS(3026), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230341,7 +233748,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -230360,6 +233766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -230378,17 +233785,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45863] = 5, + [45830] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2173), 1, + ACTIONS(2365), 1, anon_sym_LBRACK, - STATE(2244), 2, + STATE(2283), 2, sym_line_comment, sym_block_comment, - ACTIONS(2175), 47, + ACTIONS(2367), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230399,7 +233806,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -230418,6 +233824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -230436,17 +233843,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45926] = 5, + [45893] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2153), 1, + ACTIONS(3008), 1, anon_sym_LBRACK, - STATE(2245), 2, + STATE(2284), 2, sym_line_comment, sym_block_comment, - ACTIONS(2155), 47, + ACTIONS(3010), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230457,7 +233864,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -230476,6 +233882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -230494,17 +233901,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45989] = 5, + [45956] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2285), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2703), 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(2705), 24, + anon_sym_DOT, + anon_sym_as, + 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_PIPE, + 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, + [46019] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2803), 1, + ACTIONS(2189), 1, anon_sym_LBRACK, - STATE(2246), 2, + STATE(2286), 2, sym_line_comment, sym_block_comment, - ACTIONS(2805), 47, + ACTIONS(2191), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230515,7 +233980,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -230534,6 +233998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -230552,17 +234017,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46052] = 5, + [46082] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2875), 1, + ACTIONS(1847), 1, anon_sym_LBRACK, - STATE(2247), 2, + STATE(2287), 2, sym_line_comment, sym_block_comment, - ACTIONS(2877), 47, + ACTIONS(1845), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230573,7 +234038,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -230592,6 +234056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -230610,34 +234075,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46115] = 6, + [46145] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2142), 1, + ACTIONS(2109), 1, anon_sym_LBRACK, - STATE(2248), 2, + STATE(2288), 2, sym_line_comment, sym_block_comment, - ACTIONS(2137), 12, + ACTIONS(2111), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - anon_sym_AT_LBRACK, - ACTIONS(2139), 35, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym___global, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -230649,10 +234107,14 @@ 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_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -230669,17 +234131,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [46180] = 5, + sym_identifier, + anon_sym_AT_LBRACK, + [46208] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2091), 1, + ACTIONS(2325), 1, anon_sym_LBRACK, - STATE(2249), 2, + STATE(2289), 2, sym_line_comment, sym_block_comment, - ACTIONS(2093), 47, + ACTIONS(2327), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230690,7 +234154,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -230709,6 +234172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -230727,17 +234191,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46243] = 5, + [46271] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2849), 1, + ACTIONS(2743), 1, anon_sym_LBRACK, - STATE(2250), 2, + STATE(2290), 2, sym_line_comment, sym_block_comment, - ACTIONS(2851), 47, + ACTIONS(2745), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230748,7 +234212,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -230767,6 +234230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -230785,17 +234249,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46306] = 5, + [46334] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2769), 1, + ACTIONS(2381), 1, anon_sym_LBRACK, - STATE(2251), 2, + STATE(2291), 2, sym_line_comment, sym_block_comment, - ACTIONS(2771), 47, + ACTIONS(2383), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230806,7 +234270,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -230825,6 +234288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -230843,17 +234307,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46369] = 5, + [46397] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2765), 1, + ACTIONS(2385), 1, anon_sym_LBRACK, - STATE(2252), 2, + STATE(2292), 2, sym_line_comment, sym_block_comment, - ACTIONS(2767), 47, + ACTIONS(2387), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230864,7 +234328,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -230883,6 +234346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -230901,29 +234365,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46432] = 6, + [46460] = 29, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2057), 1, + ACTIONS(1887), 1, anon_sym_DOT, - ACTIONS(2157), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - STATE(2253), 2, + ACTIONS(3434), 1, + sym_identifier, + ACTIONS(3438), 1, + anon_sym_fn, + ACTIONS(3440), 1, + anon_sym_STAR, + ACTIONS(3442), 1, + anon_sym_struct, + ACTIONS(3444), 1, + anon_sym_QMARK, + ACTIONS(3446), 1, + anon_sym_BANG, + ACTIONS(3448), 1, + anon_sym_LBRACK2, + ACTIONS(3450), 1, + anon_sym_AMP, + ACTIONS(3452), 1, + anon_sym_shared, + ACTIONS(3454), 1, + anon_sym_map_LBRACK, + ACTIONS(3456), 1, + anon_sym_chan, + ACTIONS(3458), 1, + anon_sym_thread, + ACTIONS(3460), 1, + anon_sym_atomic, + ACTIONS(4946), 1, + anon_sym_LPAREN, + ACTIONS(4948), 1, + anon_sym_LT2, + STATE(3398), 1, + sym_plain_type, + STATE(3411), 1, + sym_signature, + STATE(3786), 1, + sym_generic_parameters, + STATE(4406), 1, + sym_reference_expression, + STATE(2293), 2, + sym_line_comment, + sym_block_comment, + STATE(2474), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3360), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3404), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(2095), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + STATE(3401), 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, + [46571] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2419), 1, + anon_sym_LBRACK, + STATE(2294), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 46, + ACTIONS(2421), 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, @@ -230942,6 +234486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -230960,17 +234505,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46497] = 5, + [46634] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2099), 1, + ACTIONS(2431), 1, anon_sym_LBRACK, - STATE(2254), 2, + STATE(2295), 2, sym_line_comment, sym_block_comment, - ACTIONS(2101), 47, + ACTIONS(2433), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230981,7 +234526,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -231000,6 +234544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -231018,17 +234563,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46560] = 5, + [46697] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2296), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3020), 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(3022), 24, + anon_sym_DOT, + anon_sym_as, + 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_PIPE, + 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, + [46760] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2157), 1, + ACTIONS(2423), 1, anon_sym_LBRACK, - STATE(2255), 2, + STATE(2297), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 47, + ACTIONS(2425), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231039,7 +234642,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -231058,6 +234660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -231076,52 +234679,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46623] = 18, + [46823] = 15, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4836), 1, + ACTIONS(4858), 1, anon_sym_LPAREN, - ACTIONS(4838), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4840), 1, + ACTIONS(4862), 1, anon_sym_QMARK, - ACTIONS(4842), 1, + ACTIONS(4864), 1, anon_sym_BANG, - ACTIONS(4878), 1, - anon_sym_AMP_AMP, - STATE(2234), 1, + STATE(2291), 1, sym_or_block, - STATE(2236), 1, + STATE(2292), 1, sym_argument_list, - STATE(4213), 1, + STATE(4319), 1, sym_type_parameters, - ACTIONS(4834), 2, + ACTIONS(4856), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4844), 2, + ACTIONS(4866), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4886), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2256), 2, + STATE(2298), 2, sym_line_comment, sym_block_comment, - ACTIONS(4866), 4, - anon_sym_PIPE, + ACTIONS(4950), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4870), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4868), 8, + ACTIONS(4952), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -231130,279 +234721,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1791), 16, + ACTIONS(1793), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, 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, - [46712] = 29, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(3430), 1, - sym_identifier, - ACTIONS(3434), 1, - anon_sym_fn, - ACTIONS(3436), 1, - anon_sym_STAR, - ACTIONS(3438), 1, - anon_sym_struct, - ACTIONS(3440), 1, - anon_sym_QMARK, - ACTIONS(3442), 1, - anon_sym_BANG, - ACTIONS(3444), 1, - anon_sym_LBRACK2, - ACTIONS(3446), 1, - anon_sym_AMP, - ACTIONS(3448), 1, - anon_sym_shared, - ACTIONS(3450), 1, - anon_sym_map_LBRACK, - ACTIONS(3452), 1, - anon_sym_chan, - ACTIONS(3454), 1, - anon_sym_thread, - ACTIONS(3456), 1, - anon_sym_atomic, - ACTIONS(4920), 1, - anon_sym_LPAREN, - ACTIONS(4922), 1, - anon_sym_LT2, - STATE(3337), 1, - sym_plain_type, - STATE(3349), 1, - sym_signature, - STATE(3713), 1, - sym_generic_parameters, - STATE(4356), 1, - sym_reference_expression, - STATE(2257), 2, - sym_line_comment, - sym_block_comment, - STATE(2422), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3302), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3360), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(2159), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - STATE(3354), 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, - [46823] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2258), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4912), 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_SQUOTE, - anon_sym_DQUOTE, - anon_sym_c_SQUOTE, - anon_sym_c_DQUOTE, - anon_sym_r_SQUOTE, - anon_sym_r_DQUOTE, - anon_sym_map_LBRACK, - ACTIONS(4910), 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, - [46885] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1807), 1, - anon_sym_LBRACK, - ACTIONS(2029), 2, - anon_sym_LBRACE, anon_sym_COMMA, - STATE(2259), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1809), 44, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_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_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, - [46949] = 24, + [46905] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4836), 1, + ACTIONS(4858), 1, anon_sym_LPAREN, - ACTIONS(4838), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4840), 1, + ACTIONS(4862), 1, anon_sym_QMARK, - ACTIONS(4842), 1, - anon_sym_BANG, ACTIONS(4864), 1, + anon_sym_BANG, + ACTIONS(4902), 1, anon_sym_as, - ACTIONS(4872), 1, + ACTIONS(4910), 1, anon_sym_PLUS_PLUS, - ACTIONS(4874), 1, + ACTIONS(4912), 1, anon_sym_DASH_DASH, - ACTIONS(4882), 1, + ACTIONS(4920), 1, anon_sym_or, - ACTIONS(4930), 1, + ACTIONS(4956), 1, anon_sym_AMP_AMP, - ACTIONS(4932), 1, + ACTIONS(4958), 1, anon_sym_PIPE_PIPE, - STATE(2234), 1, + STATE(2291), 1, sym_or_block, - STATE(2236), 1, + STATE(2292), 1, sym_argument_list, - STATE(4213), 1, + STATE(4319), 1, sym_type_parameters, - ACTIONS(4834), 2, + ACTIONS(4856), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4844), 2, + ACTIONS(4866), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4884), 2, + ACTIONS(4922), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4934), 2, + ACTIONS(4960), 2, anon_sym_in, anon_sym_BANGin, - STATE(2260), 2, + STATE(2299), 2, sym_line_comment, sym_block_comment, - ACTIONS(4924), 4, - anon_sym_PIPE, + ACTIONS(4950), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4928), 6, + ACTIONS(4954), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1765), 8, + ACTIONS(3766), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231411,7 +234813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, sym_identifier, - ACTIONS(4926), 8, + ACTIONS(4952), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -231420,65 +234822,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [47049] = 24, + [47005] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4836), 1, + ACTIONS(4858), 1, anon_sym_LPAREN, - ACTIONS(4838), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4840), 1, + ACTIONS(4862), 1, anon_sym_QMARK, - ACTIONS(4842), 1, - anon_sym_BANG, ACTIONS(4864), 1, + anon_sym_BANG, + ACTIONS(4902), 1, anon_sym_as, - ACTIONS(4872), 1, + ACTIONS(4910), 1, anon_sym_PLUS_PLUS, - ACTIONS(4874), 1, + ACTIONS(4912), 1, anon_sym_DASH_DASH, - ACTIONS(4882), 1, + ACTIONS(4920), 1, anon_sym_or, - ACTIONS(4930), 1, + ACTIONS(4956), 1, anon_sym_AMP_AMP, - ACTIONS(4932), 1, + ACTIONS(4958), 1, anon_sym_PIPE_PIPE, - STATE(2234), 1, + STATE(2291), 1, sym_or_block, - STATE(2236), 1, + STATE(2292), 1, sym_argument_list, - STATE(4213), 1, + STATE(4319), 1, sym_type_parameters, - ACTIONS(4834), 2, + ACTIONS(4856), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4844), 2, + ACTIONS(4866), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4884), 2, + ACTIONS(4922), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4934), 2, + ACTIONS(4960), 2, anon_sym_in, anon_sym_BANGin, - STATE(2261), 2, + STATE(2300), 2, sym_line_comment, sym_block_comment, - ACTIONS(4924), 4, - anon_sym_PIPE, + ACTIONS(4950), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4928), 6, + ACTIONS(4954), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1779), 8, + ACTIONS(1775), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231487,7 +234889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, sym_identifier, - ACTIONS(4926), 8, + ACTIONS(4952), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -231496,35 +234898,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [47149] = 5, + [47105] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2262), 2, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4974), 1, + anon_sym_QMARK_DOT, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + STATE(2301), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 13, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(1767), 9, 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_PIPE, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1807), 34, + ACTIONS(1795), 27, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -231532,7 +234950,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -231543,57 +234960,129 @@ 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_COLON_EQ, anon_sym_DOT_DOT, - [47211] = 16, + [47189] = 24, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4858), 1, + anon_sym_LPAREN, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4862), 1, + anon_sym_QMARK, + ACTIONS(4864), 1, + anon_sym_BANG, + ACTIONS(4902), 1, + anon_sym_as, + ACTIONS(4910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4912), 1, + anon_sym_DASH_DASH, + ACTIONS(4920), 1, + anon_sym_or, + ACTIONS(4956), 1, + anon_sym_AMP_AMP, + ACTIONS(4958), 1, + anon_sym_PIPE_PIPE, + STATE(2291), 1, + sym_or_block, + STATE(2292), 1, + sym_argument_list, + STATE(4319), 1, + sym_type_parameters, + ACTIONS(4856), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4866), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4922), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4960), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2302), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4950), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4954), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1779), 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(4952), 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, + [47289] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4962), 1, anon_sym_DOT, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4948), 1, + ACTIONS(4974), 1, anon_sym_QMARK_DOT, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - STATE(2263), 2, + STATE(2303), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 9, - anon_sym_PIPE, + ACTIONS(1789), 9, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, + anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1767), 27, + ACTIONS(1787), 27, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -231621,152 +235110,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47295] = 18, - ACTIONS(497), 1, + [47373] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4836), 1, - anon_sym_LPAREN, - ACTIONS(4838), 1, - anon_sym_LBRACK, - ACTIONS(4840), 1, - anon_sym_QMARK, - ACTIONS(4842), 1, - anon_sym_BANG, - ACTIONS(4930), 1, - anon_sym_AMP_AMP, - STATE(2234), 1, - sym_or_block, - STATE(2236), 1, - sym_argument_list, - STATE(4213), 1, - sym_type_parameters, - ACTIONS(4834), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4844), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4934), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2264), 2, + STATE(2304), 2, sym_line_comment, sym_block_comment, - ACTIONS(4924), 4, - anon_sym_PIPE, + ACTIONS(1837), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4928), 6, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4926), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1791), 15, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(1835), 34, anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, - sym_identifier, - [47383] = 15, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [47435] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4836), 1, - anon_sym_LPAREN, - ACTIONS(4838), 1, + ACTIONS(2641), 1, anon_sym_LBRACK, - ACTIONS(4840), 1, - anon_sym_QMARK, - ACTIONS(4842), 1, - anon_sym_BANG, - STATE(2234), 1, - sym_or_block, - STATE(2236), 1, - sym_argument_list, - STATE(4213), 1, - sym_type_parameters, - ACTIONS(4834), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4844), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2265), 2, + ACTIONS(1845), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2305), 2, sym_line_comment, sym_block_comment, - 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(1787), 24, + ACTIONS(2643), 44, 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_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_PIPE, + anon_sym_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, - [47465] = 5, + anon_sym_AT_LBRACK, + [47499] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2266), 2, + STATE(2306), 2, sym_line_comment, sym_block_comment, - ACTIONS(4954), 22, + ACTIONS(4980), 22, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_PLUS, @@ -231789,7 +235256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_r_SQUOTE, anon_sym_r_DQUOTE, anon_sym_map_LBRACK, - ACTIONS(4952), 25, + ACTIONS(4978), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -231815,123 +235282,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [47527] = 24, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4836), 1, - anon_sym_LPAREN, - ACTIONS(4838), 1, - anon_sym_LBRACK, - ACTIONS(4840), 1, - anon_sym_QMARK, - ACTIONS(4842), 1, - anon_sym_BANG, - ACTIONS(4864), 1, - anon_sym_as, - ACTIONS(4872), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4874), 1, - anon_sym_DASH_DASH, - ACTIONS(4882), 1, - anon_sym_or, - ACTIONS(4930), 1, - anon_sym_AMP_AMP, - ACTIONS(4932), 1, - anon_sym_PIPE_PIPE, - STATE(2234), 1, - sym_or_block, - STATE(2236), 1, - sym_argument_list, - STATE(4213), 1, - sym_type_parameters, - ACTIONS(4834), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4844), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4884), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4934), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2267), 2, - sym_line_comment, - sym_block_comment, - 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(3730), 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(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, - [47627] = 16, + [47561] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4962), 1, anon_sym_DOT, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4948), 1, + ACTIONS(4974), 1, anon_sym_QMARK_DOT, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - STATE(2268), 2, + STATE(2307), 2, sym_line_comment, sym_block_comment, - ACTIONS(1791), 9, - anon_sym_PIPE, + ACTIONS(1771), 9, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_COLON, + anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1789), 27, + ACTIONS(1769), 27, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -231959,209 +235350,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47711] = 15, - ACTIONS(497), 1, + [47645] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4836), 1, - anon_sym_LPAREN, - ACTIONS(4838), 1, - anon_sym_LBRACK, - ACTIONS(4840), 1, - anon_sym_QMARK, - ACTIONS(4842), 1, - anon_sym_BANG, - STATE(2234), 1, - sym_or_block, - STATE(2236), 1, - sym_argument_list, - STATE(4213), 1, - sym_type_parameters, - ACTIONS(4834), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4844), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2269), 2, + STATE(2308), 2, sym_line_comment, sym_block_comment, - ACTIONS(4924), 4, - anon_sym_PIPE, + ACTIONS(1877), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4926), 8, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1791), 24, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(1875), 34, anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, + 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, + 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, - sym_identifier, - [47793] = 16, - ACTIONS(3), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [47707] = 24, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_DOT, - ACTIONS(4938), 1, + ACTIONS(4858), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4862), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4864), 1, anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4948), 1, - anon_sym_QMARK_DOT, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(4902), 1, + anon_sym_as, + ACTIONS(4910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4912), 1, + anon_sym_DASH_DASH, + ACTIONS(4920), 1, + anon_sym_or, + ACTIONS(4956), 1, + anon_sym_AMP_AMP, + ACTIONS(4958), 1, + anon_sym_PIPE_PIPE, + STATE(2291), 1, sym_or_block, - STATE(4149), 1, + STATE(2292), 1, + sym_argument_list, + STATE(4319), 1, sym_type_parameters, - STATE(2270), 2, + ACTIONS(4856), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4866), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4922), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4960), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2309), 2, sym_line_comment, sym_block_comment, - ACTIONS(1783), 9, - anon_sym_PIPE, + ACTIONS(4950), 4, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4954), 6, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1781), 27, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(3734), 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(4952), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [47877] = 24, + [47807] = 18, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4836), 1, + ACTIONS(4858), 1, anon_sym_LPAREN, - ACTIONS(4838), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4840), 1, + ACTIONS(4862), 1, anon_sym_QMARK, - ACTIONS(4842), 1, - anon_sym_BANG, ACTIONS(4864), 1, - anon_sym_as, - ACTIONS(4872), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4874), 1, - anon_sym_DASH_DASH, - ACTIONS(4882), 1, - anon_sym_or, - ACTIONS(4930), 1, + anon_sym_BANG, + ACTIONS(4956), 1, anon_sym_AMP_AMP, - ACTIONS(4932), 1, - anon_sym_PIPE_PIPE, - STATE(2234), 1, + STATE(2291), 1, sym_or_block, - STATE(2236), 1, + STATE(2292), 1, sym_argument_list, - STATE(4213), 1, + STATE(4319), 1, sym_type_parameters, - ACTIONS(4834), 2, + ACTIONS(4856), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4844), 2, + ACTIONS(4866), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4884), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4934), 2, + ACTIONS(4960), 2, anon_sym_in, anon_sym_BANGin, - STATE(2271), 2, + STATE(2310), 2, sym_line_comment, sym_block_comment, - ACTIONS(4924), 4, - anon_sym_PIPE, + ACTIONS(4950), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4928), 6, + ACTIONS(4954), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3732), 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(4926), 8, + ACTIONS(4952), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -232170,92 +235537,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [47977] = 5, + ACTIONS(1767), 15, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + sym_identifier, + [47895] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2272), 2, + STATE(2311), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 13, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(4932), 22, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + 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_SQUOTE, + anon_sym_DQUOTE, + anon_sym_c_SQUOTE, + anon_sym_c_DQUOTE, + anon_sym_r_SQUOTE, + anon_sym_r_DQUOTE, + anon_sym_map_LBRACK, + ACTIONS(4930), 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, + [47957] = 14, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4858), 1, + anon_sym_LPAREN, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4862), 1, anon_sym_QMARK, + ACTIONS(4864), 1, anon_sym_BANG, + STATE(2291), 1, + sym_or_block, + STATE(2292), 1, + sym_argument_list, + STATE(4319), 1, + sym_type_parameters, + ACTIONS(4856), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4866), 2, anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2312), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4952), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1887), 34, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1767), 28, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48039] = 14, + sym_identifier, + [48037] = 15, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4836), 1, + ACTIONS(4858), 1, anon_sym_LPAREN, - ACTIONS(4838), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4840), 1, + ACTIONS(4862), 1, anon_sym_QMARK, - ACTIONS(4842), 1, + ACTIONS(4864), 1, anon_sym_BANG, - STATE(2234), 1, + STATE(2291), 1, sym_or_block, - STATE(2236), 1, + STATE(2292), 1, sym_argument_list, - STATE(4213), 1, + STATE(4319), 1, sym_type_parameters, - ACTIONS(4834), 2, + ACTIONS(4856), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4844), 2, + ACTIONS(4866), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2273), 2, + STATE(2313), 2, sym_line_comment, sym_block_comment, - ACTIONS(4926), 8, + ACTIONS(4950), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4952), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -232264,7 +235718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1791), 28, + ACTIONS(1767), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -232272,9 +235726,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -232284,7 +235735,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -232298,45 +235748,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4836), 1, + ACTIONS(4858), 1, anon_sym_LPAREN, - ACTIONS(4838), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4840), 1, + ACTIONS(4862), 1, anon_sym_QMARK, - ACTIONS(4842), 1, + ACTIONS(4864), 1, anon_sym_BANG, - STATE(2234), 1, + STATE(2291), 1, sym_or_block, - STATE(2236), 1, + STATE(2292), 1, sym_argument_list, - STATE(4213), 1, + STATE(4319), 1, sym_type_parameters, - ACTIONS(4834), 2, + ACTIONS(4856), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4844), 2, + ACTIONS(4866), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4934), 2, + ACTIONS(4960), 2, anon_sym_in, anon_sym_BANGin, - STATE(2274), 2, + STATE(2314), 2, sym_line_comment, sym_block_comment, - ACTIONS(4924), 4, - anon_sym_PIPE, + ACTIONS(4950), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4928), 6, + ACTIONS(4954), 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, + ACTIONS(4952), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -232345,7 +235795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1791), 16, + ACTIONS(1767), 16, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -232367,15 +235817,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2713), 1, + ACTIONS(1835), 1, anon_sym_LBRACK, - ACTIONS(2029), 2, + ACTIONS(1845), 2, anon_sym_LBRACE, anon_sym_COMMA, - STATE(2275), 2, + STATE(2315), 2, sym_line_comment, sym_block_comment, - ACTIONS(2715), 44, + ACTIONS(1837), 44, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -232384,7 +235834,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -232402,6 +235851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -232420,21 +235870,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [48269] = 7, + [48269] = 27, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4858), 1, + anon_sym_LPAREN, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4862), 1, + anon_sym_QMARK, + ACTIONS(4864), 1, + anon_sym_BANG, + ACTIONS(4866), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4902), 1, + anon_sym_as, + ACTIONS(4910), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4912), 1, + anon_sym_DASH_DASH, + ACTIONS(4914), 1, + anon_sym_LBRACK2, + ACTIONS(4916), 1, + anon_sym_AMP_AMP, + ACTIONS(4918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4920), 1, + anon_sym_or, + ACTIONS(4926), 1, + anon_sym_AT_LBRACK, + STATE(2291), 1, + sym_or_block, + STATE(2292), 1, + sym_argument_list, + STATE(3611), 1, + sym_attribute, + STATE(4319), 1, + sym_type_parameters, + ACTIONS(4856), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4922), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4924), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2316), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4904), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(4982), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(4908), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4906), 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, + [48374] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, + ACTIONS(4984), 1, anon_sym_else, - STATE(2365), 1, + STATE(2441), 1, sym_else_branch, - STATE(2276), 2, + STATE(2317), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 13, + ACTIONS(1799), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -232443,10 +235970,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1803), 31, + ACTIONS(1797), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -232478,21 +236006,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48334] = 7, + [48439] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, + ACTIONS(4984), 1, anon_sym_else, - STATE(2296), 1, + STATE(2442), 1, sym_else_branch, - STATE(2277), 2, + STATE(2318), 2, sym_line_comment, sym_block_comment, - ACTIONS(1799), 13, + ACTIONS(1805), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -232501,10 +236028,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1797), 31, + ACTIONS(1803), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -232536,97 +236064,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48399] = 27, - ACTIONS(497), 1, + [48504] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4836), 1, - anon_sym_LPAREN, - ACTIONS(4838), 1, - anon_sym_LBRACK, - ACTIONS(4840), 1, - anon_sym_QMARK, - ACTIONS(4842), 1, - anon_sym_BANG, - ACTIONS(4844), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4864), 1, - anon_sym_as, - ACTIONS(4872), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4874), 1, - anon_sym_DASH_DASH, - ACTIONS(4876), 1, - anon_sym_LBRACK2, - ACTIONS(4878), 1, - anon_sym_AMP_AMP, - ACTIONS(4880), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4882), 1, - anon_sym_or, - ACTIONS(4888), 1, - anon_sym_AT_LBRACK, - STATE(2234), 1, - sym_or_block, - STATE(2236), 1, - sym_argument_list, - STATE(3566), 1, - sym_attribute, - STATE(4213), 1, - sym_type_parameters, - ACTIONS(4834), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4884), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4886), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2278), 2, + ACTIONS(4986), 1, + anon_sym_DOLLARelse, + STATE(2319), 2, sym_line_comment, sym_block_comment, - ACTIONS(4866), 4, - anon_sym_PIPE, + ACTIONS(2079), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4958), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4870), 6, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2077), 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(4868), 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, - [48504] = 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_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, + [48566] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, - anon_sym_DOLLARelse, - STATE(2279), 2, + STATE(2416), 1, + sym_type_parameters, + STATE(2320), 2, sym_line_comment, sym_block_comment, - ACTIONS(2079), 13, + ACTIONS(1945), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -232635,10 +236140,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2077), 31, + ACTIONS(1943), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -232670,43 +236176,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48566] = 13, + [48628] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4964), 1, - anon_sym_LPAREN, - ACTIONS(4966), 1, + ACTIONS(1845), 1, + anon_sym_LBRACE, + ACTIONS(2641), 1, anon_sym_LBRACK, - ACTIONS(4968), 1, - anon_sym_QMARK, - ACTIONS(4970), 1, - anon_sym_BANG, - STATE(2553), 1, - sym_or_block, - STATE(2554), 1, - sym_argument_list, - STATE(4167), 1, - sym_type_parameters, - ACTIONS(4962), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4972), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2280), 2, + STATE(2321), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 34, + ACTIONS(2643), 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_PIPE, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -232718,8 +236209,13 @@ 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_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, @@ -232729,23 +236225,26 @@ 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, - [48642] = 6, + sym_identifier, + [48690] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2029), 1, - anon_sym_LBRACE, - ACTIONS(2713), 1, + ACTIONS(1835), 1, anon_sym_LBRACK, - STATE(2281), 2, + ACTIONS(1845), 1, + anon_sym_LBRACE, + STATE(2322), 2, sym_line_comment, sym_block_comment, - ACTIONS(2715), 43, + ACTIONS(1837), 43, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -232755,7 +236254,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -232772,6 +236270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -232789,35 +236288,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, sym_identifier, - [48704] = 13, + [48752] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4964), 1, + ACTIONS(4990), 1, anon_sym_LPAREN, - ACTIONS(4966), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(4968), 1, + ACTIONS(4994), 1, anon_sym_QMARK, - ACTIONS(4970), 1, + ACTIONS(4996), 1, anon_sym_BANG, - STATE(2553), 1, - sym_or_block, - STATE(2554), 1, + STATE(2518), 1, sym_argument_list, - STATE(4167), 1, + STATE(2521), 1, + sym_or_block, + STATE(4106), 1, sym_type_parameters, - ACTIONS(4962), 2, + ACTIONS(4988), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4972), 2, + ACTIONS(4998), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2282), 2, + STATE(2323), 2, sym_line_comment, sym_block_comment, - ACTIONS(1791), 34, + ACTIONS(1767), 34, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -232825,7 +236324,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -232839,6 +236337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, @@ -232852,75 +236351,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [48780] = 6, - ACTIONS(3), 1, + [48828] = 13, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4974), 1, - anon_sym_DOLLARelse, - STATE(2283), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2041), 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, + ACTIONS(4990), 1, + anon_sym_LPAREN, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(4994), 1, anon_sym_QMARK, + ACTIONS(4996), 1, anon_sym_BANG, + STATE(2518), 1, + sym_argument_list, + STATE(2521), 1, + sym_or_block, + STATE(4106), 1, + sym_type_parameters, + ACTIONS(4988), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4998), 2, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2039), 31, + anon_sym_POUND_LBRACK, + STATE(2324), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1771), 34, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48842] = 6, + [48904] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2409), 1, - sym_type_parameters, - STATE(2284), 2, + ACTIONS(5000), 1, + anon_sym_DOLLARelse, + STATE(2325), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 13, + ACTIONS(1853), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -232929,10 +236434,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1897), 31, + ACTIONS(1851), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -232964,92 +236470,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48904] = 13, + [48966] = 26, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4964), 1, + ACTIONS(4990), 1, anon_sym_LPAREN, - ACTIONS(4966), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(4968), 1, + ACTIONS(4994), 1, anon_sym_QMARK, - ACTIONS(4970), 1, + ACTIONS(4996), 1, anon_sym_BANG, - STATE(2553), 1, - sym_or_block, - STATE(2554), 1, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5004), 1, + anon_sym_COMMA, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5016), 1, + anon_sym_AMP_AMP, + ACTIONS(5018), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5020), 1, + anon_sym_or, + STATE(2518), 1, sym_argument_list, - STATE(4167), 1, + STATE(2521), 1, + sym_or_block, + STATE(3601), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4106), 1, sym_type_parameters, - ACTIONS(4962), 2, + ACTIONS(4988), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4972), 2, + ACTIONS(4998), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2285), 2, + ACTIONS(5022), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5024), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2326), 2, sym_line_comment, sym_block_comment, - ACTIONS(1783), 34, + ACTIONS(1695), 4, 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, + ACTIONS(5006), 4, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5010), 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(5008), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [48980] = 6, + [49068] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1807), 1, + ACTIONS(4990), 1, + anon_sym_LPAREN, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(2029), 1, - anon_sym_LBRACE, - STATE(2286), 2, + ACTIONS(4994), 1, + anon_sym_QMARK, + ACTIONS(4996), 1, + anon_sym_BANG, + STATE(2518), 1, + sym_argument_list, + STATE(2521), 1, + sym_or_block, + STATE(4106), 1, + sym_type_parameters, + ACTIONS(4988), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4998), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2327), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 43, + ACTIONS(1789), 34, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -233061,12 +236593,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, @@ -233076,18 +236605,17 @@ 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, - [49042] = 26, - ACTIONS(497), 1, + [49144] = 32, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(3492), 1, + anon_sym_COLON_EQ, ACTIONS(4964), 1, anon_sym_LPAREN, ACTIONS(4966), 1, @@ -233096,143 +236624,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, ACTIONS(4970), 1, anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(4978), 1, + ACTIONS(5028), 1, + anon_sym_LBRACE, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(4986), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(4988), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(4990), 1, + ACTIONS(5046), 1, + anon_sym_CARET, + ACTIONS(5048), 1, anon_sym_AMP_AMP, - ACTIONS(4992), 1, + ACTIONS(5050), 1, anon_sym_PIPE_PIPE, - ACTIONS(4994), 1, + ACTIONS(5052), 1, anon_sym_or, - STATE(2553), 1, + STATE(2165), 1, + sym_block, + STATE(2408), 1, sym_or_block, - STATE(2554), 1, + STATE(2439), 1, sym_argument_list, - STATE(3532), 1, + STATE(3984), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4167), 1, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4962), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4972), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 2, + ACTIONS(5038), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4998), 2, + ACTIONS(5056), 2, anon_sym_in, anon_sym_BANGin, - STATE(2287), 2, + STATE(2328), 2, sym_line_comment, sym_block_comment, - ACTIONS(1721), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(4980), 4, - anon_sym_PIPE, + ACTIONS(5032), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4984), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PIPE, + ACTIONS(5036), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5040), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4982), 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, - [49144] = 14, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4964), 1, - anon_sym_LPAREN, - ACTIONS(4966), 1, - anon_sym_LBRACK, - ACTIONS(4968), 1, - anon_sym_QMARK, - ACTIONS(4970), 1, - anon_sym_BANG, - STATE(2553), 1, - sym_or_block, - STATE(2554), 1, - sym_argument_list, - STATE(4167), 1, - sym_type_parameters, - ACTIONS(4962), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4972), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2288), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5000), 8, + ACTIONS(5034), 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(1791), 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, - [49221] = 5, + [49257] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2289), 2, + STATE(2329), 2, sym_line_comment, sym_block_comment, - ACTIONS(2257), 13, + ACTIONS(2315), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -233241,10 +236708,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2255), 31, + ACTIONS(2313), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233276,17 +236744,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49280] = 5, + [49316] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2290), 2, + STATE(2330), 2, sym_line_comment, sym_block_comment, - ACTIONS(2427), 13, + ACTIONS(2933), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -233295,10 +236762,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2425), 31, + ACTIONS(2931), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233330,71 +236798,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49339] = 5, + [49375] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2291), 2, + ACTIONS(3492), 1, + anon_sym_COLON_EQ, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(5042), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, + anon_sym_DASH_DASH, + ACTIONS(5046), 1, + anon_sym_CARET, + ACTIONS(5048), 1, + anon_sym_AMP_AMP, + ACTIONS(5050), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5058), 1, + anon_sym_LBRACE, + STATE(1824), 1, + sym_block, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(3984), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5038), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5056), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2331), 2, sym_line_comment, sym_block_comment, - ACTIONS(2189), 13, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(5032), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5036), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2187), 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(5040), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(5034), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [49488] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3492), 1, + anon_sym_COLON_EQ, + ACTIONS(4737), 1, + anon_sym_LBRACE, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, anon_sym_DASH_DASH, + ACTIONS(5046), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5048), 1, anon_sym_AMP_AMP, + ACTIONS(5050), 1, anon_sym_PIPE_PIPE, + ACTIONS(5052), 1, anon_sym_or, + STATE(1665), 1, + sym_block, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(3984), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5038), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5056), 2, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49398] = 5, + STATE(2332), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5032), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5036), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5040), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5034), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [49601] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2292), 2, + STATE(2333), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 13, + ACTIONS(2639), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -233403,10 +236978,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1897), 31, + ACTIONS(2637), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233438,17 +237014,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49457] = 5, + [49660] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2293), 2, + STATE(2334), 2, sym_line_comment, sym_block_comment, - ACTIONS(2249), 13, + ACTIONS(2949), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -233457,10 +237032,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2247), 31, + ACTIONS(2947), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233492,17 +237068,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49516] = 5, + [49719] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2294), 2, + ACTIONS(5060), 1, + anon_sym_BANG, + STATE(2335), 2, sym_line_comment, sym_block_comment, - ACTIONS(2253), 13, + ACTIONS(2499), 12, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -233510,11 +237087,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2251), 31, + ACTIONS(2497), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233546,98 +237123,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49575] = 32, - ACTIONS(3), 1, + [49780] = 24, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3488), 1, - anon_sym_COLON_EQ, - ACTIONS(4938), 1, + ACTIONS(4990), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4994), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4996), 1, anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5004), 1, - anon_sym_LBRACE, - ACTIONS(5006), 1, - anon_sym_COMMA, - ACTIONS(5018), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_CARET, - ACTIONS(5024), 1, + ACTIONS(5020), 1, + anon_sym_or, + ACTIONS(5068), 1, anon_sym_AMP_AMP, - ACTIONS(5026), 1, + ACTIONS(5070), 1, anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, - anon_sym_or, - STATE(1127), 1, - sym_block, - STATE(2351), 1, + STATE(2518), 1, sym_argument_list, - STATE(2359), 1, + STATE(2521), 1, sym_or_block, - STATE(3880), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4149), 1, + STATE(4106), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4988), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5014), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5030), 2, + ACTIONS(4998), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(5022), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5032), 2, + ACTIONS(5072), 2, anon_sym_in, anon_sym_BANGin, - STATE(2295), 2, + STATE(2336), 2, sym_line_comment, sym_block_comment, - ACTIONS(5008), 3, - anon_sym_PIPE, + ACTIONS(5062), 4, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5012), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5016), 4, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(1779), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_RBRACE, + ACTIONS(5066), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5010), 5, + ACTIONS(5064), 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, - [49688] = 5, + [49877] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2296), 2, + STATE(2337), 2, sym_line_comment, sym_block_comment, - ACTIONS(2457), 13, + ACTIONS(2367), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -233646,10 +237214,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2455), 31, + ACTIONS(2365), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233681,17 +237250,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49747] = 5, + [49936] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2297), 2, + STATE(2338), 2, sym_line_comment, sym_block_comment, - ACTIONS(2261), 13, + ACTIONS(2701), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -233700,10 +237268,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2259), 31, + ACTIONS(2699), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233735,17 +237304,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49806] = 5, + [49995] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2298), 2, + STATE(2339), 2, sym_line_comment, sym_block_comment, - ACTIONS(2029), 13, + ACTIONS(2709), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -233754,10 +237322,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2031), 31, + ACTIONS(2707), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233789,17 +237358,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49865] = 5, + [50054] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2299), 2, + STATE(2340), 2, sym_line_comment, sym_block_comment, - ACTIONS(2221), 13, + ACTIONS(2715), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -233808,10 +237376,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2219), 31, + ACTIONS(2713), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233843,17 +237412,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49924] = 5, + [50113] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2300), 2, + STATE(2341), 2, sym_line_comment, sym_block_comment, - ACTIONS(2245), 13, + ACTIONS(2191), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -233862,10 +237430,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2243), 31, + ACTIONS(2189), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233897,90 +237466,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49983] = 24, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4964), 1, - anon_sym_LPAREN, - ACTIONS(4966), 1, - anon_sym_LBRACK, - ACTIONS(4968), 1, - anon_sym_QMARK, - ACTIONS(4970), 1, - anon_sym_BANG, - ACTIONS(4976), 1, - anon_sym_as, - ACTIONS(4986), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4988), 1, - anon_sym_DASH_DASH, - ACTIONS(4990), 1, - anon_sym_AMP_AMP, - ACTIONS(4992), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4994), 1, - anon_sym_or, - STATE(2553), 1, - sym_or_block, - STATE(2554), 1, - sym_argument_list, - STATE(4167), 1, - sym_type_parameters, - ACTIONS(4962), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4972), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4998), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5034), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2301), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4980), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1773), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4984), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4982), 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, - [50080] = 5, + [50172] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2302), 2, + STATE(2342), 2, sym_line_comment, sym_block_comment, - ACTIONS(2471), 13, + ACTIONS(2111), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -233989,10 +237484,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2469), 31, + ACTIONS(2109), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234007,115 +237503,33 @@ static const uint16_t ts_small_parse_table[] = { 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, - [50139] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3488), 1, - anon_sym_COLON_EQ, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5006), 1, - anon_sym_COMMA, - ACTIONS(5018), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, - anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_CARET, - ACTIONS(5024), 1, - anon_sym_AMP_AMP, - ACTIONS(5026), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5036), 1, - anon_sym_LBRACE, - STATE(1822), 1, - sym_block, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(3880), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5014), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5032), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2303), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5008), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5012), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5016), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5010), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [50252] = 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, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [50231] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2304), 2, + STATE(2343), 2, sym_line_comment, sym_block_comment, - ACTIONS(2779), 13, + ACTIONS(2371), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -234124,10 +237538,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2777), 31, + ACTIONS(2369), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234159,113 +237574,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50311] = 24, + [50290] = 15, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4964), 1, + ACTIONS(4990), 1, anon_sym_LPAREN, - ACTIONS(4966), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(4968), 1, + ACTIONS(4994), 1, anon_sym_QMARK, - ACTIONS(4970), 1, + ACTIONS(4996), 1, anon_sym_BANG, - ACTIONS(4976), 1, - anon_sym_as, - ACTIONS(4986), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4988), 1, - anon_sym_DASH_DASH, - ACTIONS(4990), 1, - anon_sym_AMP_AMP, - ACTIONS(4992), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4994), 1, - anon_sym_or, - STATE(2553), 1, - sym_or_block, - STATE(2554), 1, + STATE(2518), 1, sym_argument_list, - STATE(4167), 1, + STATE(2521), 1, + sym_or_block, + STATE(4106), 1, sym_type_parameters, - ACTIONS(4962), 2, + ACTIONS(4988), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4972), 2, + ACTIONS(4998), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4996), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4998), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2305), 2, + STATE(2344), 2, sym_line_comment, sym_block_comment, - ACTIONS(4980), 4, - anon_sym_PIPE, + ACTIONS(5006), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(1759), 5, + ACTIONS(5008), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1767), 21, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4984), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4982), 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, - [50408] = 15, + 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, + [50369] = 17, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4964), 1, + ACTIONS(4990), 1, anon_sym_LPAREN, - ACTIONS(4966), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(4968), 1, + ACTIONS(4994), 1, anon_sym_QMARK, - ACTIONS(4970), 1, + ACTIONS(4996), 1, anon_sym_BANG, - STATE(2553), 1, - sym_or_block, - STATE(2554), 1, + STATE(2518), 1, sym_argument_list, - STATE(4167), 1, + STATE(2521), 1, + sym_or_block, + STATE(4106), 1, sym_type_parameters, - ACTIONS(4962), 2, + ACTIONS(4988), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4972), 2, + ACTIONS(4998), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2306), 2, + ACTIONS(5024), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2345), 2, sym_line_comment, sym_block_comment, - ACTIONS(5038), 4, - anon_sym_PIPE, + ACTIONS(5006), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5000), 8, + ACTIONS(5010), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5008), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -234274,126 +237690,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1791), 21, + ACTIONS(1767), 13, 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, - [50487] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2307), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2269), 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(2267), 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_RBRACE, 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, - [50546] = 17, + [50452] = 18, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4964), 1, + ACTIONS(4990), 1, anon_sym_LPAREN, - ACTIONS(4966), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(4968), 1, + ACTIONS(4994), 1, anon_sym_QMARK, - ACTIONS(4970), 1, + ACTIONS(4996), 1, anon_sym_BANG, - STATE(2553), 1, - sym_or_block, - STATE(2554), 1, + ACTIONS(5016), 1, + anon_sym_AMP_AMP, + STATE(2518), 1, sym_argument_list, - STATE(4167), 1, + STATE(2521), 1, + sym_or_block, + STATE(4106), 1, sym_type_parameters, - ACTIONS(4962), 2, + ACTIONS(4988), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4972), 2, + ACTIONS(4998), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5042), 2, + ACTIONS(5024), 2, anon_sym_in, anon_sym_BANGin, - STATE(2308), 2, + STATE(2346), 2, sym_line_comment, sym_block_comment, - ACTIONS(5038), 4, - anon_sym_PIPE, + ACTIONS(5006), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5040), 6, + ACTIONS(5010), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5000), 8, + ACTIONS(5008), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -234402,66 +237758,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1791), 13, + ACTIONS(1767), 12, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - [50629] = 18, + [50537] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4964), 1, + ACTIONS(4990), 1, anon_sym_LPAREN, - ACTIONS(4966), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(4968), 1, + ACTIONS(4994), 1, anon_sym_QMARK, - ACTIONS(4970), 1, + ACTIONS(4996), 1, anon_sym_BANG, - ACTIONS(5044), 1, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5020), 1, + anon_sym_or, + ACTIONS(5068), 1, anon_sym_AMP_AMP, - STATE(2553), 1, - sym_or_block, - STATE(2554), 1, + ACTIONS(5070), 1, + anon_sym_PIPE_PIPE, + STATE(2518), 1, sym_argument_list, - STATE(4167), 1, + STATE(2521), 1, + sym_or_block, + STATE(4106), 1, sym_type_parameters, - ACTIONS(4962), 2, + ACTIONS(4988), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4972), 2, + ACTIONS(4998), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5042), 2, + ACTIONS(5022), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5072), 2, anon_sym_in, anon_sym_BANGin, - STATE(2309), 2, + STATE(2347), 2, sym_line_comment, sym_block_comment, - ACTIONS(5038), 4, - anon_sym_PIPE, + ACTIONS(5062), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5040), 6, + ACTIONS(1775), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_RBRACE, + ACTIONS(5066), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5000), 8, + ACTIONS(5064), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -234470,53 +237844,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1791), 12, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + [50634] = 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(2755), 13, + anon_sym_DOT, + 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_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2753), 31, anon_sym_SEMI, anon_sym_as, - anon_sym_RBRACE, + 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, - [50714] = 15, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [50693] = 15, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4964), 1, + ACTIONS(4990), 1, anon_sym_LPAREN, - ACTIONS(4966), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(4968), 1, + ACTIONS(4994), 1, anon_sym_QMARK, - ACTIONS(4970), 1, + ACTIONS(4996), 1, anon_sym_BANG, - STATE(2553), 1, - sym_or_block, - STATE(2554), 1, + STATE(2518), 1, sym_argument_list, - STATE(4167), 1, + STATE(2521), 1, + sym_or_block, + STATE(4106), 1, sym_type_parameters, - ACTIONS(4962), 2, + ACTIONS(4988), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4972), 2, + ACTIONS(4998), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2310), 2, + STATE(2349), 2, sym_line_comment, sym_block_comment, - ACTIONS(5038), 4, - anon_sym_PIPE, + ACTIONS(5006), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5000), 8, + ACTIONS(5008), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -234525,12 +237940,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1787), 21, + ACTIONS(1793), 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, @@ -234547,17 +237962,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [50793] = 5, + [50772] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2311), 2, + STATE(2350), 2, sym_line_comment, sym_block_comment, - ACTIONS(2213), 13, + ACTIONS(1945), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -234566,10 +237980,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2211), 31, + ACTIONS(1943), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234601,17 +238016,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50852] = 5, + [50831] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2312), 2, + ACTIONS(1889), 1, + anon_sym_DOT, + STATE(2351), 2, sym_line_comment, sym_block_comment, - ACTIONS(2201), 13, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(2095), 12, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -234620,10 +238035,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2199), 31, + ACTIONS(2093), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234655,17 +238071,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50911] = 5, + [50892] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2313), 2, + STATE(2352), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 13, + ACTIONS(2957), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -234674,10 +238089,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2841), 31, + ACTIONS(2955), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234709,132 +238125,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50970] = 32, + [50951] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3488), 1, - anon_sym_COLON_EQ, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, + STATE(2353), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2973), 13, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4946), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2971), 31, + anon_sym_SEMI, anon_sym_as, - ACTIONS(5006), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5018), 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(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, anon_sym_CARET, - ACTIONS(5024), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5026), 1, anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5046), 1, - anon_sym_LBRACE, - STATE(968), 1, - sym_block, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(3880), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5014), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5030), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5032), 2, anon_sym_in, anon_sym_BANGin, - STATE(2314), 2, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [51010] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2354), 2, sym_line_comment, sym_block_comment, - ACTIONS(5008), 3, - anon_sym_PIPE, + ACTIONS(2401), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5012), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5016), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5010), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [51083] = 7, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1797), 1, - anon_sym_LBRACK, - ACTIONS(5048), 1, - anon_sym_else, - STATE(2487), 1, - sym_else_branch, - STATE(2315), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1799), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2399), 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, @@ -234846,17 +238231,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [51146] = 5, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [51069] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2316), 2, + STATE(2355), 2, sym_line_comment, sym_block_comment, - ACTIONS(2127), 13, + ACTIONS(2977), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -234865,10 +238251,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2125), 31, + ACTIONS(2975), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234900,17 +238287,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51205] = 5, + [51128] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2317), 2, + STATE(2356), 2, sym_line_comment, sym_block_comment, - ACTIONS(2105), 13, + ACTIONS(2969), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -234919,10 +238305,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2103), 31, + ACTIONS(2967), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234954,51 +238341,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51264] = 7, - ACTIONS(497), 1, + [51187] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1803), 1, - anon_sym_LBRACK, - ACTIONS(5048), 1, - anon_sym_else, - STATE(2486), 1, - sym_else_branch, - STATE(2318), 2, + STATE(2357), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(2363), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2361), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -235010,98 +238393,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [51327] = 32, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [51246] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3488), 1, - anon_sym_COLON_EQ, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, + STATE(2358), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2395), 13, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4946), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2393), 31, + anon_sym_SEMI, anon_sym_as, - ACTIONS(5006), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5018), 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(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, anon_sym_CARET, - ACTIONS(5024), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5026), 1, anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5050), 1, - anon_sym_LBRACE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(2455), 1, - sym_block, - STATE(3880), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5014), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5030), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5032), 2, anon_sym_in, anon_sym_BANGin, - STATE(2319), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5008), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5012), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5016), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5010), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [51440] = 5, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [51305] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2320), 2, + STATE(2359), 2, sym_line_comment, sym_block_comment, - ACTIONS(2859), 13, + ACTIONS(2441), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -235110,10 +238467,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2857), 31, + ACTIONS(2439), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235145,17 +238503,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51499] = 5, + [51364] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2321), 2, + STATE(2360), 2, sym_line_comment, sym_block_comment, - ACTIONS(2805), 13, + ACTIONS(2453), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -235164,10 +238521,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2803), 31, + ACTIONS(2451), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235199,17 +238557,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51558] = 5, + [51423] = 24, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4990), 1, + anon_sym_LPAREN, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(4994), 1, + anon_sym_QMARK, + ACTIONS(4996), 1, + anon_sym_BANG, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5016), 1, + anon_sym_AMP_AMP, + ACTIONS(5018), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5020), 1, + anon_sym_or, + STATE(2518), 1, + sym_argument_list, + STATE(2521), 1, + sym_or_block, + STATE(4106), 1, + sym_type_parameters, + ACTIONS(4988), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4998), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(5022), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5024), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2361), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5006), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(1657), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5010), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5008), 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, + [51520] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2322), 2, + STATE(2362), 2, sym_line_comment, sym_block_comment, - ACTIONS(2877), 13, + ACTIONS(2433), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -235218,10 +238648,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2875), 31, + ACTIONS(2431), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235253,98 +238684,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51617] = 32, + [51579] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3488), 1, + ACTIONS(3492), 1, anon_sym_COLON_EQ, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5006), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5046), 1, anon_sym_CARET, - ACTIONS(5024), 1, + ACTIONS(5048), 1, anon_sym_AMP_AMP, - ACTIONS(5026), 1, + ACTIONS(5050), 1, anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, - anon_sym_or, ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5074), 1, anon_sym_LBRACE, - STATE(2315), 1, + STATE(1754), 1, sym_block, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(3880), 1, + STATE(2439), 1, + sym_argument_list, + STATE(3984), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4149), 1, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5014), 2, + ACTIONS(5038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5032), 2, + ACTIONS(5056), 2, anon_sym_in, anon_sym_BANGin, - STATE(2323), 2, + STATE(2363), 2, sym_line_comment, sym_block_comment, - ACTIONS(5008), 3, - anon_sym_PIPE, + ACTIONS(5032), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5012), 3, + anon_sym_PIPE, + ACTIONS(5036), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5016), 4, + ACTIONS(5040), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5010), 5, + ACTIONS(5034), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [51730] = 5, + [51692] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2324), 2, + STATE(2364), 2, sym_line_comment, sym_block_comment, - ACTIONS(2093), 13, + ACTIONS(2761), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -235353,10 +238783,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2091), 31, + ACTIONS(2759), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235388,17 +238819,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51789] = 5, + [51751] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2325), 2, + STATE(2365), 2, sym_line_comment, sym_block_comment, - ACTIONS(2725), 13, + ACTIONS(2719), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -235407,10 +238837,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2723), 31, + ACTIONS(2717), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235442,17 +238873,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51848] = 5, + [51810] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2326), 2, + STATE(2366), 2, sym_line_comment, sym_block_comment, - ACTIONS(2851), 13, + ACTIONS(2731), 13, anon_sym_DOT, + 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_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2729), 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, + [51869] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2367), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2425), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -235461,10 +238945,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2849), 31, + ACTIONS(2423), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235496,35 +238981,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51907] = 14, + [51928] = 15, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4964), 1, + ACTIONS(4990), 1, anon_sym_LPAREN, - ACTIONS(4966), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(4968), 1, + ACTIONS(4994), 1, anon_sym_QMARK, - ACTIONS(4970), 1, + ACTIONS(4996), 1, anon_sym_BANG, - STATE(2553), 1, - sym_or_block, - STATE(2554), 1, + STATE(2518), 1, sym_argument_list, - STATE(4167), 1, + STATE(2521), 1, + sym_or_block, + STATE(4106), 1, sym_type_parameters, - ACTIONS(4962), 2, + ACTIONS(4988), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4972), 2, + ACTIONS(4998), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2327), 2, + STATE(2368), 2, sym_line_comment, sym_block_comment, - ACTIONS(4982), 8, + ACTIONS(5062), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5064), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -235533,16 +239023,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1791), 25, + ACTIONS(1793), 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_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -235551,7 +239038,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, @@ -235559,179 +239045,357 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [51984] = 5, - ACTIONS(3), 1, + [52007] = 18, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2328), 2, + ACTIONS(4990), 1, + anon_sym_LPAREN, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(4994), 1, + anon_sym_QMARK, + ACTIONS(4996), 1, + anon_sym_BANG, + ACTIONS(5068), 1, + anon_sym_AMP_AMP, + STATE(2518), 1, + sym_argument_list, + STATE(2521), 1, + sym_or_block, + STATE(4106), 1, + sym_type_parameters, + ACTIONS(4988), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4998), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(5072), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2369), 2, sym_line_comment, sym_block_comment, - ACTIONS(2273), 13, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(5062), 4, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5066), 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(5064), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 31, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1767), 12, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [52092] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3492), 1, + anon_sym_COLON_EQ, + ACTIONS(4964), 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, + ACTIONS(4966), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, anon_sym_DASH_DASH, + ACTIONS(5046), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5048), 1, anon_sym_AMP_AMP, + ACTIONS(5050), 1, anon_sym_PIPE_PIPE, + ACTIONS(5052), 1, anon_sym_or, + ACTIONS(5076), 1, + anon_sym_LBRACE, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(2618), 1, + sym_block, + STATE(3984), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5038), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5056), 2, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [52043] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2329), 2, + STATE(2370), 2, sym_line_comment, sym_block_comment, - ACTIONS(2771), 13, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(5032), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5036), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5040), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5034), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [52205] = 14, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4990), 1, + anon_sym_LPAREN, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(4994), 1, anon_sym_QMARK, + ACTIONS(4996), 1, anon_sym_BANG, + STATE(2518), 1, + sym_argument_list, + STATE(2521), 1, + sym_or_block, + STATE(4106), 1, + sym_type_parameters, + ACTIONS(4988), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4998), 2, anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2371), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5008), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2769), 31, - anon_sym_SEMI, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1767), 25, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PIPE, 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, - [52102] = 5, - ACTIONS(3), 1, + [52282] = 17, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2330), 2, + ACTIONS(4990), 1, + anon_sym_LPAREN, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(4994), 1, + anon_sym_QMARK, + ACTIONS(4996), 1, + anon_sym_BANG, + STATE(2518), 1, + sym_argument_list, + STATE(2521), 1, + sym_or_block, + STATE(4106), 1, + sym_type_parameters, + ACTIONS(4988), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4998), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(5072), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2372), 2, sym_line_comment, sym_block_comment, - ACTIONS(2729), 13, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(5062), 4, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5066), 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(5064), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2727), 31, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1767), 13, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [52365] = 15, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4990), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(4994), 1, + anon_sym_QMARK, + ACTIONS(4996), 1, + anon_sym_BANG, + STATE(2518), 1, + sym_argument_list, + STATE(2521), 1, + sym_or_block, + STATE(4106), 1, + sym_type_parameters, + ACTIONS(4988), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4998), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2373), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5062), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5064), 8, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1767), 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_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, - [52161] = 5, + [52444] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2331), 2, + STATE(2374), 2, sym_line_comment, sym_block_comment, - ACTIONS(2737), 13, + ACTIONS(2985), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -235740,10 +239404,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2735), 31, + ACTIONS(2983), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235775,17 +239440,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52220] = 5, + [52503] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2332), 2, + STATE(2375), 2, sym_line_comment, sym_block_comment, - ACTIONS(2745), 13, + ACTIONS(2379), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -235794,10 +239458,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2743), 31, + ACTIONS(2377), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235829,17 +239494,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52279] = 5, + [52562] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2333), 2, + STATE(2376), 2, sym_line_comment, sym_block_comment, - ACTIONS(2767), 13, + ACTIONS(3066), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -235848,10 +239512,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2765), 31, + ACTIONS(3064), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235883,17 +239548,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52338] = 5, + [52621] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2334), 2, + STATE(2377), 2, sym_line_comment, sym_block_comment, - ACTIONS(2749), 13, + ACTIONS(2937), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -235902,10 +239566,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2747), 31, + ACTIONS(2935), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235937,216 +239602,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52397] = 32, + [52680] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3488), 1, + ACTIONS(3492), 1, anon_sym_COLON_EQ, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5006), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5046), 1, anon_sym_CARET, - ACTIONS(5024), 1, + ACTIONS(5048), 1, anon_sym_AMP_AMP, - ACTIONS(5026), 1, + ACTIONS(5050), 1, anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5054), 1, + ACTIONS(5078), 1, anon_sym_LBRACE, - STATE(2277), 1, + STATE(2318), 1, sym_block, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(3880), 1, + STATE(2439), 1, + sym_argument_list, + STATE(3984), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4149), 1, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5014), 2, + ACTIONS(5038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5032), 2, + ACTIONS(5056), 2, anon_sym_in, anon_sym_BANGin, - STATE(2335), 2, + STATE(2378), 2, sym_line_comment, sym_block_comment, - ACTIONS(5008), 3, - anon_sym_PIPE, + ACTIONS(5032), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5012), 3, + anon_sym_PIPE, + ACTIONS(5036), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5016), 4, + ACTIONS(5040), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5010), 5, + ACTIONS(5034), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [52510] = 15, + [52793] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4964), 1, + ACTIONS(4990), 1, anon_sym_LPAREN, - ACTIONS(4966), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(4968), 1, + ACTIONS(4994), 1, anon_sym_QMARK, - ACTIONS(4970), 1, + ACTIONS(4996), 1, anon_sym_BANG, - STATE(2553), 1, - sym_or_block, - STATE(2554), 1, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5016), 1, + anon_sym_AMP_AMP, + ACTIONS(5018), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5020), 1, + anon_sym_or, + STATE(2518), 1, sym_argument_list, - STATE(4167), 1, + STATE(2521), 1, + sym_or_block, + STATE(4106), 1, sym_type_parameters, - ACTIONS(4962), 2, + ACTIONS(4988), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4972), 2, + ACTIONS(4998), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2336), 2, + ACTIONS(5024), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(5080), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2379), 2, sym_line_comment, sym_block_comment, - ACTIONS(4980), 4, - anon_sym_PIPE, + ACTIONS(5006), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(4982), 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(1791), 21, + ACTIONS(1783), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(5010), 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_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [52589] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2337), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2097), 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(2095), 31, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5008), 8, 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_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, - [52648] = 5, + [52890] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2338), 2, + STATE(2380), 2, sym_line_comment, sym_block_comment, - ACTIONS(2801), 13, + ACTIONS(2345), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -236155,10 +239774,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2799), 31, + ACTIONS(2343), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236190,47 +239810,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52707] = 5, - ACTIONS(3), 1, + [52949] = 7, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2339), 2, + ACTIONS(1803), 1, + anon_sym_LBRACK, + ACTIONS(5082), 1, + anon_sym_else, + STATE(2553), 1, + sym_else_branch, + STATE(2381), 2, sym_line_comment, sym_block_comment, - ACTIONS(2809), 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(2807), 31, + ACTIONS(1805), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_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, @@ -236242,19 +239866,16 @@ 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, - [52766] = 5, + [53012] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2340), 2, + STATE(2382), 2, sym_line_comment, sym_block_comment, - ACTIONS(2813), 13, + ACTIONS(2775), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -236263,10 +239884,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2811), 31, + ACTIONS(2773), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236298,71 +239920,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52825] = 5, - ACTIONS(3), 1, + [53071] = 14, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2341), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2817), 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, + ACTIONS(4990), 1, + anon_sym_LPAREN, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(4994), 1, anon_sym_QMARK, + ACTIONS(4996), 1, anon_sym_BANG, + STATE(2518), 1, + sym_argument_list, + STATE(2521), 1, + sym_or_block, + STATE(4106), 1, + sym_type_parameters, + ACTIONS(4988), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4998), 2, anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2383), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5064), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2815), 31, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1767), 25, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PIPE, 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, - [52884] = 5, + [53148] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2342), 2, + STATE(2384), 2, sym_line_comment, sym_block_comment, - ACTIONS(2855), 13, + ACTIONS(2925), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -236371,10 +240001,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2853), 31, + ACTIONS(2923), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236406,17 +240037,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52943] = 5, + [53207] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2343), 2, + STATE(2385), 2, sym_line_comment, sym_block_comment, - ACTIONS(3025), 13, + ACTIONS(2929), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -236425,10 +240055,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3023), 31, + ACTIONS(2927), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236460,83 +240091,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53002] = 17, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4964), 1, - anon_sym_LPAREN, - ACTIONS(4966), 1, - anon_sym_LBRACK, - ACTIONS(4968), 1, - anon_sym_QMARK, - ACTIONS(4970), 1, - anon_sym_BANG, - STATE(2553), 1, - sym_or_block, - STATE(2554), 1, - sym_argument_list, - STATE(4167), 1, - sym_type_parameters, - ACTIONS(4962), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4972), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4998), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2344), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4980), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4984), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4982), 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(1791), 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_is, - anon_sym_BANGis, - [53085] = 5, + [53266] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2345), 2, + STATE(2386), 2, sym_line_comment, sym_block_comment, - ACTIONS(3029), 13, + ACTIONS(2941), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -236545,10 +240109,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3027), 31, + ACTIONS(2939), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236580,17 +240145,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53144] = 5, + [53325] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2346), 2, + STATE(2387), 2, sym_line_comment, sym_block_comment, - ACTIONS(2155), 13, + ACTIONS(2779), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -236599,10 +240163,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2153), 31, + ACTIONS(2777), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236634,11 +240199,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53203] = 18, - ACTIONS(497), 1, + [53384] = 32, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(3492), 1, + anon_sym_COLON_EQ, ACTIONS(4964), 1, anon_sym_LPAREN, ACTIONS(4966), 1, @@ -236647,71 +240214,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4990), 1, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(5042), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, + anon_sym_DASH_DASH, + ACTIONS(5046), 1, + anon_sym_CARET, + ACTIONS(5048), 1, anon_sym_AMP_AMP, - STATE(2553), 1, + ACTIONS(5050), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5084), 1, + anon_sym_LBRACE, + STATE(230), 1, + sym_block, + STATE(2408), 1, sym_or_block, - STATE(2554), 1, + STATE(2439), 1, sym_argument_list, - STATE(4167), 1, + STATE(3984), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4962), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4972), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4998), 2, + ACTIONS(5038), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5056), 2, anon_sym_in, anon_sym_BANGin, - STATE(2347), 2, + STATE(2388), 2, sym_line_comment, sym_block_comment, - ACTIONS(4980), 4, - anon_sym_PIPE, + ACTIONS(5032), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4984), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PIPE, + ACTIONS(5036), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5040), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4982), 8, + ACTIONS(5034), 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(1791), 12, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + [53497] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2389), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2961), 13, + anon_sym_DOT, + 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_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2959), 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, + 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, - [53288] = 5, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [53556] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2348), 2, + STATE(2390), 2, sym_line_comment, sym_block_comment, - ACTIONS(2101), 13, + ACTIONS(2965), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -236720,10 +240352,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2099), 31, + ACTIONS(2963), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236755,17 +240388,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53347] = 5, + [53615] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2349), 2, + STATE(2391), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 13, + ACTIONS(2327), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -236774,10 +240406,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2157), 31, + ACTIONS(2325), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236809,39 +240442,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53406] = 7, + [53674] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2137), 1, - anon_sym_COLON, - STATE(2350), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2135), 5, - anon_sym_SEMI, + ACTIONS(3492), 1, + anon_sym_COLON_EQ, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(5042), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, + anon_sym_DASH_DASH, + ACTIONS(5046), 1, + anon_sym_CARET, + ACTIONS(5048), 1, + anon_sym_AMP_AMP, + ACTIONS(5050), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5086), 1, anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(2139), 12, + STATE(1265), 1, + sym_block, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(3984), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5038), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5056), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2392), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5032), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, + ACTIONS(5036), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5040), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5034), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [53787] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2393), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2981), 13, + anon_sym_DOT, 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_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2142), 26, + ACTIONS(2979), 31, + anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_EQ_EQ, @@ -236849,6 +240559,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, @@ -236865,17 +240576,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [53469] = 5, + anon_sym_DOT_DOT, + [53846] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2351), 2, + STATE(2394), 2, sym_line_comment, sym_block_comment, - ACTIONS(2431), 13, + ACTIONS(2989), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -236884,10 +240595,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2429), 31, + ACTIONS(2987), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236919,17 +240631,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53528] = 5, + [53905] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2352), 2, + STATE(2395), 2, sym_line_comment, sym_block_comment, - ACTIONS(3046), 13, + ACTIONS(2351), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -236938,10 +240649,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3044), 31, + ACTIONS(2349), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236973,17 +240685,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53587] = 5, + [53964] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2353), 2, + STATE(2396), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 13, + ACTIONS(2357), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -236992,10 +240703,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2183), 31, + ACTIONS(2355), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237027,162 +240739,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53646] = 15, - ACTIONS(497), 1, + [54023] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4964), 1, - anon_sym_LPAREN, - ACTIONS(4966), 1, - anon_sym_LBRACK, - ACTIONS(4968), 1, - anon_sym_QMARK, - ACTIONS(4970), 1, - anon_sym_BANG, - STATE(2553), 1, - sym_or_block, - STATE(2554), 1, - sym_argument_list, - STATE(4167), 1, - sym_type_parameters, - ACTIONS(4962), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4972), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2354), 2, + STATE(2397), 2, sym_line_comment, sym_block_comment, - ACTIONS(4980), 4, - anon_sym_PIPE, + ACTIONS(2445), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4982), 8, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1787), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2443), 31, + anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [53725] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3488), 1, - anon_sym_COLON_EQ, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5006), 1, - anon_sym_COMMA, - ACTIONS(5018), 1, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, anon_sym_CARET, - ACTIONS(5024), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5026), 1, anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5056), 1, - anon_sym_LBRACE, - STATE(229), 1, - sym_block, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(3880), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5014), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5030), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5032), 2, anon_sym_in, anon_sym_BANGin, - STATE(2355), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5008), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5012), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5016), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5010), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [53838] = 5, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [54082] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2356), 2, + STATE(2398), 2, sym_line_comment, sym_block_comment, - ACTIONS(3052), 13, + ACTIONS(2475), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -237191,10 +240811,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3050), 31, + ACTIONS(2473), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237226,17 +240847,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53897] = 5, + [54141] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2357), 2, + STATE(2399), 2, sym_line_comment, sym_block_comment, - ACTIONS(2423), 13, + ACTIONS(2995), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -237245,10 +240865,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2421), 31, + ACTIONS(2993), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237280,11 +240901,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53956] = 25, - ACTIONS(497), 1, + [54200] = 32, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(3492), 1, + anon_sym_COLON_EQ, ACTIONS(4964), 1, anon_sym_LPAREN, ACTIONS(4966), 1, @@ -237293,78 +240916,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, ACTIONS(4970), 1, anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(4986), 1, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(4988), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(4990), 1, + ACTIONS(5046), 1, + anon_sym_CARET, + ACTIONS(5048), 1, anon_sym_AMP_AMP, - ACTIONS(4992), 1, + ACTIONS(5050), 1, anon_sym_PIPE_PIPE, - ACTIONS(4994), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5058), 1, - anon_sym_COMMA, - STATE(2553), 1, + ACTIONS(5088), 1, + anon_sym_LBRACE, + STATE(2408), 1, sym_or_block, - STATE(2554), 1, + STATE(2439), 1, sym_argument_list, - STATE(4167), 1, + STATE(2827), 1, + sym_block, + STATE(3984), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4962), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4972), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 2, + ACTIONS(5038), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4998), 2, + ACTIONS(5056), 2, anon_sym_in, anon_sym_BANGin, - STATE(2358), 2, + STATE(2400), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(4980), 4, - anon_sym_PIPE, + ACTIONS(5032), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4984), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PIPE, + ACTIONS(5036), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5040), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4982), 8, + ACTIONS(5034), 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, - [54055] = 5, + [54313] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2359), 2, + STATE(2401), 2, sym_line_comment, sym_block_comment, - ACTIONS(2547), 13, + ACTIONS(2479), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -237373,10 +241000,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2545), 31, + ACTIONS(2477), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237408,17 +241036,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54114] = 5, + [54372] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2360), 2, + STATE(2402), 2, sym_line_comment, sym_block_comment, - ACTIONS(2833), 13, + ACTIONS(2491), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -237427,10 +241054,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2831), 31, + ACTIONS(2489), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237462,47 +241090,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54173] = 5, - ACTIONS(497), 1, + [54431] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1887), 1, - anon_sym_LBRACK, - STATE(2361), 2, + STATE(2403), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 43, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(2647), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2645), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -237510,23 +241138,22 @@ 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, - [54232] = 5, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [54490] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2362), 2, + STATE(2404), 2, sym_line_comment, sym_block_comment, - ACTIONS(2821), 13, + ACTIONS(1845), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -237535,10 +241162,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2819), 31, + ACTIONS(1847), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237570,17 +241198,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54291] = 5, + [54549] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2363), 2, + STATE(2405), 2, sym_line_comment, sym_block_comment, - ACTIONS(2707), 13, + ACTIONS(3010), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -237589,10 +241216,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2705), 31, + ACTIONS(3008), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237624,17 +241252,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54350] = 5, + [54608] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2364), 2, + STATE(2406), 2, sym_line_comment, sym_block_comment, - ACTIONS(2475), 13, + ACTIONS(2469), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -237643,10 +241270,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2473), 31, + ACTIONS(2467), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237678,17 +241306,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54409] = 5, + [54667] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2365), 2, + ACTIONS(3492), 1, + anon_sym_COLON_EQ, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(5042), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, + anon_sym_DASH_DASH, + ACTIONS(5046), 1, + anon_sym_CARET, + ACTIONS(5048), 1, + anon_sym_AMP_AMP, + ACTIONS(5050), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5090), 1, + anon_sym_LBRACE, + STATE(1130), 1, + sym_block, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(3984), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5038), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5056), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2407), 2, sym_line_comment, sym_block_comment, - ACTIONS(2463), 13, - anon_sym_DOT, + ACTIONS(5032), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, + ACTIONS(5036), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5040), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5034), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [54780] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2408), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2383), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -237697,10 +241405,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2461), 31, + ACTIONS(2381), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237732,17 +241441,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54468] = 5, + [54839] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2366), 2, + STATE(2409), 2, sym_line_comment, sym_block_comment, - ACTIONS(2775), 13, + ACTIONS(3026), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -237751,10 +241459,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2773), 31, + ACTIONS(3024), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237786,17 +241495,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54527] = 5, + [54898] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2367), 2, + STATE(2410), 2, sym_line_comment, sym_block_comment, - ACTIONS(2453), 13, + ACTIONS(3030), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -237805,10 +241513,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2451), 31, + ACTIONS(3028), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237840,17 +241549,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54586] = 5, + [54957] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2368), 2, + STATE(2411), 2, sym_line_comment, sym_block_comment, - ACTIONS(2439), 13, + ACTIONS(2657), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -237859,10 +241567,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2437), 31, + ACTIONS(2655), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237894,17 +241603,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54645] = 5, + [55016] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2369), 2, + STATE(2412), 2, sym_line_comment, sym_block_comment, - ACTIONS(2719), 13, + ACTIONS(2653), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -237913,10 +241621,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2717), 31, + ACTIONS(2651), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237948,47 +241657,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54704] = 5, - ACTIONS(3), 1, + [55075] = 7, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2370), 2, + ACTIONS(1797), 1, + anon_sym_LBRACK, + ACTIONS(5082), 1, + anon_sym_else, + STATE(2551), 1, + sym_else_branch, + STATE(2413), 2, sym_line_comment, sym_block_comment, - ACTIONS(2241), 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(2239), 31, + ACTIONS(1799), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_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, @@ -238000,19 +241713,16 @@ 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, - [54763] = 5, + [55138] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2371), 2, + STATE(2414), 2, sym_line_comment, sym_block_comment, - ACTIONS(2837), 13, + ACTIONS(2727), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -238021,10 +241731,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2835), 31, + ACTIONS(2725), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238056,17 +241767,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54822] = 5, + [55197] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2372), 2, + STATE(2415), 2, sym_line_comment, sym_block_comment, - ACTIONS(2233), 13, + ACTIONS(2321), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -238075,10 +241785,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2231), 31, + ACTIONS(2319), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238110,18 +241821,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54881] = 6, + [55256] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3039), 1, - anon_sym_DOT, - STATE(2373), 2, + STATE(2416), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 12, - anon_sym_PIPE, + ACTIONS(2745), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -238130,10 +241839,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 31, + ACTIONS(2743), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238165,17 +241875,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54942] = 5, + [55315] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2374), 2, + STATE(2417), 2, sym_line_comment, sym_block_comment, - ACTIONS(2847), 13, + ACTIONS(3042), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -238184,10 +241893,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2845), 31, + ACTIONS(3040), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238219,17 +241929,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55001] = 5, + [55374] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2375), 2, + STATE(2418), 2, sym_line_comment, sym_block_comment, - ACTIONS(2891), 13, + ACTIONS(3058), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -238238,10 +241947,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2889), 31, + ACTIONS(3056), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238273,17 +241983,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55060] = 5, + [55433] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2376), 2, + STATE(2419), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 13, + ACTIONS(1887), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -238292,10 +242001,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 31, + ACTIONS(1885), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238327,171 +242037,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55119] = 24, - ACTIONS(497), 1, + [55492] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4964), 1, - anon_sym_LPAREN, - ACTIONS(4966), 1, - anon_sym_LBRACK, - ACTIONS(4968), 1, - anon_sym_QMARK, - ACTIONS(4970), 1, - anon_sym_BANG, - ACTIONS(4976), 1, - anon_sym_as, - ACTIONS(4986), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4988), 1, - anon_sym_DASH_DASH, - ACTIONS(4994), 1, - anon_sym_or, - ACTIONS(5044), 1, - anon_sym_AMP_AMP, - ACTIONS(5060), 1, - anon_sym_PIPE_PIPE, - STATE(2553), 1, - sym_or_block, - STATE(2554), 1, - sym_argument_list, - STATE(4167), 1, - sym_type_parameters, - ACTIONS(4962), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4972), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5042), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2377), 2, + STATE(2420), 2, sym_line_comment, sym_block_comment, - ACTIONS(5038), 4, - anon_sym_PIPE, + ACTIONS(3070), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1779), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(5040), 6, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5000), 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, - [55216] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3488), 1, - anon_sym_COLON_EQ, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4946), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3068), 31, + anon_sym_SEMI, anon_sym_as, - ACTIONS(5006), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5018), 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(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, anon_sym_CARET, - ACTIONS(5024), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5026), 1, anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5062), 1, - anon_sym_LBRACE, - STATE(1791), 1, - sym_block, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(3880), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5014), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5030), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5032), 2, anon_sym_in, anon_sym_BANGin, - STATE(2378), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5008), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5012), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5016), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5010), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [55329] = 5, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [55551] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2379), 2, + STATE(2421), 2, sym_line_comment, sym_block_comment, - ACTIONS(2123), 13, + ACTIONS(3050), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -238500,10 +242109,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2121), 31, + ACTIONS(3048), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238535,98 +242145,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55388] = 32, + [55610] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3488), 1, + ACTIONS(3492), 1, anon_sym_COLON_EQ, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5006), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5046), 1, anon_sym_CARET, - ACTIONS(5024), 1, + ACTIONS(5048), 1, anon_sym_AMP_AMP, - ACTIONS(5026), 1, + ACTIONS(5050), 1, anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5064), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - STATE(2127), 1, + STATE(1936), 1, sym_block, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(3880), 1, + STATE(2439), 1, + sym_argument_list, + STATE(3984), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4149), 1, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5014), 2, + ACTIONS(5038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5032), 2, + ACTIONS(5056), 2, anon_sym_in, anon_sym_BANGin, - STATE(2380), 2, + STATE(2422), 2, sym_line_comment, sym_block_comment, - ACTIONS(5008), 3, - anon_sym_PIPE, + ACTIONS(5032), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5012), 3, + anon_sym_PIPE, + ACTIONS(5036), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5016), 4, + ACTIONS(5040), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5010), 5, + ACTIONS(5034), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [55501] = 5, + [55723] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2381), 2, + STATE(2423), 2, sym_line_comment, sym_block_comment, - ACTIONS(2119), 13, + ACTIONS(2999), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -238635,10 +242244,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2117), 31, + ACTIONS(2997), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238670,179 +242280,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55560] = 5, - ACTIONS(3), 1, + [55782] = 25, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2382), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3066), 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, + ACTIONS(4990), 1, + anon_sym_LPAREN, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(4994), 1, anon_sym_QMARK, + ACTIONS(4996), 1, anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3064), 31, - anon_sym_SEMI, + ACTIONS(5002), 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(5012), 1, anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5016), 1, anon_sym_AMP_AMP, + ACTIONS(5018), 1, anon_sym_PIPE_PIPE, + ACTIONS(5020), 1, anon_sym_or, + ACTIONS(5094), 1, + anon_sym_COMMA, + STATE(2518), 1, + sym_argument_list, + STATE(2521), 1, + sym_or_block, + STATE(4106), 1, + sym_type_parameters, + ACTIONS(4988), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, + ACTIONS(4998), 2, + anon_sym_LBRACK2, anon_sym_POUND_LBRACK, + ACTIONS(5022), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5024), 2, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [55619] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2383), 2, + STATE(2424), 2, sym_line_comment, sym_block_comment, - ACTIONS(2883), 13, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(3534), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(5006), 4, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5010), 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(2881), 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(5008), 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, + [55881] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3492), 1, + anon_sym_COLON_EQ, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, anon_sym_DASH_DASH, + ACTIONS(5046), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5048), 1, anon_sym_AMP_AMP, + ACTIONS(5050), 1, anon_sym_PIPE_PIPE, + ACTIONS(5052), 1, anon_sym_or, + ACTIONS(5096), 1, + anon_sym_LBRACE, + STATE(2381), 1, + sym_block, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(3984), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5038), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5056), 2, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [55678] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1807), 1, - anon_sym_LBRACK, - STATE(2384), 2, + STATE(2425), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 43, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(5032), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + anon_sym_PIPE, + ACTIONS(5036), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5040), 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(5034), 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_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [55737] = 5, + [55994] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2385), 2, + STATE(2426), 2, sym_line_comment, sym_block_comment, - ACTIONS(2209), 13, + ACTIONS(3038), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -238851,10 +242453,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2207), 31, + ACTIONS(3036), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238886,17 +242489,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55796] = 5, + [56053] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2386), 2, + STATE(2427), 2, sym_line_comment, sym_block_comment, - ACTIONS(2205), 13, + ACTIONS(3014), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -238905,64 +242507,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2203), 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, - [55855] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2387), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2115), 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(2113), 31, + ACTIONS(3012), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238994,98 +242543,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55914] = 32, + [56112] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3488), 1, + ACTIONS(3492), 1, anon_sym_COLON_EQ, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5006), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5046), 1, anon_sym_CARET, - ACTIONS(5024), 1, + ACTIONS(5048), 1, anon_sym_AMP_AMP, - ACTIONS(5026), 1, + ACTIONS(5050), 1, anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5066), 1, + ACTIONS(5098), 1, anon_sym_LBRACE, - STATE(1261), 1, + STATE(970), 1, sym_block, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(3880), 1, + STATE(2439), 1, + sym_argument_list, + STATE(3984), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4149), 1, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5014), 2, + ACTIONS(5038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5032), 2, + ACTIONS(5056), 2, anon_sym_in, anon_sym_BANGin, - STATE(2388), 2, + STATE(2428), 2, sym_line_comment, sym_block_comment, - ACTIONS(5008), 3, - anon_sym_PIPE, + ACTIONS(5032), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5012), 3, + anon_sym_PIPE, + ACTIONS(5036), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5016), 4, + ACTIONS(5040), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5010), 5, + ACTIONS(5034), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [56027] = 5, + [56225] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2389), 2, + STATE(2429), 2, sym_line_comment, sym_block_comment, - ACTIONS(2763), 13, + ACTIONS(2899), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -239094,10 +242642,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2761), 31, + ACTIONS(2897), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239129,17 +242678,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56086] = 5, + [56284] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2390), 2, + STATE(2430), 2, sym_line_comment, sym_block_comment, - ACTIONS(2147), 13, + ACTIONS(3018), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -239148,10 +242696,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2145), 31, + ACTIONS(3016), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239183,98 +242732,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56145] = 32, + [56343] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3488), 1, - anon_sym_COLON_EQ, - ACTIONS(4715), 1, + ACTIONS(2627), 1, + anon_sym_COLON, + STATE(2431), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2625), 5, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(2629), 12, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4946), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2632), 26, anon_sym_as, - ACTIONS(5006), 1, anon_sym_COMMA, - ACTIONS(5018), 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_PLUS_PLUS, - ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, anon_sym_CARET, - ACTIONS(5024), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5026), 1, anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, anon_sym_or, - STATE(1625), 1, - sym_block, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(3880), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5014), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5030), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5032), 2, anon_sym_in, anon_sym_BANGin, - STATE(2391), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5008), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5012), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5016), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5010), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [56258] = 5, + anon_sym_COLON_EQ, + [56406] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2392), 2, + STATE(2432), 2, sym_line_comment, sym_block_comment, - ACTIONS(2089), 13, + ACTIONS(3046), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -239283,10 +242806,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2087), 31, + ACTIONS(3044), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239318,17 +242842,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56317] = 5, + [56465] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2393), 2, + STATE(2433), 2, sym_line_comment, sym_block_comment, - ACTIONS(2265), 13, + ACTIONS(3054), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -239337,10 +242860,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2263), 31, + ACTIONS(3052), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239372,17 +242896,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56376] = 5, + [56524] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2394), 2, + STATE(2434), 2, sym_line_comment, sym_block_comment, - ACTIONS(2181), 13, + ACTIONS(2771), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -239391,10 +242914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2179), 31, + ACTIONS(2769), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239426,90 +242950,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56435] = 24, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4964), 1, - anon_sym_LPAREN, - ACTIONS(4966), 1, - anon_sym_LBRACK, - ACTIONS(4968), 1, - anon_sym_QMARK, - ACTIONS(4970), 1, - anon_sym_BANG, - ACTIONS(4976), 1, - anon_sym_as, - ACTIONS(4986), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4988), 1, - anon_sym_DASH_DASH, - ACTIONS(4994), 1, - anon_sym_or, - ACTIONS(5044), 1, - anon_sym_AMP_AMP, - ACTIONS(5060), 1, - anon_sym_PIPE_PIPE, - STATE(2553), 1, - sym_or_block, - STATE(2554), 1, - sym_argument_list, - STATE(4167), 1, - sym_type_parameters, - ACTIONS(4962), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4972), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5042), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2395), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5038), 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_SEMI, - anon_sym_RBRACE, - ACTIONS(5040), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5000), 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, - [56532] = 5, + [56583] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2396), 2, + STATE(2435), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 13, + ACTIONS(2765), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -239518,10 +242968,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2227), 31, + ACTIONS(2763), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239553,17 +243004,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56591] = 5, + [56642] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2397), 2, + STATE(2436), 2, sym_line_comment, sym_block_comment, - ACTIONS(2863), 13, + ACTIONS(2749), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -239572,10 +243022,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2861), 31, + ACTIONS(2747), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239607,17 +243058,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56650] = 5, + [56701] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2398), 2, + STATE(2437), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 13, + ACTIONS(2723), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -239626,10 +243076,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2505), 31, + ACTIONS(2721), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239661,47 +243112,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56709] = 5, - ACTIONS(3), 1, + [56760] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2399), 2, + ACTIONS(1875), 1, + anon_sym_LBRACK, + STATE(2438), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 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(2053), 31, + ACTIONS(1877), 43, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_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, @@ -239709,23 +243160,22 @@ 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, - [56768] = 5, + [56819] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2400), 2, + STATE(2439), 2, sym_line_comment, sym_block_comment, - ACTIONS(2151), 13, + ACTIONS(2387), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -239734,10 +243184,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2149), 31, + ACTIONS(2385), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239769,17 +243220,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56827] = 5, + [56878] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2401), 2, + STATE(2440), 2, sym_line_comment, sym_block_comment, - ACTIONS(3021), 13, + ACTIONS(2105), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -239788,10 +243238,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3019), 31, + ACTIONS(2103), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239823,19 +243274,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56886] = 6, + [56937] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, - anon_sym_BANG, - STATE(2402), 2, + STATE(2441), 2, sym_line_comment, sym_block_comment, - ACTIONS(2585), 12, + ACTIONS(2621), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -239843,10 +243291,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON, anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2583), 31, + ACTIONS(2619), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239878,18 +243328,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56947] = 6, + [56996] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2057), 1, - anon_sym_DOT, - STATE(2403), 2, + STATE(2442), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 12, - anon_sym_PIPE, + ACTIONS(2465), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -239898,10 +243346,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2157), 31, + ACTIONS(2463), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239933,47 +243382,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57008] = 5, - ACTIONS(3), 1, + [57055] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2404), 2, + ACTIONS(1835), 1, + anon_sym_LBRACK, + STATE(2443), 2, sym_line_comment, sym_block_comment, - ACTIONS(2217), 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(2215), 31, + ACTIONS(1837), 43, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_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, @@ -239981,104 +243430,168 @@ 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, - [57067] = 32, - ACTIONS(3), 1, + [57114] = 24, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3488), 1, - anon_sym_COLON_EQ, - ACTIONS(4938), 1, + ACTIONS(4990), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4994), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4996), 1, anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5006), 1, - anon_sym_COMMA, - ACTIONS(5018), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_CARET, - ACTIONS(5024), 1, + ACTIONS(5016), 1, anon_sym_AMP_AMP, - ACTIONS(5026), 1, + ACTIONS(5018), 1, anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, + ACTIONS(5020), 1, anon_sym_or, - ACTIONS(5070), 1, - anon_sym_LBRACE, - STATE(2351), 1, + STATE(2518), 1, sym_argument_list, - STATE(2359), 1, + STATE(2521), 1, sym_or_block, - STATE(2697), 1, - sym_block, - STATE(3880), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4149), 1, + STATE(4106), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4988), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5014), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5030), 2, + ACTIONS(4998), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(5022), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5032), 2, + ACTIONS(5024), 2, anon_sym_in, anon_sym_BANGin, - STATE(2405), 2, + STATE(2444), 2, sym_line_comment, sym_block_comment, - ACTIONS(5008), 3, - anon_sym_PIPE, + ACTIONS(5006), 4, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5012), 3, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(1779), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5010), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5008), 8, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5016), 4, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [57211] = 24, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4990), 1, + anon_sym_LPAREN, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(4994), 1, + anon_sym_QMARK, + ACTIONS(4996), 1, + anon_sym_BANG, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5016), 1, + anon_sym_AMP_AMP, + ACTIONS(5018), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5020), 1, + anon_sym_or, + STATE(2518), 1, + sym_argument_list, + STATE(2521), 1, + sym_or_block, + STATE(4106), 1, + sym_type_parameters, + ACTIONS(4988), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4998), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(5022), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5024), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2445), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5006), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(1775), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5010), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5010), 5, + ACTIONS(5008), 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, - [57180] = 5, + [57308] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2406), 2, + STATE(2446), 2, sym_line_comment, sym_block_comment, - ACTIONS(2175), 13, + ACTIONS(2421), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -240087,10 +243600,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2173), 31, + ACTIONS(2419), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240122,17 +243636,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57239] = 5, + [57367] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2407), 2, + ACTIONS(3005), 1, + anon_sym_DOT, + STATE(2447), 2, sym_line_comment, sym_block_comment, - ACTIONS(2133), 13, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(2937), 12, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -240141,10 +243655,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2131), 31, + ACTIONS(2935), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240176,98 +243691,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57298] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3488), 1, - anon_sym_COLON_EQ, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5006), 1, - anon_sym_COMMA, - ACTIONS(5018), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, - anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_CARET, - ACTIONS(5024), 1, - anon_sym_AMP_AMP, - ACTIONS(5026), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5072), 1, - anon_sym_LBRACE, - STATE(1702), 1, - sym_block, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(3880), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5014), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5032), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2408), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5008), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5012), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5016), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5010), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [57411] = 5, + [57428] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2409), 2, + STATE(2448), 2, sym_line_comment, sym_block_comment, - ACTIONS(2163), 13, + ACTIONS(2095), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -240276,10 +243709,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2161), 31, + ACTIONS(2093), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240311,17 +243745,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57470] = 5, + [57487] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2410), 2, + STATE(2449), 2, sym_line_comment, sym_block_comment, - ACTIONS(2225), 13, + ACTIONS(3003), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -240330,10 +243763,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2223), 31, + ACTIONS(3001), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240365,90 +243799,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57529] = 24, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4964), 1, - anon_sym_LPAREN, - ACTIONS(4966), 1, - anon_sym_LBRACK, - ACTIONS(4968), 1, - anon_sym_QMARK, - ACTIONS(4970), 1, - anon_sym_BANG, - ACTIONS(4976), 1, - anon_sym_as, - ACTIONS(4986), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4988), 1, - anon_sym_DASH_DASH, - ACTIONS(4990), 1, - anon_sym_AMP_AMP, - ACTIONS(4992), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4994), 1, - anon_sym_or, - STATE(2553), 1, - sym_or_block, - STATE(2554), 1, - sym_argument_list, - STATE(4167), 1, - sym_type_parameters, - ACTIONS(4962), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4972), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4998), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2411), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4980), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1779), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4984), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4982), 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, - [57626] = 5, + [57546] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2412), 2, + STATE(2450), 2, sym_line_comment, sym_block_comment, - ACTIONS(3056), 13, + ACTIONS(2683), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -240457,10 +243817,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3054), 31, + ACTIONS(2681), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240492,17 +243853,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57685] = 5, + [57605] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2413), 2, + STATE(2451), 2, sym_line_comment, sym_block_comment, - ACTIONS(3015), 13, + ACTIONS(2457), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -240511,10 +243871,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3013), 31, + ACTIONS(2455), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240546,17 +243907,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57744] = 5, + [57664] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2414), 2, + STATE(2452), 2, sym_line_comment, sym_block_comment, - ACTIONS(3011), 13, + ACTIONS(2449), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -240565,10 +243925,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3009), 31, + ACTIONS(2447), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240600,17 +243961,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57803] = 5, + [57723] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2415), 2, + STATE(2453), 2, sym_line_comment, sym_block_comment, - ACTIONS(2741), 13, + ACTIONS(3062), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -240619,10 +243979,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2739), 31, + ACTIONS(3060), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240654,106 +244015,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57862] = 24, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4964), 1, - anon_sym_LPAREN, - ACTIONS(4966), 1, - anon_sym_LBRACK, - ACTIONS(4968), 1, - anon_sym_QMARK, - ACTIONS(4970), 1, - anon_sym_BANG, - ACTIONS(4976), 1, - anon_sym_as, - ACTIONS(4986), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4988), 1, - anon_sym_DASH_DASH, - ACTIONS(4990), 1, - anon_sym_AMP_AMP, - ACTIONS(4992), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4994), 1, - anon_sym_or, - STATE(2553), 1, - sym_or_block, - STATE(2554), 1, - sym_argument_list, - STATE(4167), 1, - sym_type_parameters, - ACTIONS(4962), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4972), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4998), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2416), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4980), 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(4984), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4982), 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, - [57959] = 6, + [57782] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2031), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2417), 2, + STATE(2454), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 12, + ACTIONS(2341), 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_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1807), 29, + ACTIONS(2339), 31, anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -240764,7 +244052,6 @@ 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, @@ -240780,122 +244067,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, - [58019] = 24, + [57841] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1791), 1, - anon_sym_DOT_DOT, - ACTIONS(5074), 1, - anon_sym_DOT, - ACTIONS(5076), 1, - anon_sym_LPAREN, - ACTIONS(5088), 1, - anon_sym_LBRACK, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5092), 1, - anon_sym_BANG, - ACTIONS(5094), 1, - anon_sym_LBRACK2, - ACTIONS(5096), 1, - anon_sym_CARET, - ACTIONS(5098), 1, - anon_sym_AMP_AMP, - ACTIONS(5100), 1, - anon_sym_QMARK_DOT, - ACTIONS(5102), 1, - anon_sym_POUND_LBRACK, - STATE(2725), 1, - sym_or_block, - STATE(2731), 1, - sym_argument_list, - STATE(4080), 1, - sym_type_parameters, - ACTIONS(5084), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5104), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2418), 2, + STATE(2455), 2, sym_line_comment, sym_block_comment, - ACTIONS(5078), 3, - anon_sym_PIPE, + ACTIONS(2337), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5082), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5086), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5080), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1789), 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, - [58115] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1897), 1, - anon_sym_LBRACK, - STATE(2552), 1, - sym_type_parameters, - STATE(2419), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1899), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2335), 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, @@ -240907,491 +244121,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58175] = 25, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(2157), 1, - anon_sym_LBRACK, - ACTIONS(3430), 1, - sym_identifier, - ACTIONS(3432), 1, - anon_sym_LPAREN, - ACTIONS(3434), 1, - anon_sym_fn, - ACTIONS(3436), 1, - anon_sym_STAR, - ACTIONS(3438), 1, - anon_sym_struct, - ACTIONS(3440), 1, - anon_sym_QMARK, - ACTIONS(3442), 1, - anon_sym_BANG, - ACTIONS(3444), 1, - anon_sym_LBRACK2, - ACTIONS(3446), 1, - anon_sym_AMP, - ACTIONS(3448), 1, - anon_sym_shared, - ACTIONS(3450), 1, - anon_sym_map_LBRACK, - ACTIONS(3452), 1, - anon_sym_chan, - ACTIONS(3454), 1, - anon_sym_thread, - ACTIONS(3456), 1, - anon_sym_atomic, - STATE(3337), 1, - sym_plain_type, - STATE(4356), 1, - sym_reference_expression, - STATE(2420), 2, - sym_line_comment, - sym_block_comment, - STATE(3302), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3360), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(2159), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - STATE(3354), 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, - [58273] = 23, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - sym_identifier, - ACTIONS(3432), 1, - anon_sym_LPAREN, - ACTIONS(3434), 1, - anon_sym_fn, - ACTIONS(3436), 1, - anon_sym_STAR, - ACTIONS(3438), 1, - anon_sym_struct, - ACTIONS(3440), 1, - anon_sym_QMARK, - ACTIONS(3442), 1, - anon_sym_BANG, - ACTIONS(3444), 1, - anon_sym_LBRACK2, - ACTIONS(3446), 1, - anon_sym_AMP, - ACTIONS(3448), 1, - anon_sym_shared, - ACTIONS(3450), 1, - anon_sym_map_LBRACK, - ACTIONS(3452), 1, - anon_sym_chan, - ACTIONS(3454), 1, - anon_sym_thread, - ACTIONS(3456), 1, - anon_sym_atomic, - STATE(3346), 1, - sym_plain_type, - STATE(4356), 1, - sym_reference_expression, - STATE(2421), 2, - sym_line_comment, - sym_block_comment, - STATE(3302), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3360), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(567), 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(3354), 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, - [58367] = 23, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - sym_identifier, - ACTIONS(3432), 1, - anon_sym_LPAREN, - ACTIONS(3434), 1, - anon_sym_fn, - ACTIONS(3436), 1, - anon_sym_STAR, - ACTIONS(3438), 1, - anon_sym_struct, - ACTIONS(3440), 1, - anon_sym_QMARK, - ACTIONS(3442), 1, - anon_sym_BANG, - ACTIONS(3444), 1, - anon_sym_LBRACK2, - ACTIONS(3446), 1, - anon_sym_AMP, - ACTIONS(3448), 1, - anon_sym_shared, - ACTIONS(3450), 1, - anon_sym_map_LBRACK, - ACTIONS(3452), 1, - anon_sym_chan, - ACTIONS(3454), 1, - anon_sym_thread, - ACTIONS(3456), 1, - anon_sym_atomic, - STATE(3363), 1, - sym_plain_type, - STATE(4356), 1, - sym_reference_expression, - STATE(2422), 2, - sym_line_comment, - sym_block_comment, - STATE(3302), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3360), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(597), 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(3354), 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, - [58461] = 30, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [57900] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1779), 1, - anon_sym_DOT_DOT, - ACTIONS(5074), 1, - anon_sym_DOT, - ACTIONS(5076), 1, - anon_sym_LPAREN, - ACTIONS(5088), 1, - anon_sym_LBRACK, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5092), 1, - anon_sym_BANG, - ACTIONS(5094), 1, - anon_sym_LBRACK2, - ACTIONS(5096), 1, - anon_sym_CARET, - ACTIONS(5098), 1, - anon_sym_AMP_AMP, - ACTIONS(5100), 1, - anon_sym_QMARK_DOT, - ACTIONS(5102), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5106), 1, - anon_sym_as, - ACTIONS(5108), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5110), 1, - anon_sym_DASH_DASH, - ACTIONS(5112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5114), 1, - anon_sym_or, - STATE(2725), 1, - sym_or_block, - STATE(2731), 1, - sym_argument_list, - STATE(4080), 1, - sym_type_parameters, - ACTIONS(5084), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5104), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5116), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2423), 2, + STATE(2456), 2, sym_line_comment, sym_block_comment, - ACTIONS(1777), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(5078), 3, - anon_sym_PIPE, + ACTIONS(2331), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5082), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5086), 4, + ACTIONS(2329), 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(5080), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [58569] = 24, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4964), 1, - anon_sym_LPAREN, - ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4968), 1, - anon_sym_QMARK, - ACTIONS(4970), 1, - anon_sym_BANG, - ACTIONS(4976), 1, - anon_sym_as, - ACTIONS(4986), 1, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, - ACTIONS(4988), 1, anon_sym_DASH_DASH, - ACTIONS(4994), 1, - anon_sym_or, - ACTIONS(5044), 1, - anon_sym_AMP_AMP, - ACTIONS(5060), 1, - anon_sym_PIPE_PIPE, - STATE(2553), 1, - sym_or_block, - STATE(2554), 1, - sym_argument_list, - STATE(4167), 1, - sym_type_parameters, - ACTIONS(4962), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4972), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5042), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2424), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3540), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - ACTIONS(5038), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, - ACTIONS(5040), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5000), 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, - [58665] = 24, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4964), 1, - anon_sym_LPAREN, - ACTIONS(4966), 1, - anon_sym_LBRACK, - ACTIONS(4968), 1, - anon_sym_QMARK, - ACTIONS(4970), 1, - anon_sym_BANG, - ACTIONS(4976), 1, - anon_sym_as, - ACTIONS(4986), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4988), 1, - anon_sym_DASH_DASH, - ACTIONS(4994), 1, - anon_sym_or, - ACTIONS(5044), 1, anon_sym_AMP_AMP, - ACTIONS(5060), 1, anon_sym_PIPE_PIPE, - STATE(2553), 1, - sym_or_block, - STATE(2554), 1, - sym_argument_list, - STATE(4167), 1, - sym_type_parameters, - ACTIONS(4962), 2, - anon_sym_DOT, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(4972), 2, - anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4996), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5042), 2, anon_sym_in, anon_sym_BANGin, - STATE(2425), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3564), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - ACTIONS(5038), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5040), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5000), 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, - [58761] = 18, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [57959] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, + ACTIONS(5100), 1, anon_sym_DOT, - ACTIONS(5076), 1, + ACTIONS(5102), 1, anon_sym_LPAREN, - ACTIONS(5088), 1, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(5090), 1, + ACTIONS(5112), 1, anon_sym_QMARK, - ACTIONS(5092), 1, + ACTIONS(5114), 1, anon_sym_BANG, - ACTIONS(5094), 1, + ACTIONS(5116), 1, anon_sym_LBRACK2, - ACTIONS(5100), 1, + ACTIONS(5118), 1, + anon_sym_CARET, + ACTIONS(5120), 1, anon_sym_QMARK_DOT, - ACTIONS(5102), 1, + ACTIONS(5122), 1, anon_sym_POUND_LBRACK, - STATE(2725), 1, + STATE(2703), 1, sym_or_block, - STATE(2731), 1, + STATE(2704), 1, sym_argument_list, - STATE(4080), 1, + STATE(4198), 1, sym_type_parameters, - STATE(2426), 2, + STATE(2457), 2, sym_line_comment, sym_block_comment, - ACTIONS(5082), 3, + ACTIONS(1793), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(5104), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5108), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 5, + ACTIONS(5106), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1791), 6, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(1789), 18, + ACTIONS(1791), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241402,7 +244238,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -241410,172 +244245,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58845] = 24, + [58047] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4964), 1, - anon_sym_LPAREN, - ACTIONS(4966), 1, + ACTIONS(1851), 1, anon_sym_LBRACK, - ACTIONS(4968), 1, - anon_sym_QMARK, - ACTIONS(4970), 1, - anon_sym_BANG, - ACTIONS(4976), 1, - anon_sym_as, - ACTIONS(4986), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4988), 1, - anon_sym_DASH_DASH, - ACTIONS(4994), 1, - anon_sym_or, - ACTIONS(5044), 1, - anon_sym_AMP_AMP, - ACTIONS(5060), 1, - anon_sym_PIPE_PIPE, - STATE(2553), 1, - sym_or_block, - STATE(2554), 1, - sym_argument_list, - STATE(4167), 1, - sym_type_parameters, - ACTIONS(4962), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4972), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5042), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2427), 2, + ACTIONS(5124), 1, + anon_sym_DOLLARelse, + STATE(2458), 2, sym_line_comment, sym_block_comment, - ACTIONS(3560), 4, + ACTIONS(1853), 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, - ACTIONS(5038), 4, - anon_sym_PIPE, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5040), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5000), 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, - [58941] = 23, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - sym_identifier, - ACTIONS(3432), 1, - anon_sym_LPAREN, - ACTIONS(3434), 1, - anon_sym_fn, - ACTIONS(3436), 1, - anon_sym_STAR, - ACTIONS(3438), 1, - anon_sym_struct, - ACTIONS(3440), 1, - anon_sym_QMARK, - ACTIONS(3442), 1, - anon_sym_BANG, - ACTIONS(3444), 1, - anon_sym_LBRACK2, - ACTIONS(3446), 1, - anon_sym_AMP, - ACTIONS(3448), 1, - anon_sym_shared, - ACTIONS(3450), 1, - anon_sym_map_LBRACK, - ACTIONS(3452), 1, - anon_sym_chan, - ACTIONS(3454), 1, - anon_sym_thread, - ACTIONS(3456), 1, - anon_sym_atomic, - STATE(3343), 1, - sym_plain_type, - STATE(4356), 1, - sym_reference_expression, - STATE(2428), 2, - sym_line_comment, - sym_block_comment, - STATE(3302), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3360), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(601), 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(3354), 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, - [59035] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_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, + [58107] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2713), 1, + ACTIONS(1943), 1, anon_sym_LBRACK, - ACTIONS(2029), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2429), 2, + STATE(2606), 1, + sym_type_parameters, + STATE(2459), 2, sym_line_comment, sym_block_comment, - ACTIONS(2715), 40, + ACTIONS(1945), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -241591,6 +244336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -241607,97 +244353,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59095] = 20, + [58167] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, + ACTIONS(4962), 1, anon_sym_DOT, - ACTIONS(5076), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(5088), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(5090), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(5092), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(5094), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(5096), 1, - anon_sym_CARET, - ACTIONS(5100), 1, + ACTIONS(4974), 1, anon_sym_QMARK_DOT, - ACTIONS(5102), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - STATE(2725), 1, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5042), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, + anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5136), 1, + anon_sym_CARET, + ACTIONS(5138), 1, + anon_sym_AMP_AMP, + ACTIONS(5140), 1, + anon_sym_PIPE_PIPE, + STATE(2408), 1, sym_or_block, - STATE(2731), 1, + STATE(2439), 1, sym_argument_list, - STATE(4080), 1, + STATE(4312), 1, sym_type_parameters, - STATE(2430), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1791), 3, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(5078), 3, - anon_sym_PIPE, + ACTIONS(5142), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2460), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5082), 3, + anon_sym_PIPE, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 5, + ACTIONS(1773), 4, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(5134), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5128), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1789), 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, - [59183] = 6, + [58273] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2060), 1, + ACTIONS(2641), 1, anon_sym_LBRACK, - ACTIONS(2159), 1, + ACTIONS(1845), 2, anon_sym_LBRACE, - STATE(2431), 2, + anon_sym_COMMA, + STATE(2461), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 41, + ACTIONS(2643), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -241713,6 +244467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -241729,268 +244484,488 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59243] = 23, + [58333] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1791), 1, - anon_sym_DOT_DOT, - ACTIONS(5074), 1, + ACTIONS(4962), 1, anon_sym_DOT, - ACTIONS(5076), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(5088), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(5090), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(5092), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(5094), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(5096), 1, - anon_sym_CARET, - ACTIONS(5100), 1, + ACTIONS(4974), 1, anon_sym_QMARK_DOT, - ACTIONS(5102), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - STATE(2725), 1, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5042), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, + anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5136), 1, + anon_sym_CARET, + ACTIONS(5138), 1, + anon_sym_AMP_AMP, + ACTIONS(5140), 1, + anon_sym_PIPE_PIPE, + STATE(2408), 1, sym_or_block, - STATE(2731), 1, + STATE(2439), 1, sym_argument_list, - STATE(4080), 1, + STATE(4312), 1, sym_type_parameters, - ACTIONS(5084), 2, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5104), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - STATE(2432), 2, + STATE(2462), 2, sym_line_comment, sym_block_comment, - ACTIONS(5078), 3, - anon_sym_PIPE, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5082), 3, + anon_sym_PIPE, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5086), 4, + ACTIONS(1777), 4, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5080), 5, + ACTIONS(5128), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [58439] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4974), 1, + anon_sym_QMARK_DOT, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + STATE(2463), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5130), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1767), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(5128), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1789), 11, + ACTIONS(1795), 19, + anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + 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, - [59337] = 6, + anon_sym_in, + anon_sym_BANGin, + anon_sym_DOT_DOT, + [58523] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2031), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2433), 2, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4974), 1, + anon_sym_QMARK_DOT, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5136), 1, + anon_sym_CARET, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(1767), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2464), 2, sym_line_comment, sym_block_comment, - ACTIONS(2715), 12, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5130), 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(2713), 29, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5128), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1795), 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_DOT_DOT, - [59397] = 30, + [58611] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1765), 1, - anon_sym_DOT_DOT, - ACTIONS(5074), 1, + ACTIONS(4962), 1, anon_sym_DOT, - ACTIONS(5076), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(5088), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(5090), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(5092), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(5094), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(5096), 1, - anon_sym_CARET, - ACTIONS(5098), 1, - anon_sym_AMP_AMP, - ACTIONS(5100), 1, + ACTIONS(4974), 1, anon_sym_QMARK_DOT, - ACTIONS(5102), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5106), 1, + ACTIONS(5136), 1, + anon_sym_CARET, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(5132), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5142), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2465), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5126), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5130), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5134), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5128), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1795), 12, + anon_sym_SEMI, anon_sym_as, - ACTIONS(5108), 1, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, - ACTIONS(5110), 1, anon_sym_DASH_DASH, - ACTIONS(5112), 1, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(5114), 1, anon_sym_or, - STATE(2725), 1, + anon_sym_is, + anon_sym_BANGis, + anon_sym_DOT_DOT, + [58703] = 24, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4990), 1, + anon_sym_LPAREN, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(4994), 1, + anon_sym_QMARK, + ACTIONS(4996), 1, + anon_sym_BANG, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5020), 1, + anon_sym_or, + ACTIONS(5068), 1, + anon_sym_AMP_AMP, + ACTIONS(5070), 1, + anon_sym_PIPE_PIPE, + STATE(2518), 1, + sym_argument_list, + STATE(2521), 1, + sym_or_block, + STATE(4106), 1, + sym_type_parameters, + ACTIONS(4988), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4998), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(5022), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5072), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2466), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3554), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(5062), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5066), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5064), 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, + [58799] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4974), 1, + anon_sym_QMARK_DOT, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5136), 1, + anon_sym_CARET, + ACTIONS(5138), 1, + anon_sym_AMP_AMP, + STATE(2408), 1, sym_or_block, - STATE(2731), 1, + STATE(2439), 1, sym_argument_list, - STATE(4080), 1, + STATE(4312), 1, sym_type_parameters, - ACTIONS(5084), 2, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5104), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5116), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2434), 2, + STATE(2467), 2, sym_line_comment, sym_block_comment, - ACTIONS(1763), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(5078), 3, - anon_sym_PIPE, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5082), 3, + anon_sym_PIPE, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5086), 4, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5080), 5, + ACTIONS(5128), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [59505] = 20, + ACTIONS(1795), 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_is, + anon_sym_BANGis, + anon_sym_DOT_DOT, + [58893] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, + ACTIONS(4962), 1, anon_sym_DOT, - ACTIONS(5076), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(5088), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(5090), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(5092), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(5094), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(5096), 1, - anon_sym_CARET, - ACTIONS(5100), 1, + ACTIONS(4974), 1, anon_sym_QMARK_DOT, - ACTIONS(5102), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - STATE(2725), 1, + ACTIONS(5136), 1, + anon_sym_CARET, + STATE(2408), 1, sym_or_block, - STATE(2731), 1, + STATE(2439), 1, sym_argument_list, - STATE(4080), 1, + STATE(4312), 1, sym_type_parameters, - STATE(2435), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1787), 3, + ACTIONS(1793), 2, anon_sym_LT, anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(5078), 3, - anon_sym_PIPE, + STATE(2468), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5082), 3, + anon_sym_PIPE, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 5, + ACTIONS(5128), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1785), 17, + ACTIONS(1791), 18, + 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_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -242000,124 +244975,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59593] = 6, - ACTIONS(497), 1, + anon_sym_DOT_DOT, + [58981] = 16, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1807), 1, + ACTIONS(5100), 1, + anon_sym_DOT, + ACTIONS(5102), 1, + anon_sym_LPAREN, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(2029), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2436), 2, + ACTIONS(5112), 1, + anon_sym_QMARK, + ACTIONS(5114), 1, + anon_sym_BANG, + ACTIONS(5116), 1, + anon_sym_LBRACK2, + ACTIONS(5120), 1, + anon_sym_QMARK_DOT, + ACTIONS(5122), 1, + anon_sym_POUND_LBRACK, + STATE(2703), 1, + sym_or_block, + STATE(2704), 1, + sym_argument_list, + STATE(4198), 1, + sym_type_parameters, + STATE(2469), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(1771), 9, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(1769), 23, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59653] = 24, + [59061] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4964), 1, + ACTIONS(4990), 1, anon_sym_LPAREN, - ACTIONS(4966), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(4968), 1, + ACTIONS(4994), 1, anon_sym_QMARK, - ACTIONS(4970), 1, + ACTIONS(4996), 1, anon_sym_BANG, - ACTIONS(4976), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(4986), 1, + ACTIONS(5012), 1, anon_sym_PLUS_PLUS, - ACTIONS(4988), 1, + ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(4994), 1, + ACTIONS(5020), 1, anon_sym_or, - ACTIONS(5044), 1, + ACTIONS(5068), 1, anon_sym_AMP_AMP, - ACTIONS(5060), 1, + ACTIONS(5070), 1, anon_sym_PIPE_PIPE, - STATE(2553), 1, - sym_or_block, - STATE(2554), 1, + STATE(2518), 1, sym_argument_list, - STATE(4167), 1, + STATE(2521), 1, + sym_or_block, + STATE(4106), 1, sym_type_parameters, - ACTIONS(4962), 2, + ACTIONS(4988), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4972), 2, + ACTIONS(4998), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4996), 2, + ACTIONS(5022), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5042), 2, + ACTIONS(5072), 2, anon_sym_in, anon_sym_BANGin, - STATE(2437), 2, + STATE(2470), 2, sym_line_comment, sym_block_comment, - ACTIONS(3556), 4, + ACTIONS(3560), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(5038), 4, - anon_sym_PIPE, + anon_sym_SEMI, + ACTIONS(5062), 4, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(5040), 6, + ACTIONS(5066), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5000), 8, + ACTIONS(5064), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -242126,23 +245112,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [59749] = 7, + [59157] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2060), 2, + ACTIONS(1892), 2, anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(2157), 2, + ACTIONS(2093), 2, anon_sym_LBRACE, anon_sym_COMMA, - STATE(2438), 2, + STATE(2471), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 12, + ACTIONS(1887), 12, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -242150,10 +245135,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2053), 27, + ACTIONS(1885), 27, anon_sym_SEMI, anon_sym_as, anon_sym_LPAREN, @@ -242181,203 +245167,471 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_DOT_DOT, - [59811] = 29, + [59219] = 23, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3434), 1, + sym_identifier, + ACTIONS(3436), 1, + anon_sym_LPAREN, + ACTIONS(3438), 1, + anon_sym_fn, + ACTIONS(3440), 1, + anon_sym_STAR, + ACTIONS(3442), 1, + anon_sym_struct, + ACTIONS(3444), 1, + anon_sym_QMARK, + ACTIONS(3446), 1, + anon_sym_BANG, + ACTIONS(3448), 1, + anon_sym_LBRACK2, + ACTIONS(3450), 1, + anon_sym_AMP, + ACTIONS(3452), 1, + anon_sym_shared, + ACTIONS(3454), 1, + anon_sym_map_LBRACK, + ACTIONS(3456), 1, + anon_sym_chan, + ACTIONS(3458), 1, + anon_sym_thread, + ACTIONS(3460), 1, + anon_sym_atomic, + STATE(3410), 1, + sym_plain_type, + STATE(4406), 1, + sym_reference_expression, + STATE(2472), 2, + sym_line_comment, + sym_block_comment, + STATE(3360), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3404), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(567), 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(3401), 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, + [59313] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(1835), 1, + anon_sym_LBRACK, + ACTIONS(1845), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2473), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1837), 40, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + 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_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_PIPE, + anon_sym_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, + [59373] = 23, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3434), 1, + sym_identifier, + ACTIONS(3436), 1, + anon_sym_LPAREN, + ACTIONS(3438), 1, + anon_sym_fn, + ACTIONS(3440), 1, + anon_sym_STAR, + ACTIONS(3442), 1, + anon_sym_struct, + ACTIONS(3444), 1, + anon_sym_QMARK, + ACTIONS(3446), 1, + anon_sym_BANG, + ACTIONS(3448), 1, + anon_sym_LBRACK2, + ACTIONS(3450), 1, + anon_sym_AMP, + ACTIONS(3452), 1, + anon_sym_shared, + ACTIONS(3454), 1, + anon_sym_map_LBRACK, + ACTIONS(3456), 1, + anon_sym_chan, + ACTIONS(3458), 1, + anon_sym_thread, + ACTIONS(3460), 1, + anon_sym_atomic, + STATE(3409), 1, + sym_plain_type, + STATE(4406), 1, + sym_reference_expression, + STATE(2474), 2, + sym_line_comment, + sym_block_comment, + STATE(3360), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3404), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(605), 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(3401), 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, + [59467] = 23, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3434), 1, + sym_identifier, + ACTIONS(3436), 1, + anon_sym_LPAREN, + ACTIONS(3438), 1, + anon_sym_fn, + ACTIONS(3440), 1, + anon_sym_STAR, + ACTIONS(3442), 1, + anon_sym_struct, + ACTIONS(3444), 1, + anon_sym_QMARK, + ACTIONS(3446), 1, + anon_sym_BANG, + ACTIONS(3448), 1, + anon_sym_LBRACK2, + ACTIONS(3450), 1, + anon_sym_AMP, + ACTIONS(3452), 1, + anon_sym_shared, + ACTIONS(3454), 1, + anon_sym_map_LBRACK, + ACTIONS(3456), 1, + anon_sym_chan, + ACTIONS(3458), 1, + anon_sym_thread, + ACTIONS(3460), 1, + anon_sym_atomic, + STATE(3422), 1, + sym_plain_type, + STATE(4406), 1, + sym_reference_expression, + STATE(2475), 2, + sym_line_comment, + sym_block_comment, + STATE(3360), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3404), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(601), 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(3401), 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, + [59561] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(1775), 1, + anon_sym_DOT_DOT, + ACTIONS(5100), 1, anon_sym_DOT, - ACTIONS(4938), 1, + ACTIONS(5102), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(5112), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(5114), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(5116), 1, anon_sym_LBRACK2, - ACTIONS(4948), 1, + ACTIONS(5118), 1, + anon_sym_CARET, + ACTIONS(5120), 1, anon_sym_QMARK_DOT, - ACTIONS(4950), 1, + ACTIONS(5122), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5150), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5152), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5128), 1, - anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5154), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(5156), 1, anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5158), 1, + anon_sym_or, + STATE(2703), 1, sym_or_block, - STATE(4149), 1, + STATE(2704), 1, + sym_argument_list, + STATE(4198), 1, sym_type_parameters, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5124), 2, + ACTIONS(5146), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5160), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5162), 2, anon_sym_in, anon_sym_BANGin, - STATE(2439), 2, + STATE(2476), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(1773), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + ACTIONS(5104), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(5108), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1763), 4, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - ACTIONS(5126), 4, + ACTIONS(5148), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, + ACTIONS(5106), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [59917] = 29, + [59669] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(1779), 1, + anon_sym_DOT_DOT, + ACTIONS(5100), 1, anon_sym_DOT, - ACTIONS(4938), 1, + ACTIONS(5102), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(5112), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(5114), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(5116), 1, anon_sym_LBRACK2, - ACTIONS(4948), 1, + ACTIONS(5118), 1, + anon_sym_CARET, + ACTIONS(5120), 1, anon_sym_QMARK_DOT, - ACTIONS(4950), 1, + ACTIONS(5122), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5150), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5152), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5128), 1, - anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5154), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(5156), 1, anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5158), 1, + anon_sym_or, + STATE(2703), 1, sym_or_block, - STATE(4149), 1, + STATE(2704), 1, + sym_argument_list, + STATE(4198), 1, sym_type_parameters, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5124), 2, + ACTIONS(5146), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5160), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5162), 2, anon_sym_in, anon_sym_BANGin, - STATE(2440), 2, + STATE(2477), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(1777), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + ACTIONS(5104), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(5108), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1777), 4, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - ACTIONS(5126), 4, + ACTIONS(5148), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, + ACTIONS(5106), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [60023] = 6, - ACTIONS(497), 1, + [59777] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2077), 1, - anon_sym_LBRACK, - ACTIONS(5136), 1, - anon_sym_DOLLARelse, - STATE(2441), 2, + ACTIONS(1847), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2478), 2, sym_line_comment, sym_block_comment, - ACTIONS(2079), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(1837), 12, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1835), 29, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -242389,106 +245643,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60083] = 6, + anon_sym_DOT_DOT, + [59837] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2060), 2, - anon_sym_LBRACE, + ACTIONS(5100), 1, + anon_sym_DOT, + ACTIONS(5102), 1, + anon_sym_LPAREN, + ACTIONS(5110), 1, anon_sym_LBRACK, - STATE(2442), 2, + ACTIONS(5112), 1, + anon_sym_QMARK, + ACTIONS(5114), 1, + anon_sym_BANG, + ACTIONS(5116), 1, + anon_sym_LBRACK2, + ACTIONS(5120), 1, + anon_sym_QMARK_DOT, + ACTIONS(5122), 1, + anon_sym_POUND_LBRACK, + STATE(2703), 1, + sym_or_block, + STATE(2704), 1, + sym_argument_list, + STATE(4198), 1, + sym_type_parameters, + STATE(2479), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 13, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(5108), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5106), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1767), 6, 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_PIPE, anon_sym_DOT_DOT, - ACTIONS(2053), 28, - anon_sym_SEMI, + ACTIONS(1795), 18, 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_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, - [60143] = 16, + [59921] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, + ACTIONS(5100), 1, anon_sym_DOT, - ACTIONS(5076), 1, + ACTIONS(5102), 1, anon_sym_LPAREN, - ACTIONS(5088), 1, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(5090), 1, + ACTIONS(5112), 1, anon_sym_QMARK, - ACTIONS(5092), 1, + ACTIONS(5114), 1, anon_sym_BANG, - ACTIONS(5094), 1, + ACTIONS(5116), 1, anon_sym_LBRACK2, - ACTIONS(5100), 1, + ACTIONS(5118), 1, + anon_sym_CARET, + ACTIONS(5120), 1, anon_sym_QMARK_DOT, - ACTIONS(5102), 1, + ACTIONS(5122), 1, anon_sym_POUND_LBRACK, - STATE(2725), 1, + STATE(2703), 1, sym_or_block, - STATE(2731), 1, + STATE(2704), 1, sym_argument_list, - STATE(4080), 1, + STATE(4198), 1, sym_type_parameters, - STATE(2443), 2, + STATE(2480), 2, sym_line_comment, sym_block_comment, - ACTIONS(1791), 9, - anon_sym_PIPE, + ACTIONS(1767), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(5104), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5108), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(1789), 23, + ACTIONS(5106), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1795), 17, 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, @@ -242496,10 +245771,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -242507,47 +245778,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60223] = 16, + [60009] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, + ACTIONS(5100), 1, anon_sym_DOT, - ACTIONS(5076), 1, + ACTIONS(5102), 1, anon_sym_LPAREN, - ACTIONS(5088), 1, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(5090), 1, + ACTIONS(5112), 1, anon_sym_QMARK, - ACTIONS(5092), 1, + ACTIONS(5114), 1, anon_sym_BANG, - ACTIONS(5094), 1, + ACTIONS(5116), 1, anon_sym_LBRACK2, - ACTIONS(5100), 1, + ACTIONS(5120), 1, anon_sym_QMARK_DOT, - ACTIONS(5102), 1, + ACTIONS(5122), 1, anon_sym_POUND_LBRACK, - STATE(2725), 1, + STATE(2703), 1, sym_or_block, - STATE(2731), 1, + STATE(2704), 1, sym_argument_list, - STATE(4080), 1, + STATE(4198), 1, sym_type_parameters, - STATE(2444), 2, + STATE(2481), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 9, - anon_sym_PIPE, + ACTIONS(1789), 9, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(1767), 23, + ACTIONS(1787), 23, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -242571,130 +245842,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60303] = 18, + [60089] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_DOT, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4948), 1, - anon_sym_QMARK_DOT, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - STATE(2445), 2, + ACTIONS(1847), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2482), 2, sym_line_comment, sym_block_comment, - ACTIONS(5122), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1791), 5, - anon_sym_PIPE, + ACTIONS(2643), 12, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5120), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1789), 19, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2641), 29, anon_sym_SEMI, anon_sym_as, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_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, - [60387] = 20, + [60149] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(1767), 1, + anon_sym_DOT_DOT, + ACTIONS(5100), 1, anon_sym_DOT, - ACTIONS(4938), 1, + ACTIONS(5102), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(5112), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(5114), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(5116), 1, anon_sym_LBRACK2, - ACTIONS(4948), 1, + ACTIONS(5118), 1, + anon_sym_CARET, + ACTIONS(5120), 1, anon_sym_QMARK_DOT, - ACTIONS(4950), 1, + ACTIONS(5122), 1, anon_sym_POUND_LBRACK, - ACTIONS(5128), 1, - anon_sym_CARET, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2703), 1, sym_or_block, - STATE(4149), 1, + STATE(2704), 1, + sym_argument_list, + STATE(4198), 1, sym_type_parameters, - ACTIONS(1791), 2, + ACTIONS(5146), 2, anon_sym_LT, anon_sym_GT, - STATE(2446), 2, + ACTIONS(5162), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2483), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(5104), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(5108), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5120), 5, + ACTIONS(5148), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5106), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1789), 18, - anon_sym_SEMI, + ACTIONS(1795), 11, 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_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -242702,22 +245967,19 @@ 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_DOT_DOT, - [60475] = 6, + [60243] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2039), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(5138), 1, - anon_sym_DOLLARelse, - STATE(2447), 2, + ACTIONS(2095), 1, + anon_sym_LBRACE, + STATE(2484), 2, sym_line_comment, sym_block_comment, - ACTIONS(2041), 41, + ACTIONS(1887), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242727,7 +245989,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -242743,6 +246004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -242759,188 +246021,299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60535] = 22, - ACTIONS(3), 1, + [60303] = 24, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_DOT, - ACTIONS(4938), 1, + ACTIONS(4990), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4994), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4996), 1, anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4948), 1, - anon_sym_QMARK_DOT, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5128), 1, - anon_sym_CARET, - STATE(2351), 1, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5020), 1, + anon_sym_or, + ACTIONS(5068), 1, + anon_sym_AMP_AMP, + ACTIONS(5070), 1, + anon_sym_PIPE_PIPE, + STATE(2518), 1, sym_argument_list, - STATE(2359), 1, + STATE(2521), 1, sym_or_block, - STATE(4149), 1, + STATE(4106), 1, sym_type_parameters, - ACTIONS(5124), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(4988), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4998), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(5022), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5072), 2, anon_sym_in, anon_sym_BANGin, - STATE(2448), 2, + STATE(2485), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(3564), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(5062), 4, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5126), 4, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5066), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, + ACTIONS(5064), 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(1789), 12, + [60399] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2077), 1, + anon_sym_LBRACK, + ACTIONS(5164), 1, + anon_sym_DOLLARelse, + STATE(2486), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2079), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_COMMA, + 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_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_PIPE, + anon_sym_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_DOT_DOT, - [60627] = 23, + anon_sym_in, + anon_sym_BANGin, + [60459] = 24, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(1767), 1, + anon_sym_DOT_DOT, + ACTIONS(5100), 1, anon_sym_DOT, - ACTIONS(4938), 1, + ACTIONS(5102), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(5112), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(5114), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(5116), 1, anon_sym_LBRACK2, - ACTIONS(4948), 1, + ACTIONS(5118), 1, + anon_sym_CARET, + ACTIONS(5120), 1, anon_sym_QMARK_DOT, - ACTIONS(4950), 1, + ACTIONS(5122), 1, anon_sym_POUND_LBRACK, - ACTIONS(5128), 1, - anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5154), 1, anon_sym_AMP_AMP, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2703), 1, sym_or_block, - STATE(4149), 1, + STATE(2704), 1, + sym_argument_list, + STATE(4198), 1, sym_type_parameters, - ACTIONS(5124), 2, + ACTIONS(5146), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5162), 2, anon_sym_in, anon_sym_BANGin, - STATE(2449), 2, + STATE(2487), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(5104), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(5108), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + ACTIONS(5148), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, + ACTIONS(5106), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1789), 11, + ACTIONS(1795), 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, + [60555] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1892), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + STATE(2488), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1887), 13, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(1885), 28, anon_sym_SEMI, anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, 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_DOT_DOT, - [60721] = 16, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [60615] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, + ACTIONS(5100), 1, anon_sym_DOT, - ACTIONS(5076), 1, + ACTIONS(5102), 1, anon_sym_LPAREN, - ACTIONS(5088), 1, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(5090), 1, + ACTIONS(5112), 1, anon_sym_QMARK, - ACTIONS(5092), 1, + ACTIONS(5114), 1, anon_sym_BANG, - ACTIONS(5094), 1, + ACTIONS(5116), 1, anon_sym_LBRACK2, - ACTIONS(5100), 1, + ACTIONS(5120), 1, anon_sym_QMARK_DOT, - ACTIONS(5102), 1, + ACTIONS(5122), 1, anon_sym_POUND_LBRACK, - STATE(2725), 1, + STATE(2703), 1, sym_or_block, - STATE(2731), 1, + STATE(2704), 1, sym_argument_list, - STATE(4080), 1, + STATE(4198), 1, sym_type_parameters, - STATE(2450), 2, + STATE(2489), 2, sym_line_comment, sym_block_comment, - ACTIONS(1783), 9, - anon_sym_PIPE, + ACTIONS(1767), 9, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(1781), 23, + ACTIONS(1795), 23, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -242964,85 +246337,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60801] = 20, - ACTIONS(3), 1, + [60695] = 25, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(1887), 1, anon_sym_DOT, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(3434), 1, + sym_identifier, + ACTIONS(3436), 1, + anon_sym_LPAREN, + ACTIONS(3438), 1, + anon_sym_fn, + ACTIONS(3440), 1, + anon_sym_STAR, + ACTIONS(3442), 1, + anon_sym_struct, + ACTIONS(3444), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(3446), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(3448), 1, anon_sym_LBRACK2, - ACTIONS(4948), 1, - anon_sym_QMARK_DOT, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5128), 1, - anon_sym_CARET, - STATE(2351), 1, + ACTIONS(3450), 1, + anon_sym_AMP, + ACTIONS(3452), 1, + anon_sym_shared, + ACTIONS(3454), 1, + anon_sym_map_LBRACK, + ACTIONS(3456), 1, + anon_sym_chan, + ACTIONS(3458), 1, + anon_sym_thread, + ACTIONS(3460), 1, + anon_sym_atomic, + STATE(3398), 1, + sym_plain_type, + STATE(4406), 1, + sym_reference_expression, + STATE(2490), 2, + sym_line_comment, + sym_block_comment, + STATE(3360), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3404), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(2095), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + STATE(3401), 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, + [60793] = 24, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4990), 1, + anon_sym_LPAREN, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(4994), 1, + anon_sym_QMARK, + ACTIONS(4996), 1, + anon_sym_BANG, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5012), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5014), 1, + anon_sym_DASH_DASH, + ACTIONS(5020), 1, + anon_sym_or, + ACTIONS(5068), 1, + anon_sym_AMP_AMP, + ACTIONS(5070), 1, + anon_sym_PIPE_PIPE, + STATE(2518), 1, sym_argument_list, - STATE(2359), 1, + STATE(2521), 1, sym_or_block, - STATE(4149), 1, + STATE(4106), 1, sym_type_parameters, - ACTIONS(1787), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2451), 2, + ACTIONS(4988), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4998), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(5022), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5072), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2491), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(3568), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + ACTIONS(5062), 4, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5120), 5, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5066), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5064), 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(1785), 18, + [60889] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(1885), 1, + anon_sym_LBRACK, + STATE(2492), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1887), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_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_RBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_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, - [60889] = 5, + [60946] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2452), 2, + STATE(2493), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 13, + ACTIONS(1877), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -243050,11 +246551,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(1887), 29, + ACTIONS(1875), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -243084,17 +246586,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60946] = 5, + [61003] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2881), 1, + ACTIONS(2431), 1, anon_sym_LBRACK, - STATE(2453), 2, + STATE(2494), 2, sym_line_comment, sym_block_comment, - ACTIONS(2883), 41, + ACTIONS(2433), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243104,7 +246606,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -243120,6 +246621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -243136,49 +246638,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61003] = 7, - ACTIONS(3), 1, + [61060] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5140), 1, - anon_sym_else, - STATE(2664), 1, - sym_else_branch, - STATE(2454), 2, + ACTIONS(2343), 1, + anon_sym_LBRACK, + STATE(2495), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 13, + ACTIONS(2345), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_PIPE, + anon_sym_as, + anon_sym_COMMA, + 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_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_PIPE, anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(1803), 27, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [61117] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2349), 1, + anon_sym_LBRACK, + STATE(2496), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2351), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_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_PIPE, + anon_sym_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, @@ -243190,49 +246742,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61064] = 7, - ACTIONS(3), 1, + [61174] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5140), 1, - anon_sym_else, - STATE(2663), 1, - sym_else_branch, - STATE(2455), 2, + ACTIONS(2355), 1, + anon_sym_LBRACK, + STATE(2497), 2, sym_line_comment, sym_block_comment, - ACTIONS(1799), 13, + ACTIONS(2357), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_PIPE, + anon_sym_as, + anon_sym_COMMA, + 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_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_PIPE, anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(1797), 27, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [61231] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2423), 1, + anon_sym_LBRACK, + STATE(2498), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2425), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_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_PIPE, + anon_sym_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, @@ -243244,162 +246846,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61125] = 19, - ACTIONS(3), 1, + [61288] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(2927), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5022), 1, - anon_sym_CARET, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(1791), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2456), 2, + STATE(2499), 2, sym_line_comment, sym_block_comment, - ACTIONS(5008), 3, - anon_sym_PIPE, + ACTIONS(2929), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5012), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5010), 5, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1789), 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_PIPE, + anon_sym_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, - [61210] = 21, - ACTIONS(3), 1, + [61345] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(2939), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5022), 1, - anon_sym_CARET, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5014), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5032), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2457), 2, + STATE(2500), 2, sym_line_comment, sym_block_comment, - ACTIONS(5008), 3, - anon_sym_PIPE, + ACTIONS(2941), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5012), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5016), 4, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5010), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_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(1789), 11, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_COLON_EQ, - [61299] = 6, + anon_sym_in, + anon_sym_BANGin, + [61402] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2885), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(3039), 1, - anon_sym_DOT, - STATE(2458), 2, + STATE(2501), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 40, + ACTIONS(2445), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -243415,6 +246985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -243431,169 +247002,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61358] = 30, - ACTIONS(3), 1, + [61459] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1779), 1, - anon_sym_DOT_DOT, - ACTIONS(5074), 1, + ACTIONS(3008), 1, + anon_sym_LBRACK, + STATE(2502), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3010), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(5076), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5088), 1, - anon_sym_LBRACK, - ACTIONS(5090), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, - ACTIONS(5092), 1, anon_sym_BANG, - ACTIONS(5094), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(5100), 1, - anon_sym_QMARK_DOT, - ACTIONS(5102), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5106), 1, - anon_sym_as, - ACTIONS(5108), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5110), 1, - anon_sym_DASH_DASH, - ACTIONS(5114), 1, - anon_sym_or, - ACTIONS(5152), 1, anon_sym_CARET, - ACTIONS(5154), 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(5156), 1, anon_sym_PIPE_PIPE, - STATE(2725), 1, - sym_or_block, - STATE(2731), 1, - sym_argument_list, - STATE(4080), 1, - sym_type_parameters, - ACTIONS(1777), 2, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - ACTIONS(5116), 2, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5148), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5158), 2, anon_sym_in, anon_sym_BANGin, - STATE(2459), 2, + [61516] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2473), 1, + anon_sym_LBRACK, + STATE(2503), 2, sym_line_comment, sym_block_comment, - ACTIONS(5142), 3, - anon_sym_PIPE, + ACTIONS(2475), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5146), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5150), 4, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5144), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [61465] = 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, + [61573] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5176), 1, + anon_sym_CARET, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2460), 2, + ACTIONS(5172), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5178), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2504), 2, sym_line_comment, sym_block_comment, - ACTIONS(5012), 3, + ACTIONS(5166), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5170), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1791), 5, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5010), 5, + ACTIONS(5174), 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, - ACTIONS(1789), 18, + ACTIONS(1795), 11, + 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_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_COLON_EQ, - [61546] = 6, + [61662] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2142), 1, + ACTIONS(2477), 1, anon_sym_LBRACK, - STATE(2461), 2, + STATE(2505), 2, sym_line_comment, sym_block_comment, - ACTIONS(2137), 6, + ACTIONS(2479), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2139), 35, 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, @@ -243609,6 +247209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -243625,17 +247226,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61605] = 5, + [61719] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2717), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - STATE(2462), 2, + STATE(2506), 2, sym_line_comment, sym_block_comment, - ACTIONS(2719), 41, + ACTIONS(2761), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243645,7 +247246,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -243661,6 +247261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -243677,17 +247278,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61662] = 5, + [61776] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2723), 1, + ACTIONS(2489), 1, anon_sym_LBRACK, - STATE(2463), 2, + STATE(2507), 2, sym_line_comment, sym_block_comment, - ACTIONS(2725), 41, + ACTIONS(2491), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243697,7 +247298,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -243713,6 +247313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -243729,69 +247330,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61719] = 5, - ACTIONS(497), 1, + [61833] = 19, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2727), 1, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, anon_sym_LBRACK, - STATE(2464), 2, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5176), 1, + anon_sym_CARET, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(1767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2508), 2, sym_line_comment, sym_block_comment, - ACTIONS(2729), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(5166), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + 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_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1795), 17, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + 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, + [61918] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4964), 1, anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2509), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5170), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1767), 5, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + ACTIONS(5168), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1795), 18, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [61999] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, anon_sym_QMARK, + ACTIONS(4970), 1, anon_sym_BANG, + ACTIONS(4972), 1, anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5042), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, + anon_sym_DASH_DASH, + ACTIONS(5046), 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(5048), 1, anon_sym_AMP_AMP, + ACTIONS(5050), 1, anon_sym_PIPE_PIPE, + ACTIONS(5052), 1, anon_sym_or, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5038), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5056), 2, anon_sym_in, anon_sym_BANGin, - [61776] = 5, + STATE(2510), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1773), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5032), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5036), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5040), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5034), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [62102] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2131), 1, + ACTIONS(2983), 1, anon_sym_LBRACK, - STATE(2465), 2, + STATE(2511), 2, sym_line_comment, sym_block_comment, - ACTIONS(2133), 41, + ACTIONS(2985), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243801,7 +247555,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -243817,6 +247570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -243833,17 +247587,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61833] = 5, + [62159] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2735), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - STATE(2466), 2, + STATE(2512), 2, sym_line_comment, sym_block_comment, - ACTIONS(2737), 41, + ACTIONS(2647), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243853,7 +247607,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -243869,6 +247622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -243885,17 +247639,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61890] = 5, + [62216] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2743), 1, + ACTIONS(2651), 1, anon_sym_LBRACK, - STATE(2467), 2, + STATE(2513), 2, sym_line_comment, sym_block_comment, - ACTIONS(2745), 41, + ACTIONS(2653), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243905,7 +247659,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -243921,6 +247674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -243937,17 +247691,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61947] = 5, + [62273] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2747), 1, + ACTIONS(2655), 1, anon_sym_LBRACK, - STATE(2468), 2, + STATE(2514), 2, sym_line_comment, sym_block_comment, - ACTIONS(2749), 41, + ACTIONS(2657), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243957,7 +247711,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -243973,6 +247726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -243989,17 +247743,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62004] = 5, + [62330] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2799), 1, + ACTIONS(2717), 1, anon_sym_LBRACK, - STATE(2469), 2, + STATE(2515), 2, sym_line_comment, sym_block_comment, - ACTIONS(2801), 41, + ACTIONS(2719), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244009,7 +247763,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -244025,6 +247778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -244041,17 +247795,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62061] = 5, + [62387] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2807), 1, + ACTIONS(2419), 1, anon_sym_LBRACK, - STATE(2470), 2, + STATE(2516), 2, sym_line_comment, sym_block_comment, - ACTIONS(2809), 41, + ACTIONS(2421), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244061,7 +247815,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -244077,6 +247830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -244093,69 +247847,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62118] = 5, - ACTIONS(497), 1, + [62444] = 28, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2811), 1, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, anon_sym_LBRACK, - STATE(2471), 2, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5042), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, + anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5176), 1, + anon_sym_CARET, + ACTIONS(5180), 1, + anon_sym_AMP_AMP, + ACTIONS(5182), 1, + anon_sym_PIPE_PIPE, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5172), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5178), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2517), 2, sym_line_comment, sym_block_comment, - ACTIONS(2813), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(1773), 3, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym_COLON_EQ, + ACTIONS(5166), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + anon_sym_PIPE, + ACTIONS(5170), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5174), 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(5168), 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, - [62175] = 5, + [62547] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2815), 1, + ACTIONS(2385), 1, anon_sym_LBRACK, - STATE(2472), 2, + STATE(2518), 2, sym_line_comment, sym_block_comment, - ACTIONS(2817), 41, + ACTIONS(2387), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244165,7 +247942,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -244181,6 +247957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -244197,146 +247974,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62232] = 5, - ACTIONS(497), 1, + [62604] = 28, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2853), 1, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, anon_sym_LBRACK, - STATE(2473), 2, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5042), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, + anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5176), 1, + anon_sym_CARET, + ACTIONS(5180), 1, + anon_sym_AMP_AMP, + ACTIONS(5182), 1, + anon_sym_PIPE_PIPE, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5172), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5178), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2519), 2, sym_line_comment, sym_block_comment, - ACTIONS(2855), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(1777), 3, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym_COLON_EQ, + ACTIONS(5166), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + anon_sym_PIPE, + ACTIONS(5170), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5174), 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(5168), 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, - [62289] = 30, + [62707] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1765), 1, - anon_sym_DOT_DOT, - ACTIONS(5074), 1, - anon_sym_DOT, - ACTIONS(5076), 1, + ACTIONS(3492), 1, + anon_sym_LBRACE, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(5088), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(5090), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(5092), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(5094), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(5100), 1, - anon_sym_QMARK_DOT, - ACTIONS(5102), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5106), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5108), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5110), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5114), 1, - anon_sym_or, - ACTIONS(5152), 1, + ACTIONS(5046), 1, anon_sym_CARET, - ACTIONS(5154), 1, + ACTIONS(5048), 1, anon_sym_AMP_AMP, - ACTIONS(5156), 1, + ACTIONS(5050), 1, anon_sym_PIPE_PIPE, - STATE(2725), 1, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5184), 1, + anon_sym_COMMA, + STATE(2408), 1, sym_or_block, - STATE(2731), 1, + STATE(2439), 1, sym_argument_list, - STATE(4080), 1, + STATE(3949), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4312), 1, sym_type_parameters, - ACTIONS(1763), 2, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - ACTIONS(5116), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5148), 2, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5158), 2, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5056), 2, anon_sym_in, anon_sym_BANGin, - STATE(2474), 2, + STATE(2520), 2, sym_line_comment, sym_block_comment, - ACTIONS(5142), 3, - anon_sym_PIPE, + ACTIONS(5032), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5146), 3, + anon_sym_PIPE, + ACTIONS(5036), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5150), 4, + ACTIONS(5040), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5144), 5, + ACTIONS(5034), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [62396] = 5, + [62814] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2173), 1, + ACTIONS(2381), 1, anon_sym_LBRACK, - STATE(2475), 2, + STATE(2521), 2, sym_line_comment, sym_block_comment, - ACTIONS(2175), 41, + ACTIONS(2383), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244346,7 +248146,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -244362,6 +248161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -244378,17 +248178,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62453] = 5, + [62871] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3023), 1, + ACTIONS(3012), 1, anon_sym_LBRACK, - STATE(2476), 2, + STATE(2522), 2, sym_line_comment, sym_block_comment, - ACTIONS(3025), 41, + ACTIONS(3014), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244398,7 +248198,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -244414,6 +248213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -244430,17 +248230,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62510] = 5, + [62928] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3027), 1, + ACTIONS(2935), 1, anon_sym_LBRACK, - STATE(2477), 2, + STATE(2523), 2, sym_line_comment, sym_block_comment, - ACTIONS(3029), 41, + ACTIONS(2937), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244450,7 +248250,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -244466,6 +248265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -244482,17 +248282,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62567] = 5, + [62985] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3492), 1, + anon_sym_SEMI, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5042), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, + anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5176), 1, + anon_sym_CARET, + ACTIONS(5180), 1, + anon_sym_AMP_AMP, + ACTIONS(5182), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5186), 1, + anon_sym_COMMA, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(3834), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5172), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5178), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2524), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5166), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5170), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5174), 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, + [63092] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3016), 1, anon_sym_LBRACK, - STATE(2478), 2, + STATE(2525), 2, sym_line_comment, sym_block_comment, - ACTIONS(3046), 41, + ACTIONS(3018), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244502,7 +248379,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -244518,6 +248394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -244534,17 +248411,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62624] = 5, + [63149] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2149), 1, + ACTIONS(2497), 1, anon_sym_LBRACK, - STATE(2479), 2, + ACTIONS(5188), 1, + anon_sym_BANG, + STATE(2526), 2, sym_line_comment, sym_block_comment, - ACTIONS(2151), 41, + ACTIONS(2499), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244554,7 +248433,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -244569,7 +248447,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_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -244586,17 +248464,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62681] = 5, + [63208] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3050), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - STATE(2480), 2, + STATE(2527), 2, sym_line_comment, sym_block_comment, - ACTIONS(3052), 41, + ACTIONS(3046), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244606,7 +248484,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -244622,6 +248499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -244638,17 +248516,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62738] = 5, + [63265] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3054), 1, + ACTIONS(2109), 1, anon_sym_LBRACK, - STATE(2481), 2, + STATE(2528), 2, sym_line_comment, sym_block_comment, - ACTIONS(3056), 41, + ACTIONS(2111), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244658,7 +248536,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -244674,6 +248551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -244690,17 +248568,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62795] = 5, + [63322] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2627), 1, + anon_sym_DOT_DOT, + STATE(2529), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2625), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON_EQ, + ACTIONS(2629), 12, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2632), 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, + [63383] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2179), 1, + ACTIONS(3052), 1, anon_sym_LBRACK, - STATE(2482), 2, + STATE(2530), 2, sym_line_comment, sym_block_comment, - ACTIONS(2181), 41, + ACTIONS(3054), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244710,7 +248642,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -244726,6 +248657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -244742,17 +248674,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62852] = 5, + [63440] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2819), 1, + ACTIONS(2319), 1, anon_sym_LBRACK, - STATE(2483), 2, + STATE(2531), 2, sym_line_comment, sym_block_comment, - ACTIONS(2821), 41, + ACTIONS(2321), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244762,7 +248694,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -244778,6 +248709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -244794,17 +248726,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62909] = 5, + [63497] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5042), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, + anon_sym_DASH_DASH, + ACTIONS(5046), 1, + anon_sym_CARET, + ACTIONS(5048), 1, + anon_sym_AMP_AMP, + ACTIONS(5050), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5052), 1, + anon_sym_or, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5038), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5056), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2532), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1777), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5032), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5036), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5040), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5034), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [63600] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2705), 1, + ACTIONS(3064), 1, anon_sym_LBRACK, - STATE(2484), 2, + STATE(2533), 2, sym_line_comment, sym_block_comment, - ACTIONS(2707), 41, + ACTIONS(3066), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244814,7 +248821,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -244830,6 +248836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -244846,17 +248853,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62966] = 5, + [63657] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2473), 1, + ACTIONS(1847), 1, anon_sym_LBRACK, - STATE(2485), 2, + STATE(2534), 2, sym_line_comment, sym_block_comment, - ACTIONS(2475), 41, + ACTIONS(1845), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244866,7 +248873,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -244882,6 +248888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -244898,17 +248905,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63023] = 5, + [63714] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2461), 1, + ACTIONS(2189), 1, anon_sym_LBRACK, - STATE(2486), 2, + STATE(2535), 2, sym_line_comment, sym_block_comment, - ACTIONS(2463), 41, + ACTIONS(2191), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244918,7 +248925,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -244934,6 +248940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -244950,17 +248957,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63080] = 5, + [63771] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, + ACTIONS(2763), 1, anon_sym_LBRACK, - STATE(2487), 2, + STATE(2536), 2, sym_line_comment, sym_block_comment, - ACTIONS(2457), 41, + ACTIONS(2765), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244970,7 +248977,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -244986,6 +248992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -245002,92 +249009,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63137] = 28, + [63828] = 19, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5176), 1, + anon_sym_CARET, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(1793), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2537), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5166), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + 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_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1791), 17, + anon_sym_SEMI, anon_sym_as, - ACTIONS(5018), 1, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_CARET, - ACTIONS(5024), 1, anon_sym_AMP_AMP, - ACTIONS(5026), 1, anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, anon_sym_or, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5014), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5032), 2, anon_sym_in, anon_sym_BANGin, - STATE(2488), 2, + anon_sym_COLON_EQ, + [63913] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(1845), 1, + anon_sym_LBRACE, + ACTIONS(2641), 1, + anon_sym_LBRACK, + STATE(2538), 2, sym_line_comment, sym_block_comment, - ACTIONS(1763), 3, - anon_sym_LBRACE, + ACTIONS(2643), 40, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5008), 3, - anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5012), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5016), 4, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5010), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [63240] = 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, + [63972] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2505), 1, + ACTIONS(2399), 1, anon_sym_LBRACK, - STATE(2489), 2, + STATE(2539), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 41, + ACTIONS(2401), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245097,7 +249148,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -245113,6 +249163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -245129,17 +249180,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63297] = 5, + [64029] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2861), 1, + ACTIONS(2897), 1, anon_sym_LBRACK, - STATE(2490), 2, + STATE(2540), 2, sym_line_comment, sym_block_comment, - ACTIONS(2863), 41, + ACTIONS(2899), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245149,7 +249200,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -245165,6 +249215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -245181,92 +249232,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63354] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5018), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, - anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_CARET, - ACTIONS(5024), 1, - anon_sym_AMP_AMP, - ACTIONS(5026), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, - anon_sym_or, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5014), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5032), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2491), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1777), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5008), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5012), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5016), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5010), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [63457] = 5, + [64086] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2227), 1, + ACTIONS(2777), 1, anon_sym_LBRACK, - STATE(2492), 2, + STATE(2541), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 41, + ACTIONS(2779), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245276,7 +249252,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -245292,6 +249267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -245308,160 +249284,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63514] = 30, - ACTIONS(3), 1, + [64143] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3488), 1, - anon_sym_LBRACE, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(2103), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5018), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, - anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_CARET, - ACTIONS(5024), 1, - anon_sym_AMP_AMP, - ACTIONS(5026), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5160), 1, - anon_sym_COMMA, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(3835), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5014), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5032), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2493), 2, + STATE(2542), 2, sym_line_comment, sym_block_comment, - ACTIONS(5008), 3, - anon_sym_PIPE, + ACTIONS(2105), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5012), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5016), 4, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5010), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [63621] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, - ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4946), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5022), 1, anon_sym_CARET, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(1787), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2494), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5008), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5012), 3, - anon_sym_SLASH, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5010), 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(1785), 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_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [63706] = 5, + [64200] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2183), 1, + ACTIONS(2979), 1, anon_sym_LBRACK, - STATE(2495), 2, + STATE(2543), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 41, + ACTIONS(2981), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245471,7 +249356,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -245487,6 +249371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -245503,17 +249388,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63763] = 5, + [64257] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2437), 1, + ACTIONS(2923), 1, anon_sym_LBRACK, - STATE(2496), 2, + STATE(2544), 2, sym_line_comment, sym_block_comment, - ACTIONS(2439), 41, + ACTIONS(2925), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245523,7 +249408,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -245539,6 +249423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -245555,17 +249440,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63820] = 5, + [64314] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2187), 1, + ACTIONS(2747), 1, anon_sym_LBRACK, - STATE(2497), 2, + STATE(2545), 2, sym_line_comment, sym_block_comment, - ACTIONS(2189), 41, + ACTIONS(2749), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245575,7 +249460,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -245591,6 +249475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -245607,17 +249492,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63877] = 5, + [64371] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2255), 1, + ACTIONS(2963), 1, anon_sym_LBRACK, - STATE(2498), 2, + STATE(2546), 2, sym_line_comment, sym_block_comment, - ACTIONS(2257), 41, + ACTIONS(2965), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245627,7 +249512,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -245643,6 +249527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -245659,81 +249544,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63934] = 17, - ACTIONS(3), 1, + [64428] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(2699), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2499), 2, + STATE(2547), 2, sym_line_comment, sym_block_comment, - ACTIONS(5164), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1791), 5, - anon_sym_PIPE, + ACTIONS(2701), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5162), 5, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1789), 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_PIPE, + anon_sym_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, - [64015] = 5, + [64485] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2239), 1, + ACTIONS(2721), 1, anon_sym_LBRACK, - STATE(2500), 2, + STATE(2548), 2, sym_line_comment, sym_block_comment, - ACTIONS(2241), 41, + ACTIONS(2723), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245743,7 +249616,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -245759,6 +249631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -245775,17 +249648,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64072] = 5, + [64542] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2231), 1, + ACTIONS(2931), 1, anon_sym_LBRACK, - STATE(2501), 2, + STATE(2549), 2, sym_line_comment, sym_block_comment, - ACTIONS(2233), 41, + ACTIONS(2933), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245795,7 +249668,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -245811,6 +249683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -245827,17 +249700,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64129] = 5, + [64599] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2502), 2, + STATE(2550), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 13, + ACTIONS(1837), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -245845,11 +249717,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(1807), 29, + ACTIONS(1835), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -245879,17 +249752,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64186] = 5, + [64656] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2117), 1, + ACTIONS(2619), 1, anon_sym_LBRACK, - STATE(2503), 2, + STATE(2551), 2, sym_line_comment, sym_block_comment, - ACTIONS(2119), 41, + ACTIONS(2621), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245899,7 +249772,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -245915,6 +249787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -245931,17 +249804,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64243] = 5, + [64713] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2451), 1, + ACTIONS(2959), 1, anon_sym_LBRACK, - STATE(2504), 2, + STATE(2552), 2, sym_line_comment, sym_block_comment, - ACTIONS(2453), 41, + ACTIONS(2961), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245951,7 +249824,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -245967,6 +249839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -245983,17 +249856,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64300] = 5, + [64770] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2199), 1, + ACTIONS(2463), 1, anon_sym_LBRACK, - STATE(2505), 2, + STATE(2553), 2, sym_line_comment, sym_block_comment, - ACTIONS(2201), 41, + ACTIONS(2465), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246003,7 +249876,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -246019,6 +249891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -246035,17 +249908,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64357] = 5, + [64827] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3064), 1, + ACTIONS(2947), 1, anon_sym_LBRACK, - STATE(2506), 2, + STATE(2554), 2, sym_line_comment, sym_block_comment, - ACTIONS(3066), 41, + ACTIONS(2949), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246055,7 +249928,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -246071,6 +249943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -246087,17 +249960,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64414] = 5, + [64884] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2153), 1, + ACTIONS(2439), 1, anon_sym_LBRACK, - STATE(2507), 2, + STATE(2555), 2, sym_line_comment, sym_block_comment, - ACTIONS(2155), 41, + ACTIONS(2441), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246107,7 +249980,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -246123,6 +249995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -246139,17 +250012,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64471] = 5, + [64941] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2157), 1, + ACTIONS(2455), 1, anon_sym_LBRACK, - STATE(2508), 2, + STATE(2556), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 41, + ACTIONS(2457), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246159,7 +250032,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -246175,6 +250047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -246191,17 +250064,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64528] = 5, + [64998] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3019), 1, + ACTIONS(2325), 1, anon_sym_LBRACK, - STATE(2509), 2, + STATE(2557), 2, sym_line_comment, sym_block_comment, - ACTIONS(3021), 41, + ACTIONS(2327), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246211,7 +250084,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -246227,6 +250099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -246243,83 +250116,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64585] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5168), 1, - anon_sym_CARET, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(1791), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2510), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5164), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5166), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5162), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1789), 17, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [64670] = 5, + [65055] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3013), 1, + ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(2511), 2, + STATE(2558), 2, sym_line_comment, sym_block_comment, - ACTIONS(3015), 41, + ACTIONS(2449), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246329,7 +250136,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -246345,6 +250151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -246361,27 +250168,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64727] = 5, + [65112] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3009), 1, + ACTIONS(2632), 1, anon_sym_LBRACK, - STATE(2512), 2, + STATE(2559), 2, sym_line_comment, sym_block_comment, - ACTIONS(3011), 41, + ACTIONS(2627), 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(2629), 35, + anon_sym_DOT, + anon_sym_as, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -246397,6 +250204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -246413,49 +250221,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64784] = 7, - ACTIONS(3), 1, + [65171] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2137), 1, - anon_sym_DOT_DOT, - STATE(2513), 2, + ACTIONS(2313), 1, + anon_sym_LBRACK, + STATE(2560), 2, sym_line_comment, sym_block_comment, - ACTIONS(2135), 5, + ACTIONS(2315), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON_EQ, - ACTIONS(2139), 12, anon_sym_DOT, - anon_sym_PIPE, + anon_sym_as, + anon_sym_COMMA, + 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_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2142), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_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, @@ -246467,19 +250273,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64845] = 6, + [65228] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2057), 1, + ACTIONS(1889), 1, anon_sym_DOT, - ACTIONS(2157), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - STATE(2514), 2, + STATE(2561), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 40, + ACTIONS(2095), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246488,7 +250294,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -246504,6 +250309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -246520,153 +250326,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64904] = 22, - ACTIONS(3), 1, + [65287] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(2329), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5168), 1, - anon_sym_CARET, - ACTIONS(5174), 1, - anon_sym_AMP_AMP, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5170), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5176), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2515), 2, + STATE(2562), 2, sym_line_comment, sym_block_comment, - ACTIONS(5164), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5166), 3, - anon_sym_PIPE, + ACTIONS(2331), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5172), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5162), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1789), 10, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_COLON_EQ, - [64995] = 20, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_DOT, - ACTIONS(5076), 1, - anon_sym_LPAREN, - ACTIONS(5088), 1, - anon_sym_LBRACK, - ACTIONS(5090), 1, anon_sym_QMARK, - ACTIONS(5092), 1, anon_sym_BANG, - ACTIONS(5094), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(5100), 1, - anon_sym_QMARK_DOT, - ACTIONS(5102), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5152), 1, anon_sym_CARET, - STATE(2725), 1, - sym_or_block, - STATE(2731), 1, - sym_argument_list, - STATE(4080), 1, - sym_type_parameters, - STATE(2516), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1787), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(5142), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5146), 3, - anon_sym_SLASH, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5144), 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(1785), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65082] = 5, + [65344] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2885), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - STATE(2517), 2, + STATE(2563), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 41, + ACTIONS(2469), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246676,7 +250398,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -246692,6 +250413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -246708,27 +250430,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65139] = 5, + [65401] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2857), 1, + ACTIONS(2935), 1, anon_sym_LBRACK, - STATE(2518), 2, + ACTIONS(3005), 1, + anon_sym_DOT, + STATE(2564), 2, sym_line_comment, sym_block_comment, - ACTIONS(2859), 41, + ACTIONS(2937), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -246744,6 +250466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -246760,88 +250483,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65196] = 24, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1791), 1, - anon_sym_DOT_DOT, - ACTIONS(5074), 1, - anon_sym_DOT, - ACTIONS(5076), 1, - anon_sym_LPAREN, - ACTIONS(5088), 1, - anon_sym_LBRACK, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5092), 1, - anon_sym_BANG, - ACTIONS(5094), 1, - anon_sym_LBRACK2, - ACTIONS(5100), 1, - anon_sym_QMARK_DOT, - ACTIONS(5102), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5152), 1, - anon_sym_CARET, - ACTIONS(5154), 1, - anon_sym_AMP_AMP, - STATE(2725), 1, - sym_or_block, - STATE(2731), 1, - sym_argument_list, - STATE(4080), 1, - sym_type_parameters, - ACTIONS(5148), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5158), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2519), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5142), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5146), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5150), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5144), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1789), 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, - [65291] = 5, + [65460] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2845), 1, + ACTIONS(2955), 1, anon_sym_LBRACK, - STATE(2520), 2, + STATE(2565), 2, sym_line_comment, sym_block_comment, - ACTIONS(2847), 41, + ACTIONS(2957), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246851,7 +250503,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -246867,6 +250518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -246883,17 +250535,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65348] = 5, + [65517] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2841), 1, + ACTIONS(2369), 1, anon_sym_LBRACK, - STATE(2521), 2, + STATE(2566), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 41, + ACTIONS(2371), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246903,7 +250555,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -246919,6 +250570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -246935,87 +250587,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65405] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1791), 1, - anon_sym_DOT_DOT, - ACTIONS(5074), 1, - anon_sym_DOT, - ACTIONS(5076), 1, - anon_sym_LPAREN, - ACTIONS(5088), 1, - anon_sym_LBRACK, - ACTIONS(5090), 1, - anon_sym_QMARK, - ACTIONS(5092), 1, - anon_sym_BANG, - ACTIONS(5094), 1, - anon_sym_LBRACK2, - ACTIONS(5100), 1, - anon_sym_QMARK_DOT, - ACTIONS(5102), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5152), 1, - anon_sym_CARET, - STATE(2725), 1, - sym_or_block, - STATE(2731), 1, - sym_argument_list, - STATE(4080), 1, - sym_type_parameters, - ACTIONS(5148), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5158), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2522), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5142), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5146), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5150), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5144), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1789), 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, - [65498] = 5, + [65574] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2777), 1, + ACTIONS(2971), 1, anon_sym_LBRACK, - STATE(2523), 2, + STATE(2567), 2, sym_line_comment, sym_block_comment, - ACTIONS(2779), 41, + ACTIONS(2973), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247025,7 +250607,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -247041,6 +250622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -247057,17 +250639,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65555] = 5, + [65631] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2773), 1, + ACTIONS(2335), 1, anon_sym_LBRACK, - STATE(2524), 2, + STATE(2568), 2, sym_line_comment, sym_block_comment, - ACTIONS(2775), 41, + ACTIONS(2337), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247077,7 +250659,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -247093,6 +250674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -247109,17 +250691,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65612] = 5, + [65688] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2761), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - STATE(2525), 2, + STATE(2569), 2, sym_line_comment, sym_block_comment, - ACTIONS(2763), 41, + ACTIONS(2341), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247129,7 +250711,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -247145,6 +250726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -247161,17 +250743,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65669] = 5, + [65745] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5042), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, + anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5176), 1, + anon_sym_CARET, + ACTIONS(5180), 1, + anon_sym_AMP_AMP, + ACTIONS(5182), 1, + anon_sym_PIPE_PIPE, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5172), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5178), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2570), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3530), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5166), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5170), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5174), 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, + [65848] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2087), 1, + ACTIONS(2975), 1, anon_sym_LBRACK, - STATE(2526), 2, + STATE(2571), 2, sym_line_comment, sym_block_comment, - ACTIONS(2089), 41, + ACTIONS(2977), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247181,7 +250838,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -247197,6 +250853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -247213,17 +250870,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65726] = 5, + [65905] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2739), 1, + ACTIONS(2637), 1, anon_sym_LBRACK, - STATE(2527), 2, + STATE(2572), 2, sym_line_comment, sym_block_comment, - ACTIONS(2741), 41, + ACTIONS(2639), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247233,7 +250890,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -247249,6 +250905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -247265,57 +250922,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65783] = 20, + [65962] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, + ACTIONS(1779), 1, + anon_sym_DOT_DOT, + ACTIONS(5100), 1, anon_sym_DOT, - ACTIONS(5076), 1, + ACTIONS(5102), 1, anon_sym_LPAREN, - ACTIONS(5088), 1, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(5090), 1, + ACTIONS(5112), 1, anon_sym_QMARK, - ACTIONS(5092), 1, + ACTIONS(5114), 1, anon_sym_BANG, - ACTIONS(5094), 1, + ACTIONS(5116), 1, anon_sym_LBRACK2, - ACTIONS(5100), 1, + ACTIONS(5120), 1, anon_sym_QMARK_DOT, - ACTIONS(5102), 1, + ACTIONS(5122), 1, anon_sym_POUND_LBRACK, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5150), 1, + anon_sym_PLUS_PLUS, ACTIONS(5152), 1, + anon_sym_DASH_DASH, + ACTIONS(5158), 1, + anon_sym_or, + ACTIONS(5200), 1, anon_sym_CARET, - STATE(2725), 1, + ACTIONS(5202), 1, + anon_sym_AMP_AMP, + ACTIONS(5204), 1, + anon_sym_PIPE_PIPE, + STATE(2703), 1, sym_or_block, - STATE(2731), 1, + STATE(2704), 1, sym_argument_list, - STATE(4080), 1, + STATE(4198), 1, sym_type_parameters, - STATE(2528), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1791), 3, + ACTIONS(1777), 2, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + ACTIONS(5160), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(5142), 3, - anon_sym_PIPE, + ACTIONS(5206), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2573), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5190), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5146), 3, + anon_sym_PIPE, + ACTIONS(5194), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5198), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5192), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [66069] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5100), 1, + anon_sym_DOT, + ACTIONS(5102), 1, + anon_sym_LPAREN, + ACTIONS(5110), 1, + anon_sym_LBRACK, + ACTIONS(5112), 1, + anon_sym_QMARK, + ACTIONS(5114), 1, + anon_sym_BANG, + ACTIONS(5116), 1, + anon_sym_LBRACK2, + ACTIONS(5120), 1, + anon_sym_QMARK_DOT, + ACTIONS(5122), 1, + anon_sym_POUND_LBRACK, + STATE(2703), 1, + sym_or_block, + STATE(2704), 1, + sym_argument_list, + STATE(4198), 1, + sym_type_parameters, + STATE(2574), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5144), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1789), 16, + ACTIONS(1767), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + ACTIONS(1795), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_EQ_EQ, @@ -247325,6 +251056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -247332,54 +251064,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65870] = 18, + [66152] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, + ACTIONS(5100), 1, anon_sym_DOT, - ACTIONS(5076), 1, + ACTIONS(5102), 1, anon_sym_LPAREN, - ACTIONS(5088), 1, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(5090), 1, + ACTIONS(5112), 1, anon_sym_QMARK, - ACTIONS(5092), 1, + ACTIONS(5114), 1, anon_sym_BANG, - ACTIONS(5094), 1, + ACTIONS(5116), 1, anon_sym_LBRACK2, - ACTIONS(5100), 1, + ACTIONS(5120), 1, anon_sym_QMARK_DOT, - ACTIONS(5102), 1, + ACTIONS(5122), 1, anon_sym_POUND_LBRACK, - STATE(2725), 1, + ACTIONS(5200), 1, + anon_sym_CARET, + STATE(2703), 1, sym_or_block, - STATE(2731), 1, + STATE(2704), 1, sym_argument_list, - STATE(4080), 1, + STATE(4198), 1, sym_type_parameters, - STATE(2529), 2, + STATE(2575), 2, sym_line_comment, sym_block_comment, - ACTIONS(5146), 3, + ACTIONS(1767), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(5190), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5144), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1791), 6, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(1789), 17, + ACTIONS(1795), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_EQ_EQ, @@ -247389,7 +251124,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -247397,17 +251131,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65953] = 5, + [66239] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2889), 1, + ACTIONS(2729), 1, anon_sym_LBRACK, - STATE(2530), 2, + STATE(2576), 2, sym_line_comment, sym_block_comment, - ACTIONS(2891), 41, + ACTIONS(2731), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247417,7 +251151,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -247433,6 +251166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -247449,19 +251183,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66010] = 6, + [66296] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2583), 1, + ACTIONS(2377), 1, anon_sym_LBRACK, - ACTIONS(5178), 1, - anon_sym_BANG, - STATE(2531), 2, + STATE(2577), 2, sym_line_comment, sym_block_comment, - ACTIONS(2585), 40, + ACTIONS(2379), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247471,7 +251203,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -247486,6 +251217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -247502,85 +251235,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66069] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5168), 1, - anon_sym_CARET, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5170), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5176), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2532), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5164), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5166), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5172), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5162), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1789), 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, - [66158] = 5, + [66353] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2425), 1, + ACTIONS(2769), 1, anon_sym_LBRACK, - STATE(2533), 2, + STATE(2578), 2, sym_line_comment, sym_block_comment, - ACTIONS(2427), 41, + ACTIONS(2771), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247590,7 +251255,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -247606,6 +251270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -247622,69 +251287,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66215] = 5, - ACTIONS(497), 1, + [66410] = 19, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2203), 1, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, anon_sym_LBRACK, - STATE(2534), 2, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5046), 1, + anon_sym_CARET, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(1793), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2579), 2, sym_line_comment, sym_block_comment, - ACTIONS(2205), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(5032), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + anon_sym_PIPE, + ACTIONS(5036), 3, anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5034), 5, + anon_sym_STAR, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1791), 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, + [66495] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, anon_sym_QMARK, + ACTIONS(4970), 1, anon_sym_BANG, + ACTIONS(4972), 1, anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5046), 1, anon_sym_CARET, + ACTIONS(5048), 1, + anon_sym_AMP_AMP, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5038), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5056), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2580), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5032), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5036), 3, + anon_sym_SLASH, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5040), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5034), 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(1795), 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_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [66272] = 5, + anon_sym_COLON_EQ, + [66586] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1897), 1, + ACTIONS(2393), 1, anon_sym_LBRACK, - STATE(2535), 2, + STATE(2581), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 41, + ACTIONS(2395), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247694,7 +251442,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -247710,6 +251457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -247726,138 +251474,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66329] = 5, - ACTIONS(497), 1, + [66643] = 23, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2053), 1, + ACTIONS(1767), 1, + anon_sym_DOT_DOT, + ACTIONS(5100), 1, + anon_sym_DOT, + ACTIONS(5102), 1, + anon_sym_LPAREN, + ACTIONS(5110), 1, anon_sym_LBRACK, - STATE(2536), 2, + ACTIONS(5112), 1, + anon_sym_QMARK, + ACTIONS(5114), 1, + anon_sym_BANG, + ACTIONS(5116), 1, + anon_sym_LBRACK2, + ACTIONS(5120), 1, + anon_sym_QMARK_DOT, + ACTIONS(5122), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5200), 1, + anon_sym_CARET, + STATE(2703), 1, + sym_or_block, + STATE(2704), 1, + sym_argument_list, + STATE(4198), 1, + sym_type_parameters, + ACTIONS(5196), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5206), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2582), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(5190), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + anon_sym_PIPE, + ACTIONS(5194), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5198), 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(5192), 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(1795), 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, - anon_sym_in, - anon_sym_BANGin, - [66386] = 22, + [66736] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5022), 1, + ACTIONS(5046), 1, anon_sym_CARET, - ACTIONS(5024), 1, - anon_sym_AMP_AMP, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5014), 2, + ACTIONS(5038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5032), 2, + ACTIONS(5056), 2, anon_sym_in, anon_sym_BANGin, - STATE(2537), 2, + STATE(2583), 2, sym_line_comment, sym_block_comment, - ACTIONS(5008), 3, - anon_sym_PIPE, + ACTIONS(5032), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5012), 3, + anon_sym_PIPE, + ACTIONS(5036), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5016), 4, + ACTIONS(5040), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5010), 5, + ACTIONS(5034), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1789), 10, + ACTIONS(1795), 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, - [66477] = 5, + [66825] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2207), 1, + ACTIONS(2451), 1, anon_sym_LBRACK, - STATE(2538), 2, + STATE(2584), 2, sym_line_comment, sym_block_comment, - ACTIONS(2209), 41, + ACTIONS(2453), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247867,7 +251632,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -247883,6 +251647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -247899,80 +251664,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66534] = 5, - ACTIONS(497), 1, + [66882] = 24, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2831), 1, + ACTIONS(1767), 1, + anon_sym_DOT_DOT, + ACTIONS(5100), 1, + anon_sym_DOT, + ACTIONS(5102), 1, + anon_sym_LPAREN, + ACTIONS(5110), 1, anon_sym_LBRACK, - STATE(2539), 2, + ACTIONS(5112), 1, + anon_sym_QMARK, + ACTIONS(5114), 1, + anon_sym_BANG, + ACTIONS(5116), 1, + anon_sym_LBRACK2, + ACTIONS(5120), 1, + anon_sym_QMARK_DOT, + ACTIONS(5122), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5200), 1, + anon_sym_CARET, + ACTIONS(5202), 1, + anon_sym_AMP_AMP, + STATE(2703), 1, + sym_or_block, + STATE(2704), 1, + sym_argument_list, + STATE(4198), 1, + sym_type_parameters, + ACTIONS(5196), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5206), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2585), 2, sym_line_comment, sym_block_comment, - ACTIONS(2833), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(5190), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + anon_sym_PIPE, + ACTIONS(5194), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(5192), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1795), 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, + [66977] = 19, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, anon_sym_QMARK, + ACTIONS(4970), 1, anon_sym_BANG, + ACTIONS(4972), 1, anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5046), 1, anon_sym_CARET, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(1767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2586), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5032), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5036), 3, + anon_sym_SLASH, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5034), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1795), 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_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66591] = 6, + anon_sym_COLON_EQ, + [67062] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2029), 1, - anon_sym_LBRACE, - ACTIONS(2713), 1, + ACTIONS(2773), 1, anon_sym_LBRACK, - STATE(2540), 2, + STATE(2587), 2, sym_line_comment, sym_block_comment, - ACTIONS(2715), 40, + ACTIONS(2775), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -247988,6 +251836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -248004,17 +251853,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66650] = 5, + [67119] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2211), 1, + ACTIONS(2681), 1, anon_sym_LBRACK, - STATE(2541), 2, + STATE(2588), 2, sym_line_comment, sym_block_comment, - ACTIONS(2213), 41, + ACTIONS(2683), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248024,7 +251873,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -248040,6 +251888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -248056,17 +251905,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66707] = 5, + [67176] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2215), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - STATE(2542), 2, + STATE(2589), 2, sym_line_comment, sym_block_comment, - ACTIONS(2217), 41, + ACTIONS(2095), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248076,7 +251925,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -248092,6 +251940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -248108,27 +251957,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66764] = 5, + [67233] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2219), 1, + ACTIONS(1835), 1, anon_sym_LBRACK, - STATE(2543), 2, + ACTIONS(1845), 1, + anon_sym_LBRACE, + STATE(2590), 2, sym_line_comment, sym_block_comment, - ACTIONS(2221), 41, + ACTIONS(1837), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -248144,6 +251993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -248160,17 +252010,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66821] = 5, + [67292] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5100), 1, + anon_sym_DOT, + ACTIONS(5102), 1, + anon_sym_LPAREN, + ACTIONS(5110), 1, + anon_sym_LBRACK, + ACTIONS(5112), 1, + anon_sym_QMARK, + ACTIONS(5114), 1, + anon_sym_BANG, + ACTIONS(5116), 1, + anon_sym_LBRACK2, + ACTIONS(5120), 1, + anon_sym_QMARK_DOT, + ACTIONS(5122), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5200), 1, + anon_sym_CARET, + STATE(2703), 1, + sym_or_block, + STATE(2704), 1, + sym_argument_list, + STATE(4198), 1, + sym_type_parameters, + STATE(2591), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1793), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(5190), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5194), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5192), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1791), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [67379] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2223), 1, + ACTIONS(2725), 1, anon_sym_LBRACK, - STATE(2544), 2, + STATE(2592), 2, sym_line_comment, sym_block_comment, - ACTIONS(2225), 41, + ACTIONS(2727), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248180,7 +252097,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -248196,6 +252112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -248212,17 +252129,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66878] = 5, + [67436] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2263), 1, + ACTIONS(2967), 1, anon_sym_LBRACK, - STATE(2545), 2, + STATE(2593), 2, sym_line_comment, sym_block_comment, - ACTIONS(2265), 41, + ACTIONS(2969), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248232,7 +252149,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -248248,6 +252164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -248264,144 +252181,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66935] = 28, + [67493] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5018), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, - anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5168), 1, - anon_sym_CARET, - ACTIONS(5174), 1, - anon_sym_AMP_AMP, - ACTIONS(5180), 1, - anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5170), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5176), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2546), 2, + STATE(2594), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5164), 3, + ACTIONS(5036), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5166), 3, - anon_sym_PIPE, + ACTIONS(1767), 5, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5172), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5162), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(5034), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67038] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2243), 1, - anon_sym_LBRACK, - STATE(2547), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2245), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(1795), 18, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67095] = 5, + anon_sym_COLON_EQ, + [67574] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2145), 1, + ACTIONS(2753), 1, anon_sym_LBRACK, - STATE(2548), 2, + STATE(2595), 2, sym_line_comment, sym_block_comment, - ACTIONS(2147), 41, + ACTIONS(2755), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248411,7 +252265,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -248427,6 +252280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -248443,17 +252297,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67152] = 5, + [67631] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2031), 1, + ACTIONS(1943), 1, anon_sym_LBRACK, - STATE(2549), 2, + STATE(2596), 2, sym_line_comment, sym_block_comment, - ACTIONS(2029), 41, + ACTIONS(1945), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248463,7 +252317,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -248479,6 +252332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -248495,17 +252349,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67209] = 5, + [67688] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2113), 1, + ACTIONS(2987), 1, anon_sym_LBRACK, - STATE(2550), 2, + STATE(2597), 2, sym_line_comment, sym_block_comment, - ACTIONS(2115), 41, + ACTIONS(2989), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248515,7 +252369,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -248531,6 +252384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -248547,17 +252401,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67266] = 5, + [67745] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2469), 1, + ACTIONS(2365), 1, anon_sym_LBRACK, - STATE(2551), 2, + STATE(2598), 2, sym_line_comment, sym_block_comment, - ACTIONS(2471), 41, + ACTIONS(2367), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248567,7 +252421,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -248583,6 +252436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -248599,121 +252453,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67323] = 5, - ACTIONS(497), 1, + [67802] = 22, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2161), 1, - anon_sym_LBRACK, - STATE(2552), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2163), 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, + ACTIONS(4964), 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(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, anon_sym_QMARK, + ACTIONS(4970), 1, anon_sym_BANG, + ACTIONS(4972), 1, anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5176), 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(5180), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(5172), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5178), 2, anon_sym_in, anon_sym_BANGin, - [67380] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2545), 1, - anon_sym_LBRACK, - STATE(2553), 2, + STATE(2599), 2, sym_line_comment, sym_block_comment, - ACTIONS(2547), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(5166), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + anon_sym_PIPE, + ACTIONS(5170), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5174), 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(5168), 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, + ACTIONS(1795), 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_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [67437] = 5, + anon_sym_COLON_EQ, + [67893] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2429), 1, + ACTIONS(2707), 1, anon_sym_LBRACK, - STATE(2554), 2, + STATE(2600), 2, sym_line_comment, sym_block_comment, - ACTIONS(2431), 41, + ACTIONS(2709), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248723,7 +252542,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -248739,6 +252557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -248755,17 +252574,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67494] = 5, + [67950] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2095), 1, + ACTIONS(3001), 1, anon_sym_LBRACK, - STATE(2555), 2, + STATE(2601), 2, sym_line_comment, sym_block_comment, - ACTIONS(2097), 41, + ACTIONS(3003), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248775,7 +252594,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -248791,6 +252609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -248807,92 +252626,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67551] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5018), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, - anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5168), 1, - anon_sym_CARET, - ACTIONS(5174), 1, - anon_sym_AMP_AMP, - ACTIONS(5180), 1, - anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5170), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5176), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2556), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1777), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5164), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5166), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5172), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5162), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [67654] = 5, + [68007] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2121), 1, + ACTIONS(2713), 1, anon_sym_LBRACK, - STATE(2557), 2, + STATE(2602), 2, sym_line_comment, sym_block_comment, - ACTIONS(2123), 41, + ACTIONS(2715), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248902,7 +252646,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -248918,6 +252661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -248934,92 +252678,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67711] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5018), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, - anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5168), 1, - anon_sym_CARET, - ACTIONS(5174), 1, - anon_sym_AMP_AMP, - ACTIONS(5180), 1, - anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5170), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5176), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2558), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1763), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5164), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5166), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5172), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5162), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [67814] = 5, + [68064] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2125), 1, + ACTIONS(2997), 1, anon_sym_LBRACK, - STATE(2559), 2, + STATE(2603), 2, sym_line_comment, sym_block_comment, - ACTIONS(2127), 41, + ACTIONS(2999), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249029,7 +252698,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -249045,6 +252713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -249061,17 +252730,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67871] = 5, + [68121] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2103), 1, + ACTIONS(2993), 1, anon_sym_LBRACK, - STATE(2560), 2, + STATE(2604), 2, sym_line_comment, sym_block_comment, - ACTIONS(2105), 41, + ACTIONS(2995), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249081,7 +252750,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -249097,6 +252765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -249113,17 +252782,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67928] = 5, + [68178] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2247), 1, + ACTIONS(3060), 1, anon_sym_LBRACK, - STATE(2561), 2, + STATE(2605), 2, sym_line_comment, sym_block_comment, - ACTIONS(2249), 41, + ACTIONS(3062), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249133,7 +252802,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -249149,6 +252817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -249165,17 +252834,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67985] = 5, + [68235] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2251), 1, + ACTIONS(2743), 1, anon_sym_LBRACK, - STATE(2562), 2, + STATE(2606), 2, sym_line_comment, sym_block_comment, - ACTIONS(2253), 41, + ACTIONS(2745), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249185,7 +252854,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -249201,6 +252869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -249217,17 +252886,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68042] = 5, + [68292] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2259), 1, + ACTIONS(2361), 1, anon_sym_LBRACK, - STATE(2563), 2, + STATE(2607), 2, sym_line_comment, sym_block_comment, - ACTIONS(2261), 41, + ACTIONS(2363), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249237,7 +252906,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -249253,6 +252921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -249269,47 +252938,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68099] = 5, - ACTIONS(497), 1, + [68349] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2267), 1, - anon_sym_LBRACK, - STATE(2564), 2, + ACTIONS(5208), 1, + anon_sym_else, + STATE(2677), 1, + sym_else_branch, + STATE(2608), 2, sym_line_comment, sym_block_comment, - ACTIONS(2269), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(1799), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(1797), 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, @@ -249321,17 +252992,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68156] = 5, + [68410] = 31, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5100), 1, + anon_sym_DOT, + ACTIONS(5102), 1, + anon_sym_LPAREN, + ACTIONS(5110), 1, + anon_sym_LBRACK, + ACTIONS(5112), 1, + anon_sym_QMARK, + ACTIONS(5114), 1, + anon_sym_BANG, + ACTIONS(5116), 1, + anon_sym_LBRACK2, + ACTIONS(5120), 1, + anon_sym_QMARK_DOT, + ACTIONS(5122), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5150), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5152), 1, + anon_sym_DASH_DASH, + ACTIONS(5158), 1, + anon_sym_or, + ACTIONS(5200), 1, + anon_sym_CARET, + ACTIONS(5202), 1, + anon_sym_AMP_AMP, + ACTIONS(5204), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5210), 1, + anon_sym_LBRACE, + ACTIONS(5212), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5214), 1, + anon_sym_DOT_DOT, + STATE(2703), 1, + sym_or_block, + STATE(2704), 1, + sym_argument_list, + STATE(4198), 1, + sym_type_parameters, + ACTIONS(5160), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5196), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5206), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2609), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5190), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5194), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5198), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5192), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [68519] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2803), 1, + ACTIONS(3048), 1, anon_sym_LBRACK, - STATE(2565), 2, + STATE(2610), 2, sym_line_comment, sym_block_comment, - ACTIONS(2805), 41, + ACTIONS(3050), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249341,7 +253090,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -249357,6 +253105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -249373,17 +253122,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68213] = 5, + [68576] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2875), 1, + ACTIONS(3068), 1, anon_sym_LBRACK, - STATE(2566), 2, + STATE(2611), 2, sym_line_comment, sym_block_comment, - ACTIONS(2877), 41, + ACTIONS(3070), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249393,7 +253142,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -249409,6 +253157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -249425,17 +253174,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68270] = 5, + [68633] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2091), 1, + ACTIONS(3056), 1, anon_sym_LBRACK, - STATE(2567), 2, + STATE(2612), 2, sym_line_comment, sym_block_comment, - ACTIONS(2093), 41, + ACTIONS(3058), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249445,7 +253194,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -249461,6 +253209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -249477,17 +253226,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68327] = 5, + [68690] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2849), 1, + ACTIONS(3040), 1, anon_sym_LBRACK, - STATE(2568), 2, + STATE(2613), 2, sym_line_comment, sym_block_comment, - ACTIONS(2851), 41, + ACTIONS(3042), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249497,7 +253246,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -249513,6 +253261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -249529,17 +253278,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68384] = 5, + [68747] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2769), 1, + ACTIONS(3036), 1, anon_sym_LBRACK, - STATE(2569), 2, + STATE(2614), 2, sym_line_comment, sym_block_comment, - ACTIONS(2771), 41, + ACTIONS(3038), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249549,7 +253298,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -249565,6 +253313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -249581,17 +253330,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68441] = 5, + [68804] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2765), 1, + ACTIONS(3028), 1, anon_sym_LBRACK, - STATE(2570), 2, + STATE(2615), 2, sym_line_comment, sym_block_comment, - ACTIONS(2767), 41, + ACTIONS(3030), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249601,7 +253350,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -249617,6 +253365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -249633,95 +253382,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68498] = 31, + [68861] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, + ACTIONS(1775), 1, + anon_sym_DOT_DOT, + ACTIONS(5100), 1, anon_sym_DOT, - ACTIONS(5076), 1, + ACTIONS(5102), 1, anon_sym_LPAREN, - ACTIONS(5088), 1, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(5090), 1, + ACTIONS(5112), 1, anon_sym_QMARK, - ACTIONS(5092), 1, + ACTIONS(5114), 1, anon_sym_BANG, - ACTIONS(5094), 1, + ACTIONS(5116), 1, anon_sym_LBRACK2, - ACTIONS(5100), 1, + ACTIONS(5120), 1, anon_sym_QMARK_DOT, - ACTIONS(5102), 1, + ACTIONS(5122), 1, anon_sym_POUND_LBRACK, - ACTIONS(5106), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5108), 1, + ACTIONS(5150), 1, anon_sym_PLUS_PLUS, - ACTIONS(5110), 1, + ACTIONS(5152), 1, anon_sym_DASH_DASH, - ACTIONS(5114), 1, + ACTIONS(5158), 1, anon_sym_or, - ACTIONS(5152), 1, + ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5154), 1, + ACTIONS(5202), 1, anon_sym_AMP_AMP, - ACTIONS(5156), 1, + ACTIONS(5204), 1, anon_sym_PIPE_PIPE, - ACTIONS(5182), 1, - anon_sym_LBRACE, - ACTIONS(5184), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5186), 1, - anon_sym_DOT_DOT, - STATE(2725), 1, + STATE(2703), 1, sym_or_block, - STATE(2731), 1, + STATE(2704), 1, sym_argument_list, - STATE(4080), 1, + STATE(4198), 1, sym_type_parameters, - ACTIONS(5116), 2, + ACTIONS(1773), 2, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + ACTIONS(5160), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5148), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5158), 2, + ACTIONS(5206), 2, anon_sym_in, anon_sym_BANGin, - STATE(2571), 2, + STATE(2616), 2, sym_line_comment, sym_block_comment, - ACTIONS(5142), 3, - anon_sym_PIPE, + ACTIONS(5190), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5146), 3, + anon_sym_PIPE, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5150), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5144), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68607] = 5, + [68968] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2099), 1, + ACTIONS(3024), 1, anon_sym_LBRACK, - STATE(2572), 2, + STATE(2617), 2, sym_line_comment, sym_block_comment, - ACTIONS(2101), 41, + ACTIONS(3026), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249731,7 +253479,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -249747,6 +253494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -249763,100 +253511,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68664] = 5, - ACTIONS(497), 1, + [69025] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2271), 1, - anon_sym_LBRACK, - STATE(2573), 2, + ACTIONS(5208), 1, + anon_sym_else, + STATE(2676), 1, + sym_else_branch, + STATE(2618), 2, sym_line_comment, sym_block_comment, - ACTIONS(2273), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(1805), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_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_PIPE, anon_sym_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, - [68721] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1807), 1, - anon_sym_LBRACK, - ACTIONS(2029), 1, - anon_sym_LBRACE, - STATE(2574), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1809), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1803), 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, @@ -249868,124 +253565,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68780] = 30, + [69086] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3488), 1, - anon_sym_SEMI, - ACTIONS(4938), 1, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4974), 1, + anon_sym_QMARK_DOT, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5168), 1, + ACTIONS(5136), 1, anon_sym_CARET, - ACTIONS(5174), 1, + ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5180), 1, + ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - ACTIONS(5188), 1, - anon_sym_COMMA, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5216), 1, + anon_sym_RBRACK, + ACTIONS(5218), 1, + anon_sym_DOT_DOT, + STATE(2408), 1, sym_or_block, - STATE(3792), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5170), 2, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5176), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - STATE(2575), 2, + STATE(2619), 2, sym_line_comment, sym_block_comment, - ACTIONS(5164), 3, + ACTIONS(5126), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5166), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5172), 4, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5162), 5, + ACTIONS(5128), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68887] = 5, - ACTIONS(497), 1, + [69192] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2421), 1, - anon_sym_LBRACK, - STATE(2576), 2, + ACTIONS(5220), 1, + anon_sym_DOLLARelse, + STATE(2620), 2, sym_line_comment, sym_block_comment, - ACTIONS(2423), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(2079), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2077), 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, @@ -249997,93 +253693,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68944] = 19, + [69250] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5168), 1, - anon_sym_CARET, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(1787), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4948), 2, + ACTIONS(4845), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2577), 2, + ACTIONS(5224), 1, + anon_sym_QMARK, + ACTIONS(5222), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(2621), 2, sym_line_comment, sym_block_comment, - ACTIONS(5164), 3, + ACTIONS(2937), 10, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5166), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5162), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1785), 17, - anon_sym_SEMI, + ACTIONS(2935), 27, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [69029] = 5, + [69312] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2835), 1, + ACTIONS(2632), 1, anon_sym_LBRACK, - STATE(2578), 2, + STATE(2622), 2, sym_line_comment, sym_block_comment, - ACTIONS(2837), 41, + ACTIONS(2629), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -250099,6 +253781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -250115,832 +253798,1023 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69086] = 29, + [69368] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5062), 1, - anon_sym_LBRACE, - ACTIONS(5200), 1, - anon_sym_QMARK, - ACTIONS(5202), 1, + ACTIONS(5176), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5180), 1, anon_sym_AMP_AMP, - ACTIONS(5206), 1, + ACTIONS(5182), 1, anon_sym_PIPE_PIPE, - STATE(1908), 1, - sym_block, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(1781), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5172), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5178), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(5226), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5196), 2, + STATE(2623), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5166), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5170), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5174), 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, + [69470] = 29, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4749), 1, + anon_sym_LPAREN, + ACTIONS(4759), 1, + anon_sym_LBRACK, + ACTIONS(4761), 1, + anon_sym_QMARK, + ACTIONS(4763), 1, + anon_sym_BANG, + ACTIONS(4765), 1, + anon_sym_LBRACK2, + ACTIONS(4767), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4771), 1, + anon_sym_as, + ACTIONS(4773), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4775), 1, + anon_sym_DASH_DASH, + ACTIONS(4777), 1, + anon_sym_AMP_AMP, + ACTIONS(4779), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4781), 1, + anon_sym_or, + ACTIONS(5230), 1, + anon_sym_COLON, + ACTIONS(5232), 1, + anon_sym_CARET, + ACTIONS(5234), 1, + anon_sym_LT_DASH, + STATE(2077), 1, + sym_argument_list, + STATE(2078), 1, + sym_or_block, + STATE(4272), 1, + sym_type_parameters, + ACTIONS(4747), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4755), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(4769), 2, anon_sym_in, anon_sym_BANGin, - STATE(2579), 2, + ACTIONS(4783), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2624), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(4751), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(4753), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(4757), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, + ACTIONS(5228), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69190] = 30, + [69574] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4962), 1, anon_sym_DOT, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4948), 1, + ACTIONS(4974), 1, anon_sym_QMARK_DOT, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5128), 1, + ACTIONS(5136), 1, anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - ACTIONS(5210), 1, - anon_sym_RBRACK, - ACTIONS(5212), 1, + ACTIONS(5218), 1, anon_sym_DOT_DOT, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5236), 1, + anon_sym_RBRACK, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5124), 2, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - STATE(2580), 2, + STATE(2625), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, + ACTIONS(5128), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69296] = 29, + [69680] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4974), 1, + anon_sym_QMARK_DOT, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5036), 1, - anon_sym_LBRACE, - ACTIONS(5202), 1, + ACTIONS(5136), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5206), 1, + ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - ACTIONS(5214), 1, - anon_sym_QMARK, - STATE(1907), 1, - sym_block, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5218), 1, + anon_sym_DOT_DOT, + ACTIONS(5238), 1, + anon_sym_RBRACK, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5196), 2, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - STATE(2581), 2, + STATE(2626), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, + ACTIONS(5128), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69400] = 29, + [69786] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5070), 1, - anon_sym_LBRACE, - ACTIONS(5202), 1, + ACTIONS(5046), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5048), 1, anon_sym_AMP_AMP, - ACTIONS(5206), 1, + ACTIONS(5050), 1, anon_sym_PIPE_PIPE, - ACTIONS(5216), 1, - anon_sym_QMARK, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5052), 1, + anon_sym_or, + STATE(2408), 1, sym_or_block, - STATE(2826), 1, - sym_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(3530), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5196), 2, + ACTIONS(5038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5056), 2, anon_sym_in, anon_sym_BANGin, - STATE(2582), 2, + STATE(2627), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(5032), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(5036), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(5040), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, + ACTIONS(5034), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69504] = 30, + [69888] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_DOT, - ACTIONS(4938), 1, + ACTIONS(4737), 1, + anon_sym_LBRACE, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4948), 1, - anon_sym_QMARK_DOT, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5128), 1, + ACTIONS(5250), 1, + anon_sym_QMARK, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5254), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - ACTIONS(5212), 1, - anon_sym_DOT_DOT, - ACTIONS(5218), 1, - anon_sym_RBRACK, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(1708), 1, + sym_block, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(5030), 2, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5124), 2, + ACTIONS(5246), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - STATE(2583), 2, + STATE(2628), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + ACTIONS(5248), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69610] = 30, + [69992] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_DOT, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4948), 1, - anon_sym_QMARK_DOT, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5128), 1, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5254), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - ACTIONS(5212), 1, - anon_sym_DOT_DOT, - ACTIONS(5220), 1, - anon_sym_RBRACK, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5260), 1, + anon_sym_LBRACE, + ACTIONS(5262), 1, + anon_sym_QMARK, + STATE(1139), 1, + sym_block, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(5030), 2, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5124), 2, + ACTIONS(5246), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - STATE(2584), 2, + STATE(2629), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + ACTIONS(5248), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69716] = 7, + [70096] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2060), 1, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(2157), 1, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5042), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, + anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5252), 1, + anon_sym_CARET, + ACTIONS(5254), 1, + anon_sym_AMP_AMP, + ACTIONS(5256), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5264), 1, anon_sym_LBRACE, - STATE(2585), 2, + ACTIONS(5266), 1, + anon_sym_QMARK, + STATE(988), 1, + sym_block, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5246), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5258), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2630), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 11, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5244), 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(2053), 28, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5248), 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(5242), 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, - [69776] = 29, + [70200] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5054), 1, - anon_sym_LBRACE, - ACTIONS(5202), 1, + ACTIONS(5046), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5048), 1, anon_sym_AMP_AMP, - ACTIONS(5206), 1, + ACTIONS(5050), 1, anon_sym_PIPE_PIPE, - ACTIONS(5222), 1, - anon_sym_QMARK, - STATE(2279), 1, - sym_block, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5052), 1, + anon_sym_or, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(1781), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5196), 2, + ACTIONS(5038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(5056), 2, anon_sym_in, anon_sym_BANGin, - STATE(2586), 2, + ACTIONS(5226), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2631), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(5032), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(5036), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(5040), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, + ACTIONS(5034), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69880] = 30, + [70302] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, + ACTIONS(4962), 1, anon_sym_DOT, - ACTIONS(5076), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(5088), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(5090), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(5092), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(5094), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(5096), 1, - anon_sym_CARET, - ACTIONS(5098), 1, - anon_sym_AMP_AMP, - ACTIONS(5100), 1, + ACTIONS(4974), 1, anon_sym_QMARK_DOT, - ACTIONS(5102), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5106), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5108), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5110), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5114), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5224), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5226), 1, + ACTIONS(5136), 1, + anon_sym_CARET, + ACTIONS(5138), 1, + anon_sym_AMP_AMP, + ACTIONS(5140), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5218), 1, anon_sym_DOT_DOT, - STATE(2725), 1, + ACTIONS(5268), 1, + anon_sym_RBRACK, + STATE(2408), 1, sym_or_block, - STATE(2731), 1, + STATE(2439), 1, sym_argument_list, - STATE(4080), 1, + STATE(4312), 1, sym_type_parameters, - ACTIONS(5084), 2, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5104), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5116), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2587), 2, + STATE(2632), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5126), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5130), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5134), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5128), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [70408] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2633), 2, sym_line_comment, sym_block_comment, - ACTIONS(5078), 3, - anon_sym_PIPE, + ACTIONS(2643), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5082), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5086), 4, + anon_sym_DOT_DOT, + ACTIONS(2641), 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, - ACTIONS(5080), 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, - [69986] = 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_COLON_EQ, + [70464] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4962), 1, anon_sym_DOT, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4948), 1, + ACTIONS(4974), 1, anon_sym_QMARK_DOT, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5128), 1, + ACTIONS(5136), 1, anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - ACTIONS(5212), 1, + ACTIONS(5218), 1, anon_sym_DOT_DOT, - ACTIONS(5228), 1, + ACTIONS(5270), 1, anon_sym_RBRACK, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5124), 2, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - STATE(2588), 2, + STATE(2634), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, + ACTIONS(5128), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70092] = 30, + [70570] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(5100), 1, anon_sym_DOT, - ACTIONS(4938), 1, + ACTIONS(5102), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(5110), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(5112), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(5114), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(5116), 1, anon_sym_LBRACK2, - ACTIONS(4948), 1, + ACTIONS(5118), 1, + anon_sym_CARET, + ACTIONS(5120), 1, anon_sym_QMARK_DOT, - ACTIONS(4950), 1, + ACTIONS(5122), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5144), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5150), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5152), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5128), 1, - anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5154), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(5156), 1, anon_sym_PIPE_PIPE, - ACTIONS(5212), 1, + ACTIONS(5158), 1, + anon_sym_or, + ACTIONS(5272), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5274), 1, anon_sym_DOT_DOT, - ACTIONS(5230), 1, - anon_sym_RBRACK, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2703), 1, sym_or_block, - STATE(4149), 1, + STATE(2704), 1, + sym_argument_list, + STATE(4198), 1, sym_type_parameters, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5124), 2, + ACTIONS(5146), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5160), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5162), 2, anon_sym_in, anon_sym_BANGin, - STATE(2589), 2, + STATE(2635), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(5104), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(5108), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + ACTIONS(5148), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, + ACTIONS(5106), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70198] = 8, + [70676] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5232), 1, + ACTIONS(5276), 1, anon_sym_LBRACE, - ACTIONS(5234), 1, + ACTIONS(5278), 1, anon_sym_COMMA, - STATE(3782), 1, + STATE(4050), 1, aux_sym_match_expression_list_repeat1, - STATE(2590), 2, + STATE(2636), 2, sym_line_comment, sym_block_comment, - ACTIONS(2883), 13, + ACTIONS(2321), 13, anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2319), 25, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [70738] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2637), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1837), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -250948,12 +254822,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2881), 25, + ACTIONS(1835), 28, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -250978,672 +254855,597 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70260] = 28, + anon_sym_COLON_EQ, + [70794] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5176), 1, anon_sym_CARET, - ACTIONS(5024), 1, + ACTIONS(5180), 1, anon_sym_AMP_AMP, - ACTIONS(5026), 1, + ACTIONS(5182), 1, anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, - anon_sym_or, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(1781), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5014), 2, + ACTIONS(5172), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5032), 2, + ACTIONS(5178), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5236), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2591), 2, + ACTIONS(5280), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2638), 2, sym_line_comment, sym_block_comment, - ACTIONS(5008), 3, - anon_sym_PIPE, + ACTIONS(5166), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5012), 3, + anon_sym_PIPE, + ACTIONS(5170), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5016), 4, + ACTIONS(5174), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5010), 5, + ACTIONS(5168), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70362] = 29, + [70896] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5058), 1, + anon_sym_LBRACE, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5254), 1, anon_sym_AMP_AMP, - ACTIONS(5206), 1, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - ACTIONS(5238), 1, - anon_sym_LBRACE, - ACTIONS(5240), 1, + ACTIONS(5282), 1, anon_sym_QMARK, - STATE(1274), 1, + STATE(1950), 1, sym_block, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5196), 2, + ACTIONS(5246), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - STATE(2592), 2, + STATE(2639), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(5248), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70466] = 29, + [71000] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4715), 1, - anon_sym_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5254), 1, anon_sym_AMP_AMP, - ACTIONS(5206), 1, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - ACTIONS(5242), 1, + ACTIONS(5284), 1, + anon_sym_LBRACE, + ACTIONS(5286), 1, anon_sym_QMARK, - STATE(1664), 1, + STATE(1277), 1, sym_block, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5196), 2, + ACTIONS(5246), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - STATE(2593), 2, + STATE(2640), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(5248), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70570] = 30, + [71104] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_DOT, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4948), 1, - anon_sym_QMARK_DOT, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5128), 1, + ACTIONS(5092), 1, + anon_sym_LBRACE, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5254), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - ACTIONS(5212), 1, - anon_sym_DOT_DOT, - ACTIONS(5244), 1, - anon_sym_RBRACK, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5288), 1, + anon_sym_QMARK, + STATE(1948), 1, + sym_block, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(5030), 2, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5124), 2, + ACTIONS(5246), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - STATE(2594), 2, + STATE(2641), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + ACTIONS(5248), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70676] = 30, + [71208] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4962), 1, anon_sym_DOT, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4948), 1, + ACTIONS(4974), 1, anon_sym_QMARK_DOT, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5128), 1, + ACTIONS(5136), 1, anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - ACTIONS(5212), 1, + ACTIONS(5218), 1, anon_sym_DOT_DOT, - ACTIONS(5246), 1, + ACTIONS(5290), 1, anon_sym_RBRACK, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5124), 2, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - STATE(2595), 2, + STATE(2642), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [70782] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2142), 1, - anon_sym_LBRACK, - STATE(2596), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2139), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5128), 5, 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, - [70838] = 30, + [71314] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4962), 1, anon_sym_DOT, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4948), 1, + ACTIONS(4974), 1, anon_sym_QMARK_DOT, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5128), 1, + ACTIONS(5136), 1, anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - ACTIONS(5212), 1, + ACTIONS(5218), 1, anon_sym_DOT_DOT, - ACTIONS(5248), 1, + ACTIONS(5292), 1, anon_sym_RBRACK, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5124), 2, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - STATE(2597), 2, + STATE(2643), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, + ACTIONS(5128), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70944] = 29, + [71420] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5018), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, - anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5202), 1, - anon_sym_CARET, - ACTIONS(5204), 1, - anon_sym_AMP_AMP, - ACTIONS(5206), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5250), 1, - anon_sym_LBRACE, - ACTIONS(5252), 1, - anon_sym_QMARK, - STATE(984), 1, - sym_block, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, + STATE(2769), 1, sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5196), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5208), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2598), 2, + STATE(2644), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(1945), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + anon_sym_DOT_DOT, + ACTIONS(1943), 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(5192), 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, - [71048] = 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, + [71478] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5076), 1, anon_sym_LBRACE, - ACTIONS(5202), 1, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5254), 1, anon_sym_AMP_AMP, - ACTIONS(5206), 1, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - ACTIONS(5254), 1, + ACTIONS(5294), 1, anon_sym_QMARK, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(2441), 1, + STATE(2439), 1, + sym_argument_list, + STATE(2646), 1, sym_block, - STATE(4149), 1, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5196), 2, + ACTIONS(5246), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - STATE(2599), 2, + STATE(2645), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(5248), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [71152] = 6, + [71582] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5256), 1, + ACTIONS(5296), 1, anon_sym_DOLLARelse, - STATE(2600), 2, + STATE(2646), 2, sym_line_comment, sym_block_comment, - ACTIONS(2041), 13, + ACTIONS(1853), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -251651,11 +255453,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2039), 27, + ACTIONS(1851), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -251683,1148 +255486,1046 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71210] = 29, + [71640] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4974), 1, + anon_sym_QMARK_DOT, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5050), 1, - anon_sym_LBRACE, - ACTIONS(5202), 1, + ACTIONS(5136), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5206), 1, + ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - ACTIONS(5258), 1, - anon_sym_QMARK, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5218), 1, + anon_sym_DOT_DOT, + ACTIONS(5298), 1, + anon_sym_RBRACK, + STATE(2408), 1, sym_or_block, - STATE(2619), 1, - sym_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5196), 2, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - STATE(2601), 2, + STATE(2647), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, + ACTIONS(5128), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [71314] = 28, + [71746] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5168), 1, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5174), 1, + ACTIONS(5254), 1, anon_sym_AMP_AMP, - ACTIONS(5180), 1, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5300), 1, + anon_sym_LBRACE, + ACTIONS(5302), 1, + anon_sym_QMARK, + STATE(240), 1, + sym_block, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(1771), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5170), 2, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5246), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5176), 2, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5260), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2602), 2, + STATE(2648), 2, sym_line_comment, sym_block_comment, - ACTIONS(5164), 3, + ACTIONS(5240), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5166), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5172), 4, + ACTIONS(5248), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5162), 5, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [71416] = 30, + [71850] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4962), 1, anon_sym_DOT, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4948), 1, + ACTIONS(4974), 1, anon_sym_QMARK_DOT, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5128), 1, + ACTIONS(5136), 1, anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - ACTIONS(5212), 1, + ACTIONS(5218), 1, anon_sym_DOT_DOT, - ACTIONS(5262), 1, + ACTIONS(5304), 1, anon_sym_RBRACK, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5124), 2, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - STATE(2603), 2, + STATE(2649), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, + ACTIONS(5128), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [71522] = 30, + [71956] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4962), 1, anon_sym_DOT, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4948), 1, + ACTIONS(4974), 1, anon_sym_QMARK_DOT, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5128), 1, + ACTIONS(5136), 1, anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - ACTIONS(5212), 1, + ACTIONS(5218), 1, anon_sym_DOT_DOT, - ACTIONS(5264), 1, + ACTIONS(5306), 1, anon_sym_RBRACK, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5124), 2, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - STATE(2604), 2, + STATE(2650), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [71628] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2605), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2715), 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(2713), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5128), 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, - anon_sym_COLON_EQ, - [71684] = 29, + [72062] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5046), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5048), 1, anon_sym_AMP_AMP, - ACTIONS(5206), 1, + ACTIONS(5050), 1, anon_sym_PIPE_PIPE, - ACTIONS(5266), 1, - anon_sym_LBRACE, - ACTIONS(5268), 1, - anon_sym_QMARK, - STATE(2128), 1, - sym_block, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5052), 1, + anon_sym_or, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5196), 2, + ACTIONS(5038), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5056), 2, anon_sym_in, anon_sym_BANGin, - STATE(2606), 2, + ACTIONS(5308), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2651), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(5032), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(5036), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(5040), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, + ACTIONS(5034), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [71788] = 30, + [72164] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_DOT, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4948), 1, - anon_sym_QMARK_DOT, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5128), 1, + ACTIONS(5096), 1, + anon_sym_LBRACE, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5254), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - ACTIONS(5212), 1, - anon_sym_DOT_DOT, - ACTIONS(5270), 1, - anon_sym_RBRACK, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5310), 1, + anon_sym_QMARK, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(2458), 1, + sym_block, + STATE(4312), 1, sym_type_parameters, - ACTIONS(5030), 2, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5124), 2, + ACTIONS(5246), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - STATE(2607), 2, + STATE(2652), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + ACTIONS(5248), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [71894] = 29, + [72268] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4725), 1, - anon_sym_LPAREN, - ACTIONS(4731), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(4733), 1, - anon_sym_QMARK, - ACTIONS(4735), 1, - anon_sym_BANG, - ACTIONS(4737), 1, - anon_sym_LBRACK2, - ACTIONS(4739), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - ACTIONS(4753), 1, - anon_sym_as, - ACTIONS(4755), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4757), 1, - anon_sym_DASH_DASH, - ACTIONS(4759), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4761), 1, - anon_sym_or, - ACTIONS(5274), 1, - anon_sym_COLON, - ACTIONS(5276), 1, - anon_sym_CARET, - ACTIONS(5278), 1, - anon_sym_LT_DASH, - STATE(2073), 1, - sym_argument_list, - STATE(2074), 1, - sym_or_block, - STATE(4147), 1, - sym_type_parameters, - ACTIONS(4723), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4741), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4747), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(4763), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2608), 2, + ACTIONS(2093), 1, + anon_sym_LBRACE, + STATE(2653), 2, sym_line_comment, sym_block_comment, - ACTIONS(4727), 3, - anon_sym_PIPE, + ACTIONS(1887), 11, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4729), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4743), 4, + ACTIONS(1885), 28, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5272), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [71998] = 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, + anon_sym_COLON_EQ, + [72328] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4962), 1, + anon_sym_DOT, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4974), 1, + anon_sym_QMARK_DOT, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5136), 1, anon_sym_CARET, - ACTIONS(5024), 1, + ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5026), 1, + ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, - anon_sym_or, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5218), 1, + anon_sym_DOT_DOT, + ACTIONS(5312), 1, + anon_sym_RBRACK, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(1771), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5014), 2, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5032), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5280), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2609), 2, + STATE(2654), 2, sym_line_comment, sym_block_comment, - ACTIONS(5008), 3, - anon_sym_PIPE, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5012), 3, + anon_sym_PIPE, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5016), 4, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5010), 5, + ACTIONS(5128), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72100] = 28, + [72434] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5024), 1, + ACTIONS(5254), 1, anon_sym_AMP_AMP, - ACTIONS(5026), 1, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, - anon_sym_or, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5314), 1, + anon_sym_QMARK, + STATE(1804), 1, + sym_block, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(3534), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5014), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5032), 2, + ACTIONS(5246), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - STATE(2610), 2, + STATE(2655), 2, sym_line_comment, sym_block_comment, - ACTIONS(5008), 3, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5012), 3, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5016), 4, + ACTIONS(5248), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5010), 5, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72202] = 6, + [72538] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2710), 1, - sym_type_parameters, - STATE(2611), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1899), 13, + ACTIONS(4962), 1, 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(1897), 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, - [72260] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4974), 1, + anon_sym_QMARK_DOT, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5168), 1, + ACTIONS(5136), 1, anon_sym_CARET, - ACTIONS(5174), 1, + ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5180), 1, + ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5218), 1, + anon_sym_DOT_DOT, + ACTIONS(5316), 1, + anon_sym_RBRACK, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(1771), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5170), 2, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5176), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5280), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2612), 2, + STATE(2656), 2, sym_line_comment, sym_block_comment, - ACTIONS(5164), 3, + ACTIONS(5126), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5166), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5172), 4, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5162), 5, + ACTIONS(5128), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72362] = 29, + [72644] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5078), 1, + anon_sym_LBRACE, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5254), 1, anon_sym_AMP_AMP, - ACTIONS(5206), 1, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - ACTIONS(5282), 1, - anon_sym_LBRACE, - ACTIONS(5284), 1, + ACTIONS(5318), 1, anon_sym_QMARK, - STATE(1137), 1, + STATE(2325), 1, sym_block, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5196), 2, + ACTIONS(5246), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - STATE(2613), 2, + STATE(2657), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(5248), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72466] = 8, + [72748] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, - anon_sym_DOT, - ACTIONS(5288), 1, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5042), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, + anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5088), 1, + anon_sym_LBRACE, + ACTIONS(5252), 1, + anon_sym_CARET, + ACTIONS(5254), 1, + anon_sym_AMP_AMP, + ACTIONS(5256), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5320), 1, anon_sym_QMARK, - ACTIONS(5286), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - STATE(2614), 2, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(2861), 1, + sym_block, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5246), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5258), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2658), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 10, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5248), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5242), 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, - [72528] = 29, + [72852] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5254), 1, anon_sym_AMP_AMP, - ACTIONS(5206), 1, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - ACTIONS(5290), 1, + ACTIONS(5322), 1, anon_sym_LBRACE, - ACTIONS(5292), 1, + ACTIONS(5324), 1, anon_sym_QMARK, - STATE(300), 1, + STATE(2173), 1, sym_block, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5196), 2, + ACTIONS(5246), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - STATE(2615), 2, + STATE(2659), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(5248), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72632] = 29, + [72956] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5072), 1, - anon_sym_LBRACE, - ACTIONS(5202), 1, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5254), 1, anon_sym_AMP_AMP, - ACTIONS(5206), 1, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - ACTIONS(5294), 1, - anon_sym_QMARK, - STATE(1762), 1, - sym_block, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5326), 1, + anon_sym_LBRACE, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5196), 2, + ACTIONS(5246), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - STATE(2616), 2, + STATE(2660), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(5248), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72736] = 5, + [73057] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2617), 2, + STATE(2661), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 13, + ACTIONS(2379), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -252832,11 +256533,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(1807), 28, + ACTIONS(2377), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -252864,96 +256566,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [72792] = 30, + [73112] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + STATE(2662), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2449), 13, anon_sym_DOT, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4946), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(4948), 1, - anon_sym_QMARK_DOT, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2447), 27, anon_sym_as, - ACTIONS(5018), 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(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5130), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - ACTIONS(5212), 1, - anon_sym_DOT_DOT, - ACTIONS(5296), 1, - anon_sym_RBRACK, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(5030), 2, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5124), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - STATE(2618), 2, + [73167] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2663), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(2337), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + anon_sym_DOT_DOT, + ACTIONS(2335), 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(5120), 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, - [72898] = 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [73222] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5298), 1, - anon_sym_DOLLARelse, - STATE(2619), 2, + STATE(2664), 2, sym_line_comment, sym_block_comment, - ACTIONS(2079), 13, + ACTIONS(2341), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -252961,11 +256683,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2077), 27, + ACTIONS(2339), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -252993,17 +256716,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72956] = 5, + [73277] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2620), 2, + STATE(2665), 2, sym_line_comment, sym_block_comment, - ACTIONS(2771), 13, + ACTIONS(3003), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -253011,11 +256733,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2769), 27, + ACTIONS(3001), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253043,90 +256766,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73011] = 28, + [73332] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, + STATE(2666), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2999), 13, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4946), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2997), 27, anon_sym_as, - ACTIONS(5018), 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(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5300), 1, - anon_sym_RPAREN, - ACTIONS(5312), 1, anon_sym_CARET, - ACTIONS(5314), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5316), 1, anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5308), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5318), 2, anon_sym_in, anon_sym_BANGin, - STATE(2621), 2, + [73387] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2667), 2, sym_line_comment, sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, + ACTIONS(2995), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5310), 4, + anon_sym_DOT_DOT, + ACTIONS(2993), 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(5304), 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, - [73112] = 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, + [73442] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2622), 2, + STATE(2668), 2, sym_line_comment, sym_block_comment, - ACTIONS(2729), 13, + ACTIONS(3062), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -253134,11 +256883,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2727), 27, + ACTIONS(3060), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253166,17 +256916,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73167] = 5, + [73497] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2623), 2, + STATE(2669), 2, sym_line_comment, sym_block_comment, - ACTIONS(2471), 13, + ACTIONS(2105), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -253184,11 +256933,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2469), 27, + ACTIONS(2103), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253216,163 +256966,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73222] = 28, + [73552] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3554), 1, - anon_sym_LBRACE, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, + STATE(2670), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2929), 13, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4946), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2927), 27, anon_sym_as, - ACTIONS(5018), 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(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5202), 1, anon_sym_CARET, - ACTIONS(5204), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5196), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - STATE(2624), 2, + [73607] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2671), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(2925), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + anon_sym_DOT_DOT, + ACTIONS(2923), 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(5192), 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, - [73323] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3600), 1, - anon_sym_STAR, - ACTIONS(5320), 1, - sym_identifier, - ACTIONS(5322), 1, - anon_sym_RPAREN, - ACTIONS(5324), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5326), 1, - anon_sym_mut, - ACTIONS(5328), 1, - anon_sym_BANG, - ACTIONS(5330), 1, - anon_sym_LBRACK2, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, - anon_sym_shared, - STATE(2963), 1, - sym_mutability_modifiers, - STATE(3838), 1, - sym_type_parameter_declaration, - STATE(3839), 1, - sym_parameter_declaration, - STATE(4013), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(2625), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2290), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2292), 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, - [73424] = 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, + [73662] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2626), 2, + STATE(2672), 2, sym_line_comment, sym_block_comment, - ACTIONS(2115), 13, + ACTIONS(2331), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -253380,11 +257083,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2113), 27, + ACTIONS(2329), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253412,17 +257116,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73479] = 5, + [73717] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2627), 2, + STATE(2673), 2, sym_line_comment, sym_block_comment, - ACTIONS(2029), 13, + ACTIONS(2315), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -253430,11 +257133,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2031), 27, + ACTIONS(2313), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253462,154 +257166,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73534] = 28, + [73772] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5312), 1, + ACTIONS(5328), 1, + anon_sym_RPAREN, + ACTIONS(5340), 1, anon_sym_CARET, - ACTIONS(5314), 1, + ACTIONS(5342), 1, anon_sym_AMP_AMP, - ACTIONS(5316), 1, + ACTIONS(5344), 1, anon_sym_PIPE_PIPE, - ACTIONS(5336), 1, - anon_sym_RPAREN, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5308), 2, + ACTIONS(5336), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5318), 2, + ACTIONS(5346), 2, anon_sym_in, anon_sym_BANGin, - STATE(2628), 2, + STATE(2674), 2, sym_line_comment, sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, + ACTIONS(5330), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 3, + anon_sym_PIPE, + ACTIONS(5334), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5310), 4, + ACTIONS(5338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5304), 5, + ACTIONS(5332), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [73635] = 19, + [73873] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5202), 1, - anon_sym_CARET, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(1791), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2629), 2, + STATE(2675), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(2731), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5192), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1789), 15, + anon_sym_DOT_DOT, + ACTIONS(2729), 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, - [73718] = 5, + [73928] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2630), 2, + STATE(2676), 2, sym_line_comment, sym_block_comment, - ACTIONS(2767), 13, + ACTIONS(2465), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -253617,11 +257306,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2765), 27, + ACTIONS(2463), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253649,17 +257339,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73773] = 5, + [73983] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2631), 2, + STATE(2677), 2, sym_line_comment, sym_block_comment, - ACTIONS(2855), 13, + ACTIONS(2621), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -253667,11 +257356,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2853), 27, + ACTIONS(2619), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253699,17 +257389,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73828] = 5, + [74038] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2632), 2, + STATE(2678), 2, sym_line_comment, sym_block_comment, - ACTIONS(2851), 13, + ACTIONS(2723), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -253717,11 +257406,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2849), 27, + ACTIONS(2721), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253749,17 +257439,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73883] = 5, + [74093] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2633), 2, + STATE(2679), 2, sym_line_comment, sym_block_comment, - ACTIONS(2737), 13, + ACTIONS(2749), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -253767,11 +257456,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2735), 27, + ACTIONS(2747), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253799,17 +257489,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73938] = 5, + [74148] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2634), 2, + STATE(2680), 2, sym_line_comment, sym_block_comment, - ACTIONS(3046), 13, + ACTIONS(2765), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -253817,11 +257506,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3044), 27, + ACTIONS(2763), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253849,355 +257539,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73993] = 21, + [74203] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5202), 1, - anon_sym_CARET, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5196), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5208), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2635), 2, + STATE(2681), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(2727), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5198), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5192), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1789), 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, - [74080] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5312), 1, - anon_sym_CARET, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(1791), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2636), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5302), 3, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5306), 3, - anon_sym_SLASH, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5304), 5, + anon_sym_DOT_DOT, + ACTIONS(2725), 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(1789), 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, - [74163] = 17, + [74258] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2637), 2, + STATE(2682), 2, sym_line_comment, sym_block_comment, - ACTIONS(5194), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1791), 5, - anon_sym_PIPE, + ACTIONS(2715), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5192), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1789), 16, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2713), 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, - [74242] = 28, + [74313] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5018), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, - anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5312), 1, - anon_sym_CARET, - ACTIONS(5314), 1, - anon_sym_AMP_AMP, - ACTIONS(5316), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5338), 1, - anon_sym_RPAREN, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5308), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5318), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2638), 2, + STATE(2683), 2, sym_line_comment, sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, + ACTIONS(1837), 11, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5310), 4, + ACTIONS(1835), 29, + 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(5304), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [74343] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5018), 1, + anon_sym_COLON, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5202), 1, anon_sym_CARET, - ACTIONS(5204), 1, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5340), 1, - anon_sym_LBRACE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, - ACTIONS(5196), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - STATE(2639), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5194), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5198), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5192), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [74444] = 5, + [74368] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2640), 2, + ACTIONS(1847), 1, + anon_sym_LBRACE, + STATE(2684), 2, sym_line_comment, sym_block_comment, - ACTIONS(2883), 13, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(2643), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -254205,13 +257707,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2881), 27, + ACTIONS(2641), 28, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, @@ -254220,7 +257723,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, @@ -254236,91 +257738,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_in, - anon_sym_BANGin, - [74499] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5018), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, - anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5312), 1, - anon_sym_CARET, - ACTIONS(5314), 1, - anon_sym_AMP_AMP, - ACTIONS(5316), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5342), 1, - anon_sym_RPAREN, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5308), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5318), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2641), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5306), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5310), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5304), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [74600] = 5, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [74425] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2642), 2, + STATE(2685), 2, sym_line_comment, sym_block_comment, - ACTIONS(2891), 13, + ACTIONS(3018), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -254328,11 +257757,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2889), 27, + ACTIONS(3016), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254360,19 +257790,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74655] = 6, + [74480] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2031), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2643), 2, + STATE(2686), 2, sym_line_comment, sym_block_comment, - ACTIONS(2715), 11, - anon_sym_PIPE, + ACTIONS(3014), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -254380,12 +257807,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2713), 27, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3012), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -254393,12 +257823,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, @@ -254411,29 +257840,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74712] = 5, + [74535] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2644), 2, + ACTIONS(5348), 1, + anon_sym_BANG, + STATE(2687), 2, sym_line_comment, sym_block_comment, - ACTIONS(2741), 13, + ACTIONS(2499), 12, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2739), 27, + ACTIONS(2497), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254461,90 +257891,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74767] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3600), 1, - anon_sym_STAR, - ACTIONS(5320), 1, - sym_identifier, - ACTIONS(5324), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5326), 1, - anon_sym_mut, - ACTIONS(5328), 1, - anon_sym_BANG, - ACTIONS(5330), 1, - anon_sym_LBRACK2, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, - anon_sym_shared, - ACTIONS(5344), 1, - anon_sym_RPAREN, - STATE(2963), 1, - sym_mutability_modifiers, - STATE(3844), 1, - sym_parameter_declaration, - STATE(3864), 1, - sym_type_parameter_declaration, - STATE(4013), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(2645), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2290), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2292), 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, - [74868] = 5, + [74592] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2646), 2, + ACTIONS(5350), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2688), 2, sym_line_comment, sym_block_comment, - ACTIONS(2089), 13, + ACTIONS(2321), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -254552,14 +257911,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2087), 27, + ACTIONS(2319), 25, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -254584,90 +257942,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74923] = 28, + [74649] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5312), 1, + ACTIONS(5136), 1, anon_sym_CARET, - ACTIONS(5314), 1, + ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5316), 1, + ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - ACTIONS(5346), 1, - anon_sym_RPAREN, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5352), 1, + anon_sym_RBRACK, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5308), 2, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5318), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - STATE(2647), 2, + STATE(2689), 2, sym_line_comment, sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 3, + anon_sym_PIPE, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5310), 4, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5304), 5, + ACTIONS(5128), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [75024] = 5, + [74750] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2648), 2, + STATE(2690), 2, sym_line_comment, sym_block_comment, - ACTIONS(3056), 13, + ACTIONS(2657), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -254675,11 +258032,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3054), 27, + ACTIONS(2655), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254707,17 +258065,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75079] = 5, + [74805] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2649), 2, + STATE(2691), 2, sym_line_comment, sym_block_comment, - ACTIONS(3052), 13, + ACTIONS(2653), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -254725,11 +258082,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3050), 27, + ACTIONS(2651), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254757,17 +258115,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75134] = 5, + [74860] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2650), 2, + STATE(2692), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 13, + ACTIONS(2647), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -254775,11 +258132,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2505), 27, + ACTIONS(2645), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254807,17 +258165,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75189] = 5, + [74915] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2651), 2, + STATE(2693), 2, sym_line_comment, sym_block_comment, - ACTIONS(2453), 13, + ACTIONS(2491), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -254825,11 +258182,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2451), 27, + ACTIONS(2489), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254857,17 +258215,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75244] = 5, + [74970] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2652), 2, + STATE(2694), 2, sym_line_comment, sym_block_comment, - ACTIONS(2439), 13, + ACTIONS(2479), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -254875,11 +258232,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2437), 27, + ACTIONS(2477), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254907,17 +258265,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75299] = 5, + [75025] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2653), 2, + STATE(2695), 2, sym_line_comment, sym_block_comment, - ACTIONS(2233), 13, + ACTIONS(2475), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -254925,11 +258282,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2231), 27, + ACTIONS(2473), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254957,17 +258315,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75354] = 5, + [75080] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2654), 2, + STATE(2696), 2, sym_line_comment, sym_block_comment, - ACTIONS(2119), 13, + ACTIONS(2367), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -254975,11 +258332,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2117), 27, + ACTIONS(2365), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255007,17 +258365,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75409] = 5, + [75135] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2655), 2, + STATE(2697), 2, sym_line_comment, sym_block_comment, - ACTIONS(3066), 13, + ACTIONS(2351), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -255025,11 +258382,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3064), 27, + ACTIONS(2349), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255057,17 +258415,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75464] = 5, + [75190] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2656), 2, + STATE(2698), 2, sym_line_comment, sym_block_comment, - ACTIONS(3021), 13, + ACTIONS(2345), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -255075,11 +258432,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3019), 27, + ACTIONS(2343), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255107,17 +258465,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75519] = 5, + [75245] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2657), 2, + STATE(2699), 2, sym_line_comment, sym_block_comment, - ACTIONS(3015), 13, + ACTIONS(2191), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -255125,11 +258482,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3013), 27, + ACTIONS(2189), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255157,140 +258515,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75574] = 28, + [75300] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5254), 1, anon_sym_AMP_AMP, - ACTIONS(5206), 1, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - ACTIONS(5348), 1, + ACTIONS(5354), 1, anon_sym_LBRACE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5196), 2, + ACTIONS(5246), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - STATE(2658), 2, + STATE(2700), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(5248), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [75675] = 5, + [75401] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2659), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2241), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(47), 1, anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5356), 1, + sym_identifier, + ACTIONS(5358), 1, + anon_sym_RPAREN, + ACTIONS(5360), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5362), 1, + anon_sym_mut, + ACTIONS(5364), 1, anon_sym_BANG, + ACTIONS(5366), 1, anon_sym_LBRACK2, + ACTIONS(5368), 1, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2239), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5370), 1, + anon_sym_shared, + STATE(3038), 1, + sym_mutability_modifiers, + STATE(3979), 1, + sym_parameter_declaration, + STATE(3983), 1, + sym_type_parameter_declaration, + STATE(4340), 1, + sym_plain_type, + STATE(4596), 1, + sym_reference_expression, + STATE(2701), 2, + sym_line_comment, + sym_block_comment, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [75502] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4964), 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(4966), 1, anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5340), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5342), 1, anon_sym_AMP_AMP, + ACTIONS(5344), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5372), 1, + anon_sym_RPAREN, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5346), 2, anon_sym_in, anon_sym_BANGin, - [75730] = 5, + STATE(2702), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5334), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5338), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5332), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [75603] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2660), 2, + STATE(2703), 2, sym_line_comment, sym_block_comment, - ACTIONS(2257), 13, + ACTIONS(2383), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -255298,11 +258751,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2255), 27, + ACTIONS(2381), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255330,17 +258784,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75785] = 5, + [75658] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2661), 2, + STATE(2704), 2, sym_line_comment, sym_block_comment, - ACTIONS(3011), 13, + ACTIONS(2387), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -255348,11 +258801,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3009), 27, + ACTIONS(2385), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255380,17 +258834,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75840] = 5, + [75713] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2662), 2, + STATE(2705), 2, sym_line_comment, sym_block_comment, - ACTIONS(2859), 13, + ACTIONS(1887), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -255398,11 +258851,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2857), 27, + ACTIONS(1885), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255430,17 +258884,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75895] = 5, + [75768] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2663), 2, + STATE(2706), 2, sym_line_comment, sym_block_comment, - ACTIONS(2457), 13, + ACTIONS(2421), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -255448,11 +258901,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2455), 27, + ACTIONS(2419), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255480,17 +258934,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75950] = 5, + [75823] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2664), 2, + STATE(2707), 2, sym_line_comment, sym_block_comment, - ACTIONS(2463), 13, + ACTIONS(2425), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -255498,11 +258951,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2461), 27, + ACTIONS(2423), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255530,17 +258984,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76005] = 5, + [75878] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2665), 2, + STATE(2708), 2, sym_line_comment, sym_block_comment, - ACTIONS(2847), 13, + ACTIONS(2433), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -255548,11 +259001,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2845), 27, + ACTIONS(2431), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255580,17 +259034,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76060] = 5, + [75933] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2666), 2, + STATE(2709), 2, sym_line_comment, sym_block_comment, - ACTIONS(2475), 13, + ACTIONS(2441), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -255598,11 +259051,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2473), 27, + ACTIONS(2439), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255630,17 +259084,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76115] = 5, + [75988] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2667), 2, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5042), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, + anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5340), 1, + anon_sym_CARET, + ACTIONS(5342), 1, + anon_sym_AMP_AMP, + ACTIONS(5344), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5374), 1, + anon_sym_RPAREN, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5346), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2710), 2, sym_line_comment, sym_block_comment, - ACTIONS(2707), 13, - anon_sym_DOT, + ACTIONS(5330), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, + ACTIONS(5334), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5338), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5332), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [76089] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2711), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2899), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -255648,11 +259174,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2705), 27, + ACTIONS(2897), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255680,17 +259207,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76170] = 5, + [76144] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2668), 2, + STATE(2712), 2, sym_line_comment, sym_block_comment, - ACTIONS(2821), 13, + ACTIONS(3054), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -255698,11 +259224,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2819), 27, + ACTIONS(3052), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255730,17 +259257,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76225] = 5, + [76199] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2669), 2, + STATE(2713), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 13, + ACTIONS(2933), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -255748,11 +259274,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2841), 27, + ACTIONS(2931), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255780,7 +259307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76280] = 28, + [76254] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -255795,52 +259322,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5320), 1, - sym_identifier, - ACTIONS(5324), 1, + ACTIONS(5360), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5326), 1, + ACTIONS(5362), 1, anon_sym_mut, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5334), 1, + ACTIONS(5370), 1, anon_sym_shared, - ACTIONS(5350), 1, + ACTIONS(5376), 1, + sym_identifier, + ACTIONS(5378), 1, anon_sym_RPAREN, - STATE(2963), 1, + STATE(3045), 1, sym_mutability_modifiers, - STATE(3757), 1, - sym_plain_type, - STATE(3808), 1, - sym_type_parameter_declaration, - STATE(3809), 1, + STATE(3915), 1, sym_parameter_declaration, - STATE(4423), 1, + STATE(3918), 1, + sym_type_parameter_declaration, + STATE(4340), 1, + sym_plain_type, + STATE(4596), 1, sym_reference_expression, - STATE(2670), 2, + STATE(2714), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -255853,140 +259380,89 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [76381] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2671), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2779), 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(2777), 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, - [76436] = 28, + [76355] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5254), 1, anon_sym_AMP_AMP, - ACTIONS(5206), 1, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - ACTIONS(5352), 1, + ACTIONS(5380), 1, anon_sym_LBRACE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5196), 2, + ACTIONS(5246), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - STATE(2672), 2, + STATE(2715), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(5248), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [76537] = 5, + [76456] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2673), 2, + STATE(2716), 2, sym_line_comment, sym_block_comment, - ACTIONS(3029), 13, + ACTIONS(2949), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -255994,11 +259470,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3027), 27, + ACTIONS(2947), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256026,67 +259503,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76592] = 5, + [76511] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2674), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3025), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(47), 1, anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5356), 1, + sym_identifier, + ACTIONS(5360), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5362), 1, + anon_sym_mut, + ACTIONS(5364), 1, anon_sym_BANG, + ACTIONS(5366), 1, anon_sym_LBRACK2, + ACTIONS(5368), 1, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3023), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5370), 1, + anon_sym_shared, + ACTIONS(5378), 1, + anon_sym_RPAREN, + STATE(3038), 1, + sym_mutability_modifiers, + STATE(3915), 1, + sym_parameter_declaration, + STATE(3918), 1, + sym_type_parameter_declaration, + STATE(4340), 1, + sym_plain_type, + STATE(4596), 1, + sym_reference_expression, + STATE(2717), 2, + sym_line_comment, + sym_block_comment, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [76612] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4964), 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(4966), 1, anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5252), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5254), 1, anon_sym_AMP_AMP, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5382), 1, + anon_sym_LBRACE, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5246), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - [76647] = 5, + STATE(2718), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5240), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5244), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5248), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5242), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [76713] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2675), 2, + STATE(2719), 2, sym_line_comment, sym_block_comment, - ACTIONS(2775), 13, + ACTIONS(2969), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -256094,11 +259666,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2773), 27, + ACTIONS(2967), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256126,233 +259699,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76702] = 21, + [76768] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5042), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, + anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5340), 1, anon_sym_CARET, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5342), 1, + anon_sym_AMP_AMP, + ACTIONS(5344), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5384), 1, + anon_sym_RPAREN, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5308), 2, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5336), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5318), 2, + ACTIONS(5346), 2, anon_sym_in, anon_sym_BANGin, - STATE(2676), 2, + STATE(2720), 2, sym_line_comment, sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, + ACTIONS(5330), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 3, + anon_sym_PIPE, + ACTIONS(5334), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5310), 4, + ACTIONS(5338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5304), 5, + ACTIONS(5332), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1789), 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, - [76789] = 5, + [76869] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2677), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2763), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(47), 1, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2761), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3598), 1, anon_sym_LPAREN, + ACTIONS(3600), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5356), 1, + sym_identifier, + ACTIONS(5360), 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, - [76844] = 5, + ACTIONS(5362), 1, + anon_sym_mut, + ACTIONS(5364), 1, + anon_sym_BANG, + ACTIONS(5366), 1, + anon_sym_LBRACK2, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_shared, + ACTIONS(5386), 1, + anon_sym_RPAREN, + STATE(3038), 1, + sym_mutability_modifiers, + STATE(3944), 1, + sym_parameter_declaration, + STATE(3946), 1, + sym_type_parameter_declaration, + STATE(4340), 1, + sym_plain_type, + STATE(4596), 1, + sym_reference_expression, + STATE(2721), 2, + sym_line_comment, + sym_block_comment, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [76970] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2678), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2817), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, anon_sym_QMARK, + ACTIONS(4970), 1, anon_sym_BANG, + ACTIONS(4972), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2815), 27, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 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(5042), 1, anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5340), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5342), 1, anon_sym_AMP_AMP, + ACTIONS(5344), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5388), 1, + anon_sym_RPAREN, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5346), 2, anon_sym_in, anon_sym_BANGin, - [76899] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2679), 2, + STATE(2722), 2, sym_line_comment, sym_block_comment, - ACTIONS(2813), 13, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(5330), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5334), 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(2811), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5338), 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(5332), 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, - [76954] = 5, + [77071] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2680), 2, + STATE(2723), 2, sym_line_comment, sym_block_comment, - ACTIONS(2809), 13, + ACTIONS(2363), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -256360,11 +259935,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2807), 27, + ACTIONS(2361), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256392,67 +259968,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77009] = 5, + [77126] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2681), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2801), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(47), 1, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2799), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3598), 1, anon_sym_LPAREN, + ACTIONS(3600), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5356), 1, + sym_identifier, + ACTIONS(5360), 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, - [77064] = 5, + ACTIONS(5362), 1, + anon_sym_mut, + ACTIONS(5364), 1, + anon_sym_BANG, + ACTIONS(5366), 1, + anon_sym_LBRACK2, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_shared, + ACTIONS(5390), 1, + anon_sym_RPAREN, + STATE(3038), 1, + sym_mutability_modifiers, + STATE(3846), 1, + sym_parameter_declaration, + STATE(3851), 1, + sym_type_parameter_declaration, + STATE(4340), 1, + sym_plain_type, + STATE(4596), 1, + sym_reference_expression, + STATE(2724), 2, + sym_line_comment, + sym_block_comment, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [77227] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2682), 2, + ACTIONS(3005), 1, + anon_sym_DOT, + STATE(2725), 2, sym_line_comment, sym_block_comment, - ACTIONS(2749), 13, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(2937), 12, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -256460,11 +260059,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2747), 27, + ACTIONS(2935), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256492,17 +260092,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77119] = 5, + [77284] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2683), 2, + STATE(2726), 2, sym_line_comment, sym_block_comment, - ACTIONS(2745), 13, + ACTIONS(2937), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -256510,11 +260109,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2743), 27, + ACTIONS(2935), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256542,117 +260142,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77174] = 5, + [77339] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2684), 2, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5042), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, + anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5340), 1, + anon_sym_CARET, + ACTIONS(5342), 1, + anon_sym_AMP_AMP, + ACTIONS(5344), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5392), 1, + anon_sym_RPAREN, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5346), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2727), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 11, - anon_sym_PIPE, + ACTIONS(5330), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5334), 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(1807), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(5332), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [77440] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, anon_sym_LBRACK, - anon_sym_COLON, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5340), 1, anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5342), 1, anon_sym_AMP_AMP, + ACTIONS(5344), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5394), 1, + anon_sym_RPAREN, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5346), 2, anon_sym_in, anon_sym_BANGin, - [77229] = 5, + STATE(2728), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5334), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5338), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5332), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [77541] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2685), 2, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5042), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, + anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5136), 1, + anon_sym_CARET, + ACTIONS(5138), 1, + anon_sym_AMP_AMP, + ACTIONS(5140), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5230), 1, + anon_sym_COLON, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5132), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5142), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2729), 2, sym_line_comment, sym_block_comment, - ACTIONS(2725), 13, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5130), 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(2723), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + ACTIONS(5128), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [77642] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5340), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5342), 1, anon_sym_AMP_AMP, + ACTIONS(5344), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5396), 1, + anon_sym_RPAREN, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5346), 2, anon_sym_in, anon_sym_BANGin, - [77284] = 5, + STATE(2730), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5334), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5338), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5332), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [77743] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2686), 2, + STATE(2731), 2, sym_line_comment, sym_block_comment, - ACTIONS(2719), 13, + ACTIONS(2401), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -256660,11 +260451,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2717), 27, + ACTIONS(2399), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256692,297 +260484,670 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77339] = 6, + [77798] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2031), 1, - anon_sym_LBRACE, - STATE(2687), 2, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5356), 1, + sym_identifier, + ACTIONS(5360), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5362), 1, + anon_sym_mut, + ACTIONS(5364), 1, + anon_sym_BANG, + ACTIONS(5366), 1, + anon_sym_LBRACK2, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_shared, + ACTIONS(5398), 1, + anon_sym_RPAREN, + STATE(3038), 1, + sym_mutability_modifiers, + STATE(3917), 1, + sym_plain_type, + STATE(4000), 1, + sym_type_parameter_declaration, + STATE(4004), 1, + sym_parameter_declaration, + STATE(4596), 1, + sym_reference_expression, + STATE(2732), 2, sym_line_comment, sym_block_comment, - ACTIONS(2715), 11, - anon_sym_PIPE, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [77899] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1777), 1, + anon_sym_RPAREN, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5042), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, + anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5340), 1, + anon_sym_CARET, + ACTIONS(5342), 1, + anon_sym_AMP_AMP, + ACTIONS(5344), 1, + anon_sym_PIPE_PIPE, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5346), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2733), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5330), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5334), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5338), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5332), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [78000] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5356), 1, + sym_identifier, + ACTIONS(5360), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5362), 1, + anon_sym_mut, + ACTIONS(5364), 1, + anon_sym_BANG, + ACTIONS(5366), 1, + anon_sym_LBRACK2, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_shared, + ACTIONS(5400), 1, + anon_sym_RPAREN, + STATE(3038), 1, + sym_mutability_modifiers, + STATE(3821), 1, + sym_parameter_declaration, + STATE(3822), 1, + sym_type_parameter_declaration, + STATE(4340), 1, + sym_plain_type, + STATE(4596), 1, + sym_reference_expression, + STATE(2734), 2, + sym_line_comment, + sym_block_comment, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [78101] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5356), 1, + sym_identifier, + ACTIONS(5360), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5362), 1, + anon_sym_mut, + ACTIONS(5364), 1, anon_sym_BANG, + ACTIONS(5366), 1, anon_sym_LBRACK2, + ACTIONS(5368), 1, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2713), 28, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(5370), 1, + anon_sym_shared, + ACTIONS(5402), 1, + anon_sym_RPAREN, + STATE(3038), 1, + sym_mutability_modifiers, + STATE(3819), 1, + sym_parameter_declaration, + STATE(3926), 1, + sym_type_parameter_declaration, + STATE(4340), 1, + sym_plain_type, + STATE(4596), 1, + sym_reference_expression, + STATE(2735), 2, + sym_line_comment, + sym_block_comment, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [78202] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4964), 1, anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2736), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5244), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1767), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1795), 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_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, - [77396] = 22, + [78281] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5356), 1, + sym_identifier, + ACTIONS(5360), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5362), 1, + anon_sym_mut, + ACTIONS(5364), 1, + anon_sym_BANG, + ACTIONS(5366), 1, + anon_sym_LBRACK2, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_shared, + ACTIONS(5404), 1, + anon_sym_RPAREN, + STATE(3038), 1, + sym_mutability_modifiers, + STATE(3904), 1, + sym_parameter_declaration, + STATE(3905), 1, + sym_type_parameter_declaration, + STATE(4340), 1, + sym_plain_type, + STATE(4596), 1, + sym_reference_expression, + STATE(2737), 2, + sym_line_comment, + sym_block_comment, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [78382] = 19, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5314), 1, - anon_sym_AMP_AMP, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5308), 2, + ACTIONS(1767), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5318), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2688), 2, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2738), 2, sym_line_comment, sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 3, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5310), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5304), 5, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1789), 8, + ACTIONS(1795), 15, anon_sym_as, - anon_sym_RPAREN, + 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, - [77485] = 28, + anon_sym_in, + anon_sym_BANGin, + [78465] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(1773), 1, + anon_sym_RPAREN, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5312), 1, + ACTIONS(5340), 1, anon_sym_CARET, - ACTIONS(5314), 1, + ACTIONS(5342), 1, anon_sym_AMP_AMP, - ACTIONS(5316), 1, + ACTIONS(5344), 1, anon_sym_PIPE_PIPE, - ACTIONS(5354), 1, - anon_sym_RPAREN, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5308), 2, + ACTIONS(5336), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5318), 2, + ACTIONS(5346), 2, anon_sym_in, anon_sym_BANGin, - STATE(2689), 2, + STATE(2739), 2, sym_line_comment, sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, + ACTIONS(5330), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 3, + anon_sym_PIPE, + ACTIONS(5334), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5310), 4, + ACTIONS(5338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5304), 5, + ACTIONS(5332), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [77586] = 28, + [78566] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5128), 1, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5254), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, - anon_sym_COLON, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5406), 1, + anon_sym_LBRACE, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5124), 2, + ACTIONS(5246), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - STATE(2690), 2, + STATE(2740), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + ACTIONS(5248), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [77687] = 6, + [78667] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5356), 1, - anon_sym_BANG, - STATE(2691), 2, + ACTIONS(1847), 1, + anon_sym_COMMA, + STATE(2741), 2, sym_line_comment, sym_block_comment, - ACTIONS(2585), 12, + ACTIONS(2643), 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_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2583), 27, + ACTIONS(2641), 26, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -257007,17 +261172,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77744] = 5, + [78724] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2692), 2, + STATE(2742), 2, sym_line_comment, sym_block_comment, - ACTIONS(2427), 13, + ACTIONS(2771), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -257025,11 +261189,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2425), 27, + ACTIONS(2769), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257057,304 +261222,300 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77799] = 5, + [78779] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2693), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1899), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, anon_sym_QMARK, + ACTIONS(4970), 1, anon_sym_BANG, + ACTIONS(4972), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(1897), 27, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 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(5042), 1, anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5340), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5342), 1, anon_sym_AMP_AMP, + ACTIONS(5344), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5408), 1, + anon_sym_RPAREN, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5346), 2, anon_sym_in, anon_sym_BANGin, - [77854] = 5, + STATE(2743), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5334), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5338), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5332), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [78880] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2694), 2, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5252), 1, + anon_sym_CARET, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5246), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5258), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2744), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 13, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5244), 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(2053), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5248), 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(5242), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1795), 9, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [77909] = 28, + [78967] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5312), 1, + ACTIONS(5340), 1, anon_sym_CARET, - ACTIONS(5314), 1, + ACTIONS(5342), 1, anon_sym_AMP_AMP, - ACTIONS(5316), 1, + ACTIONS(5344), 1, anon_sym_PIPE_PIPE, - ACTIONS(5358), 1, + ACTIONS(5410), 1, anon_sym_RPAREN, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5308), 2, + ACTIONS(5336), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5318), 2, + ACTIONS(5346), 2, anon_sym_in, anon_sym_BANGin, - STATE(2695), 2, + STATE(2745), 2, sym_line_comment, sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, + ACTIONS(5330), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 3, + anon_sym_PIPE, + ACTIONS(5334), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5310), 4, + ACTIONS(5338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5304), 5, + ACTIONS(5332), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [78010] = 17, + [79068] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2696), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5306), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1791), 5, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5304), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1789), 16, + ACTIONS(5026), 1, anon_sym_as, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5340), 1, anon_sym_CARET, + ACTIONS(5342), 1, anon_sym_AMP_AMP, + ACTIONS(5344), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5412), 1, + anon_sym_RPAREN, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5346), 2, anon_sym_in, anon_sym_BANGin, - [78089] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5360), 1, - anon_sym_else, - STATE(2858), 1, - sym_else_branch, - STATE(2697), 2, + STATE(2746), 2, sym_line_comment, sym_block_comment, - ACTIONS(1799), 11, - anon_sym_PIPE, + ACTIONS(5330), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5334), 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(1797), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5338), 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(5332), 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, - [78148] = 5, + [79169] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2698), 2, + STATE(2747), 2, sym_line_comment, sym_block_comment, - ACTIONS(2423), 13, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(1877), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -257362,14 +261523,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2421), 27, + ACTIONS(1875), 29, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -257377,101 +261537,91 @@ 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, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [78203] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5202), 1, - anon_sym_CARET, - ACTIONS(5204), 1, - anon_sym_AMP_AMP, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, + anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(5196), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5208), 2, + anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - STATE(2699), 2, + [79224] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2748), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(2719), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + anon_sym_DOT_DOT, + ACTIONS(2717), 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(5192), 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(1789), 8, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - [78292] = 5, + anon_sym_in, + anon_sym_BANGin, + [79279] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2700), 2, + ACTIONS(3005), 1, + anon_sym_DOT, + STATE(2749), 2, sym_line_comment, sym_block_comment, - ACTIONS(2265), 13, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(3945), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -257479,14 +261629,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2263), 27, + ACTIONS(2935), 25, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -257494,7 +261642,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, @@ -257511,7 +261658,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78347] = 28, + anon_sym_DOT_DOT, + [79338] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -257526,52 +261674,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5320), 1, + ACTIONS(5356), 1, sym_identifier, - ACTIONS(5324), 1, + ACTIONS(5360), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5326), 1, + ACTIONS(5362), 1, anon_sym_mut, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5334), 1, + ACTIONS(5370), 1, anon_sym_shared, - ACTIONS(5362), 1, + ACTIONS(5414), 1, anon_sym_RPAREN, - STATE(2963), 1, + STATE(3038), 1, sym_mutability_modifiers, - STATE(3960), 1, + STATE(3910), 1, sym_parameter_declaration, - STATE(3961), 1, + STATE(3911), 1, sym_type_parameter_declaration, - STATE(4013), 1, + STATE(4340), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2701), 2, + STATE(2750), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -257584,7 +261732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [78448] = 28, + [79439] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -257599,52 +261747,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5320), 1, + ACTIONS(5356), 1, sym_identifier, - ACTIONS(5324), 1, + ACTIONS(5360), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5326), 1, + ACTIONS(5362), 1, anon_sym_mut, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5334), 1, + ACTIONS(5370), 1, anon_sym_shared, - ACTIONS(5364), 1, + ACTIONS(5416), 1, anon_sym_RPAREN, - STATE(2963), 1, + STATE(3038), 1, sym_mutability_modifiers, - STATE(3933), 1, - sym_type_parameter_declaration, - STATE(3934), 1, + STATE(3833), 1, sym_parameter_declaration, - STATE(4013), 1, + STATE(3836), 1, + sym_type_parameter_declaration, + STATE(4340), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2702), 2, + STATE(2751), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -257657,17 +261805,16 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [78549] = 5, + [79540] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2703), 2, + STATE(2752), 2, sym_line_comment, sym_block_comment, - ACTIONS(2273), 13, + ACTIONS(2755), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -257675,11 +261822,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2271), 27, + ACTIONS(2753), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257707,93 +261855,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78604] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5018), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, - anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5128), 1, - anon_sym_CARET, - ACTIONS(5130), 1, - anon_sym_AMP_AMP, - ACTIONS(5132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5366), 1, - anon_sym_RBRACK, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5124), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5134), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2704), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5122), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5126), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5120), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [78705] = 7, + [79595] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5360), 1, - anon_sym_else, - STATE(2860), 1, - sym_else_branch, - STATE(2705), 2, + STATE(2753), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 11, - anon_sym_PIPE, + ACTIONS(1945), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -257801,12 +261872,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1803), 27, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1943), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -257814,12 +261888,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, @@ -257832,17 +261905,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78764] = 5, + [79650] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2706), 2, + ACTIONS(1847), 1, + anon_sym_LBRACE, + STATE(2754), 2, sym_line_comment, sym_block_comment, - ACTIONS(2269), 13, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(1837), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -257850,13 +261923,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2267), 27, + ACTIONS(1835), 28, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, @@ -257865,7 +261939,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, @@ -257882,17 +261955,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78819] = 5, + anon_sym_COLON_EQ, + [79707] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2707), 2, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5252), 1, + anon_sym_CARET, + ACTIONS(5254), 1, + anon_sym_AMP_AMP, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5246), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5258), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2755), 2, sym_line_comment, sym_block_comment, - ACTIONS(2261), 13, - anon_sym_DOT, + ACTIONS(5240), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, + ACTIONS(5244), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5248), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5242), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1795), 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, + [79796] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2756), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2445), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -257900,11 +262040,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2259), 27, + ACTIONS(2443), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257932,17 +262073,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78874] = 5, + [79851] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2708), 2, + STATE(2757), 2, sym_line_comment, sym_block_comment, - ACTIONS(2253), 13, + ACTIONS(2761), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -257950,11 +262090,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2251), 27, + ACTIONS(2759), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257982,67 +262123,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78929] = 5, + [79906] = 19, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2709), 2, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5252), 1, + anon_sym_CARET, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(1793), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2758), 2, sym_line_comment, sym_block_comment, - ACTIONS(2249), 13, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5244), 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(2247), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1791), 15, + anon_sym_as, + anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78984] = 5, + [79989] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2710), 2, + STATE(2759), 2, sym_line_comment, sym_block_comment, - ACTIONS(2163), 13, + ACTIONS(2709), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -258050,11 +262204,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2161), 27, + ACTIONS(2707), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258082,140 +262237,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79039] = 28, + [80044] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5312), 1, + ACTIONS(5340), 1, anon_sym_CARET, - ACTIONS(5314), 1, + ACTIONS(5342), 1, anon_sym_AMP_AMP, - ACTIONS(5316), 1, + ACTIONS(5344), 1, anon_sym_PIPE_PIPE, - ACTIONS(5368), 1, + ACTIONS(5418), 1, anon_sym_RPAREN, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5308), 2, + ACTIONS(5336), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5318), 2, + ACTIONS(5346), 2, anon_sym_in, anon_sym_BANGin, - STATE(2711), 2, + STATE(2760), 2, sym_line_comment, sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, + ACTIONS(5330), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 3, + anon_sym_PIPE, + ACTIONS(5334), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5310), 4, + ACTIONS(5338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5304), 5, + ACTIONS(5332), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [79140] = 5, + [80145] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2712), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2147), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, anon_sym_QMARK, + ACTIONS(4970), 1, anon_sym_BANG, + ACTIONS(4972), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2145), 27, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 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(5042), 1, anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5252), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5254), 1, anon_sym_AMP_AMP, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5420), 1, + anon_sym_LBRACE, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5246), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - [79195] = 5, + STATE(2761), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5240), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5244), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5248), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5242), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [80246] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2713), 2, + STATE(2762), 2, sym_line_comment, sym_block_comment, - ACTIONS(2245), 13, + ACTIONS(2779), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -258223,11 +262400,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2243), 27, + ACTIONS(2777), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258255,240 +262433,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79250] = 28, + [80301] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5312), 1, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5314), 1, + ACTIONS(5254), 1, anon_sym_AMP_AMP, - ACTIONS(5316), 1, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - ACTIONS(5370), 1, - anon_sym_RPAREN, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5422), 1, + anon_sym_LBRACE, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5308), 2, + ACTIONS(5246), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5318), 2, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - STATE(2714), 2, + STATE(2763), 2, sym_line_comment, sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 3, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5310), 4, + ACTIONS(5248), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5304), 5, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [79351] = 5, + [80402] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2715), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2229), 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(2227), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(4964), 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(4966), 1, anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [79406] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2716), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2225), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4968), 1, anon_sym_QMARK, + ACTIONS(4970), 1, anon_sym_BANG, + ACTIONS(4972), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2223), 27, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 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(5042), 1, anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5136), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5138), 1, anon_sym_AMP_AMP, + ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5424), 1, + anon_sym_SEMI, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5132), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - [79461] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2717), 2, + STATE(2764), 2, sym_line_comment, sym_block_comment, - ACTIONS(2221), 13, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5130), 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(2219), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5134), 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(5128), 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, - [79516] = 5, + [80503] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2718), 2, + STATE(2765), 2, sym_line_comment, sym_block_comment, - ACTIONS(2217), 13, + ACTIONS(2961), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -258496,11 +262596,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2215), 27, + ACTIONS(2959), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258528,17 +262629,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79571] = 5, + [80558] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2719), 2, + STATE(2766), 2, sym_line_comment, sym_block_comment, - ACTIONS(2213), 13, + ACTIONS(2965), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -258546,11 +262646,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2211), 27, + ACTIONS(2963), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258578,81 +262679,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79626] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5202), 1, - anon_sym_CARET, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(1787), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2720), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5194), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5192), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1785), 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, - [79709] = 5, + [80613] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2721), 2, + STATE(2767), 2, sym_line_comment, sym_block_comment, - ACTIONS(2209), 13, + ACTIONS(2981), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -258660,11 +262696,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2207), 27, + ACTIONS(2979), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258692,90 +262729,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79764] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5018), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, - anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5312), 1, - anon_sym_CARET, - ACTIONS(5314), 1, - anon_sym_AMP_AMP, - ACTIONS(5316), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5372), 1, - anon_sym_RPAREN, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5308), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5318), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2722), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5306), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5310), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5304), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [79865] = 5, + [80668] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2723), 2, + STATE(2768), 2, sym_line_comment, sym_block_comment, - ACTIONS(2205), 13, + ACTIONS(2989), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -258783,11 +262746,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2203), 27, + ACTIONS(2987), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258815,90 +262779,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79920] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3600), 1, - anon_sym_STAR, - ACTIONS(5320), 1, - sym_identifier, - ACTIONS(5324), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5326), 1, - anon_sym_mut, - ACTIONS(5328), 1, - anon_sym_BANG, - ACTIONS(5330), 1, - anon_sym_LBRACK2, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, - anon_sym_shared, - ACTIONS(5374), 1, - anon_sym_RPAREN, - STATE(2963), 1, - sym_mutability_modifiers, - STATE(3911), 1, - sym_parameter_declaration, - STATE(3913), 1, - sym_type_parameter_declaration, - STATE(4013), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(2724), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2290), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2292), 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, - [80021] = 5, + [80723] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2725), 2, + STATE(2769), 2, sym_line_comment, sym_block_comment, - ACTIONS(2547), 13, + ACTIONS(2745), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -258906,11 +262796,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2545), 27, + ACTIONS(2743), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258938,313 +262829,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80076] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3600), 1, - anon_sym_STAR, - ACTIONS(5320), 1, - sym_identifier, - ACTIONS(5324), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5326), 1, - anon_sym_mut, - ACTIONS(5328), 1, - anon_sym_BANG, - ACTIONS(5330), 1, - anon_sym_LBRACK2, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, - anon_sym_shared, - ACTIONS(5376), 1, - anon_sym_RPAREN, - STATE(2963), 1, - sym_mutability_modifiers, - STATE(3858), 1, - sym_parameter_declaration, - STATE(3859), 1, - sym_type_parameter_declaration, - STATE(4013), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(2726), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2290), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2292), 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, - [80177] = 28, + [80778] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4725), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4731), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4733), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4735), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4737), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4739), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - ACTIONS(4753), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(4755), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(4757), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(4759), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4761), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5276), 1, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5278), 1, - anon_sym_LT_DASH, - STATE(2073), 1, - sym_argument_list, - STATE(2074), 1, + ACTIONS(5254), 1, + anon_sym_AMP_AMP, + ACTIONS(5256), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5426), 1, + anon_sym_LBRACE, + STATE(2408), 1, sym_or_block, - STATE(4147), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4723), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4741), 2, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5246), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4747), 2, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(4763), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2727), 2, + STATE(2770), 2, sym_line_comment, sym_block_comment, - ACTIONS(4727), 3, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4729), 3, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4743), 4, + ACTIONS(5248), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5272), 5, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80278] = 5, + [80879] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2728), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2159), 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(2157), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(4964), 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(4966), 1, anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [80333] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2729), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2155), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4968), 1, anon_sym_QMARK, + ACTIONS(4970), 1, anon_sym_BANG, + ACTIONS(4972), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2153), 27, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 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(5042), 1, anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5252), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5254), 1, anon_sym_AMP_AMP, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5428), 1, + anon_sym_LBRACE, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5246), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - [80388] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2730), 2, + STATE(2771), 2, sym_line_comment, sym_block_comment, - ACTIONS(2201), 13, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5244), 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(2199), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5248), 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(5242), 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, - [80443] = 5, + [80980] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2731), 2, + STATE(2772), 2, sym_line_comment, sym_block_comment, - ACTIONS(2431), 13, + ACTIONS(3010), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -259252,11 +262992,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2429), 27, + ACTIONS(3008), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259284,17 +263025,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80498] = 5, + [81035] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2732), 2, + STATE(2773), 2, sym_line_comment, sym_block_comment, - ACTIONS(2097), 13, + ACTIONS(2941), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -259302,11 +263042,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2095), 27, + ACTIONS(2939), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259334,17 +263075,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80553] = 5, + [81090] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2733), 2, + STATE(2774), 2, sym_line_comment, sym_block_comment, - ACTIONS(2189), 13, + ACTIONS(3026), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -259352,11 +263092,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2187), 27, + ACTIONS(3024), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259384,17 +263125,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80608] = 5, + [81145] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2734), 2, + STATE(2775), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 13, + ACTIONS(3030), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -259402,11 +263142,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2183), 27, + ACTIONS(3028), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259434,17 +263175,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80663] = 5, + [81200] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2735), 2, + STATE(2776), 2, sym_line_comment, sym_block_comment, - ACTIONS(2833), 13, + ACTIONS(3038), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -259452,11 +263192,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2831), 27, + ACTIONS(3036), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259484,17 +263225,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80718] = 5, + [81255] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2736), 2, + STATE(2777), 2, sym_line_comment, sym_block_comment, - ACTIONS(2181), 13, + ACTIONS(3042), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -259502,11 +263242,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2179), 27, + ACTIONS(3040), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259534,17 +263275,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80773] = 5, + [81310] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2737), 2, + STATE(2778), 2, sym_line_comment, sym_block_comment, - ACTIONS(2151), 13, + ACTIONS(3058), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -259552,11 +263292,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2149), 27, + ACTIONS(3056), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259584,117 +263325,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80828] = 5, + [81365] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2738), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2123), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, anon_sym_QMARK, + ACTIONS(4970), 1, anon_sym_BANG, + ACTIONS(4972), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2121), 27, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 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(5042), 1, anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5340), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5342), 1, anon_sym_AMP_AMP, + ACTIONS(5344), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5430), 1, + anon_sym_RPAREN, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5346), 2, anon_sym_in, anon_sym_BANGin, - [80883] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2739), 2, + STATE(2779), 2, sym_line_comment, sym_block_comment, - ACTIONS(2175), 13, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(5330), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5334), 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(2173), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5338), 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(5332), 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, - [80938] = 5, + [81466] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2740), 2, + STATE(2780), 2, sym_line_comment, sym_block_comment, - ACTIONS(2127), 13, + ACTIONS(3070), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -259702,11 +263415,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2125), 27, + ACTIONS(3068), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259734,17 +263448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80993] = 5, + [81521] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2741), 2, + STATE(2781), 2, sym_line_comment, sym_block_comment, - ACTIONS(2105), 13, + ACTIONS(3050), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -259752,11 +263465,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2103), 27, + ACTIONS(3048), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259784,141 +263498,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81048] = 5, + [81576] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2742), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2133), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, anon_sym_QMARK, + ACTIONS(4970), 1, anon_sym_BANG, + ACTIONS(4972), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2131), 27, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 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(5042), 1, anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5340), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5342), 1, anon_sym_AMP_AMP, + ACTIONS(5344), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5432), 1, + anon_sym_RPAREN, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5346), 2, anon_sym_in, anon_sym_BANGin, - [81103] = 28, + STATE(2782), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5334), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5338), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5332), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [81677] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5312), 1, + ACTIONS(5340), 1, anon_sym_CARET, - ACTIONS(5314), 1, + ACTIONS(5342), 1, anon_sym_AMP_AMP, - ACTIONS(5316), 1, + ACTIONS(5344), 1, anon_sym_PIPE_PIPE, - ACTIONS(5378), 1, + ACTIONS(5434), 1, anon_sym_RPAREN, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5308), 2, + ACTIONS(5336), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5318), 2, + ACTIONS(5346), 2, anon_sym_in, anon_sym_BANGin, - STATE(2743), 2, + STATE(2783), 2, sym_line_comment, sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, + ACTIONS(5330), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 3, + anon_sym_PIPE, + ACTIONS(5334), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5310), 4, + ACTIONS(5338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5304), 5, + ACTIONS(5332), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [81204] = 6, + [81778] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2031), 1, - anon_sym_LBRACE, - STATE(2744), 2, + STATE(2784), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 11, - anon_sym_PIPE, + ACTIONS(2701), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -259926,13 +263661,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1807), 28, - anon_sym_SEMI, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2699), 27, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, @@ -259941,6 +263677,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, @@ -259957,163 +263694,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [81261] = 28, + [81833] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5312), 1, + ACTIONS(5340), 1, anon_sym_CARET, - ACTIONS(5314), 1, + ACTIONS(5342), 1, anon_sym_AMP_AMP, - ACTIONS(5316), 1, + ACTIONS(5344), 1, anon_sym_PIPE_PIPE, - ACTIONS(5380), 1, + ACTIONS(5436), 1, anon_sym_RPAREN, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5308), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5318), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2745), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5306), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5310), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5304), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [81362] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5018), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, - anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5202), 1, - anon_sym_CARET, - ACTIONS(5204), 1, - anon_sym_AMP_AMP, - ACTIONS(5206), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5382), 1, - anon_sym_LBRACE, - STATE(2351), 1, + STATE(2439), 1, sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5196), 2, + ACTIONS(5336), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(5346), 2, anon_sym_in, anon_sym_BANGin, - STATE(2746), 2, + STATE(2785), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(5330), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(5334), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(5338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, + ACTIONS(5332), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [81463] = 5, + [81934] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2747), 2, + STATE(2786), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 11, - anon_sym_PIPE, + ACTIONS(2095), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -260121,12 +263784,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1887), 29, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2093), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -260134,12 +263800,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, @@ -260148,25 +263813,20 @@ 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, - [81518] = 6, + [81989] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2031), 1, - anon_sym_COMMA, - STATE(2748), 2, + STATE(2787), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 13, + ACTIONS(2683), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -260174,13 +263834,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(1807), 26, + ACTIONS(2681), 27, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -260205,163 +263867,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81575] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3600), 1, - anon_sym_STAR, - ACTIONS(5320), 1, - sym_identifier, - ACTIONS(5324), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5326), 1, - anon_sym_mut, - ACTIONS(5328), 1, - anon_sym_BANG, - ACTIONS(5330), 1, - anon_sym_LBRACK2, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, - anon_sym_shared, - ACTIONS(5384), 1, - anon_sym_RPAREN, - STATE(2963), 1, - sym_mutability_modifiers, - STATE(3955), 1, - sym_parameter_declaration, - STATE(3956), 1, - sym_type_parameter_declaration, - STATE(4013), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(2749), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2290), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2292), 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, - [81676] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3600), 1, - anon_sym_STAR, - ACTIONS(5324), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5326), 1, - anon_sym_mut, - ACTIONS(5328), 1, - anon_sym_BANG, - ACTIONS(5330), 1, - anon_sym_LBRACK2, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, - anon_sym_shared, - ACTIONS(5386), 1, - sym_identifier, - ACTIONS(5388), 1, - anon_sym_RPAREN, - STATE(2993), 1, - sym_mutability_modifiers, - STATE(3764), 1, - sym_type_parameter_declaration, - STATE(3890), 1, - sym_parameter_declaration, - STATE(4013), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(2750), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2290), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2292), 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, - [81777] = 5, + [82044] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2751), 2, + STATE(2788), 2, sym_line_comment, sym_block_comment, - ACTIONS(2805), 13, + ACTIONS(2775), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -260369,11 +263884,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2803), 27, + ACTIONS(2773), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -260401,92 +263917,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81832] = 28, + [82099] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5018), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, - anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5312), 1, - anon_sym_CARET, - ACTIONS(5314), 1, - anon_sym_AMP_AMP, - ACTIONS(5316), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5390), 1, - anon_sym_RPAREN, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5308), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5318), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2752), 2, + STATE(2789), 2, sym_line_comment, sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, + ACTIONS(2327), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5310), 4, + anon_sym_DOT_DOT, + ACTIONS(2325), 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(5304), 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, - [81933] = 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [82154] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2031), 2, + ACTIONS(1847), 2, anon_sym_LBRACE, anon_sym_COMMA, - STATE(2753), 2, + STATE(2790), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 11, - anon_sym_PIPE, + ACTIONS(2643), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -260494,10 +263986,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1807), 27, + ACTIONS(2641), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -260525,17 +264018,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81990] = 5, + [82211] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2754), 2, + STATE(2791), 2, sym_line_comment, sym_block_comment, - ACTIONS(2877), 13, + ACTIONS(2453), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -260543,11 +264035,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2875), 27, + ACTIONS(2451), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -260575,17 +264068,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82045] = 5, + [82266] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2755), 2, + STATE(2792), 2, sym_line_comment, sym_block_comment, - ACTIONS(2093), 13, + ACTIONS(2395), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -260593,11 +264085,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2091), 27, + ACTIONS(2393), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -260625,165 +264118,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82100] = 28, + [82321] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, + STATE(2793), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2457), 13, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4946), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2455), 27, anon_sym_as, - ACTIONS(5018), 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(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5202), 1, anon_sym_CARET, - ACTIONS(5204), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5392), 1, - anon_sym_LBRACE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5196), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - STATE(2756), 2, + [82376] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2794), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(2639), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + anon_sym_DOT_DOT, + ACTIONS(2637), 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(5192), 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, - [82201] = 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, + [82431] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(1781), 1, + anon_sym_LBRACE, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5312), 1, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5314), 1, + ACTIONS(5254), 1, anon_sym_AMP_AMP, - ACTIONS(5316), 1, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - ACTIONS(5394), 1, - anon_sym_RPAREN, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5226), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5308), 2, + ACTIONS(5246), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5318), 2, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - STATE(2757), 2, + STATE(2795), 2, sym_line_comment, sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 3, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5310), 4, + ACTIONS(5248), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5304), 5, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82302] = 6, + [82532] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2031), 1, - anon_sym_COMMA, - STATE(2758), 2, + STATE(2796), 2, sym_line_comment, sym_block_comment, - ACTIONS(2715), 13, + ACTIONS(2371), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -260791,13 +264308,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2713), 26, + ACTIONS(2369), 27, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -260822,17 +264341,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82359] = 5, + [82587] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2759), 2, + STATE(2797), 2, sym_line_comment, sym_block_comment, - ACTIONS(2101), 13, + ACTIONS(2111), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -260840,11 +264358,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2099), 27, + ACTIONS(2109), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -260872,236 +264391,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82414] = 28, + [82642] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5254), 1, anon_sym_AMP_AMP, - ACTIONS(5206), 1, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - ACTIONS(5396), 1, + ACTIONS(5438), 1, anon_sym_LBRACE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5196), 2, + ACTIONS(5246), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - STATE(2760), 2, + STATE(2798), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(5248), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82515] = 28, + [82743] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5018), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, - anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5312), 1, - anon_sym_CARET, - ACTIONS(5314), 1, - anon_sym_AMP_AMP, - ACTIONS(5316), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5398), 1, - anon_sym_RPAREN, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5308), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5318), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2761), 2, + STATE(2799), 2, sym_line_comment, sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, + ACTIONS(2469), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5310), 4, + anon_sym_DOT_DOT, + ACTIONS(2467), 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(5304), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [82616] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5312), 1, anon_sym_CARET, - ACTIONS(5314), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5316), 1, anon_sym_PIPE_PIPE, - ACTIONS(5400), 1, - anon_sym_RPAREN, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5308), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5318), 2, anon_sym_in, anon_sym_BANGin, - STATE(2762), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5306), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5310), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5304), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [82717] = 5, + [82798] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2763), 2, + STATE(2800), 2, sym_line_comment, sym_block_comment, - ACTIONS(2837), 13, + ACTIONS(2357), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -261109,11 +264531,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2835), 27, + ACTIONS(2355), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -261141,18 +264564,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82772] = 6, + [82853] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3039), 1, - anon_sym_DOT, - STATE(2764), 2, + ACTIONS(1847), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2801), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 12, - anon_sym_PIPE, + ACTIONS(1837), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -261160,14 +264583,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2885), 27, + ACTIONS(1835), 27, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -261175,11 +264597,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, @@ -261192,163 +264615,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82829] = 28, + [82910] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5340), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5342), 1, anon_sym_AMP_AMP, - ACTIONS(5206), 1, + ACTIONS(5344), 1, anon_sym_PIPE_PIPE, - ACTIONS(5402), 1, - anon_sym_LBRACE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5440), 1, + anon_sym_RPAREN, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5196), 2, + ACTIONS(5336), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(5346), 2, anon_sym_in, anon_sym_BANGin, - STATE(2765), 2, + STATE(2802), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(5330), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(5334), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(5338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, + ACTIONS(5332), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [83011] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2803), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3066), 13, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3064), 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, - [82930] = 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, + [83066] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5254), 1, anon_sym_AMP_AMP, - ACTIONS(5206), 1, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - ACTIONS(5404), 1, + ACTIONS(5442), 1, anon_sym_LBRACE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5196), 2, + ACTIONS(5246), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - STATE(2766), 2, + STATE(2804), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(5248), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, + ACTIONS(5242), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [83167] = 19, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5340), 1, + anon_sym_CARET, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(1793), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2805), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5334), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5332), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83031] = 5, + ACTIONS(1791), 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, + [83250] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2767), 2, + STATE(2806), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 13, + ACTIONS(1845), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -261356,11 +264892,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2885), 27, + ACTIONS(1847), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -261388,80 +264925,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [83086] = 28, + [83305] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(1773), 1, + anon_sym_LBRACE, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5254), 1, anon_sym_AMP_AMP, - ACTIONS(5206), 1, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - ACTIONS(5406), 1, - anon_sym_LBRACE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5196), 2, + ACTIONS(5246), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - STATE(2768), 2, + STATE(2807), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, + ACTIONS(5240), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, + ACTIONS(5244), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5248), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5242), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [83406] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1777), 1, + anon_sym_LBRACE, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5042), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, + anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5252), 1, + anon_sym_CARET, + ACTIONS(5254), 1, + anon_sym_AMP_AMP, + ACTIONS(5256), 1, + anon_sym_PIPE_PIPE, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5246), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5258), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2808), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(5248), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83187] = 28, + [83507] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -261476,52 +265086,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5320), 1, + ACTIONS(5356), 1, sym_identifier, - ACTIONS(5324), 1, + ACTIONS(5360), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5326), 1, + ACTIONS(5362), 1, anon_sym_mut, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5334), 1, + ACTIONS(5370), 1, anon_sym_shared, - ACTIONS(5408), 1, + ACTIONS(5444), 1, anon_sym_RPAREN, - STATE(2963), 1, + STATE(3038), 1, sym_mutability_modifiers, - STATE(3972), 1, - sym_type_parameter_declaration, - STATE(3973), 1, + STATE(3998), 1, sym_parameter_declaration, - STATE(4013), 1, + STATE(4003), 1, + sym_type_parameter_declaration, + STATE(4340), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2769), 2, + STATE(2809), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -261534,90 +265144,89 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [83288] = 28, + [83608] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1771), 1, - anon_sym_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5340), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5342), 1, anon_sym_AMP_AMP, - ACTIONS(5206), 1, + ACTIONS(5344), 1, anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5446), 1, + anon_sym_RPAREN, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5196), 2, + ACTIONS(5054), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5336), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(5346), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5280), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2770), 2, + STATE(2810), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(5330), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(5334), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(5338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, + ACTIONS(5332), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83389] = 5, + [83709] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2771), 2, + STATE(2811), 2, sym_line_comment, sym_block_comment, - ACTIONS(2863), 13, + ACTIONS(3046), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -261625,11 +265234,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2861), 27, + ACTIONS(3044), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -261657,595 +265267,627 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [83444] = 28, + [83764] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1777), 1, - anon_sym_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5254), 1, anon_sym_AMP_AMP, - ACTIONS(5206), 1, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5448), 1, + anon_sym_LBRACE, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5196), 2, + ACTIONS(5246), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - STATE(2772), 2, + STATE(2812), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(5248), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83545] = 28, + [83865] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5356), 1, + sym_identifier, + ACTIONS(5360), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5362), 1, + anon_sym_mut, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5018), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, - anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5312), 1, - anon_sym_CARET, - ACTIONS(5314), 1, - anon_sym_AMP_AMP, - ACTIONS(5316), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5410), 1, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_shared, + ACTIONS(5450), 1, anon_sym_RPAREN, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5308), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5318), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2773), 2, + STATE(3038), 1, + sym_mutability_modifiers, + STATE(4020), 1, + sym_type_parameter_declaration, + STATE(4021), 1, + sym_parameter_declaration, + STATE(4340), 1, + sym_plain_type, + STATE(4596), 1, + sym_reference_expression, + STATE(2813), 2, sym_line_comment, sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [83966] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2814), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2977), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5310), 4, + anon_sym_DOT_DOT, + ACTIONS(2975), 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(5304), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [83646] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5312), 1, anon_sym_CARET, - ACTIONS(5314), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5316), 1, anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, - anon_sym_RPAREN, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5308), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5318), 2, anon_sym_in, anon_sym_BANGin, - STATE(2774), 2, + [84021] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2815), 2, sym_line_comment, sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, + ACTIONS(2973), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5310), 4, + anon_sym_DOT_DOT, + ACTIONS(2971), 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(5304), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [83747] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5312), 1, anon_sym_CARET, - ACTIONS(5314), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5316), 1, anon_sym_PIPE_PIPE, - ACTIONS(5414), 1, - anon_sym_RPAREN, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5308), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5318), 2, anon_sym_in, anon_sym_BANGin, - STATE(2775), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5306), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5310), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5304), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [83848] = 28, + [84076] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5312), 1, + ACTIONS(5340), 1, anon_sym_CARET, - ACTIONS(5314), 1, + ACTIONS(5342), 1, anon_sym_AMP_AMP, - ACTIONS(5316), 1, + ACTIONS(5344), 1, anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, + ACTIONS(5452), 1, anon_sym_RPAREN, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5308), 2, + ACTIONS(5336), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5318), 2, + ACTIONS(5346), 2, anon_sym_in, anon_sym_BANGin, - STATE(2776), 2, + STATE(2816), 2, sym_line_comment, sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, + ACTIONS(5330), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 3, + anon_sym_PIPE, + ACTIONS(5334), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5310), 4, + ACTIONS(5338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5304), 5, + ACTIONS(5332), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83949] = 19, + [84177] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5356), 1, + sym_identifier, + ACTIONS(5360), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5362), 1, + anon_sym_mut, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5312), 1, - anon_sym_CARET, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(1787), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2777), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5306), 3, - anon_sym_SLASH, + ACTIONS(5368), 1, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5304), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1785), 15, - anon_sym_as, + ACTIONS(5370), 1, + anon_sym_shared, + ACTIONS(5454), 1, anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [84032] = 28, + STATE(3038), 1, + sym_mutability_modifiers, + STATE(4036), 1, + sym_type_parameter_declaration, + STATE(4037), 1, + sym_parameter_declaration, + STATE(4340), 1, + sym_plain_type, + STATE(4596), 1, + sym_reference_expression, + STATE(2817), 2, + sym_line_comment, + sym_block_comment, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [84278] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5340), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5342), 1, anon_sym_AMP_AMP, - ACTIONS(5206), 1, + ACTIONS(5344), 1, anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, - anon_sym_LBRACE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5456), 1, + anon_sym_RPAREN, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5196), 2, + ACTIONS(5336), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(5346), 2, anon_sym_in, anon_sym_BANGin, - STATE(2778), 2, + STATE(2818), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(5330), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(5334), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(5338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, + ACTIONS(5332), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84133] = 28, + [84379] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4749), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4759), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4761), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4763), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4765), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4767), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(4771), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(4773), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(4775), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5202), 1, - anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(4777), 1, anon_sym_AMP_AMP, - ACTIONS(5206), 1, + ACTIONS(4779), 1, anon_sym_PIPE_PIPE, - ACTIONS(5420), 1, - anon_sym_LBRACE, - STATE(2351), 1, + ACTIONS(4781), 1, + anon_sym_or, + ACTIONS(5232), 1, + anon_sym_CARET, + ACTIONS(5234), 1, + anon_sym_LT_DASH, + STATE(2077), 1, sym_argument_list, - STATE(2359), 1, + STATE(2078), 1, sym_or_block, - STATE(4149), 1, + STATE(4272), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4747), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5196), 2, + ACTIONS(4755), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(4769), 2, anon_sym_in, anon_sym_BANGin, - STATE(2779), 2, + ACTIONS(4783), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2819), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(4751), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(4753), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(4757), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, + ACTIONS(5228), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84234] = 6, + [84480] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5422), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2780), 2, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5356), 1, + sym_identifier, + ACTIONS(5360), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5362), 1, + anon_sym_mut, + ACTIONS(5364), 1, + anon_sym_BANG, + ACTIONS(5366), 1, + anon_sym_LBRACK2, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_shared, + ACTIONS(5458), 1, + anon_sym_RPAREN, + STATE(3038), 1, + sym_mutability_modifiers, + STATE(4059), 1, + sym_type_parameter_declaration, + STATE(4060), 1, + sym_parameter_declaration, + STATE(4340), 1, + sym_plain_type, + STATE(4596), 1, + sym_reference_expression, + STATE(2820), 2, + sym_line_comment, + sym_block_comment, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [84581] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2821), 2, sym_line_comment, sym_block_comment, - ACTIONS(2883), 13, + ACTIONS(2957), 13, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -262253,12 +265895,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2881), 25, + ACTIONS(2955), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -262283,7 +265928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84291] = 28, + [84636] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -262298,52 +265943,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5320), 1, + ACTIONS(5356), 1, sym_identifier, - ACTIONS(5324), 1, + ACTIONS(5360), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5326), 1, + ACTIONS(5362), 1, anon_sym_mut, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5334), 1, + ACTIONS(5370), 1, anon_sym_shared, - ACTIONS(5388), 1, + ACTIONS(5460), 1, anon_sym_RPAREN, - STATE(2963), 1, + STATE(3038), 1, sym_mutability_modifiers, - STATE(3764), 1, - sym_type_parameter_declaration, - STATE(3890), 1, + STATE(4007), 1, sym_parameter_declaration, - STATE(4013), 1, + STATE(4008), 1, + sym_type_parameter_declaration, + STATE(4340), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2781), 2, + STATE(2822), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -262356,167 +266001,215 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [84392] = 28, + [84737] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1763), 1, - anon_sym_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5136), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5206), 1, + ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5462), 1, + anon_sym_SEMI, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5196), 2, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - STATE(2782), 2, + STATE(2823), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, + ACTIONS(5128), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [84838] = 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(2321), 13, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2319), 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, - [84493] = 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, + [84893] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5254), 1, anon_sym_AMP_AMP, - ACTIONS(5206), 1, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - ACTIONS(5424), 1, + ACTIONS(5464), 1, anon_sym_LBRACE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5196), 2, + ACTIONS(5246), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - STATE(2783), 2, + STATE(2825), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(5248), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84594] = 6, + [84994] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2784), 2, + ACTIONS(5466), 1, + anon_sym_else, + STATE(2877), 1, + sym_else_branch, + STATE(2826), 2, sym_line_comment, sym_block_comment, - ACTIONS(2060), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(2055), 13, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(1799), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -262524,11 +266217,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2053), 24, + ACTIONS(1797), 27, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -262537,10 +266231,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, @@ -262553,204 +266249,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84651] = 6, + [85053] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2031), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2785), 2, + ACTIONS(5466), 1, + anon_sym_else, + STATE(2899), 1, + sym_else_branch, + STATE(2827), 2, sym_line_comment, sym_block_comment, - ACTIONS(2715), 13, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(1805), 11, 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(2713), 25, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [84708] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3600), 1, - anon_sym_STAR, - ACTIONS(5320), 1, - sym_identifier, - ACTIONS(5324), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5326), 1, - anon_sym_mut, - ACTIONS(5328), 1, - anon_sym_BANG, - ACTIONS(5330), 1, - anon_sym_LBRACK2, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, - anon_sym_shared, - ACTIONS(5426), 1, - anon_sym_RPAREN, - STATE(2963), 1, - sym_mutability_modifiers, - STATE(3760), 1, - sym_parameter_declaration, - STATE(3761), 1, - sym_type_parameter_declaration, - STATE(4013), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(2786), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2290), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2292), 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, - [84809] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5018), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, - anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5128), 1, - anon_sym_CARET, - ACTIONS(5130), 1, - anon_sym_AMP_AMP, - ACTIONS(5132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5428), 1, - anon_sym_SEMI, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5124), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5134), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2787), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5122), 3, - anon_sym_SLASH, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + ACTIONS(1803), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, - anon_sym_STAR, - anon_sym_PERCENT, + 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, - [84910] = 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, + [85112] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -262765,52 +266316,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5320), 1, + ACTIONS(5356), 1, sym_identifier, - ACTIONS(5324), 1, + ACTIONS(5360), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5326), 1, + ACTIONS(5362), 1, anon_sym_mut, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5334), 1, + ACTIONS(5370), 1, anon_sym_shared, - ACTIONS(5430), 1, + ACTIONS(5398), 1, anon_sym_RPAREN, - STATE(2963), 1, + STATE(3038), 1, sym_mutability_modifiers, - STATE(3949), 1, + STATE(4000), 1, sym_type_parameter_declaration, - STATE(3950), 1, + STATE(4004), 1, sym_parameter_declaration, - STATE(4013), 1, + STATE(4340), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2788), 2, + STATE(2828), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -262823,731 +266374,556 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [85011] = 28, + [85213] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5312), 1, + ACTIONS(5340), 1, anon_sym_CARET, - ACTIONS(5314), 1, + ACTIONS(5342), 1, anon_sym_AMP_AMP, - ACTIONS(5316), 1, + ACTIONS(5344), 1, anon_sym_PIPE_PIPE, - ACTIONS(5432), 1, + ACTIONS(5468), 1, anon_sym_RPAREN, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5308), 2, + ACTIONS(5336), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5318), 2, + ACTIONS(5346), 2, anon_sym_in, anon_sym_BANGin, - STATE(2789), 2, + STATE(2829), 2, sym_line_comment, sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, + ACTIONS(5330), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 3, + anon_sym_PIPE, + ACTIONS(5334), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5310), 4, + ACTIONS(5338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5304), 5, + ACTIONS(5332), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85112] = 28, + [85314] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5312), 1, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5314), 1, + ACTIONS(5254), 1, anon_sym_AMP_AMP, - ACTIONS(5316), 1, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - ACTIONS(5434), 1, - anon_sym_RPAREN, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5308), 1, + anon_sym_LBRACE, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5308), 2, + ACTIONS(5246), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5318), 2, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - STATE(2790), 2, + STATE(2830), 2, sym_line_comment, sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 3, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5310), 4, + ACTIONS(5248), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5304), 5, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85213] = 28, + [85415] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5136), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5206), 1, + ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - ACTIONS(5236), 1, - anon_sym_LBRACE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5470), 1, + anon_sym_RBRACK, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5196), 2, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - STATE(2791), 2, + STATE(2831), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [85314] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(2031), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2792), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1809), 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(1807), 25, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(5128), 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, - [85371] = 28, + [85516] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1763), 1, - anon_sym_RPAREN, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5018), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, - anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5312), 1, + ACTIONS(5340), 1, anon_sym_CARET, - ACTIONS(5314), 1, + ACTIONS(5342), 1, anon_sym_AMP_AMP, - ACTIONS(5316), 1, - anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5308), 2, + ACTIONS(5336), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5318), 2, + ACTIONS(5346), 2, anon_sym_in, anon_sym_BANGin, - STATE(2793), 2, + STATE(2832), 2, sym_line_comment, sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, + ACTIONS(5330), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 3, + anon_sym_PIPE, + ACTIONS(5334), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5310), 4, + ACTIONS(5338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5304), 5, + ACTIONS(5332), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85472] = 28, + ACTIONS(1795), 8, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [85605] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1777), 1, - anon_sym_RPAREN, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5312), 1, + ACTIONS(5340), 1, anon_sym_CARET, - ACTIONS(5314), 1, + ACTIONS(5342), 1, anon_sym_AMP_AMP, - ACTIONS(5316), 1, + ACTIONS(5344), 1, anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5472), 1, + anon_sym_RPAREN, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5308), 2, + ACTIONS(5336), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5318), 2, + ACTIONS(5346), 2, anon_sym_in, anon_sym_BANGin, - STATE(2794), 2, + STATE(2833), 2, sym_line_comment, sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, + ACTIONS(5330), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 3, + anon_sym_PIPE, + ACTIONS(5334), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5310), 4, + ACTIONS(5338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5304), 5, + ACTIONS(5332), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85573] = 28, + [85706] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5128), 1, + ACTIONS(5340), 1, anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5342), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(5344), 1, anon_sym_PIPE_PIPE, - ACTIONS(5436), 1, - anon_sym_SEMI, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + ACTIONS(5474), 1, + anon_sym_RPAREN, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5124), 2, + ACTIONS(5336), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5346), 2, anon_sym_in, anon_sym_BANGin, - STATE(2795), 2, + STATE(2834), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(5330), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(5334), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + ACTIONS(5338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, + ACTIONS(5332), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85674] = 28, + [85807] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(1889), 1, + anon_sym_DOT, + STATE(2835), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2095), 12, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4946), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2093), 27, anon_sym_as, - ACTIONS(5018), 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(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5312), 1, anon_sym_CARET, - ACTIONS(5314), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5316), 1, anon_sym_PIPE_PIPE, - ACTIONS(5438), 1, - anon_sym_RPAREN, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5308), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5318), 2, anon_sym_in, anon_sym_BANGin, - STATE(2796), 2, + [85864] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1847), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2836), 2, sym_line_comment, sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, + ACTIONS(2643), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5310), 4, + anon_sym_DOT_DOT, + ACTIONS(2641), 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(5304), 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, - [85775] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3600), 1, - anon_sym_STAR, - ACTIONS(5320), 1, - sym_identifier, - ACTIONS(5324), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5326), 1, - anon_sym_mut, - ACTIONS(5328), 1, - anon_sym_BANG, - ACTIONS(5330), 1, - anon_sym_LBRACK2, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, - anon_sym_shared, - ACTIONS(5440), 1, - anon_sym_RPAREN, - STATE(2963), 1, - sym_mutability_modifiers, - STATE(3806), 1, - sym_type_parameter_declaration, - STATE(3821), 1, - sym_parameter_declaration, - STATE(4013), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(2797), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2290), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2292), 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, - [85876] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3600), 1, - anon_sym_STAR, - ACTIONS(5320), 1, - sym_identifier, - ACTIONS(5324), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5326), 1, - anon_sym_mut, - ACTIONS(5328), 1, - anon_sym_BANG, - ACTIONS(5330), 1, - anon_sym_LBRACK2, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, - anon_sym_shared, - ACTIONS(5442), 1, - anon_sym_RPAREN, - STATE(2963), 1, - sym_mutability_modifiers, - STATE(3847), 1, - sym_parameter_declaration, - STATE(3849), 1, - sym_type_parameter_declaration, - STATE(4013), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(2798), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2290), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2292), 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, - [85977] = 7, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [85921] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2060), 2, + ACTIONS(1892), 2, anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(2157), 2, + ACTIONS(2093), 2, anon_sym_LBRACE, anon_sym_COMMA, - STATE(2799), 2, + STATE(2837), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 12, + ACTIONS(1887), 12, anon_sym_DOT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -263555,10 +266931,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2053), 24, + ACTIONS(1885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -263583,18 +266960,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_DOT_DOT, - [86036] = 6, + [85980] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2057), 1, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, anon_sym_DOT, - STATE(2800), 2, + anon_sym_QMARK_DOT, + STATE(2838), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 12, + ACTIONS(5334), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1767), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + ACTIONS(5332), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1795), 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_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, + [86059] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2839), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1892), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(1887), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -263602,14 +267043,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2157), 27, + ACTIONS(1885), 24, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -263618,7 +267058,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -263634,241 +267073,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86093] = 28, + [86116] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5018), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, - anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5128), 1, + ACTIONS(5340), 1, anon_sym_CARET, - ACTIONS(5130), 1, - anon_sym_AMP_AMP, - ACTIONS(5132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5444), 1, - anon_sym_RBRACK, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5124), 2, + ACTIONS(5336), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5346), 2, anon_sym_in, anon_sym_BANGin, - STATE(2801), 2, + STATE(2840), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(5330), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(5334), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + ACTIONS(5338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, + ACTIONS(5332), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [86194] = 28, + ACTIONS(1795), 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, + [86203] = 19, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5340), 1, + anon_sym_CARET, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(1767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2841), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5334), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5332), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1795), 15, anon_sym_as, - ACTIONS(5018), 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(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5312), 1, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [86286] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5042), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, + anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5340), 1, anon_sym_CARET, - ACTIONS(5314), 1, + ACTIONS(5342), 1, anon_sym_AMP_AMP, - ACTIONS(5316), 1, + ACTIONS(5344), 1, anon_sym_PIPE_PIPE, - ACTIONS(5446), 1, + ACTIONS(5476), 1, anon_sym_RPAREN, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5308), 2, + ACTIONS(5336), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5318), 2, + ACTIONS(5346), 2, anon_sym_in, anon_sym_BANGin, - STATE(2802), 2, + STATE(2842), 2, sym_line_comment, sym_block_comment, - ACTIONS(5302), 3, - anon_sym_PIPE, + ACTIONS(5330), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5306), 3, + anon_sym_PIPE, + ACTIONS(5334), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5310), 4, + ACTIONS(5338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5304), 5, + ACTIONS(5332), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [86295] = 28, + [86387] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, + ACTIONS(1847), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2843), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1837), 13, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3600), 1, - anon_sym_STAR, - ACTIONS(5320), 1, - sym_identifier, - ACTIONS(5324), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5326), 1, - anon_sym_mut, - ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5330), 1, + anon_sym_PIPE, anon_sym_LBRACK2, - ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5334), 1, - anon_sym_shared, - ACTIONS(5350), 1, - anon_sym_RPAREN, - STATE(2963), 1, - sym_mutability_modifiers, - STATE(3808), 1, - sym_type_parameter_declaration, - STATE(3809), 1, - sym_parameter_declaration, - STATE(4013), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(2803), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2290), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2292), 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, - [86396] = 7, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(1835), 25, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [86444] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3039), 1, - anon_sym_DOT, - STATE(2804), 2, + STATE(2844), 2, sym_line_comment, sym_block_comment, - ACTIONS(3913), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2985), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -263876,11 +267344,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, + anon_sym_DOT_DOT, + ACTIONS(2983), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -263888,6 +267360,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, @@ -263904,92 +267377,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [86455] = 28, + [86499] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(3562), 1, + anon_sym_LBRACE, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5254), 1, anon_sym_AMP_AMP, - ACTIONS(5206), 1, + ACTIONS(5256), 1, anon_sym_PIPE_PIPE, - ACTIONS(5448), 1, - anon_sym_LBRACE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5196), 2, + ACTIONS(5246), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5208), 2, + ACTIONS(5258), 2, anon_sym_in, anon_sym_BANGin, - STATE(2805), 2, + STATE(2845), 2, sym_line_comment, sym_block_comment, - ACTIONS(5190), 3, - anon_sym_PIPE, + ACTIONS(5240), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5194), 3, + anon_sym_PIPE, + ACTIONS(5244), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5198), 4, + ACTIONS(5248), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5192), 5, + ACTIONS(5242), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [86556] = 6, + [86600] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5450), 1, - anon_sym_DOLLARelse, - STATE(2806), 2, + ACTIONS(1847), 1, + anon_sym_COMMA, + STATE(2846), 2, sym_line_comment, sym_block_comment, - ACTIONS(2041), 11, - anon_sym_PIPE, + ACTIONS(1837), 13, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -263997,12 +267469,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2039), 27, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1835), 26, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -264010,12 +267484,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, @@ -264028,377 +267501,278 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86612] = 27, + [86657] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5018), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, - anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5128), 1, - anon_sym_CARET, - ACTIONS(5130), 1, - anon_sym_AMP_AMP, - ACTIONS(5132), 1, - anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5124), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5134), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5452), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2807), 2, + ACTIONS(5478), 1, + anon_sym_DOLLARelse, + STATE(2847), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(2079), 11, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + ACTIONS(2077), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, - anon_sym_STAR, - anon_sym_PERCENT, + 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, - [86710] = 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, + [86713] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5128), 1, + ACTIONS(5136), 1, anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5124), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5134), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5454), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2808), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5122), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5126), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5120), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [86808] = 26, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, - sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(619), 1, - anon_sym_LBRACK2, - ACTIONS(623), 1, - anon_sym_shared, - ACTIONS(2055), 1, + ACTIONS(4974), 2, anon_sym_DOT, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3600), 1, - anon_sym_STAR, - ACTIONS(5328), 1, - anon_sym_BANG, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5456), 1, - anon_sym_DOT_DOT_DOT, - STATE(4115), 1, - sym_plain_type, - STATE(4119), 1, - sym__plain_type_without_special, - STATE(4423), 1, - sym_reference_expression, - STATE(2809), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(2157), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - STATE(2290), 3, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2292), 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, - [86904] = 27, + anon_sym_QMARK_DOT, + ACTIONS(5132), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5142), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(5480), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2848), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5126), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5130), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5134), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5128), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [86811] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, - anon_sym_as, - ACTIONS(4681), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4693), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4695), 1, - anon_sym_DASH_DASH, - ACTIONS(4697), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4699), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4701), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4703), 1, - anon_sym_AMP_AMP, - ACTIONS(4705), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4707), 1, - anon_sym_or, - ACTIONS(4709), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5460), 1, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5042), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, + anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5340), 1, anon_sym_CARET, - STATE(1977), 1, + ACTIONS(5342), 1, + anon_sym_AMP_AMP, + ACTIONS(5344), 1, + anon_sym_PIPE_PIPE, + STATE(2408), 1, sym_or_block, - STATE(1984), 1, + STATE(2439), 1, sym_argument_list, - STATE(4284), 1, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4673), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4687), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4711), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4713), 2, + ACTIONS(5336), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5346), 2, anon_sym_in, anon_sym_BANGin, - STATE(2810), 2, + STATE(2849), 2, sym_line_comment, sym_block_comment, - ACTIONS(4683), 3, - anon_sym_PIPE, + ACTIONS(5330), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4685), 3, + anon_sym_PIPE, + ACTIONS(5334), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4689), 4, + ACTIONS(5338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5458), 5, + ACTIONS(5332), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [87002] = 27, + [86909] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5128), 1, + ACTIONS(5136), 1, anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5124), 2, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5462), 2, + ACTIONS(5482), 2, anon_sym_is, anon_sym_BANGis, - STATE(2811), 2, + STATE(2850), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, + ACTIONS(5128), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [87100] = 8, + [87007] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2060), 1, - anon_sym_LBRACK, - ACTIONS(2157), 1, - anon_sym_LBRACE, - ACTIONS(5464), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, - STATE(2812), 2, + STATE(2851), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 11, - anon_sym_PIPE, + ACTIONS(2629), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -264406,12 +267780,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2053), 24, + ACTIONS(2632), 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, @@ -264419,6 +267797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -264434,87 +267813,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87160] = 27, + [87061] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5128), 1, + ACTIONS(5136), 1, anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5124), 2, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - STATE(2813), 2, + ACTIONS(5484), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2852), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, + ACTIONS(5128), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [87258] = 5, + [87159] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2814), 2, + ACTIONS(3952), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(2853), 2, sym_line_comment, sym_block_comment, - ACTIONS(2139), 11, - anon_sym_PIPE, + ACTIONS(2401), 12, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -264522,15 +267904,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2142), 28, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(2399), 25, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -264554,128 +267933,363 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87312] = 6, + anon_sym_DOT_DOT, + [87215] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3920), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - STATE(2815), 2, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5042), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, + anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5136), 1, + anon_sym_CARET, + ACTIONS(5138), 1, + anon_sym_AMP_AMP, + ACTIONS(5140), 1, + anon_sym_PIPE_PIPE, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5132), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5142), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(5280), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2854), 2, sym_line_comment, sym_block_comment, - ACTIONS(2863), 12, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5130), 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(2861), 25, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(5128), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [87313] = 27, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5136), 1, anon_sym_CARET, + ACTIONS(5138), 1, + anon_sym_AMP_AMP, + ACTIONS(5140), 1, + anon_sym_PIPE_PIPE, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5132), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5142), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(5486), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2855), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5126), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5130), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5134), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5128), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + [87411] = 27, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5042), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, + anon_sym_DASH_DASH, + ACTIONS(5046), 1, + anon_sym_CARET, + ACTIONS(5048), 1, anon_sym_AMP_AMP, + ACTIONS(5050), 1, anon_sym_PIPE_PIPE, + ACTIONS(5052), 1, anon_sym_or, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5038), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5056), 2, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [87368] = 27, + STATE(2856), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5032), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5036), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5040), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5034), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [87509] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5128), 1, + ACTIONS(5136), 1, anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5124), 2, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5466), 2, + ACTIONS(5488), 2, anon_sym_is, anon_sym_BANGis, - STATE(2816), 2, + STATE(2857), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, + ACTIONS(5126), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, + ACTIONS(5130), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5134), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5128), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [87607] = 27, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4972), 1, + anon_sym_LBRACK2, + ACTIONS(4976), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5042), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, + anon_sym_DASH_DASH, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(5136), 1, + anon_sym_CARET, + ACTIONS(5138), 1, + anon_sym_AMP_AMP, + ACTIONS(5140), 1, + anon_sym_PIPE_PIPE, + STATE(2408), 1, + sym_or_block, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, + sym_type_parameters, + ACTIONS(4974), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5132), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5142), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(5490), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2858), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, + ACTIONS(5128), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [87466] = 25, + [87705] = 26, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -264690,48 +268304,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, - anon_sym_struct, + anon_sym_fn, ACTIONS(619), 1, - anon_sym_LBRACK2, + anon_sym_struct, ACTIONS(623), 1, + anon_sym_LBRACK2, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(2055), 1, + ACTIONS(1887), 1, anon_sym_DOT, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5456), 1, + ACTIONS(5492), 1, anon_sym_DOT_DOT_DOT, - STATE(4115), 1, + STATE(4219), 1, + sym__plain_type_without_special, + STATE(4220), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2817), 2, + STATE(2859), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(2157), 3, + ACTIONS(2093), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK, - STATE(2290), 4, - sym__plain_type_without_special, + STATE(2348), 3, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -264744,78 +268359,199 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [87560] = 27, + [87801] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5128), 1, + ACTIONS(5136), 1, anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5124), 2, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5468), 2, + ACTIONS(5494), 2, anon_sym_is, anon_sym_BANGis, - STATE(2818), 2, + STATE(2860), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5126), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + ACTIONS(5130), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5134), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5128), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [87899] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5496), 1, + anon_sym_DOLLARelse, + STATE(2861), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, + ACTIONS(1853), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1851), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [87955] = 27, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4697), 1, + anon_sym_as, + ACTIONS(4703), 1, + anon_sym_LPAREN, + ACTIONS(4713), 1, + anon_sym_LBRACK, + ACTIONS(4715), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4717), 1, + anon_sym_DASH_DASH, + ACTIONS(4719), 1, + anon_sym_QMARK, + ACTIONS(4721), 1, + anon_sym_BANG, + ACTIONS(4723), 1, + anon_sym_LBRACK2, + ACTIONS(4725), 1, + anon_sym_AMP_AMP, + ACTIONS(4727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4729), 1, + anon_sym_or, + ACTIONS(4731), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5500), 1, + anon_sym_CARET, + STATE(1987), 1, + sym_or_block, + STATE(1988), 1, + sym_argument_list, + STATE(4173), 1, + sym_type_parameters, + ACTIONS(4695), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4709), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4733), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4735), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2862), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4705), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(4707), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + ACTIONS(4711), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, + ACTIONS(5498), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [87658] = 26, + [88053] = 25, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -264830,49 +268566,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, - anon_sym_struct, + anon_sym_fn, ACTIONS(619), 1, - anon_sym_LBRACK2, + anon_sym_struct, ACTIONS(623), 1, + anon_sym_LBRACK2, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(2055), 1, + ACTIONS(1887), 1, anon_sym_DOT, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5470), 1, + ACTIONS(5502), 1, anon_sym_DOT_DOT_DOT, - STATE(4189), 1, + STATE(4182), 1, sym_plain_type, - STATE(4190), 1, - sym__plain_type_without_special, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2819), 2, + STATE(2863), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(2157), 3, + ACTIONS(2093), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK, - STATE(2290), 3, + STATE(2348), 4, + sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -264885,220 +268620,149 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [87754] = 27, + [88147] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5128), 1, + ACTIONS(5136), 1, anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5124), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5134), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5472), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2820), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5122), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5126), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5120), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [87852] = 27, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5018), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, - anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5128), 1, - anon_sym_CARET, - ACTIONS(5130), 1, - anon_sym_AMP_AMP, - ACTIONS(5132), 1, - anon_sym_PIPE_PIPE, - STATE(2351), 1, + STATE(2439), 1, sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5124), 2, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5474), 2, + ACTIONS(5504), 2, anon_sym_is, anon_sym_BANGis, - STATE(2821), 2, + STATE(2864), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, + ACTIONS(5128), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [87950] = 27, + [88245] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5128), 1, + ACTIONS(5136), 1, anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5124), 2, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5476), 2, + ACTIONS(5506), 2, anon_sym_is, anon_sym_BANGis, - STATE(2822), 2, + STATE(2865), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, + ACTIONS(5128), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [88048] = 25, + [88343] = 25, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -265113,48 +268777,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, - anon_sym_struct, + anon_sym_fn, ACTIONS(619), 1, - anon_sym_LBRACK2, + anon_sym_struct, ACTIONS(623), 1, + anon_sym_LBRACK2, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(2055), 1, + ACTIONS(1887), 1, anon_sym_DOT, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5470), 1, + ACTIONS(5492), 1, anon_sym_DOT_DOT_DOT, - STATE(4189), 1, + STATE(4220), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2823), 2, + STATE(2866), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(2157), 3, + ACTIONS(2093), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -265167,160 +268831,162 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [88142] = 27, + [88437] = 26, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(623), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5018), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, - anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_CARET, - ACTIONS(5024), 1, - anon_sym_AMP_AMP, - ACTIONS(5026), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5028), 1, - anon_sym_or, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(1887), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5014), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5032), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2824), 2, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5364), 1, + anon_sym_BANG, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5502), 1, + anon_sym_DOT_DOT_DOT, + STATE(4174), 1, + sym__plain_type_without_special, + STATE(4182), 1, + sym_plain_type, + STATE(4596), 1, + sym_reference_expression, + STATE(2867), 2, sym_line_comment, sym_block_comment, - ACTIONS(5008), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5012), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5016), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5010), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [88240] = 27, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(2093), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + STATE(2348), 3, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [88533] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5128), 1, + ACTIONS(5136), 1, anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5124), 2, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5478), 2, + ACTIONS(5508), 2, anon_sym_is, anon_sym_BANGis, - STATE(2825), 2, + STATE(2868), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, + ACTIONS(5128), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [88338] = 6, + [88631] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5480), 1, - anon_sym_DOLLARelse, - STATE(2826), 2, + ACTIONS(4823), 1, + anon_sym_LBRACE, + ACTIONS(5510), 1, + anon_sym_COMMA, + STATE(3878), 1, + aux_sym_expression_without_blocks_list_repeat1, + STATE(2869), 2, sym_line_comment, sym_block_comment, - ACTIONS(2079), 11, - anon_sym_PIPE, + ACTIONS(2321), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -265328,10 +268994,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2077), 27, + ACTIONS(2319), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265342,11 +269009,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, @@ -265359,22 +269024,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88394] = 8, + [88691] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4793), 1, + ACTIONS(1892), 1, + anon_sym_LBRACK, + ACTIONS(2093), 1, anon_sym_LBRACE, - ACTIONS(5482), 1, + ACTIONS(5512), 2, anon_sym_COMMA, - STATE(3866), 1, - aux_sym_expression_without_blocks_list_repeat1, - STATE(2827), 2, + anon_sym_COLON_EQ, + STATE(2870), 2, sym_line_comment, sym_block_comment, - ACTIONS(2883), 11, - anon_sym_PIPE, + ACTIONS(1887), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -265382,10 +269047,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2881), 25, + ACTIONS(1885), 24, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265395,7 +269061,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -265411,371 +269076,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88454] = 27, + [88751] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5128), 1, + ACTIONS(5136), 1, anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5124), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5134), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5484), 2, + ACTIONS(5054), 2, anon_sym_is, anon_sym_BANGis, - STATE(2828), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5122), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5126), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5120), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [88552] = 27, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5018), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, - anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5128), 1, - anon_sym_CARET, - ACTIONS(5130), 1, - anon_sym_AMP_AMP, - ACTIONS(5132), 1, - anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5124), 2, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5260), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2829), 2, + STATE(2871), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, + ACTIONS(5128), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [88650] = 27, + [88849] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5128), 1, + ACTIONS(5136), 1, anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5124), 2, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5486), 2, + ACTIONS(5514), 2, anon_sym_is, anon_sym_BANGis, - STATE(2830), 2, + STATE(2872), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5126), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5120), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [88748] = 27, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, - anon_sym_as, - ACTIONS(5018), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, - anon_sym_DASH_DASH, - ACTIONS(5028), 1, - anon_sym_or, - ACTIONS(5312), 1, - anon_sym_CARET, - ACTIONS(5314), 1, - anon_sym_AMP_AMP, - ACTIONS(5316), 1, - anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, - sym_or_block, - STATE(4149), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5030), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5308), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5318), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2831), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5302), 3, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5306), 3, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5310), 4, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5304), 5, + ACTIONS(5128), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [88846] = 27, + [88947] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4972), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4976), 1, anon_sym_POUND_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_PLUS_PLUS, - ACTIONS(5020), 1, + ACTIONS(5044), 1, anon_sym_DASH_DASH, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_or, - ACTIONS(5128), 1, + ACTIONS(5136), 1, anon_sym_CARET, - ACTIONS(5130), 1, + ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5132), 1, + ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - STATE(2351), 1, - sym_argument_list, - STATE(2359), 1, + STATE(2408), 1, sym_or_block, - STATE(4149), 1, + STATE(2439), 1, + sym_argument_list, + STATE(4312), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4974), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5124), 2, + ACTIONS(5132), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5134), 2, + ACTIONS(5142), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5488), 2, + ACTIONS(5516), 2, anon_sym_is, anon_sym_BANGis, - STATE(2832), 2, + STATE(2873), 2, sym_line_comment, sym_block_comment, - ACTIONS(5118), 3, - anon_sym_PIPE, + ACTIONS(5126), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5122), 3, + anon_sym_PIPE, + ACTIONS(5130), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5126), 4, + ACTIONS(5134), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5120), 5, + ACTIONS(5128), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [88944] = 5, + [89045] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2833), 2, + STATE(2874), 2, sym_line_comment, sym_block_comment, - ACTIONS(2809), 11, - anon_sym_PIPE, + ACTIONS(3062), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -265783,10 +269305,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2807), 27, + ACTIONS(3060), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265814,16 +269337,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88997] = 5, + [89098] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2834), 2, + ACTIONS(4868), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2875), 2, sym_line_comment, sym_block_comment, - ACTIONS(3029), 11, - anon_sym_PIPE, + ACTIONS(2321), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -265831,10 +269356,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3027), 27, + ACTIONS(2319), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265845,11 +269371,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, @@ -265862,16 +269386,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89050] = 5, + [89153] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2835), 2, + STATE(1949), 1, + sym_block, + STATE(2876), 2, sym_line_comment, sym_block_comment, - ACTIONS(2833), 11, - anon_sym_PIPE, + ACTIONS(2425), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -265879,12 +269404,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2831), 27, + ACTIONS(2423), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265893,11 +269420,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, @@ -265910,16 +269435,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89103] = 5, + [89208] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2836), 2, + STATE(2877), 2, sym_line_comment, sym_block_comment, - ACTIONS(2471), 11, - anon_sym_PIPE, + ACTIONS(2621), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -265927,10 +269451,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2469), 27, + ACTIONS(2619), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265958,60 +269483,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89156] = 23, - ACTIONS(497), 1, + [89261] = 23, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3636), 1, - anon_sym_LPAREN, - ACTIONS(3642), 1, - anon_sym_struct, - ACTIONS(5490), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(5492), 1, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5494), 1, - anon_sym_QMARK, - ACTIONS(5496), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5498), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5500), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5502), 1, - anon_sym_shared, - ACTIONS(5504), 1, - anon_sym_map_LBRACK, - ACTIONS(5506), 1, - anon_sym_chan, - ACTIONS(5508), 1, - anon_sym_thread, - ACTIONS(5510), 1, - anon_sym_atomic, - STATE(1641), 1, + STATE(2409), 1, sym_plain_type, - STATE(4356), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2837), 2, + STATE(2878), 2, sym_line_comment, sym_block_comment, - STATE(3302), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(597), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - STATE(1658), 4, + ACTIONS(603), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1657), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -266024,18 +269549,15 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [89245] = 6, + [89350] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2806), 1, - sym_block, - STATE(2838), 2, + STATE(2879), 2, sym_line_comment, sym_block_comment, - ACTIONS(2123), 11, - anon_sym_PIPE, + ACTIONS(2723), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -266043,13 +269565,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2121), 26, + ACTIONS(2721), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266058,9 +269580,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, @@ -266073,18 +269597,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89300] = 6, + [89403] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(985), 1, - sym_block, - STATE(2839), 2, + STATE(2880), 2, sym_line_comment, sym_block_comment, - ACTIONS(2123), 11, - anon_sym_PIPE, + ACTIONS(2749), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -266092,13 +269613,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2121), 26, + ACTIONS(2747), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266107,9 +269628,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, @@ -266122,18 +269645,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89355] = 6, + [89456] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1900), 1, - sym_block, - STATE(2840), 2, + STATE(2881), 2, sym_line_comment, sym_block_comment, - ACTIONS(2123), 11, - anon_sym_PIPE, + ACTIONS(2765), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -266141,13 +269661,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2121), 26, + ACTIONS(2763), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266156,9 +269676,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, @@ -266171,18 +269693,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89410] = 6, + [89509] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1909), 1, + STATE(991), 1, sym_block, - STATE(2841), 2, + STATE(2882), 2, sym_line_comment, sym_block_comment, - ACTIONS(2123), 11, - anon_sym_PIPE, + ACTIONS(2425), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -266190,10 +269711,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2121), 26, + ACTIONS(2423), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -266220,16 +269742,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89465] = 5, + [89564] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2842), 2, + STATE(2883), 2, sym_line_comment, sym_block_comment, - ACTIONS(2771), 11, - anon_sym_PIPE, + ACTIONS(3018), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -266237,10 +269758,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2769), 27, + ACTIONS(3016), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266268,18 +269790,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89518] = 6, + [89617] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1276), 1, - sym_block, - STATE(2843), 2, + STATE(2884), 2, sym_line_comment, sym_block_comment, - ACTIONS(2123), 11, - anon_sym_PIPE, + ACTIONS(3014), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -266287,13 +269806,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2121), 26, + ACTIONS(3012), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266302,9 +269821,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, @@ -266317,16 +269838,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89573] = 5, + [89670] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2844), 2, + STATE(2885), 2, sym_line_comment, sym_block_comment, - ACTIONS(2115), 11, - anon_sym_PIPE, + ACTIONS(2657), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -266334,10 +269854,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2113), 27, + ACTIONS(2655), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266365,16 +269886,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89626] = 5, + [89723] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2845), 2, + STATE(2886), 2, sym_line_comment, sym_block_comment, - ACTIONS(2029), 11, - anon_sym_PIPE, + ACTIONS(2653), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -266382,10 +269902,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2031), 27, + ACTIONS(2651), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266413,18 +269934,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89679] = 6, + [89776] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2141), 1, - sym_block, - STATE(2846), 2, + STATE(2887), 2, sym_line_comment, sym_block_comment, - ACTIONS(2123), 11, - anon_sym_PIPE, + ACTIONS(2321), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -266432,13 +269950,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2121), 26, + ACTIONS(2319), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266447,9 +269965,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, @@ -266462,16 +269982,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89734] = 5, + [89829] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2847), 2, + STATE(2888), 2, sym_line_comment, sym_block_comment, - ACTIONS(2851), 11, - anon_sym_PIPE, + ACTIONS(2647), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -266479,10 +269998,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2849), 27, + ACTIONS(2645), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266510,82 +270030,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89787] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, - sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(623), 1, - anon_sym_shared, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3600), 1, - anon_sym_STAR, - ACTIONS(5328), 1, - anon_sym_BANG, - ACTIONS(5330), 1, - anon_sym_LBRACK2, - ACTIONS(5332), 1, - anon_sym_AMP, - STATE(2328), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(2848), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(599), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2290), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2292), 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, - [89876] = 5, + [89882] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2849), 2, + STATE(2889), 2, sym_line_comment, sym_block_comment, - ACTIONS(2741), 11, - anon_sym_PIPE, + ACTIONS(2315), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -266593,10 +270046,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2739), 27, + ACTIONS(2313), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266624,16 +270078,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89929] = 5, + [89935] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2850), 2, + STATE(1951), 1, + sym_block, + STATE(2890), 2, sym_line_comment, sym_block_comment, - ACTIONS(2089), 11, - anon_sym_PIPE, + ACTIONS(2425), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -266641,12 +270096,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2087), 27, + ACTIONS(2423), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266655,11 +270112,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, @@ -266672,18 +270127,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89982] = 6, + [89990] = 26, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2283), 1, - sym_block, - STATE(2851), 2, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5360), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5362), 1, + anon_sym_mut, + ACTIONS(5364), 1, + anon_sym_BANG, + ACTIONS(5366), 1, + anon_sym_LBRACK2, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5370), 1, + anon_sym_shared, + STATE(3018), 1, + sym_mutability_modifiers, + STATE(4264), 1, + sym_type_parameter_declaration, + STATE(4340), 1, + sym_plain_type, + STATE(4596), 1, + sym_reference_expression, + STATE(2891), 2, sym_line_comment, sym_block_comment, - ACTIONS(2123), 11, - anon_sym_PIPE, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [90085] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2892), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2491), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -266691,13 +270212,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2121), 26, + ACTIONS(2489), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266706,9 +270227,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, @@ -266721,16 +270244,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90037] = 5, + [90138] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2852), 2, + STATE(2893), 2, sym_line_comment, sym_block_comment, - ACTIONS(2767), 11, - anon_sym_PIPE, + ACTIONS(2479), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -266738,10 +270260,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2765), 27, + ACTIONS(2477), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266769,18 +270292,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90090] = 6, + [90191] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1754), 1, - sym_block, - STATE(2853), 2, + STATE(2894), 2, sym_line_comment, sym_block_comment, - ACTIONS(2123), 11, - anon_sym_PIPE, + ACTIONS(2475), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -266788,13 +270308,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2121), 26, + ACTIONS(2473), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266803,9 +270323,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, @@ -266818,16 +270340,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90145] = 5, + [90244] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2854), 2, + STATE(2895), 2, sym_line_comment, sym_block_comment, - ACTIONS(3066), 11, - anon_sym_PIPE, + ACTIONS(2331), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -266835,10 +270356,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3064), 27, + ACTIONS(2329), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266866,16 +270388,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90198] = 5, + [90297] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2855), 2, + STATE(2896), 2, sym_line_comment, sym_block_comment, - ACTIONS(2241), 11, + ACTIONS(2985), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2983), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [90350] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2897), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2351), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -266883,10 +270452,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2239), 27, + ACTIONS(2349), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266914,60 +270484,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90251] = 23, + [90403] = 23, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(3636), 1, + ACTIONS(3668), 1, anon_sym_LPAREN, - ACTIONS(3642), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(5490), 1, + ACTIONS(5518), 1, anon_sym_fn, - ACTIONS(5492), 1, + ACTIONS(5520), 1, anon_sym_STAR, - ACTIONS(5494), 1, + ACTIONS(5522), 1, anon_sym_QMARK, - ACTIONS(5496), 1, + ACTIONS(5524), 1, anon_sym_BANG, - ACTIONS(5498), 1, + ACTIONS(5526), 1, anon_sym_LBRACK2, - ACTIONS(5500), 1, + ACTIONS(5528), 1, anon_sym_AMP, - ACTIONS(5502), 1, + ACTIONS(5530), 1, anon_sym_shared, - ACTIONS(5504), 1, + ACTIONS(5532), 1, anon_sym_map_LBRACK, - ACTIONS(5506), 1, + ACTIONS(5534), 1, anon_sym_chan, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_thread, - ACTIONS(5510), 1, + ACTIONS(5538), 1, anon_sym_atomic, - STATE(1637), 1, + STATE(1688), 1, sym_plain_type, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, - STATE(2856), 2, + STATE(2898), 2, sym_line_comment, sym_block_comment, - STATE(3302), 2, + STATE(3360), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(567), 4, + ACTIONS(605), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - STATE(1658), 4, + STATE(1670), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1657), 12, + STATE(1671), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -266980,16 +270550,15 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90340] = 5, + [90492] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2857), 2, + STATE(2899), 2, sym_line_comment, sym_block_comment, - ACTIONS(2257), 11, - anon_sym_PIPE, + ACTIONS(2465), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -266997,10 +270566,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2255), 27, + ACTIONS(2463), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267028,16 +270598,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90393] = 5, + [90545] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2858), 2, + STATE(2900), 2, sym_line_comment, sym_block_comment, - ACTIONS(2457), 11, + ACTIONS(2345), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2343), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [90598] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2901), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2709), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -267045,10 +270662,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2455), 27, + ACTIONS(2707), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267076,7 +270694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90446] = 23, + [90651] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -267091,32 +270709,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(2311), 1, + STATE(2387), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2859), 2, + STATE(2902), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, ACTIONS(563), 4, @@ -267124,12 +270742,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -267142,71 +270760,22 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90535] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2860), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2463), 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(2461), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [90588] = 8, + [90740] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2060), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(2157), 1, + ACTIONS(2093), 1, anon_sym_LBRACE, - ACTIONS(5512), 2, + ACTIONS(5540), 2, anon_sym_COMMA, anon_sym_in, - STATE(2861), 2, + STATE(2903), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 11, - anon_sym_PIPE, + ACTIONS(1887), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -267214,10 +270783,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2053), 23, + ACTIONS(1885), 23, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267241,82 +270811,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_BANGin, - [90647] = 23, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - sym_identifier, - ACTIONS(3636), 1, - anon_sym_LPAREN, - ACTIONS(3642), 1, - anon_sym_struct, - ACTIONS(5490), 1, - anon_sym_fn, - ACTIONS(5492), 1, - anon_sym_STAR, - ACTIONS(5494), 1, - anon_sym_QMARK, - ACTIONS(5496), 1, - anon_sym_BANG, - ACTIONS(5498), 1, - anon_sym_LBRACK2, - ACTIONS(5500), 1, - anon_sym_AMP, - ACTIONS(5502), 1, - anon_sym_shared, - ACTIONS(5504), 1, - anon_sym_map_LBRACK, - ACTIONS(5506), 1, - anon_sym_chan, - ACTIONS(5508), 1, - anon_sym_thread, - ACTIONS(5510), 1, - anon_sym_atomic, - STATE(1654), 1, - sym_plain_type, - STATE(4356), 1, - sym_reference_expression, - STATE(2862), 2, - sym_line_comment, - sym_block_comment, - STATE(3302), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(601), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - STATE(1658), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1657), 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, - [90736] = 5, + [90799] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2863), 2, + STATE(2904), 2, sym_line_comment, sym_block_comment, - ACTIONS(2817), 11, - anon_sym_PIPE, + ACTIONS(2701), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -267324,10 +270827,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2815), 27, + ACTIONS(2699), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267355,18 +270859,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90789] = 6, + [90852] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2600), 1, + STATE(2620), 1, sym_block, - STATE(2864), 2, + STATE(2905), 2, sym_line_comment, sym_block_comment, - ACTIONS(2123), 11, - anon_sym_PIPE, + ACTIONS(2425), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -267374,10 +270877,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2121), 26, + ACTIONS(2423), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -267404,16 +270908,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90844] = 5, + [90907] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2865), 2, + STATE(1134), 1, + sym_block, + STATE(2906), 2, sym_line_comment, sym_block_comment, - ACTIONS(2883), 11, - anon_sym_PIPE, + ACTIONS(2425), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -267421,12 +270926,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2881), 27, + ACTIONS(2423), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267435,11 +270942,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, @@ -267452,19 +270957,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90897] = 6, + [90962] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4830), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2866), 2, + STATE(2172), 1, + sym_block, + STATE(2907), 2, sym_line_comment, sym_block_comment, - ACTIONS(2883), 11, - anon_sym_PIPE, + ACTIONS(2425), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -267472,12 +270975,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2881), 25, + ACTIONS(2423), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267501,16 +271006,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90952] = 5, + [91017] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2867), 2, + STATE(1696), 1, + sym_block, + STATE(2908), 2, sym_line_comment, sym_block_comment, - ACTIONS(2891), 11, - anon_sym_PIPE, + ACTIONS(2425), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -267518,12 +271024,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2889), 27, + ACTIONS(2423), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267532,11 +271040,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, @@ -267549,16 +271055,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91005] = 5, + [91072] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2868), 2, + STATE(2909), 2, sym_line_comment, sym_block_comment, - ACTIONS(2475), 11, - anon_sym_PIPE, + ACTIONS(1845), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -267566,10 +271071,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2473), 27, + ACTIONS(1847), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267597,16 +271103,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91058] = 5, + [91125] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2869), 2, + STATE(2319), 1, + sym_block, + STATE(2910), 2, sym_line_comment, sym_block_comment, - ACTIONS(2707), 11, - anon_sym_PIPE, + ACTIONS(2425), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -267614,12 +271121,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2705), 27, + ACTIONS(2423), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267628,11 +271137,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, @@ -267645,84 +271152,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91111] = 23, + [91180] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, - sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(623), 1, - anon_sym_shared, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3600), 1, - anon_sym_STAR, - ACTIONS(5328), 1, - anon_sym_BANG, - ACTIONS(5330), 1, - anon_sym_LBRACK2, - ACTIONS(5332), 1, - anon_sym_AMP, - STATE(2396), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(2870), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(595), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2290), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2292), 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, - [91200] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(281), 1, - sym_block, - STATE(2871), 2, + STATE(2911), 2, sym_line_comment, sym_block_comment, - ACTIONS(2123), 11, - anon_sym_PIPE, + ACTIONS(2111), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -267730,13 +271168,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2121), 26, + ACTIONS(2109), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267745,9 +271183,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, @@ -267760,16 +271200,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91255] = 5, + [91233] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2872), 2, + STATE(2912), 2, sym_line_comment, sym_block_comment, - ACTIONS(2821), 11, - anon_sym_PIPE, + ACTIONS(2771), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -267777,10 +271216,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2819), 27, + ACTIONS(2769), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267808,16 +271248,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91308] = 5, + [91286] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2873), 2, + STATE(2913), 2, sym_line_comment, sym_block_comment, - ACTIONS(2719), 11, - anon_sym_PIPE, + ACTIONS(2327), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -267825,10 +271264,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2717), 27, + ACTIONS(2325), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267856,16 +271296,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91361] = 5, + [91339] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2874), 2, + STATE(2914), 2, sym_line_comment, sym_block_comment, - ACTIONS(2725), 11, - anon_sym_PIPE, + ACTIONS(2957), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -267873,10 +271312,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2723), 27, + ACTIONS(2955), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267904,16 +271344,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91414] = 5, + [91392] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2875), 2, + STATE(1813), 1, + sym_block, + STATE(2915), 2, sym_line_comment, sym_block_comment, - ACTIONS(2745), 11, - anon_sym_PIPE, + ACTIONS(2425), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -267921,12 +271362,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2743), 27, + ACTIONS(2423), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267935,11 +271378,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, @@ -267952,16 +271393,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91467] = 5, + [91447] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2876), 2, + STATE(1295), 1, + sym_block, + STATE(2916), 2, sym_line_comment, sym_block_comment, - ACTIONS(2749), 11, - anon_sym_PIPE, + ACTIONS(2425), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -267969,12 +271411,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2747), 27, + ACTIONS(2423), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267983,11 +271427,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, @@ -268000,16 +271442,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91520] = 5, + [91502] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2877), 2, + STATE(2486), 1, + sym_block, + STATE(2917), 2, sym_line_comment, sym_block_comment, - ACTIONS(2801), 11, - anon_sym_PIPE, + ACTIONS(2425), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -268017,12 +271460,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2799), 27, + ACTIONS(2423), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -268031,11 +271476,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, @@ -268048,87 +271491,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91573] = 26, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, - sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3600), 1, - anon_sym_STAR, - ACTIONS(5324), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5326), 1, - anon_sym_mut, - ACTIONS(5328), 1, - anon_sym_BANG, - ACTIONS(5330), 1, - anon_sym_LBRACK2, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, - anon_sym_shared, - STATE(2967), 1, - sym_mutability_modifiers, - STATE(4013), 1, - sym_plain_type, - STATE(4186), 1, - sym_type_parameter_declaration, - STATE(4423), 1, - sym_reference_expression, - STATE(2878), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2290), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2292), 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, - [91668] = 6, + [91557] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1633), 1, + STATE(300), 1, sym_block, - STATE(2879), 2, + STATE(2918), 2, sym_line_comment, sym_block_comment, - ACTIONS(2123), 11, - anon_sym_PIPE, + ACTIONS(2425), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -268136,10 +271509,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2121), 26, + ACTIONS(2423), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -268166,18 +271540,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91723] = 6, + [91612] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2447), 1, - sym_block, - STATE(2880), 2, + STATE(2919), 2, sym_line_comment, sym_block_comment, - ACTIONS(2123), 11, - anon_sym_PIPE, + ACTIONS(2973), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -268185,13 +271556,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2121), 26, + ACTIONS(2971), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -268200,9 +271571,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, @@ -268215,16 +271588,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91778] = 5, + [91665] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2881), 2, + STATE(2920), 2, sym_line_comment, sym_block_comment, - ACTIONS(2813), 11, - anon_sym_PIPE, + ACTIONS(2977), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -268232,10 +271604,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2811), 27, + ACTIONS(2975), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268263,16 +271636,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91831] = 5, + [91718] = 23, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3434), 1, + sym_identifier, + ACTIONS(3668), 1, + anon_sym_LPAREN, + ACTIONS(3674), 1, + anon_sym_struct, + ACTIONS(5518), 1, + anon_sym_fn, + ACTIONS(5520), 1, + anon_sym_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK, + ACTIONS(5524), 1, + anon_sym_BANG, + ACTIONS(5526), 1, + anon_sym_LBRACK2, + ACTIONS(5528), 1, + anon_sym_AMP, + ACTIONS(5530), 1, + anon_sym_shared, + ACTIONS(5532), 1, + anon_sym_map_LBRACK, + ACTIONS(5534), 1, + anon_sym_chan, + ACTIONS(5536), 1, + anon_sym_thread, + ACTIONS(5538), 1, + anon_sym_atomic, + STATE(1691), 1, + sym_plain_type, + STATE(4406), 1, + sym_reference_expression, + STATE(2921), 2, + sym_line_comment, + sym_block_comment, + STATE(3360), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(601), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + STATE(1670), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1671), 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, + [91807] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2882), 2, + STATE(2847), 1, + sym_block, + STATE(2922), 2, sym_line_comment, sym_block_comment, - ACTIONS(3025), 11, - anon_sym_PIPE, + ACTIONS(2425), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -268280,12 +271720,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3023), 27, + ACTIONS(2423), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -268294,11 +271736,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, @@ -268311,18 +271751,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91884] = 6, + [91862] = 23, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3434), 1, + sym_identifier, + ACTIONS(3668), 1, + anon_sym_LPAREN, + ACTIONS(3674), 1, + anon_sym_struct, + ACTIONS(5518), 1, + anon_sym_fn, + ACTIONS(5520), 1, + anon_sym_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK, + ACTIONS(5524), 1, + anon_sym_BANG, + ACTIONS(5526), 1, + anon_sym_LBRACK2, + ACTIONS(5528), 1, + anon_sym_AMP, + ACTIONS(5530), 1, + anon_sym_shared, + ACTIONS(5532), 1, + anon_sym_map_LBRACK, + ACTIONS(5534), 1, + anon_sym_chan, + ACTIONS(5536), 1, + anon_sym_thread, + ACTIONS(5538), 1, + anon_sym_atomic, + STATE(1676), 1, + sym_plain_type, + STATE(4406), 1, + sym_reference_expression, + STATE(2923), 2, + sym_line_comment, + sym_block_comment, + STATE(3360), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(567), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + STATE(1670), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1671), 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, + [91951] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1130), 1, - sym_block, - STATE(2883), 2, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5364), 1, + anon_sym_BANG, + ACTIONS(5366), 1, + anon_sym_LBRACK2, + ACTIONS(5368), 1, + anon_sym_AMP, + STATE(2418), 1, + sym_plain_type, + STATE(4596), 1, + sym_reference_expression, + STATE(2924), 2, sym_line_comment, sym_block_comment, - ACTIONS(2123), 11, - anon_sym_PIPE, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(599), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [92040] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4845), 1, + anon_sym_DOT, + ACTIONS(5542), 1, + anon_sym_RBRACK, + STATE(2925), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -268330,13 +271903,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2121), 26, - anon_sym_DOT, + ACTIONS(2935), 24, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -268360,20 +271932,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91939] = 7, + [92096] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, - anon_sym_DOT, - ACTIONS(5514), 1, - anon_sym_RPAREN, - STATE(2884), 2, + ACTIONS(5544), 1, + anon_sym_RBRACK, + STATE(2926), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, + ACTIONS(2937), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2935), 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, + [92150] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5546), 1, + anon_sym_LBRACE, + STATE(2927), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -268381,10 +271998,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2935), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268409,18 +272028,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91995] = 6, + [92204] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5516), 1, + ACTIONS(5548), 1, anon_sym_RBRACK, - STATE(2885), 2, + STATE(2928), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2105), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -268428,10 +272046,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, + ACTIONS(2103), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268457,18 +272076,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92049] = 6, + [92258] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5518), 1, - anon_sym_RPAREN, - STATE(2886), 2, + ACTIONS(5550), 1, + anon_sym_RBRACK, + STATE(2929), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -268476,10 +272094,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, + ACTIONS(2935), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268505,20 +272124,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92103] = 7, + [92312] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, - anon_sym_DOT, - ACTIONS(5520), 1, - anon_sym_RPAREN, - STATE(2887), 2, + ACTIONS(5548), 1, + anon_sym_RBRACK, + STATE(2930), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -268526,10 +272142,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2935), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268554,18 +272172,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92159] = 6, + [92366] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5522), 1, + ACTIONS(5550), 1, anon_sym_RBRACK, - STATE(2888), 2, + STATE(2931), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 11, - anon_sym_PIPE, + ACTIONS(2105), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -268573,10 +272190,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2505), 25, + ACTIONS(2103), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268602,18 +272220,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92213] = 6, + [92420] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5520), 1, + ACTIONS(5552), 1, anon_sym_RPAREN, - STATE(2889), 2, + STATE(2932), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -268621,10 +272238,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, + ACTIONS(2935), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268650,20 +272268,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92267] = 7, + [92474] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, + ACTIONS(4845), 1, anon_sym_DOT, - ACTIONS(5524), 1, - anon_sym_RBRACK, - STATE(2890), 2, + ACTIONS(5554), 1, + anon_sym_RPAREN, + STATE(2933), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -268671,10 +272288,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268699,18 +272317,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92323] = 6, + [92530] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5526), 1, - anon_sym_RPAREN, - STATE(2891), 2, + ACTIONS(5556), 1, + anon_sym_RBRACK, + STATE(2934), 2, sym_line_comment, sym_block_comment, - ACTIONS(2883), 11, - anon_sym_PIPE, + ACTIONS(2105), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -268718,10 +272335,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2881), 25, + ACTIONS(2103), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268747,18 +272365,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92377] = 6, + [92584] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5528), 1, + ACTIONS(5544), 1, anon_sym_RBRACK, - STATE(2892), 2, + STATE(2935), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 11, - anon_sym_PIPE, + ACTIONS(2105), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -268766,10 +272383,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2505), 25, + ACTIONS(2103), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268795,20 +272413,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92431] = 7, + [92638] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, + ACTIONS(4845), 1, anon_sym_DOT, - ACTIONS(5516), 1, - anon_sym_RBRACK, - STATE(2893), 2, + ACTIONS(5558), 1, + anon_sym_RPAREN, + STATE(2936), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -268816,10 +272433,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268844,18 +272462,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92487] = 6, + [92694] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5522), 1, - anon_sym_RBRACK, - STATE(2894), 2, + ACTIONS(5558), 1, + anon_sym_RPAREN, + STATE(2937), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -268863,10 +272480,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, + ACTIONS(2935), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268892,18 +272510,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92541] = 6, + [92748] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5516), 1, + ACTIONS(4845), 1, + anon_sym_DOT, + ACTIONS(5560), 1, anon_sym_RBRACK, - STATE(2895), 2, + STATE(2938), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -268911,11 +272530,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2505), 25, - anon_sym_DOT, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268940,20 +272559,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92595] = 7, + [92804] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, + ACTIONS(4845), 1, anon_sym_DOT, - ACTIONS(5530), 1, + ACTIONS(5548), 1, anon_sym_RBRACK, - STATE(2896), 2, + STATE(2939), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, + ACTIONS(2937), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2935), 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, + [92860] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4845), 1, + anon_sym_DOT, + ACTIONS(5562), 1, + anon_sym_RPAREN, + STATE(2940), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -268961,10 +272628,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268989,18 +272657,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92651] = 6, + [92916] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5532), 1, + ACTIONS(5564), 1, anon_sym_RBRACK, - STATE(2897), 2, + STATE(2941), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 11, + ACTIONS(2105), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_PIPE, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2103), 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, + [92970] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5564), 1, + anon_sym_RBRACK, + STATE(2942), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -269008,10 +272723,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2505), 25, + ACTIONS(2935), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269037,18 +272753,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92705] = 6, + [93024] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5534), 1, + ACTIONS(5562), 1, anon_sym_RPAREN, - STATE(2898), 2, + STATE(2943), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -269056,10 +272771,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, + ACTIONS(2935), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269085,18 +272801,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92759] = 6, + [93078] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5532), 1, + ACTIONS(4845), 1, + anon_sym_DOT, + ACTIONS(5550), 1, anon_sym_RBRACK, - STATE(2899), 2, + STATE(2944), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -269104,11 +272821,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, - anon_sym_DOT, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269133,18 +272850,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92813] = 6, + [93134] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5536), 1, + ACTIONS(5560), 1, anon_sym_RBRACK, - STATE(2900), 2, + STATE(2945), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -269152,10 +272868,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, + ACTIONS(2935), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269181,18 +272898,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92867] = 6, + [93188] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5524), 1, - anon_sym_RBRACK, - STATE(2901), 2, + ACTIONS(5566), 1, + anon_sym_RPAREN, + STATE(2946), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -269200,10 +272916,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, + ACTIONS(2935), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269229,18 +272946,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92921] = 6, + [93242] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5538), 1, - anon_sym_RPAREN, - STATE(2902), 2, + ACTIONS(5560), 1, + anon_sym_RBRACK, + STATE(2947), 2, sym_line_comment, sym_block_comment, - ACTIONS(2883), 11, - anon_sym_PIPE, + ACTIONS(2105), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -269248,10 +272964,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2881), 25, + ACTIONS(2103), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269277,18 +272994,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92975] = 6, + [93296] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5536), 1, - anon_sym_RBRACK, - STATE(2903), 2, + ACTIONS(4845), 1, + anon_sym_DOT, + ACTIONS(5566), 1, + anon_sym_RPAREN, + STATE(2948), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -269296,11 +273014,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2505), 25, - anon_sym_DOT, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269325,20 +273043,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93029] = 7, + [93352] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, + ACTIONS(4845), 1, anon_sym_DOT, - ACTIONS(5540), 1, + ACTIONS(5564), 1, anon_sym_RBRACK, - STATE(2904), 2, + STATE(2949), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -269346,10 +273063,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269374,20 +273092,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93085] = 7, + [93408] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, - anon_sym_DOT, - ACTIONS(5542), 1, + ACTIONS(5568), 1, anon_sym_RBRACK, - STATE(2905), 2, + STATE(2950), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -269395,10 +273110,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2935), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269423,20 +273140,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93141] = 7, + [93462] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, + ACTIONS(4845), 1, anon_sym_DOT, - ACTIONS(5532), 1, + ACTIONS(5568), 1, anon_sym_RBRACK, - STATE(2906), 2, + STATE(2951), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -269444,10 +273160,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269472,18 +273189,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93197] = 6, + [93518] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_RPAREN, - STATE(2907), 2, + ACTIONS(4845), 1, + anon_sym_DOT, + ACTIONS(5570), 1, + anon_sym_RBRACK, + STATE(2952), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -269491,11 +273209,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, - anon_sym_DOT, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269520,18 +273238,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93251] = 6, + [93574] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5542), 1, + ACTIONS(5570), 1, anon_sym_RBRACK, - STATE(2908), 2, + STATE(2953), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -269539,10 +273256,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, + ACTIONS(2935), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269568,20 +273286,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93305] = 7, + [93628] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, - anon_sym_DOT, - ACTIONS(5544), 1, - anon_sym_RPAREN, - STATE(2909), 2, + ACTIONS(5570), 1, + anon_sym_RBRACK, + STATE(2954), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2105), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -269589,10 +273304,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2103), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269617,18 +273334,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93361] = 6, + [93682] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, + ACTIONS(5568), 1, anon_sym_RBRACK, - STATE(2910), 2, + STATE(2955), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 11, - anon_sym_PIPE, + ACTIONS(2105), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -269636,10 +273352,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2505), 25, + ACTIONS(2103), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269665,18 +273382,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93415] = 6, + [93736] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5542), 1, - anon_sym_RBRACK, - STATE(2911), 2, + ACTIONS(5572), 1, + anon_sym_RPAREN, + STATE(2956), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -269684,10 +273400,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2505), 25, + ACTIONS(2935), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269713,18 +273430,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93469] = 6, + [93790] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5514), 1, + ACTIONS(5574), 1, anon_sym_RPAREN, - STATE(2912), 2, + STATE(2957), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -269732,10 +273448,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, + ACTIONS(2935), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269761,18 +273478,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93523] = 6, + [93844] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5548), 1, + ACTIONS(4845), 1, + anon_sym_DOT, + ACTIONS(5572), 1, anon_sym_RPAREN, - STATE(2913), 2, + STATE(2958), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -269780,11 +273498,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, - anon_sym_DOT, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269809,18 +273527,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93577] = 6, + [93900] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5550), 1, + ACTIONS(4845), 1, + anon_sym_DOT, + ACTIONS(5574), 1, anon_sym_RPAREN, - STATE(2914), 2, + STATE(2959), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -269828,11 +273547,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, - anon_sym_DOT, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269857,20 +273576,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93631] = 7, + [93956] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, + ACTIONS(4845), 1, anon_sym_DOT, - ACTIONS(5518), 1, + ACTIONS(5576), 1, anon_sym_RPAREN, - STATE(2915), 2, + STATE(2960), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -269878,10 +273596,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269906,20 +273625,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93687] = 7, + [94012] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, + ACTIONS(4845), 1, anon_sym_DOT, - ACTIONS(5550), 1, - anon_sym_RPAREN, - STATE(2916), 2, + ACTIONS(5578), 1, + anon_sym_RBRACK, + STATE(2961), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -269927,10 +273645,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269955,20 +273674,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93743] = 7, + [94068] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, - anon_sym_DOT, - ACTIONS(5546), 1, + ACTIONS(5578), 1, anon_sym_RBRACK, - STATE(2917), 2, + STATE(2962), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -269976,10 +273692,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2935), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270004,20 +273722,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93799] = 7, + [94122] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, - anon_sym_DOT, - ACTIONS(5552), 1, - anon_sym_RPAREN, - STATE(2918), 2, + ACTIONS(5578), 1, + anon_sym_RBRACK, + STATE(2963), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2105), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -270025,10 +273740,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2103), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270053,20 +273770,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93855] = 7, + [94176] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, - anon_sym_DOT, - ACTIONS(5554), 1, - anon_sym_RBRACK, - STATE(2919), 2, + ACTIONS(5576), 1, + anon_sym_RPAREN, + STATE(2964), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -270074,10 +273788,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2935), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270102,20 +273818,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93911] = 7, + [94230] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, + ACTIONS(4845), 1, anon_sym_DOT, - ACTIONS(5534), 1, - anon_sym_RPAREN, - STATE(2920), 2, + ACTIONS(5580), 1, + anon_sym_RBRACK, + STATE(2965), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -270123,10 +273838,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270151,18 +273867,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93967] = 6, + [94286] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(4845), 1, + anon_sym_DOT, ACTIONS(5552), 1, anon_sym_RPAREN, - STATE(2921), 2, + STATE(2966), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -270170,11 +273887,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, - anon_sym_DOT, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270199,20 +273916,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94021] = 7, + [94342] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, + ACTIONS(4845), 1, anon_sym_DOT, - ACTIONS(5556), 1, - anon_sym_RPAREN, - STATE(2922), 2, + ACTIONS(5544), 1, + anon_sym_RBRACK, + STATE(2967), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -270220,10 +273936,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270248,18 +273965,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94077] = 6, + [94398] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5556), 1, + ACTIONS(5582), 1, anon_sym_RPAREN, - STATE(2923), 2, + STATE(2968), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2321), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -270267,10 +273983,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, + ACTIONS(2319), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270296,18 +274013,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94131] = 6, + [94452] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, - anon_sym_RBRACK, - STATE(2924), 2, + ACTIONS(5584), 1, + anon_sym_RPAREN, + STATE(2969), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -270315,10 +274031,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, + ACTIONS(2935), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270344,20 +274061,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94185] = 7, + [94506] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, + ACTIONS(4845), 1, anon_sym_DOT, - ACTIONS(5548), 1, + ACTIONS(5584), 1, anon_sym_RPAREN, - STATE(2925), 2, + STATE(2970), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -270365,10 +274081,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270393,18 +274110,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94241] = 6, + [94562] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5554), 1, + ACTIONS(5586), 1, anon_sym_RBRACK, - STATE(2926), 2, + STATE(2971), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 11, - anon_sym_PIPE, + ACTIONS(2105), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -270412,10 +274128,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2505), 25, + ACTIONS(2103), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270441,18 +274158,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94295] = 6, + [94616] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5554), 1, + ACTIONS(5586), 1, anon_sym_RBRACK, - STATE(2927), 2, + STATE(2972), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -270460,58 +274176,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2885), 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, - [94349] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5558), 1, - anon_sym_LBRACE, - STATE(2928), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2887), 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(2885), 25, + ACTIONS(2935), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270537,20 +274206,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94403] = 7, + [94670] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, + ACTIONS(4845), 1, anon_sym_DOT, - ACTIONS(5528), 1, + ACTIONS(5586), 1, anon_sym_RBRACK, - STATE(2929), 2, + STATE(2973), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -270558,10 +274226,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270586,18 +274255,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94459] = 6, + [94726] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, + ACTIONS(4845), 1, + anon_sym_DOT, + ACTIONS(5588), 1, anon_sym_RPAREN, - STATE(2930), 2, + STATE(2974), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -270605,11 +274275,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, - anon_sym_DOT, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270634,20 +274304,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94513] = 7, + [94782] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, - anon_sym_DOT, - ACTIONS(5560), 1, + ACTIONS(5588), 1, anon_sym_RPAREN, - STATE(2931), 2, + STATE(2975), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -270655,10 +274322,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2935), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270683,18 +274352,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94569] = 6, + [94836] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5524), 1, - anon_sym_RBRACK, - STATE(2932), 2, + ACTIONS(5590), 1, + anon_sym_RPAREN, + STATE(2976), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 11, - anon_sym_PIPE, + ACTIONS(2321), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -270702,10 +274370,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2505), 25, + ACTIONS(2319), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270731,18 +274400,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94623] = 6, + [94890] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5528), 1, - anon_sym_RBRACK, - STATE(2933), 2, + ACTIONS(5592), 1, + anon_sym_RPAREN, + STATE(2977), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -270750,10 +274418,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, + ACTIONS(2935), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270779,18 +274448,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94677] = 6, + [94944] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5562), 1, - anon_sym_RBRACK, - STATE(2934), 2, + ACTIONS(4845), 1, + anon_sym_DOT, + ACTIONS(5592), 1, + anon_sym_RPAREN, + STATE(2978), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -270798,11 +274468,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2505), 25, - anon_sym_DOT, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270827,18 +274497,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94731] = 6, + [95000] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5562), 1, + ACTIONS(5594), 1, anon_sym_RBRACK, - STATE(2935), 2, + STATE(2979), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2105), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -270846,10 +274515,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, + ACTIONS(2103), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270875,20 +274545,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94785] = 7, + [95054] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, - anon_sym_DOT, - ACTIONS(5564), 1, + ACTIONS(5596), 1, anon_sym_RBRACK, - STATE(2936), 2, + STATE(2980), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2105), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -270896,10 +274563,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2103), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270924,18 +274593,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94841] = 6, + [95108] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5564), 1, + ACTIONS(5596), 1, anon_sym_RBRACK, - STATE(2937), 2, + STATE(2981), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -270943,10 +274611,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, + ACTIONS(2935), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270972,18 +274641,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94895] = 6, + [95162] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5566), 1, + ACTIONS(5594), 1, anon_sym_RBRACK, - STATE(2938), 2, + STATE(2982), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -270991,10 +274659,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2505), 25, + ACTIONS(2935), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -271020,20 +274689,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94949] = 7, + [95216] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, - anon_sym_DOT, - ACTIONS(5522), 1, + ACTIONS(5542), 1, anon_sym_RBRACK, - STATE(2939), 2, + STATE(2983), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -271041,10 +274707,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2935), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271069,18 +274737,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95005] = 6, + [95270] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5566), 1, + ACTIONS(4845), 1, + anon_sym_DOT, + ACTIONS(5596), 1, anon_sym_RBRACK, - STATE(2940), 2, + STATE(2984), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -271088,11 +274757,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, - anon_sym_DOT, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271117,18 +274786,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95059] = 6, + [95326] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5564), 1, + ACTIONS(5542), 1, anon_sym_RBRACK, - STATE(2941), 2, + STATE(2985), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 11, - anon_sym_PIPE, + ACTIONS(2105), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -271136,10 +274804,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2505), 25, + ACTIONS(2103), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -271165,20 +274834,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95113] = 7, + [95380] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, + ACTIONS(4845), 1, anon_sym_DOT, - ACTIONS(5566), 1, - anon_sym_RBRACK, - STATE(2942), 2, + ACTIONS(5598), 1, + anon_sym_RPAREN, + STATE(2986), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -271186,10 +274854,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271214,18 +274883,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95169] = 6, + [95436] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5568), 1, + ACTIONS(5598), 1, anon_sym_RPAREN, - STATE(2943), 2, + STATE(2987), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -271233,10 +274901,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, + ACTIONS(2935), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -271262,20 +274931,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95223] = 7, + [95490] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, + ACTIONS(4845), 1, anon_sym_DOT, - ACTIONS(5568), 1, - anon_sym_RPAREN, - STATE(2944), 2, + ACTIONS(5594), 1, + anon_sym_RBRACK, + STATE(2988), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -271283,10 +274951,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271311,18 +274980,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95279] = 6, + [95546] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5530), 1, - anon_sym_RBRACK, - STATE(2945), 2, + ACTIONS(5600), 1, + anon_sym_RPAREN, + STATE(2989), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2321), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -271330,10 +274998,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, + ACTIONS(2319), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -271359,20 +275028,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95333] = 7, + [95600] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, - anon_sym_DOT, - ACTIONS(5536), 1, + ACTIONS(5602), 1, anon_sym_RBRACK, - STATE(2946), 2, + STATE(2990), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2105), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -271380,10 +275046,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2103), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271408,18 +275076,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95389] = 6, + [95654] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5530), 1, + ACTIONS(5602), 1, anon_sym_RBRACK, - STATE(2947), 2, + STATE(2991), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -271427,10 +275094,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2505), 25, + ACTIONS(2935), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -271456,20 +275124,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95443] = 7, + [95708] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, + ACTIONS(4845), 1, anon_sym_DOT, - ACTIONS(5570), 1, + ACTIONS(5602), 1, anon_sym_RBRACK, - STATE(2948), 2, + STATE(2992), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -271477,10 +275144,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271505,18 +275173,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95499] = 6, + [95764] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5540), 1, + ACTIONS(4845), 1, + anon_sym_DOT, + ACTIONS(5556), 1, anon_sym_RBRACK, - STATE(2949), 2, + STATE(2993), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -271524,11 +275193,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, - anon_sym_DOT, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271553,18 +275222,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95553] = 6, + [95820] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5540), 1, + ACTIONS(5580), 1, anon_sym_RBRACK, - STATE(2950), 2, + STATE(2994), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -271572,10 +275240,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2505), 25, + ACTIONS(2935), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -271601,18 +275270,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95607] = 6, + [95874] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5570), 1, + ACTIONS(4845), 1, + anon_sym_DOT, + ACTIONS(5604), 1, anon_sym_RBRACK, - STATE(2951), 2, + STATE(2995), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -271620,11 +275290,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, - anon_sym_DOT, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271649,18 +275319,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95661] = 6, + [95930] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5570), 1, + ACTIONS(5604), 1, anon_sym_RBRACK, - STATE(2952), 2, + STATE(2996), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -271668,10 +275337,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2505), 25, + ACTIONS(2935), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -271697,20 +275367,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95715] = 7, + [95984] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, - anon_sym_DOT, - ACTIONS(5572), 1, - anon_sym_RPAREN, - STATE(2953), 2, + ACTIONS(5580), 1, + anon_sym_RBRACK, + STATE(2997), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2105), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -271718,10 +275385,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2103), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271746,18 +275415,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95771] = 6, + [96038] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5572), 1, - anon_sym_RPAREN, - STATE(2954), 2, + ACTIONS(5604), 1, + anon_sym_RBRACK, + STATE(2998), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2105), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -271765,10 +275433,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, + ACTIONS(2103), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -271794,18 +275463,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95825] = 6, + [96092] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5574), 1, + ACTIONS(5554), 1, anon_sym_RPAREN, - STATE(2955), 2, + STATE(2999), 2, sym_line_comment, sym_block_comment, - ACTIONS(2883), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -271813,10 +275481,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2881), 25, + ACTIONS(2935), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -271842,20 +275511,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95879] = 7, + [96146] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, + ACTIONS(4845), 1, anon_sym_DOT, - ACTIONS(5562), 1, + ACTIONS(5606), 1, anon_sym_RBRACK, - STATE(2956), 2, + STATE(3000), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -271863,10 +275531,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2935), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271891,18 +275560,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95935] = 6, + [96202] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5576), 1, + ACTIONS(5606), 1, anon_sym_RBRACK, - STATE(2957), 2, + STATE(3001), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -271910,10 +275578,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2505), 25, + ACTIONS(2935), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -271939,20 +275608,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95989] = 7, + [96256] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, - anon_sym_DOT, - ACTIONS(5576), 1, + ACTIONS(5556), 1, anon_sym_RBRACK, - STATE(2958), 2, + STATE(3002), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2937), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -271960,10 +275626,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 24, + ACTIONS(2935), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271988,18 +275656,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [96045] = 6, + [96310] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5576), 1, + ACTIONS(5606), 1, anon_sym_RBRACK, - STATE(2959), 2, + STATE(3003), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 11, - anon_sym_PIPE, + ACTIONS(2105), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -272007,10 +275674,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PIPE, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 25, + ACTIONS(2103), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -272036,59 +275704,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [96099] = 24, + [96364] = 24, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, + ACTIONS(3638), 1, sym_identifier, ACTIONS(3642), 1, + anon_sym_fn, + ACTIONS(3646), 1, anon_sym_struct, - ACTIONS(5490), 1, + ACTIONS(3656), 1, + anon_sym_shared, + ACTIONS(3660), 1, + anon_sym_chan, + ACTIONS(3662), 1, + anon_sym_thread, + ACTIONS(3664), 1, + anon_sym_atomic, + ACTIONS(5608), 1, + anon_sym_LPAREN, + ACTIONS(5610), 1, + anon_sym_EQ, + ACTIONS(5612), 1, + anon_sym_STAR, + ACTIONS(5614), 1, + anon_sym_QMARK, + ACTIONS(5616), 1, + anon_sym_BANG, + ACTIONS(5618), 1, + anon_sym_LBRACK2, + ACTIONS(5620), 1, + anon_sym_AMP, + ACTIONS(5622), 1, + anon_sym_map_LBRACK, + STATE(1548), 1, + sym__global_var_value, + STATE(1609), 1, + sym_plain_type, + STATE(4554), 1, + sym_reference_expression, + STATE(1447), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3004), 2, + sym_line_comment, + sym_block_comment, + STATE(1565), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1522), 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, + [96453] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3434), 1, + sym_identifier, + ACTIONS(3674), 1, + anon_sym_struct, + ACTIONS(5518), 1, anon_sym_fn, - ACTIONS(5502), 1, + ACTIONS(5530), 1, anon_sym_shared, - ACTIONS(5506), 1, + ACTIONS(5534), 1, anon_sym_chan, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_thread, - ACTIONS(5510), 1, + ACTIONS(5538), 1, anon_sym_atomic, - ACTIONS(5578), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(5580), 1, + ACTIONS(5626), 1, anon_sym_EQ, - ACTIONS(5582), 1, + ACTIONS(5628), 1, anon_sym_STAR, - ACTIONS(5584), 1, + ACTIONS(5630), 1, anon_sym_QMARK, - ACTIONS(5586), 1, + ACTIONS(5632), 1, anon_sym_BANG, - ACTIONS(5588), 1, + ACTIONS(5634), 1, anon_sym_LBRACK2, - ACTIONS(5590), 1, + ACTIONS(5636), 1, anon_sym_AMP, - ACTIONS(5592), 1, + ACTIONS(5638), 1, anon_sym_map_LBRACK, - STATE(3595), 1, + STATE(3750), 1, sym_plain_type, - STATE(3704), 1, + STATE(3755), 1, sym__global_var_value, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, - STATE(2960), 2, + STATE(3005), 2, sym_line_comment, sym_block_comment, - STATE(3302), 2, + STATE(3360), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1658), 4, + STATE(1670), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1657), 12, + STATE(1671), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272101,51 +275834,49 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96188] = 24, + [96542] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, - sym_identifier, ACTIONS(3610), 1, - anon_sym_fn, + sym_identifier, ACTIONS(3614), 1, + anon_sym_fn, + ACTIONS(3618), 1, anon_sym_struct, - ACTIONS(3624), 1, - anon_sym_shared, ACTIONS(3628), 1, + anon_sym_shared, + ACTIONS(3632), 1, anon_sym_chan, - ACTIONS(3630), 1, + ACTIONS(3634), 1, anon_sym_thread, - ACTIONS(3632), 1, + ACTIONS(3636), 1, anon_sym_atomic, - ACTIONS(5594), 1, + ACTIONS(5640), 1, anon_sym_LPAREN, - ACTIONS(5596), 1, - anon_sym_EQ, - ACTIONS(5598), 1, + ACTIONS(5642), 1, anon_sym_STAR, - ACTIONS(5600), 1, + ACTIONS(5644), 1, anon_sym_QMARK, - ACTIONS(5602), 1, + ACTIONS(5646), 1, anon_sym_BANG, - ACTIONS(5604), 1, + ACTIONS(5648), 1, anon_sym_LBRACK2, - ACTIONS(5606), 1, + ACTIONS(5650), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5652), 1, anon_sym_map_LBRACK, - STATE(1506), 1, + STATE(1408), 1, sym_plain_type, - STATE(1507), 1, - sym__global_var_value, - STATE(4472), 1, + STATE(1508), 1, + sym_sum_type, + STATE(4415), 1, sym_reference_expression, - STATE(1404), 2, + STATE(1405), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2961), 2, + STATE(3006), 2, sym_line_comment, sym_block_comment, STATE(1437), 4, @@ -272153,7 +275884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1440), 12, + STATE(1454), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272166,7 +275897,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96277] = 23, + [96628] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272181,42 +275912,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5610), 1, + ACTIONS(5654), 1, anon_sym_RPAREN, - STATE(3900), 1, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2962), 2, + STATE(3007), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272229,7 +275960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96363] = 23, + [96714] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272244,42 +275975,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(611), 1, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5364), 1, + anon_sym_BANG, + ACTIONS(5366), 1, + anon_sym_LBRACK2, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5502), 1, + anon_sym_DOT_DOT_DOT, + STATE(4182), 1, + sym_plain_type, + STATE(4596), 1, + sym_reference_expression, + STATE(3008), 2, + sym_line_comment, + sym_block_comment, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [96800] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, + sym_identifier, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5612), 1, + ACTIONS(5656), 1, + anon_sym_RPAREN, + STATE(3987), 1, + sym_plain_type, + STATE(4596), 1, + sym_reference_expression, + STATE(3009), 2, + sym_line_comment, + sym_block_comment, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [96886] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(5614), 1, - anon_sym_DOT_DOT_DOT, - STATE(4122), 1, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5364), 1, + anon_sym_BANG, + ACTIONS(5366), 1, + anon_sym_LBRACK2, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5658), 1, + anon_sym_RPAREN, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2963), 2, + STATE(3010), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [96972] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3610), 1, + sym_identifier, + ACTIONS(3614), 1, + anon_sym_fn, + ACTIONS(3618), 1, + anon_sym_struct, + ACTIONS(3628), 1, + anon_sym_shared, + ACTIONS(3632), 1, + anon_sym_chan, + ACTIONS(3634), 1, + anon_sym_thread, + ACTIONS(3636), 1, + anon_sym_atomic, + ACTIONS(5640), 1, + anon_sym_LPAREN, + ACTIONS(5642), 1, + anon_sym_STAR, + ACTIONS(5644), 1, + anon_sym_QMARK, + ACTIONS(5646), 1, + anon_sym_BANG, + ACTIONS(5648), 1, + anon_sym_LBRACK2, + ACTIONS(5650), 1, + anon_sym_AMP, + ACTIONS(5652), 1, + anon_sym_map_LBRACK, + STATE(1412), 1, + sym_plain_type, + STATE(1607), 1, + sym_sum_type, + STATE(4415), 1, + sym_reference_expression, + STATE(1405), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3011), 2, + sym_line_comment, + sym_block_comment, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(1454), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272292,7 +276212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96449] = 23, + [97058] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272307,42 +276227,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(615), 1, anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5364), 1, + anon_sym_BANG, + ACTIONS(5366), 1, + anon_sym_LBRACK2, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5660), 1, + anon_sym_RPAREN, + STATE(3987), 1, + sym_plain_type, + STATE(4596), 1, + sym_reference_expression, + STATE(3012), 2, + sym_line_comment, + sym_block_comment, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [97144] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, + sym_identifier, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5616), 1, + ACTIONS(5662), 1, anon_sym_RPAREN, - STATE(3900), 1, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2964), 2, + STATE(3013), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272355,7 +276338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96535] = 23, + [97230] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272370,42 +276353,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(615), 1, anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5364), 1, + anon_sym_BANG, + ACTIONS(5366), 1, + anon_sym_LBRACK2, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5664), 1, + anon_sym_RPAREN, + STATE(3987), 1, + sym_plain_type, + STATE(4596), 1, + sym_reference_expression, + STATE(3014), 2, + sym_line_comment, + sym_block_comment, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [97316] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, + sym_identifier, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5618), 1, + ACTIONS(5666), 1, anon_sym_RPAREN, - STATE(3900), 1, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2965), 2, + STATE(3015), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272418,7 +276464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96621] = 23, + [97402] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272433,42 +276479,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(615), 1, anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5364), 1, + anon_sym_BANG, + ACTIONS(5366), 1, + anon_sym_LBRACK2, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5668), 1, + anon_sym_RPAREN, + STATE(3987), 1, + sym_plain_type, + STATE(4596), 1, + sym_reference_expression, + STATE(3016), 2, + sym_line_comment, + sym_block_comment, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [97488] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, + sym_identifier, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5620), 1, + ACTIONS(5670), 1, anon_sym_RPAREN, - STATE(3900), 1, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2966), 2, + STATE(3017), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [97574] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5364), 1, + anon_sym_BANG, + ACTIONS(5366), 1, + anon_sym_LBRACK2, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5672), 1, + anon_sym_DOT_DOT_DOT, + STATE(4205), 1, + sym_plain_type, + STATE(4596), 1, + sym_reference_expression, + STATE(3018), 2, + sym_line_comment, + sym_block_comment, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [97660] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5364), 1, + anon_sym_BANG, + ACTIONS(5366), 1, + anon_sym_LBRACK2, + ACTIONS(5368), 1, + anon_sym_AMP, + ACTIONS(5492), 1, + anon_sym_DOT_DOT_DOT, + STATE(4220), 1, + sym_plain_type, + STATE(4596), 1, + sym_reference_expression, + STATE(3019), 2, + sym_line_comment, + sym_block_comment, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272481,7 +276716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96707] = 23, + [97746] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272496,42 +276731,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5614), 1, - anon_sym_DOT_DOT_DOT, - STATE(4122), 1, + ACTIONS(5674), 1, + anon_sym_RPAREN, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2967), 2, + STATE(3020), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272544,7 +276779,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96793] = 23, + [97832] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2389), 1, + sym_plain_type, + STATE(4596), 1, + sym_reference_expression, + STATE(3021), 2, + sym_line_comment, + sym_block_comment, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(4591), 7, + anon_sym_fn, + anon_sym_struct, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(4593), 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(2350), 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, + [97892] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272559,42 +276844,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5622), 1, + ACTIONS(5676), 1, anon_sym_RPAREN, - STATE(3900), 1, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2968), 2, + STATE(3022), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272607,7 +276892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96879] = 23, + [97978] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272622,42 +276907,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5456), 1, - anon_sym_DOT_DOT_DOT, - STATE(4115), 1, + ACTIONS(5678), 1, + anon_sym_RPAREN, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2969), 2, + STATE(3023), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272670,7 +276955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96965] = 23, + [98064] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272685,42 +276970,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5624), 1, + ACTIONS(5680), 1, anon_sym_RPAREN, - STATE(3900), 1, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2970), 2, + STATE(3024), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272733,7 +277018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97051] = 23, + [98150] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272748,42 +277033,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5626), 1, + ACTIONS(5682), 1, anon_sym_RPAREN, - STATE(3900), 1, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2971), 2, + STATE(3025), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272796,7 +277081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97137] = 23, + [98236] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272811,42 +277096,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5628), 1, + ACTIONS(5684), 1, anon_sym_RPAREN, - STATE(3900), 1, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2972), 2, + STATE(3026), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272859,7 +277144,70 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97223] = 23, + [98322] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3610), 1, + sym_identifier, + ACTIONS(3614), 1, + anon_sym_fn, + ACTIONS(3618), 1, + anon_sym_struct, + ACTIONS(3628), 1, + anon_sym_shared, + ACTIONS(3632), 1, + anon_sym_chan, + ACTIONS(3634), 1, + anon_sym_thread, + ACTIONS(3636), 1, + anon_sym_atomic, + ACTIONS(5640), 1, + anon_sym_LPAREN, + ACTIONS(5642), 1, + anon_sym_STAR, + ACTIONS(5644), 1, + anon_sym_QMARK, + ACTIONS(5646), 1, + anon_sym_BANG, + ACTIONS(5648), 1, + anon_sym_LBRACK2, + ACTIONS(5650), 1, + anon_sym_AMP, + ACTIONS(5652), 1, + anon_sym_map_LBRACK, + STATE(1414), 1, + sym_plain_type, + STATE(1541), 1, + sym_sum_type, + STATE(4415), 1, + sym_reference_expression, + STATE(1405), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3027), 2, + sym_line_comment, + sym_block_comment, + STATE(1437), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1454), 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, + [98408] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272874,42 +277222,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5630), 1, + ACTIONS(5686), 1, anon_sym_RPAREN, - STATE(3900), 1, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2973), 2, + STATE(3028), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272922,7 +277270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97309] = 23, + [98494] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -272937,42 +277285,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5632), 1, + ACTIONS(5688), 1, anon_sym_RPAREN, - STATE(3900), 1, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2974), 2, + STATE(3029), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272985,7 +277333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97395] = 23, + [98580] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273000,42 +277348,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5634), 1, + ACTIONS(5690), 1, anon_sym_RPAREN, - STATE(3900), 1, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2975), 2, + STATE(3030), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273048,7 +277396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97481] = 23, + [98666] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273063,42 +277411,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5636), 1, + ACTIONS(5692), 1, anon_sym_RPAREN, - STATE(3900), 1, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2976), 2, + STATE(3031), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273111,7 +277459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97567] = 23, + [98752] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273126,42 +277474,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5638), 1, + ACTIONS(5694), 1, anon_sym_RPAREN, - STATE(3900), 1, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2977), 2, + STATE(3032), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273174,7 +277522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97653] = 23, + [98838] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273189,42 +277537,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5470), 1, - anon_sym_DOT_DOT_DOT, - STATE(4189), 1, + ACTIONS(5696), 1, + anon_sym_RPAREN, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2978), 2, + STATE(3033), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273237,7 +277585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97739] = 23, + [98924] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273252,42 +277600,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5640), 1, + ACTIONS(5698), 1, anon_sym_RPAREN, - STATE(3900), 1, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2979), 2, + STATE(3034), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273300,7 +277648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97825] = 23, + [99010] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273315,42 +277663,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5700), 1, anon_sym_RPAREN, - STATE(3900), 1, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2980), 2, + STATE(3035), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273363,49 +277711,49 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97911] = 23, + [99096] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, - sym_identifier, ACTIONS(3610), 1, - anon_sym_fn, + sym_identifier, ACTIONS(3614), 1, + anon_sym_fn, + ACTIONS(3618), 1, anon_sym_struct, - ACTIONS(3624), 1, - anon_sym_shared, ACTIONS(3628), 1, + anon_sym_shared, + ACTIONS(3632), 1, anon_sym_chan, - ACTIONS(3630), 1, + ACTIONS(3634), 1, anon_sym_thread, - ACTIONS(3632), 1, + ACTIONS(3636), 1, anon_sym_atomic, - ACTIONS(5594), 1, + ACTIONS(5640), 1, anon_sym_LPAREN, - ACTIONS(5598), 1, + ACTIONS(5642), 1, anon_sym_STAR, - ACTIONS(5600), 1, + ACTIONS(5644), 1, anon_sym_QMARK, - ACTIONS(5602), 1, + ACTIONS(5646), 1, anon_sym_BANG, - ACTIONS(5604), 1, + ACTIONS(5648), 1, anon_sym_LBRACK2, - ACTIONS(5606), 1, + ACTIONS(5650), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5652), 1, anon_sym_map_LBRACK, - STATE(1407), 1, + STATE(1415), 1, sym_plain_type, - STATE(1552), 1, - sym__type_union_list, - STATE(4472), 1, + STATE(1546), 1, + sym_sum_type, + STATE(4415), 1, sym_reference_expression, - STATE(1404), 2, + STATE(1405), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2981), 2, + STATE(3036), 2, sym_line_comment, sym_block_comment, STATE(1437), 4, @@ -273413,7 +277761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1440), 12, + STATE(1454), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273426,7 +277774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97997] = 23, + [99182] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273441,42 +277789,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5644), 1, + ACTIONS(5702), 1, anon_sym_RPAREN, - STATE(3900), 1, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2982), 2, + STATE(3037), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273489,7 +277837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98083] = 23, + [99268] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273504,92 +277852,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, - sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5646), 1, - anon_sym_RPAREN, - STATE(3900), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(2983), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2290), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2292), 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, - [98169] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2307), 1, + ACTIONS(5672), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5704), 1, + sym_identifier, + STATE(4205), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2984), 2, + STATE(3038), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - ACTIONS(4575), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(4577), 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(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273602,7 +277900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98229] = 23, + [99354] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273617,42 +277915,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5648), 1, + ACTIONS(5706), 1, anon_sym_RPAREN, - STATE(3900), 1, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2985), 2, + STATE(3039), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273665,7 +277963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98315] = 23, + [99440] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273680,42 +277978,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5650), 1, + ACTIONS(5708), 1, anon_sym_RPAREN, - STATE(3900), 1, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2986), 2, + STATE(3040), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273728,7 +278026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98401] = 23, + [99526] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273743,42 +278041,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5652), 1, + ACTIONS(5710), 1, anon_sym_RPAREN, - STATE(3900), 1, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2987), 2, + STATE(3041), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273791,7 +278089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98487] = 23, + [99612] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273806,42 +278104,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5654), 1, + ACTIONS(5712), 1, anon_sym_RPAREN, - STATE(3900), 1, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2988), 2, + STATE(3042), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273854,7 +278152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98573] = 23, + [99698] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273869,42 +278167,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5656), 1, + ACTIONS(5714), 1, anon_sym_RPAREN, - STATE(3900), 1, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2989), 2, + STATE(3043), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273917,7 +278215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98659] = 23, + [99784] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273932,42 +278230,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5658), 1, + ACTIONS(5716), 1, anon_sym_RPAREN, - STATE(3900), 1, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2990), 2, + STATE(3044), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273980,7 +278278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98745] = 23, + [99870] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -273995,42 +278293,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, - sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5660), 1, - anon_sym_RPAREN, - STATE(3900), 1, + ACTIONS(5672), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5718), 1, + sym_identifier, + STATE(4205), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2991), 2, + STATE(3045), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274043,57 +278341,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98831] = 23, + [99956] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(3638), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3642), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3646), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3656), 1, anon_sym_shared, - ACTIONS(3598), 1, + ACTIONS(3660), 1, + anon_sym_chan, + ACTIONS(3662), 1, + anon_sym_thread, + ACTIONS(3664), 1, + anon_sym_atomic, + ACTIONS(5608), 1, anon_sym_LPAREN, - ACTIONS(3600), 1, + ACTIONS(5612), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5614), 1, + anon_sym_QMARK, + ACTIONS(5616), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5618), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5620), 1, anon_sym_AMP, - ACTIONS(5662), 1, - anon_sym_RPAREN, - STATE(3900), 1, + ACTIONS(5622), 1, + anon_sym_map_LBRACK, + STATE(1536), 1, sym_plain_type, - STATE(4423), 1, + STATE(4554), 1, sym_reference_expression, - STATE(2992), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, + STATE(1447), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3046), 2, + sym_line_comment, + sym_block_comment, + STATE(1565), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(1522), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274106,57 +278402,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98917] = 23, + [100039] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(611), 1, + ACTIONS(3666), 1, + sym_identifier, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(3598), 1, + ACTIONS(3688), 1, + anon_sym_chan, + ACTIONS(3690), 1, + anon_sym_thread, + ACTIONS(3692), 1, + anon_sym_atomic, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(3600), 1, + ACTIONS(5720), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5722), 1, + anon_sym_QMARK, + ACTIONS(5724), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5726), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5728), 1, anon_sym_AMP, - ACTIONS(5614), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5664), 1, - sym_identifier, - STATE(4122), 1, + ACTIONS(5730), 1, + anon_sym_map_LBRACK, + STATE(1690), 1, sym_plain_type, - STATE(4423), 1, + STATE(4397), 1, sym_reference_expression, - STATE(2993), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3047), 2, + sym_line_comment, + sym_block_comment, + STATE(1670), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(1671), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274169,57 +278463,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99003] = 23, + [100122] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(3610), 1, - anon_sym_fn, - ACTIONS(3614), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3624), 1, + ACTIONS(5518), 1, + anon_sym_fn, + ACTIONS(5530), 1, anon_sym_shared, - ACTIONS(3628), 1, + ACTIONS(5534), 1, anon_sym_chan, - ACTIONS(3630), 1, + ACTIONS(5536), 1, anon_sym_thread, - ACTIONS(3632), 1, + ACTIONS(5538), 1, anon_sym_atomic, - ACTIONS(5594), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(5598), 1, + ACTIONS(5628), 1, anon_sym_STAR, - ACTIONS(5600), 1, + ACTIONS(5630), 1, anon_sym_QMARK, - ACTIONS(5602), 1, + ACTIONS(5632), 1, anon_sym_BANG, - ACTIONS(5604), 1, + ACTIONS(5634), 1, anon_sym_LBRACK2, - ACTIONS(5606), 1, + ACTIONS(5636), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5638), 1, anon_sym_map_LBRACK, - STATE(1407), 1, + STATE(1692), 1, sym_plain_type, - STATE(1511), 1, - sym__type_union_list, - STATE(4472), 1, + STATE(4406), 1, sym_reference_expression, - STATE(1404), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2994), 2, + STATE(3048), 2, sym_line_comment, sym_block_comment, - STATE(1437), 4, + STATE(3360), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(1670), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1440), 12, + STATE(1671), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274232,57 +278524,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99089] = 23, + [100205] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(3462), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3466), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3470), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3480), 1, anon_sym_shared, - ACTIONS(3598), 1, + ACTIONS(3484), 1, + anon_sym_chan, + ACTIONS(3486), 1, + anon_sym_thread, + ACTIONS(3488), 1, + anon_sym_atomic, + ACTIONS(5732), 1, anon_sym_LPAREN, - ACTIONS(3600), 1, + ACTIONS(5734), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5736), 1, + anon_sym_QMARK, + ACTIONS(5738), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5740), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5742), 1, anon_sym_AMP, - ACTIONS(5666), 1, - anon_sym_RPAREN, - STATE(3900), 1, + ACTIONS(5744), 1, + anon_sym_map_LBRACK, + STATE(1159), 1, sym_plain_type, - STATE(4423), 1, + STATE(4499), 1, sym_reference_expression, - STATE(2995), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, + STATE(1136), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3049), 2, + sym_line_comment, + sym_block_comment, + STATE(1179), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(1183), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274295,57 +278585,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99175] = 23, + [100288] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, + ACTIONS(3780), 1, sym_identifier, - ACTIONS(3610), 1, + ACTIONS(3782), 1, + anon_sym_LPAREN, + ACTIONS(3784), 1, anon_sym_fn, - ACTIONS(3614), 1, + ACTIONS(3788), 1, anon_sym_struct, - ACTIONS(3624), 1, + ACTIONS(3798), 1, anon_sym_shared, - ACTIONS(3628), 1, + ACTIONS(3800), 1, + anon_sym_map_LBRACK, + ACTIONS(3802), 1, anon_sym_chan, - ACTIONS(3630), 1, + ACTIONS(3804), 1, anon_sym_thread, - ACTIONS(3632), 1, + ACTIONS(3806), 1, anon_sym_atomic, - ACTIONS(5594), 1, - anon_sym_LPAREN, - ACTIONS(5598), 1, + ACTIONS(5746), 1, anon_sym_STAR, - ACTIONS(5600), 1, + ACTIONS(5748), 1, anon_sym_QMARK, - ACTIONS(5602), 1, + ACTIONS(5750), 1, anon_sym_BANG, - ACTIONS(5604), 1, + ACTIONS(5752), 1, anon_sym_LBRACK2, - ACTIONS(5606), 1, + ACTIONS(5754), 1, anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_map_LBRACK, - STATE(1407), 1, + STATE(2117), 1, sym_plain_type, - STATE(1519), 1, - sym__type_union_list, - STATE(4472), 1, + STATE(4520), 1, sym_reference_expression, - STATE(1404), 2, + STATE(1939), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2996), 2, + STATE(3050), 2, sym_line_comment, sym_block_comment, - STATE(1437), 4, + STATE(2110), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1440), 12, + STATE(2075), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274358,57 +278646,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99261] = 23, + [100371] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, + ACTIONS(3780), 1, sym_identifier, - ACTIONS(3610), 1, + ACTIONS(3782), 1, + anon_sym_LPAREN, + ACTIONS(3784), 1, anon_sym_fn, - ACTIONS(3614), 1, + ACTIONS(3788), 1, anon_sym_struct, - ACTIONS(3624), 1, + ACTIONS(3798), 1, anon_sym_shared, - ACTIONS(3628), 1, + ACTIONS(3800), 1, + anon_sym_map_LBRACK, + ACTIONS(3802), 1, anon_sym_chan, - ACTIONS(3630), 1, + ACTIONS(3804), 1, anon_sym_thread, - ACTIONS(3632), 1, + ACTIONS(3806), 1, anon_sym_atomic, - ACTIONS(5594), 1, - anon_sym_LPAREN, - ACTIONS(5598), 1, + ACTIONS(5746), 1, anon_sym_STAR, - ACTIONS(5600), 1, + ACTIONS(5748), 1, anon_sym_QMARK, - ACTIONS(5602), 1, + ACTIONS(5750), 1, anon_sym_BANG, - ACTIONS(5604), 1, + ACTIONS(5752), 1, anon_sym_LBRACK2, - ACTIONS(5606), 1, + ACTIONS(5754), 1, anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_map_LBRACK, - STATE(1407), 1, + STATE(2070), 1, sym_plain_type, - STATE(1534), 1, - sym__type_union_list, - STATE(4472), 1, + STATE(4520), 1, sym_reference_expression, - STATE(1404), 2, + STATE(1939), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2997), 2, + STATE(3051), 2, sym_line_comment, sym_block_comment, - STATE(1437), 4, + STATE(2110), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1440), 12, + STATE(2075), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274421,57 +278707,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99347] = 23, + [100454] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(3610), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3614), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3618), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3628), 1, anon_sym_shared, - ACTIONS(3598), 1, + ACTIONS(3632), 1, + anon_sym_chan, + ACTIONS(3634), 1, + anon_sym_thread, + ACTIONS(3636), 1, + anon_sym_atomic, + ACTIONS(5640), 1, anon_sym_LPAREN, - ACTIONS(3600), 1, + ACTIONS(5642), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5644), 1, + anon_sym_QMARK, + ACTIONS(5646), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5648), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5650), 1, anon_sym_AMP, - ACTIONS(5668), 1, - anon_sym_RPAREN, - STATE(3900), 1, + ACTIONS(5652), 1, + anon_sym_map_LBRACK, + STATE(1419), 1, sym_plain_type, - STATE(4423), 1, + STATE(4415), 1, sym_reference_expression, - STATE(2998), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, + STATE(1405), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3052), 2, + sym_line_comment, + sym_block_comment, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(1454), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274484,57 +278768,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99433] = 23, + [100537] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, - sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, - anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3600), 1, + ACTIONS(3989), 1, + sym_identifier, + ACTIONS(3991), 1, + anon_sym_fn, + ACTIONS(3993), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(4003), 1, + anon_sym_shared, + ACTIONS(4005), 1, + anon_sym_map_LBRACK, + ACTIONS(4007), 1, + anon_sym_chan, + ACTIONS(4009), 1, + anon_sym_thread, + ACTIONS(4011), 1, + anon_sym_atomic, + ACTIONS(5756), 1, + anon_sym_QMARK, + ACTIONS(5758), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5760), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5762), 1, anon_sym_AMP, - ACTIONS(5670), 1, - anon_sym_RPAREN, - STATE(3900), 1, + STATE(2389), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2999), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, + STATE(2320), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3053), 2, + sym_line_comment, + sym_block_comment, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274547,55 +278829,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99519] = 22, + [100620] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3989), 1, sym_identifier, - ACTIONS(3434), 1, + ACTIONS(3991), 1, anon_sym_fn, - ACTIONS(3438), 1, - anon_sym_struct, - ACTIONS(3448), 1, + ACTIONS(3993), 1, + anon_sym_STAR, + ACTIONS(4003), 1, anon_sym_shared, - ACTIONS(3452), 1, + ACTIONS(4005), 1, + anon_sym_map_LBRACK, + ACTIONS(4007), 1, anon_sym_chan, - ACTIONS(3454), 1, + ACTIONS(4009), 1, anon_sym_thread, - ACTIONS(3456), 1, + ACTIONS(4011), 1, anon_sym_atomic, - ACTIONS(5672), 1, - anon_sym_LPAREN, - ACTIONS(5674), 1, - anon_sym_STAR, - ACTIONS(5676), 1, + ACTIONS(5756), 1, anon_sym_QMARK, - ACTIONS(5678), 1, + ACTIONS(5758), 1, anon_sym_BANG, - ACTIONS(5680), 1, + ACTIONS(5760), 1, anon_sym_LBRACK2, - ACTIONS(5682), 1, + ACTIONS(5762), 1, anon_sym_AMP, - ACTIONS(5684), 1, - anon_sym_map_LBRACK, - STATE(3342), 1, + STATE(2420), 1, sym_plain_type, - STATE(4356), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3000), 2, - sym_line_comment, - sym_block_comment, - STATE(3302), 2, + STATE(2320), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3360), 4, + STATE(3054), 2, + sym_line_comment, + sym_block_comment, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3354), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274608,55 +278890,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99602] = 22, + [100703] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3460), 1, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3989), 1, sym_identifier, - ACTIONS(3464), 1, + ACTIONS(3991), 1, anon_sym_fn, - ACTIONS(3468), 1, - anon_sym_struct, - ACTIONS(3478), 1, + ACTIONS(3993), 1, + anon_sym_STAR, + ACTIONS(4003), 1, anon_sym_shared, - ACTIONS(3482), 1, + ACTIONS(4005), 1, + anon_sym_map_LBRACK, + ACTIONS(4007), 1, anon_sym_chan, - ACTIONS(3484), 1, + ACTIONS(4009), 1, anon_sym_thread, - ACTIONS(3486), 1, + ACTIONS(4011), 1, anon_sym_atomic, - ACTIONS(5686), 1, - anon_sym_LPAREN, - ACTIONS(5688), 1, - anon_sym_STAR, - ACTIONS(5690), 1, + ACTIONS(5756), 1, anon_sym_QMARK, - ACTIONS(5692), 1, + ACTIONS(5758), 1, anon_sym_BANG, - ACTIONS(5694), 1, + ACTIONS(5760), 1, anon_sym_LBRACK2, - ACTIONS(5696), 1, + ACTIONS(5762), 1, anon_sym_AMP, - ACTIONS(5698), 1, - anon_sym_map_LBRACK, - STATE(1244), 1, + STATE(2417), 1, sym_plain_type, - STATE(4407), 1, + STATE(4596), 1, sym_reference_expression, - STATE(1136), 2, + STATE(2320), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3001), 2, + STATE(3055), 2, sym_line_comment, sym_block_comment, - STATE(1171), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1169), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274669,55 +278951,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99685] = 22, + [100786] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3700), 1, + ACTIONS(3780), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3782), 1, + anon_sym_LPAREN, + ACTIONS(3784), 1, anon_sym_fn, - ACTIONS(3708), 1, + ACTIONS(3788), 1, anon_sym_struct, - ACTIONS(3718), 1, + ACTIONS(3798), 1, anon_sym_shared, - ACTIONS(3722), 1, + ACTIONS(3800), 1, + anon_sym_map_LBRACK, + ACTIONS(3802), 1, anon_sym_chan, - ACTIONS(3724), 1, + ACTIONS(3804), 1, anon_sym_thread, - ACTIONS(3726), 1, + ACTIONS(3806), 1, anon_sym_atomic, - ACTIONS(5700), 1, - anon_sym_LPAREN, - ACTIONS(5702), 1, + ACTIONS(5746), 1, anon_sym_STAR, - ACTIONS(5704), 1, + ACTIONS(5748), 1, anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5750), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5752), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5754), 1, anon_sym_AMP, - ACTIONS(5712), 1, - anon_sym_map_LBRACK, - STATE(1796), 1, + STATE(2068), 1, sym_plain_type, - STATE(4449), 1, + STATE(4520), 1, sym_reference_expression, - STATE(1760), 2, + STATE(1939), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3002), 2, + STATE(3056), 2, sym_line_comment, sym_block_comment, - STATE(1831), 4, + STATE(2110), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1830), 12, + STATE(2075), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274730,7 +279012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99768] = 22, + [100869] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -274745,40 +279027,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(3965), 1, + STATE(4576), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3003), 2, + STATE(3057), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274791,55 +279073,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99851] = 22, + [100952] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(3780), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3782), 1, + anon_sym_LPAREN, + ACTIONS(3784), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3788), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3798), 1, anon_sym_shared, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3600), 1, + ACTIONS(3800), 1, + anon_sym_map_LBRACK, + ACTIONS(3802), 1, + anon_sym_chan, + ACTIONS(3804), 1, + anon_sym_thread, + ACTIONS(3806), 1, + anon_sym_atomic, + ACTIONS(5746), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5748), 1, + anon_sym_QMARK, + ACTIONS(5750), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5752), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5754), 1, anon_sym_AMP, - STATE(4362), 1, + STATE(2086), 1, sym_plain_type, - STATE(4423), 1, + STATE(4520), 1, sym_reference_expression, - STATE(3004), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, + STATE(1939), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3058), 2, + sym_line_comment, + sym_block_comment, + STATE(2110), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2075), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274852,55 +279134,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99934] = 22, + [101035] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3748), 1, + ACTIONS(1318), 1, sym_identifier, - ACTIONS(3750), 1, - anon_sym_LPAREN, - ACTIONS(3752), 1, + ACTIONS(1322), 1, anon_sym_fn, - ACTIONS(3756), 1, + ACTIONS(1326), 1, anon_sym_struct, - ACTIONS(3766), 1, + ACTIONS(1336), 1, anon_sym_shared, - ACTIONS(3768), 1, - anon_sym_map_LBRACK, - ACTIONS(3770), 1, + ACTIONS(1340), 1, anon_sym_chan, - ACTIONS(3772), 1, + ACTIONS(1342), 1, anon_sym_thread, - ACTIONS(3774), 1, + ACTIONS(1344), 1, anon_sym_atomic, - ACTIONS(5714), 1, + ACTIONS(5764), 1, + anon_sym_LPAREN, + ACTIONS(5766), 1, anon_sym_STAR, - ACTIONS(5716), 1, + ACTIONS(5768), 1, anon_sym_QMARK, - ACTIONS(5718), 1, + ACTIONS(5770), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5772), 1, anon_sym_LBRACK2, - ACTIONS(5722), 1, + ACTIONS(5774), 1, anon_sym_AMP, - STATE(2065), 1, + ACTIONS(5776), 1, + anon_sym_map_LBRACK, + STATE(1046), 1, sym_plain_type, - STATE(4428), 1, + STATE(4440), 1, sym_reference_expression, - STATE(1899), 2, + STATE(986), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3005), 2, + STATE(3059), 2, sym_line_comment, sym_block_comment, - STATE(1918), 4, + STATE(1087), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1996), 12, + STATE(1071), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274913,55 +279195,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100017] = 22, + [101118] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3748), 1, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(3750), 1, - anon_sym_LPAREN, - ACTIONS(3752), 1, - anon_sym_fn, - ACTIONS(3756), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3766), 1, + ACTIONS(5518), 1, + anon_sym_fn, + ACTIONS(5530), 1, anon_sym_shared, - ACTIONS(3768), 1, - anon_sym_map_LBRACK, - ACTIONS(3770), 1, + ACTIONS(5534), 1, anon_sym_chan, - ACTIONS(3772), 1, + ACTIONS(5536), 1, anon_sym_thread, - ACTIONS(3774), 1, + ACTIONS(5538), 1, anon_sym_atomic, - ACTIONS(5714), 1, + ACTIONS(5624), 1, + anon_sym_LPAREN, + ACTIONS(5628), 1, anon_sym_STAR, - ACTIONS(5716), 1, + ACTIONS(5630), 1, anon_sym_QMARK, - ACTIONS(5718), 1, + ACTIONS(5632), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5634), 1, anon_sym_LBRACK2, - ACTIONS(5722), 1, + ACTIONS(5636), 1, anon_sym_AMP, - STATE(2107), 1, + ACTIONS(5638), 1, + anon_sym_map_LBRACK, + STATE(1690), 1, sym_plain_type, - STATE(4428), 1, + STATE(4406), 1, sym_reference_expression, - STATE(1899), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3006), 2, + STATE(3060), 2, sym_line_comment, sym_block_comment, - STATE(1918), 4, + STATE(3360), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(1670), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1996), 12, + STATE(1671), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274974,55 +279256,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100100] = 22, + [101201] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, + ACTIONS(3780), 1, sym_identifier, - ACTIONS(3642), 1, - anon_sym_struct, - ACTIONS(5490), 1, + ACTIONS(3782), 1, + anon_sym_LPAREN, + ACTIONS(3784), 1, anon_sym_fn, - ACTIONS(5502), 1, + ACTIONS(3788), 1, + anon_sym_struct, + ACTIONS(3798), 1, anon_sym_shared, - ACTIONS(5506), 1, + ACTIONS(3800), 1, + anon_sym_map_LBRACK, + ACTIONS(3802), 1, anon_sym_chan, - ACTIONS(5508), 1, + ACTIONS(3804), 1, anon_sym_thread, - ACTIONS(5510), 1, + ACTIONS(3806), 1, anon_sym_atomic, - ACTIONS(5578), 1, - anon_sym_LPAREN, - ACTIONS(5582), 1, + ACTIONS(5746), 1, anon_sym_STAR, - ACTIONS(5584), 1, + ACTIONS(5748), 1, anon_sym_QMARK, - ACTIONS(5586), 1, + ACTIONS(5750), 1, anon_sym_BANG, - ACTIONS(5588), 1, + ACTIONS(5752), 1, anon_sym_LBRACK2, - ACTIONS(5590), 1, + ACTIONS(5754), 1, anon_sym_AMP, - ACTIONS(5592), 1, - anon_sym_map_LBRACK, - STATE(1634), 1, + STATE(2092), 1, sym_plain_type, - STATE(4356), 1, + STATE(4520), 1, sym_reference_expression, - STATE(3007), 2, - sym_line_comment, - sym_block_comment, - STATE(3302), 2, + STATE(1939), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1658), 4, + STATE(3061), 2, + sym_line_comment, + sym_block_comment, + STATE(2110), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1657), 12, + STATE(2075), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275035,55 +279317,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100183] = 22, + [101284] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3748), 1, + ACTIONS(3780), 1, sym_identifier, - ACTIONS(3750), 1, + ACTIONS(3782), 1, anon_sym_LPAREN, - ACTIONS(3752), 1, + ACTIONS(3784), 1, anon_sym_fn, - ACTIONS(3756), 1, + ACTIONS(3788), 1, anon_sym_struct, - ACTIONS(3766), 1, + ACTIONS(3798), 1, anon_sym_shared, - ACTIONS(3768), 1, + ACTIONS(3800), 1, anon_sym_map_LBRACK, - ACTIONS(3770), 1, + ACTIONS(3802), 1, anon_sym_chan, - ACTIONS(3772), 1, + ACTIONS(3804), 1, anon_sym_thread, - ACTIONS(3774), 1, + ACTIONS(3806), 1, anon_sym_atomic, - ACTIONS(5714), 1, + ACTIONS(5746), 1, anon_sym_STAR, - ACTIONS(5716), 1, + ACTIONS(5748), 1, anon_sym_QMARK, - ACTIONS(5718), 1, + ACTIONS(5750), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5752), 1, anon_sym_LBRACK2, - ACTIONS(5722), 1, + ACTIONS(5754), 1, anon_sym_AMP, - STATE(2112), 1, + STATE(2127), 1, sym_plain_type, - STATE(4428), 1, + STATE(4520), 1, sym_reference_expression, - STATE(1899), 2, + STATE(1939), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3008), 2, + STATE(3062), 2, sym_line_comment, sym_block_comment, - STATE(1918), 4, + STATE(2110), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1996), 12, + STATE(2075), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275096,55 +279378,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100266] = 22, + [101367] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3566), 1, + ACTIONS(3780), 1, sym_identifier, - ACTIONS(3568), 1, + ACTIONS(3782), 1, anon_sym_LPAREN, - ACTIONS(3570), 1, + ACTIONS(3784), 1, anon_sym_fn, - ACTIONS(3572), 1, - anon_sym_STAR, - ACTIONS(3574), 1, + ACTIONS(3788), 1, anon_sym_struct, - ACTIONS(3584), 1, + ACTIONS(3798), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3800), 1, anon_sym_map_LBRACK, - ACTIONS(3588), 1, + ACTIONS(3802), 1, anon_sym_chan, - ACTIONS(3590), 1, + ACTIONS(3804), 1, anon_sym_thread, - ACTIONS(3592), 1, + ACTIONS(3806), 1, anon_sym_atomic, - ACTIONS(5724), 1, + ACTIONS(5746), 1, + anon_sym_STAR, + ACTIONS(5748), 1, anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(5750), 1, anon_sym_BANG, - ACTIONS(5728), 1, + ACTIONS(5752), 1, anon_sym_LBRACK2, - ACTIONS(5730), 1, + ACTIONS(5754), 1, anon_sym_AMP, - STATE(1326), 1, + STATE(2154), 1, sym_plain_type, - STATE(4323), 1, + STATE(4520), 1, sym_reference_expression, - STATE(1277), 2, + STATE(1939), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3009), 2, + STATE(3063), 2, sym_line_comment, sym_block_comment, - STATE(1296), 4, + STATE(2110), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1299), 12, + STATE(2075), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275157,55 +279439,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100349] = 22, + [101450] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3566), 1, - sym_identifier, - ACTIONS(3568), 1, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3570), 1, + ACTIONS(3989), 1, + sym_identifier, + ACTIONS(3991), 1, anon_sym_fn, - ACTIONS(3572), 1, + ACTIONS(3993), 1, anon_sym_STAR, - ACTIONS(3574), 1, - anon_sym_struct, - ACTIONS(3584), 1, + ACTIONS(4003), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(4005), 1, anon_sym_map_LBRACK, - ACTIONS(3588), 1, + ACTIONS(4007), 1, anon_sym_chan, - ACTIONS(3590), 1, + ACTIONS(4009), 1, anon_sym_thread, - ACTIONS(3592), 1, + ACTIONS(4011), 1, anon_sym_atomic, - ACTIONS(5724), 1, + ACTIONS(5756), 1, anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(5758), 1, anon_sym_BANG, - ACTIONS(5728), 1, + ACTIONS(5760), 1, anon_sym_LBRACK2, - ACTIONS(5730), 1, + ACTIONS(5762), 1, anon_sym_AMP, - STATE(1327), 1, + STATE(2394), 1, sym_plain_type, - STATE(4323), 1, + STATE(4596), 1, sym_reference_expression, - STATE(1277), 2, + STATE(2320), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3010), 2, + STATE(3064), 2, sym_line_comment, sym_block_comment, - STATE(1296), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1299), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275218,7 +279500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100432] = 22, + [101533] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -275233,40 +279515,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(2394), 1, + STATE(3818), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3011), 2, + STATE(3065), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275279,55 +279561,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100515] = 22, + [101616] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3700), 1, + ACTIONS(3780), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3782), 1, + anon_sym_LPAREN, + ACTIONS(3784), 1, anon_sym_fn, - ACTIONS(3708), 1, + ACTIONS(3788), 1, anon_sym_struct, - ACTIONS(3718), 1, + ACTIONS(3798), 1, anon_sym_shared, - ACTIONS(3722), 1, + ACTIONS(3800), 1, + anon_sym_map_LBRACK, + ACTIONS(3802), 1, anon_sym_chan, - ACTIONS(3724), 1, + ACTIONS(3804), 1, anon_sym_thread, - ACTIONS(3726), 1, + ACTIONS(3806), 1, anon_sym_atomic, - ACTIONS(5700), 1, - anon_sym_LPAREN, - ACTIONS(5702), 1, + ACTIONS(5746), 1, anon_sym_STAR, - ACTIONS(5704), 1, + ACTIONS(5748), 1, anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5750), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5752), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5754), 1, anon_sym_AMP, - ACTIONS(5712), 1, - anon_sym_map_LBRACK, - STATE(1817), 1, + STATE(2151), 1, sym_plain_type, - STATE(4449), 1, + STATE(4520), 1, sym_reference_expression, - STATE(1760), 2, + STATE(1939), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3012), 2, + STATE(3066), 2, sym_line_comment, sym_block_comment, - STATE(1831), 4, + STATE(2110), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1830), 12, + STATE(2075), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275340,55 +279622,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100598] = 22, + [101699] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, - sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, - anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3600), 1, + ACTIONS(3989), 1, + sym_identifier, + ACTIONS(3991), 1, + anon_sym_fn, + ACTIONS(3993), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(4003), 1, + anon_sym_shared, + ACTIONS(4005), 1, + anon_sym_map_LBRACK, + ACTIONS(4007), 1, + anon_sym_chan, + ACTIONS(4009), 1, + anon_sym_thread, + ACTIONS(4011), 1, + anon_sym_atomic, + ACTIONS(5756), 1, + anon_sym_QMARK, + ACTIONS(5758), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5760), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5762), 1, anon_sym_AMP, - STATE(3931), 1, + STATE(2393), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3013), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, + STATE(2320), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3067), 2, + sym_line_comment, + sym_block_comment, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275401,24 +279683,24 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100681] = 22, + [101782] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3924), 1, + ACTIONS(3462), 1, sym_identifier, - ACTIONS(3928), 1, + ACTIONS(3466), 1, anon_sym_fn, - ACTIONS(3932), 1, + ACTIONS(3470), 1, anon_sym_struct, - ACTIONS(3942), 1, + ACTIONS(3480), 1, anon_sym_shared, - ACTIONS(3946), 1, + ACTIONS(3484), 1, anon_sym_chan, - ACTIONS(3948), 1, + ACTIONS(3486), 1, anon_sym_thread, - ACTIONS(3950), 1, + ACTIONS(3488), 1, anon_sym_atomic, ACTIONS(5732), 1, anon_sym_LPAREN, @@ -275434,22 +279716,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(5744), 1, anon_sym_map_LBRACK, - STATE(2199), 1, + STATE(1233), 1, sym_plain_type, - STATE(4466), 1, + STATE(4499), 1, sym_reference_expression, - STATE(2130), 2, + STATE(1136), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3014), 2, + STATE(3068), 2, sym_line_comment, sym_block_comment, - STATE(2178), 4, + STATE(1179), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2179), 12, + STATE(1183), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275462,55 +279744,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100764] = 22, + [101865] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3700), 1, + ACTIONS(3462), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3466), 1, anon_sym_fn, - ACTIONS(3708), 1, + ACTIONS(3470), 1, anon_sym_struct, - ACTIONS(3718), 1, + ACTIONS(3480), 1, anon_sym_shared, - ACTIONS(3722), 1, + ACTIONS(3484), 1, anon_sym_chan, - ACTIONS(3724), 1, + ACTIONS(3486), 1, anon_sym_thread, - ACTIONS(3726), 1, + ACTIONS(3488), 1, anon_sym_atomic, - ACTIONS(5700), 1, + ACTIONS(5732), 1, anon_sym_LPAREN, - ACTIONS(5702), 1, + ACTIONS(5734), 1, anon_sym_STAR, - ACTIONS(5704), 1, + ACTIONS(5736), 1, anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5738), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5740), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5742), 1, anon_sym_AMP, - ACTIONS(5712), 1, + ACTIONS(5744), 1, anon_sym_map_LBRACK, - STATE(1816), 1, + STATE(1238), 1, sym_plain_type, - STATE(4449), 1, + STATE(4499), 1, sym_reference_expression, - STATE(1760), 2, + STATE(1136), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3015), 2, + STATE(3069), 2, sym_line_comment, sym_block_comment, - STATE(1831), 4, + STATE(1179), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1830), 12, + STATE(1183), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275523,55 +279805,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100847] = 22, + [101948] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3924), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(3928), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(3932), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3942), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(3946), 1, + ACTIONS(3688), 1, anon_sym_chan, - ACTIONS(3948), 1, + ACTIONS(3690), 1, anon_sym_thread, - ACTIONS(3950), 1, + ACTIONS(3692), 1, anon_sym_atomic, - ACTIONS(5732), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(5734), 1, + ACTIONS(5720), 1, anon_sym_STAR, - ACTIONS(5736), 1, + ACTIONS(5722), 1, anon_sym_QMARK, - ACTIONS(5738), 1, + ACTIONS(5724), 1, anon_sym_BANG, - ACTIONS(5740), 1, + ACTIONS(5726), 1, anon_sym_LBRACK2, - ACTIONS(5742), 1, + ACTIONS(5728), 1, anon_sym_AMP, - ACTIONS(5744), 1, + ACTIONS(5730), 1, anon_sym_map_LBRACK, - STATE(2235), 1, + STATE(1703), 1, sym_plain_type, - STATE(4466), 1, + STATE(4397), 1, sym_reference_expression, - STATE(2130), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3016), 2, + STATE(3070), 2, sym_line_comment, sym_block_comment, - STATE(2178), 4, + STATE(1670), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2179), 12, + STATE(1671), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275584,24 +279866,85 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100930] = 22, + [102031] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3924), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5364), 1, + anon_sym_BANG, + ACTIONS(5366), 1, + anon_sym_LBRACK2, + ACTIONS(5368), 1, + anon_sym_AMP, + STATE(3964), 1, + sym_plain_type, + STATE(4596), 1, + sym_reference_expression, + STATE(3071), 2, + sym_line_comment, + sym_block_comment, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [102114] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3462), 1, sym_identifier, - ACTIONS(3928), 1, + ACTIONS(3466), 1, anon_sym_fn, - ACTIONS(3932), 1, + ACTIONS(3470), 1, anon_sym_struct, - ACTIONS(3942), 1, + ACTIONS(3480), 1, anon_sym_shared, - ACTIONS(3946), 1, + ACTIONS(3484), 1, anon_sym_chan, - ACTIONS(3948), 1, + ACTIONS(3486), 1, anon_sym_thread, - ACTIONS(3950), 1, + ACTIONS(3488), 1, anon_sym_atomic, ACTIONS(5732), 1, anon_sym_LPAREN, @@ -275617,22 +279960,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(5744), 1, anon_sym_map_LBRACK, - STATE(2201), 1, + STATE(1204), 1, sym_plain_type, - STATE(4466), 1, + STATE(4499), 1, sym_reference_expression, - STATE(2130), 2, + STATE(1136), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3017), 2, + STATE(3072), 2, sym_line_comment, sym_block_comment, - STATE(2178), 4, + STATE(1179), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2179), 12, + STATE(1183), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275645,7 +279988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101013] = 22, + [102197] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -275660,40 +280003,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(4400), 1, + STATE(3885), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3018), 2, + STATE(3073), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275706,7 +280049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101096] = 22, + [102280] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -275721,40 +280064,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(3815), 1, + STATE(3933), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3019), 2, + STATE(3074), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275767,55 +280110,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101179] = 22, + [102363] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4068), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(4076), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(4086), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(4090), 1, - anon_sym_chan, - ACTIONS(4092), 1, - anon_sym_thread, - ACTIONS(4094), 1, - anon_sym_atomic, - ACTIONS(5746), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5748), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5750), 1, - anon_sym_QMARK, - ACTIONS(5752), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5754), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5756), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5758), 1, - anon_sym_map_LBRACK, - STATE(2511), 1, + STATE(4479), 1, sym_plain_type, - STATE(4386), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2419), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3020), 2, + STATE(3075), 2, sym_line_comment, sym_block_comment, - STATE(2533), 4, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275828,55 +280171,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101262] = 22, + [102446] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3924), 1, + ACTIONS(3736), 1, sym_identifier, - ACTIONS(3928), 1, + ACTIONS(3740), 1, anon_sym_fn, - ACTIONS(3932), 1, + ACTIONS(3744), 1, anon_sym_struct, - ACTIONS(3942), 1, + ACTIONS(3754), 1, anon_sym_shared, - ACTIONS(3946), 1, + ACTIONS(3758), 1, anon_sym_chan, - ACTIONS(3948), 1, + ACTIONS(3760), 1, anon_sym_thread, - ACTIONS(3950), 1, + ACTIONS(3762), 1, anon_sym_atomic, - ACTIONS(5732), 1, + ACTIONS(5778), 1, anon_sym_LPAREN, - ACTIONS(5734), 1, + ACTIONS(5780), 1, anon_sym_STAR, - ACTIONS(5736), 1, + ACTIONS(5782), 1, anon_sym_QMARK, - ACTIONS(5738), 1, + ACTIONS(5784), 1, anon_sym_BANG, - ACTIONS(5740), 1, + ACTIONS(5786), 1, anon_sym_LBRACK2, - ACTIONS(5742), 1, + ACTIONS(5788), 1, anon_sym_AMP, - ACTIONS(5744), 1, + ACTIONS(5790), 1, anon_sym_map_LBRACK, - STATE(2233), 1, + STATE(1907), 1, sym_plain_type, - STATE(4466), 1, + STATE(4537), 1, sym_reference_expression, - STATE(2130), 2, + STATE(1800), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3021), 2, + STATE(3076), 2, sym_line_comment, sym_block_comment, - STATE(2178), 4, + STATE(1920), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2179), 12, + STATE(1919), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275889,55 +280232,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101345] = 22, + [102529] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3924), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(3928), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(3932), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3942), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(3946), 1, + ACTIONS(3688), 1, anon_sym_chan, - ACTIONS(3948), 1, + ACTIONS(3690), 1, anon_sym_thread, - ACTIONS(3950), 1, + ACTIONS(3692), 1, anon_sym_atomic, - ACTIONS(5732), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(5734), 1, + ACTIONS(5720), 1, anon_sym_STAR, - ACTIONS(5736), 1, + ACTIONS(5722), 1, anon_sym_QMARK, - ACTIONS(5738), 1, + ACTIONS(5724), 1, anon_sym_BANG, - ACTIONS(5740), 1, + ACTIONS(5726), 1, anon_sym_LBRACK2, - ACTIONS(5742), 1, + ACTIONS(5728), 1, anon_sym_AMP, - ACTIONS(5744), 1, + ACTIONS(5730), 1, anon_sym_map_LBRACK, - STATE(2230), 1, + STATE(1700), 1, sym_plain_type, - STATE(4466), 1, + STATE(4397), 1, sym_reference_expression, - STATE(2130), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3022), 2, + STATE(3077), 2, sym_line_comment, sym_block_comment, - STATE(2178), 4, + STATE(1670), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2179), 12, + STATE(1671), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275950,55 +280293,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101428] = 22, + [102612] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3700), 1, + ACTIONS(3736), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3740), 1, anon_sym_fn, - ACTIONS(3708), 1, + ACTIONS(3744), 1, anon_sym_struct, - ACTIONS(3718), 1, + ACTIONS(3754), 1, anon_sym_shared, - ACTIONS(3722), 1, + ACTIONS(3758), 1, anon_sym_chan, - ACTIONS(3724), 1, + ACTIONS(3760), 1, anon_sym_thread, - ACTIONS(3726), 1, + ACTIONS(3762), 1, anon_sym_atomic, - ACTIONS(5700), 1, + ACTIONS(5778), 1, anon_sym_LPAREN, - ACTIONS(5702), 1, + ACTIONS(5780), 1, anon_sym_STAR, - ACTIONS(5704), 1, + ACTIONS(5782), 1, anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5784), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5786), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5788), 1, anon_sym_AMP, - ACTIONS(5712), 1, + ACTIONS(5790), 1, anon_sym_map_LBRACK, - STATE(1815), 1, + STATE(1906), 1, sym_plain_type, - STATE(4449), 1, + STATE(4537), 1, sym_reference_expression, - STATE(1760), 2, + STATE(1800), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3023), 2, + STATE(3078), 2, sym_line_comment, sym_block_comment, - STATE(1831), 4, + STATE(1920), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1830), 12, + STATE(1919), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276011,55 +280354,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101511] = 22, + [102695] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3924), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(3928), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(3932), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3942), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(3946), 1, + ACTIONS(3688), 1, anon_sym_chan, - ACTIONS(3948), 1, + ACTIONS(3690), 1, anon_sym_thread, - ACTIONS(3950), 1, + ACTIONS(3692), 1, anon_sym_atomic, - ACTIONS(5732), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(5734), 1, + ACTIONS(5720), 1, anon_sym_STAR, - ACTIONS(5736), 1, + ACTIONS(5722), 1, anon_sym_QMARK, - ACTIONS(5738), 1, + ACTIONS(5724), 1, anon_sym_BANG, - ACTIONS(5740), 1, + ACTIONS(5726), 1, anon_sym_LBRACK2, - ACTIONS(5742), 1, + ACTIONS(5728), 1, anon_sym_AMP, - ACTIONS(5744), 1, + ACTIONS(5730), 1, anon_sym_map_LBRACK, - STATE(2204), 1, + STATE(1693), 1, sym_plain_type, - STATE(4466), 1, + STATE(4397), 1, sym_reference_expression, - STATE(2130), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3024), 2, + STATE(3079), 2, sym_line_comment, sym_block_comment, - STATE(2178), 4, + STATE(1670), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2179), 12, + STATE(1671), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276072,55 +280415,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101594] = 22, + [102778] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4068), 1, + ACTIONS(3736), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(3740), 1, anon_sym_fn, - ACTIONS(4076), 1, + ACTIONS(3744), 1, anon_sym_struct, - ACTIONS(4086), 1, + ACTIONS(3754), 1, anon_sym_shared, - ACTIONS(4090), 1, + ACTIONS(3758), 1, anon_sym_chan, - ACTIONS(4092), 1, + ACTIONS(3760), 1, anon_sym_thread, - ACTIONS(4094), 1, + ACTIONS(3762), 1, anon_sym_atomic, - ACTIONS(5746), 1, + ACTIONS(5778), 1, anon_sym_LPAREN, - ACTIONS(5748), 1, + ACTIONS(5780), 1, anon_sym_STAR, - ACTIONS(5750), 1, + ACTIONS(5782), 1, anon_sym_QMARK, - ACTIONS(5752), 1, + ACTIONS(5784), 1, anon_sym_BANG, - ACTIONS(5754), 1, + ACTIONS(5786), 1, anon_sym_LBRACK2, - ACTIONS(5756), 1, + ACTIONS(5788), 1, anon_sym_AMP, - ACTIONS(5758), 1, + ACTIONS(5790), 1, anon_sym_map_LBRACK, - STATE(2520), 1, + STATE(1905), 1, sym_plain_type, - STATE(4386), 1, + STATE(4537), 1, sym_reference_expression, - STATE(2419), 2, + STATE(1800), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3025), 2, + STATE(3080), 2, sym_line_comment, sym_block_comment, - STATE(2533), 4, + STATE(1920), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(1919), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276133,55 +280476,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101677] = 22, + [102861] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3924), 1, + ACTIONS(3780), 1, sym_identifier, - ACTIONS(3928), 1, + ACTIONS(3782), 1, + anon_sym_LPAREN, + ACTIONS(3784), 1, anon_sym_fn, - ACTIONS(3932), 1, + ACTIONS(3788), 1, anon_sym_struct, - ACTIONS(3942), 1, + ACTIONS(3798), 1, anon_sym_shared, - ACTIONS(3946), 1, + ACTIONS(3800), 1, + anon_sym_map_LBRACK, + ACTIONS(3802), 1, anon_sym_chan, - ACTIONS(3948), 1, + ACTIONS(3804), 1, anon_sym_thread, - ACTIONS(3950), 1, + ACTIONS(3806), 1, anon_sym_atomic, - ACTIONS(5732), 1, - anon_sym_LPAREN, - ACTIONS(5734), 1, + ACTIONS(5746), 1, anon_sym_STAR, - ACTIONS(5736), 1, + ACTIONS(5748), 1, anon_sym_QMARK, - ACTIONS(5738), 1, + ACTIONS(5750), 1, anon_sym_BANG, - ACTIONS(5740), 1, + ACTIONS(5752), 1, anon_sym_LBRACK2, - ACTIONS(5742), 1, + ACTIONS(5754), 1, anon_sym_AMP, - ACTIONS(5744), 1, - anon_sym_map_LBRACK, - STATE(2203), 1, + STATE(2112), 1, sym_plain_type, - STATE(4466), 1, + STATE(4520), 1, sym_reference_expression, - STATE(2130), 2, + STATE(1939), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3026), 2, + STATE(3081), 2, sym_line_comment, sym_block_comment, - STATE(2178), 4, + STATE(2110), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2179), 12, + STATE(2075), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276194,55 +280537,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101760] = 22, + [102944] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3566), 1, + ACTIONS(3780), 1, sym_identifier, - ACTIONS(3568), 1, + ACTIONS(3782), 1, anon_sym_LPAREN, - ACTIONS(3570), 1, + ACTIONS(3784), 1, anon_sym_fn, - ACTIONS(3572), 1, - anon_sym_STAR, - ACTIONS(3574), 1, + ACTIONS(3788), 1, anon_sym_struct, - ACTIONS(3584), 1, + ACTIONS(3798), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3800), 1, anon_sym_map_LBRACK, - ACTIONS(3588), 1, + ACTIONS(3802), 1, anon_sym_chan, - ACTIONS(3590), 1, + ACTIONS(3804), 1, anon_sym_thread, - ACTIONS(3592), 1, + ACTIONS(3806), 1, anon_sym_atomic, - ACTIONS(5724), 1, + ACTIONS(5746), 1, + anon_sym_STAR, + ACTIONS(5748), 1, anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(5750), 1, anon_sym_BANG, - ACTIONS(5728), 1, + ACTIONS(5752), 1, anon_sym_LBRACK2, - ACTIONS(5730), 1, + ACTIONS(5754), 1, anon_sym_AMP, - STATE(1359), 1, + STATE(2120), 1, sym_plain_type, - STATE(4323), 1, + STATE(4520), 1, sym_reference_expression, - STATE(1277), 2, + STATE(1939), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3027), 2, + STATE(3082), 2, sym_line_comment, sym_block_comment, - STATE(1296), 4, + STATE(2110), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1299), 12, + STATE(2075), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276255,55 +280598,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101843] = 22, + [103027] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3924), 1, + ACTIONS(3736), 1, sym_identifier, - ACTIONS(3928), 1, + ACTIONS(3740), 1, anon_sym_fn, - ACTIONS(3932), 1, + ACTIONS(3744), 1, anon_sym_struct, - ACTIONS(3942), 1, + ACTIONS(3754), 1, anon_sym_shared, - ACTIONS(3946), 1, + ACTIONS(3758), 1, anon_sym_chan, - ACTIONS(3948), 1, + ACTIONS(3760), 1, anon_sym_thread, - ACTIONS(3950), 1, + ACTIONS(3762), 1, anon_sym_atomic, - ACTIONS(5732), 1, + ACTIONS(5778), 1, anon_sym_LPAREN, - ACTIONS(5734), 1, + ACTIONS(5780), 1, anon_sym_STAR, - ACTIONS(5736), 1, + ACTIONS(5782), 1, anon_sym_QMARK, - ACTIONS(5738), 1, + ACTIONS(5784), 1, anon_sym_BANG, - ACTIONS(5740), 1, + ACTIONS(5786), 1, anon_sym_LBRACK2, - ACTIONS(5742), 1, + ACTIONS(5788), 1, anon_sym_AMP, - ACTIONS(5744), 1, + ACTIONS(5790), 1, anon_sym_map_LBRACK, - STATE(2202), 1, + STATE(1888), 1, sym_plain_type, - STATE(4466), 1, + STATE(4537), 1, sym_reference_expression, - STATE(2130), 2, + STATE(1800), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3028), 2, + STATE(3083), 2, sym_line_comment, sym_block_comment, - STATE(2178), 4, + STATE(1920), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2179), 12, + STATE(1919), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276316,55 +280659,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101926] = 22, + [103110] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3700), 1, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3438), 1, anon_sym_fn, - ACTIONS(3708), 1, + ACTIONS(3442), 1, anon_sym_struct, - ACTIONS(3718), 1, + ACTIONS(3452), 1, anon_sym_shared, - ACTIONS(3722), 1, + ACTIONS(3456), 1, anon_sym_chan, - ACTIONS(3724), 1, + ACTIONS(3458), 1, anon_sym_thread, - ACTIONS(3726), 1, + ACTIONS(3460), 1, anon_sym_atomic, - ACTIONS(5700), 1, + ACTIONS(5792), 1, anon_sym_LPAREN, - ACTIONS(5702), 1, + ACTIONS(5794), 1, anon_sym_STAR, - ACTIONS(5704), 1, + ACTIONS(5796), 1, anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5798), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5800), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5802), 1, anon_sym_AMP, - ACTIONS(5712), 1, + ACTIONS(5804), 1, anon_sym_map_LBRACK, - STATE(1785), 1, + STATE(3407), 1, sym_plain_type, - STATE(4449), 1, + STATE(4406), 1, sym_reference_expression, - STATE(1760), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3029), 2, + STATE(3084), 2, sym_line_comment, sym_block_comment, - STATE(1831), 4, + STATE(3360), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3404), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1830), 12, + STATE(3401), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276377,55 +280720,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102009] = 22, + [103193] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3700), 1, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(3704), 1, - anon_sym_fn, - ACTIONS(3708), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3718), 1, + ACTIONS(5518), 1, + anon_sym_fn, + ACTIONS(5530), 1, anon_sym_shared, - ACTIONS(3722), 1, + ACTIONS(5534), 1, anon_sym_chan, - ACTIONS(3724), 1, + ACTIONS(5536), 1, anon_sym_thread, - ACTIONS(3726), 1, + ACTIONS(5538), 1, anon_sym_atomic, - ACTIONS(5700), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(5702), 1, + ACTIONS(5628), 1, anon_sym_STAR, - ACTIONS(5704), 1, + ACTIONS(5630), 1, anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5632), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5634), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5636), 1, anon_sym_AMP, - ACTIONS(5712), 1, + ACTIONS(5638), 1, anon_sym_map_LBRACK, - STATE(1790), 1, + STATE(1693), 1, sym_plain_type, - STATE(4449), 1, + STATE(4406), 1, sym_reference_expression, - STATE(1760), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3030), 2, + STATE(3085), 2, sym_line_comment, sym_block_comment, - STATE(1831), 4, + STATE(3360), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(1670), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1830), 12, + STATE(1671), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276438,55 +280781,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102092] = 22, + [103276] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3797), 1, + ACTIONS(3736), 1, sym_identifier, - ACTIONS(3799), 1, - anon_sym_LPAREN, - ACTIONS(3801), 1, + ACTIONS(3740), 1, anon_sym_fn, - ACTIONS(3805), 1, + ACTIONS(3744), 1, anon_sym_struct, - ACTIONS(3815), 1, + ACTIONS(3754), 1, anon_sym_shared, - ACTIONS(3817), 1, - anon_sym_map_LBRACK, - ACTIONS(3819), 1, + ACTIONS(3758), 1, anon_sym_chan, - ACTIONS(3821), 1, + ACTIONS(3760), 1, anon_sym_thread, - ACTIONS(3823), 1, + ACTIONS(3762), 1, anon_sym_atomic, - ACTIONS(5760), 1, + ACTIONS(5778), 1, + anon_sym_LPAREN, + ACTIONS(5780), 1, anon_sym_STAR, - ACTIONS(5762), 1, + ACTIONS(5782), 1, anon_sym_QMARK, - ACTIONS(5764), 1, + ACTIONS(5784), 1, anon_sym_BANG, - ACTIONS(5766), 1, + ACTIONS(5786), 1, anon_sym_LBRACK2, - ACTIONS(5768), 1, + ACTIONS(5788), 1, anon_sym_AMP, - STATE(2051), 1, + ACTIONS(5790), 1, + anon_sym_map_LBRACK, + STATE(1886), 1, sym_plain_type, - STATE(4365), 1, + STATE(4537), 1, sym_reference_expression, - STATE(1904), 2, + STATE(1800), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3031), 2, + STATE(3086), 2, sym_line_comment, sym_block_comment, - STATE(1978), 4, + STATE(1920), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1980), 12, + STATE(1919), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276499,55 +280842,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102175] = 22, + [103359] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(3736), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3740), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3744), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3754), 1, anon_sym_shared, - ACTIONS(3598), 1, + ACTIONS(3758), 1, + anon_sym_chan, + ACTIONS(3760), 1, + anon_sym_thread, + ACTIONS(3762), 1, + anon_sym_atomic, + ACTIONS(5778), 1, anon_sym_LPAREN, - ACTIONS(3600), 1, + ACTIONS(5780), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5782), 1, + anon_sym_QMARK, + ACTIONS(5784), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5786), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5788), 1, anon_sym_AMP, - STATE(4423), 1, - sym_reference_expression, - STATE(4518), 1, + ACTIONS(5790), 1, + anon_sym_map_LBRACK, + STATE(1908), 1, sym_plain_type, - STATE(3032), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, + STATE(4537), 1, + sym_reference_expression, + STATE(1800), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3087), 2, + sym_line_comment, + sym_block_comment, + STATE(1920), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(1919), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276560,55 +280903,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102258] = 22, + [103442] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3797), 1, + ACTIONS(3462), 1, sym_identifier, - ACTIONS(3799), 1, - anon_sym_LPAREN, - ACTIONS(3801), 1, + ACTIONS(3466), 1, anon_sym_fn, - ACTIONS(3805), 1, + ACTIONS(3470), 1, anon_sym_struct, - ACTIONS(3815), 1, + ACTIONS(3480), 1, anon_sym_shared, - ACTIONS(3817), 1, - anon_sym_map_LBRACK, - ACTIONS(3819), 1, + ACTIONS(3484), 1, anon_sym_chan, - ACTIONS(3821), 1, + ACTIONS(3486), 1, anon_sym_thread, - ACTIONS(3823), 1, + ACTIONS(3488), 1, anon_sym_atomic, - ACTIONS(5760), 1, + ACTIONS(5732), 1, + anon_sym_LPAREN, + ACTIONS(5734), 1, anon_sym_STAR, - ACTIONS(5762), 1, + ACTIONS(5736), 1, anon_sym_QMARK, - ACTIONS(5764), 1, + ACTIONS(5738), 1, anon_sym_BANG, - ACTIONS(5766), 1, + ACTIONS(5740), 1, anon_sym_LBRACK2, - ACTIONS(5768), 1, + ACTIONS(5742), 1, anon_sym_AMP, - STATE(2003), 1, + ACTIONS(5744), 1, + anon_sym_map_LBRACK, + STATE(1257), 1, sym_plain_type, - STATE(4365), 1, + STATE(4499), 1, sym_reference_expression, - STATE(1904), 2, + STATE(1136), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3033), 2, + STATE(3088), 2, sym_line_comment, sym_block_comment, - STATE(1978), 4, + STATE(1179), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1980), 12, + STATE(1183), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276621,55 +280964,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102341] = 22, + [103525] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3797), 1, + ACTIONS(3462), 1, sym_identifier, - ACTIONS(3799), 1, - anon_sym_LPAREN, - ACTIONS(3801), 1, + ACTIONS(3466), 1, anon_sym_fn, - ACTIONS(3805), 1, + ACTIONS(3470), 1, anon_sym_struct, - ACTIONS(3815), 1, + ACTIONS(3480), 1, anon_sym_shared, - ACTIONS(3817), 1, - anon_sym_map_LBRACK, - ACTIONS(3819), 1, + ACTIONS(3484), 1, anon_sym_chan, - ACTIONS(3821), 1, + ACTIONS(3486), 1, anon_sym_thread, - ACTIONS(3823), 1, + ACTIONS(3488), 1, anon_sym_atomic, - ACTIONS(5760), 1, + ACTIONS(5732), 1, + anon_sym_LPAREN, + ACTIONS(5734), 1, anon_sym_STAR, - ACTIONS(5762), 1, + ACTIONS(5736), 1, anon_sym_QMARK, - ACTIONS(5764), 1, + ACTIONS(5738), 1, anon_sym_BANG, - ACTIONS(5766), 1, + ACTIONS(5740), 1, anon_sym_LBRACK2, - ACTIONS(5768), 1, + ACTIONS(5742), 1, anon_sym_AMP, - STATE(2100), 1, + ACTIONS(5744), 1, + anon_sym_map_LBRACK, + STATE(1195), 1, sym_plain_type, - STATE(4365), 1, + STATE(4499), 1, sym_reference_expression, - STATE(1904), 2, + STATE(1136), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3034), 2, + STATE(3089), 2, sym_line_comment, sym_block_comment, - STATE(1978), 4, + STATE(1179), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1980), 12, + STATE(1183), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276682,55 +281025,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102424] = 22, + [103608] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, + ACTIONS(3462), 1, sym_identifier, - ACTIONS(3434), 1, + ACTIONS(3466), 1, anon_sym_fn, - ACTIONS(3438), 1, + ACTIONS(3470), 1, anon_sym_struct, - ACTIONS(3448), 1, + ACTIONS(3480), 1, anon_sym_shared, - ACTIONS(3452), 1, + ACTIONS(3484), 1, anon_sym_chan, - ACTIONS(3454), 1, + ACTIONS(3486), 1, anon_sym_thread, - ACTIONS(3456), 1, + ACTIONS(3488), 1, anon_sym_atomic, - ACTIONS(5672), 1, + ACTIONS(5732), 1, anon_sym_LPAREN, - ACTIONS(5674), 1, + ACTIONS(5734), 1, anon_sym_STAR, - ACTIONS(5676), 1, + ACTIONS(5736), 1, anon_sym_QMARK, - ACTIONS(5678), 1, + ACTIONS(5738), 1, anon_sym_BANG, - ACTIONS(5680), 1, + ACTIONS(5740), 1, anon_sym_LBRACK2, - ACTIONS(5682), 1, + ACTIONS(5742), 1, anon_sym_AMP, - ACTIONS(5684), 1, + ACTIONS(5744), 1, anon_sym_map_LBRACK, - STATE(3347), 1, + STATE(1189), 1, sym_plain_type, - STATE(4356), 1, + STATE(4499), 1, sym_reference_expression, - STATE(3035), 2, - sym_line_comment, - sym_block_comment, - STATE(3302), 2, + STATE(1136), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3360), 4, + STATE(3090), 2, + sym_line_comment, + sym_block_comment, + STATE(1179), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3354), 12, + STATE(1183), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276743,55 +281086,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102507] = 22, + [103691] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(3434), 1, + ACTIONS(3827), 1, + anon_sym_LPAREN, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(3438), 1, + ACTIONS(3833), 1, anon_sym_struct, - ACTIONS(3448), 1, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(3452), 1, + ACTIONS(3845), 1, + anon_sym_map_LBRACK, + ACTIONS(3847), 1, anon_sym_chan, - ACTIONS(3454), 1, + ACTIONS(3849), 1, anon_sym_thread, - ACTIONS(3456), 1, + ACTIONS(3851), 1, anon_sym_atomic, - ACTIONS(5672), 1, - anon_sym_LPAREN, - ACTIONS(5674), 1, + ACTIONS(5806), 1, anon_sym_STAR, - ACTIONS(5676), 1, + ACTIONS(5808), 1, anon_sym_QMARK, - ACTIONS(5678), 1, + ACTIONS(5810), 1, anon_sym_BANG, - ACTIONS(5680), 1, + ACTIONS(5812), 1, anon_sym_LBRACK2, - ACTIONS(5682), 1, + ACTIONS(5814), 1, anon_sym_AMP, - ACTIONS(5684), 1, - anon_sym_map_LBRACK, - STATE(3341), 1, + STATE(2010), 1, sym_plain_type, - STATE(4356), 1, + STATE(4457), 1, sym_reference_expression, - STATE(3036), 2, - sym_line_comment, - sym_block_comment, - STATE(3302), 2, + STATE(1940), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3360), 4, + STATE(3091), 2, + sym_line_comment, + sym_block_comment, + STATE(1986), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3354), 12, + STATE(1985), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276804,55 +281147,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102590] = 22, + [103774] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3438), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3442), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3452), 1, anon_sym_shared, - ACTIONS(3598), 1, + ACTIONS(3456), 1, + anon_sym_chan, + ACTIONS(3458), 1, + anon_sym_thread, + ACTIONS(3460), 1, + anon_sym_atomic, + ACTIONS(5792), 1, anon_sym_LPAREN, - ACTIONS(3600), 1, + ACTIONS(5794), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5796), 1, + anon_sym_QMARK, + ACTIONS(5798), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5800), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5802), 1, anon_sym_AMP, - STATE(2297), 1, + ACTIONS(5804), 1, + anon_sym_map_LBRACK, + STATE(3423), 1, sym_plain_type, - STATE(4423), 1, + STATE(4406), 1, sym_reference_expression, - STATE(3037), 2, + STATE(3092), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3360), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3404), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(3401), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276865,55 +281208,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102673] = 22, + [103857] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3797), 1, + ACTIONS(3462), 1, sym_identifier, - ACTIONS(3799), 1, - anon_sym_LPAREN, - ACTIONS(3801), 1, + ACTIONS(3466), 1, anon_sym_fn, - ACTIONS(3805), 1, + ACTIONS(3470), 1, anon_sym_struct, - ACTIONS(3815), 1, + ACTIONS(3480), 1, anon_sym_shared, - ACTIONS(3817), 1, - anon_sym_map_LBRACK, - ACTIONS(3819), 1, + ACTIONS(3484), 1, anon_sym_chan, - ACTIONS(3821), 1, + ACTIONS(3486), 1, anon_sym_thread, - ACTIONS(3823), 1, + ACTIONS(3488), 1, anon_sym_atomic, - ACTIONS(5760), 1, + ACTIONS(5732), 1, + anon_sym_LPAREN, + ACTIONS(5734), 1, anon_sym_STAR, - ACTIONS(5762), 1, + ACTIONS(5736), 1, anon_sym_QMARK, - ACTIONS(5764), 1, + ACTIONS(5738), 1, anon_sym_BANG, - ACTIONS(5766), 1, + ACTIONS(5740), 1, anon_sym_LBRACK2, - ACTIONS(5768), 1, + ACTIONS(5742), 1, anon_sym_AMP, - STATE(1927), 1, + ACTIONS(5744), 1, + anon_sym_map_LBRACK, + STATE(1198), 1, sym_plain_type, - STATE(4365), 1, + STATE(4499), 1, sym_reference_expression, - STATE(1904), 2, + STATE(1136), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3038), 2, + STATE(3093), 2, sym_line_comment, sym_block_comment, - STATE(1978), 4, + STATE(1179), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1980), 12, + STATE(1183), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276926,7 +281269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102756] = 22, + [103940] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -276941,40 +281284,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(2294), 1, + STATE(4413), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3039), 2, + STATE(3094), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276987,55 +281330,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102839] = 22, + [104023] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(615), 1, + ACTIONS(619), 1, anon_sym_struct, ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3955), 1, + ACTIONS(3989), 1, sym_identifier, - ACTIONS(3957), 1, + ACTIONS(3991), 1, anon_sym_fn, - ACTIONS(3959), 1, + ACTIONS(3993), 1, anon_sym_STAR, - ACTIONS(3969), 1, + ACTIONS(4003), 1, anon_sym_shared, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_map_LBRACK, - ACTIONS(3973), 1, + ACTIONS(4007), 1, anon_sym_chan, - ACTIONS(3975), 1, + ACTIONS(4009), 1, anon_sym_thread, - ACTIONS(3977), 1, + ACTIONS(4011), 1, anon_sym_atomic, - ACTIONS(5770), 1, + ACTIONS(5756), 1, anon_sym_QMARK, - ACTIONS(5772), 1, + ACTIONS(5758), 1, anon_sym_BANG, - ACTIONS(5774), 1, + ACTIONS(5760), 1, anon_sym_LBRACK2, - ACTIONS(5776), 1, + ACTIONS(5762), 1, anon_sym_AMP, - STATE(2374), 1, + STATE(2385), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2284), 2, + STATE(2320), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3040), 2, + STATE(3095), 2, sym_line_comment, sym_block_comment, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277048,55 +281391,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102922] = 22, + [104106] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, + ACTIONS(3610), 1, sym_identifier, - ACTIONS(3434), 1, + ACTIONS(3614), 1, anon_sym_fn, - ACTIONS(3438), 1, + ACTIONS(3618), 1, anon_sym_struct, - ACTIONS(3448), 1, + ACTIONS(3628), 1, anon_sym_shared, - ACTIONS(3452), 1, + ACTIONS(3632), 1, anon_sym_chan, - ACTIONS(3454), 1, + ACTIONS(3634), 1, anon_sym_thread, - ACTIONS(3456), 1, + ACTIONS(3636), 1, anon_sym_atomic, - ACTIONS(5672), 1, + ACTIONS(5640), 1, anon_sym_LPAREN, - ACTIONS(5674), 1, + ACTIONS(5642), 1, anon_sym_STAR, - ACTIONS(5676), 1, + ACTIONS(5644), 1, anon_sym_QMARK, - ACTIONS(5678), 1, + ACTIONS(5646), 1, anon_sym_BANG, - ACTIONS(5680), 1, + ACTIONS(5648), 1, anon_sym_LBRACK2, - ACTIONS(5682), 1, + ACTIONS(5650), 1, anon_sym_AMP, - ACTIONS(5684), 1, + ACTIONS(5652), 1, anon_sym_map_LBRACK, - STATE(3358), 1, + STATE(1435), 1, sym_plain_type, - STATE(4356), 1, + STATE(4415), 1, sym_reference_expression, - STATE(3041), 2, - sym_line_comment, - sym_block_comment, - STATE(3302), 2, + STATE(1405), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3360), 4, + STATE(3096), 2, + sym_line_comment, + sym_block_comment, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3354), 12, + STATE(1454), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277109,116 +281452,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103005] = 22, + [104189] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3600), 1, - anon_sym_STAR, - ACTIONS(5328), 1, - anon_sym_BANG, - ACTIONS(5330), 1, - anon_sym_LBRACK2, - ACTIONS(5332), 1, - anon_sym_AMP, - STATE(4402), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(3042), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2290), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2292), 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, - [103088] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, + ACTIONS(3688), 1, anon_sym_chan, - ACTIONS(101), 1, + ACTIONS(3690), 1, anon_sym_thread, - ACTIONS(103), 1, + ACTIONS(3692), 1, anon_sym_atomic, - ACTIONS(605), 1, - sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(623), 1, - anon_sym_shared, - ACTIONS(3598), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(3600), 1, + ACTIONS(5720), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5722), 1, + anon_sym_QMARK, + ACTIONS(5724), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5726), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5728), 1, anon_sym_AMP, - STATE(2293), 1, + ACTIONS(5730), 1, + anon_sym_map_LBRACK, + STATE(1681), 1, sym_plain_type, - STATE(4423), 1, + STATE(4397), 1, sym_reference_expression, - STATE(3043), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3097), 2, + sym_line_comment, + sym_block_comment, + STATE(1670), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(1671), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277231,55 +281513,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103171] = 22, + [104272] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3955), 1, + ACTIONS(3462), 1, sym_identifier, - ACTIONS(3957), 1, + ACTIONS(3466), 1, anon_sym_fn, - ACTIONS(3959), 1, - anon_sym_STAR, - ACTIONS(3969), 1, + ACTIONS(3470), 1, + anon_sym_struct, + ACTIONS(3480), 1, anon_sym_shared, - ACTIONS(3971), 1, - anon_sym_map_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3484), 1, anon_sym_chan, - ACTIONS(3975), 1, + ACTIONS(3486), 1, anon_sym_thread, - ACTIONS(3977), 1, + ACTIONS(3488), 1, anon_sym_atomic, - ACTIONS(5770), 1, + ACTIONS(5732), 1, + anon_sym_LPAREN, + ACTIONS(5734), 1, + anon_sym_STAR, + ACTIONS(5736), 1, anon_sym_QMARK, - ACTIONS(5772), 1, + ACTIONS(5738), 1, anon_sym_BANG, - ACTIONS(5774), 1, + ACTIONS(5740), 1, anon_sym_LBRACK2, - ACTIONS(5776), 1, + ACTIONS(5742), 1, anon_sym_AMP, - STATE(2413), 1, + ACTIONS(5744), 1, + anon_sym_map_LBRACK, + STATE(1210), 1, sym_plain_type, - STATE(4423), 1, + STATE(4499), 1, sym_reference_expression, - STATE(2284), 2, + STATE(1136), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3044), 2, + STATE(3098), 2, sym_line_comment, sym_block_comment, - STATE(2290), 4, + STATE(1179), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(1183), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277292,55 +281574,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103254] = 22, + [104355] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4533), 1, - sym_identifier, - ACTIONS(4535), 1, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3989), 1, + sym_identifier, + ACTIONS(3991), 1, anon_sym_fn, - ACTIONS(4539), 1, + ACTIONS(3993), 1, anon_sym_STAR, - ACTIONS(4541), 1, - anon_sym_struct, - ACTIONS(4551), 1, + ACTIONS(4003), 1, anon_sym_shared, - ACTIONS(4553), 1, + ACTIONS(4005), 1, anon_sym_map_LBRACK, - ACTIONS(4555), 1, + ACTIONS(4007), 1, anon_sym_chan, - ACTIONS(4557), 1, + ACTIONS(4009), 1, anon_sym_thread, - ACTIONS(4559), 1, + ACTIONS(4011), 1, anon_sym_atomic, - ACTIONS(5778), 1, + ACTIONS(5756), 1, anon_sym_QMARK, - ACTIONS(5780), 1, + ACTIONS(5758), 1, anon_sym_BANG, - ACTIONS(5782), 1, + ACTIONS(5760), 1, anon_sym_LBRACK2, - ACTIONS(5784), 1, + ACTIONS(5762), 1, anon_sym_AMP, - STATE(2513), 1, + STATE(2423), 1, sym_plain_type, - STATE(4316), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2611), 2, + STATE(2320), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3045), 2, + STATE(3099), 2, sym_line_comment, sym_block_comment, - STATE(2692), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2693), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277353,7 +281635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103337] = 22, + [104438] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -277368,40 +281650,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(4423), 1, - sym_reference_expression, - STATE(4511), 1, + STATE(4490), 1, sym_plain_type, - STATE(3046), 2, + STATE(4596), 1, + sym_reference_expression, + STATE(3100), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277414,55 +281696,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103420] = 22, + [104521] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3566), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3568), 1, - anon_sym_LPAREN, - ACTIONS(3570), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3572), 1, - anon_sym_STAR, - ACTIONS(3574), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3584), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3586), 1, - anon_sym_map_LBRACK, - ACTIONS(3588), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(3590), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(3592), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5724), 1, + ACTIONS(5816), 1, + anon_sym_LPAREN, + ACTIONS(5818), 1, + anon_sym_STAR, + ACTIONS(5820), 1, anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(5822), 1, anon_sym_BANG, - ACTIONS(5728), 1, + ACTIONS(5824), 1, anon_sym_LBRACK2, - ACTIONS(5730), 1, + ACTIONS(5826), 1, anon_sym_AMP, - STATE(1360), 1, + ACTIONS(5828), 1, + anon_sym_map_LBRACK, + STATE(481), 1, sym_plain_type, - STATE(4323), 1, + STATE(4468), 1, sym_reference_expression, - STATE(1277), 2, + STATE(287), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3047), 2, + STATE(3101), 2, sym_line_comment, sym_block_comment, - STATE(1296), 4, + STATE(444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1299), 12, + STATE(446), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277475,55 +281757,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103503] = 22, + [104604] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3700), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(3708), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3718), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(3722), 1, + ACTIONS(3688), 1, anon_sym_chan, - ACTIONS(3724), 1, + ACTIONS(3690), 1, anon_sym_thread, - ACTIONS(3726), 1, + ACTIONS(3692), 1, anon_sym_atomic, - ACTIONS(5700), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(5702), 1, + ACTIONS(5720), 1, anon_sym_STAR, - ACTIONS(5704), 1, + ACTIONS(5722), 1, anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5724), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5726), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5728), 1, anon_sym_AMP, - ACTIONS(5712), 1, + ACTIONS(5730), 1, anon_sym_map_LBRACK, - STATE(1801), 1, + STATE(1692), 1, sym_plain_type, - STATE(4449), 1, + STATE(4397), 1, sym_reference_expression, - STATE(1760), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3048), 2, + STATE(3102), 2, sym_line_comment, sym_block_comment, - STATE(1831), 4, + STATE(1670), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1830), 12, + STATE(1671), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277536,55 +281818,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103586] = 22, + [104687] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(3642), 1, - anon_sym_struct, - ACTIONS(5490), 1, + ACTIONS(3438), 1, anon_sym_fn, - ACTIONS(5502), 1, + ACTIONS(3442), 1, + anon_sym_struct, + ACTIONS(3452), 1, anon_sym_shared, - ACTIONS(5506), 1, + ACTIONS(3456), 1, anon_sym_chan, - ACTIONS(5508), 1, + ACTIONS(3458), 1, anon_sym_thread, - ACTIONS(5510), 1, + ACTIONS(3460), 1, anon_sym_atomic, - ACTIONS(5578), 1, + ACTIONS(5792), 1, anon_sym_LPAREN, - ACTIONS(5582), 1, + ACTIONS(5794), 1, anon_sym_STAR, - ACTIONS(5584), 1, + ACTIONS(5796), 1, anon_sym_QMARK, - ACTIONS(5586), 1, + ACTIONS(5798), 1, anon_sym_BANG, - ACTIONS(5588), 1, + ACTIONS(5800), 1, anon_sym_LBRACK2, - ACTIONS(5590), 1, + ACTIONS(5802), 1, anon_sym_AMP, - ACTIONS(5592), 1, + ACTIONS(5804), 1, anon_sym_map_LBRACK, - STATE(1628), 1, + STATE(3406), 1, sym_plain_type, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, - STATE(3049), 2, + STATE(3103), 2, sym_line_comment, sym_block_comment, - STATE(3302), 2, + STATE(3360), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1658), 4, + STATE(3404), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1657), 12, + STATE(3401), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277597,55 +281879,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103669] = 22, + [104770] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3700), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(3708), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3718), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(3722), 1, + ACTIONS(3688), 1, anon_sym_chan, - ACTIONS(3724), 1, + ACTIONS(3690), 1, anon_sym_thread, - ACTIONS(3726), 1, + ACTIONS(3692), 1, anon_sym_atomic, - ACTIONS(5700), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(5702), 1, + ACTIONS(5720), 1, anon_sym_STAR, - ACTIONS(5704), 1, + ACTIONS(5722), 1, anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5724), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5726), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5728), 1, anon_sym_AMP, - ACTIONS(5712), 1, + ACTIONS(5730), 1, anon_sym_map_LBRACK, - STATE(1798), 1, + STATE(1685), 1, sym_plain_type, - STATE(4449), 1, + STATE(4397), 1, sym_reference_expression, - STATE(1760), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3050), 2, + STATE(3104), 2, sym_line_comment, sym_block_comment, - STATE(1831), 4, + STATE(1670), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1830), 12, + STATE(1671), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277658,55 +281940,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103752] = 22, + [104853] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3434), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3438), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3448), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3452), 1, - anon_sym_chan, - ACTIONS(3454), 1, - anon_sym_thread, - ACTIONS(3456), 1, - anon_sym_atomic, - ACTIONS(5672), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5674), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5676), 1, - anon_sym_QMARK, - ACTIONS(5678), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5680), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5682), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5684), 1, - anon_sym_map_LBRACK, - STATE(3355), 1, - sym_plain_type, - STATE(4356), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3051), 2, + STATE(4667), 1, + sym_plain_type, + STATE(3105), 2, sym_line_comment, sym_block_comment, - STATE(3302), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3360), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3354), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277719,55 +282001,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103835] = 22, + [104936] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3924), 1, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(3928), 1, - anon_sym_fn, - ACTIONS(3932), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3942), 1, + ACTIONS(5518), 1, + anon_sym_fn, + ACTIONS(5530), 1, anon_sym_shared, - ACTIONS(3946), 1, + ACTIONS(5534), 1, anon_sym_chan, - ACTIONS(3948), 1, + ACTIONS(5536), 1, anon_sym_thread, - ACTIONS(3950), 1, + ACTIONS(5538), 1, anon_sym_atomic, - ACTIONS(5732), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(5734), 1, + ACTIONS(5628), 1, anon_sym_STAR, - ACTIONS(5736), 1, + ACTIONS(5630), 1, anon_sym_QMARK, - ACTIONS(5738), 1, + ACTIONS(5632), 1, anon_sym_BANG, - ACTIONS(5740), 1, + ACTIONS(5634), 1, anon_sym_LBRACK2, - ACTIONS(5742), 1, + ACTIONS(5636), 1, anon_sym_AMP, - ACTIONS(5744), 1, + ACTIONS(5638), 1, anon_sym_map_LBRACK, - STATE(2248), 1, + STATE(1700), 1, sym_plain_type, - STATE(4466), 1, + STATE(4406), 1, sym_reference_expression, - STATE(2130), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3052), 2, + STATE(3106), 2, sym_line_comment, sym_block_comment, - STATE(2178), 4, + STATE(3360), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(1670), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2179), 12, + STATE(1671), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277780,55 +282062,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103918] = 22, + [105019] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3598), 1, + ACTIONS(589), 1, + anon_sym_chan, + ACTIONS(591), 1, + anon_sym_thread, + ACTIONS(593), 1, + anon_sym_atomic, + ACTIONS(5816), 1, anon_sym_LPAREN, - ACTIONS(3600), 1, + ACTIONS(5818), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5820), 1, + anon_sym_QMARK, + ACTIONS(5822), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5824), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5826), 1, anon_sym_AMP, - STATE(4283), 1, + ACTIONS(5828), 1, + anon_sym_map_LBRACK, + STATE(458), 1, sym_plain_type, - STATE(4423), 1, + STATE(4468), 1, sym_reference_expression, - STATE(3053), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, + STATE(287), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3107), 2, + sym_line_comment, + sym_block_comment, + STATE(444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(446), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277841,55 +282123,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104001] = 22, + [105102] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(565), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(585), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(589), 1, - anon_sym_chan, - ACTIONS(591), 1, - anon_sym_thread, - ACTIONS(593), 1, - anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5788), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5790), 1, - anon_sym_QMARK, - ACTIONS(5792), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5794), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5796), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5798), 1, - anon_sym_map_LBRACK, - STATE(486), 1, - sym_plain_type, - STATE(4392), 1, + STATE(4596), 1, sym_reference_expression, - STATE(267), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3054), 2, + STATE(4633), 1, + sym_plain_type, + STATE(3108), 2, sym_line_comment, sym_block_comment, - STATE(359), 4, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(358), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277902,55 +282184,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104084] = 22, + [105185] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3700), 1, + ACTIONS(1318), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(1322), 1, anon_sym_fn, - ACTIONS(3708), 1, + ACTIONS(1326), 1, anon_sym_struct, - ACTIONS(3718), 1, + ACTIONS(1336), 1, anon_sym_shared, - ACTIONS(3722), 1, + ACTIONS(1340), 1, anon_sym_chan, - ACTIONS(3724), 1, + ACTIONS(1342), 1, anon_sym_thread, - ACTIONS(3726), 1, + ACTIONS(1344), 1, anon_sym_atomic, - ACTIONS(5700), 1, + ACTIONS(5764), 1, anon_sym_LPAREN, - ACTIONS(5702), 1, + ACTIONS(5766), 1, anon_sym_STAR, - ACTIONS(5704), 1, + ACTIONS(5768), 1, anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5770), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5772), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5774), 1, anon_sym_AMP, - ACTIONS(5712), 1, + ACTIONS(5776), 1, anon_sym_map_LBRACK, - STATE(1871), 1, + STATE(1088), 1, sym_plain_type, - STATE(4449), 1, + STATE(4440), 1, sym_reference_expression, - STATE(1760), 2, + STATE(986), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3055), 2, + STATE(3109), 2, sym_line_comment, sym_block_comment, - STATE(1831), 4, + STATE(1087), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1830), 12, + STATE(1071), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277963,55 +282245,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104167] = 22, + [105268] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3700), 1, + ACTIONS(3736), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3740), 1, anon_sym_fn, - ACTIONS(3708), 1, + ACTIONS(3744), 1, anon_sym_struct, - ACTIONS(3718), 1, + ACTIONS(3754), 1, anon_sym_shared, - ACTIONS(3722), 1, + ACTIONS(3758), 1, anon_sym_chan, - ACTIONS(3724), 1, + ACTIONS(3760), 1, anon_sym_thread, - ACTIONS(3726), 1, + ACTIONS(3762), 1, anon_sym_atomic, - ACTIONS(5700), 1, + ACTIONS(5778), 1, anon_sym_LPAREN, - ACTIONS(5702), 1, + ACTIONS(5780), 1, anon_sym_STAR, - ACTIONS(5704), 1, + ACTIONS(5782), 1, anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5784), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5786), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5788), 1, anon_sym_AMP, - ACTIONS(5712), 1, + ACTIONS(5790), 1, anon_sym_map_LBRACK, - STATE(1783), 1, + STATE(1885), 1, sym_plain_type, - STATE(4449), 1, + STATE(4537), 1, sym_reference_expression, - STATE(1760), 2, + STATE(1800), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3056), 2, + STATE(3110), 2, sym_line_comment, sym_block_comment, - STATE(1831), 4, + STATE(1920), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1830), 12, + STATE(1919), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278024,55 +282306,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104250] = 22, + [105351] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, + ACTIONS(3462), 1, sym_identifier, - ACTIONS(3434), 1, + ACTIONS(3466), 1, anon_sym_fn, - ACTIONS(3438), 1, + ACTIONS(3470), 1, anon_sym_struct, - ACTIONS(3448), 1, + ACTIONS(3480), 1, anon_sym_shared, - ACTIONS(3452), 1, + ACTIONS(3484), 1, anon_sym_chan, - ACTIONS(3454), 1, + ACTIONS(3486), 1, anon_sym_thread, - ACTIONS(3456), 1, + ACTIONS(3488), 1, anon_sym_atomic, - ACTIONS(5672), 1, + ACTIONS(5732), 1, anon_sym_LPAREN, - ACTIONS(5674), 1, + ACTIONS(5734), 1, anon_sym_STAR, - ACTIONS(5676), 1, + ACTIONS(5736), 1, anon_sym_QMARK, - ACTIONS(5678), 1, + ACTIONS(5738), 1, anon_sym_BANG, - ACTIONS(5680), 1, + ACTIONS(5740), 1, anon_sym_LBRACK2, - ACTIONS(5682), 1, + ACTIONS(5742), 1, anon_sym_AMP, - ACTIONS(5684), 1, + ACTIONS(5744), 1, anon_sym_map_LBRACK, - STATE(3351), 1, + STATE(1211), 1, sym_plain_type, - STATE(4356), 1, + STATE(4499), 1, sym_reference_expression, - STATE(3057), 2, - sym_line_comment, - sym_block_comment, - STATE(3302), 2, + STATE(1136), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3360), 4, + STATE(3111), 2, + sym_line_comment, + sym_block_comment, + STATE(1179), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3354), 12, + STATE(1183), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278085,55 +282367,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104333] = 22, + [105434] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3434), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3438), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3448), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3452), 1, - anon_sym_chan, - ACTIONS(3454), 1, - anon_sym_thread, - ACTIONS(3456), 1, - anon_sym_atomic, - ACTIONS(5672), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5674), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5676), 1, - anon_sym_QMARK, - ACTIONS(5678), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5680), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5682), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5684), 1, - anon_sym_map_LBRACK, - STATE(3361), 1, + STATE(4510), 1, sym_plain_type, - STATE(4356), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3058), 2, + STATE(3112), 2, sym_line_comment, sym_block_comment, - STATE(3302), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3360), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3354), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278146,55 +282428,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104416] = 22, + [105517] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, + ACTIONS(4070), 1, sym_identifier, - ACTIONS(3642), 1, - anon_sym_struct, - ACTIONS(5490), 1, + ACTIONS(4074), 1, anon_sym_fn, - ACTIONS(5502), 1, + ACTIONS(4078), 1, + anon_sym_struct, + ACTIONS(4088), 1, anon_sym_shared, - ACTIONS(5506), 1, + ACTIONS(4092), 1, anon_sym_chan, - ACTIONS(5508), 1, + ACTIONS(4094), 1, anon_sym_thread, - ACTIONS(5510), 1, + ACTIONS(4096), 1, anon_sym_atomic, - ACTIONS(5578), 1, + ACTIONS(5830), 1, anon_sym_LPAREN, - ACTIONS(5582), 1, + ACTIONS(5832), 1, anon_sym_STAR, - ACTIONS(5584), 1, + ACTIONS(5834), 1, anon_sym_QMARK, - ACTIONS(5586), 1, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5588), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5590), 1, + ACTIONS(5840), 1, anon_sym_AMP, - ACTIONS(5592), 1, + ACTIONS(5842), 1, anon_sym_map_LBRACK, - STATE(1635), 1, + STATE(2546), 1, sym_plain_type, - STATE(4356), 1, + STATE(4478), 1, sym_reference_expression, - STATE(3059), 2, - sym_line_comment, - sym_block_comment, - STATE(3302), 2, + STATE(2459), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1658), 4, + STATE(3113), 2, + sym_line_comment, + sym_block_comment, + STATE(2595), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1657), 12, + STATE(2596), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278207,7 +282489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104499] = 22, + [105600] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -278222,40 +282504,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(4423), 1, - sym_reference_expression, - STATE(4513), 1, + STATE(3928), 1, sym_plain_type, - STATE(3060), 2, + STATE(4596), 1, + sym_reference_expression, + STATE(3114), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278268,55 +282550,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104582] = 22, + [105683] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, + ACTIONS(3736), 1, sym_identifier, - ACTIONS(3434), 1, + ACTIONS(3740), 1, anon_sym_fn, - ACTIONS(3438), 1, + ACTIONS(3744), 1, anon_sym_struct, - ACTIONS(3448), 1, + ACTIONS(3754), 1, anon_sym_shared, - ACTIONS(3452), 1, + ACTIONS(3758), 1, anon_sym_chan, - ACTIONS(3454), 1, + ACTIONS(3760), 1, anon_sym_thread, - ACTIONS(3456), 1, + ACTIONS(3762), 1, anon_sym_atomic, - ACTIONS(5672), 1, + ACTIONS(5778), 1, anon_sym_LPAREN, - ACTIONS(5674), 1, + ACTIONS(5780), 1, anon_sym_STAR, - ACTIONS(5676), 1, + ACTIONS(5782), 1, anon_sym_QMARK, - ACTIONS(5678), 1, + ACTIONS(5784), 1, anon_sym_BANG, - ACTIONS(5680), 1, + ACTIONS(5786), 1, anon_sym_LBRACK2, - ACTIONS(5682), 1, + ACTIONS(5788), 1, anon_sym_AMP, - ACTIONS(5684), 1, + ACTIONS(5790), 1, anon_sym_map_LBRACK, - STATE(3339), 1, + STATE(1862), 1, sym_plain_type, - STATE(4356), 1, + STATE(4537), 1, sym_reference_expression, - STATE(3061), 2, - sym_line_comment, - sym_block_comment, - STATE(3302), 2, + STATE(1800), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3360), 4, + STATE(3115), 2, + sym_line_comment, + sym_block_comment, + STATE(1920), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3354), 12, + STATE(1919), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278329,55 +282611,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104665] = 22, + [105766] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3460), 1, + ACTIONS(3462), 1, sym_identifier, - ACTIONS(3464), 1, + ACTIONS(3466), 1, anon_sym_fn, - ACTIONS(3468), 1, + ACTIONS(3470), 1, anon_sym_struct, - ACTIONS(3478), 1, + ACTIONS(3480), 1, anon_sym_shared, - ACTIONS(3482), 1, - anon_sym_chan, ACTIONS(3484), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(3486), 1, + anon_sym_thread, + ACTIONS(3488), 1, anon_sym_atomic, - ACTIONS(5686), 1, + ACTIONS(5732), 1, anon_sym_LPAREN, - ACTIONS(5688), 1, + ACTIONS(5734), 1, anon_sym_STAR, - ACTIONS(5690), 1, + ACTIONS(5736), 1, anon_sym_QMARK, - ACTIONS(5692), 1, + ACTIONS(5738), 1, anon_sym_BANG, - ACTIONS(5694), 1, + ACTIONS(5740), 1, anon_sym_LBRACK2, - ACTIONS(5696), 1, + ACTIONS(5742), 1, anon_sym_AMP, - ACTIONS(5698), 1, + ACTIONS(5744), 1, anon_sym_map_LBRACK, - STATE(1254), 1, + STATE(1152), 1, sym_plain_type, - STATE(4407), 1, + STATE(4499), 1, sym_reference_expression, STATE(1136), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3062), 2, + STATE(3116), 2, sym_line_comment, sym_block_comment, - STATE(1171), 4, + STATE(1179), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1169), 12, + STATE(1183), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278390,55 +282672,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104748] = 22, + [105849] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(3598), 1, + ACTIONS(3688), 1, + anon_sym_chan, + ACTIONS(3690), 1, + anon_sym_thread, + ACTIONS(3692), 1, + anon_sym_atomic, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(3600), 1, + ACTIONS(5720), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5722), 1, + anon_sym_QMARK, + ACTIONS(5724), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5726), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5728), 1, anon_sym_AMP, - STATE(4423), 1, - sym_reference_expression, - STATE(4563), 1, + ACTIONS(5730), 1, + anon_sym_map_LBRACK, + STATE(1683), 1, sym_plain_type, - STATE(3063), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, + STATE(4397), 1, + sym_reference_expression, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3117), 2, + sym_line_comment, + sym_block_comment, + STATE(1670), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(1671), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278451,55 +282733,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104831] = 22, + [105932] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, + ACTIONS(4070), 1, sym_identifier, - ACTIONS(3434), 1, + ACTIONS(4074), 1, anon_sym_fn, - ACTIONS(3438), 1, + ACTIONS(4078), 1, anon_sym_struct, - ACTIONS(3448), 1, + ACTIONS(4088), 1, anon_sym_shared, - ACTIONS(3452), 1, + ACTIONS(4092), 1, anon_sym_chan, - ACTIONS(3454), 1, + ACTIONS(4094), 1, anon_sym_thread, - ACTIONS(3456), 1, + ACTIONS(4096), 1, anon_sym_atomic, - ACTIONS(5672), 1, + ACTIONS(5830), 1, anon_sym_LPAREN, - ACTIONS(5674), 1, + ACTIONS(5832), 1, anon_sym_STAR, - ACTIONS(5676), 1, + ACTIONS(5834), 1, anon_sym_QMARK, - ACTIONS(5678), 1, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5680), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5682), 1, + ACTIONS(5840), 1, anon_sym_AMP, - ACTIONS(5684), 1, + ACTIONS(5842), 1, anon_sym_map_LBRACK, - STATE(3356), 1, + STATE(2577), 1, sym_plain_type, - STATE(4356), 1, + STATE(4478), 1, sym_reference_expression, - STATE(3064), 2, - sym_line_comment, - sym_block_comment, - STATE(3302), 2, + STATE(2459), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3360), 4, + STATE(3118), 2, + sym_line_comment, + sym_block_comment, + STATE(2595), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3354), 12, + STATE(2596), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278512,55 +282794,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104914] = 22, + [106015] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3748), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(3750), 1, - anon_sym_LPAREN, - ACTIONS(3752), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(3756), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3766), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(3768), 1, - anon_sym_map_LBRACK, - ACTIONS(3770), 1, + ACTIONS(3688), 1, anon_sym_chan, - ACTIONS(3772), 1, + ACTIONS(3690), 1, anon_sym_thread, - ACTIONS(3774), 1, + ACTIONS(3692), 1, anon_sym_atomic, - ACTIONS(5714), 1, + ACTIONS(5624), 1, + anon_sym_LPAREN, + ACTIONS(5720), 1, anon_sym_STAR, - ACTIONS(5716), 1, + ACTIONS(5722), 1, anon_sym_QMARK, - ACTIONS(5718), 1, + ACTIONS(5724), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5726), 1, anon_sym_LBRACK2, - ACTIONS(5722), 1, + ACTIONS(5728), 1, anon_sym_AMP, - STATE(2075), 1, + ACTIONS(5730), 1, + anon_sym_map_LBRACK, + STATE(1682), 1, sym_plain_type, - STATE(4428), 1, + STATE(4397), 1, sym_reference_expression, - STATE(1899), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3065), 2, + STATE(3119), 2, sym_line_comment, sym_block_comment, - STATE(1918), 4, + STATE(1670), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1996), 12, + STATE(1671), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278573,55 +282855,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104997] = 22, + [106098] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(4070), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(4074), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(4078), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(4088), 1, anon_sym_shared, - ACTIONS(3598), 1, + ACTIONS(4092), 1, + anon_sym_chan, + ACTIONS(4094), 1, + anon_sym_thread, + ACTIONS(4096), 1, + anon_sym_atomic, + ACTIONS(5830), 1, anon_sym_LPAREN, - ACTIONS(3600), 1, + ACTIONS(5832), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5834), 1, + anon_sym_QMARK, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5840), 1, anon_sym_AMP, - STATE(3861), 1, + ACTIONS(5842), 1, + anon_sym_map_LBRACK, + STATE(2581), 1, sym_plain_type, - STATE(4423), 1, + STATE(4478), 1, sym_reference_expression, - STATE(3066), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, + STATE(2459), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3120), 2, + sym_line_comment, + sym_block_comment, + STATE(2595), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2596), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278634,55 +282916,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105080] = 22, + [106181] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, + ACTIONS(3736), 1, sym_identifier, - ACTIONS(3610), 1, + ACTIONS(3740), 1, anon_sym_fn, - ACTIONS(3614), 1, + ACTIONS(3744), 1, anon_sym_struct, - ACTIONS(3624), 1, + ACTIONS(3754), 1, anon_sym_shared, - ACTIONS(3628), 1, + ACTIONS(3758), 1, anon_sym_chan, - ACTIONS(3630), 1, + ACTIONS(3760), 1, anon_sym_thread, - ACTIONS(3632), 1, + ACTIONS(3762), 1, anon_sym_atomic, - ACTIONS(5594), 1, + ACTIONS(5778), 1, anon_sym_LPAREN, - ACTIONS(5598), 1, + ACTIONS(5780), 1, anon_sym_STAR, - ACTIONS(5600), 1, + ACTIONS(5782), 1, anon_sym_QMARK, - ACTIONS(5602), 1, + ACTIONS(5784), 1, anon_sym_BANG, - ACTIONS(5604), 1, + ACTIONS(5786), 1, anon_sym_LBRACK2, - ACTIONS(5606), 1, + ACTIONS(5788), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5790), 1, anon_sym_map_LBRACK, - STATE(1438), 1, + STATE(1877), 1, sym_plain_type, - STATE(4472), 1, + STATE(4537), 1, sym_reference_expression, - STATE(1404), 2, + STATE(1800), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3067), 2, + STATE(3121), 2, sym_line_comment, sym_block_comment, - STATE(1437), 4, + STATE(1920), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1440), 12, + STATE(1919), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278695,55 +282977,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105163] = 22, + [106264] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, + ACTIONS(3736), 1, sym_identifier, - ACTIONS(3610), 1, + ACTIONS(3740), 1, anon_sym_fn, - ACTIONS(3614), 1, + ACTIONS(3744), 1, anon_sym_struct, - ACTIONS(3624), 1, + ACTIONS(3754), 1, anon_sym_shared, - ACTIONS(3628), 1, + ACTIONS(3758), 1, anon_sym_chan, - ACTIONS(3630), 1, + ACTIONS(3760), 1, anon_sym_thread, - ACTIONS(3632), 1, + ACTIONS(3762), 1, anon_sym_atomic, - ACTIONS(5594), 1, + ACTIONS(5778), 1, anon_sym_LPAREN, - ACTIONS(5598), 1, + ACTIONS(5780), 1, anon_sym_STAR, - ACTIONS(5600), 1, + ACTIONS(5782), 1, anon_sym_QMARK, - ACTIONS(5602), 1, + ACTIONS(5784), 1, anon_sym_BANG, - ACTIONS(5604), 1, + ACTIONS(5786), 1, anon_sym_LBRACK2, - ACTIONS(5606), 1, + ACTIONS(5788), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5790), 1, anon_sym_map_LBRACK, - STATE(1420), 1, + STATE(1874), 1, sym_plain_type, - STATE(4472), 1, + STATE(4537), 1, sym_reference_expression, - STATE(1404), 2, + STATE(1800), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3068), 2, + STATE(3122), 2, sym_line_comment, sym_block_comment, - STATE(1437), 4, + STATE(1920), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1440), 12, + STATE(1919), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278756,55 +283038,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105246] = 22, + [106347] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3797), 1, - sym_identifier, - ACTIONS(3799), 1, - anon_sym_LPAREN, - ACTIONS(3801), 1, - anon_sym_fn, - ACTIONS(3805), 1, - anon_sym_struct, - ACTIONS(3815), 1, - anon_sym_shared, - ACTIONS(3817), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(3819), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(3821), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(3823), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5760), 1, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5762), 1, - anon_sym_QMARK, - ACTIONS(5764), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5766), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5768), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(1917), 1, + STATE(4589), 1, sym_plain_type, - STATE(4365), 1, + STATE(4596), 1, sym_reference_expression, - STATE(1904), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3069), 2, + STATE(3123), 2, sym_line_comment, sym_block_comment, - STATE(1978), 4, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1980), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278817,7 +283099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105329] = 22, + [106430] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -278832,40 +283114,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(4423), 1, - sym_reference_expression, - STATE(4574), 1, + STATE(4223), 1, sym_plain_type, - STATE(3070), 2, + STATE(4596), 1, + sym_reference_expression, + STATE(3124), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278878,7 +283160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105412] = 22, + [106513] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -278897,36 +283179,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5816), 1, anon_sym_LPAREN, - ACTIONS(5788), 1, + ACTIONS(5818), 1, anon_sym_STAR, - ACTIONS(5790), 1, + ACTIONS(5820), 1, anon_sym_QMARK, - ACTIONS(5792), 1, + ACTIONS(5822), 1, anon_sym_BANG, - ACTIONS(5794), 1, + ACTIONS(5824), 1, anon_sym_LBRACK2, - ACTIONS(5796), 1, + ACTIONS(5826), 1, anon_sym_AMP, - ACTIONS(5798), 1, + ACTIONS(5828), 1, anon_sym_map_LBRACK, - STATE(366), 1, + STATE(357), 1, sym_plain_type, - STATE(4392), 1, + STATE(4468), 1, sym_reference_expression, - STATE(267), 2, + STATE(287), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3071), 2, + STATE(3125), 2, sym_line_comment, sym_block_comment, - STATE(359), 4, + STATE(444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(358), 12, + STATE(446), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278939,55 +283221,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105495] = 22, + [106596] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4533), 1, + ACTIONS(3736), 1, sym_identifier, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3740), 1, anon_sym_fn, - ACTIONS(4539), 1, - anon_sym_STAR, - ACTIONS(4541), 1, + ACTIONS(3744), 1, anon_sym_struct, - ACTIONS(4551), 1, + ACTIONS(3754), 1, anon_sym_shared, - ACTIONS(4553), 1, - anon_sym_map_LBRACK, - ACTIONS(4555), 1, + ACTIONS(3758), 1, anon_sym_chan, - ACTIONS(4557), 1, + ACTIONS(3760), 1, anon_sym_thread, - ACTIONS(4559), 1, + ACTIONS(3762), 1, anon_sym_atomic, ACTIONS(5778), 1, - anon_sym_QMARK, + anon_sym_LPAREN, ACTIONS(5780), 1, - anon_sym_BANG, + anon_sym_STAR, ACTIONS(5782), 1, - anon_sym_LBRACK2, + anon_sym_QMARK, ACTIONS(5784), 1, + anon_sym_BANG, + ACTIONS(5786), 1, + anon_sym_LBRACK2, + ACTIONS(5788), 1, anon_sym_AMP, - STATE(2707), 1, + ACTIONS(5790), 1, + anon_sym_map_LBRACK, + STATE(1855), 1, sym_plain_type, - STATE(4316), 1, + STATE(4537), 1, sym_reference_expression, - STATE(2611), 2, + STATE(1800), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3072), 2, + STATE(3126), 2, sym_line_comment, sym_block_comment, - STATE(2692), 4, + STATE(1920), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2693), 12, + STATE(1919), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279000,55 +283282,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105578] = 22, + [106679] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(565), 1, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(585), 1, + ACTIONS(5518), 1, + anon_sym_fn, + ACTIONS(5530), 1, anon_sym_shared, - ACTIONS(589), 1, + ACTIONS(5534), 1, anon_sym_chan, - ACTIONS(591), 1, + ACTIONS(5536), 1, anon_sym_thread, - ACTIONS(593), 1, + ACTIONS(5538), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(5788), 1, + ACTIONS(5628), 1, anon_sym_STAR, - ACTIONS(5790), 1, + ACTIONS(5630), 1, anon_sym_QMARK, - ACTIONS(5792), 1, + ACTIONS(5632), 1, anon_sym_BANG, - ACTIONS(5794), 1, + ACTIONS(5634), 1, anon_sym_LBRACK2, - ACTIONS(5796), 1, + ACTIONS(5636), 1, anon_sym_AMP, - ACTIONS(5798), 1, + ACTIONS(5638), 1, anon_sym_map_LBRACK, - STATE(329), 1, + STATE(1703), 1, sym_plain_type, - STATE(4392), 1, + STATE(4406), 1, sym_reference_expression, - STATE(267), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3073), 2, + STATE(3127), 2, sym_line_comment, sym_block_comment, - STATE(359), 4, + STATE(3360), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(1670), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(358), 12, + STATE(1671), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279061,55 +283343,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105661] = 22, + [106762] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3438), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3442), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3452), 1, anon_sym_shared, - ACTIONS(3598), 1, + ACTIONS(3456), 1, + anon_sym_chan, + ACTIONS(3458), 1, + anon_sym_thread, + ACTIONS(3460), 1, + anon_sym_atomic, + ACTIONS(5792), 1, anon_sym_LPAREN, - ACTIONS(3600), 1, + ACTIONS(5794), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5796), 1, + anon_sym_QMARK, + ACTIONS(5798), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5800), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5802), 1, anon_sym_AMP, - STATE(3755), 1, + ACTIONS(5804), 1, + anon_sym_map_LBRACK, + STATE(3417), 1, sym_plain_type, - STATE(4423), 1, + STATE(4406), 1, sym_reference_expression, - STATE(3074), 2, + STATE(3128), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3360), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3404), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(3401), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279122,55 +283404,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105744] = 22, + [106845] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(615), 1, + ACTIONS(619), 1, anon_sym_struct, ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3955), 1, + ACTIONS(3989), 1, sym_identifier, - ACTIONS(3957), 1, + ACTIONS(3991), 1, anon_sym_fn, - ACTIONS(3959), 1, + ACTIONS(3993), 1, anon_sym_STAR, - ACTIONS(3969), 1, + ACTIONS(4003), 1, anon_sym_shared, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_map_LBRACK, - ACTIONS(3973), 1, + ACTIONS(4007), 1, anon_sym_chan, - ACTIONS(3975), 1, + ACTIONS(4009), 1, anon_sym_thread, - ACTIONS(3977), 1, + ACTIONS(4011), 1, anon_sym_atomic, - ACTIONS(5770), 1, + ACTIONS(5756), 1, anon_sym_QMARK, - ACTIONS(5772), 1, + ACTIONS(5758), 1, anon_sym_BANG, - ACTIONS(5774), 1, + ACTIONS(5760), 1, anon_sym_LBRACK2, - ACTIONS(5776), 1, + ACTIONS(5762), 1, anon_sym_AMP, - STATE(2350), 1, + STATE(2431), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2284), 2, + STATE(2320), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3075), 2, + STATE(3129), 2, sym_line_comment, sym_block_comment, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279183,55 +283465,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105827] = 22, + [106928] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, + ACTIONS(4070), 1, sym_identifier, - ACTIONS(1195), 1, + ACTIONS(4074), 1, anon_sym_fn, - ACTIONS(1199), 1, + ACTIONS(4078), 1, anon_sym_struct, - ACTIONS(1209), 1, + ACTIONS(4088), 1, anon_sym_shared, - ACTIONS(1213), 1, + ACTIONS(4092), 1, anon_sym_chan, - ACTIONS(1215), 1, + ACTIONS(4094), 1, anon_sym_thread, - ACTIONS(1217), 1, + ACTIONS(4096), 1, anon_sym_atomic, - ACTIONS(5800), 1, + ACTIONS(5830), 1, anon_sym_LPAREN, - ACTIONS(5802), 1, + ACTIONS(5832), 1, anon_sym_STAR, - ACTIONS(5804), 1, + ACTIONS(5834), 1, anon_sym_QMARK, - ACTIONS(5806), 1, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5808), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5810), 1, + ACTIONS(5840), 1, anon_sym_AMP, - ACTIONS(5812), 1, + ACTIONS(5842), 1, anon_sym_map_LBRACK, - STATE(1057), 1, + STATE(2610), 1, sym_plain_type, - STATE(4344), 1, + STATE(4478), 1, sym_reference_expression, - STATE(989), 2, + STATE(2459), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3076), 2, + STATE(3130), 2, sym_line_comment, sym_block_comment, - STATE(1091), 4, + STATE(2595), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1089), 12, + STATE(2596), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279244,55 +283526,116 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105910] = 22, + [107011] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, + ACTIONS(4070), 1, sym_identifier, - ACTIONS(3642), 1, - anon_sym_struct, - ACTIONS(5490), 1, + ACTIONS(4074), 1, anon_sym_fn, - ACTIONS(5502), 1, + ACTIONS(4078), 1, + anon_sym_struct, + ACTIONS(4088), 1, anon_sym_shared, - ACTIONS(5506), 1, + ACTIONS(4092), 1, anon_sym_chan, - ACTIONS(5508), 1, + ACTIONS(4094), 1, anon_sym_thread, - ACTIONS(5510), 1, + ACTIONS(4096), 1, anon_sym_atomic, - ACTIONS(5578), 1, + ACTIONS(5830), 1, anon_sym_LPAREN, - ACTIONS(5582), 1, + ACTIONS(5832), 1, anon_sym_STAR, - ACTIONS(5584), 1, + ACTIONS(5834), 1, anon_sym_QMARK, - ACTIONS(5586), 1, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5588), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5590), 1, + ACTIONS(5840), 1, anon_sym_AMP, - ACTIONS(5592), 1, + ACTIONS(5842), 1, anon_sym_map_LBRACK, - STATE(1638), 1, + STATE(2552), 1, sym_plain_type, - STATE(4356), 1, + STATE(4478), 1, sym_reference_expression, - STATE(3077), 2, + STATE(2459), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3131), 2, sym_line_comment, sym_block_comment, - STATE(3302), 2, + STATE(2595), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2596), 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, + [107094] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4070), 1, + sym_identifier, + ACTIONS(4074), 1, + anon_sym_fn, + ACTIONS(4078), 1, + anon_sym_struct, + ACTIONS(4088), 1, + anon_sym_shared, + ACTIONS(4092), 1, + anon_sym_chan, + ACTIONS(4094), 1, + anon_sym_thread, + ACTIONS(4096), 1, + anon_sym_atomic, + ACTIONS(5830), 1, + anon_sym_LPAREN, + ACTIONS(5832), 1, + anon_sym_STAR, + ACTIONS(5834), 1, + anon_sym_QMARK, + ACTIONS(5836), 1, + anon_sym_BANG, + ACTIONS(5838), 1, + anon_sym_LBRACK2, + ACTIONS(5840), 1, + anon_sym_AMP, + ACTIONS(5842), 1, + anon_sym_map_LBRACK, + STATE(2603), 1, + sym_plain_type, + STATE(4478), 1, + sym_reference_expression, + STATE(2459), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1658), 4, + STATE(3132), 2, + sym_line_comment, + sym_block_comment, + STATE(2595), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1657), 12, + STATE(2596), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279305,7 +283648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105993] = 22, + [107177] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -279320,40 +283663,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(3783), 1, + STATE(4439), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3078), 2, + STATE(3133), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279366,55 +283709,116 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106076] = 22, + [107260] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, + ACTIONS(4070), 1, + sym_identifier, + ACTIONS(4074), 1, + anon_sym_fn, + ACTIONS(4078), 1, + anon_sym_struct, + ACTIONS(4088), 1, + anon_sym_shared, + ACTIONS(4092), 1, anon_sym_chan, - ACTIONS(101), 1, + ACTIONS(4094), 1, anon_sym_thread, - ACTIONS(103), 1, + ACTIONS(4096), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(5830), 1, + anon_sym_LPAREN, + ACTIONS(5832), 1, + anon_sym_STAR, + ACTIONS(5834), 1, + anon_sym_QMARK, + ACTIONS(5836), 1, + anon_sym_BANG, + ACTIONS(5838), 1, + anon_sym_LBRACK2, + ACTIONS(5840), 1, + anon_sym_AMP, + ACTIONS(5842), 1, + anon_sym_map_LBRACK, + STATE(2611), 1, + sym_plain_type, + STATE(4478), 1, + sym_reference_expression, + STATE(2459), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3134), 2, + sym_line_comment, + sym_block_comment, + STATE(2595), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2596), 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, + [107343] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4070), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(4074), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(4078), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(4088), 1, anon_sym_shared, - ACTIONS(3598), 1, + ACTIONS(4092), 1, + anon_sym_chan, + ACTIONS(4094), 1, + anon_sym_thread, + ACTIONS(4096), 1, + anon_sym_atomic, + ACTIONS(5830), 1, anon_sym_LPAREN, - ACTIONS(3600), 1, + ACTIONS(5832), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5834), 1, + anon_sym_QMARK, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5840), 1, anon_sym_AMP, - STATE(2404), 1, + ACTIONS(5842), 1, + anon_sym_map_LBRACK, + STATE(2499), 1, sym_plain_type, - STATE(4423), 1, + STATE(4478), 1, sym_reference_expression, - STATE(3079), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, + STATE(2459), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3135), 2, + sym_line_comment, + sym_block_comment, + STATE(2595), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2596), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279427,55 +283831,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106159] = 22, + [107426] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4533), 1, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(4535), 1, + ACTIONS(3827), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(4539), 1, - anon_sym_STAR, - ACTIONS(4541), 1, + ACTIONS(3833), 1, anon_sym_struct, - ACTIONS(4551), 1, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(4553), 1, + ACTIONS(3845), 1, anon_sym_map_LBRACK, - ACTIONS(4555), 1, + ACTIONS(3847), 1, anon_sym_chan, - ACTIONS(4557), 1, + ACTIONS(3849), 1, anon_sym_thread, - ACTIONS(4559), 1, + ACTIONS(3851), 1, anon_sym_atomic, - ACTIONS(5778), 1, + ACTIONS(5806), 1, + anon_sym_STAR, + ACTIONS(5808), 1, anon_sym_QMARK, - ACTIONS(5780), 1, + ACTIONS(5810), 1, anon_sym_BANG, - ACTIONS(5782), 1, + ACTIONS(5812), 1, anon_sym_LBRACK2, - ACTIONS(5784), 1, + ACTIONS(5814), 1, anon_sym_AMP, - STATE(2708), 1, + STATE(2149), 1, sym_plain_type, - STATE(4316), 1, + STATE(4457), 1, sym_reference_expression, - STATE(2611), 2, + STATE(1940), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3080), 2, + STATE(3136), 2, sym_line_comment, sym_block_comment, - STATE(2692), 4, + STATE(1986), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2693), 12, + STATE(1985), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279488,55 +283892,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106242] = 22, + [107509] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3748), 1, + ACTIONS(4070), 1, sym_identifier, - ACTIONS(3750), 1, - anon_sym_LPAREN, - ACTIONS(3752), 1, + ACTIONS(4074), 1, anon_sym_fn, - ACTIONS(3756), 1, + ACTIONS(4078), 1, anon_sym_struct, - ACTIONS(3766), 1, + ACTIONS(4088), 1, anon_sym_shared, - ACTIONS(3768), 1, - anon_sym_map_LBRACK, - ACTIONS(3770), 1, + ACTIONS(4092), 1, anon_sym_chan, - ACTIONS(3772), 1, + ACTIONS(4094), 1, anon_sym_thread, - ACTIONS(3774), 1, + ACTIONS(4096), 1, anon_sym_atomic, - ACTIONS(5714), 1, + ACTIONS(5830), 1, + anon_sym_LPAREN, + ACTIONS(5832), 1, anon_sym_STAR, - ACTIONS(5716), 1, + ACTIONS(5834), 1, anon_sym_QMARK, - ACTIONS(5718), 1, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5722), 1, + ACTIONS(5840), 1, anon_sym_AMP, - STATE(2007), 1, + ACTIONS(5842), 1, + anon_sym_map_LBRACK, + STATE(2613), 1, sym_plain_type, - STATE(4428), 1, + STATE(4478), 1, sym_reference_expression, - STATE(1899), 2, + STATE(2459), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3081), 2, + STATE(3137), 2, sym_line_comment, sym_block_comment, - STATE(1918), 4, + STATE(2595), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1996), 12, + STATE(2596), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279549,55 +283953,116 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106325] = 22, + [107592] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4533), 1, + ACTIONS(4070), 1, sym_identifier, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4074), 1, anon_sym_fn, - ACTIONS(4539), 1, - anon_sym_STAR, - ACTIONS(4541), 1, + ACTIONS(4078), 1, anon_sym_struct, - ACTIONS(4551), 1, + ACTIONS(4088), 1, anon_sym_shared, - ACTIONS(4553), 1, - anon_sym_map_LBRACK, - ACTIONS(4555), 1, + ACTIONS(4092), 1, anon_sym_chan, - ACTIONS(4557), 1, + ACTIONS(4094), 1, anon_sym_thread, - ACTIONS(4559), 1, + ACTIONS(4096), 1, anon_sym_atomic, - ACTIONS(5778), 1, + ACTIONS(5830), 1, + anon_sym_LPAREN, + ACTIONS(5832), 1, + anon_sym_STAR, + ACTIONS(5834), 1, anon_sym_QMARK, - ACTIONS(5780), 1, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5782), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5784), 1, + ACTIONS(5840), 1, anon_sym_AMP, - STATE(2709), 1, + ACTIONS(5842), 1, + anon_sym_map_LBRACK, + STATE(2597), 1, sym_plain_type, - STATE(4316), 1, + STATE(4478), 1, sym_reference_expression, - STATE(2611), 2, + STATE(2459), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3082), 2, + STATE(3138), 2, + sym_line_comment, + sym_block_comment, + STATE(2595), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2596), 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, + [107675] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5364), 1, + anon_sym_BANG, + ACTIONS(5366), 1, + anon_sym_LBRACK2, + ACTIONS(5368), 1, + anon_sym_AMP, + STATE(4596), 1, + sym_reference_expression, + STATE(4646), 1, + sym_plain_type, + STATE(3139), 2, sym_line_comment, sym_block_comment, - STATE(2692), 4, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2693), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279610,55 +284075,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106408] = 22, + [107758] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3700), 1, + ACTIONS(4070), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(4074), 1, anon_sym_fn, - ACTIONS(3708), 1, + ACTIONS(4078), 1, anon_sym_struct, - ACTIONS(3718), 1, + ACTIONS(4088), 1, anon_sym_shared, - ACTIONS(3722), 1, + ACTIONS(4092), 1, anon_sym_chan, - ACTIONS(3724), 1, + ACTIONS(4094), 1, anon_sym_thread, - ACTIONS(3726), 1, + ACTIONS(4096), 1, anon_sym_atomic, - ACTIONS(5700), 1, + ACTIONS(5830), 1, anon_sym_LPAREN, - ACTIONS(5702), 1, + ACTIONS(5832), 1, anon_sym_STAR, - ACTIONS(5704), 1, + ACTIONS(5834), 1, anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5840), 1, anon_sym_AMP, - ACTIONS(5712), 1, + ACTIONS(5842), 1, anon_sym_map_LBRACK, - STATE(1818), 1, + STATE(2543), 1, sym_plain_type, - STATE(4449), 1, + STATE(4478), 1, sym_reference_expression, - STATE(1760), 2, + STATE(2459), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3083), 2, + STATE(3140), 2, sym_line_comment, sym_block_comment, - STATE(1831), 4, + STATE(2595), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1830), 12, + STATE(2596), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279671,55 +284136,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106491] = 22, + [107841] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3566), 1, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(3568), 1, + ACTIONS(3827), 1, anon_sym_LPAREN, - ACTIONS(3570), 1, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(3572), 1, - anon_sym_STAR, - ACTIONS(3574), 1, + ACTIONS(3833), 1, anon_sym_struct, - ACTIONS(3584), 1, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3845), 1, anon_sym_map_LBRACK, - ACTIONS(3588), 1, + ACTIONS(3847), 1, anon_sym_chan, - ACTIONS(3590), 1, + ACTIONS(3849), 1, anon_sym_thread, - ACTIONS(3592), 1, + ACTIONS(3851), 1, anon_sym_atomic, - ACTIONS(5724), 1, + ACTIONS(5806), 1, + anon_sym_STAR, + ACTIONS(5808), 1, anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(5810), 1, anon_sym_BANG, - ACTIONS(5728), 1, + ACTIONS(5812), 1, anon_sym_LBRACK2, - ACTIONS(5730), 1, + ACTIONS(5814), 1, anon_sym_AMP, - STATE(1303), 1, + STATE(2052), 1, sym_plain_type, - STATE(4323), 1, + STATE(4457), 1, sym_reference_expression, - STATE(1277), 2, + STATE(1940), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3084), 2, + STATE(3141), 2, sym_line_comment, sym_block_comment, - STATE(1296), 4, + STATE(1986), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1299), 12, + STATE(1985), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279732,55 +284197,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106574] = 22, + [107924] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(3610), 1, + ACTIONS(3827), 1, + anon_sym_LPAREN, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(3614), 1, + ACTIONS(3833), 1, anon_sym_struct, - ACTIONS(3624), 1, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(3628), 1, + ACTIONS(3845), 1, + anon_sym_map_LBRACK, + ACTIONS(3847), 1, anon_sym_chan, - ACTIONS(3630), 1, + ACTIONS(3849), 1, anon_sym_thread, - ACTIONS(3632), 1, + ACTIONS(3851), 1, anon_sym_atomic, - ACTIONS(5594), 1, - anon_sym_LPAREN, - ACTIONS(5598), 1, + ACTIONS(5806), 1, anon_sym_STAR, - ACTIONS(5600), 1, + ACTIONS(5808), 1, anon_sym_QMARK, - ACTIONS(5602), 1, + ACTIONS(5810), 1, anon_sym_BANG, - ACTIONS(5604), 1, + ACTIONS(5812), 1, anon_sym_LBRACK2, - ACTIONS(5606), 1, + ACTIONS(5814), 1, anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_map_LBRACK, - STATE(1429), 1, + STATE(2049), 1, sym_plain_type, - STATE(4472), 1, + STATE(4457), 1, sym_reference_expression, - STATE(1404), 2, + STATE(1940), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3085), 2, + STATE(3142), 2, sym_line_comment, sym_block_comment, - STATE(1437), 4, + STATE(1986), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1440), 12, + STATE(1985), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279793,55 +284258,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106657] = 22, + [108007] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3566), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(3568), 1, - anon_sym_LPAREN, - ACTIONS(3570), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(3572), 1, - anon_sym_STAR, - ACTIONS(3574), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3584), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(3586), 1, - anon_sym_map_LBRACK, - ACTIONS(3588), 1, + ACTIONS(3688), 1, anon_sym_chan, - ACTIONS(3590), 1, + ACTIONS(3690), 1, anon_sym_thread, - ACTIONS(3592), 1, + ACTIONS(3692), 1, anon_sym_atomic, - ACTIONS(5724), 1, + ACTIONS(5624), 1, + anon_sym_LPAREN, + ACTIONS(5720), 1, + anon_sym_STAR, + ACTIONS(5722), 1, anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(5724), 1, anon_sym_BANG, - ACTIONS(5728), 1, + ACTIONS(5726), 1, anon_sym_LBRACK2, - ACTIONS(5730), 1, + ACTIONS(5728), 1, anon_sym_AMP, - STATE(1324), 1, + ACTIONS(5730), 1, + anon_sym_map_LBRACK, + STATE(1769), 1, sym_plain_type, - STATE(4323), 1, + STATE(4397), 1, sym_reference_expression, - STATE(1277), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3086), 2, + STATE(3143), 2, sym_line_comment, sym_block_comment, - STATE(1296), 4, + STATE(1670), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1299), 12, + STATE(1671), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279854,7 +284319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106740] = 22, + [108090] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -279869,40 +284334,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(2386), 1, + STATE(3837), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3087), 2, + STATE(3144), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279915,55 +284380,116 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106823] = 22, + [108173] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3566), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3568), 1, - anon_sym_LPAREN, - ACTIONS(3570), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3572), 1, - anon_sym_STAR, - ACTIONS(3574), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3584), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5364), 1, + anon_sym_BANG, + ACTIONS(5366), 1, + anon_sym_LBRACK2, + ACTIONS(5368), 1, + anon_sym_AMP, + STATE(3963), 1, + sym_plain_type, + STATE(4596), 1, + sym_reference_expression, + STATE(3145), 2, + sym_line_comment, + sym_block_comment, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [108256] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(3588), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(3590), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(3592), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5724), 1, - anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5728), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5730), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(1322), 1, + STATE(3965), 1, sym_plain_type, - STATE(4323), 1, - sym_reference_expression, - STATE(1277), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3088), 2, + STATE(4596), 1, + sym_reference_expression, + STATE(3146), 2, sym_line_comment, sym_block_comment, - STATE(1296), 4, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1299), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279976,7 +284502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106906] = 22, + [108339] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -279991,40 +284517,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(4423), 1, - sym_reference_expression, - STATE(4507), 1, + STATE(2389), 1, sym_plain_type, - STATE(3089), 2, + STATE(4596), 1, + sym_reference_expression, + STATE(3147), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280037,55 +284563,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106989] = 22, + [108422] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(5518), 1, + anon_sym_fn, + ACTIONS(5530), 1, anon_sym_shared, - ACTIONS(3598), 1, + ACTIONS(5534), 1, + anon_sym_chan, + ACTIONS(5536), 1, + anon_sym_thread, + ACTIONS(5538), 1, + anon_sym_atomic, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(3600), 1, + ACTIONS(5628), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5630), 1, + anon_sym_QMARK, + ACTIONS(5632), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5634), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5636), 1, anon_sym_AMP, - STATE(4423), 1, - sym_reference_expression, - STATE(4621), 1, + ACTIONS(5638), 1, + anon_sym_map_LBRACK, + STATE(1681), 1, sym_plain_type, - STATE(3090), 2, + STATE(4406), 1, + sym_reference_expression, + STATE(3148), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3360), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(1670), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(1671), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280098,55 +284624,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107072] = 22, + [108505] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3748), 1, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(3750), 1, + ACTIONS(3827), 1, anon_sym_LPAREN, - ACTIONS(3752), 1, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(3756), 1, + ACTIONS(3833), 1, anon_sym_struct, - ACTIONS(3766), 1, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(3768), 1, + ACTIONS(3845), 1, anon_sym_map_LBRACK, - ACTIONS(3770), 1, + ACTIONS(3847), 1, anon_sym_chan, - ACTIONS(3772), 1, + ACTIONS(3849), 1, anon_sym_thread, - ACTIONS(3774), 1, + ACTIONS(3851), 1, anon_sym_atomic, - ACTIONS(5714), 1, + ACTIONS(5806), 1, anon_sym_STAR, - ACTIONS(5716), 1, + ACTIONS(5808), 1, anon_sym_QMARK, - ACTIONS(5718), 1, + ACTIONS(5810), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5812), 1, anon_sym_LBRACK2, - ACTIONS(5722), 1, + ACTIONS(5814), 1, anon_sym_AMP, - STATE(2078), 1, + STATE(2095), 1, sym_plain_type, - STATE(4428), 1, + STATE(4457), 1, sym_reference_expression, - STATE(1899), 2, + STATE(1940), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3091), 2, + STATE(3149), 2, sym_line_comment, sym_block_comment, - STATE(1918), 4, + STATE(1986), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1996), 12, + STATE(1985), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280159,55 +284685,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107155] = 22, + [108588] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, + ACTIONS(4553), 1, sym_identifier, - ACTIONS(1195), 1, + ACTIONS(4555), 1, + anon_sym_LPAREN, + ACTIONS(4557), 1, anon_sym_fn, - ACTIONS(1199), 1, + ACTIONS(4559), 1, + anon_sym_STAR, + ACTIONS(4561), 1, anon_sym_struct, - ACTIONS(1209), 1, + ACTIONS(4571), 1, anon_sym_shared, - ACTIONS(1213), 1, + ACTIONS(4573), 1, + anon_sym_map_LBRACK, + ACTIONS(4575), 1, anon_sym_chan, - ACTIONS(1215), 1, + ACTIONS(4577), 1, anon_sym_thread, - ACTIONS(1217), 1, + ACTIONS(4579), 1, anon_sym_atomic, - ACTIONS(5800), 1, - anon_sym_LPAREN, - ACTIONS(5802), 1, - anon_sym_STAR, - ACTIONS(5804), 1, + ACTIONS(5844), 1, anon_sym_QMARK, - ACTIONS(5806), 1, + ACTIONS(5846), 1, anon_sym_BANG, - ACTIONS(5808), 1, + ACTIONS(5848), 1, anon_sym_LBRACK2, - ACTIONS(5810), 1, + ACTIONS(5850), 1, anon_sym_AMP, - ACTIONS(5812), 1, - anon_sym_map_LBRACK, - STATE(1077), 1, + STATE(2766), 1, sym_plain_type, - STATE(4344), 1, + STATE(4549), 1, sym_reference_expression, - STATE(989), 2, + STATE(2644), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3092), 2, + STATE(3150), 2, sym_line_comment, sym_block_comment, - STATE(1091), 4, + STATE(2752), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1089), 12, + STATE(2753), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280220,55 +284746,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107238] = 22, + [108671] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3634), 1, + ACTIONS(3780), 1, sym_identifier, - ACTIONS(3638), 1, + ACTIONS(3782), 1, + anon_sym_LPAREN, + ACTIONS(3784), 1, anon_sym_fn, - ACTIONS(3642), 1, + ACTIONS(3788), 1, anon_sym_struct, - ACTIONS(3652), 1, + ACTIONS(3798), 1, anon_sym_shared, - ACTIONS(3656), 1, + ACTIONS(3800), 1, + anon_sym_map_LBRACK, + ACTIONS(3802), 1, anon_sym_chan, - ACTIONS(3658), 1, + ACTIONS(3804), 1, anon_sym_thread, - ACTIONS(3660), 1, + ACTIONS(3806), 1, anon_sym_atomic, - ACTIONS(5578), 1, - anon_sym_LPAREN, - ACTIONS(5814), 1, + ACTIONS(5746), 1, anon_sym_STAR, - ACTIONS(5816), 1, + ACTIONS(5748), 1, anon_sym_QMARK, - ACTIONS(5818), 1, + ACTIONS(5750), 1, anon_sym_BANG, - ACTIONS(5820), 1, + ACTIONS(5752), 1, anon_sym_LBRACK2, - ACTIONS(5822), 1, + ACTIONS(5754), 1, anon_sym_AMP, - ACTIONS(5824), 1, - anon_sym_map_LBRACK, - STATE(1746), 1, + STATE(2087), 1, sym_plain_type, - STATE(4375), 1, + STATE(4520), 1, sym_reference_expression, - STATE(1659), 2, + STATE(1939), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3093), 2, + STATE(3151), 2, sym_line_comment, sym_block_comment, - STATE(1658), 4, + STATE(2110), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1657), 12, + STATE(2075), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280281,55 +284807,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107321] = 22, + [108754] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, + ACTIONS(3959), 1, sym_identifier, - ACTIONS(1195), 1, + ACTIONS(3963), 1, anon_sym_fn, - ACTIONS(1199), 1, + ACTIONS(3967), 1, anon_sym_struct, - ACTIONS(1209), 1, + ACTIONS(3977), 1, anon_sym_shared, - ACTIONS(1213), 1, + ACTIONS(3981), 1, anon_sym_chan, - ACTIONS(1215), 1, + ACTIONS(3983), 1, anon_sym_thread, - ACTIONS(1217), 1, + ACTIONS(3985), 1, anon_sym_atomic, - ACTIONS(5800), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - ACTIONS(5802), 1, + ACTIONS(5854), 1, anon_sym_STAR, - ACTIONS(5804), 1, + ACTIONS(5856), 1, anon_sym_QMARK, - ACTIONS(5806), 1, + ACTIONS(5858), 1, anon_sym_BANG, - ACTIONS(5808), 1, + ACTIONS(5860), 1, anon_sym_LBRACK2, - ACTIONS(5810), 1, + ACTIONS(5862), 1, anon_sym_AMP, - ACTIONS(5812), 1, + ACTIONS(5864), 1, anon_sym_map_LBRACK, - STATE(1071), 1, + STATE(2264), 1, sym_plain_type, - STATE(4344), 1, + STATE(4545), 1, sym_reference_expression, - STATE(989), 2, + STATE(2183), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3094), 2, + STATE(3152), 2, sym_line_comment, sym_block_comment, - STATE(1091), 4, + STATE(2203), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1089), 12, + STATE(2202), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280342,55 +284868,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107404] = 22, + [108837] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(3959), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3963), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3967), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3977), 1, anon_sym_shared, - ACTIONS(3598), 1, + ACTIONS(3981), 1, + anon_sym_chan, + ACTIONS(3983), 1, + anon_sym_thread, + ACTIONS(3985), 1, + anon_sym_atomic, + ACTIONS(5852), 1, anon_sym_LPAREN, - ACTIONS(3600), 1, + ACTIONS(5854), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5856), 1, + anon_sym_QMARK, + ACTIONS(5858), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5860), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5862), 1, anon_sym_AMP, - STATE(4423), 1, - sym_reference_expression, - STATE(4578), 1, + ACTIONS(5864), 1, + anon_sym_map_LBRACK, + STATE(2260), 1, sym_plain_type, - STATE(3095), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, + STATE(4545), 1, + sym_reference_expression, + STATE(2183), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3153), 2, + sym_line_comment, + sym_block_comment, + STATE(2203), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2202), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280403,55 +284929,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107487] = 22, + [108920] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4068), 1, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(4072), 1, - anon_sym_fn, - ACTIONS(4076), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(4086), 1, + ACTIONS(5518), 1, + anon_sym_fn, + ACTIONS(5530), 1, anon_sym_shared, - ACTIONS(4090), 1, + ACTIONS(5534), 1, anon_sym_chan, - ACTIONS(4092), 1, + ACTIONS(5536), 1, anon_sym_thread, - ACTIONS(4094), 1, + ACTIONS(5538), 1, anon_sym_atomic, - ACTIONS(5746), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(5748), 1, + ACTIONS(5628), 1, anon_sym_STAR, - ACTIONS(5750), 1, + ACTIONS(5630), 1, anon_sym_QMARK, - ACTIONS(5752), 1, + ACTIONS(5632), 1, anon_sym_BANG, - ACTIONS(5754), 1, + ACTIONS(5634), 1, anon_sym_LBRACK2, - ACTIONS(5756), 1, + ACTIONS(5636), 1, anon_sym_AMP, - ACTIONS(5758), 1, + ACTIONS(5638), 1, anon_sym_map_LBRACK, - STATE(2563), 1, + STATE(1685), 1, sym_plain_type, - STATE(4386), 1, + STATE(4406), 1, sym_reference_expression, - STATE(2419), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3096), 2, + STATE(3154), 2, sym_line_comment, sym_block_comment, - STATE(2533), 4, + STATE(3360), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(1670), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(1671), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280464,7 +284990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107570] = 22, + [109003] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -280479,40 +285005,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(3769), 1, + STATE(2420), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3097), 2, + STATE(3155), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280525,55 +285051,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107653] = 22, + [109086] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3955), 1, + ACTIONS(4553), 1, sym_identifier, - ACTIONS(3957), 1, + ACTIONS(4555), 1, + anon_sym_LPAREN, + ACTIONS(4557), 1, anon_sym_fn, - ACTIONS(3959), 1, + ACTIONS(4559), 1, anon_sym_STAR, - ACTIONS(3969), 1, + ACTIONS(4561), 1, + anon_sym_struct, + ACTIONS(4571), 1, anon_sym_shared, - ACTIONS(3971), 1, + ACTIONS(4573), 1, anon_sym_map_LBRACK, - ACTIONS(3973), 1, + ACTIONS(4575), 1, anon_sym_chan, - ACTIONS(3975), 1, + ACTIONS(4577), 1, anon_sym_thread, - ACTIONS(3977), 1, + ACTIONS(4579), 1, anon_sym_atomic, - ACTIONS(5770), 1, + ACTIONS(5844), 1, anon_sym_QMARK, - ACTIONS(5772), 1, + ACTIONS(5846), 1, anon_sym_BANG, - ACTIONS(5774), 1, + ACTIONS(5848), 1, anon_sym_LBRACK2, - ACTIONS(5776), 1, + ACTIONS(5850), 1, anon_sym_AMP, - STATE(2513), 1, + STATE(2768), 1, sym_plain_type, - STATE(4423), 1, + STATE(4549), 1, sym_reference_expression, - STATE(2284), 2, + STATE(2644), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3098), 2, + STATE(3156), 2, sym_line_comment, sym_block_comment, - STATE(2290), 4, + STATE(2752), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2753), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280586,55 +285112,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107736] = 22, + [109169] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, + ACTIONS(4553), 1, sym_identifier, - ACTIONS(1195), 1, + ACTIONS(4555), 1, + anon_sym_LPAREN, + ACTIONS(4557), 1, anon_sym_fn, - ACTIONS(1199), 1, + ACTIONS(4559), 1, + anon_sym_STAR, + ACTIONS(4561), 1, anon_sym_struct, - ACTIONS(1209), 1, + ACTIONS(4571), 1, anon_sym_shared, - ACTIONS(1213), 1, + ACTIONS(4573), 1, + anon_sym_map_LBRACK, + ACTIONS(4575), 1, anon_sym_chan, - ACTIONS(1215), 1, + ACTIONS(4577), 1, anon_sym_thread, - ACTIONS(1217), 1, + ACTIONS(4579), 1, anon_sym_atomic, - ACTIONS(5800), 1, - anon_sym_LPAREN, - ACTIONS(5802), 1, - anon_sym_STAR, - ACTIONS(5804), 1, + ACTIONS(5844), 1, anon_sym_QMARK, - ACTIONS(5806), 1, + ACTIONS(5846), 1, anon_sym_BANG, - ACTIONS(5808), 1, + ACTIONS(5848), 1, anon_sym_LBRACK2, - ACTIONS(5810), 1, + ACTIONS(5850), 1, anon_sym_AMP, - ACTIONS(5812), 1, - anon_sym_map_LBRACK, - STATE(1070), 1, + STATE(2767), 1, sym_plain_type, - STATE(4344), 1, + STATE(4549), 1, sym_reference_expression, - STATE(989), 2, + STATE(2644), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3099), 2, + STATE(3157), 2, sym_line_comment, sym_block_comment, - STATE(1091), 4, + STATE(2752), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1089), 12, + STATE(2753), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280647,55 +285173,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107819] = 22, + [109252] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(5518), 1, + anon_sym_fn, + ACTIONS(5530), 1, anon_sym_shared, - ACTIONS(3598), 1, + ACTIONS(5534), 1, + anon_sym_chan, + ACTIONS(5536), 1, + anon_sym_thread, + ACTIONS(5538), 1, + anon_sym_atomic, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(3600), 1, + ACTIONS(5628), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5630), 1, + anon_sym_QMARK, + ACTIONS(5632), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5634), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5636), 1, anon_sym_AMP, - STATE(4423), 1, - sym_reference_expression, - STATE(4552), 1, + ACTIONS(5638), 1, + anon_sym_map_LBRACK, + STATE(1683), 1, sym_plain_type, - STATE(3100), 2, + STATE(4406), 1, + sym_reference_expression, + STATE(3158), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3360), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(1670), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(1671), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280708,55 +285234,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107902] = 22, + [109335] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3634), 1, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(3638), 1, - anon_sym_fn, - ACTIONS(3642), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3652), 1, + ACTIONS(5518), 1, + anon_sym_fn, + ACTIONS(5530), 1, anon_sym_shared, - ACTIONS(3656), 1, + ACTIONS(5534), 1, anon_sym_chan, - ACTIONS(3658), 1, + ACTIONS(5536), 1, anon_sym_thread, - ACTIONS(3660), 1, + ACTIONS(5538), 1, anon_sym_atomic, - ACTIONS(5578), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(5814), 1, + ACTIONS(5628), 1, anon_sym_STAR, - ACTIONS(5816), 1, + ACTIONS(5630), 1, anon_sym_QMARK, - ACTIONS(5818), 1, + ACTIONS(5632), 1, anon_sym_BANG, - ACTIONS(5820), 1, + ACTIONS(5634), 1, anon_sym_LBRACK2, - ACTIONS(5822), 1, + ACTIONS(5636), 1, anon_sym_AMP, - ACTIONS(5824), 1, + ACTIONS(5638), 1, anon_sym_map_LBRACK, - STATE(1711), 1, + STATE(1682), 1, sym_plain_type, - STATE(4375), 1, + STATE(4406), 1, sym_reference_expression, - STATE(1659), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3101), 2, + STATE(3159), 2, sym_line_comment, sym_block_comment, - STATE(1658), 4, + STATE(3360), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(1670), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1657), 12, + STATE(1671), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280769,55 +285295,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107985] = 22, + [109418] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(3638), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3642), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3646), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3656), 1, anon_sym_shared, - ACTIONS(3598), 1, + ACTIONS(3660), 1, + anon_sym_chan, + ACTIONS(3662), 1, + anon_sym_thread, + ACTIONS(3664), 1, + anon_sym_atomic, + ACTIONS(5608), 1, anon_sym_LPAREN, - ACTIONS(3600), 1, + ACTIONS(5612), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5614), 1, + anon_sym_QMARK, + ACTIONS(5616), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5618), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5620), 1, anon_sym_AMP, - STATE(4423), 1, - sym_reference_expression, - STATE(4531), 1, + ACTIONS(5622), 1, + anon_sym_map_LBRACK, + STATE(1539), 1, sym_plain_type, - STATE(3102), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, + STATE(4554), 1, + sym_reference_expression, + STATE(1447), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3160), 2, + sym_line_comment, + sym_block_comment, + STATE(1565), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(1522), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280830,7 +285356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108068] = 22, + [109501] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -280845,40 +285371,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(4455), 1, + STATE(4625), 1, sym_plain_type, - STATE(3103), 2, + STATE(3161), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280891,55 +285417,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108151] = 22, + [109584] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(3638), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3642), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3646), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3656), 1, anon_sym_shared, - ACTIONS(3598), 1, + ACTIONS(3660), 1, + anon_sym_chan, + ACTIONS(3662), 1, + anon_sym_thread, + ACTIONS(3664), 1, + anon_sym_atomic, + ACTIONS(5608), 1, anon_sym_LPAREN, - ACTIONS(3600), 1, + ACTIONS(5612), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5614), 1, + anon_sym_QMARK, + ACTIONS(5616), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5618), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5620), 1, anon_sym_AMP, - STATE(3900), 1, + ACTIONS(5622), 1, + anon_sym_map_LBRACK, + STATE(1538), 1, sym_plain_type, - STATE(4423), 1, + STATE(4554), 1, sym_reference_expression, - STATE(3104), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, + STATE(1447), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3162), 2, + sym_line_comment, + sym_block_comment, + STATE(1565), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(1522), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280952,55 +285478,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108234] = 22, + [109667] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(1195), 1, + ACTIONS(3827), 1, + anon_sym_LPAREN, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(1199), 1, + ACTIONS(3833), 1, anon_sym_struct, - ACTIONS(1209), 1, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(1213), 1, + ACTIONS(3845), 1, + anon_sym_map_LBRACK, + ACTIONS(3847), 1, anon_sym_chan, - ACTIONS(1215), 1, + ACTIONS(3849), 1, anon_sym_thread, - ACTIONS(1217), 1, + ACTIONS(3851), 1, anon_sym_atomic, - ACTIONS(5800), 1, - anon_sym_LPAREN, - ACTIONS(5802), 1, + ACTIONS(5806), 1, anon_sym_STAR, - ACTIONS(5804), 1, + ACTIONS(5808), 1, anon_sym_QMARK, - ACTIONS(5806), 1, + ACTIONS(5810), 1, anon_sym_BANG, - ACTIONS(5808), 1, + ACTIONS(5812), 1, anon_sym_LBRACK2, - ACTIONS(5810), 1, + ACTIONS(5814), 1, anon_sym_AMP, - ACTIONS(5812), 1, - anon_sym_map_LBRACK, - STATE(1069), 1, + STATE(1978), 1, sym_plain_type, - STATE(4344), 1, + STATE(4457), 1, sym_reference_expression, - STATE(989), 2, + STATE(1940), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3105), 2, + STATE(3163), 2, sym_line_comment, sym_block_comment, - STATE(1091), 4, + STATE(1986), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1089), 12, + STATE(1985), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281013,55 +285539,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108317] = 22, + [109750] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(3610), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3614), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3618), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3628), 1, anon_sym_shared, - ACTIONS(3598), 1, + ACTIONS(3632), 1, + anon_sym_chan, + ACTIONS(3634), 1, + anon_sym_thread, + ACTIONS(3636), 1, + anon_sym_atomic, + ACTIONS(5640), 1, anon_sym_LPAREN, - ACTIONS(3600), 1, + ACTIONS(5642), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5644), 1, + anon_sym_QMARK, + ACTIONS(5646), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5648), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5650), 1, anon_sym_AMP, - STATE(4114), 1, + ACTIONS(5652), 1, + anon_sym_map_LBRACK, + STATE(1426), 1, sym_plain_type, - STATE(4423), 1, + STATE(4415), 1, sym_reference_expression, - STATE(3106), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, + STATE(1405), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3164), 2, + sym_line_comment, + sym_block_comment, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(1454), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281074,55 +285600,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108400] = 22, + [109833] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3748), 1, + ACTIONS(4553), 1, sym_identifier, - ACTIONS(3750), 1, + ACTIONS(4555), 1, anon_sym_LPAREN, - ACTIONS(3752), 1, + ACTIONS(4557), 1, anon_sym_fn, - ACTIONS(3756), 1, + ACTIONS(4559), 1, + anon_sym_STAR, + ACTIONS(4561), 1, anon_sym_struct, - ACTIONS(3766), 1, + ACTIONS(4571), 1, anon_sym_shared, - ACTIONS(3768), 1, + ACTIONS(4573), 1, anon_sym_map_LBRACK, - ACTIONS(3770), 1, + ACTIONS(4575), 1, anon_sym_chan, - ACTIONS(3772), 1, + ACTIONS(4577), 1, anon_sym_thread, - ACTIONS(3774), 1, + ACTIONS(4579), 1, anon_sym_atomic, - ACTIONS(5714), 1, - anon_sym_STAR, - ACTIONS(5716), 1, + ACTIONS(5844), 1, anon_sym_QMARK, - ACTIONS(5718), 1, + ACTIONS(5846), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5848), 1, anon_sym_LBRACK2, - ACTIONS(5722), 1, + ACTIONS(5850), 1, anon_sym_AMP, - STATE(1985), 1, + STATE(2780), 1, sym_plain_type, - STATE(4428), 1, + STATE(4549), 1, sym_reference_expression, - STATE(1899), 2, + STATE(2644), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3107), 2, + STATE(3165), 2, sym_line_comment, sym_block_comment, - STATE(1918), 4, + STATE(2752), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1996), 12, + STATE(2753), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281135,55 +285661,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108483] = 22, + [109916] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3797), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(3799), 1, - anon_sym_LPAREN, - ACTIONS(3801), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(3805), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3815), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(3817), 1, - anon_sym_map_LBRACK, - ACTIONS(3819), 1, + ACTIONS(3688), 1, anon_sym_chan, - ACTIONS(3821), 1, + ACTIONS(3690), 1, anon_sym_thread, - ACTIONS(3823), 1, + ACTIONS(3692), 1, anon_sym_atomic, - ACTIONS(5760), 1, + ACTIONS(5624), 1, + anon_sym_LPAREN, + ACTIONS(5720), 1, anon_sym_STAR, - ACTIONS(5762), 1, + ACTIONS(5722), 1, anon_sym_QMARK, - ACTIONS(5764), 1, + ACTIONS(5724), 1, anon_sym_BANG, - ACTIONS(5766), 1, + ACTIONS(5726), 1, anon_sym_LBRACK2, - ACTIONS(5768), 1, + ACTIONS(5728), 1, anon_sym_AMP, - STATE(2002), 1, + ACTIONS(5730), 1, + anon_sym_map_LBRACK, + STATE(1710), 1, sym_plain_type, - STATE(4365), 1, + STATE(4397), 1, sym_reference_expression, - STATE(1904), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3108), 2, + STATE(3166), 2, sym_line_comment, sym_block_comment, - STATE(1978), 4, + STATE(1670), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1980), 12, + STATE(1671), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281196,55 +285722,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108566] = 22, + [109999] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4533), 1, + ACTIONS(4553), 1, sym_identifier, - ACTIONS(4535), 1, + ACTIONS(4555), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4557), 1, anon_sym_fn, - ACTIONS(4539), 1, + ACTIONS(4559), 1, anon_sym_STAR, - ACTIONS(4541), 1, + ACTIONS(4561), 1, anon_sym_struct, - ACTIONS(4551), 1, + ACTIONS(4571), 1, anon_sym_shared, - ACTIONS(4553), 1, + ACTIONS(4573), 1, anon_sym_map_LBRACK, - ACTIONS(4555), 1, + ACTIONS(4575), 1, anon_sym_chan, - ACTIONS(4557), 1, + ACTIONS(4577), 1, anon_sym_thread, - ACTIONS(4559), 1, + ACTIONS(4579), 1, anon_sym_atomic, - ACTIONS(5778), 1, + ACTIONS(5844), 1, anon_sym_QMARK, - ACTIONS(5780), 1, + ACTIONS(5846), 1, anon_sym_BANG, - ACTIONS(5782), 1, + ACTIONS(5848), 1, anon_sym_LBRACK2, - ACTIONS(5784), 1, + ACTIONS(5850), 1, anon_sym_AMP, - STATE(2718), 1, + STATE(2765), 1, sym_plain_type, - STATE(4316), 1, + STATE(4549), 1, sym_reference_expression, - STATE(2611), 2, + STATE(2644), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3109), 2, + STATE(3167), 2, sym_line_comment, sym_block_comment, - STATE(2692), 4, + STATE(2752), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2693), 12, + STATE(2753), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281257,55 +285783,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108649] = 22, + [110082] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4533), 1, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3438), 1, anon_sym_fn, - ACTIONS(4539), 1, - anon_sym_STAR, - ACTIONS(4541), 1, + ACTIONS(3442), 1, anon_sym_struct, - ACTIONS(4551), 1, + ACTIONS(3452), 1, anon_sym_shared, - ACTIONS(4553), 1, - anon_sym_map_LBRACK, - ACTIONS(4555), 1, + ACTIONS(3456), 1, anon_sym_chan, - ACTIONS(4557), 1, + ACTIONS(3458), 1, anon_sym_thread, - ACTIONS(4559), 1, + ACTIONS(3460), 1, anon_sym_atomic, - ACTIONS(5778), 1, + ACTIONS(5792), 1, + anon_sym_LPAREN, + ACTIONS(5794), 1, + anon_sym_STAR, + ACTIONS(5796), 1, anon_sym_QMARK, - ACTIONS(5780), 1, + ACTIONS(5798), 1, anon_sym_BANG, - ACTIONS(5782), 1, + ACTIONS(5800), 1, anon_sym_LBRACK2, - ACTIONS(5784), 1, + ACTIONS(5802), 1, anon_sym_AMP, - STATE(2721), 1, + ACTIONS(5804), 1, + anon_sym_map_LBRACK, + STATE(3421), 1, sym_plain_type, - STATE(4316), 1, + STATE(4406), 1, sym_reference_expression, - STATE(2611), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3110), 2, + STATE(3168), 2, sym_line_comment, sym_block_comment, - STATE(2692), 4, + STATE(3360), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3404), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2693), 12, + STATE(3401), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281318,55 +285844,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108732] = 22, + [110165] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3827), 1, + anon_sym_LPAREN, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3833), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3600), 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(5806), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5808), 1, + anon_sym_QMARK, + ACTIONS(5810), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5812), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5814), 1, anon_sym_AMP, - STATE(3996), 1, + STATE(2079), 1, sym_plain_type, - STATE(4423), 1, + STATE(4457), 1, sym_reference_expression, - STATE(3111), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, + STATE(1940), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3169), 2, + sym_line_comment, + sym_block_comment, + STATE(1986), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(1985), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281379,55 +285905,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108815] = 22, + [110248] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3827), 1, + anon_sym_LPAREN, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3833), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3600), 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(5806), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5808), 1, + anon_sym_QMARK, + ACTIONS(5810), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5812), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5814), 1, anon_sym_AMP, - STATE(2353), 1, + STATE(1954), 1, sym_plain_type, - STATE(4423), 1, + STATE(4457), 1, sym_reference_expression, - STATE(3112), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, + STATE(1940), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3170), 2, + sym_line_comment, + sym_block_comment, + STATE(1986), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(1985), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281440,55 +285966,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108898] = 22, + [110331] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4533), 1, + ACTIONS(4553), 1, sym_identifier, - ACTIONS(4535), 1, + ACTIONS(4555), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4557), 1, anon_sym_fn, - ACTIONS(4539), 1, + ACTIONS(4559), 1, anon_sym_STAR, - ACTIONS(4541), 1, + ACTIONS(4561), 1, anon_sym_struct, - ACTIONS(4551), 1, + ACTIONS(4571), 1, anon_sym_shared, - ACTIONS(4553), 1, + ACTIONS(4573), 1, anon_sym_map_LBRACK, - ACTIONS(4555), 1, + ACTIONS(4575), 1, anon_sym_chan, - ACTIONS(4557), 1, + ACTIONS(4577), 1, anon_sym_thread, - ACTIONS(4559), 1, + ACTIONS(4579), 1, anon_sym_atomic, - ACTIONS(5778), 1, + ACTIONS(5844), 1, anon_sym_QMARK, - ACTIONS(5780), 1, + ACTIONS(5846), 1, anon_sym_BANG, - ACTIONS(5782), 1, + ACTIONS(5848), 1, anon_sym_LBRACK2, - ACTIONS(5784), 1, + ACTIONS(5850), 1, anon_sym_AMP, - STATE(2706), 1, + STATE(2781), 1, sym_plain_type, - STATE(4316), 1, + STATE(4549), 1, sym_reference_expression, - STATE(2611), 2, + STATE(2644), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3113), 2, + STATE(3171), 2, sym_line_comment, sym_block_comment, - STATE(2692), 4, + STATE(2752), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2693), 12, + STATE(2753), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281501,55 +286027,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108981] = 22, + [110414] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4533), 1, + ACTIONS(4553), 1, sym_identifier, - ACTIONS(4535), 1, + ACTIONS(4555), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4557), 1, anon_sym_fn, - ACTIONS(4539), 1, + ACTIONS(4559), 1, anon_sym_STAR, - ACTIONS(4541), 1, + ACTIONS(4561), 1, anon_sym_struct, - ACTIONS(4551), 1, + ACTIONS(4571), 1, anon_sym_shared, - ACTIONS(4553), 1, + ACTIONS(4573), 1, anon_sym_map_LBRACK, - ACTIONS(4555), 1, + ACTIONS(4575), 1, anon_sym_chan, - ACTIONS(4557), 1, + ACTIONS(4577), 1, anon_sym_thread, - ACTIONS(4559), 1, + ACTIONS(4579), 1, anon_sym_atomic, - ACTIONS(5778), 1, + ACTIONS(5844), 1, anon_sym_QMARK, - ACTIONS(5780), 1, + ACTIONS(5846), 1, anon_sym_BANG, - ACTIONS(5782), 1, + ACTIONS(5848), 1, anon_sym_LBRACK2, - ACTIONS(5784), 1, + ACTIONS(5850), 1, anon_sym_AMP, - STATE(2723), 1, + STATE(2792), 1, sym_plain_type, - STATE(4316), 1, + STATE(4549), 1, sym_reference_expression, - STATE(2611), 2, + STATE(2644), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3114), 2, + STATE(3172), 2, sym_line_comment, sym_block_comment, - STATE(2692), 4, + STATE(2752), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2693), 12, + STATE(2753), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281562,55 +286088,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109064] = 22, + [110497] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4533), 1, - sym_identifier, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_fn, - ACTIONS(4539), 1, - anon_sym_STAR, - ACTIONS(4541), 1, - anon_sym_struct, - ACTIONS(4551), 1, - anon_sym_shared, - ACTIONS(4553), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(4555), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(4557), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(4559), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5778), 1, - anon_sym_QMARK, - ACTIONS(5780), 1, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5782), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5784), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(2734), 1, + STATE(2417), 1, sym_plain_type, - STATE(4316), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2611), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3115), 2, + STATE(3173), 2, sym_line_comment, sym_block_comment, - STATE(2692), 4, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2693), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281623,55 +286149,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109147] = 22, + [110580] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3797), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3799), 1, - anon_sym_LPAREN, - ACTIONS(3801), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3805), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3815), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3817), 1, - anon_sym_map_LBRACK, - ACTIONS(3819), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(3821), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(3823), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5760), 1, + ACTIONS(5816), 1, + anon_sym_LPAREN, + ACTIONS(5818), 1, anon_sym_STAR, - ACTIONS(5762), 1, + ACTIONS(5820), 1, anon_sym_QMARK, - ACTIONS(5764), 1, + ACTIONS(5822), 1, anon_sym_BANG, - ACTIONS(5766), 1, + ACTIONS(5824), 1, anon_sym_LBRACK2, - ACTIONS(5768), 1, + ACTIONS(5826), 1, anon_sym_AMP, - STATE(2045), 1, + ACTIONS(5828), 1, + anon_sym_map_LBRACK, + STATE(362), 1, sym_plain_type, - STATE(4365), 1, + STATE(4468), 1, sym_reference_expression, - STATE(1904), 2, + STATE(287), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3116), 2, + STATE(3174), 2, sym_line_comment, sym_block_comment, - STATE(1978), 4, + STATE(444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1980), 12, + STATE(446), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281684,55 +286210,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109230] = 22, + [110663] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(1195), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(1199), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(1209), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(1213), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(1215), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(1217), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5800), 1, + ACTIONS(5816), 1, anon_sym_LPAREN, - ACTIONS(5802), 1, + ACTIONS(5818), 1, anon_sym_STAR, - ACTIONS(5804), 1, + ACTIONS(5820), 1, anon_sym_QMARK, - ACTIONS(5806), 1, + ACTIONS(5822), 1, anon_sym_BANG, - ACTIONS(5808), 1, + ACTIONS(5824), 1, anon_sym_LBRACK2, - ACTIONS(5810), 1, + ACTIONS(5826), 1, anon_sym_AMP, - ACTIONS(5812), 1, + ACTIONS(5828), 1, anon_sym_map_LBRACK, - STATE(1052), 1, + STATE(497), 1, sym_plain_type, - STATE(4344), 1, + STATE(4468), 1, sym_reference_expression, - STATE(989), 2, + STATE(287), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3117), 2, + STATE(3175), 2, sym_line_comment, sym_block_comment, - STATE(1091), 4, + STATE(444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1089), 12, + STATE(446), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281745,55 +286271,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109313] = 22, + [110746] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3955), 1, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(3957), 1, + ACTIONS(3827), 1, + anon_sym_LPAREN, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(3959), 1, - anon_sym_STAR, - ACTIONS(3969), 1, + ACTIONS(3833), 1, + anon_sym_struct, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(3971), 1, + ACTIONS(3845), 1, anon_sym_map_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3847), 1, anon_sym_chan, - ACTIONS(3975), 1, + ACTIONS(3849), 1, anon_sym_thread, - ACTIONS(3977), 1, + ACTIONS(3851), 1, anon_sym_atomic, - ACTIONS(5770), 1, + ACTIONS(5806), 1, + anon_sym_STAR, + ACTIONS(5808), 1, anon_sym_QMARK, - ACTIONS(5772), 1, + ACTIONS(5810), 1, anon_sym_BANG, - ACTIONS(5774), 1, + ACTIONS(5812), 1, anon_sym_LBRACK2, - ACTIONS(5776), 1, + ACTIONS(5814), 1, anon_sym_AMP, - STATE(2386), 1, + STATE(1973), 1, sym_plain_type, - STATE(4423), 1, + STATE(4457), 1, sym_reference_expression, - STATE(2284), 2, + STATE(1940), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3118), 2, + STATE(3176), 2, sym_line_comment, sym_block_comment, - STATE(2290), 4, + STATE(1986), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(1985), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281806,55 +286332,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109396] = 22, + [110829] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3797), 1, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(3799), 1, + ACTIONS(3827), 1, anon_sym_LPAREN, - ACTIONS(3801), 1, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(3805), 1, + ACTIONS(3833), 1, anon_sym_struct, - ACTIONS(3815), 1, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(3817), 1, + ACTIONS(3845), 1, anon_sym_map_LBRACK, - ACTIONS(3819), 1, + ACTIONS(3847), 1, anon_sym_chan, - ACTIONS(3821), 1, + ACTIONS(3849), 1, anon_sym_thread, - ACTIONS(3823), 1, + ACTIONS(3851), 1, anon_sym_atomic, - ACTIONS(5760), 1, + ACTIONS(5806), 1, anon_sym_STAR, - ACTIONS(5762), 1, + ACTIONS(5808), 1, anon_sym_QMARK, - ACTIONS(5764), 1, + ACTIONS(5810), 1, anon_sym_BANG, - ACTIONS(5766), 1, + ACTIONS(5812), 1, anon_sym_LBRACK2, - ACTIONS(5768), 1, + ACTIONS(5814), 1, anon_sym_AMP, - STATE(2036), 1, + STATE(1972), 1, sym_plain_type, - STATE(4365), 1, + STATE(4457), 1, sym_reference_expression, - STATE(1904), 2, + STATE(1940), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3119), 2, + STATE(3177), 2, sym_line_comment, sym_block_comment, - STATE(1978), 4, + STATE(1986), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1980), 12, + STATE(1985), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281867,55 +286393,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109479] = 22, + [110912] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(3642), 1, - anon_sym_struct, - ACTIONS(5490), 1, + ACTIONS(3438), 1, anon_sym_fn, - ACTIONS(5502), 1, + ACTIONS(3442), 1, + anon_sym_struct, + ACTIONS(3452), 1, anon_sym_shared, - ACTIONS(5506), 1, + ACTIONS(3456), 1, anon_sym_chan, - ACTIONS(5508), 1, + ACTIONS(3458), 1, anon_sym_thread, - ACTIONS(5510), 1, + ACTIONS(3460), 1, anon_sym_atomic, - ACTIONS(5578), 1, + ACTIONS(5792), 1, anon_sym_LPAREN, - ACTIONS(5582), 1, + ACTIONS(5794), 1, anon_sym_STAR, - ACTIONS(5584), 1, + ACTIONS(5796), 1, anon_sym_QMARK, - ACTIONS(5586), 1, + ACTIONS(5798), 1, anon_sym_BANG, - ACTIONS(5588), 1, + ACTIONS(5800), 1, anon_sym_LBRACK2, - ACTIONS(5590), 1, + ACTIONS(5802), 1, anon_sym_AMP, - ACTIONS(5592), 1, + ACTIONS(5804), 1, anon_sym_map_LBRACK, - STATE(1645), 1, + STATE(3418), 1, sym_plain_type, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, - STATE(3120), 2, + STATE(3178), 2, sym_line_comment, sym_block_comment, - STATE(3302), 2, + STATE(3360), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1658), 4, + STATE(3404), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1657), 12, + STATE(3401), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281928,55 +286454,177 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109562] = 22, + [110995] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4068), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(4076), 1, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5364), 1, + anon_sym_BANG, + ACTIONS(5366), 1, + anon_sym_LBRACK2, + ACTIONS(5368), 1, + anon_sym_AMP, + STATE(3895), 1, + sym_plain_type, + STATE(4596), 1, + sym_reference_expression, + STATE(3179), 2, + sym_line_comment, + sym_block_comment, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [111078] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(4086), 1, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3989), 1, + sym_identifier, + ACTIONS(3991), 1, + anon_sym_fn, + ACTIONS(3993), 1, + anon_sym_STAR, + ACTIONS(4003), 1, anon_sym_shared, - ACTIONS(4090), 1, + ACTIONS(4005), 1, + anon_sym_map_LBRACK, + ACTIONS(4007), 1, anon_sym_chan, - ACTIONS(4092), 1, + ACTIONS(4009), 1, anon_sym_thread, - ACTIONS(4094), 1, + ACTIONS(4011), 1, anon_sym_atomic, - ACTIONS(5746), 1, + ACTIONS(5756), 1, + anon_sym_QMARK, + ACTIONS(5758), 1, + anon_sym_BANG, + ACTIONS(5760), 1, + anon_sym_LBRACK2, + ACTIONS(5762), 1, + anon_sym_AMP, + STATE(2851), 1, + sym_plain_type, + STATE(4596), 1, + sym_reference_expression, + STATE(2320), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3180), 2, + sym_line_comment, + sym_block_comment, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [111161] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4553), 1, + sym_identifier, + ACTIONS(4555), 1, anon_sym_LPAREN, - ACTIONS(5748), 1, + ACTIONS(4557), 1, + anon_sym_fn, + ACTIONS(4559), 1, anon_sym_STAR, - ACTIONS(5750), 1, + ACTIONS(4561), 1, + anon_sym_struct, + ACTIONS(4571), 1, + anon_sym_shared, + ACTIONS(4573), 1, + anon_sym_map_LBRACK, + ACTIONS(4575), 1, + anon_sym_chan, + ACTIONS(4577), 1, + anon_sym_thread, + ACTIONS(4579), 1, + anon_sym_atomic, + ACTIONS(5844), 1, anon_sym_QMARK, - ACTIONS(5752), 1, + ACTIONS(5846), 1, anon_sym_BANG, - ACTIONS(5754), 1, + ACTIONS(5848), 1, anon_sym_LBRACK2, - ACTIONS(5756), 1, + ACTIONS(5850), 1, anon_sym_AMP, - ACTIONS(5758), 1, - anon_sym_map_LBRACK, - STATE(2562), 1, + STATE(2661), 1, sym_plain_type, - STATE(4386), 1, + STATE(4549), 1, sym_reference_expression, - STATE(2419), 2, + STATE(2644), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3121), 2, + STATE(3181), 2, sym_line_comment, sym_block_comment, - STATE(2533), 4, + STATE(2752), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(2753), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281989,55 +286637,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109645] = 22, + [111244] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4068), 1, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(3827), 1, + anon_sym_LPAREN, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(4076), 1, + ACTIONS(3833), 1, anon_sym_struct, - ACTIONS(4086), 1, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(4090), 1, + ACTIONS(3845), 1, + anon_sym_map_LBRACK, + ACTIONS(3847), 1, anon_sym_chan, - ACTIONS(4092), 1, + ACTIONS(3849), 1, anon_sym_thread, - ACTIONS(4094), 1, + ACTIONS(3851), 1, anon_sym_atomic, - ACTIONS(5746), 1, - anon_sym_LPAREN, - ACTIONS(5748), 1, + ACTIONS(5806), 1, anon_sym_STAR, - ACTIONS(5750), 1, + ACTIONS(5808), 1, anon_sym_QMARK, - ACTIONS(5752), 1, + ACTIONS(5810), 1, anon_sym_BANG, - ACTIONS(5754), 1, + ACTIONS(5812), 1, anon_sym_LBRACK2, - ACTIONS(5756), 1, + ACTIONS(5814), 1, anon_sym_AMP, - ACTIONS(5758), 1, - anon_sym_map_LBRACK, - STATE(2561), 1, + STATE(1976), 1, sym_plain_type, - STATE(4386), 1, + STATE(4457), 1, sym_reference_expression, - STATE(2419), 2, + STATE(1940), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3122), 2, + STATE(3182), 2, sym_line_comment, sym_block_comment, - STATE(2533), 4, + STATE(1986), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(1985), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282050,55 +286698,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109728] = 22, + [111327] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3610), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3614), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3624), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3628), 1, - anon_sym_chan, - ACTIONS(3630), 1, - anon_sym_thread, - ACTIONS(3632), 1, - anon_sym_atomic, - ACTIONS(5594), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5598), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5600), 1, - anon_sym_QMARK, - ACTIONS(5602), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5604), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5606), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_map_LBRACK, - STATE(1456), 1, + STATE(4035), 1, sym_plain_type, - STATE(4472), 1, + STATE(4596), 1, sym_reference_expression, - STATE(1404), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3123), 2, + STATE(3183), 2, sym_line_comment, sym_block_comment, - STATE(1437), 4, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1440), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282111,55 +286759,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109811] = 22, + [111410] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, + ACTIONS(1318), 1, sym_identifier, - ACTIONS(3610), 1, + ACTIONS(1322), 1, anon_sym_fn, - ACTIONS(3614), 1, + ACTIONS(1326), 1, anon_sym_struct, - ACTIONS(3624), 1, + ACTIONS(1336), 1, anon_sym_shared, - ACTIONS(3628), 1, + ACTIONS(1340), 1, anon_sym_chan, - ACTIONS(3630), 1, + ACTIONS(1342), 1, anon_sym_thread, - ACTIONS(3632), 1, + ACTIONS(1344), 1, anon_sym_atomic, - ACTIONS(5594), 1, + ACTIONS(5764), 1, anon_sym_LPAREN, - ACTIONS(5598), 1, + ACTIONS(5766), 1, anon_sym_STAR, - ACTIONS(5600), 1, + ACTIONS(5768), 1, anon_sym_QMARK, - ACTIONS(5602), 1, + ACTIONS(5770), 1, anon_sym_BANG, - ACTIONS(5604), 1, + ACTIONS(5772), 1, anon_sym_LBRACK2, - ACTIONS(5606), 1, + ACTIONS(5774), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5776), 1, anon_sym_map_LBRACK, - STATE(1458), 1, + STATE(1070), 1, sym_plain_type, - STATE(4472), 1, + STATE(4440), 1, sym_reference_expression, - STATE(1404), 2, + STATE(986), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3124), 2, + STATE(3184), 2, sym_line_comment, sym_block_comment, - STATE(1437), 4, + STATE(1087), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1440), 12, + STATE(1071), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282172,55 +286820,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109894] = 22, + [111493] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3634), 1, + ACTIONS(4553), 1, sym_identifier, - ACTIONS(3638), 1, + ACTIONS(4555), 1, + anon_sym_LPAREN, + ACTIONS(4557), 1, anon_sym_fn, - ACTIONS(3642), 1, + ACTIONS(4559), 1, + anon_sym_STAR, + ACTIONS(4561), 1, anon_sym_struct, - ACTIONS(3652), 1, + ACTIONS(4571), 1, anon_sym_shared, - ACTIONS(3656), 1, + ACTIONS(4573), 1, + anon_sym_map_LBRACK, + ACTIONS(4575), 1, anon_sym_chan, - ACTIONS(3658), 1, + ACTIONS(4577), 1, anon_sym_thread, - ACTIONS(3660), 1, + ACTIONS(4579), 1, anon_sym_atomic, - ACTIONS(5578), 1, - anon_sym_LPAREN, - ACTIONS(5814), 1, - anon_sym_STAR, - ACTIONS(5816), 1, + ACTIONS(5844), 1, anon_sym_QMARK, - ACTIONS(5818), 1, + ACTIONS(5846), 1, anon_sym_BANG, - ACTIONS(5820), 1, + ACTIONS(5848), 1, anon_sym_LBRACK2, - ACTIONS(5822), 1, + ACTIONS(5850), 1, anon_sym_AMP, - ACTIONS(5824), 1, - anon_sym_map_LBRACK, - STATE(1740), 1, + STATE(2670), 1, sym_plain_type, - STATE(4375), 1, + STATE(4549), 1, sym_reference_expression, - STATE(1659), 2, + STATE(2644), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3125), 2, + STATE(3185), 2, sym_line_comment, sym_block_comment, - STATE(1658), 4, + STATE(2752), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1657), 12, + STATE(2753), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282233,55 +286881,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109977] = 22, + [111576] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3610), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3614), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3624), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3628), 1, - anon_sym_chan, - ACTIONS(3630), 1, - anon_sym_thread, - ACTIONS(3632), 1, - anon_sym_atomic, - ACTIONS(5594), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5598), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5600), 1, - anon_sym_QMARK, - ACTIONS(5602), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5604), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5606), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_map_LBRACK, - STATE(1459), 1, + STATE(3939), 1, sym_plain_type, - STATE(4472), 1, + STATE(4596), 1, sym_reference_expression, - STATE(1404), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3126), 2, + STATE(3186), 2, sym_line_comment, sym_block_comment, - STATE(1437), 4, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1440), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282294,7 +286942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110060] = 22, + [111659] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -282309,40 +286957,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(3826), 1, + STATE(4573), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3127), 2, + STATE(3187), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282355,55 +287003,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110143] = 22, + [111742] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, + ACTIONS(4553), 1, sym_identifier, - ACTIONS(3642), 1, - anon_sym_struct, - ACTIONS(5490), 1, + ACTIONS(4555), 1, + anon_sym_LPAREN, + ACTIONS(4557), 1, anon_sym_fn, - ACTIONS(5502), 1, + ACTIONS(4559), 1, + anon_sym_STAR, + ACTIONS(4561), 1, + anon_sym_struct, + ACTIONS(4571), 1, anon_sym_shared, - ACTIONS(5506), 1, + ACTIONS(4573), 1, + anon_sym_map_LBRACK, + ACTIONS(4575), 1, anon_sym_chan, - ACTIONS(5508), 1, + ACTIONS(4577), 1, anon_sym_thread, - ACTIONS(5510), 1, + ACTIONS(4579), 1, anon_sym_atomic, - ACTIONS(5578), 1, - anon_sym_LPAREN, - ACTIONS(5582), 1, - anon_sym_STAR, - ACTIONS(5584), 1, + ACTIONS(5844), 1, anon_sym_QMARK, - ACTIONS(5586), 1, + ACTIONS(5846), 1, anon_sym_BANG, - ACTIONS(5588), 1, + ACTIONS(5848), 1, anon_sym_LBRACK2, - ACTIONS(5590), 1, + ACTIONS(5850), 1, anon_sym_AMP, - ACTIONS(5592), 1, - anon_sym_map_LBRACK, - STATE(1646), 1, + STATE(2666), 1, sym_plain_type, - STATE(4356), 1, + STATE(4549), 1, sym_reference_expression, - STATE(3128), 2, - sym_line_comment, - sym_block_comment, - STATE(3302), 2, + STATE(2644), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1658), 4, + STATE(3188), 2, + sym_line_comment, + sym_block_comment, + STATE(2752), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1657), 12, + STATE(2753), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282416,55 +287064,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110226] = 22, + [111825] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3634), 1, + ACTIONS(1318), 1, sym_identifier, - ACTIONS(3638), 1, + ACTIONS(1322), 1, anon_sym_fn, - ACTIONS(3642), 1, + ACTIONS(1326), 1, anon_sym_struct, - ACTIONS(3652), 1, + ACTIONS(1336), 1, anon_sym_shared, - ACTIONS(3656), 1, + ACTIONS(1340), 1, anon_sym_chan, - ACTIONS(3658), 1, + ACTIONS(1342), 1, anon_sym_thread, - ACTIONS(3660), 1, + ACTIONS(1344), 1, anon_sym_atomic, - ACTIONS(5578), 1, + ACTIONS(5764), 1, anon_sym_LPAREN, - ACTIONS(5814), 1, + ACTIONS(5766), 1, anon_sym_STAR, - ACTIONS(5816), 1, + ACTIONS(5768), 1, anon_sym_QMARK, - ACTIONS(5818), 1, + ACTIONS(5770), 1, anon_sym_BANG, - ACTIONS(5820), 1, + ACTIONS(5772), 1, anon_sym_LBRACK2, - ACTIONS(5822), 1, + ACTIONS(5774), 1, anon_sym_AMP, - ACTIONS(5824), 1, + ACTIONS(5776), 1, anon_sym_map_LBRACK, - STATE(1725), 1, + STATE(1077), 1, sym_plain_type, - STATE(4375), 1, + STATE(4440), 1, sym_reference_expression, - STATE(1659), 2, + STATE(986), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3129), 2, + STATE(3189), 2, sym_line_comment, sym_block_comment, - STATE(1658), 4, + STATE(1087), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1657), 12, + STATE(1071), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282477,55 +287125,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110309] = 22, + [111908] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3610), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3614), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3624), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3628), 1, - anon_sym_chan, - ACTIONS(3630), 1, - anon_sym_thread, - ACTIONS(3632), 1, - anon_sym_atomic, - ACTIONS(5594), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5598), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5600), 1, - anon_sym_QMARK, - ACTIONS(5602), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5604), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5606), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_map_LBRACK, - STATE(1464), 1, - sym_plain_type, - STATE(4472), 1, + STATE(4596), 1, sym_reference_expression, - STATE(1404), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3130), 2, + STATE(4617), 1, + sym_plain_type, + STATE(3190), 2, sym_line_comment, sym_block_comment, - STATE(1437), 4, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1440), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282538,55 +287186,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110392] = 22, + [111991] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3460), 1, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(3464), 1, + ACTIONS(3438), 1, anon_sym_fn, - ACTIONS(3468), 1, + ACTIONS(3442), 1, anon_sym_struct, - ACTIONS(3478), 1, + ACTIONS(3452), 1, anon_sym_shared, - ACTIONS(3482), 1, + ACTIONS(3456), 1, anon_sym_chan, - ACTIONS(3484), 1, + ACTIONS(3458), 1, anon_sym_thread, - ACTIONS(3486), 1, + ACTIONS(3460), 1, anon_sym_atomic, - ACTIONS(5686), 1, + ACTIONS(5792), 1, anon_sym_LPAREN, - ACTIONS(5688), 1, + ACTIONS(5794), 1, anon_sym_STAR, - ACTIONS(5690), 1, + ACTIONS(5796), 1, anon_sym_QMARK, - ACTIONS(5692), 1, + ACTIONS(5798), 1, anon_sym_BANG, - ACTIONS(5694), 1, + ACTIONS(5800), 1, anon_sym_LBRACK2, - ACTIONS(5696), 1, + ACTIONS(5802), 1, anon_sym_AMP, - ACTIONS(5698), 1, + ACTIONS(5804), 1, anon_sym_map_LBRACK, - STATE(1212), 1, + STATE(3402), 1, sym_plain_type, - STATE(4407), 1, + STATE(4406), 1, sym_reference_expression, - STATE(1136), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3131), 2, + STATE(3191), 2, sym_line_comment, sym_block_comment, - STATE(1171), 4, + STATE(3360), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3404), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1169), 12, + STATE(3401), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282599,55 +287247,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110475] = 22, + [112074] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3566), 1, + ACTIONS(1318), 1, sym_identifier, - ACTIONS(3568), 1, - anon_sym_LPAREN, - ACTIONS(3570), 1, + ACTIONS(1322), 1, anon_sym_fn, - ACTIONS(3572), 1, - anon_sym_STAR, - ACTIONS(3574), 1, + ACTIONS(1326), 1, anon_sym_struct, - ACTIONS(3584), 1, + ACTIONS(1336), 1, anon_sym_shared, - ACTIONS(3586), 1, - anon_sym_map_LBRACK, - ACTIONS(3588), 1, + ACTIONS(1340), 1, anon_sym_chan, - ACTIONS(3590), 1, + ACTIONS(1342), 1, anon_sym_thread, - ACTIONS(3592), 1, + ACTIONS(1344), 1, anon_sym_atomic, - ACTIONS(5724), 1, + ACTIONS(5764), 1, + anon_sym_LPAREN, + ACTIONS(5766), 1, + anon_sym_STAR, + ACTIONS(5768), 1, anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(5770), 1, anon_sym_BANG, - ACTIONS(5728), 1, + ACTIONS(5772), 1, anon_sym_LBRACK2, - ACTIONS(5730), 1, + ACTIONS(5774), 1, anon_sym_AMP, - STATE(1306), 1, + ACTIONS(5776), 1, + anon_sym_map_LBRACK, + STATE(1067), 1, sym_plain_type, - STATE(4323), 1, + STATE(4440), 1, sym_reference_expression, - STATE(1277), 2, + STATE(986), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3132), 2, + STATE(3192), 2, sym_line_comment, sym_block_comment, - STATE(1296), 4, + STATE(1087), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1299), 12, + STATE(1071), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282660,55 +287308,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110558] = 22, + [112157] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(3642), 1, - anon_sym_struct, - ACTIONS(5490), 1, + ACTIONS(3827), 1, + anon_sym_LPAREN, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(5502), 1, + ACTIONS(3833), 1, + anon_sym_struct, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(5506), 1, + ACTIONS(3845), 1, + anon_sym_map_LBRACK, + ACTIONS(3847), 1, anon_sym_chan, - ACTIONS(5508), 1, + ACTIONS(3849), 1, anon_sym_thread, - ACTIONS(5510), 1, + ACTIONS(3851), 1, anon_sym_atomic, - ACTIONS(5578), 1, - anon_sym_LPAREN, - ACTIONS(5582), 1, + ACTIONS(5806), 1, anon_sym_STAR, - ACTIONS(5584), 1, + ACTIONS(5808), 1, anon_sym_QMARK, - ACTIONS(5586), 1, + ACTIONS(5810), 1, anon_sym_BANG, - ACTIONS(5588), 1, + ACTIONS(5812), 1, anon_sym_LBRACK2, - ACTIONS(5590), 1, + ACTIONS(5814), 1, anon_sym_AMP, - ACTIONS(5592), 1, - anon_sym_map_LBRACK, - STATE(1647), 1, + STATE(2069), 1, sym_plain_type, - STATE(4356), 1, + STATE(4457), 1, sym_reference_expression, - STATE(3133), 2, - sym_line_comment, - sym_block_comment, - STATE(3302), 2, + STATE(1940), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1658), 4, + STATE(3193), 2, + sym_line_comment, + sym_block_comment, + STATE(1986), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1657), 12, + STATE(1985), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282721,55 +287369,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110641] = 22, + [112240] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3797), 1, + ACTIONS(3638), 1, sym_identifier, - ACTIONS(3799), 1, - anon_sym_LPAREN, - ACTIONS(3801), 1, + ACTIONS(3642), 1, anon_sym_fn, - ACTIONS(3805), 1, + ACTIONS(3646), 1, anon_sym_struct, - ACTIONS(3815), 1, + ACTIONS(3656), 1, anon_sym_shared, - ACTIONS(3817), 1, - anon_sym_map_LBRACK, - ACTIONS(3819), 1, + ACTIONS(3660), 1, anon_sym_chan, - ACTIONS(3821), 1, + ACTIONS(3662), 1, anon_sym_thread, - ACTIONS(3823), 1, + ACTIONS(3664), 1, anon_sym_atomic, - ACTIONS(5760), 1, + ACTIONS(5608), 1, + anon_sym_LPAREN, + ACTIONS(5612), 1, anon_sym_STAR, - ACTIONS(5762), 1, + ACTIONS(5614), 1, anon_sym_QMARK, - ACTIONS(5764), 1, + ACTIONS(5616), 1, anon_sym_BANG, - ACTIONS(5766), 1, + ACTIONS(5618), 1, anon_sym_LBRACK2, - ACTIONS(5768), 1, + ACTIONS(5620), 1, anon_sym_AMP, - STATE(2006), 1, + ACTIONS(5622), 1, + anon_sym_map_LBRACK, + STATE(1513), 1, sym_plain_type, - STATE(4365), 1, + STATE(4554), 1, sym_reference_expression, - STATE(1904), 2, + STATE(1447), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3134), 2, + STATE(3194), 2, sym_line_comment, sym_block_comment, - STATE(1978), 4, + STATE(1565), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1980), 12, + STATE(1522), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282782,55 +287430,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110724] = 22, + [112323] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4068), 1, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(3827), 1, + anon_sym_LPAREN, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(4076), 1, + ACTIONS(3833), 1, anon_sym_struct, - ACTIONS(4086), 1, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(4090), 1, + ACTIONS(3845), 1, + anon_sym_map_LBRACK, + ACTIONS(3847), 1, anon_sym_chan, - ACTIONS(4092), 1, + ACTIONS(3849), 1, anon_sym_thread, - ACTIONS(4094), 1, + ACTIONS(3851), 1, anon_sym_atomic, - ACTIONS(5746), 1, - anon_sym_LPAREN, - ACTIONS(5748), 1, + ACTIONS(5806), 1, anon_sym_STAR, - ACTIONS(5750), 1, + ACTIONS(5808), 1, anon_sym_QMARK, - ACTIONS(5752), 1, + ACTIONS(5810), 1, anon_sym_BANG, - ACTIONS(5754), 1, + ACTIONS(5812), 1, anon_sym_LBRACK2, - ACTIONS(5756), 1, + ACTIONS(5814), 1, anon_sym_AMP, - ACTIONS(5758), 1, - anon_sym_map_LBRACK, - STATE(2542), 1, + STATE(1961), 1, sym_plain_type, - STATE(4386), 1, + STATE(4457), 1, sym_reference_expression, - STATE(2419), 2, + STATE(1940), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3135), 2, + STATE(3195), 2, sym_line_comment, sym_block_comment, - STATE(2533), 4, + STATE(1986), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(1985), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282843,55 +287491,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110807] = 22, + [112406] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3797), 1, + ACTIONS(1318), 1, sym_identifier, - ACTIONS(3799), 1, - anon_sym_LPAREN, - ACTIONS(3801), 1, + ACTIONS(1322), 1, anon_sym_fn, - ACTIONS(3805), 1, + ACTIONS(1326), 1, anon_sym_struct, - ACTIONS(3815), 1, + ACTIONS(1336), 1, anon_sym_shared, - ACTIONS(3817), 1, - anon_sym_map_LBRACK, - ACTIONS(3819), 1, + ACTIONS(1340), 1, anon_sym_chan, - ACTIONS(3821), 1, + ACTIONS(1342), 1, anon_sym_thread, - ACTIONS(3823), 1, + ACTIONS(1344), 1, anon_sym_atomic, - ACTIONS(5760), 1, + ACTIONS(5764), 1, + anon_sym_LPAREN, + ACTIONS(5766), 1, anon_sym_STAR, - ACTIONS(5762), 1, + ACTIONS(5768), 1, anon_sym_QMARK, - ACTIONS(5764), 1, + ACTIONS(5770), 1, anon_sym_BANG, - ACTIONS(5766), 1, + ACTIONS(5772), 1, anon_sym_LBRACK2, - ACTIONS(5768), 1, + ACTIONS(5774), 1, anon_sym_AMP, - STATE(2005), 1, + ACTIONS(5776), 1, + anon_sym_map_LBRACK, + STATE(1004), 1, sym_plain_type, - STATE(4365), 1, + STATE(4440), 1, sym_reference_expression, - STATE(1904), 2, + STATE(986), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3136), 2, + STATE(3196), 2, sym_line_comment, sym_block_comment, - STATE(1978), 4, + STATE(1087), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1980), 12, + STATE(1071), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282904,55 +287552,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110890] = 22, + [112489] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3797), 1, + ACTIONS(1318), 1, sym_identifier, - ACTIONS(3799), 1, - anon_sym_LPAREN, - ACTIONS(3801), 1, + ACTIONS(1322), 1, anon_sym_fn, - ACTIONS(3805), 1, + ACTIONS(1326), 1, anon_sym_struct, - ACTIONS(3815), 1, + ACTIONS(1336), 1, anon_sym_shared, - ACTIONS(3817), 1, - anon_sym_map_LBRACK, - ACTIONS(3819), 1, + ACTIONS(1340), 1, anon_sym_chan, - ACTIONS(3821), 1, + ACTIONS(1342), 1, anon_sym_thread, - ACTIONS(3823), 1, + ACTIONS(1344), 1, anon_sym_atomic, - ACTIONS(5760), 1, + ACTIONS(5764), 1, + anon_sym_LPAREN, + ACTIONS(5766), 1, anon_sym_STAR, - ACTIONS(5762), 1, + ACTIONS(5768), 1, anon_sym_QMARK, - ACTIONS(5764), 1, + ACTIONS(5770), 1, anon_sym_BANG, - ACTIONS(5766), 1, + ACTIONS(5772), 1, anon_sym_LBRACK2, - ACTIONS(5768), 1, + ACTIONS(5774), 1, anon_sym_AMP, - STATE(2004), 1, + ACTIONS(5776), 1, + anon_sym_map_LBRACK, + STATE(1081), 1, sym_plain_type, - STATE(4365), 1, + STATE(4440), 1, sym_reference_expression, - STATE(1904), 2, + STATE(986), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3137), 2, + STATE(3197), 2, sym_line_comment, sym_block_comment, - STATE(1978), 4, + STATE(1087), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1980), 12, + STATE(1071), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282965,55 +287613,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110973] = 22, + [112572] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3566), 1, - sym_identifier, - ACTIONS(3568), 1, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3570), 1, + ACTIONS(3989), 1, + sym_identifier, + ACTIONS(3991), 1, anon_sym_fn, - ACTIONS(3572), 1, + ACTIONS(3993), 1, anon_sym_STAR, - ACTIONS(3574), 1, - anon_sym_struct, - ACTIONS(3584), 1, + ACTIONS(4003), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(4005), 1, anon_sym_map_LBRACK, - ACTIONS(3588), 1, + ACTIONS(4007), 1, anon_sym_chan, - ACTIONS(3590), 1, + ACTIONS(4009), 1, anon_sym_thread, - ACTIONS(3592), 1, + ACTIONS(4011), 1, anon_sym_atomic, - ACTIONS(5724), 1, + ACTIONS(5756), 1, anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(5758), 1, anon_sym_BANG, - ACTIONS(5728), 1, + ACTIONS(5760), 1, anon_sym_LBRACK2, - ACTIONS(5730), 1, + ACTIONS(5762), 1, anon_sym_AMP, - STATE(1305), 1, + STATE(2358), 1, sym_plain_type, - STATE(4323), 1, + STATE(4596), 1, sym_reference_expression, - STATE(1277), 2, + STATE(2320), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3138), 2, + STATE(3198), 2, sym_line_comment, sym_block_comment, - STATE(1296), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1299), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283026,55 +287674,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111056] = 22, + [112655] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4068), 1, + ACTIONS(4070), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(4074), 1, anon_sym_fn, - ACTIONS(4076), 1, + ACTIONS(4078), 1, anon_sym_struct, - ACTIONS(4086), 1, + ACTIONS(4088), 1, anon_sym_shared, - ACTIONS(4090), 1, - anon_sym_chan, ACTIONS(4092), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(4094), 1, + anon_sym_thread, + ACTIONS(4096), 1, anon_sym_atomic, - ACTIONS(5746), 1, + ACTIONS(5830), 1, anon_sym_LPAREN, - ACTIONS(5748), 1, + ACTIONS(5832), 1, anon_sym_STAR, - ACTIONS(5750), 1, + ACTIONS(5834), 1, anon_sym_QMARK, - ACTIONS(5752), 1, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5754), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5756), 1, + ACTIONS(5840), 1, anon_sym_AMP, - ACTIONS(5758), 1, + ACTIONS(5842), 1, anon_sym_map_LBRACK, - STATE(2538), 1, + STATE(2559), 1, sym_plain_type, - STATE(4386), 1, + STATE(4478), 1, sym_reference_expression, - STATE(2419), 2, + STATE(2459), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3139), 2, + STATE(3199), 2, sym_line_comment, sym_block_comment, - STATE(2533), 4, + STATE(2595), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(2596), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283087,55 +287735,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111139] = 22, + [112738] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, + ACTIONS(3570), 1, sym_identifier, - ACTIONS(1195), 1, + ACTIONS(3572), 1, + anon_sym_LPAREN, + ACTIONS(3574), 1, anon_sym_fn, - ACTIONS(1199), 1, + ACTIONS(3576), 1, + anon_sym_STAR, + ACTIONS(3578), 1, anon_sym_struct, - ACTIONS(1209), 1, + ACTIONS(3588), 1, anon_sym_shared, - ACTIONS(1213), 1, + ACTIONS(3590), 1, + anon_sym_map_LBRACK, + ACTIONS(3592), 1, anon_sym_chan, - ACTIONS(1215), 1, + ACTIONS(3594), 1, anon_sym_thread, - ACTIONS(1217), 1, + ACTIONS(3596), 1, anon_sym_atomic, - ACTIONS(5800), 1, - anon_sym_LPAREN, - ACTIONS(5802), 1, - anon_sym_STAR, - ACTIONS(5804), 1, + ACTIONS(5866), 1, anon_sym_QMARK, - ACTIONS(5806), 1, + ACTIONS(5868), 1, anon_sym_BANG, - ACTIONS(5808), 1, + ACTIONS(5870), 1, anon_sym_LBRACK2, - ACTIONS(5810), 1, + ACTIONS(5872), 1, anon_sym_AMP, - ACTIONS(5812), 1, - anon_sym_map_LBRACK, - STATE(1043), 1, + STATE(1360), 1, sym_plain_type, - STATE(4344), 1, + STATE(4428), 1, sym_reference_expression, - STATE(989), 2, + STATE(1286), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3140), 2, + STATE(3200), 2, sym_line_comment, sym_block_comment, - STATE(1091), 4, + STATE(1334), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1089), 12, + STATE(1340), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283148,55 +287796,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111222] = 22, + [112821] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4068), 1, + ACTIONS(3638), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(3642), 1, anon_sym_fn, - ACTIONS(4076), 1, + ACTIONS(3646), 1, anon_sym_struct, - ACTIONS(4086), 1, + ACTIONS(3656), 1, anon_sym_shared, - ACTIONS(4090), 1, + ACTIONS(3660), 1, anon_sym_chan, - ACTIONS(4092), 1, + ACTIONS(3662), 1, anon_sym_thread, - ACTIONS(4094), 1, + ACTIONS(3664), 1, anon_sym_atomic, - ACTIONS(5746), 1, + ACTIONS(5608), 1, anon_sym_LPAREN, - ACTIONS(5748), 1, + ACTIONS(5612), 1, anon_sym_STAR, - ACTIONS(5750), 1, + ACTIONS(5614), 1, anon_sym_QMARK, - ACTIONS(5752), 1, + ACTIONS(5616), 1, anon_sym_BANG, - ACTIONS(5754), 1, + ACTIONS(5618), 1, anon_sym_LBRACK2, - ACTIONS(5756), 1, + ACTIONS(5620), 1, anon_sym_AMP, - ACTIONS(5758), 1, + ACTIONS(5622), 1, anon_sym_map_LBRACK, - STATE(2564), 1, + STATE(1511), 1, sym_plain_type, - STATE(4386), 1, + STATE(4554), 1, sym_reference_expression, - STATE(2419), 2, + STATE(1447), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3141), 2, + STATE(3201), 2, sym_line_comment, sym_block_comment, - STATE(2533), 4, + STATE(1565), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(1522), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283209,55 +287857,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111305] = 22, + [112904] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3566), 1, - sym_identifier, - ACTIONS(3568), 1, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3570), 1, + ACTIONS(3989), 1, + sym_identifier, + ACTIONS(3991), 1, anon_sym_fn, - ACTIONS(3572), 1, + ACTIONS(3993), 1, anon_sym_STAR, - ACTIONS(3574), 1, - anon_sym_struct, - ACTIONS(3584), 1, + ACTIONS(4003), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(4005), 1, anon_sym_map_LBRACK, - ACTIONS(3588), 1, + ACTIONS(4007), 1, anon_sym_chan, - ACTIONS(3590), 1, + ACTIONS(4009), 1, anon_sym_thread, - ACTIONS(3592), 1, + ACTIONS(4011), 1, anon_sym_atomic, - ACTIONS(5724), 1, + ACTIONS(5756), 1, anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(5758), 1, anon_sym_BANG, - ACTIONS(5728), 1, + ACTIONS(5760), 1, anon_sym_LBRACK2, - ACTIONS(5730), 1, + ACTIONS(5762), 1, anon_sym_AMP, - STATE(1304), 1, + STATE(2421), 1, sym_plain_type, - STATE(4323), 1, + STATE(4596), 1, sym_reference_expression, - STATE(1277), 2, + STATE(2320), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3142), 2, + STATE(3202), 2, sym_line_comment, sym_block_comment, - STATE(1296), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1299), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283270,55 +287918,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111388] = 22, + [112987] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4533), 1, + ACTIONS(3570), 1, sym_identifier, - ACTIONS(4535), 1, + ACTIONS(3572), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3574), 1, anon_sym_fn, - ACTIONS(4539), 1, + ACTIONS(3576), 1, anon_sym_STAR, - ACTIONS(4541), 1, + ACTIONS(3578), 1, anon_sym_struct, - ACTIONS(4551), 1, + ACTIONS(3588), 1, anon_sym_shared, - ACTIONS(4553), 1, + ACTIONS(3590), 1, anon_sym_map_LBRACK, - ACTIONS(4555), 1, + ACTIONS(3592), 1, anon_sym_chan, - ACTIONS(4557), 1, + ACTIONS(3594), 1, anon_sym_thread, - ACTIONS(4559), 1, + ACTIONS(3596), 1, anon_sym_atomic, - ACTIONS(5778), 1, + ACTIONS(5866), 1, anon_sym_QMARK, - ACTIONS(5780), 1, + ACTIONS(5868), 1, anon_sym_BANG, - ACTIONS(5782), 1, + ACTIONS(5870), 1, anon_sym_LBRACK2, - ACTIONS(5784), 1, + ACTIONS(5872), 1, anon_sym_AMP, - STATE(2736), 1, + STATE(1327), 1, sym_plain_type, - STATE(4316), 1, + STATE(4428), 1, sym_reference_expression, - STATE(2611), 2, + STATE(1286), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3143), 2, + STATE(3203), 2, sym_line_comment, sym_block_comment, - STATE(2692), 4, + STATE(1334), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2693), 12, + STATE(1340), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283331,55 +287979,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111471] = 22, + [113070] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3924), 1, + ACTIONS(3638), 1, sym_identifier, - ACTIONS(3928), 1, + ACTIONS(3642), 1, anon_sym_fn, - ACTIONS(3932), 1, + ACTIONS(3646), 1, anon_sym_struct, - ACTIONS(3942), 1, + ACTIONS(3656), 1, anon_sym_shared, - ACTIONS(3946), 1, + ACTIONS(3660), 1, anon_sym_chan, - ACTIONS(3948), 1, + ACTIONS(3662), 1, anon_sym_thread, - ACTIONS(3950), 1, + ACTIONS(3664), 1, anon_sym_atomic, - ACTIONS(5732), 1, + ACTIONS(5608), 1, anon_sym_LPAREN, - ACTIONS(5734), 1, + ACTIONS(5612), 1, anon_sym_STAR, - ACTIONS(5736), 1, + ACTIONS(5614), 1, anon_sym_QMARK, - ACTIONS(5738), 1, + ACTIONS(5616), 1, anon_sym_BANG, - ACTIONS(5740), 1, + ACTIONS(5618), 1, anon_sym_LBRACK2, - ACTIONS(5742), 1, + ACTIONS(5620), 1, anon_sym_AMP, - ACTIONS(5744), 1, + ACTIONS(5622), 1, anon_sym_map_LBRACK, - STATE(2187), 1, + STATE(1540), 1, sym_plain_type, - STATE(4466), 1, + STATE(4554), 1, sym_reference_expression, - STATE(2130), 2, + STATE(1447), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3144), 2, + STATE(3204), 2, sym_line_comment, sym_block_comment, - STATE(2178), 4, + STATE(1565), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2179), 12, + STATE(1522), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283392,55 +288040,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111554] = 22, + [113153] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3700), 1, + ACTIONS(1318), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(1322), 1, anon_sym_fn, - ACTIONS(3708), 1, + ACTIONS(1326), 1, anon_sym_struct, - ACTIONS(3718), 1, + ACTIONS(1336), 1, anon_sym_shared, - ACTIONS(3722), 1, + ACTIONS(1340), 1, anon_sym_chan, - ACTIONS(3724), 1, + ACTIONS(1342), 1, anon_sym_thread, - ACTIONS(3726), 1, + ACTIONS(1344), 1, anon_sym_atomic, - ACTIONS(5700), 1, + ACTIONS(5764), 1, anon_sym_LPAREN, - ACTIONS(5702), 1, + ACTIONS(5766), 1, anon_sym_STAR, - ACTIONS(5704), 1, + ACTIONS(5768), 1, anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5770), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5772), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5774), 1, anon_sym_AMP, - ACTIONS(5712), 1, + ACTIONS(5776), 1, anon_sym_map_LBRACK, - STATE(1858), 1, + STATE(1032), 1, sym_plain_type, - STATE(4449), 1, + STATE(4440), 1, sym_reference_expression, - STATE(1760), 2, + STATE(986), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3145), 2, + STATE(3205), 2, sym_line_comment, sym_block_comment, - STATE(1831), 4, + STATE(1087), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1830), 12, + STATE(1071), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283453,55 +288101,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111637] = 22, + [113236] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3700), 1, + ACTIONS(1318), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(1322), 1, anon_sym_fn, - ACTIONS(3708), 1, + ACTIONS(1326), 1, anon_sym_struct, - ACTIONS(3718), 1, + ACTIONS(1336), 1, anon_sym_shared, - ACTIONS(3722), 1, + ACTIONS(1340), 1, anon_sym_chan, - ACTIONS(3724), 1, + ACTIONS(1342), 1, anon_sym_thread, - ACTIONS(3726), 1, + ACTIONS(1344), 1, anon_sym_atomic, - ACTIONS(5700), 1, + ACTIONS(5764), 1, anon_sym_LPAREN, - ACTIONS(5702), 1, + ACTIONS(5766), 1, anon_sym_STAR, - ACTIONS(5704), 1, + ACTIONS(5768), 1, anon_sym_QMARK, - ACTIONS(5706), 1, + ACTIONS(5770), 1, anon_sym_BANG, - ACTIONS(5708), 1, + ACTIONS(5772), 1, anon_sym_LBRACK2, - ACTIONS(5710), 1, + ACTIONS(5774), 1, anon_sym_AMP, - ACTIONS(5712), 1, + ACTIONS(5776), 1, anon_sym_map_LBRACK, - STATE(1862), 1, + STATE(1040), 1, sym_plain_type, - STATE(4449), 1, + STATE(4440), 1, sym_reference_expression, - STATE(1760), 2, + STATE(986), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3146), 2, + STATE(3206), 2, sym_line_comment, sym_block_comment, - STATE(1831), 4, + STATE(1087), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1830), 12, + STATE(1071), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283514,55 +288162,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111720] = 22, + [113319] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(1318), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(1322), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(1326), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(1336), 1, anon_sym_shared, - ACTIONS(3598), 1, + ACTIONS(1340), 1, + anon_sym_chan, + ACTIONS(1342), 1, + anon_sym_thread, + ACTIONS(1344), 1, + anon_sym_atomic, + ACTIONS(5764), 1, anon_sym_LPAREN, - ACTIONS(3600), 1, + ACTIONS(5766), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5768), 1, + anon_sym_QMARK, + ACTIONS(5770), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5772), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5774), 1, anon_sym_AMP, - STATE(3962), 1, + ACTIONS(5776), 1, + anon_sym_map_LBRACK, + STATE(1015), 1, sym_plain_type, - STATE(4423), 1, + STATE(4440), 1, sym_reference_expression, - STATE(3147), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, + STATE(986), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3207), 2, + sym_line_comment, + sym_block_comment, + STATE(1087), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(1071), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283575,55 +288223,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111803] = 22, + [113402] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3566), 1, + ACTIONS(1318), 1, sym_identifier, - ACTIONS(3568), 1, - anon_sym_LPAREN, - ACTIONS(3570), 1, + ACTIONS(1322), 1, anon_sym_fn, - ACTIONS(3572), 1, - anon_sym_STAR, - ACTIONS(3574), 1, + ACTIONS(1326), 1, anon_sym_struct, - ACTIONS(3584), 1, + ACTIONS(1336), 1, anon_sym_shared, - ACTIONS(3586), 1, - anon_sym_map_LBRACK, - ACTIONS(3588), 1, + ACTIONS(1340), 1, anon_sym_chan, - ACTIONS(3590), 1, + ACTIONS(1342), 1, anon_sym_thread, - ACTIONS(3592), 1, + ACTIONS(1344), 1, anon_sym_atomic, - ACTIONS(5724), 1, + ACTIONS(5764), 1, + anon_sym_LPAREN, + ACTIONS(5766), 1, + anon_sym_STAR, + ACTIONS(5768), 1, anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(5770), 1, anon_sym_BANG, - ACTIONS(5728), 1, + ACTIONS(5772), 1, anon_sym_LBRACK2, - ACTIONS(5730), 1, + ACTIONS(5774), 1, anon_sym_AMP, - STATE(1381), 1, + ACTIONS(5776), 1, + anon_sym_map_LBRACK, + STATE(1002), 1, sym_plain_type, - STATE(4323), 1, + STATE(4440), 1, sym_reference_expression, - STATE(1277), 2, + STATE(986), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3148), 2, + STATE(3208), 2, sym_line_comment, sym_block_comment, - STATE(1296), 4, + STATE(1087), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1299), 12, + STATE(1071), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283636,55 +288284,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111886] = 22, + [113485] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4533), 1, + ACTIONS(3610), 1, sym_identifier, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3614), 1, anon_sym_fn, - ACTIONS(4539), 1, - anon_sym_STAR, - ACTIONS(4541), 1, + ACTIONS(3618), 1, anon_sym_struct, - ACTIONS(4551), 1, + ACTIONS(3628), 1, anon_sym_shared, - ACTIONS(4553), 1, - anon_sym_map_LBRACK, - ACTIONS(4555), 1, + ACTIONS(3632), 1, anon_sym_chan, - ACTIONS(4557), 1, + ACTIONS(3634), 1, anon_sym_thread, - ACTIONS(4559), 1, + ACTIONS(3636), 1, anon_sym_atomic, - ACTIONS(5778), 1, + ACTIONS(5640), 1, + anon_sym_LPAREN, + ACTIONS(5642), 1, + anon_sym_STAR, + ACTIONS(5644), 1, anon_sym_QMARK, - ACTIONS(5780), 1, + ACTIONS(5646), 1, anon_sym_BANG, - ACTIONS(5782), 1, + ACTIONS(5648), 1, anon_sym_LBRACK2, - ACTIONS(5784), 1, + ACTIONS(5650), 1, anon_sym_AMP, - STATE(2665), 1, + ACTIONS(5652), 1, + anon_sym_map_LBRACK, + STATE(1440), 1, sym_plain_type, - STATE(4316), 1, + STATE(4415), 1, sym_reference_expression, - STATE(2611), 2, + STATE(1405), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3149), 2, + STATE(3209), 2, sym_line_comment, sym_block_comment, - STATE(2692), 4, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2693), 12, + STATE(1454), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283697,55 +288345,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111969] = 22, + [113568] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(565), 1, + ACTIONS(3570), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3572), 1, + anon_sym_LPAREN, + ACTIONS(3574), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3576), 1, + anon_sym_STAR, + ACTIONS(3578), 1, anon_sym_struct, - ACTIONS(585), 1, + ACTIONS(3588), 1, anon_sym_shared, - ACTIONS(589), 1, + ACTIONS(3590), 1, + anon_sym_map_LBRACK, + ACTIONS(3592), 1, anon_sym_chan, - ACTIONS(591), 1, + ACTIONS(3594), 1, anon_sym_thread, - ACTIONS(593), 1, + ACTIONS(3596), 1, anon_sym_atomic, - ACTIONS(5786), 1, - anon_sym_LPAREN, - ACTIONS(5788), 1, - anon_sym_STAR, - ACTIONS(5790), 1, + ACTIONS(5866), 1, anon_sym_QMARK, - ACTIONS(5792), 1, + ACTIONS(5868), 1, anon_sym_BANG, - ACTIONS(5794), 1, + ACTIONS(5870), 1, anon_sym_LBRACK2, - ACTIONS(5796), 1, + ACTIONS(5872), 1, anon_sym_AMP, - ACTIONS(5798), 1, - anon_sym_map_LBRACK, - STATE(335), 1, + STATE(1335), 1, sym_plain_type, - STATE(4392), 1, + STATE(4428), 1, sym_reference_expression, - STATE(267), 2, + STATE(1286), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3150), 2, + STATE(3210), 2, sym_line_comment, sym_block_comment, - STATE(359), 4, + STATE(1334), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(358), 12, + STATE(1340), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283758,55 +288406,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112052] = 22, + [113651] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3566), 1, + ACTIONS(3570), 1, sym_identifier, - ACTIONS(3568), 1, + ACTIONS(3572), 1, anon_sym_LPAREN, - ACTIONS(3570), 1, + ACTIONS(3574), 1, anon_sym_fn, - ACTIONS(3572), 1, + ACTIONS(3576), 1, anon_sym_STAR, - ACTIONS(3574), 1, + ACTIONS(3578), 1, anon_sym_struct, - ACTIONS(3584), 1, + ACTIONS(3588), 1, anon_sym_shared, - ACTIONS(3586), 1, + ACTIONS(3590), 1, anon_sym_map_LBRACK, - ACTIONS(3588), 1, + ACTIONS(3592), 1, anon_sym_chan, - ACTIONS(3590), 1, + ACTIONS(3594), 1, anon_sym_thread, - ACTIONS(3592), 1, + ACTIONS(3596), 1, anon_sym_atomic, - ACTIONS(5724), 1, + ACTIONS(5866), 1, anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(5868), 1, anon_sym_BANG, - ACTIONS(5728), 1, + ACTIONS(5870), 1, anon_sym_LBRACK2, - ACTIONS(5730), 1, + ACTIONS(5872), 1, anon_sym_AMP, - STATE(1380), 1, + STATE(1336), 1, sym_plain_type, - STATE(4323), 1, + STATE(4428), 1, sym_reference_expression, - STATE(1277), 2, + STATE(1286), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3151), 2, + STATE(3211), 2, sym_line_comment, sym_block_comment, - STATE(1296), 4, + STATE(1334), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1299), 12, + STATE(1340), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283819,55 +288467,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112135] = 22, + [113734] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, + sym_identifier, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3955), 1, - sym_identifier, - ACTIONS(3957), 1, - anon_sym_fn, - ACTIONS(3959), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(3969), 1, - anon_sym_shared, - ACTIONS(3971), 1, - anon_sym_map_LBRACK, - ACTIONS(3973), 1, - anon_sym_chan, - ACTIONS(3975), 1, - anon_sym_thread, - ACTIONS(3977), 1, - anon_sym_atomic, - ACTIONS(5770), 1, - anon_sym_QMARK, - ACTIONS(5772), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5774), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5776), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(2353), 1, + STATE(3881), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2284), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3152), 2, + STATE(3212), 2, sym_line_comment, sym_block_comment, - STATE(2290), 4, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283880,7 +288528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112218] = 22, + [113817] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -283895,40 +288543,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(4423), 1, - sym_reference_expression, - STATE(4581), 1, + STATE(4401), 1, sym_plain_type, - STATE(3153), 2, + STATE(4596), 1, + sym_reference_expression, + STATE(3213), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283941,55 +288589,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112301] = 22, + [113900] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3924), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3928), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3932), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3942), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3946), 1, - anon_sym_chan, - ACTIONS(3948), 1, - anon_sym_thread, - ACTIONS(3950), 1, - anon_sym_atomic, - ACTIONS(5732), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5734), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5736), 1, - anon_sym_QMARK, - ACTIONS(5738), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5740), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5742), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5744), 1, - anon_sym_map_LBRACK, - STATE(2191), 1, + STATE(2358), 1, sym_plain_type, - STATE(4466), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2130), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3154), 2, + STATE(3214), 2, sym_line_comment, sym_block_comment, - STATE(2178), 4, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2179), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284002,55 +288650,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112384] = 22, + [113983] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(565), 1, + ACTIONS(3959), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3963), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3967), 1, anon_sym_struct, - ACTIONS(585), 1, + ACTIONS(3977), 1, anon_sym_shared, - ACTIONS(589), 1, + ACTIONS(3981), 1, anon_sym_chan, - ACTIONS(591), 1, + ACTIONS(3983), 1, anon_sym_thread, - ACTIONS(593), 1, + ACTIONS(3985), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - ACTIONS(5788), 1, + ACTIONS(5854), 1, anon_sym_STAR, - ACTIONS(5790), 1, + ACTIONS(5856), 1, anon_sym_QMARK, - ACTIONS(5792), 1, + ACTIONS(5858), 1, anon_sym_BANG, - ACTIONS(5794), 1, + ACTIONS(5860), 1, anon_sym_LBRACK2, - ACTIONS(5796), 1, + ACTIONS(5862), 1, anon_sym_AMP, - ACTIONS(5798), 1, + ACTIONS(5864), 1, anon_sym_map_LBRACK, - STATE(458), 1, + STATE(2258), 1, sym_plain_type, - STATE(4392), 1, + STATE(4545), 1, sym_reference_expression, - STATE(267), 2, + STATE(2183), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3155), 2, + STATE(3215), 2, sym_line_comment, sym_block_comment, - STATE(359), 4, + STATE(2203), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(358), 12, + STATE(2202), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284063,7 +288711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112467] = 22, + [114066] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -284078,40 +288726,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(3879), 1, + STATE(3987), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3156), 2, + STATE(3216), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2350), 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, + [114149] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3570), 1, + sym_identifier, + ACTIONS(3572), 1, + anon_sym_LPAREN, + ACTIONS(3574), 1, + anon_sym_fn, + ACTIONS(3576), 1, + anon_sym_STAR, + ACTIONS(3578), 1, + anon_sym_struct, + ACTIONS(3588), 1, + anon_sym_shared, + ACTIONS(3590), 1, + anon_sym_map_LBRACK, + ACTIONS(3592), 1, + anon_sym_chan, + ACTIONS(3594), 1, + anon_sym_thread, + ACTIONS(3596), 1, + anon_sym_atomic, + ACTIONS(5866), 1, + anon_sym_QMARK, + ACTIONS(5868), 1, + anon_sym_BANG, + ACTIONS(5870), 1, + anon_sym_LBRACK2, + ACTIONS(5872), 1, + anon_sym_AMP, + STATE(1347), 1, + sym_plain_type, + STATE(4428), 1, + sym_reference_expression, + STATE(1286), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3217), 2, + sym_line_comment, + sym_block_comment, + STATE(1334), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1340), 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, + [114232] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3570), 1, + sym_identifier, + ACTIONS(3572), 1, + anon_sym_LPAREN, + ACTIONS(3574), 1, + anon_sym_fn, + ACTIONS(3576), 1, + anon_sym_STAR, + ACTIONS(3578), 1, + anon_sym_struct, + ACTIONS(3588), 1, + anon_sym_shared, + ACTIONS(3590), 1, + anon_sym_map_LBRACK, + ACTIONS(3592), 1, + anon_sym_chan, + ACTIONS(3594), 1, + anon_sym_thread, + ACTIONS(3596), 1, + anon_sym_atomic, + ACTIONS(5866), 1, + anon_sym_QMARK, + ACTIONS(5868), 1, + anon_sym_BANG, + ACTIONS(5870), 1, + anon_sym_LBRACK2, + ACTIONS(5872), 1, + anon_sym_AMP, + STATE(1359), 1, + sym_plain_type, + STATE(4428), 1, + sym_reference_expression, + STATE(1286), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3218), 2, + sym_line_comment, + sym_block_comment, + STATE(1334), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(1340), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284124,7 +288894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112550] = 22, + [114315] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -284139,40 +288909,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(2385), 1, + STATE(3923), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3157), 2, + STATE(3219), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284185,55 +288955,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112633] = 22, + [114398] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3955), 1, + ACTIONS(3959), 1, sym_identifier, - ACTIONS(3957), 1, + ACTIONS(3963), 1, anon_sym_fn, - ACTIONS(3959), 1, - anon_sym_STAR, - ACTIONS(3969), 1, + ACTIONS(3967), 1, + anon_sym_struct, + ACTIONS(3977), 1, anon_sym_shared, - ACTIONS(3971), 1, - anon_sym_map_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3981), 1, anon_sym_chan, - ACTIONS(3975), 1, + ACTIONS(3983), 1, anon_sym_thread, - ACTIONS(3977), 1, + ACTIONS(3985), 1, anon_sym_atomic, - ACTIONS(5770), 1, + ACTIONS(5852), 1, + anon_sym_LPAREN, + ACTIONS(5854), 1, + anon_sym_STAR, + ACTIONS(5856), 1, anon_sym_QMARK, - ACTIONS(5772), 1, + ACTIONS(5858), 1, anon_sym_BANG, - ACTIONS(5774), 1, + ACTIONS(5860), 1, anon_sym_LBRACK2, - ACTIONS(5776), 1, + ACTIONS(5862), 1, anon_sym_AMP, - STATE(2394), 1, + ACTIONS(5864), 1, + anon_sym_map_LBRACK, + STATE(2266), 1, sym_plain_type, - STATE(4423), 1, + STATE(4545), 1, sym_reference_expression, - STATE(2284), 2, + STATE(2183), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3158), 2, + STATE(3220), 2, sym_line_comment, sym_block_comment, - STATE(2290), 4, + STATE(2203), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2202), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284246,55 +289016,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112716] = 22, + [114481] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - sym_identifier, - ACTIONS(3642), 1, - anon_sym_struct, - ACTIONS(5490), 1, - anon_sym_fn, - ACTIONS(5502), 1, - anon_sym_shared, - ACTIONS(5506), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(5508), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(5510), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5578), 1, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5582), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5584), 1, - anon_sym_QMARK, - ACTIONS(5586), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5588), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5590), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5592), 1, - anon_sym_map_LBRACK, - STATE(1630), 1, + STATE(2394), 1, sym_plain_type, - STATE(4356), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3159), 2, + STATE(3221), 2, sym_line_comment, sym_block_comment, - STATE(3302), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1658), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1657), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284307,55 +289077,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112799] = 22, + [114564] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3955), 1, + ACTIONS(3610), 1, sym_identifier, - ACTIONS(3957), 1, + ACTIONS(3614), 1, anon_sym_fn, - ACTIONS(3959), 1, - anon_sym_STAR, - ACTIONS(3969), 1, + ACTIONS(3618), 1, + anon_sym_struct, + ACTIONS(3628), 1, anon_sym_shared, - ACTIONS(3971), 1, - anon_sym_map_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3632), 1, anon_sym_chan, - ACTIONS(3975), 1, + ACTIONS(3634), 1, anon_sym_thread, - ACTIONS(3977), 1, + ACTIONS(3636), 1, anon_sym_atomic, - ACTIONS(5770), 1, + ACTIONS(5640), 1, + anon_sym_LPAREN, + ACTIONS(5642), 1, + anon_sym_STAR, + ACTIONS(5644), 1, anon_sym_QMARK, - ACTIONS(5772), 1, + ACTIONS(5646), 1, anon_sym_BANG, - ACTIONS(5774), 1, + ACTIONS(5648), 1, anon_sym_LBRACK2, - ACTIONS(5776), 1, + ACTIONS(5650), 1, anon_sym_AMP, - STATE(2814), 1, + ACTIONS(5652), 1, + anon_sym_map_LBRACK, + STATE(1439), 1, sym_plain_type, - STATE(4423), 1, + STATE(4415), 1, sym_reference_expression, - STATE(2284), 2, + STATE(1405), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3160), 2, + STATE(3222), 2, sym_line_comment, sym_block_comment, - STATE(2290), 4, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(1454), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284368,55 +289138,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112882] = 22, + [114647] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, + ACTIONS(4070), 1, sym_identifier, - ACTIONS(3610), 1, + ACTIONS(4074), 1, anon_sym_fn, - ACTIONS(3614), 1, + ACTIONS(4078), 1, anon_sym_struct, - ACTIONS(3624), 1, + ACTIONS(4088), 1, anon_sym_shared, - ACTIONS(3628), 1, + ACTIONS(4092), 1, anon_sym_chan, - ACTIONS(3630), 1, + ACTIONS(4094), 1, anon_sym_thread, - ACTIONS(3632), 1, + ACTIONS(4096), 1, anon_sym_atomic, - ACTIONS(5594), 1, + ACTIONS(5830), 1, anon_sym_LPAREN, - ACTIONS(5598), 1, + ACTIONS(5832), 1, anon_sym_STAR, - ACTIONS(5600), 1, + ACTIONS(5834), 1, anon_sym_QMARK, - ACTIONS(5602), 1, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5604), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5606), 1, + ACTIONS(5840), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5842), 1, anon_sym_map_LBRACK, - STATE(1470), 1, + STATE(2622), 1, sym_plain_type, - STATE(4472), 1, + STATE(4478), 1, sym_reference_expression, - STATE(1404), 2, + STATE(2459), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3161), 2, + STATE(3223), 2, sym_line_comment, sym_block_comment, - STATE(1437), 4, + STATE(2595), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1440), 12, + STATE(2596), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284429,55 +289199,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112965] = 22, + [114730] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, + ACTIONS(3610), 1, sym_identifier, - ACTIONS(1195), 1, + ACTIONS(3614), 1, anon_sym_fn, - ACTIONS(1199), 1, + ACTIONS(3618), 1, anon_sym_struct, - ACTIONS(1209), 1, + ACTIONS(3628), 1, anon_sym_shared, - ACTIONS(1213), 1, + ACTIONS(3632), 1, anon_sym_chan, - ACTIONS(1215), 1, + ACTIONS(3634), 1, anon_sym_thread, - ACTIONS(1217), 1, + ACTIONS(3636), 1, anon_sym_atomic, - ACTIONS(5800), 1, + ACTIONS(5640), 1, anon_sym_LPAREN, - ACTIONS(5802), 1, + ACTIONS(5642), 1, anon_sym_STAR, - ACTIONS(5804), 1, + ACTIONS(5644), 1, anon_sym_QMARK, - ACTIONS(5806), 1, + ACTIONS(5646), 1, anon_sym_BANG, - ACTIONS(5808), 1, + ACTIONS(5648), 1, anon_sym_LBRACK2, - ACTIONS(5810), 1, + ACTIONS(5650), 1, anon_sym_AMP, - ACTIONS(5812), 1, + ACTIONS(5652), 1, anon_sym_map_LBRACK, - STATE(1013), 1, + STATE(1424), 1, sym_plain_type, - STATE(4344), 1, + STATE(4415), 1, sym_reference_expression, - STATE(989), 2, + STATE(1405), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3162), 2, + STATE(3224), 2, sym_line_comment, sym_block_comment, - STATE(1091), 4, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1089), 12, + STATE(1454), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284490,55 +289260,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113048] = 22, + [114813] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3797), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(3799), 1, - anon_sym_LPAREN, - ACTIONS(3801), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(3805), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3815), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(3817), 1, - anon_sym_map_LBRACK, - ACTIONS(3819), 1, + ACTIONS(3688), 1, anon_sym_chan, - ACTIONS(3821), 1, + ACTIONS(3690), 1, anon_sym_thread, - ACTIONS(3823), 1, + ACTIONS(3692), 1, anon_sym_atomic, - ACTIONS(5760), 1, + ACTIONS(5624), 1, + anon_sym_LPAREN, + ACTIONS(5720), 1, anon_sym_STAR, - ACTIONS(5762), 1, + ACTIONS(5722), 1, anon_sym_QMARK, - ACTIONS(5764), 1, + ACTIONS(5724), 1, anon_sym_BANG, - ACTIONS(5766), 1, + ACTIONS(5726), 1, anon_sym_LBRACK2, - ACTIONS(5768), 1, + ACTIONS(5728), 1, anon_sym_AMP, - STATE(2102), 1, + ACTIONS(5730), 1, + anon_sym_map_LBRACK, + STATE(1738), 1, sym_plain_type, - STATE(4365), 1, + STATE(4397), 1, sym_reference_expression, - STATE(1904), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3163), 2, + STATE(3225), 2, sym_line_comment, sym_block_comment, - STATE(1978), 4, + STATE(1670), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1980), 12, + STATE(1671), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284551,55 +289321,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113131] = 22, + [114896] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3610), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3614), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3624), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3628), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(3630), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(3632), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5594), 1, + ACTIONS(5816), 1, anon_sym_LPAREN, - ACTIONS(5598), 1, + ACTIONS(5818), 1, anon_sym_STAR, - ACTIONS(5600), 1, + ACTIONS(5820), 1, anon_sym_QMARK, - ACTIONS(5602), 1, + ACTIONS(5822), 1, anon_sym_BANG, - ACTIONS(5604), 1, + ACTIONS(5824), 1, anon_sym_LBRACK2, - ACTIONS(5606), 1, + ACTIONS(5826), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5828), 1, anon_sym_map_LBRACK, - STATE(1466), 1, + STATE(470), 1, sym_plain_type, - STATE(4472), 1, + STATE(4468), 1, sym_reference_expression, - STATE(1404), 2, + STATE(287), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3164), 2, + STATE(3226), 2, sym_line_comment, sym_block_comment, - STATE(1437), 4, + STATE(444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1440), 12, + STATE(446), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284612,55 +289382,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113214] = 22, + [114979] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3610), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3614), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3624), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3628), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(3630), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(3632), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5594), 1, + ACTIONS(5816), 1, anon_sym_LPAREN, - ACTIONS(5598), 1, + ACTIONS(5818), 1, anon_sym_STAR, - ACTIONS(5600), 1, + ACTIONS(5820), 1, anon_sym_QMARK, - ACTIONS(5602), 1, + ACTIONS(5822), 1, anon_sym_BANG, - ACTIONS(5604), 1, + ACTIONS(5824), 1, anon_sym_LBRACK2, - ACTIONS(5606), 1, + ACTIONS(5826), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5828), 1, anon_sym_map_LBRACK, - STATE(1455), 1, + STATE(502), 1, sym_plain_type, - STATE(4472), 1, + STATE(4468), 1, sym_reference_expression, - STATE(1404), 2, + STATE(287), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3165), 2, + STATE(3227), 2, sym_line_comment, sym_block_comment, - STATE(1437), 4, + STATE(444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1440), 12, + STATE(446), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284673,55 +289443,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113297] = 22, + [115062] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, + ACTIONS(3610), 1, sym_identifier, - ACTIONS(1195), 1, + ACTIONS(3614), 1, anon_sym_fn, - ACTIONS(1199), 1, + ACTIONS(3618), 1, anon_sym_struct, - ACTIONS(1209), 1, + ACTIONS(3628), 1, anon_sym_shared, - ACTIONS(1213), 1, + ACTIONS(3632), 1, anon_sym_chan, - ACTIONS(1215), 1, + ACTIONS(3634), 1, anon_sym_thread, - ACTIONS(1217), 1, + ACTIONS(3636), 1, anon_sym_atomic, - ACTIONS(5800), 1, + ACTIONS(5640), 1, anon_sym_LPAREN, - ACTIONS(5802), 1, + ACTIONS(5642), 1, anon_sym_STAR, - ACTIONS(5804), 1, + ACTIONS(5644), 1, anon_sym_QMARK, - ACTIONS(5806), 1, + ACTIONS(5646), 1, anon_sym_BANG, - ACTIONS(5808), 1, + ACTIONS(5648), 1, anon_sym_LBRACK2, - ACTIONS(5810), 1, + ACTIONS(5650), 1, anon_sym_AMP, - ACTIONS(5812), 1, + ACTIONS(5652), 1, anon_sym_map_LBRACK, - STATE(1009), 1, + STATE(1430), 1, sym_plain_type, - STATE(4344), 1, + STATE(4415), 1, sym_reference_expression, - STATE(989), 2, + STATE(1405), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3166), 2, + STATE(3228), 2, sym_line_comment, sym_block_comment, - STATE(1091), 4, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1089), 12, + STATE(1454), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284734,55 +289504,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113380] = 22, + [115145] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(3959), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3963), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3967), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3977), 1, anon_sym_shared, - ACTIONS(3598), 1, + ACTIONS(3981), 1, + anon_sym_chan, + ACTIONS(3983), 1, + anon_sym_thread, + ACTIONS(3985), 1, + anon_sym_atomic, + ACTIONS(5852), 1, anon_sym_LPAREN, - ACTIONS(3600), 1, + ACTIONS(5854), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5856), 1, + anon_sym_QMARK, + ACTIONS(5858), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5860), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5862), 1, anon_sym_AMP, - STATE(3912), 1, + ACTIONS(5864), 1, + anon_sym_map_LBRACK, + STATE(2271), 1, sym_plain_type, - STATE(4423), 1, + STATE(4545), 1, sym_reference_expression, - STATE(3167), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, + STATE(2183), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3229), 2, + sym_line_comment, + sym_block_comment, + STATE(2203), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2202), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284795,55 +289565,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113463] = 22, + [115228] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3598), 1, + ACTIONS(589), 1, + anon_sym_chan, + ACTIONS(591), 1, + anon_sym_thread, + ACTIONS(593), 1, + anon_sym_atomic, + ACTIONS(5816), 1, anon_sym_LPAREN, - ACTIONS(3600), 1, + ACTIONS(5818), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5820), 1, + anon_sym_QMARK, + ACTIONS(5822), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5824), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5826), 1, anon_sym_AMP, - STATE(4423), 1, - sym_reference_expression, - STATE(4501), 1, + ACTIONS(5828), 1, + anon_sym_map_LBRACK, + STATE(495), 1, sym_plain_type, - STATE(3168), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, + STATE(4468), 1, + sym_reference_expression, + STATE(287), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3230), 2, + sym_line_comment, + sym_block_comment, + STATE(444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(446), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284856,55 +289626,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113546] = 22, + [115311] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4068), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(4076), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(4086), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(4090), 1, + ACTIONS(3688), 1, anon_sym_chan, - ACTIONS(4092), 1, + ACTIONS(3690), 1, anon_sym_thread, - ACTIONS(4094), 1, + ACTIONS(3692), 1, anon_sym_atomic, - ACTIONS(5746), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(5748), 1, + ACTIONS(5720), 1, anon_sym_STAR, - ACTIONS(5750), 1, + ACTIONS(5722), 1, anon_sym_QMARK, - ACTIONS(5752), 1, + ACTIONS(5724), 1, anon_sym_BANG, - ACTIONS(5754), 1, + ACTIONS(5726), 1, anon_sym_LBRACK2, - ACTIONS(5756), 1, + ACTIONS(5728), 1, anon_sym_AMP, - ACTIONS(5758), 1, + ACTIONS(5730), 1, anon_sym_map_LBRACK, - STATE(2596), 1, + STATE(1729), 1, sym_plain_type, - STATE(4386), 1, + STATE(4397), 1, sym_reference_expression, - STATE(2419), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3169), 2, + STATE(3231), 2, sym_line_comment, sym_block_comment, - STATE(2533), 4, + STATE(1670), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(1671), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284917,7 +289687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113629] = 22, + [115394] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -284932,40 +289702,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(3829), 1, + STATE(3914), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3170), 2, + STATE(3232), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284978,116 +289748,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113712] = 22, + [115477] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4533), 1, - sym_identifier, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_fn, - ACTIONS(4539), 1, - anon_sym_STAR, - ACTIONS(4541), 1, - anon_sym_struct, - ACTIONS(4551), 1, - anon_sym_shared, - ACTIONS(4553), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(4555), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(4557), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(4559), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5778), 1, - anon_sym_QMARK, - ACTIONS(5780), 1, - anon_sym_BANG, - ACTIONS(5782), 1, - anon_sym_LBRACK2, - ACTIONS(5784), 1, - anon_sym_AMP, - STATE(2657), 1, - sym_plain_type, - STATE(4316), 1, - sym_reference_expression, - STATE(2611), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3171), 2, - sym_line_comment, - sym_block_comment, - STATE(2692), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2693), 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, - [113795] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3634), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3638), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3642), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3652), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3656), 1, - anon_sym_chan, - ACTIONS(3658), 1, - anon_sym_thread, - ACTIONS(3660), 1, - anon_sym_atomic, - ACTIONS(5578), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5814), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5816), 1, - anon_sym_QMARK, - ACTIONS(5818), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5820), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5822), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5824), 1, - anon_sym_map_LBRACK, - STATE(1647), 1, + STATE(2421), 1, sym_plain_type, - STATE(4375), 1, + STATE(4596), 1, sym_reference_expression, - STATE(1659), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3172), 2, + STATE(3233), 2, sym_line_comment, sym_block_comment, - STATE(1658), 4, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1657), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285100,55 +289809,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113878] = 22, + [115560] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3634), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3638), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3642), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3652), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3656), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(3658), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(3660), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5578), 1, + ACTIONS(5816), 1, anon_sym_LPAREN, - ACTIONS(5814), 1, + ACTIONS(5818), 1, anon_sym_STAR, - ACTIONS(5816), 1, + ACTIONS(5820), 1, anon_sym_QMARK, - ACTIONS(5818), 1, + ACTIONS(5822), 1, anon_sym_BANG, - ACTIONS(5820), 1, + ACTIONS(5824), 1, anon_sym_LBRACK2, - ACTIONS(5822), 1, + ACTIONS(5826), 1, anon_sym_AMP, - ACTIONS(5824), 1, + ACTIONS(5828), 1, anon_sym_map_LBRACK, - STATE(1646), 1, + STATE(406), 1, sym_plain_type, - STATE(4375), 1, + STATE(4468), 1, sym_reference_expression, - STATE(1659), 2, + STATE(287), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3173), 2, + STATE(3234), 2, sym_line_comment, sym_block_comment, - STATE(1658), 4, + STATE(444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1657), 12, + STATE(446), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285161,55 +289870,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113961] = 22, + [115643] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3634), 1, + ACTIONS(3570), 1, sym_identifier, - ACTIONS(3638), 1, + ACTIONS(3572), 1, + anon_sym_LPAREN, + ACTIONS(3574), 1, anon_sym_fn, - ACTIONS(3642), 1, + ACTIONS(3576), 1, + anon_sym_STAR, + ACTIONS(3578), 1, anon_sym_struct, - ACTIONS(3652), 1, + ACTIONS(3588), 1, anon_sym_shared, - ACTIONS(3656), 1, + ACTIONS(3590), 1, + anon_sym_map_LBRACK, + ACTIONS(3592), 1, anon_sym_chan, - ACTIONS(3658), 1, + ACTIONS(3594), 1, anon_sym_thread, - ACTIONS(3660), 1, + ACTIONS(3596), 1, anon_sym_atomic, - ACTIONS(5578), 1, - anon_sym_LPAREN, - ACTIONS(5814), 1, - anon_sym_STAR, - ACTIONS(5816), 1, + ACTIONS(5866), 1, anon_sym_QMARK, - ACTIONS(5818), 1, + ACTIONS(5868), 1, anon_sym_BANG, - ACTIONS(5820), 1, + ACTIONS(5870), 1, anon_sym_LBRACK2, - ACTIONS(5822), 1, + ACTIONS(5872), 1, anon_sym_AMP, - ACTIONS(5824), 1, - anon_sym_map_LBRACK, - STATE(1645), 1, + STATE(1362), 1, sym_plain_type, - STATE(4375), 1, + STATE(4428), 1, sym_reference_expression, - STATE(1659), 2, + STATE(1286), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3174), 2, + STATE(3235), 2, sym_line_comment, sym_block_comment, - STATE(1658), 4, + STATE(1334), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1657), 12, + STATE(1340), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285222,55 +289931,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114044] = 22, + [115726] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3634), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3638), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3642), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3652), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3656), 1, - anon_sym_chan, - ACTIONS(3658), 1, - anon_sym_thread, - ACTIONS(3660), 1, - anon_sym_atomic, - ACTIONS(5578), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5814), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5816), 1, - anon_sym_QMARK, - ACTIONS(5818), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5820), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5822), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5824), 1, - anon_sym_map_LBRACK, - STATE(1638), 1, + STATE(3970), 1, sym_plain_type, - STATE(4375), 1, + STATE(4596), 1, sym_reference_expression, - STATE(1659), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3175), 2, + STATE(3236), 2, sym_line_comment, sym_block_comment, - STATE(1658), 4, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1657), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285283,55 +289992,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114127] = 22, + [115809] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3634), 1, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3989), 1, sym_identifier, - ACTIONS(3638), 1, + ACTIONS(3991), 1, anon_sym_fn, - ACTIONS(3642), 1, - anon_sym_struct, - ACTIONS(3652), 1, + ACTIONS(3993), 1, + anon_sym_STAR, + ACTIONS(4003), 1, anon_sym_shared, - ACTIONS(3656), 1, + ACTIONS(4005), 1, + anon_sym_map_LBRACK, + ACTIONS(4007), 1, anon_sym_chan, - ACTIONS(3658), 1, + ACTIONS(4009), 1, anon_sym_thread, - ACTIONS(3660), 1, + ACTIONS(4011), 1, anon_sym_atomic, - ACTIONS(5578), 1, - anon_sym_LPAREN, - ACTIONS(5814), 1, - anon_sym_STAR, - ACTIONS(5816), 1, + ACTIONS(5756), 1, anon_sym_QMARK, - ACTIONS(5818), 1, + ACTIONS(5758), 1, anon_sym_BANG, - ACTIONS(5820), 1, + ACTIONS(5760), 1, anon_sym_LBRACK2, - ACTIONS(5822), 1, + ACTIONS(5762), 1, anon_sym_AMP, - ACTIONS(5824), 1, - anon_sym_map_LBRACK, - STATE(1635), 1, + STATE(2375), 1, sym_plain_type, - STATE(4375), 1, + STATE(4596), 1, sym_reference_expression, - STATE(1659), 2, + STATE(2320), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3176), 2, + STATE(3237), 2, sym_line_comment, sym_block_comment, - STATE(1658), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1657), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285344,55 +290053,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114210] = 22, + [115892] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3610), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3614), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3624), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3628), 1, - anon_sym_chan, - ACTIONS(3630), 1, - anon_sym_thread, - ACTIONS(3632), 1, - anon_sym_atomic, - ACTIONS(5594), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5598), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5600), 1, - anon_sym_QMARK, - ACTIONS(5602), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5604), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5606), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_map_LBRACK, - STATE(1465), 1, + STATE(4567), 1, sym_plain_type, - STATE(4472), 1, + STATE(4596), 1, sym_reference_expression, - STATE(1404), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3177), 2, + STATE(3238), 2, sym_line_comment, sym_block_comment, - STATE(1437), 4, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1440), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285405,55 +290114,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114293] = 22, + [115975] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3634), 1, + ACTIONS(3462), 1, sym_identifier, - ACTIONS(3638), 1, + ACTIONS(3466), 1, anon_sym_fn, - ACTIONS(3642), 1, + ACTIONS(3470), 1, anon_sym_struct, - ACTIONS(3652), 1, + ACTIONS(3480), 1, anon_sym_shared, - ACTIONS(3656), 1, + ACTIONS(3484), 1, anon_sym_chan, - ACTIONS(3658), 1, + ACTIONS(3486), 1, anon_sym_thread, - ACTIONS(3660), 1, + ACTIONS(3488), 1, anon_sym_atomic, - ACTIONS(5578), 1, + ACTIONS(5732), 1, anon_sym_LPAREN, - ACTIONS(5814), 1, + ACTIONS(5734), 1, anon_sym_STAR, - ACTIONS(5816), 1, + ACTIONS(5736), 1, anon_sym_QMARK, - ACTIONS(5818), 1, + ACTIONS(5738), 1, anon_sym_BANG, - ACTIONS(5820), 1, + ACTIONS(5740), 1, anon_sym_LBRACK2, - ACTIONS(5822), 1, + ACTIONS(5742), 1, anon_sym_AMP, - ACTIONS(5824), 1, + ACTIONS(5744), 1, anon_sym_map_LBRACK, - STATE(1628), 1, + STATE(1214), 1, sym_plain_type, - STATE(4375), 1, + STATE(4499), 1, sym_reference_expression, - STATE(1659), 2, + STATE(1136), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3178), 2, + STATE(3239), 2, sym_line_comment, sym_block_comment, - STATE(1658), 4, + STATE(1179), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1657), 12, + STATE(1183), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285466,55 +290175,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114376] = 22, + [116058] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3748), 1, + ACTIONS(3570), 1, sym_identifier, - ACTIONS(3750), 1, + ACTIONS(3572), 1, anon_sym_LPAREN, - ACTIONS(3752), 1, + ACTIONS(3574), 1, anon_sym_fn, - ACTIONS(3756), 1, + ACTIONS(3576), 1, + anon_sym_STAR, + ACTIONS(3578), 1, anon_sym_struct, - ACTIONS(3766), 1, + ACTIONS(3588), 1, anon_sym_shared, - ACTIONS(3768), 1, + ACTIONS(3590), 1, anon_sym_map_LBRACK, - ACTIONS(3770), 1, + ACTIONS(3592), 1, anon_sym_chan, - ACTIONS(3772), 1, + ACTIONS(3594), 1, anon_sym_thread, - ACTIONS(3774), 1, + ACTIONS(3596), 1, anon_sym_atomic, - ACTIONS(5714), 1, - anon_sym_STAR, - ACTIONS(5716), 1, + ACTIONS(5866), 1, anon_sym_QMARK, - ACTIONS(5718), 1, + ACTIONS(5868), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5870), 1, anon_sym_LBRACK2, - ACTIONS(5722), 1, + ACTIONS(5872), 1, anon_sym_AMP, - STATE(2015), 1, + STATE(1365), 1, sym_plain_type, STATE(4428), 1, sym_reference_expression, - STATE(1899), 2, + STATE(1286), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3179), 2, + STATE(3240), 2, sym_line_comment, sym_block_comment, - STATE(1918), 4, + STATE(1334), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1996), 12, + STATE(1340), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285527,7 +290236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114459] = 22, + [116141] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -285542,40 +290251,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(2307), 1, + STATE(4474), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3180), 2, + STATE(3241), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285588,55 +290297,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114542] = 22, + [116224] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4068), 1, + ACTIONS(3959), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(3963), 1, anon_sym_fn, - ACTIONS(4076), 1, + ACTIONS(3967), 1, anon_sym_struct, - ACTIONS(4086), 1, + ACTIONS(3977), 1, anon_sym_shared, - ACTIONS(4090), 1, + ACTIONS(3981), 1, anon_sym_chan, - ACTIONS(4092), 1, + ACTIONS(3983), 1, anon_sym_thread, - ACTIONS(4094), 1, + ACTIONS(3985), 1, anon_sym_atomic, - ACTIONS(5746), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - ACTIONS(5748), 1, + ACTIONS(5854), 1, anon_sym_STAR, - ACTIONS(5750), 1, + ACTIONS(5856), 1, anon_sym_QMARK, - ACTIONS(5752), 1, + ACTIONS(5858), 1, anon_sym_BANG, - ACTIONS(5754), 1, + ACTIONS(5860), 1, anon_sym_LBRACK2, - ACTIONS(5756), 1, + ACTIONS(5862), 1, anon_sym_AMP, - ACTIONS(5758), 1, + ACTIONS(5864), 1, anon_sym_map_LBRACK, - STATE(2534), 1, + STATE(2279), 1, sym_plain_type, - STATE(4386), 1, + STATE(4545), 1, sym_reference_expression, - STATE(2419), 2, + STATE(2183), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3181), 2, + STATE(3242), 2, sym_line_comment, sym_block_comment, - STATE(2533), 4, + STATE(2203), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(2202), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285649,55 +290358,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114625] = 22, + [116307] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(565), 1, + ACTIONS(4553), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(4555), 1, + anon_sym_LPAREN, + ACTIONS(4557), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(4559), 1, + anon_sym_STAR, + ACTIONS(4561), 1, anon_sym_struct, - ACTIONS(585), 1, + ACTIONS(4571), 1, anon_sym_shared, - ACTIONS(589), 1, + ACTIONS(4573), 1, + anon_sym_map_LBRACK, + ACTIONS(4575), 1, anon_sym_chan, - ACTIONS(591), 1, + ACTIONS(4577), 1, anon_sym_thread, - ACTIONS(593), 1, + ACTIONS(4579), 1, anon_sym_atomic, - ACTIONS(5786), 1, - anon_sym_LPAREN, - ACTIONS(5788), 1, - anon_sym_STAR, - ACTIONS(5790), 1, + ACTIONS(5844), 1, anon_sym_QMARK, - ACTIONS(5792), 1, + ACTIONS(5846), 1, anon_sym_BANG, - ACTIONS(5794), 1, + ACTIONS(5848), 1, anon_sym_LBRACK2, - ACTIONS(5796), 1, + ACTIONS(5850), 1, anon_sym_AMP, - ACTIONS(5798), 1, - anon_sym_map_LBRACK, - STATE(319), 1, + STATE(2777), 1, sym_plain_type, - STATE(4392), 1, + STATE(4549), 1, sym_reference_expression, - STATE(267), 2, + STATE(2644), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3182), 2, + STATE(3243), 2, sym_line_comment, sym_block_comment, - STATE(359), 4, + STATE(2752), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(358), 12, + STATE(2753), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285710,55 +290419,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114708] = 22, + [116390] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(1195), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(1199), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(1209), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(1213), 1, - anon_sym_chan, - ACTIONS(1215), 1, - anon_sym_thread, - ACTIONS(1217), 1, - anon_sym_atomic, - ACTIONS(5800), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5802), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5804), 1, - anon_sym_QMARK, - ACTIONS(5806), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5808), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5810), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5812), 1, - anon_sym_map_LBRACK, - STATE(1072), 1, + STATE(2393), 1, sym_plain_type, - STATE(4344), 1, + STATE(4596), 1, sym_reference_expression, - STATE(989), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3183), 2, + STATE(3244), 2, sym_line_comment, sym_block_comment, - STATE(1091), 4, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1089), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285771,55 +290480,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114791] = 22, + [116473] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4068), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(4076), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(4086), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(4090), 1, - anon_sym_chan, - ACTIONS(4092), 1, - anon_sym_thread, - ACTIONS(4094), 1, - anon_sym_atomic, - ACTIONS(5746), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5748), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5750), 1, - anon_sym_QMARK, - ACTIONS(5752), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5754), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5756), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5758), 1, - anon_sym_map_LBRACK, - STATE(2495), 1, + STATE(2375), 1, sym_plain_type, - STATE(4386), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2419), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3184), 2, + STATE(3245), 2, sym_line_comment, sym_block_comment, - STATE(2533), 4, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285832,55 +290541,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114874] = 22, + [116556] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3748), 1, + ACTIONS(3570), 1, sym_identifier, - ACTIONS(3750), 1, + ACTIONS(3572), 1, anon_sym_LPAREN, - ACTIONS(3752), 1, + ACTIONS(3574), 1, anon_sym_fn, - ACTIONS(3756), 1, + ACTIONS(3576), 1, + anon_sym_STAR, + ACTIONS(3578), 1, anon_sym_struct, - ACTIONS(3766), 1, + ACTIONS(3588), 1, anon_sym_shared, - ACTIONS(3768), 1, + ACTIONS(3590), 1, anon_sym_map_LBRACK, - ACTIONS(3770), 1, + ACTIONS(3592), 1, anon_sym_chan, - ACTIONS(3772), 1, + ACTIONS(3594), 1, anon_sym_thread, - ACTIONS(3774), 1, + ACTIONS(3596), 1, anon_sym_atomic, - ACTIONS(5714), 1, - anon_sym_STAR, - ACTIONS(5716), 1, + ACTIONS(5866), 1, anon_sym_QMARK, - ACTIONS(5718), 1, + ACTIONS(5868), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5870), 1, anon_sym_LBRACK2, - ACTIONS(5722), 1, + ACTIONS(5872), 1, anon_sym_AMP, - STATE(1967), 1, + STATE(1331), 1, sym_plain_type, STATE(4428), 1, sym_reference_expression, - STATE(1899), 2, + STATE(1286), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3185), 2, + STATE(3246), 2, sym_line_comment, sym_block_comment, - STATE(1918), 4, + STATE(1334), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1996), 12, + STATE(1340), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285893,55 +290602,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114957] = 22, + [116639] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4068), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(4076), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(4086), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(4090), 1, - anon_sym_chan, - ACTIONS(4092), 1, - anon_sym_thread, - ACTIONS(4094), 1, - anon_sym_atomic, - ACTIONS(5746), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5748), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5750), 1, - anon_sym_QMARK, - ACTIONS(5752), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5754), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5756), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5758), 1, - anon_sym_map_LBRACK, - STATE(2482), 1, + STATE(3899), 1, sym_plain_type, - STATE(4386), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2419), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3186), 2, + STATE(3247), 2, sym_line_comment, sym_block_comment, - STATE(2533), 4, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285954,7 +290663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115040] = 22, + [116722] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -285969,40 +290678,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(4376), 1, + STATE(2390), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3187), 2, + STATE(3248), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286015,55 +290724,116 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115123] = 22, + [116805] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3748), 1, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(3750), 1, - anon_sym_LPAREN, - ACTIONS(3752), 1, + ACTIONS(3438), 1, anon_sym_fn, - ACTIONS(3756), 1, + ACTIONS(3442), 1, anon_sym_struct, - ACTIONS(3766), 1, + ACTIONS(3452), 1, anon_sym_shared, - ACTIONS(3768), 1, - anon_sym_map_LBRACK, - ACTIONS(3770), 1, + ACTIONS(3456), 1, anon_sym_chan, - ACTIONS(3772), 1, + ACTIONS(3458), 1, anon_sym_thread, - ACTIONS(3774), 1, + ACTIONS(3460), 1, anon_sym_atomic, - ACTIONS(5714), 1, + ACTIONS(5792), 1, + anon_sym_LPAREN, + ACTIONS(5794), 1, anon_sym_STAR, - ACTIONS(5716), 1, + ACTIONS(5796), 1, anon_sym_QMARK, - ACTIONS(5718), 1, + ACTIONS(5798), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5800), 1, anon_sym_LBRACK2, - ACTIONS(5722), 1, + ACTIONS(5802), 1, anon_sym_AMP, - STATE(1968), 1, + ACTIONS(5804), 1, + anon_sym_map_LBRACK, + STATE(3416), 1, sym_plain_type, - STATE(4428), 1, + STATE(4406), 1, sym_reference_expression, - STATE(1899), 2, + STATE(3249), 2, + sym_line_comment, + sym_block_comment, + STATE(3360), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3188), 2, + STATE(3404), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(3401), 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, + [116888] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3989), 1, + sym_identifier, + ACTIONS(3991), 1, + anon_sym_fn, + ACTIONS(3993), 1, + anon_sym_STAR, + ACTIONS(4003), 1, + anon_sym_shared, + ACTIONS(4005), 1, + anon_sym_map_LBRACK, + ACTIONS(4007), 1, + anon_sym_chan, + ACTIONS(4009), 1, + anon_sym_thread, + ACTIONS(4011), 1, + anon_sym_atomic, + ACTIONS(5756), 1, + anon_sym_QMARK, + ACTIONS(5758), 1, + anon_sym_BANG, + ACTIONS(5760), 1, + anon_sym_LBRACK2, + ACTIONS(5762), 1, + anon_sym_AMP, + STATE(2529), 1, + sym_plain_type, + STATE(4596), 1, + sym_reference_expression, + STATE(2320), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3250), 2, sym_line_comment, sym_block_comment, - STATE(1918), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1996), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286076,55 +290846,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115206] = 22, + [116971] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3460), 1, + ACTIONS(3959), 1, sym_identifier, - ACTIONS(3464), 1, + ACTIONS(3963), 1, anon_sym_fn, - ACTIONS(3468), 1, + ACTIONS(3967), 1, anon_sym_struct, - ACTIONS(3478), 1, + ACTIONS(3977), 1, anon_sym_shared, - ACTIONS(3482), 1, + ACTIONS(3981), 1, anon_sym_chan, - ACTIONS(3484), 1, + ACTIONS(3983), 1, anon_sym_thread, - ACTIONS(3486), 1, + ACTIONS(3985), 1, anon_sym_atomic, - ACTIONS(5686), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - ACTIONS(5688), 1, + ACTIONS(5854), 1, anon_sym_STAR, - ACTIONS(5690), 1, + ACTIONS(5856), 1, anon_sym_QMARK, - ACTIONS(5692), 1, + ACTIONS(5858), 1, anon_sym_BANG, - ACTIONS(5694), 1, + ACTIONS(5860), 1, anon_sym_LBRACK2, - ACTIONS(5696), 1, + ACTIONS(5862), 1, anon_sym_AMP, - ACTIONS(5698), 1, + ACTIONS(5864), 1, anon_sym_map_LBRACK, - STATE(1147), 1, + STATE(2277), 1, sym_plain_type, - STATE(4407), 1, + STATE(4545), 1, sym_reference_expression, - STATE(1136), 2, + STATE(2183), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3189), 2, + STATE(3251), 2, sym_line_comment, sym_block_comment, - STATE(1171), 4, + STATE(2203), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1169), 12, + STATE(2202), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286137,55 +290907,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115289] = 22, + [117054] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3460), 1, + ACTIONS(3959), 1, sym_identifier, - ACTIONS(3464), 1, + ACTIONS(3963), 1, anon_sym_fn, - ACTIONS(3468), 1, + ACTIONS(3967), 1, anon_sym_struct, - ACTIONS(3478), 1, + ACTIONS(3977), 1, anon_sym_shared, - ACTIONS(3482), 1, + ACTIONS(3981), 1, anon_sym_chan, - ACTIONS(3484), 1, + ACTIONS(3983), 1, anon_sym_thread, - ACTIONS(3486), 1, + ACTIONS(3985), 1, anon_sym_atomic, - ACTIONS(5686), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - ACTIONS(5688), 1, + ACTIONS(5854), 1, anon_sym_STAR, - ACTIONS(5690), 1, + ACTIONS(5856), 1, anon_sym_QMARK, - ACTIONS(5692), 1, + ACTIONS(5858), 1, anon_sym_BANG, - ACTIONS(5694), 1, + ACTIONS(5860), 1, anon_sym_LBRACK2, - ACTIONS(5696), 1, + ACTIONS(5862), 1, anon_sym_AMP, - ACTIONS(5698), 1, + ACTIONS(5864), 1, anon_sym_map_LBRACK, - STATE(1142), 1, + STATE(2257), 1, sym_plain_type, - STATE(4407), 1, + STATE(4545), 1, sym_reference_expression, - STATE(1136), 2, + STATE(2183), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3190), 2, + STATE(3252), 2, sym_line_comment, sym_block_comment, - STATE(1171), 4, + STATE(2203), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1169), 12, + STATE(2202), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286198,55 +290968,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115372] = 22, + [117137] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3634), 1, + ACTIONS(3570), 1, sym_identifier, - ACTIONS(3638), 1, + ACTIONS(3572), 1, + anon_sym_LPAREN, + ACTIONS(3574), 1, anon_sym_fn, - ACTIONS(3642), 1, + ACTIONS(3576), 1, + anon_sym_STAR, + ACTIONS(3578), 1, anon_sym_struct, - ACTIONS(3652), 1, + ACTIONS(3588), 1, anon_sym_shared, - ACTIONS(3656), 1, + ACTIONS(3590), 1, + anon_sym_map_LBRACK, + ACTIONS(3592), 1, anon_sym_chan, - ACTIONS(3658), 1, + ACTIONS(3594), 1, anon_sym_thread, - ACTIONS(3660), 1, + ACTIONS(3596), 1, anon_sym_atomic, - ACTIONS(5578), 1, - anon_sym_LPAREN, - ACTIONS(5814), 1, - anon_sym_STAR, - ACTIONS(5816), 1, + ACTIONS(5866), 1, anon_sym_QMARK, - ACTIONS(5818), 1, + ACTIONS(5868), 1, anon_sym_BANG, - ACTIONS(5820), 1, + ACTIONS(5870), 1, anon_sym_LBRACK2, - ACTIONS(5822), 1, + ACTIONS(5872), 1, anon_sym_AMP, - ACTIONS(5824), 1, - anon_sym_map_LBRACK, - STATE(1634), 1, + STATE(1316), 1, sym_plain_type, - STATE(4375), 1, + STATE(4428), 1, sym_reference_expression, - STATE(1659), 2, + STATE(1286), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3191), 2, + STATE(3253), 2, sym_line_comment, sym_block_comment, - STATE(1658), 4, + STATE(1334), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1657), 12, + STATE(1340), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286259,55 +291029,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115455] = 22, + [117220] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, + ACTIONS(3570), 1, sym_identifier, - ACTIONS(1195), 1, + ACTIONS(3572), 1, + anon_sym_LPAREN, + ACTIONS(3574), 1, anon_sym_fn, - ACTIONS(1199), 1, + ACTIONS(3576), 1, + anon_sym_STAR, + ACTIONS(3578), 1, anon_sym_struct, - ACTIONS(1209), 1, + ACTIONS(3588), 1, anon_sym_shared, - ACTIONS(1213), 1, + ACTIONS(3590), 1, + anon_sym_map_LBRACK, + ACTIONS(3592), 1, anon_sym_chan, - ACTIONS(1215), 1, + ACTIONS(3594), 1, anon_sym_thread, - ACTIONS(1217), 1, + ACTIONS(3596), 1, anon_sym_atomic, - ACTIONS(5800), 1, - anon_sym_LPAREN, - ACTIONS(5802), 1, - anon_sym_STAR, - ACTIONS(5804), 1, + ACTIONS(5866), 1, anon_sym_QMARK, - ACTIONS(5806), 1, + ACTIONS(5868), 1, anon_sym_BANG, - ACTIONS(5808), 1, + ACTIONS(5870), 1, anon_sym_LBRACK2, - ACTIONS(5810), 1, + ACTIONS(5872), 1, anon_sym_AMP, - ACTIONS(5812), 1, - anon_sym_map_LBRACK, - STATE(1048), 1, + STATE(1368), 1, sym_plain_type, - STATE(4344), 1, + STATE(4428), 1, sym_reference_expression, - STATE(989), 2, + STATE(1286), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3192), 2, + STATE(3254), 2, sym_line_comment, sym_block_comment, - STATE(1091), 4, + STATE(1334), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1089), 12, + STATE(1340), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286320,7 +291090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115538] = 22, + [117303] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -286335,40 +291105,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(3958), 1, + STATE(4186), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3193), 2, + STATE(3255), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286381,55 +291151,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115621] = 22, + [117386] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3748), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3750), 1, - anon_sym_LPAREN, - ACTIONS(3752), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3756), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3766), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3768), 1, - anon_sym_map_LBRACK, - ACTIONS(3770), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(3772), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(3774), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5714), 1, + ACTIONS(5816), 1, + anon_sym_LPAREN, + ACTIONS(5818), 1, anon_sym_STAR, - ACTIONS(5716), 1, + ACTIONS(5820), 1, anon_sym_QMARK, - ACTIONS(5718), 1, + ACTIONS(5822), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5824), 1, anon_sym_LBRACK2, - ACTIONS(5722), 1, + ACTIONS(5826), 1, anon_sym_AMP, - STATE(1971), 1, + ACTIONS(5828), 1, + anon_sym_map_LBRACK, + STATE(488), 1, sym_plain_type, - STATE(4428), 1, + STATE(4468), 1, sym_reference_expression, - STATE(1899), 2, + STATE(287), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3194), 2, + STATE(3256), 2, sym_line_comment, sym_block_comment, - STATE(1918), 4, + STATE(444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1996), 12, + STATE(446), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286442,55 +291212,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115704] = 22, + [117469] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - sym_identifier, - ACTIONS(3642), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(5490), 1, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3989), 1, + sym_identifier, + ACTIONS(3991), 1, anon_sym_fn, - ACTIONS(5502), 1, + ACTIONS(3993), 1, + anon_sym_STAR, + ACTIONS(4003), 1, anon_sym_shared, - ACTIONS(5506), 1, + ACTIONS(4005), 1, + anon_sym_map_LBRACK, + ACTIONS(4007), 1, anon_sym_chan, - ACTIONS(5508), 1, + ACTIONS(4009), 1, anon_sym_thread, - ACTIONS(5510), 1, + ACTIONS(4011), 1, anon_sym_atomic, - ACTIONS(5578), 1, - anon_sym_LPAREN, - ACTIONS(5582), 1, - anon_sym_STAR, - ACTIONS(5584), 1, + ACTIONS(5756), 1, anon_sym_QMARK, - ACTIONS(5586), 1, + ACTIONS(5758), 1, anon_sym_BANG, - ACTIONS(5588), 1, + ACTIONS(5760), 1, anon_sym_LBRACK2, - ACTIONS(5590), 1, + ACTIONS(5762), 1, anon_sym_AMP, - ACTIONS(5592), 1, - anon_sym_map_LBRACK, - STATE(1632), 1, + STATE(2390), 1, sym_plain_type, - STATE(4356), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3195), 2, - sym_line_comment, - sym_block_comment, - STATE(3302), 2, + STATE(2320), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1658), 4, + STATE(3257), 2, + sym_line_comment, + sym_block_comment, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1657), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286503,7 +291273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115787] = 22, + [117552] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -286518,40 +291288,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(3940), 1, - sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3196), 2, + STATE(4600), 1, + sym_plain_type, + STATE(3258), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286564,7 +291334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115870] = 22, + [117635] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -286583,36 +291353,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5816), 1, anon_sym_LPAREN, - ACTIONS(5788), 1, + ACTIONS(5818), 1, anon_sym_STAR, - ACTIONS(5790), 1, + ACTIONS(5820), 1, anon_sym_QMARK, - ACTIONS(5792), 1, + ACTIONS(5822), 1, anon_sym_BANG, - ACTIONS(5794), 1, + ACTIONS(5824), 1, anon_sym_LBRACK2, - ACTIONS(5796), 1, + ACTIONS(5826), 1, anon_sym_AMP, - ACTIONS(5798), 1, + ACTIONS(5828), 1, anon_sym_map_LBRACK, - STATE(347), 1, + STATE(477), 1, sym_plain_type, - STATE(4392), 1, + STATE(4468), 1, sym_reference_expression, - STATE(267), 2, + STATE(287), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3197), 2, + STATE(3259), 2, sym_line_comment, sym_block_comment, - STATE(359), 4, + STATE(444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(358), 12, + STATE(446), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286625,55 +291395,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115953] = 22, + [117718] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3460), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3464), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3468), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3478), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3482), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(3484), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(3486), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5686), 1, + ACTIONS(5816), 1, anon_sym_LPAREN, - ACTIONS(5688), 1, + ACTIONS(5818), 1, anon_sym_STAR, - ACTIONS(5690), 1, + ACTIONS(5820), 1, anon_sym_QMARK, - ACTIONS(5692), 1, + ACTIONS(5822), 1, anon_sym_BANG, - ACTIONS(5694), 1, + ACTIONS(5824), 1, anon_sym_LBRACK2, - ACTIONS(5696), 1, + ACTIONS(5826), 1, anon_sym_AMP, - ACTIONS(5698), 1, + ACTIONS(5828), 1, anon_sym_map_LBRACK, - STATE(1245), 1, + STATE(475), 1, sym_plain_type, - STATE(4407), 1, + STATE(4468), 1, sym_reference_expression, - STATE(1136), 2, + STATE(287), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3198), 2, + STATE(3260), 2, sym_line_comment, sym_block_comment, - STATE(1171), 4, + STATE(444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1169), 12, + STATE(446), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286686,55 +291456,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116036] = 22, + [117801] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3460), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3464), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3468), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3478), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3482), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(3484), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(3486), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5686), 1, + ACTIONS(5816), 1, anon_sym_LPAREN, - ACTIONS(5688), 1, + ACTIONS(5818), 1, anon_sym_STAR, - ACTIONS(5690), 1, + ACTIONS(5820), 1, anon_sym_QMARK, - ACTIONS(5692), 1, + ACTIONS(5822), 1, anon_sym_BANG, - ACTIONS(5694), 1, + ACTIONS(5824), 1, anon_sym_LBRACK2, - ACTIONS(5696), 1, + ACTIONS(5826), 1, anon_sym_AMP, - ACTIONS(5698), 1, + ACTIONS(5828), 1, anon_sym_map_LBRACK, - STATE(1246), 1, + STATE(471), 1, sym_plain_type, - STATE(4407), 1, + STATE(4468), 1, sym_reference_expression, - STATE(1136), 2, + STATE(287), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3199), 2, + STATE(3261), 2, sym_line_comment, sym_block_comment, - STATE(1171), 4, + STATE(444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1169), 12, + STATE(446), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286747,55 +291517,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116119] = 22, + [117884] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3634), 1, - sym_identifier, ACTIONS(3638), 1, - anon_sym_fn, + sym_identifier, ACTIONS(3642), 1, + anon_sym_fn, + ACTIONS(3646), 1, anon_sym_struct, - ACTIONS(3652), 1, - anon_sym_shared, ACTIONS(3656), 1, + anon_sym_shared, + ACTIONS(3660), 1, anon_sym_chan, - ACTIONS(3658), 1, + ACTIONS(3662), 1, anon_sym_thread, - ACTIONS(3660), 1, + ACTIONS(3664), 1, anon_sym_atomic, - ACTIONS(5578), 1, + ACTIONS(5608), 1, anon_sym_LPAREN, - ACTIONS(5814), 1, + ACTIONS(5612), 1, anon_sym_STAR, - ACTIONS(5816), 1, + ACTIONS(5614), 1, anon_sym_QMARK, - ACTIONS(5818), 1, + ACTIONS(5616), 1, anon_sym_BANG, - ACTIONS(5820), 1, + ACTIONS(5618), 1, anon_sym_LBRACK2, - ACTIONS(5822), 1, + ACTIONS(5620), 1, anon_sym_AMP, - ACTIONS(5824), 1, + ACTIONS(5622), 1, anon_sym_map_LBRACK, - STATE(1630), 1, + STATE(1510), 1, sym_plain_type, - STATE(4375), 1, + STATE(4554), 1, sym_reference_expression, - STATE(1659), 2, + STATE(1447), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3200), 2, + STATE(3262), 2, sym_line_comment, sym_block_comment, - STATE(1658), 4, + STATE(1565), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1657), 12, + STATE(1522), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286808,55 +291578,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116202] = 22, + [117967] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3634), 1, + ACTIONS(3570), 1, sym_identifier, - ACTIONS(3638), 1, + ACTIONS(3572), 1, + anon_sym_LPAREN, + ACTIONS(3574), 1, anon_sym_fn, - ACTIONS(3642), 1, + ACTIONS(3576), 1, + anon_sym_STAR, + ACTIONS(3578), 1, anon_sym_struct, - ACTIONS(3652), 1, + ACTIONS(3588), 1, anon_sym_shared, - ACTIONS(3656), 1, + ACTIONS(3590), 1, + anon_sym_map_LBRACK, + ACTIONS(3592), 1, anon_sym_chan, - ACTIONS(3658), 1, + ACTIONS(3594), 1, anon_sym_thread, - ACTIONS(3660), 1, + ACTIONS(3596), 1, anon_sym_atomic, - ACTIONS(5578), 1, - anon_sym_LPAREN, - ACTIONS(5814), 1, - anon_sym_STAR, - ACTIONS(5816), 1, + ACTIONS(5866), 1, anon_sym_QMARK, - ACTIONS(5818), 1, + ACTIONS(5868), 1, anon_sym_BANG, - ACTIONS(5820), 1, + ACTIONS(5870), 1, anon_sym_LBRACK2, - ACTIONS(5822), 1, + ACTIONS(5872), 1, anon_sym_AMP, - ACTIONS(5824), 1, - anon_sym_map_LBRACK, - STATE(1632), 1, + STATE(1363), 1, sym_plain_type, - STATE(4375), 1, + STATE(4428), 1, sym_reference_expression, - STATE(1659), 2, + STATE(1286), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3201), 2, + STATE(3263), 2, sym_line_comment, sym_block_comment, - STATE(1658), 4, + STATE(1334), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1657), 12, + STATE(1340), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286869,55 +291639,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116285] = 22, + [118050] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3460), 1, + ACTIONS(3638), 1, sym_identifier, - ACTIONS(3464), 1, + ACTIONS(3642), 1, anon_sym_fn, - ACTIONS(3468), 1, + ACTIONS(3646), 1, anon_sym_struct, - ACTIONS(3478), 1, + ACTIONS(3656), 1, anon_sym_shared, - ACTIONS(3482), 1, + ACTIONS(3660), 1, anon_sym_chan, - ACTIONS(3484), 1, + ACTIONS(3662), 1, anon_sym_thread, - ACTIONS(3486), 1, + ACTIONS(3664), 1, anon_sym_atomic, - ACTIONS(5686), 1, + ACTIONS(5608), 1, anon_sym_LPAREN, - ACTIONS(5688), 1, + ACTIONS(5612), 1, anon_sym_STAR, - ACTIONS(5690), 1, + ACTIONS(5614), 1, anon_sym_QMARK, - ACTIONS(5692), 1, + ACTIONS(5616), 1, anon_sym_BANG, - ACTIONS(5694), 1, + ACTIONS(5618), 1, anon_sym_LBRACK2, - ACTIONS(5696), 1, + ACTIONS(5620), 1, anon_sym_AMP, - ACTIONS(5698), 1, + ACTIONS(5622), 1, anon_sym_map_LBRACK, - STATE(1247), 1, + STATE(1562), 1, sym_plain_type, - STATE(4407), 1, + STATE(4554), 1, sym_reference_expression, - STATE(1136), 2, + STATE(1447), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3202), 2, + STATE(3264), 2, sym_line_comment, sym_block_comment, - STATE(1171), 4, + STATE(1565), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1169), 12, + STATE(1522), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286930,55 +291700,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116368] = 22, + [118133] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(3610), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3614), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3618), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3628), 1, anon_sym_shared, - ACTIONS(3598), 1, + ACTIONS(3632), 1, + anon_sym_chan, + ACTIONS(3634), 1, + anon_sym_thread, + ACTIONS(3636), 1, + anon_sym_atomic, + ACTIONS(5640), 1, anon_sym_LPAREN, - ACTIONS(3600), 1, + ACTIONS(5642), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5644), 1, + anon_sym_QMARK, + ACTIONS(5646), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5648), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5650), 1, anon_sym_AMP, - STATE(4188), 1, + ACTIONS(5652), 1, + anon_sym_map_LBRACK, + STATE(1422), 1, sym_plain_type, - STATE(4423), 1, + STATE(4415), 1, sym_reference_expression, - STATE(3203), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, + STATE(1405), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(3265), 2, + sym_line_comment, + sym_block_comment, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(1454), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286991,55 +291761,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116451] = 22, + [118216] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3955), 1, + ACTIONS(3780), 1, sym_identifier, - ACTIONS(3957), 1, + ACTIONS(3782), 1, + anon_sym_LPAREN, + ACTIONS(3784), 1, anon_sym_fn, - ACTIONS(3959), 1, - anon_sym_STAR, - ACTIONS(3969), 1, + ACTIONS(3788), 1, + anon_sym_struct, + ACTIONS(3798), 1, anon_sym_shared, - ACTIONS(3971), 1, + ACTIONS(3800), 1, anon_sym_map_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3802), 1, anon_sym_chan, - ACTIONS(3975), 1, + ACTIONS(3804), 1, anon_sym_thread, - ACTIONS(3977), 1, + ACTIONS(3806), 1, anon_sym_atomic, - ACTIONS(5770), 1, + ACTIONS(5746), 1, + anon_sym_STAR, + ACTIONS(5748), 1, anon_sym_QMARK, - ACTIONS(5772), 1, + ACTIONS(5750), 1, anon_sym_BANG, - ACTIONS(5774), 1, + ACTIONS(5752), 1, anon_sym_LBRACK2, - ACTIONS(5776), 1, + ACTIONS(5754), 1, anon_sym_AMP, - STATE(2297), 1, + STATE(2142), 1, sym_plain_type, - STATE(4423), 1, + STATE(4520), 1, sym_reference_expression, - STATE(2284), 2, + STATE(1939), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3204), 2, + STATE(3266), 2, sym_line_comment, sym_block_comment, - STATE(2290), 4, + STATE(2110), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2075), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287052,55 +291822,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116534] = 22, + [118299] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3955), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3957), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3959), 1, - anon_sym_STAR, - ACTIONS(3969), 1, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3971), 1, - anon_sym_map_LBRACK, - ACTIONS(3973), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(3975), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(3977), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5770), 1, + ACTIONS(5816), 1, + anon_sym_LPAREN, + ACTIONS(5818), 1, + anon_sym_STAR, + ACTIONS(5820), 1, anon_sym_QMARK, - ACTIONS(5772), 1, + ACTIONS(5822), 1, anon_sym_BANG, - ACTIONS(5774), 1, + ACTIONS(5824), 1, anon_sym_LBRACK2, - ACTIONS(5776), 1, + ACTIONS(5826), 1, anon_sym_AMP, - STATE(2294), 1, + ACTIONS(5828), 1, + anon_sym_map_LBRACK, + STATE(478), 1, sym_plain_type, - STATE(4423), 1, + STATE(4468), 1, sym_reference_expression, - STATE(2284), 2, + STATE(287), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3205), 2, + STATE(3267), 2, sym_line_comment, sym_block_comment, - STATE(2290), 4, + STATE(444), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(446), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287113,55 +291883,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116617] = 22, + [118382] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(565), 1, + ACTIONS(3959), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3963), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3967), 1, anon_sym_struct, - ACTIONS(585), 1, + ACTIONS(3977), 1, anon_sym_shared, - ACTIONS(589), 1, + ACTIONS(3981), 1, anon_sym_chan, - ACTIONS(591), 1, + ACTIONS(3983), 1, anon_sym_thread, - ACTIONS(593), 1, + ACTIONS(3985), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - ACTIONS(5788), 1, + ACTIONS(5854), 1, anon_sym_STAR, - ACTIONS(5790), 1, + ACTIONS(5856), 1, anon_sym_QMARK, - ACTIONS(5792), 1, + ACTIONS(5858), 1, anon_sym_BANG, - ACTIONS(5794), 1, + ACTIONS(5860), 1, anon_sym_LBRACK2, - ACTIONS(5796), 1, + ACTIONS(5862), 1, anon_sym_AMP, - ACTIONS(5798), 1, + ACTIONS(5864), 1, anon_sym_map_LBRACK, - STATE(349), 1, + STATE(2274), 1, sym_plain_type, - STATE(4392), 1, + STATE(4545), 1, sym_reference_expression, - STATE(267), 2, + STATE(2183), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3206), 2, + STATE(3268), 2, sym_line_comment, sym_block_comment, - STATE(359), 4, + STATE(2203), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(358), 12, + STATE(2202), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287174,55 +291944,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116700] = 22, + [118465] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(565), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(585), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(589), 1, - anon_sym_chan, - ACTIONS(591), 1, - anon_sym_thread, - ACTIONS(593), 1, - anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5788), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5790), 1, - anon_sym_QMARK, - ACTIONS(5792), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5794), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5796), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5798), 1, - anon_sym_map_LBRACK, - STATE(330), 1, + STATE(4011), 1, sym_plain_type, - STATE(4392), 1, + STATE(4596), 1, sym_reference_expression, - STATE(267), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3207), 2, + STATE(3269), 2, sym_line_comment, sym_block_comment, - STATE(359), 4, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(358), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287235,55 +292005,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116783] = 22, + [118548] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3955), 1, + ACTIONS(3610), 1, sym_identifier, - ACTIONS(3957), 1, + ACTIONS(3614), 1, anon_sym_fn, - ACTIONS(3959), 1, - anon_sym_STAR, - ACTIONS(3969), 1, + ACTIONS(3618), 1, + anon_sym_struct, + ACTIONS(3628), 1, anon_sym_shared, - ACTIONS(3971), 1, - anon_sym_map_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3632), 1, anon_sym_chan, - ACTIONS(3975), 1, + ACTIONS(3634), 1, anon_sym_thread, - ACTIONS(3977), 1, + ACTIONS(3636), 1, anon_sym_atomic, - ACTIONS(5770), 1, + ACTIONS(5640), 1, + anon_sym_LPAREN, + ACTIONS(5642), 1, + anon_sym_STAR, + ACTIONS(5644), 1, anon_sym_QMARK, - ACTIONS(5772), 1, + ACTIONS(5646), 1, anon_sym_BANG, - ACTIONS(5774), 1, + ACTIONS(5648), 1, anon_sym_LBRACK2, - ACTIONS(5776), 1, + ACTIONS(5650), 1, anon_sym_AMP, - STATE(2293), 1, + ACTIONS(5652), 1, + anon_sym_map_LBRACK, + STATE(1446), 1, sym_plain_type, - STATE(4423), 1, + STATE(4415), 1, sym_reference_expression, - STATE(2284), 2, + STATE(1405), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3208), 2, + STATE(3270), 2, sym_line_comment, sym_block_comment, - STATE(2290), 4, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(1454), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287296,55 +292066,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116866] = 22, + [118631] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3955), 1, + ACTIONS(3462), 1, sym_identifier, - ACTIONS(3957), 1, + ACTIONS(3466), 1, anon_sym_fn, - ACTIONS(3959), 1, - anon_sym_STAR, - ACTIONS(3969), 1, + ACTIONS(3470), 1, + anon_sym_struct, + ACTIONS(3480), 1, anon_sym_shared, - ACTIONS(3971), 1, - anon_sym_map_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3484), 1, anon_sym_chan, - ACTIONS(3975), 1, + ACTIONS(3486), 1, anon_sym_thread, - ACTIONS(3977), 1, + ACTIONS(3488), 1, anon_sym_atomic, - ACTIONS(5770), 1, + ACTIONS(5732), 1, + anon_sym_LPAREN, + ACTIONS(5734), 1, + anon_sym_STAR, + ACTIONS(5736), 1, anon_sym_QMARK, - ACTIONS(5772), 1, + ACTIONS(5738), 1, anon_sym_BANG, - ACTIONS(5774), 1, + ACTIONS(5740), 1, anon_sym_LBRACK2, - ACTIONS(5776), 1, + ACTIONS(5742), 1, anon_sym_AMP, - STATE(2307), 1, + ACTIONS(5744), 1, + anon_sym_map_LBRACK, + STATE(1259), 1, sym_plain_type, - STATE(4423), 1, + STATE(4499), 1, sym_reference_expression, - STATE(2284), 2, + STATE(1136), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3209), 2, + STATE(3271), 2, sym_line_comment, sym_block_comment, - STATE(2290), 4, + STATE(1179), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(1183), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287357,55 +292127,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116949] = 22, + [118714] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, + ACTIONS(1318), 1, sym_identifier, - ACTIONS(1195), 1, + ACTIONS(1322), 1, anon_sym_fn, - ACTIONS(1199), 1, + ACTIONS(1326), 1, anon_sym_struct, - ACTIONS(1209), 1, + ACTIONS(1336), 1, anon_sym_shared, - ACTIONS(1213), 1, + ACTIONS(1340), 1, anon_sym_chan, - ACTIONS(1215), 1, + ACTIONS(1342), 1, anon_sym_thread, - ACTIONS(1217), 1, + ACTIONS(1344), 1, anon_sym_atomic, - ACTIONS(5800), 1, + ACTIONS(5764), 1, anon_sym_LPAREN, - ACTIONS(5802), 1, + ACTIONS(5766), 1, anon_sym_STAR, - ACTIONS(5804), 1, + ACTIONS(5768), 1, anon_sym_QMARK, - ACTIONS(5806), 1, + ACTIONS(5770), 1, anon_sym_BANG, - ACTIONS(5808), 1, + ACTIONS(5772), 1, anon_sym_LBRACK2, - ACTIONS(5810), 1, + ACTIONS(5774), 1, anon_sym_AMP, - ACTIONS(5812), 1, + ACTIONS(5776), 1, anon_sym_map_LBRACK, - STATE(999), 1, + STATE(1003), 1, sym_plain_type, - STATE(4344), 1, + STATE(4440), 1, sym_reference_expression, - STATE(989), 2, + STATE(986), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3210), 2, + STATE(3272), 2, sym_line_comment, sym_block_comment, - STATE(1091), 4, + STATE(1087), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1089), 12, + STATE(1071), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287418,7 +292188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117032] = 22, + [118797] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -287433,40 +292203,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(4183), 1, + STATE(4215), 1, sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3211), 2, + STATE(3273), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287479,55 +292249,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117115] = 22, + [118880] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3460), 1, + ACTIONS(3736), 1, sym_identifier, - ACTIONS(3464), 1, + ACTIONS(3740), 1, anon_sym_fn, - ACTIONS(3468), 1, + ACTIONS(3744), 1, anon_sym_struct, - ACTIONS(3478), 1, + ACTIONS(3754), 1, anon_sym_shared, - ACTIONS(3482), 1, + ACTIONS(3758), 1, anon_sym_chan, - ACTIONS(3484), 1, + ACTIONS(3760), 1, anon_sym_thread, - ACTIONS(3486), 1, + ACTIONS(3762), 1, anon_sym_atomic, - ACTIONS(5686), 1, + ACTIONS(5778), 1, anon_sym_LPAREN, - ACTIONS(5688), 1, + ACTIONS(5780), 1, anon_sym_STAR, - ACTIONS(5690), 1, + ACTIONS(5782), 1, anon_sym_QMARK, - ACTIONS(5692), 1, + ACTIONS(5784), 1, anon_sym_BANG, - ACTIONS(5694), 1, + ACTIONS(5786), 1, anon_sym_LBRACK2, - ACTIONS(5696), 1, + ACTIONS(5788), 1, anon_sym_AMP, - ACTIONS(5698), 1, + ACTIONS(5790), 1, anon_sym_map_LBRACK, - STATE(1207), 1, + STATE(1926), 1, sym_plain_type, - STATE(4407), 1, + STATE(4537), 1, sym_reference_expression, - STATE(1136), 2, + STATE(1800), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3212), 2, + STATE(3274), 2, sym_line_comment, sym_block_comment, - STATE(1171), 4, + STATE(1920), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1169), 12, + STATE(1919), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287540,55 +292310,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117198] = 22, + [118963] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3460), 1, + ACTIONS(1318), 1, sym_identifier, - ACTIONS(3464), 1, + ACTIONS(1322), 1, anon_sym_fn, - ACTIONS(3468), 1, + ACTIONS(1326), 1, anon_sym_struct, - ACTIONS(3478), 1, + ACTIONS(1336), 1, anon_sym_shared, - ACTIONS(3482), 1, + ACTIONS(1340), 1, anon_sym_chan, - ACTIONS(3484), 1, + ACTIONS(1342), 1, anon_sym_thread, - ACTIONS(3486), 1, + ACTIONS(1344), 1, anon_sym_atomic, - ACTIONS(5686), 1, + ACTIONS(5764), 1, anon_sym_LPAREN, - ACTIONS(5688), 1, + ACTIONS(5766), 1, anon_sym_STAR, - ACTIONS(5690), 1, + ACTIONS(5768), 1, anon_sym_QMARK, - ACTIONS(5692), 1, + ACTIONS(5770), 1, anon_sym_BANG, - ACTIONS(5694), 1, + ACTIONS(5772), 1, anon_sym_LBRACK2, - ACTIONS(5696), 1, + ACTIONS(5774), 1, anon_sym_AMP, - ACTIONS(5698), 1, + ACTIONS(5776), 1, anon_sym_map_LBRACK, - STATE(1204), 1, + STATE(1008), 1, sym_plain_type, - STATE(4407), 1, + STATE(4440), 1, sym_reference_expression, - STATE(1136), 2, + STATE(986), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3213), 2, + STATE(3275), 2, sym_line_comment, sym_block_comment, - STATE(1171), 4, + STATE(1087), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1169), 12, + STATE(1071), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287601,177 +292371,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117281] = 22, + [119046] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3924), 1, - sym_identifier, - ACTIONS(3928), 1, - anon_sym_fn, - ACTIONS(3932), 1, - anon_sym_struct, - ACTIONS(3942), 1, - anon_sym_shared, - ACTIONS(3946), 1, - anon_sym_chan, - ACTIONS(3948), 1, - anon_sym_thread, - ACTIONS(3950), 1, - anon_sym_atomic, - ACTIONS(5732), 1, - anon_sym_LPAREN, - ACTIONS(5734), 1, - anon_sym_STAR, - ACTIONS(5736), 1, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(5738), 1, - anon_sym_BANG, - ACTIONS(5740), 1, - anon_sym_LBRACK2, - ACTIONS(5742), 1, - anon_sym_AMP, - ACTIONS(5744), 1, - anon_sym_map_LBRACK, - STATE(2172), 1, - sym_plain_type, - STATE(4466), 1, - sym_reference_expression, - STATE(2130), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3214), 2, - sym_line_comment, - sym_block_comment, - STATE(2178), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2179), 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, - [117364] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3748), 1, - sym_identifier, - ACTIONS(3750), 1, - anon_sym_LPAREN, - ACTIONS(3752), 1, - anon_sym_fn, - ACTIONS(3756), 1, - anon_sym_struct, - ACTIONS(3766), 1, - anon_sym_shared, - ACTIONS(3768), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(3770), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(3772), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(3774), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5714), 1, - anon_sym_STAR, - ACTIONS(5716), 1, - anon_sym_QMARK, - ACTIONS(5718), 1, - anon_sym_BANG, - ACTIONS(5720), 1, - anon_sym_LBRACK2, - ACTIONS(5722), 1, - anon_sym_AMP, - STATE(1972), 1, - sym_plain_type, - STATE(4428), 1, - sym_reference_expression, - STATE(1899), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3215), 2, - sym_line_comment, - sym_block_comment, - STATE(1918), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1996), 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, - [117447] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3797), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3799), 1, - anon_sym_LPAREN, - ACTIONS(3801), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3805), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3815), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3817), 1, - anon_sym_map_LBRACK, - ACTIONS(3819), 1, - anon_sym_chan, - ACTIONS(3821), 1, - anon_sym_thread, - ACTIONS(3823), 1, - anon_sym_atomic, - ACTIONS(5760), 1, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5762), 1, - anon_sym_QMARK, - ACTIONS(5764), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5766), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5768), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(2038), 1, + STATE(3861), 1, sym_plain_type, - STATE(4365), 1, + STATE(4596), 1, sym_reference_expression, - STATE(1904), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3216), 2, + STATE(3276), 2, sym_line_comment, sym_block_comment, - STATE(1978), 4, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1980), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287784,55 +292432,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117530] = 22, + [119129] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(565), 1, + ACTIONS(3959), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3963), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3967), 1, anon_sym_struct, - ACTIONS(585), 1, + ACTIONS(3977), 1, anon_sym_shared, - ACTIONS(589), 1, + ACTIONS(3981), 1, anon_sym_chan, - ACTIONS(591), 1, + ACTIONS(3983), 1, anon_sym_thread, - ACTIONS(593), 1, + ACTIONS(3985), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - ACTIONS(5788), 1, + ACTIONS(5854), 1, anon_sym_STAR, - ACTIONS(5790), 1, + ACTIONS(5856), 1, anon_sym_QMARK, - ACTIONS(5792), 1, + ACTIONS(5858), 1, anon_sym_BANG, - ACTIONS(5794), 1, + ACTIONS(5860), 1, anon_sym_LBRACK2, - ACTIONS(5796), 1, + ACTIONS(5862), 1, anon_sym_AMP, - ACTIONS(5798), 1, + ACTIONS(5864), 1, anon_sym_map_LBRACK, - STATE(351), 1, + STATE(2218), 1, sym_plain_type, - STATE(4392), 1, + STATE(4545), 1, sym_reference_expression, - STATE(267), 2, + STATE(2183), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3217), 2, + STATE(3277), 2, sym_line_comment, sym_block_comment, - STATE(359), 4, + STATE(2203), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(358), 12, + STATE(2202), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287845,55 +292493,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117613] = 22, + [119212] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3797), 1, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(3799), 1, - anon_sym_LPAREN, - ACTIONS(3801), 1, + ACTIONS(3438), 1, anon_sym_fn, - ACTIONS(3805), 1, + ACTIONS(3442), 1, anon_sym_struct, - ACTIONS(3815), 1, + ACTIONS(3452), 1, anon_sym_shared, - ACTIONS(3817), 1, - anon_sym_map_LBRACK, - ACTIONS(3819), 1, + ACTIONS(3456), 1, anon_sym_chan, - ACTIONS(3821), 1, + ACTIONS(3458), 1, anon_sym_thread, - ACTIONS(3823), 1, + ACTIONS(3460), 1, anon_sym_atomic, - ACTIONS(5760), 1, + ACTIONS(5792), 1, + anon_sym_LPAREN, + ACTIONS(5794), 1, anon_sym_STAR, - ACTIONS(5762), 1, + ACTIONS(5796), 1, anon_sym_QMARK, - ACTIONS(5764), 1, + ACTIONS(5798), 1, anon_sym_BANG, - ACTIONS(5766), 1, + ACTIONS(5800), 1, anon_sym_LBRACK2, - ACTIONS(5768), 1, + ACTIONS(5802), 1, anon_sym_AMP, - STATE(2042), 1, + ACTIONS(5804), 1, + anon_sym_map_LBRACK, + STATE(3415), 1, sym_plain_type, - STATE(4365), 1, + STATE(4406), 1, sym_reference_expression, - STATE(1904), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3218), 2, + STATE(3278), 2, sym_line_comment, sym_block_comment, - STATE(1978), 4, + STATE(3360), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3404), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1980), 12, + STATE(3401), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287906,55 +292554,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117696] = 22, + [119295] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(565), 1, + ACTIONS(3610), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3614), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3618), 1, anon_sym_struct, - ACTIONS(585), 1, + ACTIONS(3628), 1, anon_sym_shared, - ACTIONS(589), 1, + ACTIONS(3632), 1, anon_sym_chan, - ACTIONS(591), 1, + ACTIONS(3634), 1, anon_sym_thread, - ACTIONS(593), 1, + ACTIONS(3636), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5640), 1, anon_sym_LPAREN, - ACTIONS(5788), 1, + ACTIONS(5642), 1, anon_sym_STAR, - ACTIONS(5790), 1, + ACTIONS(5644), 1, anon_sym_QMARK, - ACTIONS(5792), 1, + ACTIONS(5646), 1, anon_sym_BANG, - ACTIONS(5794), 1, + ACTIONS(5648), 1, anon_sym_LBRACK2, - ACTIONS(5796), 1, + ACTIONS(5650), 1, anon_sym_AMP, - ACTIONS(5798), 1, + ACTIONS(5652), 1, anon_sym_map_LBRACK, - STATE(336), 1, + STATE(1441), 1, sym_plain_type, - STATE(4392), 1, + STATE(4415), 1, sym_reference_expression, - STATE(267), 2, + STATE(1405), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3219), 2, + STATE(3279), 2, sym_line_comment, sym_block_comment, - STATE(359), 4, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(358), 12, + STATE(1454), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287967,55 +292615,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117779] = 22, + [119378] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(565), 1, + ACTIONS(3638), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3642), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3646), 1, anon_sym_struct, - ACTIONS(585), 1, + ACTIONS(3656), 1, anon_sym_shared, - ACTIONS(589), 1, + ACTIONS(3660), 1, anon_sym_chan, - ACTIONS(591), 1, + ACTIONS(3662), 1, anon_sym_thread, - ACTIONS(593), 1, + ACTIONS(3664), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5608), 1, anon_sym_LPAREN, - ACTIONS(5788), 1, + ACTIONS(5612), 1, anon_sym_STAR, - ACTIONS(5790), 1, + ACTIONS(5614), 1, anon_sym_QMARK, - ACTIONS(5792), 1, + ACTIONS(5616), 1, anon_sym_BANG, - ACTIONS(5794), 1, + ACTIONS(5618), 1, anon_sym_LBRACK2, - ACTIONS(5796), 1, + ACTIONS(5620), 1, anon_sym_AMP, - ACTIONS(5798), 1, + ACTIONS(5622), 1, anon_sym_map_LBRACK, - STATE(481), 1, + STATE(1601), 1, sym_plain_type, - STATE(4392), 1, + STATE(4554), 1, sym_reference_expression, - STATE(267), 2, + STATE(1447), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3220), 2, + STATE(3280), 2, sym_line_comment, sym_block_comment, - STATE(359), 4, + STATE(1565), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(358), 12, + STATE(1522), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288028,55 +292676,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117862] = 22, + [119461] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(565), 1, + ACTIONS(4553), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(4555), 1, + anon_sym_LPAREN, + ACTIONS(4557), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(4559), 1, + anon_sym_STAR, + ACTIONS(4561), 1, anon_sym_struct, - ACTIONS(585), 1, + ACTIONS(4571), 1, anon_sym_shared, - ACTIONS(589), 1, + ACTIONS(4573), 1, + anon_sym_map_LBRACK, + ACTIONS(4575), 1, anon_sym_chan, - ACTIONS(591), 1, + ACTIONS(4577), 1, anon_sym_thread, - ACTIONS(593), 1, + ACTIONS(4579), 1, anon_sym_atomic, - ACTIONS(5786), 1, - anon_sym_LPAREN, - ACTIONS(5788), 1, - anon_sym_STAR, - ACTIONS(5790), 1, + ACTIONS(5844), 1, anon_sym_QMARK, - ACTIONS(5792), 1, + ACTIONS(5846), 1, anon_sym_BANG, - ACTIONS(5794), 1, + ACTIONS(5848), 1, anon_sym_LBRACK2, - ACTIONS(5796), 1, + ACTIONS(5850), 1, anon_sym_AMP, - ACTIONS(5798), 1, - anon_sym_map_LBRACK, - STATE(338), 1, + STATE(2529), 1, sym_plain_type, - STATE(4392), 1, + STATE(4549), 1, sym_reference_expression, - STATE(267), 2, + STATE(2644), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3221), 2, + STATE(3281), 2, sym_line_comment, sym_block_comment, - STATE(359), 4, + STATE(2752), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(358), 12, + STATE(2753), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288089,55 +292737,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117945] = 22, + [119544] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3460), 1, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(3464), 1, + ACTIONS(3827), 1, + anon_sym_LPAREN, + ACTIONS(3829), 1, anon_sym_fn, - ACTIONS(3468), 1, + ACTIONS(3833), 1, anon_sym_struct, - ACTIONS(3478), 1, + ACTIONS(3843), 1, anon_sym_shared, - ACTIONS(3482), 1, + ACTIONS(3845), 1, + anon_sym_map_LBRACK, + ACTIONS(3847), 1, anon_sym_chan, - ACTIONS(3484), 1, + ACTIONS(3849), 1, anon_sym_thread, - ACTIONS(3486), 1, + ACTIONS(3851), 1, anon_sym_atomic, - ACTIONS(5686), 1, - anon_sym_LPAREN, - ACTIONS(5688), 1, + ACTIONS(5806), 1, anon_sym_STAR, - ACTIONS(5690), 1, + ACTIONS(5808), 1, anon_sym_QMARK, - ACTIONS(5692), 1, + ACTIONS(5810), 1, anon_sym_BANG, - ACTIONS(5694), 1, + ACTIONS(5812), 1, anon_sym_LBRACK2, - ACTIONS(5696), 1, + ACTIONS(5814), 1, anon_sym_AMP, - ACTIONS(5698), 1, - anon_sym_map_LBRACK, - STATE(1139), 1, + STATE(2098), 1, sym_plain_type, - STATE(4407), 1, + STATE(4457), 1, sym_reference_expression, - STATE(1136), 2, + STATE(1940), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3222), 2, + STATE(3282), 2, sym_line_comment, sym_block_comment, - STATE(1171), 4, + STATE(1986), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1169), 12, + STATE(1985), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288150,55 +292798,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118028] = 22, + [119627] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(1195), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(1199), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(1209), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(1213), 1, - anon_sym_chan, - ACTIONS(1215), 1, - anon_sym_thread, - ACTIONS(1217), 1, - anon_sym_atomic, - ACTIONS(5800), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5802), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5804), 1, - anon_sym_QMARK, - ACTIONS(5806), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5808), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5810), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5812), 1, - anon_sym_map_LBRACK, - STATE(1008), 1, + STATE(3887), 1, sym_plain_type, - STATE(4344), 1, + STATE(4596), 1, sym_reference_expression, - STATE(989), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3223), 2, + STATE(3283), 2, sym_line_comment, sym_block_comment, - STATE(1091), 4, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1089), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288211,55 +292859,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118111] = 22, + [119710] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3460), 1, + ACTIONS(3610), 1, sym_identifier, - ACTIONS(3464), 1, + ACTIONS(3614), 1, anon_sym_fn, - ACTIONS(3468), 1, + ACTIONS(3618), 1, anon_sym_struct, - ACTIONS(3478), 1, + ACTIONS(3628), 1, anon_sym_shared, - ACTIONS(3482), 1, + ACTIONS(3632), 1, anon_sym_chan, - ACTIONS(3484), 1, + ACTIONS(3634), 1, anon_sym_thread, - ACTIONS(3486), 1, + ACTIONS(3636), 1, anon_sym_atomic, - ACTIONS(5686), 1, + ACTIONS(5640), 1, anon_sym_LPAREN, - ACTIONS(5688), 1, + ACTIONS(5642), 1, anon_sym_STAR, - ACTIONS(5690), 1, + ACTIONS(5644), 1, anon_sym_QMARK, - ACTIONS(5692), 1, + ACTIONS(5646), 1, anon_sym_BANG, - ACTIONS(5694), 1, + ACTIONS(5648), 1, anon_sym_LBRACK2, - ACTIONS(5696), 1, + ACTIONS(5650), 1, anon_sym_AMP, - ACTIONS(5698), 1, + ACTIONS(5652), 1, anon_sym_map_LBRACK, - STATE(1180), 1, + STATE(1449), 1, sym_plain_type, - STATE(4407), 1, + STATE(4415), 1, sym_reference_expression, - STATE(1136), 2, + STATE(1405), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3224), 2, + STATE(3284), 2, sym_line_comment, sym_block_comment, - STATE(1171), 4, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1169), 12, + STATE(1454), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288272,55 +292920,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118194] = 22, + [119793] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(565), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(585), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(589), 1, - anon_sym_chan, - ACTIONS(591), 1, - anon_sym_thread, - ACTIONS(593), 1, - anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5788), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5790), 1, - anon_sym_QMARK, - ACTIONS(5792), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5794), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5796), 1, + ACTIONS(5368), 1, anon_sym_AMP, - ACTIONS(5798), 1, - anon_sym_map_LBRACK, - STATE(346), 1, + STATE(4374), 1, sym_plain_type, - STATE(4392), 1, + STATE(4596), 1, sym_reference_expression, - STATE(267), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3225), 2, + STATE(3285), 2, sym_line_comment, sym_block_comment, - STATE(359), 4, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(358), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288333,55 +292981,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118277] = 22, + [119876] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4068), 1, + ACTIONS(3736), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(3740), 1, anon_sym_fn, - ACTIONS(4076), 1, + ACTIONS(3744), 1, anon_sym_struct, - ACTIONS(4086), 1, + ACTIONS(3754), 1, anon_sym_shared, - ACTIONS(4090), 1, + ACTIONS(3758), 1, anon_sym_chan, - ACTIONS(4092), 1, + ACTIONS(3760), 1, anon_sym_thread, - ACTIONS(4094), 1, + ACTIONS(3762), 1, anon_sym_atomic, - ACTIONS(5746), 1, + ACTIONS(5778), 1, anon_sym_LPAREN, - ACTIONS(5748), 1, + ACTIONS(5780), 1, anon_sym_STAR, - ACTIONS(5750), 1, + ACTIONS(5782), 1, anon_sym_QMARK, - ACTIONS(5752), 1, + ACTIONS(5784), 1, anon_sym_BANG, - ACTIONS(5754), 1, + ACTIONS(5786), 1, anon_sym_LBRACK2, - ACTIONS(5756), 1, + ACTIONS(5788), 1, anon_sym_AMP, - ACTIONS(5758), 1, + ACTIONS(5790), 1, anon_sym_map_LBRACK, - STATE(2461), 1, + STATE(1928), 1, sym_plain_type, - STATE(4386), 1, + STATE(4537), 1, sym_reference_expression, - STATE(2419), 2, + STATE(1800), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3226), 2, + STATE(3286), 2, sym_line_comment, sym_block_comment, - STATE(2533), 4, + STATE(1920), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(1919), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288394,55 +293042,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118360] = 22, + [119959] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(609), 1, + sym_identifier, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3955), 1, - sym_identifier, - ACTIONS(3957), 1, - anon_sym_fn, - ACTIONS(3959), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(3969), 1, - anon_sym_shared, - ACTIONS(3971), 1, - anon_sym_map_LBRACK, - ACTIONS(3973), 1, - anon_sym_chan, - ACTIONS(3975), 1, - anon_sym_thread, - ACTIONS(3977), 1, - anon_sym_atomic, - ACTIONS(5770), 1, - anon_sym_QMARK, - ACTIONS(5772), 1, + ACTIONS(5364), 1, anon_sym_BANG, - ACTIONS(5774), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5776), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(2404), 1, - sym_plain_type, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(2284), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3227), 2, + STATE(4641), 1, + sym_plain_type, + STATE(3287), 2, sym_line_comment, sym_block_comment, - STATE(2290), 4, + STATE(3593), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2348), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288455,55 +293103,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118443] = 22, + [120042] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3460), 1, + ACTIONS(3959), 1, sym_identifier, - ACTIONS(3464), 1, + ACTIONS(3963), 1, anon_sym_fn, - ACTIONS(3468), 1, + ACTIONS(3967), 1, anon_sym_struct, - ACTIONS(3478), 1, + ACTIONS(3977), 1, anon_sym_shared, - ACTIONS(3482), 1, + ACTIONS(3981), 1, anon_sym_chan, - ACTIONS(3484), 1, + ACTIONS(3983), 1, anon_sym_thread, - ACTIONS(3486), 1, + ACTIONS(3985), 1, anon_sym_atomic, - ACTIONS(5686), 1, + ACTIONS(5852), 1, anon_sym_LPAREN, - ACTIONS(5688), 1, + ACTIONS(5854), 1, anon_sym_STAR, - ACTIONS(5690), 1, + ACTIONS(5856), 1, anon_sym_QMARK, - ACTIONS(5692), 1, + ACTIONS(5858), 1, anon_sym_BANG, - ACTIONS(5694), 1, + ACTIONS(5860), 1, anon_sym_LBRACK2, - ACTIONS(5696), 1, + ACTIONS(5862), 1, anon_sym_AMP, - ACTIONS(5698), 1, + ACTIONS(5864), 1, anon_sym_map_LBRACK, - STATE(1243), 1, + STATE(2239), 1, sym_plain_type, - STATE(4407), 1, + STATE(4545), 1, sym_reference_expression, - STATE(1136), 2, + STATE(2183), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3228), 2, + STATE(3288), 2, sym_line_comment, sym_block_comment, - STATE(1171), 4, + STATE(2203), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1169), 12, + STATE(2202), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288516,55 +293164,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118526] = 22, + [120125] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3598), 1, - anon_sym_LPAREN, - ACTIONS(3955), 1, + ACTIONS(3959), 1, sym_identifier, - ACTIONS(3957), 1, + ACTIONS(3963), 1, anon_sym_fn, - ACTIONS(3959), 1, - anon_sym_STAR, - ACTIONS(3969), 1, + ACTIONS(3967), 1, + anon_sym_struct, + ACTIONS(3977), 1, anon_sym_shared, - ACTIONS(3971), 1, - anon_sym_map_LBRACK, - ACTIONS(3973), 1, + ACTIONS(3981), 1, anon_sym_chan, - ACTIONS(3975), 1, + ACTIONS(3983), 1, anon_sym_thread, - ACTIONS(3977), 1, + ACTIONS(3985), 1, anon_sym_atomic, - ACTIONS(5770), 1, + ACTIONS(5852), 1, + anon_sym_LPAREN, + ACTIONS(5854), 1, + anon_sym_STAR, + ACTIONS(5856), 1, anon_sym_QMARK, - ACTIONS(5772), 1, + ACTIONS(5858), 1, anon_sym_BANG, - ACTIONS(5774), 1, + ACTIONS(5860), 1, anon_sym_LBRACK2, - ACTIONS(5776), 1, + ACTIONS(5862), 1, anon_sym_AMP, - STATE(2385), 1, + ACTIONS(5864), 1, + anon_sym_map_LBRACK, + STATE(2246), 1, sym_plain_type, - STATE(4423), 1, + STATE(4545), 1, sym_reference_expression, - STATE(2284), 2, + STATE(2183), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3229), 2, + STATE(3289), 2, sym_line_comment, sym_block_comment, - STATE(2290), 4, + STATE(2203), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2292), 12, + STATE(2202), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288577,13 +293225,11 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118609] = 22, + [120208] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, ACTIONS(97), 1, anon_sym_map_LBRACK, ACTIONS(99), 1, @@ -288592,40 +293238,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3598), 1, - anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, - anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(3820), 1, - sym_plain_type, - STATE(4423), 1, + STATE(4353), 1, + sym__plain_type_without_special, + STATE(4596), 1, sym_reference_expression, - STATE(3230), 2, + STATE(3290), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288638,13 +293275,11 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118692] = 22, + [120276] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, ACTIONS(97), 1, anon_sym_map_LBRACK, ACTIONS(99), 1, @@ -288653,40 +293288,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3598), 1, - anon_sym_LPAREN, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5328), 1, - anon_sym_BANG, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(3827), 1, - sym_plain_type, - STATE(4423), 1, + STATE(4328), 1, + sym__plain_type_without_special, + STATE(4596), 1, sym_reference_expression, - STATE(3231), 2, + STATE(3291), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2290), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288699,7 +293325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118775] = 18, + [120344] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -288712,31 +293338,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(4342), 1, + STATE(4240), 1, sym__plain_type_without_special, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3232), 2, + STATE(3292), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288749,7 +293375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118843] = 18, + [120412] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -288762,31 +293388,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(4165), 1, + STATE(4168), 1, sym__plain_type_without_special, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3233), 2, + STATE(3293), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288799,7 +293425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118911] = 18, + [120480] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -288812,31 +293438,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(4218), 1, + STATE(4177), 1, sym__plain_type_without_special, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3234), 2, + STATE(3294), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288849,7 +293475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118979] = 18, + [120548] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -288862,31 +293488,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(4046), 1, + STATE(4096), 1, sym__plain_type_without_special, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3235), 2, + STATE(3295), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288899,57 +293525,60 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119047] = 18, + [120616] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(1472), 1, + anon_sym_SQUOTE, + ACTIONS(1474), 1, + anon_sym_DQUOTE, + ACTIONS(1476), 1, + anon_sym_c_SQUOTE, + ACTIONS(1478), 1, + anon_sym_c_DQUOTE, + ACTIONS(1480), 1, + anon_sym_r_SQUOTE, + ACTIONS(1482), 1, + anon_sym_r_DQUOTE, + ACTIONS(5874), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(623), 1, - anon_sym_shared, - ACTIONS(3600), 1, - anon_sym_STAR, - ACTIONS(5330), 1, - anon_sym_LBRACK2, - ACTIONS(5332), 1, - anon_sym_AMP, - STATE(4134), 1, - sym__plain_type_without_special, - STATE(4423), 1, + ACTIONS(5876), 1, + anon_sym_if, + ACTIONS(5878), 1, + anon_sym_unsafe, + STATE(3863), 1, + sym_value_attribute, + STATE(3877), 1, sym_reference_expression, - STATE(3236), 2, + STATE(4153), 1, + sym_attribute_expression, + STATE(4239), 1, + sym_literal, + ACTIONS(1470), 2, + sym_float_literal, + sym_rune_literal, + STATE(3296), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2292), 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, - [119115] = 18, + STATE(4188), 2, + sym_if_attribute, + sym__plain_attribute, + STATE(4189), 2, + sym_literal_attribute, + sym_key_value_attribute, + STATE(2440), 3, + sym_interpreted_string_literal, + sym_c_string_literal, + sym_raw_string_literal, + ACTIONS(1454), 5, + sym_none, + sym_true, + sym_false, + sym_nil, + sym_int_literal, + [120690] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -288962,31 +293591,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(4044), 1, + STATE(4422), 1, sym__plain_type_without_special, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3237), 2, + STATE(3297), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288999,7 +293628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119183] = 18, + [120758] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -289012,31 +293641,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(4308), 1, + STATE(4183), 1, sym__plain_type_without_special, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3238), 2, + STATE(3298), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289049,7 +293678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119251] = 18, + [120826] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -289062,31 +293691,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(4053), 1, + STATE(4160), 1, sym__plain_type_without_special, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3239), 2, + STATE(3299), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289099,7 +293728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119319] = 18, + [120894] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -289112,31 +293741,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(4043), 1, + STATE(4337), 1, sym__plain_type_without_special, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3240), 2, + STATE(3300), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289149,7 +293778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119387] = 18, + [120962] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -289162,31 +293791,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(4116), 1, + STATE(4217), 1, sym__plain_type_without_special, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3241), 2, + STATE(3301), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289199,60 +293828,60 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119455] = 21, + [121030] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1267), 1, + ACTIONS(1472), 1, anon_sym_SQUOTE, - ACTIONS(1269), 1, + ACTIONS(1474), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(1476), 1, anon_sym_c_SQUOTE, - ACTIONS(1273), 1, + ACTIONS(1478), 1, anon_sym_c_DQUOTE, - ACTIONS(1275), 1, + ACTIONS(1480), 1, anon_sym_r_SQUOTE, - ACTIONS(1277), 1, + ACTIONS(1482), 1, anon_sym_r_DQUOTE, - ACTIONS(5826), 1, + ACTIONS(5874), 1, sym_identifier, - ACTIONS(5828), 1, + ACTIONS(5876), 1, anon_sym_if, - ACTIONS(5830), 1, + ACTIONS(5878), 1, anon_sym_unsafe, - STATE(3822), 1, + STATE(3862), 1, + sym_attribute_expression, + STATE(3863), 1, sym_value_attribute, - STATE(3850), 1, + STATE(3877), 1, sym_reference_expression, - STATE(3894), 1, - sym_attribute_expression, - STATE(4216), 1, + STATE(4239), 1, sym_literal, - ACTIONS(1265), 2, + ACTIONS(1470), 2, sym_float_literal, sym_rune_literal, - STATE(3242), 2, + STATE(3302), 2, sym_line_comment, sym_block_comment, - STATE(4129), 2, + STATE(4188), 2, sym_if_attribute, sym__plain_attribute, - STATE(4133), 2, + STATE(4189), 2, sym_literal_attribute, sym_key_value_attribute, - STATE(2398), 3, + STATE(2440), 3, sym_interpreted_string_literal, sym_c_string_literal, sym_raw_string_literal, - ACTIONS(1249), 5, + ACTIONS(1454), 5, sym_none, sym_true, sym_false, sym_nil, sym_int_literal, - [119529] = 18, + [121104] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -289265,31 +293894,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(4380), 1, + STATE(4354), 1, sym__plain_type_without_special, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3243), 2, + STATE(3303), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289302,7 +293931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119597] = 18, + [121172] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -289315,81 +293944,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(623), 1, - anon_sym_shared, - ACTIONS(3600), 1, - anon_sym_STAR, - ACTIONS(5330), 1, - anon_sym_LBRACK2, - ACTIONS(5332), 1, - anon_sym_AMP, - STATE(4199), 1, - sym__plain_type_without_special, - STATE(4423), 1, - sym_reference_expression, - STATE(3244), 2, - sym_line_comment, - sym_block_comment, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2292), 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, - [119665] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(97), 1, - anon_sym_map_LBRACK, - ACTIONS(99), 1, - anon_sym_chan, - ACTIONS(101), 1, - anon_sym_thread, - ACTIONS(103), 1, - anon_sym_atomic, - ACTIONS(605), 1, - sym_identifier, - ACTIONS(611), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(4135), 1, + STATE(4484), 1, sym__plain_type_without_special, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3245), 2, + STATE(3304), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289402,7 +293981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119733] = 18, + [121240] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -289415,31 +293994,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_shared, ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5330), 1, + ACTIONS(5366), 1, anon_sym_LBRACK2, - ACTIONS(5332), 1, + ACTIONS(5368), 1, anon_sym_AMP, - STATE(4297), 1, + STATE(4195), 1, sym__plain_type_without_special, - STATE(4423), 1, + STATE(4596), 1, sym_reference_expression, - STATE(3246), 2, + STATE(3305), 2, sym_line_comment, sym_block_comment, - STATE(3543), 2, + STATE(3593), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2292), 12, + STATE(2350), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289452,101 +294031,48 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119801] = 21, + [121308] = 19, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1267), 1, - anon_sym_SQUOTE, - ACTIONS(1269), 1, - anon_sym_DQUOTE, - ACTIONS(1271), 1, - anon_sym_c_SQUOTE, - ACTIONS(1273), 1, - anon_sym_c_DQUOTE, - ACTIONS(1275), 1, - anon_sym_r_SQUOTE, - ACTIONS(1277), 1, - anon_sym_r_DQUOTE, - ACTIONS(5826), 1, - sym_identifier, - ACTIONS(5828), 1, - anon_sym_if, - ACTIONS(5830), 1, - anon_sym_unsafe, - STATE(3822), 1, - sym_value_attribute, - STATE(3850), 1, - sym_reference_expression, - STATE(4137), 1, - sym_attribute_expression, - STATE(4216), 1, - sym_literal, - ACTIONS(1265), 2, - sym_float_literal, - sym_rune_literal, - STATE(3247), 2, - sym_line_comment, - sym_block_comment, - STATE(4129), 2, - sym_if_attribute, - sym__plain_attribute, - STATE(4133), 2, - sym_literal_attribute, - sym_key_value_attribute, - STATE(2398), 3, - sym_interpreted_string_literal, - sym_c_string_literal, - sym_raw_string_literal, - ACTIONS(1249), 5, - sym_none, - sym_true, - sym_false, - sym_nil, - sym_int_literal, - [119875] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4922), 1, + ACTIONS(4948), 1, anon_sym_LBRACK, - ACTIONS(5832), 1, + ACTIONS(5880), 1, sym_identifier, - ACTIONS(5834), 1, + ACTIONS(5882), 1, anon_sym_LPAREN, - ACTIONS(5840), 1, + ACTIONS(5888), 1, anon_sym_LT2, - ACTIONS(5842), 1, + ACTIONS(5890), 1, anon_sym_LBRACK2, - STATE(3324), 1, + STATE(3390), 1, sym_receiver, - STATE(3444), 1, + STATE(3495), 1, sym__function_name, - STATE(3448), 1, + STATE(3511), 1, sym_capture_list, - STATE(3644), 1, + STATE(3732), 1, sym_generic_parameters, - STATE(3768), 1, + STATE(3859), 1, sym_overridable_operator, - STATE(4220), 1, + STATE(4175), 1, sym_signature, - STATE(4360), 1, - sym_static_receiver, - STATE(4463), 1, + STATE(4608), 1, sym_reference_expression, - STATE(2870), 2, + STATE(4616), 1, + sym_static_receiver, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3248), 2, + STATE(3306), 2, sym_line_comment, sym_block_comment, - ACTIONS(5838), 3, + ACTIONS(5886), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5836), 8, + ACTIONS(5884), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -289555,15 +294081,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [119944] = 4, + [121377] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3249), 2, + STATE(3307), 2, sym_line_comment, sym_block_comment, - ACTIONS(2171), 24, + ACTIONS(3022), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -289588,15 +294114,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [119981] = 4, + [121414] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3250), 2, + STATE(3308), 2, sym_line_comment, sym_block_comment, - ACTIONS(2237), 24, + ACTIONS(2689), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -289621,15 +294147,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [120018] = 4, + [121451] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3251), 2, + STATE(3309), 2, sym_line_comment, sym_block_comment, - ACTIONS(2167), 24, + ACTIONS(2741), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -289654,15 +294180,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [120055] = 4, + [121488] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3252), 2, + STATE(3310), 2, sym_line_comment, sym_block_comment, - ACTIONS(2193), 24, + ACTIONS(2705), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -289687,15 +294213,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [120092] = 4, + [121525] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3253), 2, + STATE(3311), 2, sym_line_comment, sym_block_comment, - ACTIONS(2197), 24, + ACTIONS(2099), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -289720,22 +294246,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [120129] = 6, + [121562] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3546), 1, + STATE(3597), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3254), 2, + STATE(3312), 2, sym_line_comment, sym_block_comment, - ACTIONS(1757), 4, + ACTIONS(1651), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - ACTIONS(1759), 15, + ACTIONS(1657), 15, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, @@ -289751,68 +294277,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [120166] = 12, + [121599] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5832), 1, + ACTIONS(5880), 1, sym_identifier, - ACTIONS(5844), 1, + ACTIONS(5892), 1, anon_sym_LPAREN, - STATE(3285), 1, + STATE(3348), 1, sym_receiver, - STATE(3434), 1, + STATE(3464), 1, sym__function_name, - STATE(3768), 1, + STATE(3859), 1, sym_overridable_operator, - STATE(4456), 1, + STATE(4495), 1, sym_static_receiver, - STATE(4463), 1, - sym_reference_expression, - STATE(3255), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5838), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5836), 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, - [120213] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5832), 1, - sym_identifier, - ACTIONS(5844), 1, - anon_sym_LPAREN, - STATE(3296), 1, - sym_receiver, - STATE(3420), 1, - sym__function_name, - STATE(3768), 1, - sym_overridable_operator, - STATE(4463), 1, + STATE(4608), 1, sym_reference_expression, - STATE(4551), 1, - sym_static_receiver, - STATE(3256), 2, + STATE(3313), 2, sym_line_comment, sym_block_comment, - ACTIONS(5838), 3, + ACTIONS(5886), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5836), 8, + ACTIONS(5884), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -289821,52 +294312,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120260] = 14, + [121646] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1267), 1, + ACTIONS(1472), 1, anon_sym_SQUOTE, - ACTIONS(1269), 1, + ACTIONS(1474), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(1476), 1, anon_sym_c_SQUOTE, - ACTIONS(1273), 1, + ACTIONS(1478), 1, anon_sym_c_DQUOTE, - ACTIONS(1275), 1, + ACTIONS(1480), 1, anon_sym_r_SQUOTE, - ACTIONS(1277), 1, + ACTIONS(1482), 1, anon_sym_r_DQUOTE, - ACTIONS(5846), 1, + ACTIONS(5894), 1, sym_identifier, - STATE(4174), 1, + STATE(4146), 1, sym_literal, - ACTIONS(1265), 2, + ACTIONS(1470), 2, sym_float_literal, sym_rune_literal, - STATE(3257), 2, + STATE(3314), 2, sym_line_comment, sym_block_comment, - STATE(2398), 3, + STATE(2440), 3, sym_interpreted_string_literal, sym_c_string_literal, sym_raw_string_literal, - ACTIONS(1249), 5, + ACTIONS(1454), 5, sym_none, sym_true, sym_false, sym_nil, sym_int_literal, - [120311] = 5, + [121697] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3258), 2, + STATE(3315), 2, sym_line_comment, sym_block_comment, - ACTIONS(2193), 7, + ACTIONS(2741), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -289874,7 +294365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2191), 11, + ACTIONS(2739), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -289886,15 +294377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [120344] = 5, + [121730] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3259), 2, + STATE(3316), 2, sym_line_comment, sym_block_comment, - ACTIONS(2197), 7, + ACTIONS(2705), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -289902,7 +294393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2195), 11, + ACTIONS(2703), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -289914,43 +294405,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [120377] = 5, + [121763] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3260), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2171), 7, - anon_sym_fn, - anon_sym_struct, + ACTIONS(5880), 1, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(2169), 11, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5892), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + STATE(3382), 1, + sym_receiver, + STATE(3564), 1, + sym__function_name, + STATE(3859), 1, + sym_overridable_operator, + STATE(4496), 1, + sym_static_receiver, + STATE(4608), 1, + sym_reference_expression, + STATE(3317), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5886), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5884), 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, - [120410] = 5, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [121810] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3261), 2, + STATE(3318), 2, sym_line_comment, sym_block_comment, - ACTIONS(2167), 7, + ACTIONS(3022), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -289958,7 +294456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2165), 11, + ACTIONS(3020), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -289970,15 +294468,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [120443] = 5, + [121843] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3262), 2, + STATE(3319), 2, sym_line_comment, sym_block_comment, - ACTIONS(2237), 7, + ACTIONS(2689), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -289986,7 +294484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2235), 11, + ACTIONS(2687), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -289998,33 +294496,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [120476] = 12, + [121876] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5832), 1, + ACTIONS(5880), 1, sym_identifier, - ACTIONS(5844), 1, + ACTIONS(5892), 1, anon_sym_LPAREN, - STATE(3291), 1, + STATE(3385), 1, sym_receiver, - STATE(3479), 1, + STATE(3567), 1, sym__function_name, - STATE(3768), 1, + STATE(3859), 1, sym_overridable_operator, - STATE(4463), 1, - sym_reference_expression, - STATE(4559), 1, + STATE(4518), 1, sym_static_receiver, - STATE(3263), 2, + STATE(4608), 1, + sym_reference_expression, + STATE(3320), 2, sym_line_comment, sym_block_comment, - ACTIONS(5838), 3, + ACTIONS(5886), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5836), 8, + ACTIONS(5884), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -290033,45 +294531,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120523] = 4, - ACTIONS(497), 1, + [121923] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3264), 2, + STATE(3321), 2, sym_line_comment, sym_block_comment, - ACTIONS(5848), 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, + ACTIONS(2099), 7, + anon_sym_fn, + anon_sym_struct, sym_identifier, - anon_sym_AT_LBRACK, - [120553] = 6, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(2097), 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, + [121956] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1755), 1, - anon_sym_LBRACE, - STATE(3862), 1, + ACTIONS(1649), 1, + anon_sym_SEMI, + STATE(3892), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3265), 2, + STATE(3322), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 15, + ACTIONS(3530), 15, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, @@ -290087,19 +294587,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [120587] = 7, + [121990] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5850), 1, + ACTIONS(5896), 1, anon_sym_static, - ACTIONS(5852), 1, + ACTIONS(5898), 1, anon_sym_volatile, - STATE(3266), 2, + STATE(3323), 2, sym_line_comment, sym_block_comment, - ACTIONS(4575), 7, + ACTIONS(4591), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -290107,7 +294607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(4577), 8, + ACTIONS(4593), 8, anon_sym_LPAREN, anon_sym_STAR, anon_sym_DOT_DOT_DOT, @@ -290116,19 +294616,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [120623] = 6, + [122026] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3324), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5900), 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, + [122056] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1755), 1, - anon_sym_SEMI, - STATE(3825), 1, + ACTIONS(1649), 1, + anon_sym_LBRACE, + STATE(3882), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3267), 2, + STATE(3325), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 15, + ACTIONS(3530), 15, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, @@ -290144,15 +294670,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [120657] = 4, + [122090] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3268), 2, + STATE(3326), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 17, + ACTIONS(3530), 17, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -290170,15 +294696,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [120687] = 4, + [122120] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3269), 2, + STATE(3327), 2, sym_line_comment, sym_block_comment, - ACTIONS(5854), 17, + ACTIONS(5902), 17, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290196,17 +294722,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [120717] = 6, + [122150] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5856), 1, + ACTIONS(5904), 1, + anon_sym_COMMA, + STATE(3328), 3, + sym_line_comment, + sym_block_comment, + aux_sym_expression_without_blocks_list_repeat1, + ACTIONS(4868), 14, + anon_sym_LBRACE, + 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, + [122181] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5907), 1, anon_sym_volatile, - STATE(3270), 2, + STATE(3329), 2, sym_line_comment, sym_block_comment, - ACTIONS(4910), 7, + ACTIONS(4930), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -290214,7 +294766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(4912), 8, + ACTIONS(4932), 8, anon_sym_LPAREN, anon_sym_STAR, anon_sym_DOT_DOT_DOT, @@ -290223,18 +294775,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [120750] = 5, + [122214] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5858), 1, + ACTIONS(4785), 1, anon_sym_COMMA, - STATE(3271), 3, + STATE(3336), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3330), 2, sym_line_comment, sym_block_comment, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3534), 14, + ACTIONS(3492), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290249,19 +294802,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [120781] = 6, + [122247] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4751), 1, + ACTIONS(4701), 1, anon_sym_COMMA, - STATE(3275), 1, + STATE(3336), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3272), 2, + STATE(3331), 2, sym_line_comment, sym_block_comment, - ACTIONS(3488), 14, + ACTIONS(3492), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290276,46 +294829,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [120814] = 6, + [122280] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4795), 1, + ACTIONS(5909), 1, anon_sym_COMMA, - STATE(3278), 1, - aux_sym_expression_without_blocks_list_repeat1, - STATE(3273), 2, + STATE(3332), 3, sym_line_comment, sym_block_comment, - ACTIONS(5861), 14, - anon_sym_LBRACE, - 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, - [120847] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5863), 1, - anon_sym_COMMA, - STATE(3275), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3274), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3488), 14, + ACTIONS(3530), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290330,19 +294855,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [120880] = 6, + [122311] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5865), 1, + ACTIONS(4825), 1, anon_sym_COMMA, - STATE(3271), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3275), 2, + STATE(3328), 1, + aux_sym_expression_without_blocks_list_repeat1, + STATE(3333), 2, sym_line_comment, sym_block_comment, - ACTIONS(4007), 14, + ACTIONS(5912), 14, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290356,20 +294882,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, - [120913] = 6, + [122344] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, + ACTIONS(5914), 1, anon_sym_COMMA, - STATE(3275), 1, + STATE(3336), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3276), 2, + STATE(3334), 2, sym_line_comment, sym_block_comment, - ACTIONS(3488), 14, + ACTIONS(3492), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290384,19 +294909,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [120946] = 6, + [122377] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5867), 1, + ACTIONS(5916), 1, anon_sym_COMMA, - STATE(3275), 1, + STATE(3336), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3277), 2, + STATE(3335), 2, sym_line_comment, sym_block_comment, - ACTIONS(3488), 14, + ACTIONS(3492), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290411,45 +294936,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [120979] = 5, + [122410] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5869), 1, + ACTIONS(5918), 1, anon_sym_COMMA, - STATE(3278), 3, - sym_line_comment, - sym_block_comment, - aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(4830), 14, - anon_sym_LBRACE, - 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, - [121010] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5872), 1, - anon_sym_LBRACE, - STATE(4494), 1, - sym__select_arm_assignment_statement, - STATE(3279), 2, + STATE(3332), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3336), 2, sym_line_comment, sym_block_comment, - ACTIONS(5874), 13, + ACTIONS(4053), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290463,83 +294962,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [121042] = 14, + anon_sym_COLON_EQ, + [122443] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5876), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(5878), 1, + ACTIONS(5922), 1, anon_sym_RBRACE, - STATE(3281), 1, + STATE(3340), 1, aux_sym__interface_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, - sym__struct_field_definition, - STATE(4356), 1, - sym_reference_expression, - ACTIONS(639), 2, - anon_sym___global, - anon_sym_mut, - STATE(3280), 2, - sym_line_comment, - sym_block_comment, - STATE(3364), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3395), 3, - sym_struct_field_scope, - sym_struct_field_declaration, - sym_interface_method_definition, - [121090] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(651), 1, - anon_sym_pub, - ACTIONS(5876), 1, - sym_identifier, - ACTIONS(5880), 1, - anon_sym_RBRACE, - STATE(3284), 1, - aux_sym__interface_body_repeat1, - STATE(3386), 1, + STATE(3448), 1, sym_embedded_definition, - STATE(3390), 1, - sym_generic_type, - STATE(3391), 1, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3281), 2, + STATE(3337), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3395), 3, + STATE(3452), 3, sym_struct_field_scope, sym_struct_field_declaration, sym_interface_method_definition, - [121138] = 5, + [122491] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3282), 2, + STATE(3338), 2, sym_line_comment, sym_block_comment, - ACTIONS(4910), 7, + ACTIONS(4978), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -290547,7 +295013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(4912), 8, + ACTIONS(4980), 8, anon_sym_LPAREN, anon_sym_STAR, anon_sym_DOT_DOT_DOT, @@ -290556,15 +295022,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [121168] = 5, + [122521] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3283), 2, + STATE(3339), 2, sym_line_comment, sym_block_comment, - ACTIONS(4952), 7, + ACTIONS(4930), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -290572,7 +295038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(4954), 8, + ACTIONS(4932), 8, anon_sym_LPAREN, anon_sym_STAR, anon_sym_DOT_DOT_DOT, @@ -290581,242 +295047,283 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [121198] = 13, + [122551] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5882), 1, + ACTIONS(651), 1, + anon_sym_pub, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(5885), 1, + ACTIONS(5924), 1, anon_sym_RBRACE, - ACTIONS(5890), 1, - anon_sym_pub, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3342), 1, + aux_sym__interface_body_repeat1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, - ACTIONS(5887), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3364), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3284), 3, + STATE(3340), 2, sym_line_comment, sym_block_comment, - aux_sym__interface_body_repeat1, - STATE(3395), 3, + STATE(3424), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3452), 3, sym_struct_field_scope, sym_struct_field_declaration, sym_interface_method_definition, - [121244] = 8, + [122599] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5926), 1, + anon_sym_LBRACE, + STATE(4675), 1, + sym__select_arm_assignment_statement, + STATE(3341), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5928), 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, + [122631] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5893), 1, + ACTIONS(5930), 1, sym_identifier, - STATE(3493), 1, - sym__function_name, - STATE(3768), 1, - sym_overridable_operator, - STATE(3285), 2, + ACTIONS(5933), 1, + anon_sym_RBRACE, + ACTIONS(5938), 1, + anon_sym_pub, + STATE(3445), 1, + sym_generic_type, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, + sym__struct_field_definition, + STATE(4406), 1, + sym_reference_expression, + ACTIONS(5935), 2, + anon_sym___global, + anon_sym_mut, + STATE(3424), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3342), 3, sym_line_comment, sym_block_comment, - ACTIONS(5838), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5836), 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, - [121279] = 14, + aux_sym__interface_body_repeat1, + STATE(3452), 3, + sym_struct_field_scope, + sym_struct_field_declaration, + sym_interface_method_definition, + [122677] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5895), 1, + ACTIONS(5941), 1, sym_identifier, - ACTIONS(5897), 1, + ACTIONS(5943), 1, anon_sym_RBRACE, - STATE(3303), 1, + STATE(3359), 1, aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3286), 2, + STATE(3343), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3446), 2, sym_struct_field_scope, sym_struct_field_declaration, - [121326] = 14, + [122724] = 14, ACTIONS(3), 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(5895), 1, + ACTIONS(5941), 1, sym_identifier, - STATE(3326), 1, + ACTIONS(5945), 1, + anon_sym_RBRACE, + STATE(3364), 1, aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3287), 2, + STATE(3344), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3446), 2, sym_struct_field_scope, sym_struct_field_declaration, - [121373] = 6, - ACTIONS(497), 1, + [122771] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(2157), 1, - anon_sym_LBRACK, - STATE(3288), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2159), 12, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(651), 1, + anon_sym_pub, + ACTIONS(5941), 1, + sym_identifier, + ACTIONS(5947), 1, anon_sym_RBRACE, - anon_sym_EQ, + STATE(3363), 1, + aux_sym__struct_body_repeat1, + STATE(3445), 1, + sym_generic_type, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, + sym__struct_field_definition, + STATE(4406), 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, - [121404] = 14, + STATE(3345), 2, + sym_line_comment, + sym_block_comment, + STATE(3424), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3446), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [122818] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5895), 1, + ACTIONS(5941), 1, sym_identifier, - ACTIONS(5899), 1, + ACTIONS(5949), 1, anon_sym_RBRACE, - STATE(3320), 1, + STATE(3374), 1, aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3289), 2, + STATE(3346), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3446), 2, sym_struct_field_scope, sym_struct_field_declaration, - [121451] = 14, + [122865] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5895), 1, + ACTIONS(5941), 1, sym_identifier, - ACTIONS(5901), 1, + ACTIONS(5951), 1, anon_sym_RBRACE, - STATE(3303), 1, + STATE(3345), 1, aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3290), 2, + STATE(3347), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3446), 2, sym_struct_field_scope, sym_struct_field_declaration, - [121498] = 8, + [122912] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5893), 1, + ACTIONS(5953), 1, sym_identifier, - STATE(3478), 1, + STATE(3585), 1, sym__function_name, - STATE(3768), 1, + STATE(3859), 1, sym_overridable_operator, - STATE(3291), 2, + STATE(3348), 2, sym_line_comment, sym_block_comment, - ACTIONS(5838), 3, + ACTIONS(5886), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5836), 8, + ACTIONS(5884), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -290825,220 +295332,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121533] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - STATE(3292), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5903), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - ACTIONS(5905), 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, - [121562] = 14, + [122947] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5895), 1, + ACTIONS(5941), 1, sym_identifier, - ACTIONS(5907), 1, + ACTIONS(5955), 1, anon_sym_RBRACE, - STATE(3303), 1, + STATE(3363), 1, aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3293), 2, + STATE(3349), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3446), 2, sym_struct_field_scope, sym_struct_field_declaration, - [121609] = 5, + [122994] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5911), 1, - anon_sym_COLON_EQ, - STATE(3294), 2, + ACTIONS(651), 1, + anon_sym_pub, + ACTIONS(5941), 1, + sym_identifier, + ACTIONS(5957), 1, + anon_sym_RBRACE, + STATE(3363), 1, + aux_sym__struct_body_repeat1, + STATE(3445), 1, + sym_generic_type, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, + sym__struct_field_definition, + STATE(4406), 1, + sym_reference_expression, + ACTIONS(639), 2, + anon_sym___global, + anon_sym_mut, + STATE(3350), 2, sym_line_comment, sym_block_comment, - ACTIONS(5909), 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, - [121638] = 5, - ACTIONS(497), 1, + STATE(3424), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3446), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [123041] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2157), 1, - anon_sym_LBRACK, - STATE(3295), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2159), 13, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(651), 1, + anon_sym_pub, + ACTIONS(5941), 1, + sym_identifier, + ACTIONS(5959), 1, anon_sym_RBRACE, - anon_sym_EQ, + STATE(3363), 1, + aux_sym__struct_body_repeat1, + STATE(3445), 1, + sym_generic_type, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, + sym__struct_field_definition, + STATE(4406), 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, - [121667] = 8, + STATE(3351), 2, + sym_line_comment, + sym_block_comment, + STATE(3424), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3446), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [123088] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5893), 1, + ACTIONS(651), 1, + anon_sym_pub, + ACTIONS(5941), 1, sym_identifier, - STATE(3433), 1, - sym__function_name, - STATE(3768), 1, - sym_overridable_operator, - STATE(3296), 2, + ACTIONS(5961), 1, + anon_sym_RBRACE, + STATE(3383), 1, + aux_sym__struct_body_repeat1, + STATE(3445), 1, + sym_generic_type, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, + sym__struct_field_definition, + STATE(4406), 1, + sym_reference_expression, + ACTIONS(639), 2, + anon_sym___global, + anon_sym_mut, + STATE(3352), 2, sym_line_comment, sym_block_comment, - ACTIONS(5838), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5836), 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, - [121702] = 14, + STATE(3424), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3446), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [123135] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5895), 1, + ACTIONS(5941), 1, sym_identifier, - ACTIONS(5913), 1, + ACTIONS(5963), 1, anon_sym_RBRACE, - STATE(3311), 1, + STATE(3363), 1, aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3297), 2, + STATE(3353), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3446), 2, sym_struct_field_scope, sym_struct_field_declaration, - [121749] = 14, + [123182] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5895), 1, + ACTIONS(5941), 1, sym_identifier, - ACTIONS(5915), 1, + ACTIONS(5965), 1, anon_sym_RBRACE, - STATE(3303), 1, + STATE(3389), 1, aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3298), 2, + STATE(3354), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3446), 2, sym_struct_field_scope, sym_struct_field_declaration, - [121796] = 5, + [123229] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2153), 1, + ACTIONS(1887), 1, + anon_sym_DOT, + ACTIONS(2093), 1, anon_sym_LBRACK, - STATE(3299), 2, + STATE(3355), 2, sym_line_comment, sym_block_comment, - ACTIONS(2155), 13, + ACTIONS(2095), 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, @@ -291047,85 +295555,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [121825] = 14, + [123260] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5969), 1, + anon_sym_COLON_EQ, + STATE(3356), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5967), 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, + [123289] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5973), 1, + anon_sym_COLON_EQ, + STATE(3357), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5971), 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, + [123318] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5895), 1, + ACTIONS(5941), 1, sym_identifier, - ACTIONS(5917), 1, + ACTIONS(5975), 1, anon_sym_RBRACE, - STATE(3323), 1, + STATE(3350), 1, aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3300), 2, + STATE(3358), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3446), 2, sym_struct_field_scope, sym_struct_field_declaration, - [121872] = 14, + [123365] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5895), 1, + ACTIONS(5941), 1, sym_identifier, - ACTIONS(5919), 1, + ACTIONS(5977), 1, anon_sym_RBRACE, - STATE(3303), 1, + STATE(3363), 1, aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3301), 2, + STATE(3359), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3446), 2, sym_struct_field_scope, sym_struct_field_declaration, - [121919] = 6, + [123412] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5921), 1, + ACTIONS(5979), 1, anon_sym_LBRACK, - STATE(3334), 1, + STATE(3395), 1, sym_type_parameters, - STATE(3302), 2, + STATE(3360), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 12, + ACTIONS(1945), 12, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291138,82 +295694,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [121950] = 13, + [123443] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5923), 1, + ACTIONS(5953), 1, sym_identifier, - ACTIONS(5926), 1, - anon_sym_RBRACE, - ACTIONS(5931), 1, + STATE(3582), 1, + sym__function_name, + STATE(3859), 1, + sym_overridable_operator, + STATE(3361), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5886), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5884), 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, + [123478] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, anon_sym_pub, - STATE(3386), 1, + ACTIONS(5941), 1, + sym_identifier, + ACTIONS(5981), 1, + anon_sym_RBRACE, + STATE(3376), 1, + aux_sym__struct_body_repeat1, + STATE(3445), 1, + sym_generic_type, + STATE(3448), 1, sym_embedded_definition, - STATE(3390), 1, + STATE(3458), 1, + sym__struct_field_definition, + STATE(4406), 1, + sym_reference_expression, + ACTIONS(639), 2, + anon_sym___global, + anon_sym_mut, + STATE(3362), 2, + sym_line_comment, + sym_block_comment, + STATE(3424), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3446), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [123525] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5983), 1, + sym_identifier, + ACTIONS(5986), 1, + anon_sym_RBRACE, + ACTIONS(5991), 1, + anon_sym_pub, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, - ACTIONS(5928), 2, + ACTIONS(5988), 2, anon_sym___global, anon_sym_mut, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3446), 2, sym_struct_field_scope, sym_struct_field_declaration, - STATE(3303), 3, + STATE(3363), 3, sym_line_comment, sym_block_comment, aux_sym__struct_body_repeat1, - [121995] = 14, + [123570] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5895), 1, + ACTIONS(5941), 1, sym_identifier, - ACTIONS(5934), 1, + ACTIONS(5994), 1, anon_sym_RBRACE, - STATE(3316), 1, + STATE(3363), 1, aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3304), 2, + STATE(3364), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3446), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122042] = 5, + [123617] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2093), 1, + anon_sym_LBRACK, + STATE(3365), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2095), 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, + [123646] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2681), 1, + anon_sym_LBRACK, + STATE(3366), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2683), 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, + [123675] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5938), 1, + ACTIONS(5998), 1, anon_sym_COLON_EQ, - STATE(3305), 2, + STATE(3367), 2, sym_line_comment, sym_block_comment, - ACTIONS(5936), 13, + ACTIONS(5996), 13, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -291227,589 +295891,448 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [122071] = 14, + [123704] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5895), 1, + ACTIONS(5941), 1, sym_identifier, - ACTIONS(5940), 1, + ACTIONS(6000), 1, anon_sym_RBRACE, - STATE(3303), 1, + STATE(3363), 1, aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, - sym__struct_field_definition, - STATE(4356), 1, - sym_reference_expression, - ACTIONS(639), 2, - anon_sym___global, - anon_sym_mut, - STATE(3306), 2, - sym_line_comment, - sym_block_comment, - STATE(3364), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3389), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [122118] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(651), 1, - anon_sym_pub, - ACTIONS(5895), 1, - sym_identifier, - ACTIONS(5942), 1, - anon_sym_RBRACE, - STATE(3303), 1, - aux_sym__struct_body_repeat1, - STATE(3386), 1, + STATE(3448), 1, sym_embedded_definition, - STATE(3390), 1, - sym_generic_type, - STATE(3391), 1, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3307), 2, + STATE(3368), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3446), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122165] = 14, + [123751] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5895), 1, + ACTIONS(5941), 1, sym_identifier, - ACTIONS(5944), 1, + ACTIONS(6002), 1, anon_sym_RBRACE, - STATE(3301), 1, + STATE(3363), 1, aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3308), 2, + STATE(3369), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3446), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122212] = 14, + [123798] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5895), 1, + ACTIONS(5941), 1, sym_identifier, - ACTIONS(5946), 1, + ACTIONS(6004), 1, anon_sym_RBRACE, - STATE(3329), 1, + STATE(3379), 1, aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3309), 2, + STATE(3370), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3446), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122259] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5893), 1, - sym_identifier, - STATE(3474), 1, - sym__function_name, - STATE(3768), 1, - sym_overridable_operator, - STATE(3310), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5838), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5836), 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, - [122294] = 14, + [123845] = 14, ACTIONS(3), 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(5895), 1, + ACTIONS(5941), 1, sym_identifier, - ACTIONS(5948), 1, - anon_sym_RBRACE, - STATE(3303), 1, + STATE(3349), 1, aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3311), 2, + STATE(3371), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3446), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122341] = 14, + [123892] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5895), 1, + ACTIONS(5941), 1, sym_identifier, - ACTIONS(5950), 1, + ACTIONS(6006), 1, anon_sym_RBRACE, - STATE(3298), 1, + STATE(3353), 1, aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3312), 2, + STATE(3372), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3446), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122388] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5954), 1, - anon_sym_COLON_EQ, - STATE(3313), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5952), 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, - [122417] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5893), 1, - sym_identifier, - STATE(3507), 1, - sym__function_name, - STATE(3768), 1, - sym_overridable_operator, - STATE(3314), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5838), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5836), 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, - [122452] = 14, + [123939] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5895), 1, + ACTIONS(5941), 1, sym_identifier, - ACTIONS(5956), 1, + ACTIONS(6008), 1, anon_sym_RBRACE, - STATE(3286), 1, + STATE(3369), 1, aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3315), 2, + STATE(3373), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3446), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122499] = 14, + [123986] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5895), 1, + ACTIONS(5941), 1, sym_identifier, - ACTIONS(5958), 1, + ACTIONS(6010), 1, anon_sym_RBRACE, - STATE(3303), 1, + STATE(3363), 1, aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3316), 2, + STATE(3374), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3446), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122546] = 14, + [124033] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5895), 1, + ACTIONS(5941), 1, sym_identifier, - ACTIONS(5960), 1, + ACTIONS(6012), 1, anon_sym_RBRACE, - STATE(3293), 1, + STATE(3351), 1, aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3317), 2, + STATE(3375), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3446), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122593] = 14, + [124080] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5895), 1, + ACTIONS(5941), 1, sym_identifier, - ACTIONS(5962), 1, + ACTIONS(6014), 1, anon_sym_RBRACE, - STATE(3303), 1, + STATE(3363), 1, aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3318), 2, + STATE(3376), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3446), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122640] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5966), 1, - anon_sym_COLON_EQ, - STATE(3319), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5964), 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, - [122669] = 14, + [124127] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5895), 1, + ACTIONS(5941), 1, sym_identifier, - ACTIONS(5968), 1, + ACTIONS(6016), 1, anon_sym_RBRACE, - STATE(3303), 1, + STATE(3388), 1, aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3320), 2, + STATE(3377), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3446), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122716] = 14, + [124174] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(651), 1, - anon_sym_pub, - ACTIONS(5895), 1, + ACTIONS(5953), 1, sym_identifier, - ACTIONS(5970), 1, - anon_sym_RBRACE, - STATE(3318), 1, - aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, - sym_generic_type, - STATE(3391), 1, - sym__struct_field_definition, - STATE(4356), 1, - sym_reference_expression, - ACTIONS(639), 2, - anon_sym___global, - anon_sym_mut, - STATE(3321), 2, + STATE(3469), 1, + sym__function_name, + STATE(3859), 1, + sym_overridable_operator, + STATE(3378), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3389), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [122763] = 14, + ACTIONS(5886), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5884), 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, + [124209] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5895), 1, + ACTIONS(5941), 1, sym_identifier, - ACTIONS(5972), 1, + ACTIONS(6018), 1, anon_sym_RBRACE, - STATE(3290), 1, - aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3363), 1, + aux_sym__struct_body_repeat1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3322), 2, + STATE(3379), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3446), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122810] = 14, + [124256] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5895), 1, + ACTIONS(5941), 1, sym_identifier, - ACTIONS(5974), 1, + ACTIONS(6020), 1, anon_sym_RBRACE, - STATE(3303), 1, + STATE(3368), 1, aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3323), 2, + STATE(3380), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3446), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122857] = 8, + [124303] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5893), 1, + ACTIONS(5953), 1, sym_identifier, - STATE(3498), 1, + STATE(3577), 1, sym__function_name, - STATE(3768), 1, + STATE(3859), 1, sym_overridable_operator, - STATE(3324), 2, + STATE(3381), 2, sym_line_comment, sym_block_comment, - ACTIONS(5838), 3, + ACTIONS(5886), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5836), 8, + ACTIONS(5884), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -291818,25 +296341,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [122892] = 8, + [124338] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5893), 1, + ACTIONS(5953), 1, sym_identifier, - STATE(3483), 1, + STATE(3497), 1, sym__function_name, - STATE(3768), 1, + STATE(3859), 1, sym_overridable_operator, - STATE(3325), 2, + STATE(3382), 2, sym_line_comment, sym_block_comment, - ACTIONS(5838), 3, + ACTIONS(5886), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5836), 8, + ACTIONS(5884), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -291845,157 +296368,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [122927] = 14, + [124373] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5895), 1, + ACTIONS(5941), 1, sym_identifier, - ACTIONS(5976), 1, + ACTIONS(6022), 1, anon_sym_RBRACE, - STATE(3303), 1, + STATE(3363), 1, aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3326), 2, + STATE(3383), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3446), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122974] = 14, + [124420] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(651), 1, - anon_sym_pub, - ACTIONS(5895), 1, + ACTIONS(6026), 1, + anon_sym_COLON_EQ, + STATE(3384), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6024), 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, + [124449] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5953), 1, sym_identifier, - ACTIONS(5978), 1, - anon_sym_RBRACE, - STATE(3306), 1, - aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, - sym_generic_type, - STATE(3391), 1, - sym__struct_field_definition, - STATE(4356), 1, - sym_reference_expression, - ACTIONS(639), 2, - anon_sym___global, - anon_sym_mut, - STATE(3327), 2, + STATE(3465), 1, + sym__function_name, + STATE(3859), 1, + sym_overridable_operator, + STATE(3385), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3389), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [123021] = 14, + ACTIONS(5886), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5884), 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, + [124484] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5953), 1, + sym_identifier, + STATE(3573), 1, + sym__function_name, + STATE(3859), 1, + sym_overridable_operator, + STATE(3386), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5886), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5884), 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, + [124519] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3387), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6028), 3, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + ACTIONS(6030), 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, + [124548] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5895), 1, + ACTIONS(5941), 1, sym_identifier, - ACTIONS(5980), 1, + ACTIONS(6032), 1, anon_sym_RBRACE, - STATE(3307), 1, + STATE(3363), 1, aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3328), 2, + STATE(3388), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3446), 2, sym_struct_field_scope, sym_struct_field_declaration, - [123068] = 14, + [124595] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5895), 1, + ACTIONS(5941), 1, sym_identifier, - ACTIONS(5982), 1, + ACTIONS(6034), 1, anon_sym_RBRACE, - STATE(3303), 1, + STATE(3363), 1, aux_sym__struct_body_repeat1, - STATE(3386), 1, - sym_embedded_definition, - STATE(3390), 1, + STATE(3445), 1, sym_generic_type, - STATE(3391), 1, + STATE(3448), 1, + sym_embedded_definition, + STATE(3458), 1, sym__struct_field_definition, - STATE(4356), 1, + STATE(4406), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3329), 2, + STATE(3389), 2, sym_line_comment, sym_block_comment, - STATE(3364), 2, + STATE(3424), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 2, + STATE(3446), 2, sym_struct_field_scope, sym_struct_field_declaration, - [123115] = 8, + [124642] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5893), 1, + ACTIONS(5953), 1, sym_identifier, - STATE(3486), 1, + STATE(3487), 1, sym__function_name, - STATE(3768), 1, + STATE(3859), 1, sym_overridable_operator, - STATE(3330), 2, + STATE(3390), 2, sym_line_comment, sym_block_comment, - ACTIONS(5838), 3, + ACTIONS(5886), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5836), 8, + ACTIONS(5884), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -292004,15 +296596,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [123150] = 4, + [124677] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3331), 2, + STATE(3391), 2, sym_line_comment, sym_block_comment, - ACTIONS(2133), 13, + ACTIONS(2639), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292026,22 +296618,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123176] = 7, + [124703] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3387), 1, + sym_attribute, + ACTIONS(6038), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + STATE(3392), 3, + sym_line_comment, + sym_block_comment, + aux_sym_attributes_repeat1, + ACTIONS(6036), 9, + 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, + [124733] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3292), 1, + STATE(3387), 1, sym_attribute, - STATE(3335), 1, + STATE(3392), 1, aux_sym_attributes_repeat1, ACTIONS(125), 2, anon_sym_LBRACK2, anon_sym_AT_LBRACK, - STATE(3332), 2, + STATE(3393), 2, sym_line_comment, sym_block_comment, - ACTIONS(5984), 9, + ACTIONS(6041), 9, anon_sym_module, anon_sym_const, anon_sym___global, @@ -292051,15 +296667,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_enum, anon_sym_interface, - [123208] = 4, + [124765] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3333), 2, + STATE(3394), 2, sym_line_comment, sym_block_comment, - ACTIONS(2151), 13, + ACTIONS(2469), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292073,15 +296689,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123234] = 4, + [124791] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3334), 2, + STATE(3395), 2, sym_line_comment, sym_block_comment, - ACTIONS(2163), 13, + ACTIONS(2745), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292095,43 +296711,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123260] = 6, + [124817] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3292), 1, - sym_attribute, - ACTIONS(5988), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - STATE(3335), 3, + STATE(3396), 2, sym_line_comment, sym_block_comment, - aux_sym_attributes_repeat1, - ACTIONS(5986), 9, - 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, - [123290] = 5, + ACTIONS(6045), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6043), 9, + 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, + sym_identifier, + [124844] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3336), 2, + STATE(3397), 2, sym_line_comment, sym_block_comment, - ACTIONS(5993), 3, + ACTIONS(6049), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5991), 9, + ACTIONS(6047), 9, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -292141,22 +296755,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_identifier, - [123317] = 7, + [124871] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5997), 1, + ACTIONS(6053), 1, anon_sym_EQ, - STATE(3393), 1, + STATE(3456), 1, sym_attribute, - ACTIONS(4888), 2, + ACTIONS(4926), 2, anon_sym_LBRACK2, anon_sym_AT_LBRACK, - STATE(3337), 2, + STATE(3398), 2, sym_line_comment, sym_block_comment, - ACTIONS(5995), 8, + ACTIONS(6051), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292165,37 +296779,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [123348] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(3338), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6001), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5999), 9, - 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, - sym_identifier, - [123375] = 4, + [124902] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3339), 2, + STATE(3399), 2, sym_line_comment, sym_block_comment, - ACTIONS(2253), 11, + ACTIONS(3038), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292207,35 +296799,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123399] = 4, + [124926] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3340), 2, + ACTIONS(1945), 1, + anon_sym_LBRACE, + ACTIONS(5979), 1, + anon_sym_LBRACK, + STATE(3395), 1, + sym_type_parameters, + STATE(3400), 2, sym_line_comment, sym_block_comment, - ACTIONS(2221), 11, + ACTIONS(6055), 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, - [123423] = 4, + [124956] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3341), 2, + STATE(3401), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 11, + ACTIONS(1945), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292247,15 +296842,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123447] = 4, + [124980] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3342), 2, + STATE(3402), 2, sym_line_comment, sym_block_comment, - ACTIONS(2209), 11, + ACTIONS(2989), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292267,15 +296862,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123471] = 4, + [125004] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3343), 2, + STATE(3403), 2, sym_line_comment, sym_block_comment, - ACTIONS(2273), 11, + ACTIONS(3030), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292287,38 +296882,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123495] = 7, + [125028] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1899), 1, - anon_sym_LBRACE, - ACTIONS(5921), 1, - anon_sym_LBRACK, - STATE(3334), 1, - sym_type_parameters, - STATE(3344), 2, + STATE(3404), 2, sym_line_comment, sym_block_comment, - ACTIONS(6003), 8, + ACTIONS(2755), 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, - [123525] = 4, + anon_sym_AT_LBRACK, + [125052] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3345), 2, + STATE(3405), 2, sym_line_comment, sym_block_comment, - ACTIONS(2175), 11, + ACTIONS(2453), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292330,15 +296922,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123549] = 4, + [125076] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3346), 2, + STATE(3406), 2, sym_line_comment, sym_block_comment, - ACTIONS(2213), 11, + ACTIONS(2395), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292350,15 +296942,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123573] = 4, + [125100] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3347), 2, + STATE(3407), 2, sym_line_comment, sym_block_comment, - ACTIONS(2181), 11, + ACTIONS(2961), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292370,40 +296962,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123597] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(3348), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5986), 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, - [123621] = 6, + [125124] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3394), 1, + STATE(3459), 1, sym_attribute, - ACTIONS(4888), 2, + ACTIONS(4926), 2, anon_sym_LBRACK2, anon_sym_AT_LBRACK, - STATE(3349), 2, + STATE(3408), 2, sym_line_comment, sym_block_comment, - ACTIONS(6005), 8, + ACTIONS(6057), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292412,15 +296984,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [123649] = 4, + [125152] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3350), 2, + STATE(3409), 2, sym_line_comment, sym_block_comment, - ACTIONS(2423), 11, + ACTIONS(3026), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292432,15 +297004,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123673] = 4, + [125176] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3351), 2, + STATE(3410), 2, sym_line_comment, sym_block_comment, - ACTIONS(2217), 11, + ACTIONS(2779), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292452,35 +297024,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123697] = 4, + [125200] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3352), 2, + STATE(3449), 1, + sym_attribute, + ACTIONS(4926), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + STATE(3411), 2, sym_line_comment, sym_block_comment, - ACTIONS(2189), 11, + ACTIONS(6059), 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, + [125228] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3412), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6036), 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, - [123721] = 4, + [125252] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3353), 2, + STATE(3413), 2, sym_line_comment, sym_block_comment, - ACTIONS(2245), 11, + ACTIONS(3010), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292492,15 +297086,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123745] = 4, + [125276] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3354), 2, + STATE(3414), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 11, + ACTIONS(2761), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292512,15 +297106,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123769] = 4, + [125300] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3355), 2, + STATE(3415), 2, sym_line_comment, sym_block_comment, - ACTIONS(2269), 11, + ACTIONS(2965), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292532,15 +297126,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123793] = 4, + [125324] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3356), 2, + STATE(3416), 2, sym_line_comment, sym_block_comment, - ACTIONS(2261), 11, + ACTIONS(2981), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292552,15 +297146,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123817] = 4, + [125348] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3357), 2, + STATE(3417), 2, sym_line_comment, sym_block_comment, - ACTIONS(2225), 11, + ACTIONS(2379), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292572,15 +297166,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123841] = 4, + [125372] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3358), 2, + STATE(3418), 2, sym_line_comment, sym_block_comment, - ACTIONS(2205), 11, + ACTIONS(3042), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292592,37 +297186,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123865] = 6, + [125396] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3385), 1, - sym_attribute, - ACTIONS(4888), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - STATE(3359), 2, + STATE(3419), 2, sym_line_comment, sym_block_comment, - ACTIONS(6007), 8, + ACTIONS(2371), 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, - [123893] = 4, + anon_sym_AT_LBRACK, + [125420] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3360), 2, + STATE(3420), 2, sym_line_comment, sym_block_comment, - ACTIONS(2427), 11, + ACTIONS(2775), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292634,15 +297226,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123917] = 4, + [125444] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3361), 2, + STATE(3421), 2, sym_line_comment, sym_block_comment, - ACTIONS(2249), 11, + ACTIONS(3070), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292654,15 +297246,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123941] = 4, + [125468] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3362), 2, + STATE(3422), 2, sym_line_comment, sym_block_comment, - ACTIONS(2201), 11, + ACTIONS(3058), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292674,15 +297266,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123965] = 4, + [125492] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3363), 2, + STATE(3423), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 11, + ACTIONS(3050), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292694,19 +297286,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123989] = 6, + [125516] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5921), 1, + ACTIONS(5979), 1, anon_sym_LBRACK, - STATE(3334), 1, + STATE(3395), 1, sym_type_parameters, - STATE(3364), 2, + STATE(3424), 2, sym_line_comment, sym_block_comment, - ACTIONS(6003), 8, + ACTIONS(6055), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292715,48 +297307,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [124016] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6009), 1, - anon_sym_module, - ACTIONS(6011), 1, - anon_sym_const, - ACTIONS(6013), 1, - anon_sym___global, - ACTIONS(6015), 1, - anon_sym_fn, - ACTIONS(6019), 1, - anon_sym_pub, - ACTIONS(6021), 1, - anon_sym_enum, - ACTIONS(6023), 1, - anon_sym_interface, - STATE(3537), 1, - sym_visibility_modifiers, - ACTIONS(6017), 2, - anon_sym_struct, - anon_sym_union, - STATE(3365), 2, - sym_line_comment, - sym_block_comment, - [124055] = 7, + [125543] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6025), 1, + ACTIONS(6061), 1, sym_identifier, - ACTIONS(6029), 1, + ACTIONS(6065), 1, anon_sym_LPAREN, - STATE(1553), 1, + STATE(1530), 1, sym_global_var_definition, - STATE(3366), 2, + STATE(3425), 2, sym_line_comment, sym_block_comment, - ACTIONS(6027), 7, + ACTIONS(6063), 7, anon_sym_const, anon_sym_type, anon_sym_fn, @@ -292764,427 +297329,454 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_enum, anon_sym_interface, - [124084] = 10, + [125572] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5842), 1, - anon_sym_LBRACK2, - ACTIONS(6031), 1, - anon_sym_LPAREN, - STATE(3481), 1, - sym_capture_list, - STATE(3731), 1, - sym_generic_parameters, - STATE(4109), 1, - sym_signature, - ACTIONS(4922), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2870), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3367), 2, + ACTIONS(6067), 1, + anon_sym_module, + ACTIONS(6069), 1, + anon_sym_const, + ACTIONS(6071), 1, + anon_sym___global, + ACTIONS(6073), 1, + anon_sym_fn, + ACTIONS(6077), 1, + anon_sym_pub, + ACTIONS(6079), 1, + anon_sym_enum, + ACTIONS(6081), 1, + anon_sym_interface, + STATE(3596), 1, + sym_visibility_modifiers, + ACTIONS(6075), 2, + anon_sym_struct, + anon_sym_union, + STATE(3426), 2, sym_line_comment, sym_block_comment, - [124118] = 10, + [125611] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5842), 1, + ACTIONS(5890), 1, anon_sym_LBRACK2, - ACTIONS(6031), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(3529), 1, + STATE(3532), 1, sym_capture_list, - STATE(3556), 1, - sym_signature, - STATE(3666), 1, + STATE(3670), 1, sym_generic_parameters, - ACTIONS(4922), 2, + STATE(4357), 1, + sym_signature, + ACTIONS(4948), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2870), 2, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3368), 2, + STATE(3427), 2, sym_line_comment, sym_block_comment, - [124152] = 6, + [125645] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(3369), 2, + STATE(3428), 2, sym_line_comment, sym_block_comment, - ACTIONS(3784), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(6033), 5, + ACTIONS(1887), 9, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [124178] = 10, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + sym_identifier, + [125667] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5842), 1, + ACTIONS(5890), 1, anon_sym_LBRACK2, - ACTIONS(6031), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(3446), 1, + STATE(3511), 1, sym_capture_list, - STATE(3698), 1, + STATE(3732), 1, sym_generic_parameters, - STATE(4273), 1, + STATE(4175), 1, sym_signature, - ACTIONS(4922), 2, + ACTIONS(4948), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2870), 2, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3370), 2, + STATE(3429), 2, sym_line_comment, sym_block_comment, - [124212] = 10, + [125701] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5842), 1, + ACTIONS(5890), 1, anon_sym_LBRACK2, - ACTIONS(6031), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(3524), 1, + STATE(3543), 1, sym_capture_list, - STATE(3672), 1, + STATE(3663), 1, sym_generic_parameters, - STATE(4089), 1, + STATE(4133), 1, sym_signature, - ACTIONS(4922), 2, + ACTIONS(4948), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2870), 2, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3371), 2, + STATE(3430), 2, + sym_line_comment, + sym_block_comment, + [125735] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(1945), 1, + anon_sym_LBRACE, + STATE(3431), 2, sym_line_comment, sym_block_comment, - [124246] = 10, + ACTIONS(6055), 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, + [125759] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5842), 1, - anon_sym_LBRACK2, - ACTIONS(6031), 1, - anon_sym_LPAREN, - STATE(3412), 1, - sym_capture_list, - STATE(3694), 1, - sym_generic_parameters, - STATE(4033), 1, - sym_signature, - ACTIONS(4922), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2870), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3372), 2, + ACTIONS(6069), 1, + anon_sym_const, + ACTIONS(6071), 1, + anon_sym___global, + ACTIONS(6073), 1, + anon_sym_fn, + ACTIONS(6077), 1, + anon_sym_pub, + ACTIONS(6079), 1, + anon_sym_enum, + ACTIONS(6081), 1, + anon_sym_interface, + STATE(3596), 1, + sym_visibility_modifiers, + ACTIONS(6075), 2, + anon_sym_struct, + anon_sym_union, + STATE(3432), 2, sym_line_comment, sym_block_comment, - [124280] = 10, + [125795] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5842), 1, + ACTIONS(5890), 1, anon_sym_LBRACK2, - ACTIONS(6031), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(3448), 1, + STATE(3463), 1, sym_capture_list, - STATE(3644), 1, + STATE(3691), 1, sym_generic_parameters, - STATE(4220), 1, + STATE(4246), 1, sym_signature, - ACTIONS(4922), 2, + ACTIONS(4948), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2870), 2, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3373), 2, + STATE(3433), 2, sym_line_comment, sym_block_comment, - [124314] = 10, + [125829] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5842), 1, + ACTIONS(5890), 1, anon_sym_LBRACK2, - ACTIONS(6031), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(3514), 1, + STATE(3485), 1, sym_capture_list, - STATE(3725), 1, + STATE(3722), 1, sym_generic_parameters, - STATE(4234), 1, + STATE(4114), 1, sym_signature, - ACTIONS(4922), 2, + ACTIONS(4948), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2870), 2, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3374), 2, + STATE(3434), 2, sym_line_comment, sym_block_comment, - [124348] = 10, + [125863] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5842), 1, + ACTIONS(5890), 1, anon_sym_LBRACK2, - ACTIONS(6031), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(3462), 1, + STATE(3575), 1, sym_capture_list, - STATE(3649), 1, + STATE(3652), 1, sym_generic_parameters, - STATE(4245), 1, + STATE(3974), 1, sym_signature, - ACTIONS(4922), 2, + ACTIONS(4948), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2870), 2, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3375), 2, + STATE(3435), 2, sym_line_comment, sym_block_comment, - [124382] = 10, + [125897] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5842), 1, - anon_sym_LBRACK2, - ACTIONS(6031), 1, + ACTIONS(6061), 1, + sym_identifier, + ACTIONS(6085), 1, anon_sym_LPAREN, - STATE(3435), 1, - sym_capture_list, - STATE(3688), 1, - sym_generic_parameters, - STATE(3922), 1, - sym_signature, - ACTIONS(4922), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2870), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3376), 2, + STATE(1500), 1, + sym_global_var_definition, + STATE(3436), 2, sym_line_comment, sym_block_comment, - [124416] = 4, + ACTIONS(6063), 6, + anon_sym_const, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_interface, + [125925] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3377), 2, + ACTIONS(3819), 1, + anon_sym_COLON, + STATE(3437), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 9, + ACTIONS(3817), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(6087), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - sym_identifier, - [124438] = 7, - ACTIONS(497), 1, + [125951] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6037), 1, - anon_sym_EQ, - STATE(3570), 1, - sym_attribute, - ACTIONS(4888), 2, + ACTIONS(5890), 1, anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - STATE(3378), 2, + ACTIONS(6083), 1, + anon_sym_LPAREN, + STATE(3566), 1, + sym_capture_list, + STATE(3656), 1, + sym_generic_parameters, + STATE(4235), 1, + sym_signature, + ACTIONS(4948), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2878), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3438), 2, sym_line_comment, sym_block_comment, - ACTIONS(6035), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - [124466] = 10, + [125985] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5842), 1, + ACTIONS(5890), 1, anon_sym_LBRACK2, - ACTIONS(6031), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(3503), 1, + STATE(3498), 1, sym_capture_list, - STATE(3749), 1, + STATE(3681), 1, sym_generic_parameters, - STATE(4208), 1, + STATE(4268), 1, sym_signature, - ACTIONS(4922), 2, + ACTIONS(4948), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2870), 2, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3379), 2, + STATE(3439), 2, sym_line_comment, sym_block_comment, - [124500] = 7, + [126019] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6025), 1, - sym_identifier, - ACTIONS(6039), 1, + ACTIONS(5890), 1, + anon_sym_LBRACK2, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(1558), 1, - sym_global_var_definition, - STATE(3380), 2, + STATE(3509), 1, + sym_capture_list, + STATE(3676), 1, + sym_generic_parameters, + STATE(4343), 1, + sym_signature, + ACTIONS(4948), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2878), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3440), 2, sym_line_comment, sym_block_comment, - ACTIONS(6027), 6, - anon_sym_const, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_interface, - [124528] = 11, + [126053] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6011), 1, - anon_sym_const, - ACTIONS(6013), 1, - anon_sym___global, - ACTIONS(6015), 1, - anon_sym_fn, - ACTIONS(6019), 1, - anon_sym_pub, - ACTIONS(6021), 1, - anon_sym_enum, - ACTIONS(6023), 1, - anon_sym_interface, - STATE(3537), 1, - sym_visibility_modifiers, - ACTIONS(6017), 2, - anon_sym_struct, - anon_sym_union, - STATE(3381), 2, + ACTIONS(5890), 1, + anon_sym_LBRACK2, + ACTIONS(6083), 1, + anon_sym_LPAREN, + STATE(3512), 1, + sym_capture_list, + STATE(3695), 1, + sym_generic_parameters, + STATE(4380), 1, + sym_signature, + ACTIONS(4948), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2878), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3441), 2, sym_line_comment, sym_block_comment, - [124564] = 5, + [126087] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1899), 1, - anon_sym_LBRACE, - STATE(3382), 2, + ACTIONS(6091), 1, + anon_sym_EQ, + STATE(3610), 1, + sym_attribute, + ACTIONS(4926), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + STATE(3442), 2, sym_line_comment, sym_block_comment, - ACTIONS(6003), 8, + ACTIONS(6089), 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, - [124588] = 10, + [126115] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5842), 1, + ACTIONS(5890), 1, anon_sym_LBRACK2, - ACTIONS(6031), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(3496), 1, + STATE(3542), 1, sym_capture_list, - STATE(3746), 1, - sym_generic_parameters, - STATE(4068), 1, + STATE(3644), 1, sym_signature, - ACTIONS(4922), 2, + STATE(3697), 1, + sym_generic_parameters, + ACTIONS(4948), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2870), 2, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3383), 2, + STATE(3443), 2, sym_line_comment, sym_block_comment, - [124622] = 10, + [126149] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5842), 1, + ACTIONS(5890), 1, anon_sym_LBRACK2, - ACTIONS(6031), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(3475), 1, + STATE(3484), 1, sym_capture_list, - STATE(3721), 1, + STATE(3687), 1, sym_generic_parameters, - STATE(4233), 1, + STATE(4089), 1, sym_signature, - ACTIONS(4922), 2, + ACTIONS(4948), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2870), 2, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3384), 2, + STATE(3444), 2, sym_line_comment, sym_block_comment, - [124656] = 4, + [126183] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3385), 2, + STATE(3445), 2, sym_line_comment, sym_block_comment, - ACTIONS(6041), 8, + ACTIONS(6055), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -293193,50 +297785,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [124677] = 4, + [126204] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3386), 2, + STATE(3446), 2, sym_line_comment, sym_block_comment, - ACTIONS(6043), 8, + ACTIONS(6095), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + ACTIONS(6093), 5, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [124698] = 5, + [126227] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3387), 2, + ACTIONS(6099), 1, + anon_sym_DOT, + STATE(3447), 3, sym_line_comment, sym_block_comment, - ACTIONS(3784), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(6033), 5, + aux_sym_import_path_repeat1, + ACTIONS(6097), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_COMMA, - [124721] = 4, + anon_sym_as, + anon_sym_LBRACE, + [126250] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3388), 2, + STATE(3448), 2, sym_line_comment, sym_block_comment, - ACTIONS(6045), 8, + ACTIONS(6102), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -293245,33 +297838,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [124742] = 5, + [126271] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3389), 2, + STATE(3449), 2, sym_line_comment, sym_block_comment, - ACTIONS(6049), 3, + ACTIONS(6104), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - ACTIONS(6047), 5, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [124765] = 4, + [126292] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3390), 2, + STATE(3450), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3817), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(6087), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + [126315] = 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(6003), 8, + ACTIONS(6106), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -293280,105 +297890,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [124786] = 4, + [126336] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3391), 2, + STATE(3452), 2, sym_line_comment, sym_block_comment, - ACTIONS(6051), 8, + ACTIONS(6110), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + ACTIONS(6108), 5, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [124807] = 8, + [126359] = 8, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6055), 1, + ACTIONS(6114), 1, anon_sym_as, - ACTIONS(6057), 1, + ACTIONS(6116), 1, anon_sym_LBRACE, - STATE(3547), 1, + STATE(3598), 1, sym_import_alias, - STATE(3590), 1, + STATE(3661), 1, sym_selective_import_list, - STATE(3392), 2, + STATE(3453), 2, sym_line_comment, sym_block_comment, - ACTIONS(6053), 4, + ACTIONS(6112), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [124836] = 4, + [126388] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3393), 2, + ACTIONS(6120), 1, + anon_sym_DOT, + STATE(3455), 1, + aux_sym_import_path_repeat1, + STATE(3454), 2, sym_line_comment, sym_block_comment, - ACTIONS(6059), 8, + ACTIONS(6118), 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, - [124857] = 4, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + [126413] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3394), 2, + ACTIONS(6120), 1, + anon_sym_DOT, + STATE(3447), 1, + aux_sym_import_path_repeat1, + STATE(3455), 2, sym_line_comment, sym_block_comment, - ACTIONS(6061), 8, + ACTIONS(6122), 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, - [124878] = 5, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + [126438] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3395), 2, + STATE(3456), 2, sym_line_comment, sym_block_comment, - ACTIONS(6065), 3, + ACTIONS(6124), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - ACTIONS(6063), 5, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [124901] = 4, + [126459] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3396), 2, + STATE(3457), 2, sym_line_comment, sym_block_comment, - ACTIONS(6067), 8, + ACTIONS(6126), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -293387,71 +298001,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [124922] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6071), 1, - anon_sym_DOT, - STATE(3399), 1, - aux_sym_import_path_repeat1, - STATE(3397), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6069), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - [124947] = 6, + [126480] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6071), 1, - anon_sym_DOT, - STATE(3397), 1, - aux_sym_import_path_repeat1, - STATE(3398), 2, + STATE(3458), 2, sym_line_comment, sym_block_comment, - ACTIONS(6073), 6, + ACTIONS(6128), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - [124972] = 5, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [126501] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6077), 1, - anon_sym_DOT, - STATE(3399), 3, + STATE(3459), 2, sym_line_comment, sym_block_comment, - aux_sym_import_path_repeat1, - ACTIONS(6075), 6, + ACTIONS(6130), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - [124995] = 4, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [126522] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3400), 2, + STATE(3460), 2, sym_line_comment, sym_block_comment, - ACTIONS(6080), 8, + ACTIONS(6132), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -293460,23181 +298052,23426 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [125016] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6082), 1, - anon_sym_const, - ACTIONS(6084), 1, - anon_sym_type, - ACTIONS(6086), 1, - anon_sym_fn, - ACTIONS(6090), 1, - anon_sym_enum, - ACTIONS(6092), 1, - anon_sym_interface, - ACTIONS(6088), 2, - anon_sym_struct, - anon_sym_union, - STATE(3401), 2, - sym_line_comment, - sym_block_comment, - [125046] = 9, + [126543] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6096), 1, + ACTIONS(6136), 1, anon_sym_SQUOTE, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - STATE(3485), 1, + STATE(3555), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3402), 2, - sym_line_comment, - sym_block_comment, - [125076] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6102), 1, - sym_identifier, - ACTIONS(6105), 1, - anon_sym_RBRACE, - ACTIONS(6107), 1, - anon_sym_DOT_DOT_DOT, - STATE(3369), 1, - sym_reference_expression, - STATE(3387), 2, - sym_keyed_element, - sym_spread_expression, - STATE(3403), 3, + STATE(3461), 2, sym_line_comment, sym_block_comment, - aux_sym_element_list_repeat1, - [125104] = 9, + [126573] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6112), 1, + ACTIONS(6144), 1, anon_sym_DQUOTE, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - STATE(3497), 1, + STATE(3549), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3404), 2, + STATE(3462), 2, + sym_line_comment, + sym_block_comment, + [126603] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6083), 1, + anon_sym_LPAREN, + STATE(3688), 1, + sym_generic_parameters, + STATE(4117), 1, + sym_signature, + ACTIONS(4948), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2878), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3463), 2, + sym_line_comment, + sym_block_comment, + [126631] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6150), 1, + anon_sym_LPAREN, + STATE(1486), 1, + sym_signature, + STATE(3648), 1, + sym_generic_parameters, + ACTIONS(4948), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1104), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3464), 2, + sym_line_comment, + sym_block_comment, + [126659] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6150), 1, + anon_sym_LPAREN, + STATE(1487), 1, + sym_signature, + STATE(3671), 1, + sym_generic_parameters, + ACTIONS(4948), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1104), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3465), 2, sym_line_comment, sym_block_comment, - [125134] = 9, + [126687] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6112), 1, - anon_sym_SQUOTE, - STATE(3485), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, - sym_string_interpolation, - ACTIONS(6094), 2, - sym_escape_sequence, - anon_sym_DOLLAR, - STATE(3405), 2, + ACTIONS(6152), 1, + sym_identifier, + STATE(3631), 1, + sym_reference_expression, + STATE(3466), 2, sym_line_comment, sym_block_comment, - [125164] = 9, + ACTIONS(6154), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + [126711] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, - aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6138), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6118), 1, - anon_sym_DQUOTE, - STATE(3497), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + ACTIONS(6156), 1, + anon_sym_SQUOTE, + STATE(3547), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3406), 2, + STATE(3467), 2, sym_line_comment, sym_block_comment, - [125194] = 9, + [126741] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6120), 1, + ACTIONS(6156), 1, anon_sym_DQUOTE, - STATE(3497), 1, + STATE(3549), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3407), 2, + STATE(3468), 2, sym_line_comment, sym_block_comment, - [125224] = 9, - ACTIONS(497), 1, + [126771] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6120), 1, - anon_sym_SQUOTE, - STATE(3485), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, - sym_string_interpolation, - ACTIONS(6094), 2, - sym_escape_sequence, - anon_sym_DOLLAR, - STATE(3408), 2, + ACTIONS(6150), 1, + anon_sym_LPAREN, + STATE(1470), 1, + sym_signature, + STATE(3802), 1, + sym_generic_parameters, + ACTIONS(4948), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1104), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3469), 2, sym_line_comment, sym_block_comment, - [125254] = 9, + [126799] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6118), 1, + ACTIONS(6158), 1, anon_sym_SQUOTE, - STATE(3485), 1, + STATE(3547), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3409), 2, + STATE(3470), 2, sym_line_comment, sym_block_comment, - [125284] = 9, + [126829] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6122), 1, + ACTIONS(6160), 1, anon_sym_DQUOTE, - STATE(3497), 1, + STATE(3549), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3410), 2, + STATE(3471), 2, sym_line_comment, sym_block_comment, - [125314] = 9, + [126859] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6146), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6122), 1, - anon_sym_SQUOTE, - STATE(3485), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + ACTIONS(6158), 1, + anon_sym_DQUOTE, + STATE(3549), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3411), 2, + STATE(3472), 2, sym_line_comment, sym_block_comment, - [125344] = 8, + [126889] = 9, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6031), 1, - anon_sym_LPAREN, - STATE(3714), 1, - sym_generic_parameters, - STATE(4106), 1, - sym_signature, - ACTIONS(4922), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2870), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3412), 2, - sym_line_comment, - sym_block_comment, - [125372] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6098), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6124), 1, - anon_sym_SQUOTE, - STATE(3527), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, - sym_string_interpolation, - ACTIONS(6094), 2, - sym_escape_sequence, - anon_sym_DOLLAR, - STATE(3413), 2, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6162), 1, + anon_sym_const, + ACTIONS(6164), 1, + anon_sym_type, + ACTIONS(6166), 1, + anon_sym_fn, + ACTIONS(6170), 1, + anon_sym_enum, + ACTIONS(6172), 1, + anon_sym_interface, + ACTIONS(6168), 2, + anon_sym_struct, + anon_sym_union, + STATE(3473), 2, sym_line_comment, sym_block_comment, - [125402] = 9, + [126919] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6146), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6126), 1, - anon_sym_SQUOTE, - STATE(3495), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + ACTIONS(6174), 1, + anon_sym_DQUOTE, + STATE(3500), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3414), 2, + STATE(3474), 2, sym_line_comment, sym_block_comment, - [125432] = 9, + [126949] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6128), 1, + ACTIONS(6176), 1, anon_sym_SQUOTE, - STATE(3485), 1, + STATE(3501), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3415), 2, + STATE(3475), 2, sym_line_comment, sym_block_comment, - [125462] = 9, + [126979] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6130), 1, + ACTIONS(6176), 1, anon_sym_DQUOTE, - STATE(3407), 1, + STATE(3502), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3416), 2, + STATE(3476), 2, sym_line_comment, sym_block_comment, - [125492] = 9, + [127009] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6130), 1, + ACTIONS(6178), 1, anon_sym_SQUOTE, - STATE(3408), 1, + STATE(3547), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3417), 2, + STATE(3477), 2, sym_line_comment, sym_block_comment, - [125522] = 9, + [127039] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6132), 1, + ACTIONS(6180), 1, anon_sym_DQUOTE, - STATE(3410), 1, + STATE(3549), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3418), 2, + STATE(3478), 2, sym_line_comment, sym_block_comment, - [125552] = 9, + [127069] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6132), 1, + ACTIONS(6180), 1, anon_sym_SQUOTE, - STATE(3411), 1, + STATE(3547), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3419), 2, + STATE(3479), 2, sym_line_comment, sym_block_comment, - [125582] = 8, - ACTIONS(3), 1, + [127099] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6134), 1, - anon_sym_LPAREN, - STATE(1434), 1, - sym_signature, - STATE(3677), 1, - sym_generic_parameters, - ACTIONS(4922), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1100), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3420), 2, + ACTIONS(6146), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6148), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6182), 1, + anon_sym_DQUOTE, + STATE(3549), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3633), 1, + sym_string_interpolation, + ACTIONS(6142), 2, + sym_escape_sequence, + anon_sym_DOLLAR, + STATE(3480), 2, sym_line_comment, sym_block_comment, - [125610] = 9, + [127129] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6146), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6136), 1, - anon_sym_SQUOTE, - STATE(3485), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + ACTIONS(6184), 1, + anon_sym_DQUOTE, + STATE(3518), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3421), 2, + STATE(3481), 2, sym_line_comment, sym_block_comment, - [125640] = 9, + [127159] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6138), 1, + ACTIONS(6186), 1, anon_sym_SQUOTE, - STATE(3485), 1, + STATE(3483), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3422), 2, + STATE(3482), 2, sym_line_comment, sym_block_comment, - [125670] = 9, + [127189] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, - anon_sym_DOLLAR_LBRACE, ACTIONS(6140), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6160), 1, anon_sym_SQUOTE, - STATE(3449), 1, + STATE(3547), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3423), 2, + STATE(3483), 2, + sym_line_comment, + sym_block_comment, + [127219] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6083), 1, + anon_sym_LPAREN, + STATE(3685), 1, + sym_generic_parameters, + STATE(4214), 1, + sym_signature, + ACTIONS(4948), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2878), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3484), 2, + sym_line_comment, + sym_block_comment, + [127247] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6083), 1, + anon_sym_LPAREN, + STATE(3714), 1, + sym_generic_parameters, + STATE(4170), 1, + sym_signature, + ACTIONS(4948), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2878), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3485), 2, sym_line_comment, sym_block_comment, - [125700] = 9, + [127275] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6140), 1, + ACTIONS(6188), 1, anon_sym_DQUOTE, - STATE(3450), 1, + STATE(3549), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3424), 2, + STATE(3486), 2, + sym_line_comment, + sym_block_comment, + [127305] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6150), 1, + anon_sym_LPAREN, + STATE(1476), 1, + sym_signature, + STATE(3736), 1, + sym_generic_parameters, + ACTIONS(4948), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1104), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3487), 2, sym_line_comment, sym_block_comment, - [125730] = 9, + [127333] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6142), 1, + ACTIONS(6144), 1, anon_sym_SQUOTE, - STATE(3451), 1, + STATE(3547), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3425), 2, + STATE(3488), 2, sym_line_comment, sym_block_comment, - [125760] = 9, + [127363] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, - aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6138), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6142), 1, - anon_sym_DQUOTE, - STATE(3452), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + ACTIONS(6184), 1, + anon_sym_SQUOTE, + STATE(3519), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3426), 2, + STATE(3489), 2, sym_line_comment, sym_block_comment, - [125790] = 9, + [127393] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6144), 1, + ACTIONS(6190), 1, anon_sym_DQUOTE, - STATE(3404), 1, + STATE(3478), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3427), 2, + STATE(3490), 2, sym_line_comment, sym_block_comment, - [125820] = 9, + [127423] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6144), 1, + ACTIONS(6190), 1, anon_sym_SQUOTE, - STATE(3405), 1, + STATE(3479), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, - sym_string_interpolation, - ACTIONS(6094), 2, - sym_escape_sequence, - anon_sym_DOLLAR, - STATE(3428), 2, - sym_line_comment, - sym_block_comment, - [125850] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6114), 1, - aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6126), 1, - anon_sym_DQUOTE, - STATE(3491), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3429), 2, + STATE(3491), 2, sym_line_comment, sym_block_comment, - [125880] = 9, + [127453] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6146), 1, + ACTIONS(6192), 1, anon_sym_DQUOTE, - STATE(3406), 1, + STATE(3480), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3430), 2, + STATE(3492), 2, sym_line_comment, sym_block_comment, - [125910] = 9, + [127483] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6146), 1, + ACTIONS(6192), 1, anon_sym_SQUOTE, - STATE(3409), 1, + STATE(3527), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3431), 2, + STATE(3493), 2, sym_line_comment, sym_block_comment, - [125940] = 9, + [127513] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, - aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, - anon_sym_DOLLAR_LBRACE, ACTIONS(6138), 1, - anon_sym_DQUOTE, - STATE(3497), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6140), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6194), 1, + anon_sym_SQUOTE, + STATE(3547), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3432), 2, + STATE(3494), 2, sym_line_comment, sym_block_comment, - [125970] = 8, + [127543] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6134), 1, + ACTIONS(6150), 1, anon_sym_LPAREN, - STATE(1448), 1, + STATE(1456), 1, sym_signature, - STATE(3727), 1, + STATE(3683), 1, sym_generic_parameters, - ACTIONS(4922), 2, + ACTIONS(4948), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1100), 2, + STATE(1104), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3433), 2, + STATE(3495), 2, + sym_line_comment, + sym_block_comment, + [127571] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6146), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6148), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6194), 1, + anon_sym_DQUOTE, + STATE(3549), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3633), 1, + sym_string_interpolation, + ACTIONS(6142), 2, + sym_escape_sequence, + anon_sym_DOLLAR, + STATE(3496), 2, sym_line_comment, sym_block_comment, - [125998] = 8, + [127601] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6134), 1, + ACTIONS(6150), 1, anon_sym_LPAREN, - STATE(1417), 1, + STATE(1489), 1, sym_signature, - STATE(3737), 1, + STATE(3673), 1, sym_generic_parameters, - ACTIONS(4922), 2, + ACTIONS(4948), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1100), 2, + STATE(1104), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3434), 2, + STATE(3497), 2, sym_line_comment, sym_block_comment, - [126026] = 8, + [127629] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(3678), 1, + STATE(3679), 1, sym_generic_parameters, - STATE(4069), 1, + STATE(4375), 1, sym_signature, - ACTIONS(4922), 2, + ACTIONS(4948), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2870), 2, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3435), 2, + STATE(3498), 2, sym_line_comment, sym_block_comment, - [126054] = 6, + [127657] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6148), 1, - sym_identifier, - STATE(3567), 1, - sym_reference_expression, - STATE(3436), 2, + ACTIONS(6138), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6140), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6196), 1, + anon_sym_SQUOTE, + STATE(3547), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3632), 1, + sym_string_interpolation, + ACTIONS(6134), 2, + sym_escape_sequence, + anon_sym_DOLLAR, + STATE(3499), 2, sym_line_comment, sym_block_comment, - ACTIONS(6150), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - [126078] = 9, + [127687] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6152), 1, + ACTIONS(6196), 1, anon_sym_DQUOTE, - STATE(3457), 1, + STATE(3549), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3437), 2, + STATE(3500), 2, sym_line_comment, sym_block_comment, - [126108] = 9, + [127717] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6154), 1, + ACTIONS(6198), 1, anon_sym_SQUOTE, - STATE(3485), 1, + STATE(3547), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3438), 2, + STATE(3501), 2, sym_line_comment, sym_block_comment, - [126138] = 9, + [127747] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6136), 1, + ACTIONS(6198), 1, anon_sym_DQUOTE, - STATE(3497), 1, + STATE(3549), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3439), 2, + STATE(3502), 2, + sym_line_comment, + sym_block_comment, + [127777] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5874), 1, + sym_identifier, + ACTIONS(6200), 1, + anon_sym_RBRACK, + ACTIONS(6202), 1, + anon_sym_mut, + ACTIONS(6204), 1, + anon_sym_shared, + STATE(4165), 1, + sym_capture, + STATE(4333), 1, + sym_mutability_modifiers, + STATE(4359), 1, + sym_reference_expression, + STATE(3503), 2, + sym_line_comment, + sym_block_comment, + [127809] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6146), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6148), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6206), 1, + anon_sym_DQUOTE, + STATE(3549), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3633), 1, + sym_string_interpolation, + ACTIONS(6142), 2, + sym_escape_sequence, + anon_sym_DOLLAR, + STATE(3504), 2, sym_line_comment, sym_block_comment, - [126168] = 9, + [127839] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6156), 1, + ACTIONS(6206), 1, anon_sym_SQUOTE, - STATE(3485), 1, + STATE(3547), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3440), 2, + STATE(3505), 2, sym_line_comment, sym_block_comment, - [126198] = 9, - ACTIONS(3), 1, + [127869] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(647), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6158), 1, - sym_identifier, - ACTIONS(6160), 1, - anon_sym_RBRACE, - STATE(3369), 1, - sym_reference_expression, - STATE(3403), 1, - aux_sym_element_list_repeat1, - STATE(3387), 2, - sym_keyed_element, - sym_spread_expression, - STATE(3441), 2, + ACTIONS(6138), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6140), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6208), 1, + anon_sym_SQUOTE, + STATE(3547), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3632), 1, + sym_string_interpolation, + ACTIONS(6134), 2, + sym_escape_sequence, + anon_sym_DOLLAR, + STATE(3506), 2, sym_line_comment, sym_block_comment, - [126228] = 9, + [127899] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6154), 1, + ACTIONS(6208), 1, anon_sym_DQUOTE, - STATE(3497), 1, + STATE(3549), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3442), 2, + STATE(3507), 2, sym_line_comment, sym_block_comment, - [126258] = 9, + [127929] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6162), 1, + ACTIONS(6210), 1, anon_sym_DQUOTE, - STATE(3497), 1, + STATE(3549), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3443), 2, + STATE(3508), 2, sym_line_comment, sym_block_comment, - [126288] = 8, + [127959] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6134), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(1439), 1, - sym_signature, - STATE(3744), 1, + STATE(3675), 1, sym_generic_parameters, - ACTIONS(4922), 2, + STATE(4145), 1, + sym_signature, + ACTIONS(4948), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1100), 2, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3444), 2, + STATE(3509), 2, sym_line_comment, sym_block_comment, - [126316] = 9, + [127987] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, - aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6138), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6156), 1, - anon_sym_DQUOTE, - STATE(3497), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + ACTIONS(6210), 1, + anon_sym_SQUOTE, + STATE(3547), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3445), 2, + STATE(3510), 2, sym_line_comment, sym_block_comment, - [126346] = 8, + [128017] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(3693), 1, + STATE(3684), 1, sym_generic_parameters, - STATE(4207), 1, + STATE(4370), 1, sym_signature, - ACTIONS(4922), 2, + ACTIONS(4948), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2870), 2, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3446), 2, - sym_line_comment, - sym_block_comment, - [126374] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6114), 1, - aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6164), 1, - anon_sym_DQUOTE, - STATE(3497), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, - sym_string_interpolation, - ACTIONS(6110), 2, - sym_escape_sequence, - anon_sym_DOLLAR, - STATE(3447), 2, + STATE(3511), 2, sym_line_comment, sym_block_comment, - [126404] = 8, + [128045] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(3741), 1, + STATE(3693), 1, sym_generic_parameters, - STATE(4030), 1, + STATE(4341), 1, sym_signature, - ACTIONS(4922), 2, + ACTIONS(4948), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2870), 2, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3448), 2, + STATE(3512), 2, sym_line_comment, sym_block_comment, - [126432] = 9, + [128073] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6166), 1, + ACTIONS(6188), 1, anon_sym_SQUOTE, - STATE(3485), 1, + STATE(3547), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3449), 2, + STATE(3513), 2, sym_line_comment, sym_block_comment, - [126462] = 9, + [128103] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, - aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6138), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6166), 1, - anon_sym_DQUOTE, - STATE(3497), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + ACTIONS(6212), 1, + anon_sym_SQUOTE, + STATE(3547), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3450), 2, + STATE(3514), 2, sym_line_comment, sym_block_comment, - [126492] = 9, + [128133] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6146), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6168), 1, - anon_sym_SQUOTE, - STATE(3485), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + ACTIONS(6212), 1, + anon_sym_DQUOTE, + STATE(3549), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3451), 2, + STATE(3515), 2, sym_line_comment, sym_block_comment, - [126522] = 9, + [128163] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6168), 1, + ACTIONS(6214), 1, anon_sym_DQUOTE, - STATE(3497), 1, + STATE(3549), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3452), 2, + STATE(3516), 2, sym_line_comment, sym_block_comment, - [126552] = 9, - ACTIONS(497), 1, + [128193] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6164), 1, - anon_sym_SQUOTE, - STATE(3485), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, - sym_string_interpolation, - ACTIONS(6094), 2, - sym_escape_sequence, - anon_sym_DOLLAR, - STATE(3453), 2, + STATE(3517), 2, sym_line_comment, sym_block_comment, - [126582] = 9, + ACTIONS(6216), 7, + anon_sym_const, + anon_sym_type, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_interface, + [128213] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6170), 1, + ACTIONS(6218), 1, anon_sym_DQUOTE, - STATE(3497), 1, + STATE(3549), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3454), 2, + STATE(3518), 2, sym_line_comment, sym_block_comment, - [126612] = 9, + [128243] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6170), 1, + ACTIONS(6218), 1, anon_sym_SQUOTE, - STATE(3485), 1, + STATE(3547), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3455), 2, + STATE(3519), 2, sym_line_comment, sym_block_comment, - [126642] = 9, + [128273] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6172), 1, + ACTIONS(6220), 1, anon_sym_DQUOTE, - STATE(3505), 1, + STATE(3549), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3456), 2, + STATE(3520), 2, sym_line_comment, sym_block_comment, - [126672] = 9, + [128303] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, - aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6138), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6174), 1, - anon_sym_DQUOTE, - STATE(3497), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + ACTIONS(6222), 1, + anon_sym_SQUOTE, + STATE(3506), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3457), 2, + STATE(3521), 2, sym_line_comment, sym_block_comment, - [126702] = 9, + [128333] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, - aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6138), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6128), 1, - anon_sym_DQUOTE, - STATE(3497), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + ACTIONS(6224), 1, + anon_sym_SQUOTE, + STATE(3561), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3458), 2, + STATE(3522), 2, sym_line_comment, sym_block_comment, - [126732] = 9, + [128363] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6174), 1, + ACTIONS(6220), 1, anon_sym_SQUOTE, - STATE(3485), 1, + STATE(3547), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3459), 2, + STATE(3523), 2, sym_line_comment, sym_block_comment, - [126762] = 9, + [128393] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6176), 1, + ACTIONS(6224), 1, anon_sym_DQUOTE, - STATE(3519), 1, + STATE(3557), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3460), 2, - sym_line_comment, - sym_block_comment, - [126792] = 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(6178), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - [126812] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6031), 1, - anon_sym_LPAREN, - STATE(3658), 1, - sym_generic_parameters, - STATE(4221), 1, - sym_signature, - ACTIONS(4922), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2870), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3462), 2, + STATE(3524), 2, sym_line_comment, sym_block_comment, - [126840] = 9, + [128423] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6146), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6172), 1, - anon_sym_SQUOTE, - STATE(3525), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + ACTIONS(6186), 1, + anon_sym_DQUOTE, + STATE(3471), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3463), 2, + STATE(3525), 2, sym_line_comment, sym_block_comment, - [126870] = 9, + [128453] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6124), 1, + ACTIONS(6226), 1, anon_sym_DQUOTE, - STATE(3443), 1, + STATE(3504), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3464), 2, + STATE(3526), 2, sym_line_comment, sym_block_comment, - [126900] = 9, + [128483] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, - aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6138), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6180), 1, - anon_sym_DQUOTE, - STATE(3447), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + ACTIONS(6182), 1, + anon_sym_SQUOTE, + STATE(3547), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3465), 2, + STATE(3527), 2, sym_line_comment, sym_block_comment, - [126930] = 9, + [128513] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6180), 1, + ACTIONS(6226), 1, anon_sym_SQUOTE, - STATE(3453), 1, + STATE(3505), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3466), 2, + STATE(3528), 2, sym_line_comment, sym_block_comment, - [126960] = 9, + [128543] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6182), 1, + ACTIONS(6228), 1, anon_sym_DQUOTE, - STATE(3454), 1, + STATE(3508), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3467), 2, + STATE(3529), 2, sym_line_comment, sym_block_comment, - [126990] = 9, + [128573] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, - aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6138), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6184), 1, - anon_sym_DQUOTE, - STATE(3497), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + ACTIONS(6228), 1, + anon_sym_SQUOTE, + STATE(3510), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3468), 2, + STATE(3530), 2, sym_line_comment, sym_block_comment, - [127020] = 9, + [128603] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6136), 1, + anon_sym_DQUOTE, + ACTIONS(6146), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6176), 1, - anon_sym_SQUOTE, - STATE(3528), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3553), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3469), 2, + STATE(3531), 2, + sym_line_comment, + sym_block_comment, + [128633] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6083), 1, + anon_sym_LPAREN, + STATE(3665), 1, + sym_generic_parameters, + STATE(4252), 1, + sym_signature, + ACTIONS(4948), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2878), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3532), 2, sym_line_comment, sym_block_comment, - [127050] = 9, + [128661] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6178), 1, anon_sym_DQUOTE, - STATE(3458), 1, + STATE(3549), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3470), 2, + STATE(3533), 2, sym_line_comment, sym_block_comment, - [127080] = 9, + [128691] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6184), 1, + ACTIONS(6230), 1, anon_sym_SQUOTE, - STATE(3485), 1, + STATE(3477), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3471), 2, + STATE(3534), 2, sym_line_comment, sym_block_comment, - [127110] = 9, + [128721] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6182), 1, + ACTIONS(6174), 1, anon_sym_SQUOTE, - STATE(3455), 1, + STATE(3499), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3472), 2, + STATE(3535), 2, sym_line_comment, sym_block_comment, - [127140] = 9, + [128751] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6096), 1, - anon_sym_DQUOTE, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - STATE(3497), 1, + ACTIONS(6232), 1, + anon_sym_DQUOTE, + STATE(3520), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3473), 2, - sym_line_comment, - sym_block_comment, - [127170] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6134), 1, - anon_sym_LPAREN, - STATE(1476), 1, - sym_signature, - STATE(3707), 1, - sym_generic_parameters, - ACTIONS(4922), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1100), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3474), 2, + STATE(3536), 2, sym_line_comment, sym_block_comment, - [127198] = 8, - ACTIONS(3), 1, + [128781] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, - anon_sym_LPAREN, - STATE(3709), 1, - sym_generic_parameters, - STATE(4307), 1, - sym_signature, - ACTIONS(4922), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2870), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3475), 2, + ACTIONS(6138), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6140), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6232), 1, + anon_sym_SQUOTE, + STATE(3523), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3632), 1, + sym_string_interpolation, + ACTIONS(6134), 2, + sym_escape_sequence, + anon_sym_DOLLAR, + STATE(3537), 2, sym_line_comment, sym_block_comment, - [127226] = 9, + [128811] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6188), 1, + ACTIONS(6222), 1, anon_sym_DQUOTE, - STATE(3522), 1, + STATE(3507), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3476), 2, + STATE(3538), 2, sym_line_comment, sym_block_comment, - [127256] = 9, + [128841] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6234), 1, anon_sym_SQUOTE, - STATE(3415), 1, + STATE(3514), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3477), 2, - sym_line_comment, - sym_block_comment, - [127286] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6134), 1, - anon_sym_LPAREN, - STATE(1454), 1, - sym_signature, - STATE(3734), 1, - sym_generic_parameters, - ACTIONS(4922), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1100), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3478), 2, - sym_line_comment, - sym_block_comment, - [127314] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6134), 1, - anon_sym_LPAREN, - STATE(1461), 1, - sym_signature, - STATE(3674), 1, - sym_generic_parameters, - ACTIONS(4922), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1100), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3479), 2, + STATE(3539), 2, sym_line_comment, sym_block_comment, - [127342] = 4, + [128871] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3480), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6075), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - [127362] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6031), 1, - anon_sym_LPAREN, - STATE(3726), 1, - sym_generic_parameters, - STATE(4157), 1, - sym_signature, - ACTIONS(4922), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2870), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3481), 2, + ACTIONS(6138), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6140), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6236), 1, + anon_sym_SQUOTE, + STATE(3488), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3632), 1, + sym_string_interpolation, + ACTIONS(6134), 2, + sym_escape_sequence, + anon_sym_DOLLAR, + STATE(3540), 2, sym_line_comment, sym_block_comment, - [127390] = 9, + [128901] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6146), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6152), 1, - anon_sym_SQUOTE, - STATE(3459), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + ACTIONS(6234), 1, + anon_sym_DQUOTE, + STATE(3515), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3482), 2, + STATE(3541), 2, sym_line_comment, sym_block_comment, - [127420] = 8, + [128931] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6134), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(1422), 1, - sym_signature, - STATE(3748), 1, + STATE(3696), 1, sym_generic_parameters, - ACTIONS(4922), 2, + STATE(4326), 1, + sym_signature, + ACTIONS(4948), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1100), 2, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3483), 2, - sym_line_comment, - sym_block_comment, - [127448] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5826), 1, - sym_identifier, - ACTIONS(6190), 1, - anon_sym_RBRACK, - ACTIONS(6192), 1, - anon_sym_mut, - ACTIONS(6194), 1, - anon_sym_shared, - STATE(4021), 1, - sym_reference_expression, - STATE(4026), 1, - sym_mutability_modifiers, - STATE(4203), 1, - sym_capture, - STATE(3484), 2, - sym_line_comment, - sym_block_comment, - [127480] = 8, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6199), 1, - anon_sym_SQUOTE, - ACTIONS(6201), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6204), 1, - anon_sym_DOLLAR_LBRACE, - STATE(3558), 1, - sym_string_interpolation, - ACTIONS(6196), 2, - sym_escape_sequence, - anon_sym_DOLLAR, - STATE(3485), 3, + STATE(3542), 2, sym_line_comment, sym_block_comment, - aux_sym_interpreted_string_literal_repeat1, - [127508] = 8, + [128959] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6134), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(1425), 1, - sym_signature, - STATE(3747), 1, + STATE(3659), 1, sym_generic_parameters, - ACTIONS(4922), 2, + STATE(4081), 1, + sym_signature, + ACTIONS(4948), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1100), 2, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3486), 2, - sym_line_comment, - sym_block_comment, - [127536] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6114), 1, - aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6207), 1, - anon_sym_DQUOTE, - STATE(3468), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, - sym_string_interpolation, - ACTIONS(6110), 2, - sym_escape_sequence, - anon_sym_DOLLAR, - STATE(3487), 2, - sym_line_comment, - sym_block_comment, - [127566] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6098), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6207), 1, - anon_sym_SQUOTE, - STATE(3471), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, - sym_string_interpolation, - ACTIONS(6094), 2, - sym_escape_sequence, - anon_sym_DOLLAR, - STATE(3488), 2, + STATE(3543), 2, sym_line_comment, sym_block_comment, - [127596] = 9, + [128987] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6209), 1, + ACTIONS(6238), 1, anon_sym_DQUOTE, - STATE(3473), 1, + STATE(3549), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3489), 2, + STATE(3544), 2, sym_line_comment, sym_block_comment, - [127626] = 9, + [129017] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6209), 1, + ACTIONS(6238), 1, anon_sym_SQUOTE, - STATE(3402), 1, + STATE(3547), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3490), 2, + STATE(3545), 2, sym_line_comment, sym_block_comment, - [127656] = 9, + [129047] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6211), 1, + ACTIONS(6240), 1, anon_sym_DQUOTE, - STATE(3497), 1, + STATE(3549), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3491), 2, - sym_line_comment, - sym_block_comment, - [127686] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5826), 1, - sym_identifier, - ACTIONS(6192), 1, - anon_sym_mut, - ACTIONS(6194), 1, - anon_sym_shared, - ACTIONS(6213), 1, - anon_sym_RBRACK, - STATE(4021), 1, - sym_reference_expression, - STATE(4026), 1, - sym_mutability_modifiers, - STATE(4203), 1, - sym_capture, - STATE(3492), 2, - sym_line_comment, - sym_block_comment, - [127718] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6134), 1, - anon_sym_LPAREN, - STATE(1428), 1, - sym_signature, - STATE(3745), 1, - sym_generic_parameters, - ACTIONS(4922), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1100), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3493), 2, + STATE(3546), 2, sym_line_comment, sym_block_comment, - [127746] = 9, + [129077] = 8, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6245), 1, + anon_sym_SQUOTE, + ACTIONS(6247), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6250), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6188), 1, - anon_sym_SQUOTE, - STATE(3523), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6242), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3494), 2, + STATE(3547), 3, sym_line_comment, sym_block_comment, - [127776] = 9, + aux_sym_interpreted_string_literal_repeat1, + [129105] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6211), 1, + ACTIONS(6240), 1, anon_sym_SQUOTE, - STATE(3485), 1, + STATE(3547), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3495), 2, - sym_line_comment, - sym_block_comment, - [127806] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6031), 1, - anon_sym_LPAREN, - STATE(3740), 1, - sym_generic_parameters, - STATE(4017), 1, - sym_signature, - ACTIONS(4922), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2870), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3496), 2, + STATE(3548), 2, sym_line_comment, sym_block_comment, - [127834] = 8, + [129135] = 8, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6218), 1, + ACTIONS(6256), 1, anon_sym_DQUOTE, - ACTIONS(6220), 1, + ACTIONS(6258), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6223), 1, + ACTIONS(6261), 1, anon_sym_DOLLAR_LBRACE, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6215), 2, + ACTIONS(6253), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3497), 3, + STATE(3549), 3, sym_line_comment, sym_block_comment, aux_sym_interpreted_string_literal_repeat2, - [127862] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6134), 1, - anon_sym_LPAREN, - STATE(1452), 1, - sym_signature, - STATE(3655), 1, - sym_generic_parameters, - ACTIONS(4922), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1100), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3498), 2, - sym_line_comment, - sym_block_comment, - [127890] = 9, + [129163] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6146), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6226), 1, - anon_sym_SQUOTE, - STATE(3521), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + ACTIONS(6230), 1, + anon_sym_DQUOTE, + STATE(3533), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3499), 2, + STATE(3550), 2, sym_line_comment, sym_block_comment, - [127920] = 9, + [129193] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6226), 1, + ACTIONS(6236), 1, anon_sym_DQUOTE, - STATE(3520), 1, + STATE(3462), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3500), 2, + STATE(3551), 2, sym_line_comment, sym_block_comment, - [127950] = 9, + [129223] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + STATE(3552), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6264), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + [129243] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6146), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6228), 1, - anon_sym_SQUOTE, - STATE(3421), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + ACTIONS(6266), 1, + anon_sym_DQUOTE, + STATE(3549), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3501), 2, + STATE(3553), 2, sym_line_comment, sym_block_comment, - [127980] = 9, + [129273] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6230), 1, + ACTIONS(6214), 1, anon_sym_SQUOTE, - STATE(3422), 1, + STATE(3547), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3502), 2, - sym_line_comment, - sym_block_comment, - [128010] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6031), 1, - anon_sym_LPAREN, - STATE(3752), 1, - sym_generic_parameters, - STATE(4139), 1, - sym_signature, - ACTIONS(4922), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2870), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3503), 2, + STATE(3554), 2, sym_line_comment, sym_block_comment, - [128038] = 9, + [129303] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, - aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6138), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6228), 1, - anon_sym_DQUOTE, - STATE(3439), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + ACTIONS(6266), 1, + anon_sym_SQUOTE, + STATE(3547), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3504), 2, + STATE(3555), 2, sym_line_comment, sym_block_comment, - [128068] = 9, + [129333] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6232), 1, + ACTIONS(6268), 1, anon_sym_DQUOTE, - STATE(3497), 1, + STATE(3549), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3505), 2, + STATE(3556), 2, sym_line_comment, sym_block_comment, - [128098] = 9, + [129363] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6230), 1, + ACTIONS(6270), 1, anon_sym_DQUOTE, - STATE(3432), 1, + STATE(3549), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3506), 2, - sym_line_comment, - sym_block_comment, - [128128] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6134), 1, - anon_sym_LPAREN, - STATE(1433), 1, - sym_signature, - STATE(3736), 1, - sym_generic_parameters, - ACTIONS(4922), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1100), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3507), 2, + STATE(3557), 2, sym_line_comment, sym_block_comment, - [128156] = 9, + [129393] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6234), 1, + ACTIONS(6268), 1, anon_sym_SQUOTE, - STATE(3440), 1, + STATE(3547), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3508), 2, + STATE(3558), 2, sym_line_comment, sym_block_comment, - [128186] = 9, + [129423] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6234), 1, + ACTIONS(6272), 1, anon_sym_DQUOTE, - STATE(3445), 1, + STATE(3549), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3509), 2, + STATE(3559), 2, sym_line_comment, sym_block_comment, - [128216] = 9, + [129453] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6236), 1, + ACTIONS(6272), 1, anon_sym_SQUOTE, - STATE(3438), 1, + STATE(3547), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3510), 2, + STATE(3560), 2, sym_line_comment, sym_block_comment, - [128246] = 9, + [129483] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, - aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6138), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6238), 1, - anon_sym_DQUOTE, - STATE(3497), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + ACTIONS(6270), 1, + anon_sym_SQUOTE, + STATE(3547), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3511), 2, + STATE(3561), 2, sym_line_comment, sym_block_comment, - [128276] = 9, + [129513] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, - aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6138), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6236), 1, - anon_sym_DQUOTE, - STATE(3442), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + ACTIONS(6274), 1, + anon_sym_SQUOTE, + STATE(3494), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3512), 2, + STATE(3562), 2, + sym_line_comment, + sym_block_comment, + [129543] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3563), 2, sym_line_comment, sym_block_comment, - [128306] = 4, + ACTIONS(6097), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + [129563] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3513), 2, + ACTIONS(6150), 1, + anon_sym_LPAREN, + STATE(1463), 1, + sym_signature, + STATE(3777), 1, + sym_generic_parameters, + ACTIONS(4948), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1104), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3564), 2, sym_line_comment, sym_block_comment, - ACTIONS(6240), 7, - anon_sym_const, - anon_sym_type, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_interface, - [128326] = 8, + [129591] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6276), 1, + sym_identifier, + ACTIONS(6279), 1, + anon_sym_RBRACE, + ACTIONS(6281), 1, + anon_sym_DOT_DOT_DOT, + STATE(3437), 1, + sym_reference_expression, + STATE(3450), 2, + sym_keyed_element, + sym_spread_expression, + STATE(3565), 3, + sym_line_comment, + sym_block_comment, + aux_sym_element_list_repeat1, + [129619] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(3739), 1, + STATE(3653), 1, sym_generic_parameters, - STATE(4294), 1, + STATE(4344), 1, sym_signature, - ACTIONS(4922), 2, + ACTIONS(4948), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2870), 2, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3514), 2, + STATE(3566), 2, sym_line_comment, sym_block_comment, - [128354] = 9, - ACTIONS(497), 1, + [129647] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6242), 1, - anon_sym_SQUOTE, - STATE(3530), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, - sym_string_interpolation, - ACTIONS(6094), 2, - sym_escape_sequence, - anon_sym_DOLLAR, - STATE(3515), 2, + ACTIONS(6150), 1, + anon_sym_LPAREN, + STATE(1464), 1, + sym_signature, + STATE(3783), 1, + sym_generic_parameters, + ACTIONS(4948), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1104), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3567), 2, sym_line_comment, sym_block_comment, - [128384] = 9, + [129675] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6242), 1, + ACTIONS(6274), 1, anon_sym_DQUOTE, - STATE(3531), 1, + STATE(3496), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3516), 2, + STATE(3568), 2, sym_line_comment, sym_block_comment, - [128414] = 9, + [129705] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6244), 1, + ACTIONS(6284), 1, anon_sym_SQUOTE, - STATE(3526), 1, + STATE(3554), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3517), 2, + STATE(3569), 2, sym_line_comment, sym_block_comment, - [128444] = 9, + [129735] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6244), 1, + ACTIONS(6284), 1, anon_sym_DQUOTE, - STATE(3511), 1, + STATE(3516), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3518), 2, + STATE(3570), 2, sym_line_comment, sym_block_comment, - [128474] = 9, + [129765] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, - aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6138), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6246), 1, - anon_sym_DQUOTE, - STATE(3497), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + ACTIONS(6286), 1, + anon_sym_SQUOTE, + STATE(3513), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3519), 2, + STATE(3571), 2, sym_line_comment, sym_block_comment, - [128504] = 9, + [129795] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6248), 1, + ACTIONS(6286), 1, anon_sym_DQUOTE, - STATE(3497), 1, + STATE(3486), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3520), 2, + STATE(3572), 2, sym_line_comment, sym_block_comment, - [128534] = 9, - ACTIONS(497), 1, + [129825] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6248), 1, - anon_sym_SQUOTE, - STATE(3485), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, - sym_string_interpolation, - ACTIONS(6094), 2, - sym_escape_sequence, - anon_sym_DOLLAR, - STATE(3521), 2, + ACTIONS(6150), 1, + anon_sym_LPAREN, + STATE(1483), 1, + sym_signature, + STATE(3795), 1, + sym_generic_parameters, + ACTIONS(4948), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1104), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3573), 2, sym_line_comment, sym_block_comment, - [128564] = 9, + [129853] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, + ACTIONS(6146), 1, aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6250), 1, + ACTIONS(6288), 1, anon_sym_DQUOTE, - STATE(3497), 1, + STATE(3556), 1, aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3522), 2, + STATE(3574), 2, + sym_line_comment, + sym_block_comment, + [129883] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6083), 1, + anon_sym_LPAREN, + STATE(3651), 1, + sym_generic_parameters, + STATE(4190), 1, + sym_signature, + ACTIONS(4948), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2878), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3575), 2, sym_line_comment, sym_block_comment, - [128594] = 9, + [129911] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6250), 1, + ACTIONS(6288), 1, anon_sym_SQUOTE, - STATE(3485), 1, - aux_sym_interpreted_string_literal_repeat1, STATE(3558), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3523), 2, + STATE(3576), 2, sym_line_comment, sym_block_comment, - [128624] = 8, + [129941] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, + ACTIONS(6150), 1, anon_sym_LPAREN, - STATE(3683), 1, - sym_generic_parameters, - STATE(4057), 1, + STATE(1471), 1, sym_signature, - ACTIONS(4922), 2, + STATE(3806), 1, + sym_generic_parameters, + ACTIONS(4948), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2870), 2, + STATE(1104), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3524), 2, + STATE(3577), 2, sym_line_comment, sym_block_comment, - [128652] = 9, + [129969] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6146), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6232), 1, - anon_sym_SQUOTE, - STATE(3485), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + ACTIONS(6290), 1, + anon_sym_DQUOTE, + STATE(3559), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3525), 2, + STATE(3578), 2, + sym_line_comment, + sym_block_comment, + [129999] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(647), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6292), 1, + sym_identifier, + ACTIONS(6294), 1, + anon_sym_RBRACE, + STATE(3437), 1, + sym_reference_expression, + STATE(3565), 1, + aux_sym_element_list_repeat1, + STATE(3450), 2, + sym_keyed_element, + sym_spread_expression, + STATE(3579), 2, sym_line_comment, sym_block_comment, - [128682] = 9, + [130029] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6238), 1, + ACTIONS(6290), 1, anon_sym_SQUOTE, - STATE(3485), 1, + STATE(3560), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3526), 2, + STATE(3580), 2, + sym_line_comment, + sym_block_comment, + [130059] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5874), 1, + sym_identifier, + ACTIONS(6202), 1, + anon_sym_mut, + ACTIONS(6204), 1, + anon_sym_shared, + ACTIONS(6296), 1, + anon_sym_RBRACK, + STATE(4165), 1, + sym_capture, + STATE(4333), 1, + sym_mutability_modifiers, + STATE(4359), 1, + sym_reference_expression, + STATE(3581), 2, + sym_line_comment, + sym_block_comment, + [130091] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6150), 1, + anon_sym_LPAREN, + STATE(1481), 1, + sym_signature, + STATE(3810), 1, + sym_generic_parameters, + ACTIONS(4948), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1104), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3582), 2, sym_line_comment, sym_block_comment, - [128712] = 9, + [130119] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6162), 1, + ACTIONS(6298), 1, anon_sym_SQUOTE, - STATE(3485), 1, + STATE(3467), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3527), 2, + STATE(3583), 2, sym_line_comment, sym_block_comment, - [128742] = 9, + [130149] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, - aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6146), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6148), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6246), 1, - anon_sym_SQUOTE, - STATE(3485), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + ACTIONS(6298), 1, + anon_sym_DQUOTE, + STATE(3468), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3633), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6142), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3528), 2, + STATE(3584), 2, sym_line_comment, sym_block_comment, - [128772] = 8, + [130179] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, + ACTIONS(6150), 1, anon_sym_LPAREN, - STATE(3667), 1, - sym_generic_parameters, - STATE(4140), 1, + STATE(1479), 1, sym_signature, - ACTIONS(4922), 2, + STATE(3812), 1, + sym_generic_parameters, + ACTIONS(4948), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2870), 2, + STATE(1104), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3529), 2, + STATE(3585), 2, sym_line_comment, sym_block_comment, - [128800] = 9, + [130207] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, + ACTIONS(6138), 1, aux_sym_interpreted_string_literal_token1, - ACTIONS(6100), 1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6252), 1, + ACTIONS(6300), 1, anon_sym_SQUOTE, - STATE(3485), 1, + STATE(3470), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(3558), 1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6094), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3530), 2, + STATE(3586), 2, sym_line_comment, sym_block_comment, - [128830] = 9, + [130237] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, - aux_sym_interpreted_string_literal_token2, - ACTIONS(6116), 1, + ACTIONS(6138), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6252), 1, - anon_sym_DQUOTE, - STATE(3497), 1, - aux_sym_interpreted_string_literal_repeat2, - STATE(3551), 1, + ACTIONS(6302), 1, + anon_sym_SQUOTE, + STATE(3548), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3632), 1, sym_string_interpolation, - ACTIONS(6110), 2, + ACTIONS(6134), 2, sym_escape_sequence, anon_sym_DOLLAR, - STATE(3531), 2, + STATE(3587), 2, sym_line_comment, sym_block_comment, - [128860] = 6, + [130267] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4978), 1, - anon_sym_COMMA, - STATE(3544), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3532), 2, + ACTIONS(6146), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6148), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6300), 1, + anon_sym_DQUOTE, + STATE(3472), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3633), 1, + sym_string_interpolation, + ACTIONS(6142), 2, + sym_escape_sequence, + anon_sym_DOLLAR, + STATE(3588), 2, sym_line_comment, sym_block_comment, - ACTIONS(4009), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [128883] = 6, + [130297] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6254), 1, - sym_identifier, - STATE(3720), 1, - sym_label_reference, - STATE(3533), 2, + ACTIONS(6146), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6148), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6304), 1, + anon_sym_DQUOTE, + STATE(3544), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3633), 1, + sym_string_interpolation, + ACTIONS(6142), 2, + sym_escape_sequence, + anon_sym_DOLLAR, + STATE(3589), 2, sym_line_comment, sym_block_comment, - ACTIONS(4154), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [128906] = 6, + [130327] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6258), 1, - anon_sym_RBRACE, - STATE(3540), 1, - aux_sym_selective_import_list_repeat1, - STATE(3534), 2, + ACTIONS(6138), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6140), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6304), 1, + anon_sym_SQUOTE, + STATE(3545), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3632), 1, + sym_string_interpolation, + ACTIONS(6134), 2, + sym_escape_sequence, + anon_sym_DOLLAR, + STATE(3590), 2, sym_line_comment, sym_block_comment, - ACTIONS(6256), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - [128929] = 9, - ACTIONS(3), 1, + [130357] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5826), 1, - sym_identifier, - ACTIONS(6192), 1, - anon_sym_mut, - ACTIONS(6194), 1, - anon_sym_shared, - STATE(4021), 1, - sym_reference_expression, - STATE(4026), 1, - sym_mutability_modifiers, - STATE(4203), 1, - sym_capture, - STATE(3535), 2, + ACTIONS(6146), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6148), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6302), 1, + anon_sym_DQUOTE, + STATE(3546), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3633), 1, + sym_string_interpolation, + ACTIONS(6142), 2, + sym_escape_sequence, + anon_sym_DOLLAR, + STATE(3591), 2, sym_line_comment, sym_block_comment, - [128958] = 9, + [130387] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5826), 1, + ACTIONS(5874), 1, sym_identifier, - ACTIONS(6192), 1, + ACTIONS(6202), 1, anon_sym_mut, - ACTIONS(6194), 1, + ACTIONS(6204), 1, anon_sym_shared, - STATE(3814), 1, + STATE(4165), 1, sym_capture, - STATE(4021), 1, - sym_reference_expression, - STATE(4026), 1, + STATE(4333), 1, sym_mutability_modifiers, - STATE(3536), 2, + STATE(4359), 1, + sym_reference_expression, + STATE(3592), 2, sym_line_comment, sym_block_comment, - [128987] = 8, + [130416] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6260), 1, - anon_sym_const, - ACTIONS(6262), 1, - anon_sym_fn, - ACTIONS(6266), 1, - anon_sym_enum, - ACTIONS(6268), 1, - anon_sym_interface, - ACTIONS(6264), 2, - anon_sym_struct, - anon_sym_union, - STATE(3537), 2, + ACTIONS(6306), 1, + anon_sym_LBRACK, + STATE(2416), 1, + sym_type_parameters, + STATE(3593), 2, sym_line_comment, sym_block_comment, - [129014] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4978), 1, + ACTIONS(1943), 4, + anon_sym_LBRACE, anon_sym_COMMA, - STATE(3532), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3538), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1721), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [129037] = 5, + anon_sym_RPAREN, + anon_sym_RBRACK, + [130439] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6273), 1, + ACTIONS(6311), 1, anon_sym_RBRACE, - STATE(3539), 3, + STATE(3594), 3, sym_line_comment, sym_block_comment, aux_sym_selective_import_list_repeat1, - ACTIONS(6270), 4, + ACTIONS(6308), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_COMMA, - [129058] = 6, + [130460] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6275), 1, + ACTIONS(6315), 1, anon_sym_RBRACE, - STATE(3539), 1, + STATE(3607), 1, aux_sym_selective_import_list_repeat1, - STATE(3540), 2, + STATE(3595), 2, sym_line_comment, sym_block_comment, - ACTIONS(6256), 4, + ACTIONS(6313), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_COMMA, - [129081] = 5, + [130483] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2053), 1, - anon_sym_DOT, - STATE(3541), 2, + ACTIONS(6317), 1, + anon_sym_const, + ACTIONS(6319), 1, + anon_sym_fn, + ACTIONS(6323), 1, + anon_sym_enum, + ACTIONS(6325), 1, + anon_sym_interface, + ACTIONS(6321), 2, + anon_sym_struct, + anon_sym_union, + STATE(3596), 2, sym_line_comment, sym_block_comment, - ACTIONS(2157), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - [129102] = 6, + [130510] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6254), 1, - sym_identifier, - STATE(3719), 1, - sym_label_reference, - STATE(3542), 2, + ACTIONS(5004), 1, + anon_sym_COMMA, + STATE(3604), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3597), 2, sym_line_comment, sym_block_comment, - ACTIONS(4150), 4, + ACTIONS(4062), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [129125] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6277), 1, - anon_sym_LBRACK, - STATE(2409), 1, - sym_type_parameters, - STATE(3543), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1897), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [129148] = 5, + [130533] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6279), 1, - anon_sym_COMMA, - STATE(3544), 3, + ACTIONS(6116), 1, + anon_sym_LBRACE, + STATE(3713), 1, + sym_selective_import_list, + STATE(3598), 2, sym_line_comment, sym_block_comment, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(1759), 4, + ACTIONS(6327), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - [129169] = 9, + anon_sym_SEMI, + [130556] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6282), 1, - anon_sym_DOT, - ACTIONS(6284), 1, - 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, - STATE(3545), 2, + ACTIONS(5874), 1, + sym_identifier, + ACTIONS(6202), 1, + anon_sym_mut, + ACTIONS(6204), 1, + anon_sym_shared, + STATE(3922), 1, + sym_capture, + STATE(4333), 1, + sym_mutability_modifiers, + STATE(4359), 1, + sym_reference_expression, + STATE(3599), 2, sym_line_comment, sym_block_comment, - [129198] = 6, + [130585] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4978), 1, + ACTIONS(5004), 1, anon_sym_COMMA, - STATE(3544), 1, + STATE(3601), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3546), 2, + STATE(3600), 2, sym_line_comment, sym_block_comment, - ACTIONS(4016), 4, + ACTIONS(1695), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [129221] = 6, + [130608] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6057), 1, - anon_sym_LBRACE, - STATE(3631), 1, - sym_selective_import_list, - STATE(3547), 2, + ACTIONS(5004), 1, + anon_sym_COMMA, + STATE(3604), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3601), 2, sym_line_comment, sym_block_comment, - ACTIONS(6294), 4, + ACTIONS(4055), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - [129244] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6296), 1, - anon_sym_LBRACE, - ACTIONS(6298), 1, - anon_sym_COMMA, - ACTIONS(6300), 1, - anon_sym_RBRACK, - STATE(2302), 1, - sym_type_initializer_body, - STATE(3816), 1, - aux_sym_type_parameters_repeat1, - STATE(3548), 2, - sym_line_comment, - sym_block_comment, - [129270] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6192), 1, - anon_sym_mut, - ACTIONS(6194), 1, - anon_sym_shared, - ACTIONS(6302), 1, - sym_identifier, - STATE(4224), 1, - sym_mutable_identifier, - STATE(4401), 1, - sym_mutability_modifiers, - STATE(3549), 2, - sym_line_comment, - sym_block_comment, - [129296] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6304), 1, - sym_identifier, - ACTIONS(6306), 1, - anon_sym_mut, - STATE(3917), 1, - sym_var_definition, - STATE(4128), 1, - sym_range_clause, - STATE(4542), 1, - sym_var_definition_list, - STATE(3550), 2, - sym_line_comment, - sym_block_comment, - [129322] = 5, + anon_sym_RBRACE, + [130631] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, - aux_sym_interpreted_string_literal_token2, - STATE(3551), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6308), 4, - sym_escape_sequence, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - anon_sym_DOLLAR_LBRACE, - [129342] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2302), 1, - sym_type_initializer_body, - STATE(3552), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2207), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [129362] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6296), 1, - anon_sym_LBRACE, - STATE(2302), 1, - sym_type_initializer_body, - STATE(3553), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2211), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [129384] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6304), 1, + ACTIONS(6329), 1, sym_identifier, - ACTIONS(6306), 1, - anon_sym_mut, - STATE(3917), 1, - sym_var_definition, - STATE(4232), 1, - sym_range_clause, - STATE(4542), 1, - sym_var_definition_list, - STATE(3554), 2, - sym_line_comment, - sym_block_comment, - [129410] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2302), 1, - sym_type_initializer_body, - STATE(3555), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2215), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [129430] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5054), 1, - anon_sym_LBRACE, - STATE(2393), 1, - sym_block, - STATE(3556), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2219), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [129452] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6314), 1, - anon_sym_RBRACE, - STATE(3584), 1, - aux_sym__statement_list_repeat1, - STATE(3557), 2, + STATE(3767), 1, + sym_label_reference, + STATE(3602), 2, sym_line_comment, sym_block_comment, - ACTIONS(6312), 3, + ACTIONS(4114), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - [129474] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6318), 1, - aux_sym_interpreted_string_literal_token1, - STATE(3558), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6316), 4, - sym_escape_sequence, - anon_sym_SQUOTE, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LBRACE, - [129494] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5054), 1, - anon_sym_LBRACE, - STATE(2329), 1, - sym_block, - STATE(3559), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6320), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [129516] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(3560), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2053), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - [129534] = 8, + anon_sym_RBRACE, + [130654] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6296), 1, - anon_sym_LBRACE, - ACTIONS(6322), 1, - anon_sym_COMMA, - ACTIONS(6324), 1, - anon_sym_RPAREN, - STATE(2302), 1, - sym_type_initializer_body, - STATE(3898), 1, - aux_sym_type_parameters_repeat1, - STATE(3561), 2, + ACTIONS(6331), 1, + anon_sym_DOT, + ACTIONS(6333), 1, + anon_sym_RBRACE, + ACTIONS(6335), 1, + sym_int_literal, + ACTIONS(6337), 1, + aux_sym_format_specifier_token1, + ACTIONS(6339), 1, + aux_sym_format_specifier_token2, + ACTIONS(6341), 1, + anon_sym_0, + STATE(3603), 2, sym_line_comment, sym_block_comment, - [129560] = 4, + [130683] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3562), 2, + ACTIONS(6343), 1, + anon_sym_COMMA, + STATE(3604), 3, sym_line_comment, sym_block_comment, - ACTIONS(1759), 5, + aux_sym_strictly_expression_list_repeat1, + ACTIONS(1657), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_COMMA, anon_sym_RBRACE, - [129578] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6328), 1, - aux_sym_interpreted_string_literal_token2, - STATE(3563), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6326), 4, - sym_escape_sequence, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - anon_sym_DOLLAR_LBRACE, - [129598] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6332), 1, - aux_sym_interpreted_string_literal_token2, - STATE(3564), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6330), 4, - sym_escape_sequence, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - anon_sym_DOLLAR_LBRACE, - [129618] = 5, - ACTIONS(497), 1, + [130704] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6336), 1, - aux_sym_interpreted_string_literal_token2, - STATE(3565), 2, + ACTIONS(1885), 1, + anon_sym_DOT, + STATE(3605), 2, sym_line_comment, sym_block_comment, - ACTIONS(6334), 4, - sym_escape_sequence, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - anon_sym_DOLLAR_LBRACE, - [129638] = 4, + ACTIONS(2093), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + [130725] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3566), 2, + ACTIONS(6329), 1, + sym_identifier, + STATE(3765), 1, + sym_label_reference, + STATE(3606), 2, sym_line_comment, sym_block_comment, - ACTIONS(6338), 5, + ACTIONS(4138), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - sym_identifier, - [129656] = 4, + [130748] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3567), 2, + ACTIONS(6346), 1, + anon_sym_RBRACE, + STATE(3594), 1, + aux_sym_selective_import_list_repeat1, + STATE(3607), 2, sym_line_comment, sym_block_comment, - ACTIONS(6273), 5, + ACTIONS(6313), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_COMMA, - anon_sym_RBRACE, - [129674] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6328), 1, - aux_sym_interpreted_string_literal_token1, - STATE(3568), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6326), 4, - sym_escape_sequence, - anon_sym_SQUOTE, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LBRACE, - [129694] = 5, + [130771] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5885), 1, + ACTIONS(5986), 1, anon_sym_RBRACE, - STATE(3569), 2, + STATE(3608), 2, sym_line_comment, sym_block_comment, - ACTIONS(6340), 4, + ACTIONS(6348), 4, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [129714] = 4, + [130791] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6350), 1, + anon_sym_LBRACE, + STATE(2391), 1, + sym_type_initializer_body, + STATE(3609), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3056), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [130813] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3610), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6352), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + sym_identifier, + [130831] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3570), 2, + STATE(3611), 2, sym_line_comment, sym_block_comment, - ACTIONS(6342), 5, + ACTIONS(6354), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, sym_identifier, - [129732] = 7, + [130849] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6344), 1, - anon_sym_LBRACE, - STATE(1560), 1, - sym__interface_body, - STATE(4281), 1, - sym_generic_parameters, - ACTIONS(4922), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(3571), 2, + STATE(3612), 2, sym_line_comment, sym_block_comment, - [129756] = 7, + ACTIONS(1885), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_PIPE, + [130867] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6346), 1, - anon_sym_LBRACE, - STATE(1562), 1, - sym__struct_body, - STATE(4277), 1, - sym_generic_parameters, - ACTIONS(4922), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(3572), 2, + ACTIONS(6356), 1, + sym_identifier, + ACTIONS(6358), 1, + anon_sym_mut, + STATE(3873), 1, + sym_var_definition, + STATE(4230), 1, + sym_range_clause, + STATE(4564), 1, + sym_var_definition_list, + STATE(3613), 2, sym_line_comment, sym_block_comment, - [129780] = 7, + [130893] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6344), 1, + ACTIONS(6360), 1, anon_sym_LBRACE, - STATE(1509), 1, + STATE(1613), 1, sym__interface_body, - STATE(4177), 1, + STATE(4284), 1, sym_generic_parameters, - ACTIONS(4922), 2, + ACTIONS(4948), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(3573), 2, - sym_line_comment, - sym_block_comment, - [129804] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5926), 1, - anon_sym_RBRACE, - STATE(3574), 2, + STATE(3614), 2, sym_line_comment, sym_block_comment, - ACTIONS(6348), 4, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [129824] = 6, + [130917] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5066), 1, + ACTIONS(5078), 1, anon_sym_LBRACE, - STATE(1335), 1, + STATE(2353), 1, sym_block, - STATE(3575), 2, + STATE(3615), 2, sym_line_comment, sym_block_comment, - ACTIONS(6320), 3, + ACTIONS(6362), 3, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, - [129846] = 7, + [130939] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6344), 1, + ACTIONS(6364), 1, anon_sym_LBRACE, - STATE(1568), 1, - sym__interface_body, - STATE(4172), 1, + STATE(1612), 1, + sym__struct_body, + STATE(4320), 1, sym_generic_parameters, - ACTIONS(4922), 2, + ACTIONS(4948), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(3576), 2, + STATE(3616), 2, sym_line_comment, sym_block_comment, - [129870] = 7, + [130963] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6346), 1, - anon_sym_LBRACE, - STATE(1492), 1, - sym__struct_body, - STATE(4036), 1, - sym_generic_parameters, - ACTIONS(4922), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(3577), 2, + ACTIONS(5933), 1, + anon_sym_RBRACE, + STATE(3617), 2, sym_line_comment, sym_block_comment, - [129894] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6192), 1, + ACTIONS(6366), 4, + anon_sym___global, + anon_sym_pub, anon_sym_mut, - ACTIONS(6194), 1, - anon_sym_shared, - ACTIONS(6350), 1, sym_identifier, - STATE(4184), 1, - sym_parameter_declaration, - STATE(4439), 1, - sym_mutability_modifiers, - STATE(3578), 2, - sym_line_comment, - sym_block_comment, - [129920] = 5, + [130983] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6355), 1, + ACTIONS(6370), 1, anon_sym_RBRACE, - ACTIONS(6352), 3, + STATE(3646), 1, + aux_sym__statement_list_repeat1, + STATE(3618), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6368), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - STATE(3579), 3, - sym_line_comment, - sym_block_comment, - aux_sym__statement_list_repeat1, - [129940] = 5, + [131005] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6336), 1, + ACTIONS(6374), 1, aux_sym_interpreted_string_literal_token1, - STATE(3580), 2, + STATE(3619), 2, sym_line_comment, sym_block_comment, - ACTIONS(6334), 4, + ACTIONS(6372), 4, sym_escape_sequence, anon_sym_SQUOTE, anon_sym_DOLLAR, anon_sym_DOLLAR_LBRACE, - [129960] = 4, - ACTIONS(497), 1, + [131025] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3581), 2, + ACTIONS(6350), 1, + anon_sym_LBRACE, + ACTIONS(6376), 1, + anon_sym_COMMA, + ACTIONS(6378), 1, + anon_sym_RPAREN, + STATE(2391), 1, + sym_type_initializer_body, + STATE(3908), 1, + aux_sym_type_parameters_repeat1, + STATE(3620), 2, sym_line_comment, sym_block_comment, - ACTIONS(6357), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_LBRACE, - [129978] = 7, + [131051] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6344), 1, - anon_sym_LBRACE, - STATE(1502), 1, - sym__interface_body, - STATE(4042), 1, - sym_generic_parameters, - ACTIONS(4922), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(3582), 2, + ACTIONS(6202), 1, + anon_sym_mut, + ACTIONS(6204), 1, + anon_sym_shared, + ACTIONS(6380), 1, + sym_identifier, + STATE(4099), 1, + sym_mutable_identifier, + STATE(4673), 1, + sym_mutability_modifiers, + STATE(3621), 2, sym_line_comment, sym_block_comment, - [130002] = 5, + [131077] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6359), 2, + ACTIONS(6382), 2, anon_sym_RBRACE, sym_identifier, - STATE(3583), 2, + STATE(3622), 2, sym_line_comment, sym_block_comment, - ACTIONS(6361), 3, + ACTIONS(6384), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - [130022] = 6, - ACTIONS(497), 1, + [131097] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6365), 1, - anon_sym_RBRACE, - STATE(3579), 1, - aux_sym__statement_list_repeat1, - STATE(3584), 2, + ACTIONS(6202), 1, + anon_sym_mut, + ACTIONS(6204), 1, + anon_sym_shared, + ACTIONS(6386), 1, + sym_identifier, + STATE(4305), 1, + sym_parameter_declaration, + STATE(4511), 1, + sym_mutability_modifiers, + STATE(3623), 2, sym_line_comment, sym_block_comment, - ACTIONS(6363), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - [130044] = 5, + [131123] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, + ACTIONS(6390), 1, aux_sym_interpreted_string_literal_token1, - STATE(3585), 2, + STATE(3624), 2, sym_line_comment, sym_block_comment, - ACTIONS(6330), 4, + ACTIONS(6388), 4, sym_escape_sequence, anon_sym_SQUOTE, anon_sym_DOLLAR, anon_sym_DOLLAR_LBRACE, - [130064] = 7, + [131143] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6346), 1, + ACTIONS(6364), 1, anon_sym_LBRACE, - STATE(1536), 1, + STATE(1570), 1, sym__struct_body, - STATE(4169), 1, + STATE(4365), 1, sym_generic_parameters, - ACTIONS(4922), 2, + ACTIONS(4948), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(3586), 2, + STATE(3625), 2, sym_line_comment, sym_block_comment, - [130088] = 7, + [131167] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6346), 1, - anon_sym_LBRACE, - STATE(1527), 1, - sym__struct_body, - STATE(4175), 1, - sym_generic_parameters, - ACTIONS(4922), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(3587), 2, + ACTIONS(6356), 1, + sym_identifier, + ACTIONS(6358), 1, + anon_sym_mut, + STATE(3873), 1, + sym_var_definition, + STATE(4147), 1, + sym_range_clause, + STATE(4564), 1, + sym_var_definition_list, + STATE(3626), 2, sym_line_comment, sym_block_comment, - [130112] = 6, + [131193] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5064), 1, + ACTIONS(6360), 1, anon_sym_LBRACE, - ACTIONS(6367), 1, - anon_sym_DOLLARif, - STATE(2153), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3588), 2, + STATE(1558), 1, + sym__interface_body, + STATE(4360), 1, + sym_generic_parameters, + ACTIONS(4948), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(3627), 2, sym_line_comment, sym_block_comment, - [130133] = 6, - ACTIONS(3), 1, + [131217] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5064), 1, - anon_sym_LBRACE, - ACTIONS(6367), 1, - anon_sym_DOLLARif, - STATE(2207), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3589), 2, + ACTIONS(6395), 1, + anon_sym_RBRACE, + ACTIONS(6392), 3, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + STATE(3628), 3, sym_line_comment, sym_block_comment, - [130154] = 4, + aux_sym__statement_list_repeat1, + [131237] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3590), 2, + ACTIONS(6374), 1, + aux_sym_interpreted_string_literal_token2, + STATE(3629), 2, sym_line_comment, sym_block_comment, - ACTIONS(6294), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [130171] = 6, + ACTIONS(6372), 4, + sym_escape_sequence, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_DOLLAR_LBRACE, + [131257] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6369), 1, - anon_sym_LPAREN, - STATE(1639), 1, - sym_signature, - STATE(1104), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3591), 2, + ACTIONS(5086), 1, + anon_sym_LBRACE, + STATE(1338), 1, + sym_block, + STATE(3630), 2, sym_line_comment, sym_block_comment, - [130192] = 6, - ACTIONS(3), 1, + ACTIONS(6362), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + [131279] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6371), 1, - anon_sym_EQ, - STATE(4629), 1, - sym_generic_parameters, - ACTIONS(4922), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(3592), 2, + STATE(3631), 2, sym_line_comment, sym_block_comment, - [130213] = 5, + ACTIONS(6311), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + [131297] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6376), 1, - anon_sym_STAR_SLASH, - ACTIONS(6373), 2, - aux_sym_block_comment_token1, - aux_sym_block_comment_token2, - STATE(3593), 3, + ACTIONS(6399), 1, + aux_sym_interpreted_string_literal_token1, + STATE(3632), 2, sym_line_comment, sym_block_comment, - aux_sym_block_comment_repeat1, - [130232] = 6, + ACTIONS(6397), 4, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LBRACE, + [131317] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6380), 1, - anon_sym_STAR_SLASH, - STATE(3593), 1, - aux_sym_block_comment_repeat1, - ACTIONS(6378), 2, - aux_sym_block_comment_token1, - aux_sym_block_comment_token2, - STATE(3594), 2, + ACTIONS(6403), 1, + aux_sym_interpreted_string_literal_token2, + STATE(3633), 2, sym_line_comment, sym_block_comment, - [130253] = 4, + ACTIONS(6401), 4, + sym_escape_sequence, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_DOLLAR_LBRACE, + [131337] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3595), 2, + STATE(3634), 2, sym_line_comment, sym_block_comment, - ACTIONS(4259), 4, + ACTIONS(6405), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [130270] = 6, - ACTIONS(3), 1, + anon_sym_LBRACE, + [131355] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, - anon_sym_LBRACE, - ACTIONS(6382), 1, - anon_sym_DOLLARif, - STATE(2685), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3596), 2, + ACTIONS(6390), 1, + aux_sym_interpreted_string_literal_token2, + STATE(3635), 2, sym_line_comment, sym_block_comment, - [130291] = 6, + ACTIONS(6388), 4, + sym_escape_sequence, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_DOLLAR_LBRACE, + [131375] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5066), 1, + ACTIONS(6360), 1, anon_sym_LBRACE, - ACTIONS(6384), 1, - anon_sym_DOLLARif, - STATE(1338), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3597), 2, + STATE(1563), 1, + sym__interface_body, + STATE(4273), 1, + sym_generic_parameters, + ACTIONS(4948), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(3636), 2, sym_line_comment, sym_block_comment, - [130312] = 6, + [131399] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6386), 1, - anon_sym_LPAREN, - STATE(2014), 1, - sym_signature, - STATE(1167), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3598), 2, + STATE(2391), 1, + sym_type_initializer_body, + STATE(3637), 2, sym_line_comment, sym_block_comment, - [130333] = 6, + ACTIONS(3068), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [131419] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5066), 1, + ACTIONS(6350), 1, anon_sym_LBRACE, - ACTIONS(6384), 1, - anon_sym_DOLLARif, - STATE(1297), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3599), 2, + ACTIONS(6407), 1, + anon_sym_COMMA, + ACTIONS(6409), 1, + anon_sym_RBRACK, + STATE(2391), 1, + sym_type_initializer_body, + STATE(4052), 1, + aux_sym_type_parameters_repeat1, + STATE(3638), 2, sym_line_comment, sym_block_comment, - [130354] = 6, + [131445] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, + ACTIONS(6364), 1, anon_sym_LBRACE, - ACTIONS(6382), 1, - anon_sym_DOLLARif, - STATE(2680), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3600), 2, + STATE(1559), 1, + sym__struct_body, + STATE(4259), 1, + sym_generic_parameters, + ACTIONS(4948), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(3639), 2, sym_line_comment, sym_block_comment, - [130375] = 7, + [131469] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, + ACTIONS(6360), 1, anon_sym_LBRACE, - ACTIONS(6388), 1, - anon_sym_if, - STATE(2678), 1, - sym_if_expression, - STATE(2679), 1, - sym_block, - STATE(3601), 2, + STATE(1551), 1, + sym__interface_body, + STATE(4166), 1, + sym_generic_parameters, + ACTIONS(4948), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(3640), 2, + sym_line_comment, + sym_block_comment, + [131493] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3641), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1657), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + [131511] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6413), 1, + aux_sym_interpreted_string_literal_token1, + STATE(3642), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6411), 4, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LBRACE, + [131531] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6413), 1, + aux_sym_interpreted_string_literal_token2, + STATE(3643), 2, sym_line_comment, sym_block_comment, - [130398] = 7, + ACTIONS(6411), 4, + sym_escape_sequence, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_DOLLAR_LBRACE, + [131551] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5066), 1, + ACTIONS(5078), 1, anon_sym_LBRACE, - ACTIONS(6390), 1, - anon_sym_if, - STATE(1293), 1, - sym_if_expression, - STATE(1300), 1, + STATE(2337), 1, sym_block, - STATE(3602), 2, + STATE(3644), 2, sym_line_comment, sym_block_comment, - [130421] = 7, + ACTIONS(3036), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [131573] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5004), 1, + STATE(2391), 1, + sym_type_initializer_body, + STATE(3645), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3040), 4, anon_sym_LBRACE, - ACTIONS(6392), 1, - anon_sym_if, - STATE(1220), 1, - sym_block, - STATE(1221), 1, - sym_if_expression, - STATE(3603), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [131593] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6417), 1, + anon_sym_RBRACE, + STATE(3628), 1, + aux_sym__statement_list_repeat1, + STATE(3646), 2, sym_line_comment, sym_block_comment, - [130444] = 6, + ACTIONS(6415), 3, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + [131615] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5004), 1, + ACTIONS(6364), 1, anon_sym_LBRACE, - ACTIONS(6394), 1, - anon_sym_DOLLARif, - STATE(1216), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3604), 2, + STATE(1549), 1, + sym__struct_body, + STATE(4163), 1, + sym_generic_parameters, + ACTIONS(4948), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(3647), 2, sym_line_comment, sym_block_comment, - [130465] = 6, + [131639] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6396), 1, + ACTIONS(6150), 1, anon_sym_LPAREN, - STATE(2299), 1, + STATE(1480), 1, sym_signature, - STATE(1401), 2, + STATE(1104), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3605), 2, + STATE(3648), 2, sym_line_comment, sym_block_comment, - [130486] = 4, + [131660] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3606), 2, + STATE(3649), 2, sym_line_comment, sym_block_comment, - ACTIONS(6398), 4, + ACTIONS(4204), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - [130503] = 7, + anon_sym_RBRACE, + [131677] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5036), 1, - anon_sym_LBRACE, - ACTIONS(6400), 1, - anon_sym_if, - STATE(2031), 1, - sym_block, - STATE(2040), 1, - sym_if_expression, - STATE(3607), 2, + ACTIONS(6419), 1, + sym_identifier, + ACTIONS(6421), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1372), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3650), 2, sym_line_comment, sym_block_comment, - [130526] = 7, + [131698] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6402), 1, - sym_identifier, - ACTIONS(6404), 1, - anon_sym_RPAREN, - STATE(3673), 1, - aux_sym_const_declaration_repeat1, - STATE(3700), 1, - sym_const_definition, - STATE(3608), 2, + ACTIONS(6083), 1, + anon_sym_LPAREN, + STATE(4137), 1, + sym_signature, + STATE(2878), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3651), 2, sym_line_comment, sym_block_comment, - [130549] = 6, + [131719] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6406), 1, - anon_sym_EQ, - STATE(4478), 1, - sym_generic_parameters, - ACTIONS(4922), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(3609), 2, + ACTIONS(6083), 1, + anon_sym_LPAREN, + STATE(4076), 1, + sym_signature, + STATE(2878), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3652), 2, sym_line_comment, sym_block_comment, - [130570] = 7, + [131740] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6192), 1, - anon_sym_mut, - ACTIONS(6194), 1, - anon_sym_shared, - ACTIONS(6408), 1, - sym_identifier, - STATE(4477), 1, - sym_mutability_modifiers, - STATE(3610), 2, + ACTIONS(6083), 1, + anon_sym_LPAREN, + STATE(4373), 1, + sym_signature, + STATE(2878), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3653), 2, sym_line_comment, sym_block_comment, - [130593] = 6, + [131761] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5036), 1, + ACTIONS(5090), 1, anon_sym_LBRACE, - ACTIONS(6410), 1, - anon_sym_DOLLARif, - STATE(2030), 2, - sym_compile_time_if_expression, + ACTIONS(6423), 1, + anon_sym_if, + STATE(1249), 1, + sym_if_expression, + STATE(1255), 1, sym_block, - STATE(3611), 2, + STATE(3654), 2, sym_line_comment, sym_block_comment, - [130614] = 6, + [131784] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5004), 1, + ACTIONS(5090), 1, anon_sym_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6425), 1, anon_sym_DOLLARif, - STATE(1195), 2, + STATE(1250), 2, sym_compile_time_if_expression, sym_block, - STATE(3612), 2, + STATE(3655), 2, sym_line_comment, sym_block_comment, - [130635] = 7, + [131805] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6412), 1, - anon_sym_as, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(1573), 1, - sym__enum_body, - STATE(4171), 1, - sym_enum_backed_type, - STATE(3613), 2, + ACTIONS(6083), 1, + anon_sym_LPAREN, + STATE(4382), 1, + sym_signature, + STATE(2878), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3656), 2, sym_line_comment, sym_block_comment, - [130658] = 6, + [131826] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6416), 1, - sym_identifier, - ACTIONS(6418), 1, - anon_sym_DOLLAR_LPAREN, - STATE(1857), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - STATE(3614), 2, + ACTIONS(6427), 1, + anon_sym_LPAREN, + STATE(494), 1, + sym_signature, + STATE(70), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3657), 2, + sym_line_comment, + sym_block_comment, + [131847] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6432), 1, + anon_sym_STAR_SLASH, + ACTIONS(6429), 2, + aux_sym_block_comment_token1, + aux_sym_block_comment_token2, + STATE(3658), 3, + sym_line_comment, + sym_block_comment, + aux_sym_block_comment_repeat1, + [131866] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6083), 1, + anon_sym_LPAREN, + STATE(4144), 1, + sym_signature, + STATE(2878), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3659), 2, sym_line_comment, sym_block_comment, - [130679] = 6, + [131887] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5036), 1, + ACTIONS(5090), 1, anon_sym_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6425), 1, anon_sym_DOLLARif, - STATE(2013), 2, + STATE(1212), 2, sym_compile_time_if_expression, sym_block, - STATE(3615), 2, + STATE(3660), 2, + sym_line_comment, + sym_block_comment, + [131908] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3661), 2, sym_line_comment, sym_block_comment, - [130700] = 7, + ACTIONS(6327), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [131925] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6402), 1, + ACTIONS(6434), 1, sym_identifier, - ACTIONS(6420), 1, - anon_sym_RPAREN, - STATE(3700), 1, - sym_const_definition, - STATE(3733), 1, - aux_sym_const_declaration_repeat1, - STATE(3616), 2, + ACTIONS(6436), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1878), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3662), 2, sym_line_comment, sym_block_comment, - [130723] = 6, + [131946] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6422), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(1802), 1, + STATE(4078), 1, sym_signature, - STATE(1123), 2, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3617), 2, + STATE(3663), 2, + sym_line_comment, + sym_block_comment, + [131967] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3664), 2, sym_line_comment, sym_block_comment, - [130744] = 6, + ACTIONS(6438), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [131984] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6424), 1, - sym_identifier, - ACTIONS(6426), 1, - anon_sym_DOLLAR_LPAREN, - STATE(2106), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - STATE(3618), 2, + ACTIONS(6083), 1, + anon_sym_LPAREN, + STATE(4172), 1, + sym_signature, + STATE(2878), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3665), 2, sym_line_comment, sym_block_comment, - [130765] = 7, + [132005] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6428), 1, + ACTIONS(6440), 1, sym_identifier, - ACTIONS(6430), 1, + ACTIONS(6442), 1, anon_sym_RPAREN, - STATE(3642), 1, - sym_global_var_definition, - STATE(3676), 1, - aux_sym_global_var_declaration_repeat1, - STATE(3619), 2, + STATE(3664), 1, + sym_const_definition, + STATE(3727), 1, + aux_sym_const_declaration_repeat1, + STATE(3666), 2, sym_line_comment, sym_block_comment, - [130788] = 6, + [132028] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(6432), 1, - anon_sym_DOLLARif, - STATE(2463), 2, - sym_compile_time_if_expression, + ACTIONS(6444), 1, + anon_sym_if, + STATE(1845), 1, sym_block, - STATE(3620), 2, + STATE(1846), 1, + sym_if_expression, + STATE(3667), 2, sym_line_comment, sym_block_comment, - [130809] = 6, + [132051] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6434), 1, + ACTIONS(6446), 1, anon_sym_LPAREN, - STATE(2229), 1, + STATE(3399), 1, sym_signature, - STATE(1397), 2, + STATE(2474), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3621), 2, + STATE(3668), 2, sym_line_comment, sym_block_comment, - [130830] = 6, + [132072] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6436), 1, + ACTIONS(6440), 1, sym_identifier, - ACTIONS(6438), 1, - anon_sym_DOLLAR_LPAREN, - STATE(992), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - STATE(3622), 2, + ACTIONS(6448), 1, + anon_sym_RPAREN, + STATE(3664), 1, + sym_const_definition, + STATE(3727), 1, + aux_sym_const_declaration_repeat1, + STATE(3669), 2, sym_line_comment, sym_block_comment, - [130851] = 7, + [132095] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6412), 1, - anon_sym_as, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(1524), 1, - sym__enum_body, - STATE(4176), 1, - sym_enum_backed_type, - STATE(3623), 2, + ACTIONS(6083), 1, + anon_sym_LPAREN, + STATE(4255), 1, + sym_signature, + STATE(2878), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3670), 2, sym_line_comment, sym_block_comment, - [130874] = 6, + [132116] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5054), 1, - anon_sym_LBRACE, - ACTIONS(6440), 1, - anon_sym_DOLLARif, - STATE(2325), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3624), 2, + ACTIONS(6150), 1, + anon_sym_LPAREN, + STATE(1467), 1, + sym_signature, + STATE(1104), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3671), 2, + sym_line_comment, + sym_block_comment, + [132137] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3672), 2, sym_line_comment, sym_block_comment, - [130895] = 6, + ACTIONS(6450), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [132154] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6442), 1, + ACTIONS(6150), 1, anon_sym_LPAREN, - STATE(1210), 1, + STATE(1482), 1, sym_signature, - STATE(951), 2, + STATE(1104), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3625), 2, + STATE(3673), 2, sym_line_comment, sym_block_comment, - [130916] = 6, + [132175] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, - anon_sym_LBRACE, - ACTIONS(6432), 1, - anon_sym_DOLLARif, - STATE(2470), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3626), 2, + ACTIONS(6452), 1, + sym_identifier, + ACTIONS(6454), 1, + anon_sym_RPAREN, + STATE(3672), 1, + sym_global_var_definition, + STATE(3729), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3674), 2, sym_line_comment, sym_block_comment, - [130937] = 7, + [132198] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, - anon_sym_LBRACE, - ACTIONS(6444), 1, - anon_sym_if, - STATE(2471), 1, - sym_block, - STATE(2472), 1, - sym_if_expression, - STATE(3627), 2, + ACTIONS(6083), 1, + anon_sym_LPAREN, + STATE(4276), 1, + sym_signature, + STATE(2878), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3675), 2, sym_line_comment, sym_block_comment, - [130960] = 6, + [132219] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6446), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(2717), 1, + STATE(4141), 1, sym_signature, - STATE(1579), 2, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3628), 2, + STATE(3676), 2, sym_line_comment, sym_block_comment, - [130981] = 6, + [132240] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5054), 1, + ACTIONS(5078), 1, anon_sym_LBRACE, - ACTIONS(6440), 1, - anon_sym_DOLLARif, - STATE(2339), 2, - sym_compile_time_if_expression, + ACTIONS(6456), 1, + anon_sym_if, + STATE(2411), 1, + sym_if_expression, + STATE(2412), 1, sym_block, - STATE(3629), 2, + STATE(3677), 2, sym_line_comment, sym_block_comment, - [131002] = 7, + [132263] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5054), 1, - anon_sym_LBRACE, - ACTIONS(6448), 1, - anon_sym_if, - STATE(2340), 1, - sym_block, - STATE(2341), 1, - sym_if_expression, - STATE(3630), 2, + ACTIONS(6458), 1, + anon_sym_COMMA, + STATE(3735), 1, + aux_sym_generic_parameters_repeat1, + ACTIONS(6460), 2, + anon_sym_GT, + anon_sym_RBRACK, + STATE(3678), 2, sym_line_comment, sym_block_comment, - [131025] = 4, - ACTIONS(497), 1, + [132284] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3631), 2, + ACTIONS(6083), 1, + anon_sym_LPAREN, + STATE(4143), 1, + sym_signature, + STATE(2878), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3679), 2, sym_line_comment, sym_block_comment, - ACTIONS(6450), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [131042] = 7, + [132305] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5046), 1, + ACTIONS(5078), 1, anon_sym_LBRACE, - ACTIONS(6452), 1, - anon_sym_if, - STATE(1021), 1, + ACTIONS(6462), 1, + anon_sym_DOLLARif, + STATE(2403), 2, + sym_compile_time_if_expression, sym_block, - STATE(1026), 1, - sym_if_expression, - STATE(3632), 2, - sym_line_comment, - sym_block_comment, - [131065] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - STATE(3633), 2, + STATE(3680), 2, sym_line_comment, sym_block_comment, - ACTIONS(6355), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [131082] = 6, + [132326] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(2299), 1, + STATE(4242), 1, sym_signature, - STATE(2870), 2, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3634), 2, - sym_line_comment, - sym_block_comment, - [131103] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6454), 1, - sym_identifier, - ACTIONS(6457), 1, - anon_sym_RPAREN, - STATE(3700), 1, - sym_const_definition, - STATE(3635), 3, + STATE(3681), 2, sym_line_comment, sym_block_comment, - aux_sym_const_declaration_repeat1, - [131124] = 6, + [132347] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5046), 1, + ACTIONS(5078), 1, anon_sym_LBRACE, - ACTIONS(6459), 1, + ACTIONS(6462), 1, anon_sym_DOLLARif, - STATE(1016), 2, + STATE(2395), 2, sym_compile_time_if_expression, sym_block, - STATE(3636), 2, + STATE(3682), 2, sym_line_comment, sym_block_comment, - [131145] = 5, + [132368] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6461), 1, - anon_sym_COMMA, - ACTIONS(6464), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(3637), 3, + ACTIONS(6150), 1, + anon_sym_LPAREN, + STATE(1485), 1, + sym_signature, + STATE(1104), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3683), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameters_repeat1, - [131164] = 7, + [132389] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6402), 1, - sym_identifier, - ACTIONS(6404), 1, - anon_sym_RPAREN, - STATE(3635), 1, - aux_sym_const_declaration_repeat1, - STATE(3700), 1, - sym_const_definition, - STATE(3638), 2, + ACTIONS(6083), 1, + anon_sym_LPAREN, + STATE(4191), 1, + sym_signature, + STATE(2878), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3684), 2, sym_line_comment, sym_block_comment, - [131187] = 6, + [132410] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6466), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(1014), 1, + STATE(4301), 1, sym_signature, - STATE(183), 2, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3639), 2, + STATE(3685), 2, sym_line_comment, sym_block_comment, - [131208] = 6, + [132431] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6468), 1, + ACTIONS(6464), 1, sym_identifier, - ACTIONS(6471), 1, - anon_sym_RPAREN, - STATE(3642), 1, - sym_global_var_definition, - STATE(3640), 3, + ACTIONS(6466), 1, + anon_sym_DOLLAR_LPAREN, + STATE(995), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3686), 2, sym_line_comment, sym_block_comment, - aux_sym_global_var_declaration_repeat1, - [131229] = 6, + [132452] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6473), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(339), 1, + STATE(4203), 1, sym_signature, - STATE(68), 2, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3641), 2, + STATE(3687), 2, sym_line_comment, sym_block_comment, - [131250] = 4, - ACTIONS(497), 1, + [132473] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3642), 2, + ACTIONS(6083), 1, + anon_sym_LPAREN, + STATE(4162), 1, + sym_signature, + STATE(2878), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3688), 2, sym_line_comment, sym_block_comment, - ACTIONS(6475), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [131267] = 6, + [132494] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6477), 1, - sym_identifier, - STATE(3794), 1, - sym_generic_parameter, - ACTIONS(6479), 2, - anon_sym_GT, - anon_sym_RBRACK, - STATE(3643), 2, + ACTIONS(6468), 1, + anon_sym_LPAREN, + STATE(1689), 1, + sym_signature, + STATE(1110), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3689), 2, sym_line_comment, sym_block_comment, - [131288] = 6, + [132515] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, - STATE(4029), 1, + STATE(1367), 1, sym_signature, - STATE(2870), 2, + STATE(984), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3644), 2, + STATE(3690), 2, sym_line_comment, sym_block_comment, - [131309] = 6, + [132536] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6481), 1, - anon_sym_COMMA, - STATE(3703), 1, - aux_sym_generic_parameters_repeat1, - ACTIONS(6479), 2, - anon_sym_GT, - anon_sym_RBRACK, - STATE(3645), 2, + ACTIONS(6083), 1, + anon_sym_LPAREN, + STATE(4194), 1, + sym_signature, + STATE(2878), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3691), 2, sym_line_comment, sym_block_comment, - [131330] = 7, + [132557] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6428), 1, + ACTIONS(6472), 1, sym_identifier, - ACTIONS(6483), 1, - anon_sym_RPAREN, - STATE(3640), 1, - aux_sym_global_var_declaration_repeat1, - STATE(3642), 1, - sym_global_var_definition, - STATE(3646), 2, + ACTIONS(6474), 1, + anon_sym_RBRACE, + STATE(3622), 1, + sym_enum_field_definition, + STATE(3740), 1, + aux_sym__enum_body_repeat1, + STATE(3692), 2, sym_line_comment, sym_block_comment, - [131353] = 6, + [132580] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5046), 1, - anon_sym_LBRACE, - ACTIONS(6459), 1, - anon_sym_DOLLARif, - STATE(1010), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3647), 2, + ACTIONS(6083), 1, + anon_sym_LPAREN, + STATE(4316), 1, + sym_signature, + STATE(2878), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3693), 2, sym_line_comment, sym_block_comment, - [131374] = 7, + [132601] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6412), 1, - anon_sym_as, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(1495), 1, - sym__enum_body, - STATE(4040), 1, - sym_enum_backed_type, - STATE(3648), 2, + ACTIONS(6476), 1, + sym_identifier, + ACTIONS(6478), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2384), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3694), 2, sym_line_comment, sym_block_comment, - [131397] = 6, + [132622] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(4222), 1, + STATE(4342), 1, sym_signature, - STATE(2870), 2, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3649), 2, + STATE(3695), 2, sym_line_comment, sym_block_comment, - [131418] = 6, + [132643] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6485), 1, - sym_identifier, - ACTIONS(6487), 1, - anon_sym_DOLLAR_LPAREN, - STATE(2043), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - STATE(3650), 2, + ACTIONS(6083), 1, + anon_sym_LPAREN, + STATE(4348), 1, + sym_signature, + STATE(2878), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3696), 2, sym_line_comment, sym_block_comment, - [131439] = 7, + [132664] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6489), 1, - sym_identifier, - ACTIONS(6491), 1, - anon_sym_RBRACE, - STATE(3583), 1, - sym_enum_field_definition, - STATE(3711), 1, - aux_sym__enum_body_repeat1, - STATE(3651), 2, + ACTIONS(6083), 1, + anon_sym_LPAREN, + STATE(4325), 1, + sym_signature, + STATE(2878), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3697), 2, sym_line_comment, sym_block_comment, - [131462] = 7, + [132685] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5064), 1, + ACTIONS(5086), 1, anon_sym_LBRACE, - ACTIONS(6493), 1, + ACTIONS(6480), 1, anon_sym_if, - STATE(2154), 1, + STATE(1382), 1, sym_block, - STATE(2155), 1, + STATE(1384), 1, sym_if_expression, - STATE(3652), 2, + STATE(3698), 2, sym_line_comment, sym_block_comment, - [131485] = 6, + [132708] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6495), 1, - sym_identifier, - ACTIONS(6497), 1, - anon_sym_DOLLAR_LPAREN, - STATE(2521), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - STATE(3653), 2, + ACTIONS(5086), 1, + anon_sym_LBRACE, + ACTIONS(6482), 1, + anon_sym_DOLLARif, + STATE(1380), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3699), 2, + sym_line_comment, + sym_block_comment, + [132729] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5086), 1, + anon_sym_LBRACE, + ACTIONS(6482), 1, + anon_sym_DOLLARif, + STATE(1374), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3700), 2, sym_line_comment, sym_block_comment, - [131506] = 6, + [132750] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6499), 1, + ACTIONS(6484), 1, sym_identifier, - ACTIONS(6501), 1, + ACTIONS(6486), 1, anon_sym_DOLLAR_LPAREN, - STATE(1384), 2, + STATE(1962), 2, sym_reference_expression, sym_compile_time_selector_expression, - STATE(3654), 2, + STATE(3701), 2, sym_line_comment, sym_block_comment, - [131527] = 6, + [132771] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6134), 1, - anon_sym_LPAREN, - STATE(1445), 1, - sym_signature, - STATE(1100), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3655), 2, + ACTIONS(6440), 1, + sym_identifier, + ACTIONS(6442), 1, + anon_sym_RPAREN, + STATE(3664), 1, + sym_const_definition, + STATE(3773), 1, + aux_sym_const_declaration_repeat1, + STATE(3702), 2, sym_line_comment, sym_block_comment, - [131548] = 7, + [132794] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, - anon_sym_LBRACE, - ACTIONS(6503), 1, - anon_sym_if, - STATE(444), 1, - sym_block, - STATE(445), 1, - sym_if_expression, - STATE(3656), 2, + ACTIONS(6488), 1, + anon_sym_EQ, + STATE(4684), 1, + sym_generic_parameters, + ACTIONS(4948), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(3703), 2, sym_line_comment, sym_block_comment, - [131571] = 6, + [132815] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, - anon_sym_LBRACE, - ACTIONS(6505), 1, - anon_sym_DOLLARif, - STATE(443), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3657), 2, + ACTIONS(6202), 1, + anon_sym_mut, + ACTIONS(6204), 1, + anon_sym_shared, + ACTIONS(6490), 1, + sym_identifier, + STATE(4678), 1, + sym_mutability_modifiers, + STATE(3704), 2, sym_line_comment, sym_block_comment, - [131592] = 6, + [132838] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, - anon_sym_LPAREN, - STATE(4201), 1, - sym_signature, - STATE(2870), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3658), 2, + ACTIONS(6492), 1, + anon_sym_as, + ACTIONS(6494), 1, + anon_sym_LBRACE, + STATE(1550), 1, + sym__enum_body, + STATE(4164), 1, + sym_enum_backed_type, + STATE(3705), 2, sym_line_comment, sym_block_comment, - [131613] = 7, + [132861] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6402), 1, + ACTIONS(6440), 1, sym_identifier, - ACTIONS(6507), 1, + ACTIONS(6496), 1, anon_sym_RPAREN, - STATE(3638), 1, - aux_sym_const_declaration_repeat1, - STATE(3700), 1, + STATE(3664), 1, sym_const_definition, - STATE(3659), 2, + STATE(3780), 1, + aux_sym_const_declaration_repeat1, + STATE(3706), 2, sym_line_comment, sym_block_comment, - [131636] = 6, + [132884] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4715), 1, - anon_sym_LBRACE, - ACTIONS(6509), 1, - anon_sym_DOLLARif, - STATE(1727), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3660), 2, + ACTIONS(6452), 1, + sym_identifier, + ACTIONS(6498), 1, + anon_sym_RPAREN, + STATE(3672), 1, + sym_global_var_definition, + STATE(3781), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3707), 2, sym_line_comment, sym_block_comment, - [131657] = 6, + [132907] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4715), 1, + ACTIONS(6492), 1, + anon_sym_as, + ACTIONS(6494), 1, anon_sym_LBRACE, - ACTIONS(6509), 1, - anon_sym_DOLLARif, - STATE(1734), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3661), 2, + STATE(1491), 1, + sym__enum_body, + STATE(4260), 1, + sym_enum_backed_type, + STATE(3708), 2, sym_line_comment, sym_block_comment, - [131678] = 7, - ACTIONS(3), 1, + [132930] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4715), 1, - anon_sym_LBRACE, - ACTIONS(6511), 1, - anon_sym_if, - STATE(1735), 1, - sym_block, - STATE(1737), 1, - sym_if_expression, - STATE(3662), 2, + ACTIONS(6502), 1, + anon_sym_STAR_SLASH, + STATE(3791), 1, + aux_sym_block_comment_repeat1, + ACTIONS(6500), 2, + aux_sym_block_comment_token1, + aux_sym_block_comment_token2, + STATE(3709), 2, sym_line_comment, sym_block_comment, - [131701] = 6, + [132951] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6513), 1, + ACTIONS(6504), 1, sym_identifier, - ACTIONS(6515), 1, + ACTIONS(6506), 1, anon_sym_DOLLAR_LPAREN, STATE(457), 2, sym_reference_expression, sym_compile_time_selector_expression, - STATE(3663), 2, + STATE(3710), 2, sym_line_comment, sym_block_comment, - [131722] = 6, + [132972] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, - anon_sym_LPAREN, - STATE(1639), 1, - sym_signature, - STATE(2837), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3664), 2, + ACTIONS(6508), 1, + sym_identifier, + ACTIONS(6510), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2111), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3711), 2, sym_line_comment, sym_block_comment, - [131743] = 6, + [132993] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6134), 1, - anon_sym_LPAREN, - STATE(1471), 1, - sym_signature, - STATE(1100), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3665), 2, + ACTIONS(4737), 1, + anon_sym_LBRACE, + ACTIONS(6512), 1, + anon_sym_DOLLARif, + STATE(1786), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3712), 2, sym_line_comment, sym_block_comment, - [131764] = 6, - ACTIONS(3), 1, + [133014] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, - anon_sym_LPAREN, - STATE(4141), 1, - sym_signature, - STATE(2870), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3666), 2, + STATE(3713), 2, sym_line_comment, sym_block_comment, - [131785] = 6, + ACTIONS(6514), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [133031] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(4117), 1, + STATE(4244), 1, sym_signature, - STATE(2870), 2, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3667), 2, + STATE(3714), 2, sym_line_comment, sym_block_comment, - [131806] = 6, + [133052] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6519), 1, - anon_sym_COMMA, - STATE(3645), 1, - aux_sym_generic_parameters_repeat1, - ACTIONS(6521), 2, - anon_sym_GT, - anon_sym_RBRACK, - STATE(3668), 2, + ACTIONS(4737), 1, + anon_sym_LBRACE, + ACTIONS(6516), 1, + anon_sym_if, + STATE(1782), 1, + sym_if_expression, + STATE(1785), 1, + sym_block, + STATE(3715), 2, + sym_line_comment, + sym_block_comment, + [133075] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3716), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4228), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [133092] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3717), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4224), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [133109] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3718), 2, sym_line_comment, sym_block_comment, - [131827] = 6, + ACTIONS(6395), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [133126] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6434), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(2543), 1, + STATE(2426), 1, sym_signature, - STATE(1463), 2, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3669), 2, + STATE(3719), 2, sym_line_comment, sym_block_comment, - [131848] = 7, + [133147] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6428), 1, - sym_identifier, - ACTIONS(6523), 1, - anon_sym_RPAREN, - STATE(3642), 1, - sym_global_var_definition, - STATE(3646), 1, - aux_sym_global_var_declaration_repeat1, - STATE(3670), 2, + ACTIONS(5096), 1, + anon_sym_LBRACE, + ACTIONS(6518), 1, + anon_sym_DOLLARif, + STATE(2496), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3720), 2, sym_line_comment, sym_block_comment, - [131871] = 6, + [133168] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6525), 1, + ACTIONS(6520), 1, anon_sym_LPAREN, - STATE(1316), 1, + STATE(2426), 1, sym_signature, - STATE(982), 2, + STATE(1406), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3671), 2, + STATE(3721), 2, sym_line_comment, sym_block_comment, - [131892] = 6, + [133189] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(4058), 1, + STATE(4161), 1, sym_signature, - STATE(2870), 2, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3672), 2, + STATE(3722), 2, sym_line_comment, sym_block_comment, - [131913] = 7, - ACTIONS(3), 1, + [133210] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6402), 1, - sym_identifier, - ACTIONS(6527), 1, - anon_sym_RPAREN, - STATE(3635), 1, - aux_sym_const_declaration_repeat1, - STATE(3700), 1, - sym_const_definition, - STATE(3673), 2, + STATE(3723), 2, sym_line_comment, sym_block_comment, - [131936] = 6, + ACTIONS(6522), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [133227] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6134), 1, - anon_sym_LPAREN, - STATE(1460), 1, - sym_signature, - STATE(1100), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3674), 2, + ACTIONS(6492), 1, + anon_sym_as, + ACTIONS(6494), 1, + anon_sym_LBRACE, + STATE(1560), 1, + sym__enum_body, + STATE(4362), 1, + sym_enum_backed_type, + STATE(3724), 2, sym_line_comment, sym_block_comment, - [131957] = 6, + [133250] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6529), 1, - anon_sym_STAR_SLASH, - STATE(3594), 1, - aux_sym_block_comment_repeat1, - ACTIONS(6378), 2, - aux_sym_block_comment_token1, - aux_sym_block_comment_token2, - STATE(3675), 2, + STATE(3725), 2, sym_line_comment, sym_block_comment, - [131978] = 7, + ACTIONS(4216), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [133267] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6428), 1, - sym_identifier, - ACTIONS(6531), 1, - anon_sym_RPAREN, - STATE(3640), 1, - aux_sym_global_var_declaration_repeat1, - STATE(3642), 1, - sym_global_var_definition, - STATE(3676), 2, + ACTIONS(6524), 1, + anon_sym_DOT, + ACTIONS(6526), 1, + anon_sym_RBRACE, + ACTIONS(6528), 1, + sym_int_literal, + ACTIONS(6530), 1, + aux_sym_format_specifier_token1, + STATE(3726), 2, sym_line_comment, sym_block_comment, - [132001] = 6, + [133290] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6134), 1, - anon_sym_LPAREN, - STATE(1418), 1, - sym_signature, - STATE(1100), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3677), 2, + ACTIONS(6532), 1, + sym_identifier, + ACTIONS(6535), 1, + anon_sym_RPAREN, + STATE(3664), 1, + sym_const_definition, + STATE(3727), 3, sym_line_comment, sym_block_comment, - [132022] = 6, + aux_sym_const_declaration_repeat1, + [133311] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, - anon_sym_LPAREN, - STATE(4024), 1, - sym_signature, - STATE(2870), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3678), 2, + ACTIONS(6537), 1, + anon_sym_COMMA, + ACTIONS(6540), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(3728), 3, sym_line_comment, sym_block_comment, - [132043] = 7, + aux_sym_type_parameters_repeat1, + [133330] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6402), 1, + ACTIONS(6542), 1, sym_identifier, - ACTIONS(6533), 1, + ACTIONS(6545), 1, anon_sym_RPAREN, - STATE(3700), 1, - sym_const_definition, - STATE(3735), 1, - aux_sym_const_declaration_repeat1, - STATE(3679), 2, + STATE(3672), 1, + sym_global_var_definition, + STATE(3729), 3, sym_line_comment, sym_block_comment, - [132066] = 4, + aux_sym_global_var_declaration_repeat1, + [133351] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3680), 2, + STATE(3730), 2, sym_line_comment, sym_block_comment, - ACTIONS(4190), 4, + ACTIONS(4374), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [132083] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - sym_identifier, - ACTIONS(6537), 1, - anon_sym_DOLLAR_LPAREN, - STATE(2313), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - STATE(3681), 2, - sym_line_comment, - sym_block_comment, - [132104] = 7, + [133368] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6412), 1, - anon_sym_as, - ACTIONS(6414), 1, + ACTIONS(4737), 1, anon_sym_LBRACE, - STATE(1561), 1, - sym__enum_body, - STATE(4278), 1, - sym_enum_backed_type, - STATE(3682), 2, + ACTIONS(6512), 1, + anon_sym_DOLLARif, + STATE(1776), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3731), 2, sym_line_comment, sym_block_comment, - [132127] = 6, + [133389] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, + ACTIONS(6083), 1, anon_sym_LPAREN, - STATE(4023), 1, + STATE(4371), 1, sym_signature, - STATE(2870), 2, + STATE(2878), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3683), 2, + STATE(3732), 2, sym_line_comment, sym_block_comment, - [132148] = 4, + [133410] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3684), 2, + STATE(3733), 2, sym_line_comment, sym_block_comment, - ACTIONS(6539), 4, + ACTIONS(4334), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - [132165] = 4, - ACTIONS(497), 1, + anon_sym_RBRACE, + [133427] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3685), 2, + ACTIONS(6547), 1, + sym_identifier, + STATE(3857), 1, + sym_generic_parameter, + ACTIONS(6549), 2, + anon_sym_GT, + anon_sym_RBRACK, + STATE(3734), 2, sym_line_comment, sym_block_comment, - ACTIONS(4186), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [132182] = 4, - ACTIONS(497), 1, + [133448] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3686), 2, + ACTIONS(6551), 1, + anon_sym_COMMA, + STATE(3814), 1, + aux_sym_generic_parameters_repeat1, + ACTIONS(6549), 2, + anon_sym_GT, + anon_sym_RBRACK, + STATE(3735), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [132199] = 4, - ACTIONS(497), 1, + [133469] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3687), 2, + ACTIONS(6150), 1, + anon_sym_LPAREN, + STATE(1478), 1, + sym_signature, + STATE(1104), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3736), 2, sym_line_comment, sym_block_comment, - ACTIONS(4267), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [132216] = 6, + [133490] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, + ACTIONS(6553), 1, anon_sym_LPAREN, - STATE(4070), 1, + STATE(2776), 1, sym_signature, - STATE(2870), 2, + STATE(1619), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3688), 2, + STATE(3737), 2, sym_line_comment, sym_block_comment, - [132237] = 7, + [133511] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5070), 1, + ACTIONS(6555), 1, + anon_sym_LPAREN, + STATE(2280), 1, + sym_signature, + STATE(1401), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3738), 2, + sym_line_comment, + sym_block_comment, + [133532] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1885), 1, + anon_sym_DOT, + STATE(3739), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6557), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [133551] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6472), 1, + sym_identifier, + ACTIONS(6559), 1, + anon_sym_RBRACE, + STATE(3622), 1, + sym_enum_field_definition, + STATE(3793), 1, + aux_sym__enum_body_repeat1, + STATE(3740), 2, + sym_line_comment, + sym_block_comment, + [133574] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5088), 1, anon_sym_LBRACE, - ACTIONS(6541), 1, + ACTIONS(6561), 1, anon_sym_if, - STATE(2863), 1, + STATE(2885), 1, sym_if_expression, - STATE(2881), 1, + STATE(2886), 1, sym_block, - STATE(3689), 2, + STATE(3741), 2, sym_line_comment, sym_block_comment, - [132260] = 6, + [133597] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5070), 1, + ACTIONS(5088), 1, anon_sym_LBRACE, - ACTIONS(6543), 1, + ACTIONS(6563), 1, anon_sym_DOLLARif, - STATE(2833), 2, + STATE(2888), 2, sym_compile_time_if_expression, sym_block, - STATE(3690), 2, + STATE(3742), 2, sym_line_comment, sym_block_comment, - [132281] = 7, + [133618] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6545), 1, - sym_identifier, - STATE(3392), 1, - sym_import_path, - STATE(3398), 1, - sym_import_name, - STATE(3606), 1, - sym_import_spec, - STATE(3691), 2, - sym_line_comment, - sym_block_comment, - [132304] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - STATE(3692), 2, + ACTIONS(5098), 1, + anon_sym_LBRACE, + ACTIONS(6565), 1, + anon_sym_if, + STATE(1049), 1, + sym_if_expression, + STATE(1055), 1, + sym_block, + STATE(3743), 2, sym_line_comment, sym_block_comment, - ACTIONS(4293), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [132321] = 6, + [133641] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, - anon_sym_LPAREN, - STATE(4178), 1, - sym_signature, - STATE(2870), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3693), 2, + ACTIONS(5098), 1, + anon_sym_LBRACE, + ACTIONS(6567), 1, + anon_sym_DOLLARif, + STATE(1056), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3744), 2, sym_line_comment, sym_block_comment, - [132342] = 6, + [133662] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, + ACTIONS(6569), 1, anon_sym_LPAREN, - STATE(4104), 1, + STATE(1889), 1, sym_signature, - STATE(2870), 2, + STATE(1126), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3694), 2, + STATE(3745), 2, sym_line_comment, sym_block_comment, - [132363] = 6, + [133683] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6547), 1, - sym_identifier, - ACTIONS(6549), 1, - anon_sym_DOLLAR_LPAREN, - STATE(2669), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - STATE(3695), 2, - sym_line_comment, - sym_block_comment, - [132384] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - STATE(3696), 2, + ACTIONS(5084), 1, + anon_sym_LBRACE, + ACTIONS(6571), 1, + anon_sym_if, + STATE(413), 1, + sym_block, + STATE(414), 1, + sym_if_expression, + STATE(3746), 2, sym_line_comment, sym_block_comment, - ACTIONS(4182), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [132401] = 6, + [133706] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5072), 1, + ACTIONS(5096), 1, anon_sym_LBRACE, - ACTIONS(6551), 1, + ACTIONS(6518), 1, anon_sym_DOLLARif, - STATE(1832), 2, + STATE(2512), 2, sym_compile_time_if_expression, sym_block, - STATE(3697), 2, + STATE(3747), 2, sym_line_comment, sym_block_comment, - [132422] = 6, + [133727] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, - anon_sym_LPAREN, - STATE(4209), 1, - sym_signature, - STATE(2870), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3698), 2, + ACTIONS(5096), 1, + anon_sym_LBRACE, + ACTIONS(6573), 1, + anon_sym_if, + STATE(2513), 1, + sym_block, + STATE(2514), 1, + sym_if_expression, + STATE(3748), 2, sym_line_comment, sym_block_comment, - [132443] = 6, + [133750] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5070), 1, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(6543), 1, + ACTIONS(6575), 1, anon_sym_DOLLARif, - STATE(2874), 2, + STATE(411), 2, sym_compile_time_if_expression, sym_block, - STATE(3699), 2, + STATE(3749), 2, sym_line_comment, sym_block_comment, - [132464] = 4, + [133771] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3700), 2, + STATE(3750), 2, sym_line_comment, sym_block_comment, - ACTIONS(6553), 4, + ACTIONS(4535), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [132481] = 6, + [133788] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6555), 1, - sym_identifier, - ACTIONS(6557), 1, - anon_sym_DOLLAR_LPAREN, - STATE(2192), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - STATE(3701), 2, + ACTIONS(5088), 1, + anon_sym_LBRACE, + ACTIONS(6563), 1, + anon_sym_DOLLARif, + STATE(2897), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3751), 2, sym_line_comment, sym_block_comment, - [132502] = 6, + [133809] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6477), 1, - sym_identifier, - STATE(3794), 1, - sym_generic_parameter, - ACTIONS(6559), 2, - anon_sym_GT, - anon_sym_RBRACK, - STATE(3702), 2, + ACTIONS(5098), 1, + anon_sym_LBRACE, + ACTIONS(6567), 1, + anon_sym_DOLLARif, + STATE(1065), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3752), 2, sym_line_comment, sym_block_comment, - [132523] = 5, + [133830] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6561), 1, - anon_sym_COMMA, - ACTIONS(6564), 2, - anon_sym_GT, - anon_sym_RBRACK, - STATE(3703), 3, - sym_line_comment, - sym_block_comment, - aux_sym_generic_parameters_repeat1, - [132542] = 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(4263), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [132559] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - STATE(3705), 2, + ACTIONS(6577), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2265), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3753), 2, sym_line_comment, sym_block_comment, - ACTIONS(4236), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [132576] = 6, + [133851] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6566), 1, + ACTIONS(6581), 1, sym_identifier, - ACTIONS(6568), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR_LPAREN, - STATE(1739), 2, + STATE(2544), 2, sym_reference_expression, sym_compile_time_selector_expression, - STATE(3706), 2, + STATE(3754), 2, sym_line_comment, sym_block_comment, - [132597] = 6, - ACTIONS(3), 1, + [133872] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6134), 1, - anon_sym_LPAREN, - STATE(1421), 1, - sym_signature, - STATE(1100), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3707), 2, + STATE(3755), 2, sym_line_comment, sym_block_comment, - [132618] = 6, + ACTIONS(4338), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [133889] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, + ACTIONS(6585), 1, anon_sym_LPAREN, - STATE(3340), 1, + STATE(2116), 1, sym_signature, - STATE(2422), 2, + STATE(1143), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3708), 2, + STATE(3756), 2, sym_line_comment, sym_block_comment, - [132639] = 6, + [133910] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, - anon_sym_LPAREN, - STATE(4312), 1, - sym_signature, - STATE(2870), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3709), 2, + ACTIONS(6587), 1, + anon_sym_EQ, + STATE(4450), 1, + sym_generic_parameters, + ACTIONS(4948), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(3757), 2, sym_line_comment, sym_block_comment, - [132660] = 6, + [133931] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5072), 1, - anon_sym_LBRACE, - ACTIONS(6551), 1, - anon_sym_DOLLARif, - STATE(1897), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3710), 2, + ACTIONS(6589), 1, + sym_identifier, + ACTIONS(6591), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1728), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3758), 2, sym_line_comment, sym_block_comment, - [132681] = 6, - ACTIONS(3), 1, + [133952] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6570), 1, - sym_identifier, - ACTIONS(6573), 1, - anon_sym_RBRACE, - STATE(3583), 1, - sym_enum_field_definition, - STATE(3711), 3, + STATE(3759), 2, sym_line_comment, sym_block_comment, - aux_sym__enum_body_repeat1, - [132702] = 7, + ACTIONS(4500), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [133969] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5072), 1, + ACTIONS(5058), 1, anon_sym_LBRACE, - ACTIONS(6575), 1, - anon_sym_if, - STATE(1894), 1, - sym_if_expression, - STATE(1896), 1, + ACTIONS(6593), 1, + anon_sym_DOLLARif, + STATE(1994), 2, + sym_compile_time_if_expression, sym_block, - STATE(3712), 2, + STATE(3760), 2, sym_line_comment, sym_block_comment, - [132725] = 6, + [133990] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, - anon_sym_LPAREN, - STATE(3359), 1, - sym_signature, - STATE(2422), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3713), 2, + ACTIONS(5058), 1, + anon_sym_LBRACE, + ACTIONS(6593), 1, + anon_sym_DOLLARif, + STATE(1998), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3761), 2, sym_line_comment, sym_block_comment, - [132746] = 6, + [134011] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, - anon_sym_LPAREN, - STATE(4160), 1, - sym_signature, - STATE(2870), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3714), 2, + ACTIONS(5058), 1, + anon_sym_LBRACE, + ACTIONS(6595), 1, + anon_sym_if, + STATE(2004), 1, + sym_block, + STATE(2005), 1, + sym_if_expression, + STATE(3762), 2, sym_line_comment, sym_block_comment, - [132767] = 4, + [134034] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3715), 2, + STATE(3763), 2, sym_line_comment, sym_block_comment, - ACTIONS(4178), 4, + ACTIONS(4458), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [132784] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5056), 1, - anon_sym_LBRACE, - ACTIONS(6505), 1, - anon_sym_DOLLARif, - STATE(414), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3716), 2, - sym_line_comment, - sym_block_comment, - [132805] = 4, + [134051] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3717), 2, + STATE(3764), 2, sym_line_comment, sym_block_comment, - ACTIONS(4289), 4, + ACTIONS(4282), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [132822] = 4, + [134068] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3718), 2, + STATE(3765), 2, sym_line_comment, sym_block_comment, - ACTIONS(4497), 4, + ACTIONS(4438), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [132839] = 4, + [134085] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6452), 1, + sym_identifier, + ACTIONS(6597), 1, + anon_sym_RPAREN, + STATE(3672), 1, + sym_global_var_definition, + STATE(3674), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3766), 2, + sym_line_comment, + sym_block_comment, + [134108] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3719), 2, + STATE(3767), 2, sym_line_comment, sym_block_comment, - ACTIONS(4457), 4, + ACTIONS(4430), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [132856] = 4, + [134125] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3720), 2, + STATE(3768), 2, sym_line_comment, sym_block_comment, - ACTIONS(4393), 4, + ACTIONS(4406), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [132873] = 6, + [134142] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, + ACTIONS(6599), 1, anon_sym_LPAREN, - STATE(4306), 1, + STATE(1188), 1, sym_signature, - STATE(2870), 2, + STATE(952), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3721), 2, + STATE(3769), 2, sym_line_comment, sym_block_comment, - [132894] = 4, + [134163] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3722), 2, + STATE(3770), 2, sym_line_comment, sym_block_comment, - ACTIONS(4389), 4, + ACTIONS(1691), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [132911] = 4, + [134180] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3723), 2, + STATE(3771), 2, sym_line_comment, sym_block_comment, - ACTIONS(4361), 4, + ACTIONS(4386), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [132928] = 4, + [134197] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3724), 2, + STATE(3772), 2, sym_line_comment, sym_block_comment, - ACTIONS(4206), 4, + ACTIONS(4382), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [132945] = 6, + [134214] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, - anon_sym_LPAREN, - STATE(4292), 1, - sym_signature, - STATE(2870), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3725), 2, + ACTIONS(6440), 1, + sym_identifier, + ACTIONS(6601), 1, + anon_sym_RPAREN, + STATE(3664), 1, + sym_const_definition, + STATE(3727), 1, + aux_sym_const_declaration_repeat1, + STATE(3773), 2, + sym_line_comment, + sym_block_comment, + [134237] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5084), 1, + anon_sym_LBRACE, + ACTIONS(6575), 1, + anon_sym_DOLLARif, + STATE(344), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3774), 2, sym_line_comment, sym_block_comment, - [132966] = 6, + [134258] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, + ACTIONS(6446), 1, anon_sym_LPAREN, - STATE(4180), 1, + STATE(1689), 1, sym_signature, - STATE(2870), 2, + STATE(2898), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3726), 2, + STATE(3775), 2, + sym_line_comment, + sym_block_comment, + [134279] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5076), 1, + anon_sym_LBRACE, + ACTIONS(6603), 1, + anon_sym_DOLLARif, + STATE(2697), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3776), 2, sym_line_comment, sym_block_comment, - [132987] = 6, + [134300] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6134), 1, + ACTIONS(6150), 1, anon_sym_LPAREN, - STATE(1426), 1, + STATE(1462), 1, sym_signature, - STATE(1100), 2, + STATE(1104), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3727), 2, + STATE(3777), 2, sym_line_comment, sym_block_comment, - [133008] = 7, + [134321] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6577), 1, - anon_sym_DOT, - ACTIONS(6579), 1, - anon_sym_RBRACE, - ACTIONS(6581), 1, - sym_int_literal, - ACTIONS(6583), 1, - aux_sym_format_specifier_token1, - STATE(3728), 2, + ACTIONS(5076), 1, + anon_sym_LBRACE, + ACTIONS(6603), 1, + anon_sym_DOLLARif, + STATE(2692), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3778), 2, + sym_line_comment, + sym_block_comment, + [134342] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5076), 1, + anon_sym_LBRACE, + ACTIONS(6605), 1, + anon_sym_if, + STATE(2690), 1, + sym_if_expression, + STATE(2691), 1, + sym_block, + STATE(3779), 2, sym_line_comment, sym_block_comment, - [133031] = 7, + [134365] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6489), 1, + ACTIONS(6440), 1, sym_identifier, - ACTIONS(6585), 1, - anon_sym_RBRACE, - STATE(3583), 1, - sym_enum_field_definition, - STATE(3651), 1, - aux_sym__enum_body_repeat1, - STATE(3729), 2, + ACTIONS(6607), 1, + anon_sym_RPAREN, + STATE(3664), 1, + sym_const_definition, + STATE(3727), 1, + aux_sym_const_declaration_repeat1, + STATE(3780), 2, sym_line_comment, sym_block_comment, - [133054] = 6, + [134388] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6587), 1, + ACTIONS(6452), 1, + sym_identifier, + ACTIONS(6609), 1, + anon_sym_RPAREN, + STATE(3672), 1, + sym_global_var_definition, + STATE(3729), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3781), 2, + sym_line_comment, + sym_block_comment, + [134411] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6611), 1, anon_sym_LPAREN, - STATE(2034), 1, + STATE(1007), 1, sym_signature, - STATE(1252), 2, + STATE(189), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3730), 2, + STATE(3782), 2, sym_line_comment, sym_block_comment, - [133075] = 6, + [134432] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, + ACTIONS(6150), 1, anon_sym_LPAREN, - STATE(4156), 1, + STATE(1488), 1, sym_signature, - STATE(2870), 2, + STATE(1104), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3731), 2, + STATE(3783), 2, + sym_line_comment, + sym_block_comment, + [134453] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, + sym_identifier, + ACTIONS(6613), 1, + anon_sym_RPAREN, + STATE(3664), 1, + sym_const_definition, + STATE(3666), 1, + aux_sym_const_declaration_repeat1, + STATE(3784), 2, sym_line_comment, sym_block_comment, - [133096] = 4, + [134476] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3732), 2, + STATE(3785), 2, sym_line_comment, sym_block_comment, - ACTIONS(1711), 4, + ACTIONS(4390), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [133113] = 7, + [134493] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6402), 1, - sym_identifier, - ACTIONS(6533), 1, - anon_sym_RPAREN, - STATE(3635), 1, - aux_sym_const_declaration_repeat1, - STATE(3700), 1, - sym_const_definition, - STATE(3733), 2, + ACTIONS(6446), 1, + anon_sym_LPAREN, + STATE(3408), 1, + sym_signature, + STATE(2474), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3786), 2, sym_line_comment, sym_block_comment, - [133136] = 6, + [134514] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6134), 1, + ACTIONS(6555), 1, anon_sym_LPAREN, - STATE(1424), 1, + STATE(2614), 1, sym_signature, - STATE(1100), 2, + STATE(1457), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3734), 2, + STATE(3787), 2, sym_line_comment, sym_block_comment, - [133157] = 7, + [134535] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6402), 1, + ACTIONS(6440), 1, sym_identifier, - ACTIONS(6589), 1, + ACTIONS(6607), 1, anon_sym_RPAREN, - STATE(3635), 1, - aux_sym_const_declaration_repeat1, - STATE(3700), 1, + STATE(3664), 1, sym_const_definition, - STATE(3735), 2, + STATE(3669), 1, + aux_sym_const_declaration_repeat1, + STATE(3788), 2, + sym_line_comment, + sym_block_comment, + [134558] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3789), 2, sym_line_comment, sym_block_comment, - [133180] = 6, + ACTIONS(6615), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [134575] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6134), 1, - anon_sym_LPAREN, - STATE(1436), 1, - sym_signature, - STATE(1100), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3736), 2, + ACTIONS(6492), 1, + anon_sym_as, + ACTIONS(6494), 1, + anon_sym_LBRACE, + STATE(1614), 1, + sym__enum_body, + STATE(4318), 1, + sym_enum_backed_type, + STATE(3790), 2, sym_line_comment, sym_block_comment, - [133201] = 6, + [134598] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6617), 1, + anon_sym_STAR_SLASH, + STATE(3658), 1, + aux_sym_block_comment_repeat1, + ACTIONS(6500), 2, + aux_sym_block_comment_token1, + aux_sym_block_comment_token2, + STATE(3791), 2, + sym_line_comment, + sym_block_comment, + [134619] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6134), 1, - anon_sym_LPAREN, - STATE(1427), 1, - sym_signature, - STATE(1100), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3737), 2, + ACTIONS(5092), 1, + anon_sym_LBRACE, + ACTIONS(6619), 1, + anon_sym_if, + STATE(1981), 1, + sym_block, + STATE(2061), 1, + sym_if_expression, + STATE(3792), 2, sym_line_comment, sym_block_comment, - [133222] = 6, + [134642] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6591), 1, + ACTIONS(6621), 1, sym_identifier, - ACTIONS(6593), 1, - anon_sym_DOLLAR_LPAREN, - STATE(1154), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - STATE(3738), 2, + ACTIONS(6624), 1, + anon_sym_RBRACE, + STATE(3622), 1, + sym_enum_field_definition, + STATE(3793), 3, + sym_line_comment, + sym_block_comment, + aux_sym__enum_body_repeat1, + [134663] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3794), 2, sym_line_comment, sym_block_comment, - [133243] = 6, + ACTIONS(6626), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [134680] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, + ACTIONS(6150), 1, anon_sym_LPAREN, - STATE(4305), 1, + STATE(1475), 1, sym_signature, - STATE(2870), 2, + STATE(1104), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3739), 2, + STATE(3795), 2, sym_line_comment, sym_block_comment, - [133264] = 6, + [134701] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, - anon_sym_LPAREN, - STATE(4079), 1, - sym_signature, - STATE(2870), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3740), 2, + ACTIONS(5092), 1, + anon_sym_LBRACE, + ACTIONS(6628), 1, + anon_sym_DOLLARif, + STATE(1975), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3796), 2, sym_line_comment, sym_block_comment, - [133285] = 6, + [134722] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, - anon_sym_LPAREN, - STATE(4132), 1, - sym_signature, - STATE(2870), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3741), 2, + ACTIONS(5028), 1, + anon_sym_LBRACE, + ACTIONS(6630), 1, + anon_sym_DOLLARif, + STATE(2186), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3797), 2, sym_line_comment, sym_block_comment, - [133306] = 4, - ACTIONS(497), 1, + [134743] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3742), 2, + ACTIONS(5028), 1, + anon_sym_LBRACE, + ACTIONS(6630), 1, + anon_sym_DOLLARif, + STATE(2227), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3798), 2, sym_line_comment, sym_block_comment, - ACTIONS(6595), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [133323] = 6, + [134764] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5028), 1, + anon_sym_LBRACE, + ACTIONS(6632), 1, + anon_sym_if, + STATE(2228), 1, + sym_block, + STATE(2229), 1, + sym_if_expression, + STATE(3799), 2, + sym_line_comment, + sym_block_comment, + [134787] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - ACTIONS(6597), 1, + ACTIONS(6628), 1, anon_sym_DOLLARif, - STATE(1963), 2, + STATE(2100), 2, sym_compile_time_if_expression, sym_block, - STATE(3743), 2, + STATE(3800), 2, sym_line_comment, sym_block_comment, - [133344] = 6, + [134808] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6134), 1, - anon_sym_LPAREN, - STATE(1446), 1, - sym_signature, - STATE(1100), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3744), 2, + ACTIONS(6634), 1, + sym_identifier, + ACTIONS(6636), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1177), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3801), 2, sym_line_comment, sym_block_comment, - [133365] = 6, + [134829] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6134), 1, + ACTIONS(6150), 1, anon_sym_LPAREN, - STATE(1435), 1, + STATE(1468), 1, sym_signature, - STATE(1100), 2, + STATE(1104), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3745), 2, + STATE(3802), 2, sym_line_comment, sym_block_comment, - [133386] = 6, + [134850] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, + ACTIONS(6638), 1, anon_sym_LPAREN, - STATE(4016), 1, + STATE(1955), 1, sym_signature, - STATE(2870), 2, + STATE(1185), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3746), 2, + STATE(3803), 2, sym_line_comment, sym_block_comment, - [133407] = 6, + [134871] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6134), 1, + ACTIONS(6640), 1, anon_sym_LPAREN, - STATE(1431), 1, + STATE(1425), 1, sym_signature, STATE(1100), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3747), 2, + STATE(3804), 2, sym_line_comment, sym_block_comment, - [133428] = 6, + [134892] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6134), 1, + ACTIONS(6150), 1, anon_sym_LPAREN, - STATE(1430), 1, + STATE(1515), 1, sym_signature, - STATE(1100), 2, + STATE(1104), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3748), 2, + STATE(3805), 2, sym_line_comment, sym_block_comment, - [133449] = 6, + [134913] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, + ACTIONS(6150), 1, anon_sym_LPAREN, - STATE(4153), 1, + STATE(1484), 1, sym_signature, - STATE(2870), 2, + STATE(1104), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3749), 2, + STATE(3806), 2, sym_line_comment, sym_block_comment, - [133470] = 7, + [134934] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(6599), 1, - anon_sym_if, - STATE(1914), 1, - sym_if_expression, - STATE(1942), 1, + ACTIONS(6642), 1, + anon_sym_DOLLARif, + STATE(1844), 2, + sym_compile_time_if_expression, sym_block, - STATE(3750), 2, + STATE(3807), 2, sym_line_comment, sym_block_comment, - [133493] = 5, + [134955] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2053), 1, - anon_sym_DOT, - STATE(3751), 2, + ACTIONS(6644), 1, + sym_identifier, + STATE(3453), 1, + sym_import_path, + STATE(3454), 1, + sym_import_name, + STATE(3789), 1, + sym_import_spec, + STATE(3808), 2, + sym_line_comment, + sym_block_comment, + [134978] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6646), 1, + sym_identifier, + ACTIONS(6648), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2671), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3809), 2, sym_line_comment, sym_block_comment, - ACTIONS(6601), 3, + [134999] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6150), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [133512] = 6, + STATE(1474), 1, + sym_signature, + STATE(1104), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3810), 2, + sym_line_comment, + sym_block_comment, + [135020] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6547), 1, + sym_identifier, + STATE(3857), 1, + sym_generic_parameter, + ACTIONS(6650), 2, + anon_sym_GT, + anon_sym_RBRACK, + STATE(3811), 2, + sym_line_comment, + sym_block_comment, + [135041] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6031), 1, + ACTIONS(6150), 1, anon_sym_LPAREN, - STATE(4105), 1, + STATE(1469), 1, sym_signature, - STATE(2870), 2, + STATE(1104), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3752), 2, + STATE(3812), 2, sym_line_comment, sym_block_comment, - [133533] = 6, + [135062] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(6597), 1, + ACTIONS(6642), 1, anon_sym_DOLLARif, - STATE(1946), 2, + STATE(1837), 2, sym_compile_time_if_expression, sym_block, - STATE(3753), 2, + STATE(3813), 2, sym_line_comment, sym_block_comment, - [133554] = 4, + [135083] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3754), 2, + ACTIONS(6652), 1, + anon_sym_COMMA, + ACTIONS(6655), 2, + anon_sym_GT, + anon_sym_RBRACK, + STATE(3814), 3, sym_line_comment, sym_block_comment, - ACTIONS(6603), 3, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - [133570] = 6, + aux_sym_generic_parameters_repeat1, + [135102] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(6657), 1, anon_sym_COMMA, - ACTIONS(6607), 1, + ACTIONS(6659), 1, anon_sym_RPAREN, - STATE(3828), 1, - aux_sym_type_parameters_repeat1, - STATE(3755), 2, + STATE(3874), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3815), 2, sym_line_comment, sym_block_comment, - [133590] = 5, + [135122] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5422), 1, - anon_sym_LBRACE, - ACTIONS(6609), 1, + ACTIONS(6661), 1, anon_sym_COMMA, - STATE(3756), 3, + ACTIONS(6663), 1, + anon_sym_RPAREN, + STATE(3886), 1, + aux_sym_parameter_list_repeat1, + STATE(3816), 2, sym_line_comment, sym_block_comment, - aux_sym_match_expression_list_repeat1, - [133608] = 5, + [135142] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3936), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(6612), 2, + ACTIONS(6665), 1, + sym_identifier, + ACTIONS(6667), 1, + anon_sym_LPAREN, + STATE(1537), 1, + sym_const_definition, + STATE(3817), 2, + sym_line_comment, + sym_block_comment, + [135162] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6669), 1, anon_sym_COMMA, + ACTIONS(6671), 1, anon_sym_RPAREN, - STATE(3757), 2, + STATE(3832), 1, + aux_sym_type_parameters_repeat1, + STATE(3818), 2, sym_line_comment, sym_block_comment, - [133626] = 4, + [135182] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3758), 2, + ACTIONS(6661), 1, + anon_sym_COMMA, + ACTIONS(6673), 1, + anon_sym_RPAREN, + STATE(4054), 1, + aux_sym_parameter_list_repeat1, + STATE(3819), 2, sym_line_comment, sym_block_comment, - ACTIONS(6614), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [133642] = 6, + [135202] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5634), 1, + ACTIONS(5666), 1, anon_sym_RPAREN, - ACTIONS(6616), 1, + ACTIONS(6675), 1, anon_sym_COMMA, - STATE(3637), 1, + STATE(3728), 1, aux_sym_type_parameters_repeat1, - STATE(3759), 2, + STATE(3820), 2, sym_line_comment, sym_block_comment, - [133662] = 6, + [135222] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, + ACTIONS(6661), 1, anon_sym_COMMA, - ACTIONS(6620), 1, + ACTIONS(6677), 1, anon_sym_RPAREN, - STATE(3784), 1, + STATE(3843), 1, aux_sym_parameter_list_repeat1, - STATE(3760), 2, + STATE(3821), 2, sym_line_comment, sym_block_comment, - [133682] = 6, + [135242] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(6657), 1, anon_sym_COMMA, - ACTIONS(6624), 1, + ACTIONS(6679), 1, anon_sym_RPAREN, - STATE(3785), 1, + STATE(3844), 1, aux_sym_type_parameter_list_repeat1, - STATE(3761), 2, + STATE(3822), 2, + sym_line_comment, + sym_block_comment, + [135262] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6681), 1, + sym_identifier, + ACTIONS(6683), 1, + anon_sym_LBRACE, + STATE(2364), 1, + sym__struct_body, + STATE(3823), 2, + sym_line_comment, + sym_block_comment, + [135282] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3492), 1, + anon_sym_SEMI, + ACTIONS(5186), 1, + anon_sym_COMMA, + STATE(3834), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3824), 2, sym_line_comment, sym_block_comment, - [133702] = 6, + [135302] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6685), 1, + sym_identifier, + ACTIONS(6687), 1, + anon_sym_LBRACE, + STATE(1772), 1, + sym__content_block, + STATE(3825), 2, + sym_line_comment, + sym_block_comment, + [135322] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6689), 1, + sym_identifier, + ACTIONS(6691), 1, + anon_sym_LBRACE, + STATE(469), 1, + sym__content_block, + STATE(3826), 2, + sym_line_comment, + sym_block_comment, + [135342] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5668), 1, + anon_sym_RPAREN, + ACTIONS(6693), 1, + anon_sym_COMMA, + STATE(3728), 1, + aux_sym_type_parameters_repeat1, + STATE(3827), 2, + sym_line_comment, + sym_block_comment, + [135362] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6695), 1, + anon_sym_SQUOTE, + ACTIONS(6697), 1, + aux_sym_raw_string_literal_token1, + STATE(3840), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3828), 2, + sym_line_comment, + sym_block_comment, + [135382] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6626), 1, + ACTIONS(6695), 1, anon_sym_DQUOTE, - ACTIONS(6628), 1, + ACTIONS(6699), 1, aux_sym_raw_string_literal_token2, - STATE(3988), 1, + STATE(3842), 1, aux_sym_raw_string_literal_repeat2, - STATE(3762), 2, + STATE(3829), 2, sym_line_comment, sym_block_comment, - [133722] = 6, + [135402] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6626), 1, - anon_sym_SQUOTE, - ACTIONS(6630), 1, + ACTIONS(6697), 1, aux_sym_raw_string_literal_token1, - STATE(3993), 1, + ACTIONS(6701), 1, + anon_sym_SQUOTE, + STATE(3871), 1, aux_sym_raw_string_literal_repeat1, - STATE(3763), 2, + STATE(3830), 2, + sym_line_comment, + sym_block_comment, + [135422] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6699), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6701), 1, + anon_sym_DQUOTE, + STATE(3872), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3831), 2, sym_line_comment, sym_block_comment, - [133742] = 6, + [135442] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, - anon_sym_COMMA, - ACTIONS(6632), 1, + ACTIONS(5656), 1, anon_sym_RPAREN, - STATE(3896), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3764), 2, + ACTIONS(6703), 1, + anon_sym_COMMA, + STATE(3728), 1, + aux_sym_type_parameters_repeat1, + STATE(3832), 2, sym_line_comment, sym_block_comment, - [133762] = 6, + [135462] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, + ACTIONS(6661), 1, anon_sym_COMMA, - ACTIONS(6634), 1, - anon_sym_RBRACK, - STATE(3637), 1, - aux_sym_type_parameters_repeat1, - STATE(3765), 2, + ACTIONS(6705), 1, + anon_sym_RPAREN, + STATE(3880), 1, + aux_sym_parameter_list_repeat1, + STATE(3833), 2, sym_line_comment, sym_block_comment, - [133782] = 6, + [135482] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(4053), 1, + anon_sym_SEMI, + ACTIONS(5186), 1, anon_sym_COMMA, - ACTIONS(6636), 1, - anon_sym_RPAREN, - STATE(3799), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3766), 2, + STATE(3853), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3834), 2, sym_line_comment, sym_block_comment, - [133802] = 6, + [135502] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, + ACTIONS(6707), 1, anon_sym_COMMA, - ACTIONS(6638), 1, - anon_sym_RPAREN, - STATE(3801), 1, - aux_sym_parameter_list_repeat1, - STATE(3767), 2, + ACTIONS(6710), 1, + anon_sym_RBRACK, + STATE(3835), 3, sym_line_comment, sym_block_comment, - [133822] = 4, + aux_sym_capture_list_repeat1, + [135520] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3768), 2, + ACTIONS(6657), 1, + anon_sym_COMMA, + ACTIONS(6712), 1, + anon_sym_RPAREN, + STATE(3884), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3836), 2, sym_line_comment, sym_block_comment, - ACTIONS(6601), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [133838] = 6, + [135540] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6640), 1, + ACTIONS(6714), 1, anon_sym_COMMA, - ACTIONS(6642), 1, + ACTIONS(6716), 1, anon_sym_RPAREN, - STATE(3954), 1, + STATE(3827), 1, aux_sym_type_parameters_repeat1, - STATE(3769), 2, + STATE(3837), 2, sym_line_comment, sym_block_comment, - [133858] = 6, + [135560] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6644), 1, + ACTIONS(6407), 1, anon_sym_COMMA, - ACTIONS(6646), 1, - anon_sym_PIPE, - STATE(3875), 1, - aux_sym_short_lambda_repeat1, - STATE(3770), 2, + ACTIONS(6718), 1, + anon_sym_RBRACK, + STATE(3852), 1, + aux_sym_type_parameters_repeat1, + STATE(3838), 2, sym_line_comment, sym_block_comment, - [133878] = 6, + [135580] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6577), 1, + ACTIONS(6720), 1, anon_sym_DOT, - ACTIONS(6579), 1, + ACTIONS(6722), 1, anon_sym_RBRACE, - ACTIONS(6583), 1, + ACTIONS(6724), 1, aux_sym_format_specifier_token1, - STATE(3771), 2, + STATE(3839), 2, sym_line_comment, sym_block_comment, - [133898] = 6, - ACTIONS(3), 1, + [135600] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6648), 1, - sym_identifier, - ACTIONS(6650), 1, - anon_sym_LBRACE, - STATE(2568), 1, - sym__content_block, - STATE(3772), 2, + ACTIONS(6697), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6726), 1, + anon_sym_SQUOTE, + STATE(3953), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3840), 2, + sym_line_comment, + sym_block_comment, + [135620] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3841), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6728), 3, + aux_sym_block_comment_token1, + aux_sym_block_comment_token2, + anon_sym_STAR_SLASH, + [135636] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6699), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6726), 1, + anon_sym_DQUOTE, + STATE(3954), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3842), 2, sym_line_comment, sym_block_comment, - [133918] = 4, + [135656] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3773), 2, + ACTIONS(6661), 1, + anon_sym_COMMA, + ACTIONS(6730), 1, + anon_sym_RPAREN, + STATE(3886), 1, + aux_sym_parameter_list_repeat1, + STATE(3843), 2, sym_line_comment, sym_block_comment, - ACTIONS(6652), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [133934] = 5, + [135676] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6654), 1, - anon_sym_COMMA, ACTIONS(6657), 1, - anon_sym_COLON_EQ, - STATE(3774), 3, + anon_sym_COMMA, + ACTIONS(6732), 1, + anon_sym_RPAREN, + STATE(3874), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3844), 2, sym_line_comment, sym_block_comment, - aux_sym_identifier_list_repeat1, - [133952] = 6, + [135696] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5234), 1, + ACTIONS(5708), 1, + anon_sym_RPAREN, + ACTIONS(6734), 1, anon_sym_COMMA, - ACTIONS(6659), 1, - anon_sym_LBRACE, - STATE(3756), 1, - aux_sym_match_expression_list_repeat1, - STATE(3775), 2, + STATE(3728), 1, + aux_sym_type_parameters_repeat1, + STATE(3845), 2, sym_line_comment, sym_block_comment, - [133972] = 6, + [135716] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, - anon_sym_COMMA, ACTIONS(6661), 1, - anon_sym_RBRACK, - STATE(3765), 1, - aux_sym_type_parameters_repeat1, - STATE(3776), 2, + anon_sym_COMMA, + ACTIONS(6736), 1, + anon_sym_RPAREN, + STATE(3866), 1, + aux_sym_parameter_list_repeat1, + STATE(3846), 2, sym_line_comment, sym_block_comment, - [133992] = 6, + [135736] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6630), 1, + ACTIONS(6697), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6663), 1, + ACTIONS(6738), 1, anon_sym_SQUOTE, - STATE(3800), 1, + STATE(3855), 1, aux_sym_raw_string_literal_repeat1, - STATE(3777), 2, + STATE(3847), 2, sym_line_comment, sym_block_comment, - [134012] = 6, + [135756] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6628), 1, + ACTIONS(6699), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6665), 1, + ACTIONS(6740), 1, anon_sym_DQUOTE, - STATE(3762), 1, + STATE(3954), 1, aux_sym_raw_string_literal_repeat2, - STATE(3778), 2, + STATE(3848), 2, sym_line_comment, sym_block_comment, - [134032] = 6, - ACTIONS(3), 1, + [135776] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, - anon_sym_COMMA, - ACTIONS(6667), 1, - anon_sym_RBRACK, - STATE(3795), 1, - aux_sym_type_parameters_repeat1, - STATE(3779), 2, + ACTIONS(6699), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6742), 1, + anon_sym_DQUOTE, + STATE(3954), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3849), 2, sym_line_comment, sym_block_comment, - [134052] = 6, + [135796] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6630), 1, + ACTIONS(6697), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6665), 1, + ACTIONS(6742), 1, anon_sym_SQUOTE, - STATE(3763), 1, + STATE(3953), 1, aux_sym_raw_string_literal_repeat1, - STATE(3780), 2, + STATE(3850), 2, sym_line_comment, sym_block_comment, - [134072] = 6, - ACTIONS(497), 1, + [135816] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6628), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6663), 1, - anon_sym_DQUOTE, - STATE(3873), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3781), 2, + ACTIONS(6657), 1, + anon_sym_COMMA, + ACTIONS(6744), 1, + anon_sym_RPAREN, + STATE(3867), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3851), 2, sym_line_comment, sym_block_comment, - [134092] = 6, + [135836] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5234), 1, + ACTIONS(6407), 1, anon_sym_COMMA, - ACTIONS(6669), 1, - anon_sym_LBRACE, - STATE(3756), 1, - aux_sym_match_expression_list_repeat1, - STATE(3782), 2, + ACTIONS(6746), 1, + anon_sym_RBRACK, + STATE(3728), 1, + aux_sym_type_parameters_repeat1, + STATE(3852), 2, sym_line_comment, sym_block_comment, - [134112] = 6, + [135856] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6322), 1, + ACTIONS(3530), 1, + anon_sym_SEMI, + ACTIONS(6748), 1, anon_sym_COMMA, - ACTIONS(6324), 1, - anon_sym_RPAREN, - STATE(3898), 1, - aux_sym_type_parameters_repeat1, - STATE(3783), 2, + STATE(3853), 3, sym_line_comment, sym_block_comment, - [134132] = 6, + aux_sym_strictly_expression_list_repeat1, + [135874] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, - anon_sym_COMMA, - ACTIONS(6671), 1, - anon_sym_RPAREN, - STATE(3801), 1, - aux_sym_parameter_list_repeat1, - STATE(3784), 2, + STATE(3854), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6751), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [135890] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6697), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6740), 1, + anon_sym_SQUOTE, + STATE(3953), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3855), 2, sym_line_comment, sym_block_comment, - [134152] = 6, + [135910] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, - anon_sym_COMMA, - ACTIONS(6673), 1, - anon_sym_RPAREN, - STATE(3799), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3785), 2, + STATE(3856), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6753), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [135926] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3857), 2, sym_line_comment, sym_block_comment, - [134172] = 6, + ACTIONS(6655), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACK, + [135942] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6675), 1, - sym_identifier, - ACTIONS(6677), 1, + STATE(3858), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6755), 3, anon_sym_LBRACE, - STATE(1835), 1, - sym__content_block, - STATE(3786), 2, + anon_sym_LPAREN, + anon_sym_EQ, + [135958] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3859), 2, sym_line_comment, sym_block_comment, - [134192] = 6, + ACTIONS(6557), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [135974] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3488), 1, + ACTIONS(3530), 1, anon_sym_COLON_EQ, - ACTIONS(5006), 1, + ACTIONS(6757), 1, anon_sym_COMMA, - STATE(3880), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3787), 2, + STATE(3860), 3, sym_line_comment, sym_block_comment, - [134212] = 6, + aux_sym_strictly_expression_list_repeat1, + [135992] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6679), 1, - anon_sym_SEMI, - ACTIONS(6681), 1, + ACTIONS(6407), 1, + anon_sym_COMMA, + ACTIONS(6760), 1, anon_sym_RBRACK, - STATE(3804), 1, - aux_sym_attribute_repeat1, - STATE(3788), 2, + STATE(3902), 1, + aux_sym_type_parameters_repeat1, + STATE(3861), 2, sym_line_comment, sym_block_comment, - [134232] = 5, + [136012] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6683), 1, - anon_sym_COMMA, - ACTIONS(6686), 1, + ACTIONS(6762), 1, + anon_sym_SEMI, + ACTIONS(6764), 1, anon_sym_RBRACK, - STATE(3789), 3, + STATE(3947), 1, + aux_sym_attribute_repeat1, + STATE(3862), 2, sym_line_comment, sym_block_comment, - aux_sym_capture_list_repeat1, - [134250] = 6, + [136032] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6688), 1, - sym_identifier, - ACTIONS(6690), 1, - anon_sym_LPAREN, - STATE(1482), 1, - sym_const_definition, - STATE(3790), 2, + ACTIONS(6768), 1, + anon_sym_COLON, + ACTIONS(6766), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(3863), 2, sym_line_comment, sym_block_comment, - [134270] = 4, + [136050] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3791), 2, + ACTIONS(6770), 1, + sym_identifier, + ACTIONS(6772), 1, + anon_sym_LBRACE, + STATE(2216), 1, + sym__content_block, + STATE(3864), 2, sym_line_comment, sym_block_comment, - ACTIONS(6692), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [134286] = 6, + [136070] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4007), 1, - anon_sym_SEMI, - ACTIONS(5188), 1, + ACTIONS(3492), 1, + anon_sym_COLON_EQ, + ACTIONS(5030), 1, anon_sym_COMMA, - STATE(3929), 1, + STATE(3984), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3792), 2, + STATE(3865), 2, sym_line_comment, sym_block_comment, - [134306] = 6, + [136090] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6694), 1, - sym_identifier, - ACTIONS(6696), 1, - anon_sym_LBRACE, - STATE(1994), 1, - sym__content_block, - STATE(3793), 2, + ACTIONS(6661), 1, + anon_sym_COMMA, + ACTIONS(6774), 1, + anon_sym_RPAREN, + STATE(3886), 1, + aux_sym_parameter_list_repeat1, + STATE(3866), 2, sym_line_comment, sym_block_comment, - [134326] = 4, + [136110] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3794), 2, + ACTIONS(6657), 1, + anon_sym_COMMA, + ACTIONS(6776), 1, + anon_sym_RPAREN, + STATE(3874), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3867), 2, sym_line_comment, sym_block_comment, - ACTIONS(6564), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACK, - [134342] = 6, + [136130] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, + ACTIONS(6407), 1, anon_sym_COMMA, - ACTIONS(6698), 1, + ACTIONS(6778), 1, anon_sym_RBRACK, - STATE(3637), 1, + STATE(3894), 1, aux_sym_type_parameters_repeat1, - STATE(3795), 2, + STATE(3868), 2, sym_line_comment, sym_block_comment, - [134362] = 6, + [136150] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6630), 1, + ACTIONS(6697), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6700), 1, + ACTIONS(6780), 1, anon_sym_SQUOTE, - STATE(3993), 1, + STATE(3897), 1, aux_sym_raw_string_literal_repeat1, - STATE(3796), 2, + STATE(3869), 2, + sym_line_comment, + sym_block_comment, + [136170] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6699), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6780), 1, + anon_sym_DQUOTE, + STATE(3898), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3870), 2, + sym_line_comment, + sym_block_comment, + [136190] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6697), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6782), 1, + anon_sym_SQUOTE, + STATE(3953), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3871), 2, + sym_line_comment, + sym_block_comment, + [136210] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6699), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6782), 1, + anon_sym_DQUOTE, + STATE(3954), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3872), 2, sym_line_comment, sym_block_comment, - [134382] = 6, + [136230] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, + ACTIONS(6784), 1, anon_sym_COMMA, - ACTIONS(6702), 1, - anon_sym_RBRACK, - STATE(3637), 1, - aux_sym_type_parameters_repeat1, - STATE(3797), 2, + ACTIONS(6786), 1, + anon_sym_in, + STATE(3956), 1, + aux_sym_var_definition_list_repeat1, + STATE(3873), 2, sym_line_comment, sym_block_comment, - [134402] = 4, + [136250] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3798), 2, + ACTIONS(6788), 1, + anon_sym_COMMA, + ACTIONS(6791), 1, + anon_sym_RPAREN, + STATE(3874), 3, sym_line_comment, sym_block_comment, - ACTIONS(6704), 3, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - [134418] = 5, + aux_sym_type_parameter_list_repeat1, + [136268] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6706), 1, + ACTIONS(6407), 1, anon_sym_COMMA, - ACTIONS(6709), 1, - anon_sym_RPAREN, - STATE(3799), 3, + ACTIONS(6793), 1, + anon_sym_RBRACK, + STATE(3728), 1, + aux_sym_type_parameters_repeat1, + STATE(3875), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameter_list_repeat1, - [134436] = 6, - ACTIONS(497), 1, + [136288] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6630), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6711), 1, - anon_sym_SQUOTE, - STATE(3993), 1, - aux_sym_raw_string_literal_repeat1, - STATE(3800), 2, + STATE(3876), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6362), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + [136304] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3877), 2, sym_line_comment, sym_block_comment, - [134456] = 5, + ACTIONS(3945), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + [136320] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6713), 1, + ACTIONS(5510), 1, anon_sym_COMMA, - ACTIONS(6716), 1, - anon_sym_RPAREN, - STATE(3801), 3, + ACTIONS(5912), 1, + anon_sym_LBRACE, + STATE(3879), 1, + aux_sym_expression_without_blocks_list_repeat1, + STATE(3878), 2, sym_line_comment, sym_block_comment, - aux_sym_parameter_list_repeat1, - [134474] = 6, + [136340] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(4868), 1, + anon_sym_LBRACE, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(6718), 1, - anon_sym_RPAREN, - STATE(3799), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3802), 2, + STATE(3879), 3, sym_line_comment, sym_block_comment, - [134494] = 6, + aux_sym_expression_without_blocks_list_repeat1, + [136358] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, + ACTIONS(6661), 1, anon_sym_COMMA, - ACTIONS(6720), 1, + ACTIONS(6798), 1, anon_sym_RPAREN, - STATE(3801), 1, + STATE(3886), 1, aux_sym_parameter_list_repeat1, - STATE(3803), 2, + STATE(3880), 2, sym_line_comment, sym_block_comment, - [134514] = 5, + [136378] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6722), 1, - anon_sym_SEMI, - ACTIONS(6725), 1, - anon_sym_RBRACK, - STATE(3804), 3, + ACTIONS(6800), 1, + anon_sym_COMMA, + ACTIONS(6802), 1, + anon_sym_RPAREN, + STATE(4005), 1, + aux_sym_type_parameters_repeat1, + STATE(3881), 2, sym_line_comment, sym_block_comment, - aux_sym_attribute_repeat1, - [134532] = 6, + [136398] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3488), 1, - anon_sym_SEMI, - ACTIONS(5188), 1, + ACTIONS(4060), 1, + anon_sym_LBRACE, + ACTIONS(5184), 1, anon_sym_COMMA, - STATE(3792), 1, + STATE(3978), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3805), 2, + STATE(3882), 2, + sym_line_comment, + sym_block_comment, + [136418] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6665), 1, + sym_identifier, + ACTIONS(6804), 1, + anon_sym_LPAREN, + STATE(1526), 1, + sym_const_definition, + STATE(3883), 2, sym_line_comment, sym_block_comment, - [134552] = 6, + [136438] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(6657), 1, anon_sym_COMMA, - ACTIONS(6727), 1, + ACTIONS(6806), 1, anon_sym_RPAREN, - STATE(3982), 1, + STATE(3874), 1, aux_sym_type_parameter_list_repeat1, - STATE(3806), 2, + STATE(3884), 2, sym_line_comment, sym_block_comment, - [134572] = 6, + [136458] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4575), 1, - sym_identifier, - ACTIONS(6729), 1, - anon_sym_static, - ACTIONS(6731), 1, - anon_sym_volatile, - STATE(3807), 2, + ACTIONS(6808), 1, + anon_sym_COMMA, + ACTIONS(6810), 1, + anon_sym_RPAREN, + STATE(3972), 1, + aux_sym_type_parameters_repeat1, + STATE(3885), 2, sym_line_comment, sym_block_comment, - [134592] = 6, + [136478] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(6812), 1, anon_sym_COMMA, - ACTIONS(6733), 1, + ACTIONS(6815), 1, anon_sym_RPAREN, - STATE(3766), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3808), 2, + STATE(3886), 3, sym_line_comment, sym_block_comment, - [134612] = 6, + aux_sym_parameter_list_repeat1, + [136496] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, + ACTIONS(6817), 1, anon_sym_COMMA, - ACTIONS(6735), 1, + ACTIONS(6819), 1, anon_sym_RPAREN, - STATE(3767), 1, - aux_sym_parameter_list_repeat1, - STATE(3809), 2, + STATE(3997), 1, + aux_sym_type_parameters_repeat1, + STATE(3887), 2, sym_line_comment, sym_block_comment, - [134632] = 6, + [136516] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5668), 1, - anon_sym_RPAREN, - ACTIONS(6737), 1, - anon_sym_COMMA, - STATE(3637), 1, - aux_sym_type_parameters_repeat1, - STATE(3810), 2, + ACTIONS(6821), 1, + sym_identifier, + ACTIONS(6823), 1, + anon_sym_LBRACE, + STATE(2352), 1, + sym__content_block, + STATE(3888), 2, sym_line_comment, sym_block_comment, - [134652] = 6, + [136536] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6630), 1, + ACTIONS(6697), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6739), 1, + ACTIONS(6825), 1, anon_sym_SQUOTE, - STATE(3796), 1, + STATE(3896), 1, aux_sym_raw_string_literal_repeat1, - STATE(3811), 2, + STATE(3889), 2, sym_line_comment, sym_block_comment, - [134672] = 6, + [136556] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6741), 1, + ACTIONS(6665), 1, sym_identifier, - ACTIONS(6743), 1, - anon_sym_LBRACE, - STATE(2250), 1, - sym__content_block, - STATE(3812), 2, + ACTIONS(6827), 1, + anon_sym_LPAREN, + STATE(1499), 1, + sym_const_definition, + STATE(3890), 2, + sym_line_comment, + sym_block_comment, + [136576] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6699), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6825), 1, + anon_sym_DQUOTE, + STATE(3901), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3891), 2, sym_line_comment, sym_block_comment, - [134692] = 6, + [136596] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, + ACTIONS(4060), 1, + anon_sym_SEMI, + ACTIONS(5186), 1, anon_sym_COMMA, - ACTIONS(6745), 1, - anon_sym_RBRACK, - STATE(3797), 1, - aux_sym_type_parameters_repeat1, - STATE(3813), 2, + STATE(3853), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3892), 2, sym_line_comment, sym_block_comment, - [134712] = 6, + [136616] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6747), 1, - anon_sym_COMMA, - ACTIONS(6749), 1, - anon_sym_RBRACK, - STATE(3889), 1, - aux_sym_capture_list_repeat1, - STATE(3814), 2, + STATE(3893), 2, sym_line_comment, sym_block_comment, - [134732] = 6, + ACTIONS(6829), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [136632] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6751), 1, + ACTIONS(6407), 1, anon_sym_COMMA, - ACTIONS(6753), 1, - anon_sym_RPAREN, - STATE(3908), 1, + ACTIONS(6831), 1, + anon_sym_RBRACK, + STATE(3728), 1, aux_sym_type_parameters_repeat1, - STATE(3815), 2, + STATE(3894), 2, sym_line_comment, sym_block_comment, - [134752] = 6, + [136652] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, + ACTIONS(6833), 1, anon_sym_COMMA, - ACTIONS(6755), 1, - anon_sym_RBRACK, - STATE(3637), 1, + ACTIONS(6835), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_type_parameters_repeat1, - STATE(3816), 2, + STATE(3895), 2, sym_line_comment, sym_block_comment, - [134772] = 6, + [136672] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6630), 1, + ACTIONS(6697), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6757), 1, + ACTIONS(6837), 1, anon_sym_SQUOTE, - STATE(3845), 1, + STATE(3953), 1, aux_sym_raw_string_literal_repeat1, - STATE(3817), 2, + STATE(3896), 2, sym_line_comment, sym_block_comment, - [134792] = 6, + [136692] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6628), 1, + ACTIONS(6697), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6839), 1, + anon_sym_SQUOTE, + STATE(3953), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3897), 2, + sym_line_comment, + sym_block_comment, + [136712] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6699), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6757), 1, + ACTIONS(6839), 1, anon_sym_DQUOTE, - STATE(3846), 1, + STATE(3954), 1, aux_sym_raw_string_literal_repeat2, - STATE(3818), 2, + STATE(3898), 2, sym_line_comment, sym_block_comment, - [134812] = 6, + [136732] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6644), 1, + ACTIONS(6841), 1, anon_sym_COMMA, - ACTIONS(6759), 1, - anon_sym_PIPE, - STATE(3770), 1, - aux_sym_short_lambda_repeat1, - STATE(3819), 2, + ACTIONS(6843), 1, + anon_sym_RPAREN, + STATE(4022), 1, + aux_sym_type_parameters_repeat1, + STATE(3899), 2, + sym_line_comment, + sym_block_comment, + [136752] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6699), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6845), 1, + anon_sym_DQUOTE, + STATE(3849), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3900), 2, + sym_line_comment, + sym_block_comment, + [136772] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6699), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6837), 1, + anon_sym_DQUOTE, + STATE(3954), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3901), 2, sym_line_comment, sym_block_comment, - [134832] = 6, + [136792] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6761), 1, + ACTIONS(6407), 1, anon_sym_COMMA, - ACTIONS(6763), 1, - anon_sym_RPAREN, - STATE(3857), 1, + ACTIONS(6847), 1, + anon_sym_RBRACK, + STATE(3728), 1, aux_sym_type_parameters_repeat1, - STATE(3820), 2, + STATE(3902), 2, + sym_line_comment, + sym_block_comment, + [136812] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6697), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6845), 1, + anon_sym_SQUOTE, + STATE(3850), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3903), 2, sym_line_comment, sym_block_comment, - [134852] = 6, + [136832] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, + ACTIONS(6661), 1, anon_sym_COMMA, - ACTIONS(6765), 1, + ACTIONS(6849), 1, anon_sym_RPAREN, - STATE(3983), 1, + STATE(3916), 1, aux_sym_parameter_list_repeat1, - STATE(3821), 2, + STATE(3904), 2, sym_line_comment, sym_block_comment, - [134872] = 5, + [136852] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6769), 1, - anon_sym_COLON, - ACTIONS(6767), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - STATE(3822), 2, + ACTIONS(6657), 1, + anon_sym_COMMA, + ACTIONS(6851), 1, + anon_sym_RPAREN, + STATE(3815), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3905), 2, sym_line_comment, sym_block_comment, - [134890] = 6, + [136872] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5654), 1, + ACTIONS(6853), 1, + sym_identifier, + ACTIONS(6855), 1, + anon_sym_LBRACE, + STATE(2565), 1, + sym__content_block, + STATE(3906), 2, + sym_line_comment, + sym_block_comment, + [136892] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3907), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6857), 3, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + [136908] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5712), 1, anon_sym_RPAREN, - ACTIONS(6771), 1, + ACTIONS(6859), 1, anon_sym_COMMA, - STATE(3637), 1, + STATE(3728), 1, aux_sym_type_parameters_repeat1, - STATE(3823), 2, + STATE(3908), 2, sym_line_comment, sym_block_comment, - [134910] = 6, - ACTIONS(497), 1, + [136928] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6630), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6773), 1, - anon_sym_SQUOTE, - STATE(3993), 1, - aux_sym_raw_string_literal_repeat1, - STATE(3824), 2, + ACTIONS(5674), 1, + anon_sym_RPAREN, + ACTIONS(6861), 1, + anon_sym_COMMA, + STATE(3728), 1, + aux_sym_type_parameters_repeat1, + STATE(3909), 2, sym_line_comment, sym_block_comment, - [134930] = 6, + [136948] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4014), 1, - anon_sym_SEMI, - ACTIONS(5188), 1, + ACTIONS(6661), 1, anon_sym_COMMA, - STATE(3929), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3825), 2, + ACTIONS(6863), 1, + anon_sym_RPAREN, + STATE(3934), 1, + aux_sym_parameter_list_repeat1, + STATE(3910), 2, sym_line_comment, sym_block_comment, - [134950] = 6, + [136968] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6775), 1, + ACTIONS(6657), 1, anon_sym_COMMA, - ACTIONS(6777), 1, + ACTIONS(6865), 1, anon_sym_RPAREN, - STATE(3959), 1, - aux_sym_type_parameters_repeat1, - STATE(3826), 2, + STATE(3935), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3911), 2, sym_line_comment, sym_block_comment, - [134970] = 6, + [136988] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6779), 1, - anon_sym_COMMA, - ACTIONS(6781), 1, - anon_sym_RPAREN, - STATE(3936), 1, - aux_sym_type_parameters_repeat1, - STATE(3827), 2, + ACTIONS(6867), 1, + sym_identifier, + ACTIONS(6869), 1, + anon_sym_LBRACE, + STATE(2914), 1, + sym__content_block, + STATE(3912), 2, sym_line_comment, sym_block_comment, - [134990] = 6, + [137008] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5648), 1, + ACTIONS(5654), 1, anon_sym_RPAREN, - ACTIONS(6783), 1, + ACTIONS(6871), 1, anon_sym_COMMA, - STATE(3637), 1, + STATE(3728), 1, aux_sym_type_parameters_repeat1, - STATE(3828), 2, + STATE(3913), 2, sym_line_comment, sym_block_comment, - [135010] = 6, + [137028] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6785), 1, + ACTIONS(6407), 1, anon_sym_COMMA, - ACTIONS(6787), 1, - anon_sym_RPAREN, - STATE(3810), 1, + ACTIONS(6873), 1, + anon_sym_RBRACK, + STATE(3925), 1, aux_sym_type_parameters_repeat1, - STATE(3829), 2, + STATE(3914), 2, sym_line_comment, sym_block_comment, - [135030] = 6, - ACTIONS(497), 1, + [137048] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6628), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6773), 1, - anon_sym_DQUOTE, - STATE(3988), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3830), 2, + ACTIONS(6661), 1, + anon_sym_COMMA, + ACTIONS(6875), 1, + anon_sym_RPAREN, + STATE(3992), 1, + aux_sym_parameter_list_repeat1, + STATE(3915), 2, sym_line_comment, sym_block_comment, - [135050] = 6, + [137068] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6789), 1, - sym_identifier, - ACTIONS(6791), 1, - anon_sym_LBRACE, - STATE(2326), 1, - sym__content_block, - STATE(3831), 2, + ACTIONS(6661), 1, + anon_sym_COMMA, + ACTIONS(6877), 1, + anon_sym_RPAREN, + STATE(3886), 1, + aux_sym_parameter_list_repeat1, + STATE(3916), 2, sym_line_comment, sym_block_comment, - [135070] = 5, + [137088] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6793), 1, + STATE(4005), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(6879), 2, anon_sym_COMMA, - ACTIONS(6796), 1, - anon_sym_in, - STATE(3832), 3, + anon_sym_RPAREN, + STATE(3917), 2, sym_line_comment, sym_block_comment, - aux_sym_var_definition_list_repeat1, - [135088] = 6, + [137106] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4787), 1, + ACTIONS(6657), 1, anon_sym_COMMA, - ACTIONS(6798), 1, - anon_sym_COLON_EQ, - STATE(3774), 1, - aux_sym_identifier_list_repeat1, - STATE(3833), 2, + ACTIONS(6881), 1, + anon_sym_RPAREN, + STATE(3993), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3918), 2, sym_line_comment, sym_block_comment, - [135108] = 6, + [137126] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6800), 1, - sym_identifier, - ACTIONS(6802), 1, - anon_sym_LBRACE, - STATE(1698), 1, - sym__content_block, - STATE(3834), 2, + STATE(3919), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6883), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACK, + [137142] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6697), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6885), 1, + anon_sym_SQUOTE, + STATE(3968), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3920), 2, + sym_line_comment, + sym_block_comment, + [137162] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6699), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6885), 1, + anon_sym_DQUOTE, + STATE(3969), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3921), 2, sym_line_comment, sym_block_comment, - [135128] = 6, + [137182] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4007), 1, - anon_sym_LBRACE, - ACTIONS(5160), 1, + ACTIONS(6887), 1, anon_sym_COMMA, - STATE(3869), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3835), 2, + ACTIONS(6889), 1, + anon_sym_RBRACK, + STATE(4001), 1, + aux_sym_capture_list_repeat1, + STATE(3922), 2, sym_line_comment, sym_block_comment, - [135148] = 6, - ACTIONS(497), 1, + [137202] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6630), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6804), 1, - anon_sym_SQUOTE, - STATE(3841), 1, - aux_sym_raw_string_literal_repeat1, - STATE(3836), 2, + ACTIONS(6891), 1, + anon_sym_COMMA, + ACTIONS(6893), 1, + anon_sym_RPAREN, + STATE(4064), 1, + aux_sym_type_parameters_repeat1, + STATE(3923), 2, sym_line_comment, sym_block_comment, - [135168] = 6, + [137222] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6628), 1, + ACTIONS(6699), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6804), 1, + ACTIONS(6738), 1, anon_sym_DQUOTE, - STATE(3843), 1, + STATE(3848), 1, aux_sym_raw_string_literal_repeat2, - STATE(3837), 2, + STATE(3924), 2, sym_line_comment, sym_block_comment, - [135188] = 6, + [137242] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(6407), 1, anon_sym_COMMA, - ACTIONS(6806), 1, - anon_sym_RPAREN, - STATE(3802), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3838), 2, + ACTIONS(6895), 1, + anon_sym_RBRACK, + STATE(3728), 1, + aux_sym_type_parameters_repeat1, + STATE(3925), 2, sym_line_comment, sym_block_comment, - [135208] = 6, + [137262] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, + ACTIONS(6657), 1, anon_sym_COMMA, - ACTIONS(6808), 1, + ACTIONS(6897), 1, anon_sym_RPAREN, - STATE(3803), 1, - aux_sym_parameter_list_repeat1, - STATE(3839), 2, + STATE(4043), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3926), 2, sym_line_comment, sym_block_comment, - [135228] = 6, + [137282] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6810), 1, + ACTIONS(6899), 1, sym_identifier, - ACTIONS(6812), 1, + ACTIONS(6901), 1, anon_sym_LBRACE, - STATE(1206), 1, + STATE(1222), 1, sym__content_block, - STATE(3840), 2, - sym_line_comment, - sym_block_comment, - [135248] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6630), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6814), 1, - anon_sym_SQUOTE, - STATE(3993), 1, - aux_sym_raw_string_literal_repeat1, - STATE(3841), 2, + STATE(3927), 2, sym_line_comment, sym_block_comment, - [135268] = 6, + [137302] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5660), 1, - anon_sym_RPAREN, - ACTIONS(6816), 1, + ACTIONS(6903), 1, anon_sym_COMMA, - STATE(3637), 1, + ACTIONS(6905), 1, + anon_sym_RPAREN, + STATE(3820), 1, aux_sym_type_parameters_repeat1, - STATE(3842), 2, + STATE(3928), 2, sym_line_comment, sym_block_comment, - [135288] = 6, - ACTIONS(497), 1, + [137322] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6628), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6814), 1, - anon_sym_DQUOTE, - STATE(3988), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3843), 2, + ACTIONS(6407), 1, + anon_sym_COMMA, + ACTIONS(6907), 1, + anon_sym_RBRACK, + STATE(3945), 1, + aux_sym_type_parameters_repeat1, + STATE(3929), 2, sym_line_comment, sym_block_comment, - [135308] = 6, + [137342] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, - anon_sym_COMMA, - ACTIONS(6818), 1, - anon_sym_RPAREN, - STATE(3901), 1, - aux_sym_parameter_list_repeat1, - STATE(3844), 2, + ACTIONS(6909), 1, + sym_identifier, + ACTIONS(6911), 1, + anon_sym_LBRACE, + STATE(1339), 1, + sym__content_block, + STATE(3930), 2, sym_line_comment, sym_block_comment, - [135328] = 6, + [137362] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6630), 1, + ACTIONS(6697), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6820), 1, + ACTIONS(6913), 1, anon_sym_SQUOTE, - STATE(3993), 1, + STATE(3936), 1, aux_sym_raw_string_literal_repeat1, - STATE(3845), 2, + STATE(3931), 2, sym_line_comment, sym_block_comment, - [135348] = 6, + [137382] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6628), 1, + ACTIONS(6699), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6820), 1, + ACTIONS(6913), 1, anon_sym_DQUOTE, - STATE(3988), 1, + STATE(3940), 1, aux_sym_raw_string_literal_repeat2, - STATE(3846), 2, + STATE(3932), 2, sym_line_comment, sym_block_comment, - [135368] = 6, + [137402] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, + ACTIONS(6915), 1, anon_sym_COMMA, - ACTIONS(6822), 1, + ACTIONS(6917), 1, anon_sym_RPAREN, - STATE(3876), 1, - aux_sym_parameter_list_repeat1, - STATE(3847), 2, + STATE(3913), 1, + aux_sym_type_parameters_repeat1, + STATE(3933), 2, sym_line_comment, sym_block_comment, - [135388] = 4, + [137422] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3848), 2, + ACTIONS(6661), 1, + anon_sym_COMMA, + ACTIONS(6919), 1, + anon_sym_RPAREN, + STATE(3886), 1, + aux_sym_parameter_list_repeat1, + STATE(3934), 2, sym_line_comment, sym_block_comment, - ACTIONS(6824), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACK, - [135404] = 6, + [137442] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(6657), 1, anon_sym_COMMA, - ACTIONS(6826), 1, + ACTIONS(6921), 1, anon_sym_RPAREN, - STATE(3863), 1, + STATE(3874), 1, aux_sym_type_parameter_list_repeat1, - STATE(3849), 2, - sym_line_comment, - sym_block_comment, - [135424] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(3850), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3913), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [135440] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6828), 1, - sym_identifier, - ACTIONS(6830), 1, - anon_sym_LBRACE, - STATE(459), 1, - sym__content_block, - STATE(3851), 2, - sym_line_comment, - sym_block_comment, - [135460] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6832), 1, - sym_identifier, - ACTIONS(6834), 1, - anon_sym_LBRACE, - STATE(2357), 1, - sym__struct_body, - STATE(3852), 2, + STATE(3935), 2, sym_line_comment, sym_block_comment, - [135480] = 4, - ACTIONS(3), 1, + [137462] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3853), 2, + ACTIONS(6697), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6923), 1, + anon_sym_SQUOTE, + STATE(3953), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3936), 2, sym_line_comment, sym_block_comment, - ACTIONS(6320), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [135496] = 6, + [137482] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6628), 1, + ACTIONS(6699), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6836), 1, + ACTIONS(6925), 1, anon_sym_DQUOTE, - STATE(3830), 1, + STATE(3954), 1, aux_sym_raw_string_literal_repeat2, - STATE(3854), 2, + STATE(3937), 2, sym_line_comment, sym_block_comment, - [135516] = 6, + [137502] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6630), 1, + ACTIONS(6697), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6836), 1, + ACTIONS(6925), 1, anon_sym_SQUOTE, - STATE(3824), 1, + STATE(3953), 1, aux_sym_raw_string_literal_repeat1, - STATE(3855), 2, - sym_line_comment, - sym_block_comment, - [135536] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6838), 1, - sym_identifier, - ACTIONS(6840), 1, - anon_sym_LBRACE, - STATE(2077), 1, - sym__content_block, - STATE(3856), 2, + STATE(3938), 2, sym_line_comment, sym_block_comment, - [135556] = 6, + [137522] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5656), 1, - anon_sym_RPAREN, - ACTIONS(6842), 1, + ACTIONS(6376), 1, anon_sym_COMMA, - STATE(3637), 1, + ACTIONS(6378), 1, + anon_sym_RPAREN, + STATE(3908), 1, aux_sym_type_parameters_repeat1, - STATE(3857), 2, + STATE(3939), 2, sym_line_comment, sym_block_comment, - [135576] = 6, - ACTIONS(3), 1, + [137542] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, - anon_sym_COMMA, - ACTIONS(6844), 1, - anon_sym_RPAREN, - STATE(3882), 1, - aux_sym_parameter_list_repeat1, - STATE(3858), 2, + ACTIONS(6699), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6923), 1, + anon_sym_DQUOTE, + STATE(3954), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3940), 2, sym_line_comment, sym_block_comment, - [135596] = 6, + [137562] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, - anon_sym_COMMA, - ACTIONS(6846), 1, + ACTIONS(5710), 1, anon_sym_RPAREN, - STATE(3883), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3859), 2, + ACTIONS(6927), 1, + anon_sym_COMMA, + STATE(3728), 1, + aux_sym_type_parameters_repeat1, + STATE(3941), 2, sym_line_comment, sym_block_comment, - [135616] = 5, + [137582] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3534), 1, - anon_sym_COLON_EQ, - ACTIONS(6848), 1, + ACTIONS(6929), 1, anon_sym_COMMA, - STATE(3860), 3, + ACTIONS(6932), 1, + anon_sym_in, + STATE(3942), 3, sym_line_comment, sym_block_comment, - aux_sym_strictly_expression_list_repeat1, - [135634] = 6, + aux_sym_var_definition_list_repeat1, + [137600] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, + ACTIONS(6934), 1, anon_sym_COMMA, - ACTIONS(6851), 1, - anon_sym_RBRACK, - STATE(3867), 1, - aux_sym_type_parameters_repeat1, - STATE(3861), 2, + ACTIONS(6936), 1, + anon_sym_PIPE, + STATE(3977), 1, + aux_sym_short_lambda_repeat1, + STATE(3943), 2, sym_line_comment, sym_block_comment, - [135654] = 6, + [137620] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4014), 1, - anon_sym_LBRACE, - ACTIONS(5160), 1, + ACTIONS(6661), 1, anon_sym_COMMA, - STATE(3869), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3862), 2, + ACTIONS(6938), 1, + anon_sym_RPAREN, + STATE(3950), 1, + aux_sym_parameter_list_repeat1, + STATE(3944), 2, sym_line_comment, sym_block_comment, - [135674] = 6, + [137640] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(6407), 1, anon_sym_COMMA, - ACTIONS(6853), 1, - anon_sym_RPAREN, - STATE(3799), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3863), 2, + ACTIONS(6940), 1, + anon_sym_RBRACK, + STATE(3728), 1, + aux_sym_type_parameters_repeat1, + STATE(3945), 2, sym_line_comment, sym_block_comment, - [135694] = 6, + [137660] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(6657), 1, anon_sym_COMMA, - ACTIONS(6855), 1, + ACTIONS(6942), 1, anon_sym_RPAREN, - STATE(3924), 1, + STATE(4009), 1, aux_sym_type_parameter_list_repeat1, - STATE(3864), 2, - sym_line_comment, - sym_block_comment, - [135714] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6688), 1, - sym_identifier, - ACTIONS(6857), 1, - anon_sym_LPAREN, - STATE(1481), 1, - sym_const_definition, - STATE(3865), 2, + STATE(3946), 2, sym_line_comment, sym_block_comment, - [135734] = 6, + [137680] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_COMMA, - ACTIONS(5861), 1, - anon_sym_LBRACE, - STATE(3871), 1, - aux_sym_expression_without_blocks_list_repeat1, - STATE(3866), 2, + ACTIONS(6762), 1, + anon_sym_SEMI, + ACTIONS(6944), 1, + anon_sym_RBRACK, + STATE(4023), 1, + aux_sym_attribute_repeat1, + STATE(3947), 2, sym_line_comment, sym_block_comment, - [135754] = 6, + [137700] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, + ACTIONS(6407), 1, anon_sym_COMMA, - ACTIONS(6859), 1, + ACTIONS(6946), 1, anon_sym_RBRACK, - STATE(3637), 1, + STATE(3957), 1, aux_sym_type_parameters_repeat1, - STATE(3867), 2, + STATE(3948), 2, sym_line_comment, sym_block_comment, - [135774] = 6, + [137720] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5234), 1, - anon_sym_COMMA, - ACTIONS(6861), 1, + ACTIONS(4053), 1, anon_sym_LBRACE, - STATE(3775), 1, - aux_sym_match_expression_list_repeat1, - STATE(3868), 2, + ACTIONS(5184), 1, + anon_sym_COMMA, + STATE(3978), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3949), 2, sym_line_comment, sym_block_comment, - [135794] = 5, + [137740] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3534), 1, - anon_sym_LBRACE, - ACTIONS(6863), 1, + ACTIONS(6661), 1, anon_sym_COMMA, - STATE(3869), 3, + ACTIONS(6948), 1, + anon_sym_RPAREN, + STATE(3886), 1, + aux_sym_parameter_list_repeat1, + STATE(3950), 2, sym_line_comment, sym_block_comment, - aux_sym_strictly_expression_list_repeat1, - [135812] = 6, + [137760] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6866), 1, - anon_sym_DOT, - ACTIONS(6868), 1, - anon_sym_RBRACE, - ACTIONS(6870), 1, - aux_sym_format_specifier_token1, - STATE(3870), 2, + ACTIONS(4809), 1, + anon_sym_COMMA, + ACTIONS(4811), 1, + anon_sym_COLON_EQ, + STATE(4044), 1, + aux_sym_identifier_list_repeat1, + STATE(3951), 2, sym_line_comment, sym_block_comment, - [135832] = 5, + [137780] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4830), 1, + ACTIONS(5350), 1, anon_sym_LBRACE, - ACTIONS(6872), 1, + ACTIONS(6950), 1, anon_sym_COMMA, - STATE(3871), 3, + STATE(3952), 3, sym_line_comment, sym_block_comment, - aux_sym_expression_without_blocks_list_repeat1, - [135850] = 6, - ACTIONS(3), 1, + aux_sym_match_expression_list_repeat1, + [137798] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5234), 1, - anon_sym_COMMA, - STATE(3782), 1, - aux_sym_match_expression_list_repeat1, - STATE(3872), 2, + ACTIONS(6953), 1, + anon_sym_SQUOTE, + ACTIONS(6955), 1, + aux_sym_raw_string_literal_token1, + STATE(3953), 3, sym_line_comment, sym_block_comment, - [135870] = 6, + aux_sym_raw_string_literal_repeat1, + [137816] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6628), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6711), 1, + ACTIONS(6958), 1, anon_sym_DQUOTE, - STATE(3988), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3873), 2, + ACTIONS(6960), 1, + aux_sym_raw_string_literal_token2, + STATE(3954), 3, sym_line_comment, sym_block_comment, - [135890] = 5, + aux_sym_raw_string_literal_repeat2, + [137834] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2623), 1, - sym_type_initializer_body, - ACTIONS(6875), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(3874), 2, + ACTIONS(6356), 1, + sym_identifier, + ACTIONS(6358), 1, + anon_sym_mut, + STATE(4071), 1, + sym_var_definition, + STATE(3955), 2, sym_line_comment, sym_block_comment, - [135908] = 5, + [137854] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6877), 1, + ACTIONS(6784), 1, anon_sym_COMMA, - ACTIONS(6880), 1, - anon_sym_PIPE, - STATE(3875), 3, + ACTIONS(6963), 1, + anon_sym_in, + STATE(3942), 1, + aux_sym_var_definition_list_repeat1, + STATE(3956), 2, sym_line_comment, sym_block_comment, - aux_sym_short_lambda_repeat1, - [135926] = 6, + [137874] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, + ACTIONS(6407), 1, anon_sym_COMMA, - ACTIONS(6882), 1, - anon_sym_RPAREN, - STATE(3801), 1, - aux_sym_parameter_list_repeat1, - STATE(3876), 2, + ACTIONS(6965), 1, + anon_sym_RBRACK, + STATE(3728), 1, + aux_sym_type_parameters_repeat1, + STATE(3957), 2, sym_line_comment, sym_block_comment, - [135946] = 6, + [137894] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, - anon_sym_COMMA, - ACTIONS(6884), 1, + ACTIONS(6967), 1, + anon_sym_QMARK, + ACTIONS(5222), 2, + anon_sym_SEMI, anon_sym_RBRACK, - STATE(3893), 1, - aux_sym_type_parameters_repeat1, - STATE(3877), 2, + STATE(3958), 2, sym_line_comment, sym_block_comment, - [135966] = 6, - ACTIONS(497), 1, + [137912] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6628), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6886), 1, - anon_sym_DQUOTE, - STATE(3988), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3878), 2, + ACTIONS(6657), 1, + anon_sym_COMMA, + ACTIONS(6969), 1, + anon_sym_RPAREN, + STATE(3874), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3959), 2, sym_line_comment, sym_block_comment, - [135986] = 6, + [137932] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6888), 1, - anon_sym_COMMA, - ACTIONS(6890), 1, - anon_sym_RPAREN, - STATE(3823), 1, - aux_sym_type_parameters_repeat1, - STATE(3879), 2, + ACTIONS(6971), 1, + sym_identifier, + ACTIONS(6973), 1, + anon_sym_PIPE, + STATE(4058), 1, + sym_reference_expression, + STATE(3960), 2, sym_line_comment, sym_block_comment, - [136006] = 6, + [137952] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4007), 1, - anon_sym_COLON_EQ, - ACTIONS(5006), 1, - anon_sym_COMMA, - STATE(3860), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3880), 2, + ACTIONS(6975), 1, + sym_identifier, + ACTIONS(6977), 1, + anon_sym_LBRACE, + STATE(2821), 1, + sym__content_block, + STATE(3961), 2, sym_line_comment, sym_block_comment, - [136026] = 6, + [137972] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5670), 1, - anon_sym_RPAREN, - ACTIONS(6892), 1, + ACTIONS(6661), 1, anon_sym_COMMA, - STATE(3637), 1, - aux_sym_type_parameters_repeat1, - STATE(3881), 2, + ACTIONS(6979), 1, + anon_sym_RPAREN, + STATE(3886), 1, + aux_sym_parameter_list_repeat1, + STATE(3962), 2, sym_line_comment, sym_block_comment, - [136046] = 6, + [137992] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, + ACTIONS(6981), 1, anon_sym_COMMA, - ACTIONS(6894), 1, + ACTIONS(6983), 1, anon_sym_RPAREN, - STATE(3801), 1, - aux_sym_parameter_list_repeat1, - STATE(3882), 2, + STATE(3909), 1, + aux_sym_type_parameters_repeat1, + STATE(3963), 2, sym_line_comment, sym_block_comment, - [136066] = 6, + [138012] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(6407), 1, anon_sym_COMMA, - ACTIONS(6896), 1, - anon_sym_RPAREN, - STATE(3799), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3883), 2, + ACTIONS(6409), 1, + anon_sym_RBRACK, + STATE(4052), 1, + aux_sym_type_parameters_repeat1, + STATE(3964), 2, sym_line_comment, sym_block_comment, - [136086] = 6, - ACTIONS(497), 1, + [138032] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6630), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6898), 1, - anon_sym_SQUOTE, - STATE(3906), 1, - aux_sym_raw_string_literal_repeat1, - STATE(3884), 2, + ACTIONS(6407), 1, + anon_sym_COMMA, + ACTIONS(6985), 1, + anon_sym_RBRACK, + STATE(3875), 1, + aux_sym_type_parameters_repeat1, + STATE(3965), 2, sym_line_comment, sym_block_comment, - [136106] = 6, + [138052] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6630), 1, + ACTIONS(6697), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6886), 1, + ACTIONS(6987), 1, anon_sym_SQUOTE, - STATE(3993), 1, + STATE(3994), 1, aux_sym_raw_string_literal_repeat1, - STATE(3885), 2, + STATE(3966), 2, sym_line_comment, sym_block_comment, - [136126] = 4, - ACTIONS(3), 1, + [138072] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3886), 2, + ACTIONS(6699), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6987), 1, + anon_sym_DQUOTE, + STATE(3995), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3967), 2, sym_line_comment, sym_block_comment, - ACTIONS(6105), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [136142] = 6, - ACTIONS(3), 1, + [138092] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3488), 1, - anon_sym_LBRACE, - ACTIONS(5160), 1, - anon_sym_COMMA, - STATE(3835), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3887), 2, + ACTIONS(6697), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6989), 1, + anon_sym_SQUOTE, + STATE(3953), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3968), 2, sym_line_comment, sym_block_comment, - [136162] = 6, + [138112] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6628), 1, + ACTIONS(6699), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6898), 1, + ACTIONS(6989), 1, anon_sym_DQUOTE, - STATE(3907), 1, + STATE(3954), 1, aux_sym_raw_string_literal_repeat2, - STATE(3888), 2, - sym_line_comment, - sym_block_comment, - [136182] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6213), 1, - anon_sym_RBRACK, - ACTIONS(6900), 1, - anon_sym_COMMA, - STATE(3789), 1, - aux_sym_capture_list_repeat1, - STATE(3889), 2, + STATE(3969), 2, sym_line_comment, sym_block_comment, - [136202] = 6, + [138132] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, + ACTIONS(6991), 1, anon_sym_COMMA, - ACTIONS(6902), 1, + ACTIONS(6993), 1, anon_sym_RPAREN, - STATE(3897), 1, - aux_sym_parameter_list_repeat1, - STATE(3890), 2, + STATE(4038), 1, + aux_sym_type_parameters_repeat1, + STATE(3970), 2, sym_line_comment, sym_block_comment, - [136222] = 4, + [138152] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3891), 2, + ACTIONS(4591), 1, + sym_identifier, + ACTIONS(6995), 1, + anon_sym_static, + ACTIONS(6997), 1, + anon_sym_volatile, + STATE(3971), 2, sym_line_comment, sym_block_comment, - ACTIONS(6904), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [136238] = 6, + [138172] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, + ACTIONS(5660), 1, + anon_sym_RPAREN, + ACTIONS(6999), 1, anon_sym_COMMA, - ACTIONS(6906), 1, - anon_sym_RBRACK, - STATE(3637), 1, + STATE(3728), 1, aux_sym_type_parameters_repeat1, - STATE(3892), 2, + STATE(3972), 2, sym_line_comment, sym_block_comment, - [136258] = 6, + [138192] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, - anon_sym_COMMA, - ACTIONS(6908), 1, - anon_sym_RBRACK, - STATE(3637), 1, - aux_sym_type_parameters_repeat1, - STATE(3893), 2, + ACTIONS(7001), 1, + sym_identifier, + ACTIONS(7003), 1, + anon_sym_LBRACE, + STATE(1063), 1, + sym__content_block, + STATE(3973), 2, sym_line_comment, sym_block_comment, - [136278] = 6, + [138212] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6679), 1, - anon_sym_SEMI, - ACTIONS(6910), 1, - anon_sym_RBRACK, - STATE(3788), 1, - aux_sym_attribute_repeat1, - STATE(3894), 2, + ACTIONS(3036), 1, + anon_sym_COMMA, + ACTIONS(5076), 1, + anon_sym_LBRACE, + STATE(2696), 1, + sym_block, + STATE(3974), 2, sym_line_comment, sym_block_comment, - [136298] = 4, + [138232] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3895), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6912), 3, + STATE(2789), 1, + sym_type_initializer_body, + ACTIONS(3040), 2, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - [136314] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6622), 1, anon_sym_COMMA, - ACTIONS(6914), 1, - anon_sym_RPAREN, - STATE(3799), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3896), 2, + STATE(3975), 2, sym_line_comment, sym_block_comment, - [136334] = 6, - ACTIONS(3), 1, + [138250] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, - anon_sym_COMMA, - ACTIONS(6916), 1, - anon_sym_RPAREN, - STATE(3801), 1, - aux_sym_parameter_list_repeat1, - STATE(3897), 2, + ACTIONS(6697), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7005), 1, + anon_sym_SQUOTE, + STATE(3990), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3976), 2, sym_line_comment, sym_block_comment, - [136354] = 6, + [138270] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5638), 1, - anon_sym_RPAREN, - ACTIONS(6918), 1, + ACTIONS(7007), 1, anon_sym_COMMA, - STATE(3637), 1, - aux_sym_type_parameters_repeat1, - STATE(3898), 2, + ACTIONS(7010), 1, + anon_sym_PIPE, + STATE(3977), 3, sym_line_comment, sym_block_comment, - [136374] = 6, + aux_sym_short_lambda_repeat1, + [138288] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, + ACTIONS(3530), 1, + anon_sym_LBRACE, + ACTIONS(7012), 1, anon_sym_COMMA, - ACTIONS(6920), 1, - anon_sym_RBRACK, - STATE(3932), 1, - aux_sym_type_parameters_repeat1, - STATE(3899), 2, - sym_line_comment, - sym_block_comment, - [136394] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(3900), 2, + STATE(3978), 3, sym_line_comment, sym_block_comment, - ACTIONS(6464), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [136410] = 6, + aux_sym_strictly_expression_list_repeat1, + [138306] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, + ACTIONS(6661), 1, anon_sym_COMMA, - ACTIONS(6922), 1, + ACTIONS(7015), 1, anon_sym_RPAREN, - STATE(3801), 1, + STATE(3816), 1, aux_sym_parameter_list_repeat1, - STATE(3901), 2, - sym_line_comment, - sym_block_comment, - [136430] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6630), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6924), 1, - anon_sym_SQUOTE, - STATE(3953), 1, - aux_sym_raw_string_literal_repeat1, - STATE(3902), 2, + STATE(3979), 2, sym_line_comment, sym_block_comment, - [136450] = 6, + [138326] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(3056), 1, anon_sym_COMMA, - ACTIONS(6926), 1, - anon_sym_RPAREN, - STATE(3799), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3903), 2, + ACTIONS(7017), 1, + anon_sym_LBRACE, + STATE(2789), 1, + sym_type_initializer_body, + STATE(3980), 2, sym_line_comment, sym_block_comment, - [136470] = 6, + [138346] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6628), 1, + ACTIONS(6699), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6924), 1, + ACTIONS(7005), 1, anon_sym_DQUOTE, - STATE(3978), 1, + STATE(3991), 1, aux_sym_raw_string_literal_repeat2, - STATE(3904), 2, + STATE(3981), 2, sym_line_comment, sym_block_comment, - [136490] = 6, + [138366] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, + STATE(2789), 1, + sym_type_initializer_body, + ACTIONS(3068), 2, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(6928), 1, - anon_sym_RPAREN, - STATE(3801), 1, - aux_sym_parameter_list_repeat1, - STATE(3905), 2, - sym_line_comment, - sym_block_comment, - [136510] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6630), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6930), 1, - anon_sym_SQUOTE, - STATE(3993), 1, - aux_sym_raw_string_literal_repeat1, - STATE(3906), 2, + STATE(3982), 2, sym_line_comment, sym_block_comment, - [136530] = 6, - ACTIONS(497), 1, + [138384] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6628), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6930), 1, - anon_sym_DQUOTE, - STATE(3988), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3907), 2, + ACTIONS(6657), 1, + anon_sym_COMMA, + ACTIONS(7019), 1, + anon_sym_RPAREN, + STATE(4012), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3983), 2, sym_line_comment, sym_block_comment, - [136550] = 6, + [138404] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5618), 1, - anon_sym_RPAREN, - ACTIONS(6932), 1, + ACTIONS(4053), 1, + anon_sym_COLON_EQ, + ACTIONS(5030), 1, anon_sym_COMMA, - STATE(3637), 1, - aux_sym_type_parameters_repeat1, - STATE(3908), 2, + STATE(3860), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3984), 2, sym_line_comment, sym_block_comment, - [136570] = 6, + [138424] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6934), 1, - sym_identifier, - ACTIONS(6936), 1, + ACTIONS(3492), 1, anon_sym_LBRACE, - STATE(2632), 1, - sym__content_block, - STATE(3909), 2, + ACTIONS(5184), 1, + anon_sym_COMMA, + STATE(3949), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3985), 2, sym_line_comment, sym_block_comment, - [136590] = 6, + [138444] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, + ACTIONS(6407), 1, anon_sym_COMMA, - ACTIONS(6938), 1, + ACTIONS(7021), 1, anon_sym_RBRACK, - STATE(3892), 1, + STATE(3728), 1, aux_sym_type_parameters_repeat1, - STATE(3910), 2, + STATE(3986), 2, sym_line_comment, sym_block_comment, - [136610] = 6, + [138464] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, - anon_sym_COMMA, - ACTIONS(6940), 1, - anon_sym_RPAREN, - STATE(3918), 1, - aux_sym_parameter_list_repeat1, - STATE(3911), 2, + STATE(3987), 2, sym_line_comment, sym_block_comment, - [136630] = 6, + ACTIONS(6540), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [138480] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6942), 1, - anon_sym_COMMA, - ACTIONS(6944), 1, - anon_sym_RPAREN, - STATE(3881), 1, - aux_sym_type_parameters_repeat1, - STATE(3912), 2, + ACTIONS(6524), 1, + anon_sym_DOT, + ACTIONS(6526), 1, + anon_sym_RBRACE, + ACTIONS(6530), 1, + aux_sym_format_specifier_token1, + STATE(3988), 2, sym_line_comment, sym_block_comment, - [136650] = 6, + [138500] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(6407), 1, anon_sym_COMMA, - ACTIONS(6946), 1, - anon_sym_RPAREN, - STATE(3919), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3913), 2, + ACTIONS(7023), 1, + anon_sym_RBRACK, + STATE(4025), 1, + aux_sym_type_parameters_repeat1, + STATE(3989), 2, sym_line_comment, sym_block_comment, - [136670] = 6, + [138520] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6630), 1, + ACTIONS(6697), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6948), 1, + ACTIONS(7025), 1, anon_sym_SQUOTE, - STATE(3942), 1, + STATE(3953), 1, aux_sym_raw_string_literal_repeat1, - STATE(3914), 2, - sym_line_comment, - sym_block_comment, - [136690] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6628), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6948), 1, - anon_sym_DQUOTE, - STATE(3943), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3915), 2, + STATE(3990), 2, sym_line_comment, sym_block_comment, - [136710] = 6, + [138540] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6628), 1, + ACTIONS(6699), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6700), 1, + ACTIONS(7025), 1, anon_sym_DQUOTE, - STATE(3988), 1, + STATE(3954), 1, aux_sym_raw_string_literal_repeat2, - STATE(3916), 2, - sym_line_comment, - sym_block_comment, - [136730] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6950), 1, - anon_sym_COMMA, - ACTIONS(6952), 1, - anon_sym_in, - STATE(3984), 1, - aux_sym_var_definition_list_repeat1, - STATE(3917), 2, + STATE(3991), 2, sym_line_comment, sym_block_comment, - [136750] = 6, + [138560] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, + ACTIONS(6661), 1, anon_sym_COMMA, - ACTIONS(6954), 1, + ACTIONS(7027), 1, anon_sym_RPAREN, - STATE(3801), 1, + STATE(3886), 1, aux_sym_parameter_list_repeat1, - STATE(3918), 2, + STATE(3992), 2, sym_line_comment, sym_block_comment, - [136770] = 6, + [138580] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(6657), 1, anon_sym_COMMA, - ACTIONS(6956), 1, + ACTIONS(7029), 1, anon_sym_RPAREN, - STATE(3799), 1, + STATE(3874), 1, aux_sym_type_parameter_list_repeat1, - STATE(3919), 2, + STATE(3993), 2, sym_line_comment, sym_block_comment, - [136790] = 6, + [138600] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6628), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6958), 1, - anon_sym_DQUOTE, - STATE(3878), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3920), 2, + ACTIONS(6697), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7031), 1, + anon_sym_SQUOTE, + STATE(3953), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3994), 2, sym_line_comment, sym_block_comment, - [136810] = 6, + [138620] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6630), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6958), 1, - anon_sym_SQUOTE, - STATE(3885), 1, - aux_sym_raw_string_literal_repeat1, - STATE(3921), 2, + ACTIONS(6699), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7031), 1, + anon_sym_DQUOTE, + STATE(3954), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3995), 2, sym_line_comment, sym_block_comment, - [136830] = 6, + [138640] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2219), 1, - anon_sym_COMMA, - ACTIONS(5050), 1, - anon_sym_LBRACE, - STATE(2700), 1, - sym_block, - STATE(3922), 2, + STATE(3996), 2, sym_line_comment, sym_block_comment, - [136850] = 5, + ACTIONS(7033), 3, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + [138656] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2623), 1, - sym_type_initializer_body, - ACTIONS(2215), 2, - anon_sym_LBRACE, + ACTIONS(5700), 1, + anon_sym_RPAREN, + ACTIONS(7035), 1, anon_sym_COMMA, - STATE(3923), 2, + STATE(3728), 1, + aux_sym_type_parameters_repeat1, + STATE(3997), 2, sym_line_comment, sym_block_comment, - [136868] = 6, + [138676] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(6661), 1, anon_sym_COMMA, - ACTIONS(6960), 1, + ACTIONS(7037), 1, anon_sym_RPAREN, - STATE(3799), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3924), 2, + STATE(4017), 1, + aux_sym_parameter_list_repeat1, + STATE(3998), 2, sym_line_comment, sym_block_comment, - [136888] = 6, + [138696] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6962), 1, - sym_identifier, - ACTIONS(6964), 1, - anon_sym_LBRACE, - STATE(2847), 1, - sym__content_block, - STATE(3925), 2, + STATE(3999), 2, sym_line_comment, sym_block_comment, - [136908] = 6, + ACTIONS(7039), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [138712] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, + ACTIONS(6657), 1, anon_sym_COMMA, - ACTIONS(6966), 1, + ACTIONS(7041), 1, + anon_sym_RPAREN, + STATE(3959), 1, + aux_sym_type_parameter_list_repeat1, + STATE(4000), 2, + sym_line_comment, + sym_block_comment, + [138732] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6296), 1, anon_sym_RBRACK, - STATE(3637), 1, - aux_sym_type_parameters_repeat1, - STATE(3926), 2, + ACTIONS(7043), 1, + anon_sym_COMMA, + STATE(3835), 1, + aux_sym_capture_list_repeat1, + STATE(4001), 2, sym_line_comment, sym_block_comment, - [136928] = 6, + [138752] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6688), 1, + ACTIONS(6665), 1, sym_identifier, - ACTIONS(6968), 1, + ACTIONS(7045), 1, anon_sym_LPAREN, - STATE(1574), 1, + STATE(1552), 1, sym_const_definition, - STATE(3927), 2, + STATE(4002), 2, sym_line_comment, sym_block_comment, - [136948] = 6, + [138772] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2211), 1, + ACTIONS(6657), 1, anon_sym_COMMA, - ACTIONS(6970), 1, - anon_sym_LBRACE, - STATE(2623), 1, - sym_type_initializer_body, - STATE(3928), 2, + ACTIONS(7047), 1, + anon_sym_RPAREN, + STATE(4018), 1, + aux_sym_type_parameter_list_repeat1, + STATE(4003), 2, sym_line_comment, sym_block_comment, - [136968] = 5, + [138792] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3534), 1, - anon_sym_SEMI, - ACTIONS(6972), 1, + ACTIONS(6661), 1, anon_sym_COMMA, - STATE(3929), 3, + ACTIONS(7049), 1, + anon_sym_RPAREN, + STATE(3962), 1, + aux_sym_parameter_list_repeat1, + STATE(4004), 2, sym_line_comment, sym_block_comment, - aux_sym_strictly_expression_list_repeat1, - [136986] = 5, + [138812] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2623), 1, - sym_type_initializer_body, - ACTIONS(2207), 2, - anon_sym_LBRACE, + ACTIONS(5680), 1, + anon_sym_RPAREN, + ACTIONS(7051), 1, anon_sym_COMMA, - STATE(3930), 2, + STATE(3728), 1, + aux_sym_type_parameters_repeat1, + STATE(4005), 2, sym_line_comment, sym_block_comment, - [137004] = 6, + [138832] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6975), 1, - anon_sym_COMMA, - ACTIONS(6977), 1, + ACTIONS(5682), 1, anon_sym_RPAREN, - STATE(3842), 1, + ACTIONS(7053), 1, + anon_sym_COMMA, + STATE(3728), 1, aux_sym_type_parameters_repeat1, - STATE(3931), 2, + STATE(4006), 2, sym_line_comment, sym_block_comment, - [137024] = 6, + [138852] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, + ACTIONS(6661), 1, anon_sym_COMMA, - ACTIONS(6979), 1, - anon_sym_RBRACK, - STATE(3637), 1, - aux_sym_type_parameters_repeat1, - STATE(3932), 2, + ACTIONS(7055), 1, + anon_sym_RPAREN, + STATE(4031), 1, + aux_sym_parameter_list_repeat1, + STATE(4007), 2, sym_line_comment, sym_block_comment, - [137044] = 6, + [138872] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(6657), 1, anon_sym_COMMA, - ACTIONS(6981), 1, + ACTIONS(7057), 1, anon_sym_RPAREN, - STATE(3903), 1, + STATE(4032), 1, aux_sym_type_parameter_list_repeat1, - STATE(3933), 2, + STATE(4008), 2, sym_line_comment, sym_block_comment, - [137064] = 6, + [138892] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, + ACTIONS(6657), 1, anon_sym_COMMA, - ACTIONS(6983), 1, + ACTIONS(7059), 1, anon_sym_RPAREN, - STATE(3905), 1, - aux_sym_parameter_list_repeat1, - STATE(3934), 2, + STATE(3874), 1, + aux_sym_type_parameter_list_repeat1, + STATE(4009), 2, sym_line_comment, sym_block_comment, - [137084] = 6, + [138912] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6985), 1, - sym_identifier, - ACTIONS(6987), 1, - anon_sym_LBRACE, - STATE(1336), 1, - sym__content_block, - STATE(3935), 2, + STATE(4010), 2, sym_line_comment, sym_block_comment, - [137104] = 6, + ACTIONS(6279), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [138928] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5642), 1, - anon_sym_RPAREN, - ACTIONS(6989), 1, + ACTIONS(7061), 1, anon_sym_COMMA, - STATE(3637), 1, + ACTIONS(7063), 1, + anon_sym_RPAREN, + STATE(3845), 1, aux_sym_type_parameters_repeat1, - STATE(3936), 2, - sym_line_comment, - sym_block_comment, - [137124] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6630), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6991), 1, - anon_sym_SQUOTE, - STATE(3952), 1, - aux_sym_raw_string_literal_repeat1, - STATE(3937), 2, - sym_line_comment, - sym_block_comment, - [137144] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6628), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6991), 1, - anon_sym_DQUOTE, - STATE(3957), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3938), 2, + STATE(4011), 2, sym_line_comment, sym_block_comment, - [137164] = 6, + [138948] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6993), 1, - sym_identifier, - ACTIONS(6995), 1, - anon_sym_LBRACE, - STATE(1042), 1, - sym__content_block, - STATE(3939), 2, + ACTIONS(6657), 1, + anon_sym_COMMA, + ACTIONS(7065), 1, + anon_sym_RPAREN, + STATE(3874), 1, + aux_sym_type_parameter_list_repeat1, + STATE(4012), 2, sym_line_comment, sym_block_comment, - [137184] = 6, + [138968] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, + ACTIONS(6407), 1, anon_sym_COMMA, - ACTIONS(6997), 1, + ACTIONS(7067), 1, anon_sym_RBRACK, - STATE(3926), 1, + STATE(4028), 1, aux_sym_type_parameters_repeat1, - STATE(3940), 2, + STATE(4013), 2, sym_line_comment, sym_block_comment, - [137204] = 6, + [138988] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, + ACTIONS(6407), 1, anon_sym_COMMA, - ACTIONS(6999), 1, + ACTIONS(7069), 1, anon_sym_RBRACK, - STATE(3637), 1, + STATE(3728), 1, aux_sym_type_parameters_repeat1, - STATE(3941), 2, - sym_line_comment, - sym_block_comment, - [137224] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6630), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7001), 1, - anon_sym_SQUOTE, - STATE(3993), 1, - aux_sym_raw_string_literal_repeat1, - STATE(3942), 2, - sym_line_comment, - sym_block_comment, - [137244] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6628), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7001), 1, - anon_sym_DQUOTE, - STATE(3988), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3943), 2, + STATE(4014), 2, sym_line_comment, sym_block_comment, - [137264] = 6, + [139008] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(6657), 1, anon_sym_COMMA, - ACTIONS(7003), 1, + ACTIONS(7071), 1, anon_sym_RPAREN, - STATE(3799), 1, + STATE(3874), 1, aux_sym_type_parameter_list_repeat1, - STATE(3944), 2, + STATE(4015), 2, sym_line_comment, sym_block_comment, - [137284] = 6, - ACTIONS(497), 1, + [139028] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6628), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7005), 1, - anon_sym_DQUOTE, - STATE(3988), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3945), 2, + ACTIONS(6661), 1, + anon_sym_COMMA, + ACTIONS(7073), 1, + anon_sym_RPAREN, + STATE(3886), 1, + aux_sym_parameter_list_repeat1, + STATE(4016), 2, sym_line_comment, sym_block_comment, - [137304] = 6, - ACTIONS(497), 1, + [139048] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6630), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7005), 1, - anon_sym_SQUOTE, - STATE(3993), 1, - aux_sym_raw_string_literal_repeat1, - STATE(3946), 2, + ACTIONS(6661), 1, + anon_sym_COMMA, + ACTIONS(7075), 1, + anon_sym_RPAREN, + STATE(3886), 1, + aux_sym_parameter_list_repeat1, + STATE(4017), 2, sym_line_comment, sym_block_comment, - [137324] = 6, + [139068] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, + ACTIONS(6657), 1, anon_sym_COMMA, - ACTIONS(7007), 1, + ACTIONS(7077), 1, anon_sym_RPAREN, - STATE(3801), 1, - aux_sym_parameter_list_repeat1, - STATE(3947), 2, + STATE(3874), 1, + aux_sym_type_parameter_list_repeat1, + STATE(4018), 2, sym_line_comment, sym_block_comment, - [137344] = 6, + [139088] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, + ACTIONS(6407), 1, anon_sym_COMMA, - ACTIONS(7009), 1, + ACTIONS(7079), 1, anon_sym_RBRACK, - STATE(3941), 1, + STATE(4014), 1, aux_sym_type_parameters_repeat1, - STATE(3948), 2, + STATE(4019), 2, sym_line_comment, sym_block_comment, - [137364] = 6, + [139108] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(6657), 1, anon_sym_COMMA, - ACTIONS(7011), 1, + ACTIONS(7081), 1, anon_sym_RPAREN, - STATE(3944), 1, + STATE(4015), 1, aux_sym_type_parameter_list_repeat1, - STATE(3949), 2, + STATE(4020), 2, sym_line_comment, sym_block_comment, - [137384] = 6, + [139128] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, + ACTIONS(6661), 1, anon_sym_COMMA, - ACTIONS(7013), 1, + ACTIONS(7083), 1, anon_sym_RPAREN, - STATE(3947), 1, + STATE(4016), 1, aux_sym_parameter_list_repeat1, - STATE(3950), 2, + STATE(4021), 2, sym_line_comment, sym_block_comment, - [137404] = 6, + [139148] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5640), 1, + ACTIONS(5694), 1, anon_sym_RPAREN, - ACTIONS(7015), 1, + ACTIONS(7085), 1, anon_sym_COMMA, - STATE(3637), 1, + STATE(3728), 1, aux_sym_type_parameters_repeat1, - STATE(3951), 2, + STATE(4022), 2, sym_line_comment, sym_block_comment, - [137424] = 6, - ACTIONS(497), 1, + [139168] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6630), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7017), 1, - anon_sym_SQUOTE, - STATE(3993), 1, - aux_sym_raw_string_literal_repeat1, - STATE(3952), 2, + ACTIONS(7087), 1, + anon_sym_SEMI, + ACTIONS(7090), 1, + anon_sym_RBRACK, + STATE(4023), 3, sym_line_comment, sym_block_comment, - [137444] = 6, + aux_sym_attribute_repeat1, + [139186] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6630), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7019), 1, - anon_sym_SQUOTE, - STATE(3993), 1, - aux_sym_raw_string_literal_repeat1, - STATE(3953), 2, + ACTIONS(6699), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7092), 1, + anon_sym_DQUOTE, + STATE(3954), 1, + aux_sym_raw_string_literal_repeat2, + STATE(4024), 2, sym_line_comment, sym_block_comment, - [137464] = 6, + [139206] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5628), 1, - anon_sym_RPAREN, - ACTIONS(7021), 1, + ACTIONS(6407), 1, anon_sym_COMMA, - STATE(3637), 1, + ACTIONS(7094), 1, + anon_sym_RBRACK, + STATE(3728), 1, aux_sym_type_parameters_repeat1, - STATE(3954), 2, + STATE(4025), 2, sym_line_comment, sym_block_comment, - [137484] = 6, + [139226] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, + ACTIONS(6407), 1, anon_sym_COMMA, - ACTIONS(7023), 1, - anon_sym_RPAREN, - STATE(3979), 1, - aux_sym_parameter_list_repeat1, - STATE(3955), 2, + ACTIONS(7096), 1, + anon_sym_RBRACK, + STATE(4042), 1, + aux_sym_type_parameters_repeat1, + STATE(4026), 2, sym_line_comment, sym_block_comment, - [137504] = 6, - ACTIONS(3), 1, + [139246] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, - anon_sym_COMMA, - ACTIONS(7025), 1, - anon_sym_RPAREN, - STATE(3980), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3956), 2, + ACTIONS(6697), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7092), 1, + anon_sym_SQUOTE, + STATE(3953), 1, + aux_sym_raw_string_literal_repeat1, + STATE(4027), 2, sym_line_comment, sym_block_comment, - [137524] = 6, - ACTIONS(497), 1, + [139266] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6628), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7017), 1, - anon_sym_DQUOTE, - STATE(3988), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3957), 2, + ACTIONS(6407), 1, + anon_sym_COMMA, + ACTIONS(7098), 1, + anon_sym_RBRACK, + STATE(3728), 1, + aux_sym_type_parameters_repeat1, + STATE(4028), 2, sym_line_comment, sym_block_comment, - [137544] = 6, + [139286] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7027), 1, + ACTIONS(6407), 1, anon_sym_COMMA, - ACTIONS(7029), 1, - anon_sym_RPAREN, - STATE(3975), 1, + ACTIONS(7100), 1, + anon_sym_RBRACK, + STATE(3728), 1, aux_sym_type_parameters_repeat1, - STATE(3958), 2, + STATE(4029), 2, sym_line_comment, sym_block_comment, - [137564] = 6, + [139306] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5624), 1, - anon_sym_RPAREN, - ACTIONS(7031), 1, + ACTIONS(6657), 1, anon_sym_COMMA, - STATE(3637), 1, - aux_sym_type_parameters_repeat1, - STATE(3959), 2, + ACTIONS(7102), 1, + anon_sym_RPAREN, + STATE(3874), 1, + aux_sym_type_parameter_list_repeat1, + STATE(4030), 2, sym_line_comment, sym_block_comment, - [137584] = 6, + [139326] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, + ACTIONS(6661), 1, anon_sym_COMMA, - ACTIONS(7033), 1, + ACTIONS(7104), 1, anon_sym_RPAREN, - STATE(3976), 1, + STATE(3886), 1, aux_sym_parameter_list_repeat1, - STATE(3960), 2, + STATE(4031), 2, sym_line_comment, sym_block_comment, - [137604] = 6, + [139346] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(6657), 1, anon_sym_COMMA, - ACTIONS(7035), 1, + ACTIONS(7106), 1, anon_sym_RPAREN, - STATE(3977), 1, + STATE(3874), 1, aux_sym_type_parameter_list_repeat1, - STATE(3961), 2, + STATE(4032), 2, sym_line_comment, sym_block_comment, - [137624] = 6, + [139366] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7037), 1, + ACTIONS(6661), 1, anon_sym_COMMA, - ACTIONS(7039), 1, + ACTIONS(7108), 1, anon_sym_RPAREN, - STATE(3951), 1, - aux_sym_type_parameters_repeat1, - STATE(3962), 2, + STATE(3886), 1, + aux_sym_parameter_list_repeat1, + STATE(4033), 2, sym_line_comment, sym_block_comment, - [137644] = 6, + [139386] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, + ACTIONS(6407), 1, anon_sym_COMMA, - ACTIONS(7041), 1, + ACTIONS(7110), 1, anon_sym_RBRACK, - STATE(3637), 1, + STATE(4029), 1, aux_sym_type_parameters_repeat1, - STATE(3963), 2, + STATE(4034), 2, sym_line_comment, sym_block_comment, - [137664] = 6, + [139406] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, + ACTIONS(7112), 1, anon_sym_COMMA, - ACTIONS(7043), 1, - anon_sym_RBRACK, - STATE(3637), 1, + ACTIONS(7114), 1, + anon_sym_RPAREN, + STATE(4006), 1, aux_sym_type_parameters_repeat1, - STATE(3964), 2, + STATE(4035), 2, sym_line_comment, sym_block_comment, - [137684] = 6, + [139426] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, + ACTIONS(6657), 1, anon_sym_COMMA, - ACTIONS(6300), 1, - anon_sym_RBRACK, - STATE(3816), 1, - aux_sym_type_parameters_repeat1, - STATE(3965), 2, + ACTIONS(7116), 1, + anon_sym_RPAREN, + STATE(4030), 1, + aux_sym_type_parameter_list_repeat1, + STATE(4036), 2, sym_line_comment, sym_block_comment, - [137704] = 6, + [139446] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(6661), 1, anon_sym_COMMA, - ACTIONS(7045), 1, + ACTIONS(7118), 1, anon_sym_RPAREN, - STATE(3799), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3966), 2, + STATE(4033), 1, + aux_sym_parameter_list_repeat1, + STATE(4037), 2, sym_line_comment, sym_block_comment, - [137724] = 6, + [139466] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6688), 1, - sym_identifier, - ACTIONS(7047), 1, - anon_sym_LPAREN, - STATE(1551), 1, - sym_const_definition, - STATE(3967), 2, + ACTIONS(5690), 1, + anon_sym_RPAREN, + ACTIONS(7120), 1, + anon_sym_COMMA, + STATE(3728), 1, + aux_sym_type_parameters_repeat1, + STATE(4038), 2, sym_line_comment, sym_block_comment, - [137744] = 6, + [139486] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7049), 1, - sym_identifier, - ACTIONS(7051), 1, - anon_sym_PIPE, - STATE(3819), 1, - sym_reference_expression, - STATE(3968), 2, + ACTIONS(5276), 1, + anon_sym_LBRACE, + ACTIONS(5278), 1, + anon_sym_COMMA, + STATE(4050), 1, + aux_sym_match_expression_list_repeat1, + STATE(4039), 2, sym_line_comment, sym_block_comment, - [137764] = 6, + [139506] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, + STATE(2789), 1, + sym_type_initializer_body, + ACTIONS(7122), 2, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(7053), 1, - anon_sym_RPAREN, - STATE(3801), 1, - aux_sym_parameter_list_repeat1, - STATE(3969), 2, + STATE(4040), 2, sym_line_comment, sym_block_comment, - [137784] = 6, + [139524] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, + ACTIONS(5278), 1, anon_sym_COMMA, - ACTIONS(7055), 1, - anon_sym_RBRACK, - STATE(3963), 1, - aux_sym_type_parameters_repeat1, - STATE(3970), 2, + ACTIONS(7124), 1, + anon_sym_LBRACE, + STATE(4047), 1, + aux_sym_match_expression_list_repeat1, + STATE(4041), 2, sym_line_comment, sym_block_comment, - [137804] = 6, + [139544] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, + ACTIONS(6407), 1, anon_sym_COMMA, - ACTIONS(7057), 1, + ACTIONS(7126), 1, anon_sym_RBRACK, - STATE(3986), 1, + STATE(3728), 1, aux_sym_type_parameters_repeat1, - STATE(3971), 2, + STATE(4042), 2, sym_line_comment, sym_block_comment, - [137824] = 6, + [139564] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(6657), 1, anon_sym_COMMA, - ACTIONS(7059), 1, + ACTIONS(7128), 1, anon_sym_RPAREN, - STATE(3966), 1, + STATE(3874), 1, aux_sym_type_parameter_list_repeat1, - STATE(3972), 2, + STATE(4043), 2, sym_line_comment, sym_block_comment, - [137844] = 6, + [139584] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, + ACTIONS(4809), 1, anon_sym_COMMA, - ACTIONS(7061), 1, - anon_sym_RPAREN, - STATE(3969), 1, - aux_sym_parameter_list_repeat1, - STATE(3973), 2, + ACTIONS(7130), 1, + anon_sym_COLON_EQ, + STATE(4045), 1, + aux_sym_identifier_list_repeat1, + STATE(4044), 2, sym_line_comment, sym_block_comment, - [137864] = 6, + [139604] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, + ACTIONS(7132), 1, anon_sym_COMMA, - ACTIONS(7063), 1, - anon_sym_RBRACK, - STATE(3990), 1, - aux_sym_type_parameters_repeat1, - STATE(3974), 2, + ACTIONS(7135), 1, + anon_sym_COLON_EQ, + STATE(4045), 3, sym_line_comment, sym_block_comment, - [137884] = 6, + aux_sym_identifier_list_repeat1, + [139622] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5626), 1, - anon_sym_RPAREN, - ACTIONS(7065), 1, + ACTIONS(6407), 1, anon_sym_COMMA, - STATE(3637), 1, + ACTIONS(7137), 1, + anon_sym_RBRACK, + STATE(3728), 1, aux_sym_type_parameters_repeat1, - STATE(3975), 2, + STATE(4046), 2, sym_line_comment, sym_block_comment, - [137904] = 6, + [139642] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, + ACTIONS(5278), 1, anon_sym_COMMA, - ACTIONS(7067), 1, - anon_sym_RPAREN, - STATE(3801), 1, - aux_sym_parameter_list_repeat1, - STATE(3976), 2, + ACTIONS(7139), 1, + anon_sym_LBRACE, + STATE(3952), 1, + aux_sym_match_expression_list_repeat1, + STATE(4047), 2, sym_line_comment, sym_block_comment, - [137924] = 6, + [139662] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(6657), 1, anon_sym_COMMA, - ACTIONS(7069), 1, + ACTIONS(7141), 1, anon_sym_RPAREN, - STATE(3799), 1, + STATE(3874), 1, aux_sym_type_parameter_list_repeat1, - STATE(3977), 2, - sym_line_comment, - sym_block_comment, - [137944] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6628), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7019), 1, - anon_sym_DQUOTE, - STATE(3988), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3978), 2, + STATE(4048), 2, sym_line_comment, sym_block_comment, - [137964] = 6, + [139682] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, + ACTIONS(6661), 1, anon_sym_COMMA, - ACTIONS(7071), 1, + ACTIONS(7143), 1, anon_sym_RPAREN, - STATE(3801), 1, + STATE(3886), 1, aux_sym_parameter_list_repeat1, - STATE(3979), 2, + STATE(4049), 2, sym_line_comment, sym_block_comment, - [137984] = 6, + [139702] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(5278), 1, anon_sym_COMMA, - ACTIONS(7073), 1, - anon_sym_RPAREN, - STATE(3799), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3980), 2, + ACTIONS(7145), 1, + anon_sym_LBRACE, + STATE(3952), 1, + aux_sym_match_expression_list_repeat1, + STATE(4050), 2, sym_line_comment, sym_block_comment, - [138004] = 5, + [139722] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7075), 1, - anon_sym_QMARK, - ACTIONS(5286), 2, - anon_sym_SEMI, + ACTIONS(6407), 1, + anon_sym_COMMA, + ACTIONS(7147), 1, anon_sym_RBRACK, - STATE(3981), 2, + STATE(4046), 1, + aux_sym_type_parameters_repeat1, + STATE(4051), 2, sym_line_comment, sym_block_comment, - [138022] = 6, + [139742] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(6407), 1, anon_sym_COMMA, - ACTIONS(7077), 1, - anon_sym_RPAREN, - STATE(3799), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3982), 2, + ACTIONS(7149), 1, + anon_sym_RBRACK, + STATE(3728), 1, + aux_sym_type_parameters_repeat1, + STATE(4052), 2, sym_line_comment, sym_block_comment, - [138042] = 6, + [139762] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6618), 1, - anon_sym_COMMA, - ACTIONS(7079), 1, - anon_sym_RPAREN, - STATE(3801), 1, - aux_sym_parameter_list_repeat1, - STATE(3983), 2, + ACTIONS(7151), 1, + sym_identifier, + ACTIONS(7153), 1, + anon_sym_LBRACE, + STATE(1912), 1, + sym__content_block, + STATE(4053), 2, sym_line_comment, sym_block_comment, - [138062] = 6, + [139782] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6950), 1, + ACTIONS(6661), 1, anon_sym_COMMA, - ACTIONS(7081), 1, - anon_sym_in, - STATE(3832), 1, - aux_sym_var_definition_list_repeat1, - STATE(3984), 2, + ACTIONS(7155), 1, + anon_sym_RPAREN, + STATE(3886), 1, + aux_sym_parameter_list_repeat1, + STATE(4054), 2, sym_line_comment, sym_block_comment, - [138082] = 6, + [139802] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6304), 1, + ACTIONS(7157), 1, sym_identifier, - ACTIONS(6306), 1, - anon_sym_mut, - STATE(4163), 1, - sym_var_definition, - STATE(3985), 2, + ACTIONS(7159), 1, + anon_sym_LBRACE, + STATE(2002), 1, + sym__content_block, + STATE(4055), 2, sym_line_comment, sym_block_comment, - [138102] = 6, + [139822] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, - anon_sym_COMMA, - ACTIONS(7083), 1, - anon_sym_RBRACK, - STATE(3637), 1, - aux_sym_type_parameters_repeat1, - STATE(3986), 2, + ACTIONS(7161), 1, + sym_identifier, + ACTIONS(7163), 1, + anon_sym_LBRACE, + STATE(2081), 1, + sym__content_block, + STATE(4056), 2, sym_line_comment, sym_block_comment, - [138122] = 4, + [139842] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3987), 2, + ACTIONS(6697), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7165), 1, + anon_sym_SQUOTE, + STATE(4027), 1, + aux_sym_raw_string_literal_repeat1, + STATE(4057), 2, sym_line_comment, sym_block_comment, - ACTIONS(7085), 3, - aux_sym_block_comment_token1, - aux_sym_block_comment_token2, - anon_sym_STAR_SLASH, - [138138] = 5, - ACTIONS(497), 1, + [139862] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7087), 1, - anon_sym_DQUOTE, - ACTIONS(7089), 1, - aux_sym_raw_string_literal_token2, - STATE(3988), 3, + ACTIONS(6934), 1, + anon_sym_COMMA, + ACTIONS(7167), 1, + anon_sym_PIPE, + STATE(3943), 1, + aux_sym_short_lambda_repeat1, + STATE(4058), 2, sym_line_comment, sym_block_comment, - aux_sym_raw_string_literal_repeat2, - [138156] = 6, - ACTIONS(497), 1, + [139882] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6628), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7092), 1, - anon_sym_DQUOTE, - STATE(3945), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3989), 2, + ACTIONS(6657), 1, + anon_sym_COMMA, + ACTIONS(7169), 1, + anon_sym_RPAREN, + STATE(4048), 1, + aux_sym_type_parameter_list_repeat1, + STATE(4059), 2, sym_line_comment, sym_block_comment, - [138176] = 6, + [139902] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, + ACTIONS(6661), 1, anon_sym_COMMA, - ACTIONS(7094), 1, - anon_sym_RBRACK, - STATE(3637), 1, - aux_sym_type_parameters_repeat1, - STATE(3990), 2, + ACTIONS(7171), 1, + anon_sym_RPAREN, + STATE(4049), 1, + aux_sym_parameter_list_repeat1, + STATE(4060), 2, sym_line_comment, sym_block_comment, - [138196] = 6, + [139922] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6630), 1, + ACTIONS(6699), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7173), 1, + anon_sym_DQUOTE, + STATE(3937), 1, + aux_sym_raw_string_literal_repeat2, + STATE(4061), 2, + sym_line_comment, + sym_block_comment, + [139942] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6697), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7092), 1, + ACTIONS(7173), 1, anon_sym_SQUOTE, - STATE(3946), 1, + STATE(3938), 1, aux_sym_raw_string_literal_repeat1, - STATE(3991), 2, + STATE(4062), 2, sym_line_comment, sym_block_comment, - [138216] = 6, + [139962] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6298), 1, + ACTIONS(6407), 1, anon_sym_COMMA, - ACTIONS(7096), 1, + ACTIONS(7175), 1, anon_sym_RBRACK, - STATE(3964), 1, + STATE(3986), 1, aux_sym_type_parameters_repeat1, - STATE(3992), 2, + STATE(4063), 2, sym_line_comment, sym_block_comment, - [138236] = 5, - ACTIONS(497), 1, + [139982] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7098), 1, - anon_sym_SQUOTE, - ACTIONS(7100), 1, - aux_sym_raw_string_literal_token1, - STATE(3993), 3, + ACTIONS(5686), 1, + anon_sym_RPAREN, + ACTIONS(7177), 1, + anon_sym_COMMA, + STATE(3728), 1, + aux_sym_type_parameters_repeat1, + STATE(4064), 2, sym_line_comment, sym_block_comment, - aux_sym_raw_string_literal_repeat1, - [138254] = 6, + [140002] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6628), 1, + ACTIONS(6699), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6739), 1, + ACTIONS(7165), 1, anon_sym_DQUOTE, - STATE(3916), 1, + STATE(4024), 1, aux_sym_raw_string_literal_repeat2, - STATE(3994), 2, + STATE(4065), 2, sym_line_comment, sym_block_comment, - [138274] = 6, + [140022] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4787), 1, - anon_sym_COMMA, - ACTIONS(4789), 1, - anon_sym_COLON_EQ, - STATE(3833), 1, - aux_sym_identifier_list_repeat1, - STATE(3995), 2, + ACTIONS(6589), 1, + sym_identifier, + STATE(3595), 1, + sym_reference_expression, + STATE(4066), 2, sym_line_comment, sym_block_comment, - [138294] = 6, + [140039] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7103), 1, - anon_sym_COMMA, - ACTIONS(7105), 1, - anon_sym_RPAREN, - STATE(3759), 1, - aux_sym_type_parameters_repeat1, - STATE(3996), 2, + ACTIONS(6581), 1, + sym_identifier, + STATE(2607), 1, + sym_reference_expression, + STATE(4067), 2, sym_line_comment, sym_block_comment, - [138314] = 5, + [140056] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7107), 1, + ACTIONS(7179), 1, anon_sym_LBRACE, - STATE(2226), 1, + STATE(1984), 1, sym_type_initializer_body, - STATE(3997), 2, + STATE(4068), 2, sym_line_comment, sym_block_comment, - [138331] = 5, + [140073] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6436), 1, - sym_identifier, - STATE(1067), 1, - sym_reference_expression, - STATE(3998), 2, + ACTIONS(5090), 1, + anon_sym_LBRACE, + STATE(1153), 1, + sym_block, + STATE(4069), 2, sym_line_comment, sym_block_comment, - [138348] = 5, + [140090] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, + ACTIONS(5058), 1, anon_sym_LBRACE, - STATE(2109), 1, + STATE(2054), 1, sym_block, - STATE(3999), 2, + STATE(4070), 2, sym_line_comment, sym_block_comment, - [138365] = 5, + [140107] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7109), 1, - anon_sym_LPAREN, - STATE(1051), 1, - sym_special_argument_list, - STATE(4000), 2, + ACTIONS(6932), 2, + anon_sym_COMMA, + anon_sym_in, + STATE(4071), 2, sym_line_comment, sym_block_comment, - [138382] = 5, + [140122] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7111), 1, + ACTIONS(7163), 1, anon_sym_LBRACE, - STATE(1986), 1, - sym__struct_body, - STATE(4001), 2, + STATE(2051), 1, + sym__content_block, + STATE(4072), 2, sym_line_comment, sym_block_comment, - [138399] = 5, + [140139] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7113), 1, - anon_sym_LBRACE, - STATE(384), 1, - sym_type_initializer_body, - STATE(4002), 2, + ACTIONS(7181), 1, + anon_sym_LPAREN, + STATE(1148), 1, + sym_argument_list, + STATE(4073), 2, sym_line_comment, sym_block_comment, - [138416] = 5, + [140156] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5036), 1, - anon_sym_LBRACE, - STATE(1993), 1, - sym_block, - STATE(4003), 2, + ACTIONS(7183), 1, + sym_identifier, + STATE(1871), 1, + sym_type_reference_expression, + STATE(4074), 2, sym_line_comment, sym_block_comment, - [138433] = 5, + [140173] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6936), 1, - anon_sym_LBRACE, - STATE(2646), 1, - sym__content_block, - STATE(4004), 2, + ACTIONS(6504), 1, + sym_identifier, + STATE(348), 1, + sym_reference_expression, + STATE(4075), 2, sym_line_comment, sym_block_comment, - [138450] = 5, + [140190] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6970), 1, + ACTIONS(5076), 1, anon_sym_LBRACE, - STATE(2623), 1, - sym_type_initializer_body, - STATE(4005), 2, + STATE(2664), 1, + sym_block, + STATE(4076), 2, sym_line_comment, sym_block_comment, - [138467] = 5, + [140207] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5004), 1, - anon_sym_LBRACE, - STATE(1141), 1, - sym_block, - STATE(4006), 2, + ACTIONS(7185), 1, + sym_identifier, + STATE(1019), 1, + sym_type_reference_expression, + STATE(4077), 2, sym_line_comment, sym_block_comment, - [138484] = 5, + [140224] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7115), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - STATE(1226), 1, - sym_type_initializer_body, - STATE(4007), 2, + STATE(1868), 1, + sym_block, + STATE(4078), 2, sym_line_comment, sym_block_comment, - [138501] = 5, + [140241] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7117), 1, + ACTIONS(7187), 1, anon_sym_LBRACE, - STATE(997), 1, - sym_type_initializer_body, - STATE(4008), 2, + STATE(1917), 1, + sym__struct_body, + STATE(4079), 2, sym_line_comment, sym_block_comment, - [138518] = 5, + [140258] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7119), 1, - anon_sym_LPAREN, - STATE(1143), 1, - sym_argument_list, - STATE(4009), 2, + ACTIONS(7189), 1, + anon_sym_LBRACE, + STATE(1898), 1, + sym_type_initializer_body, + STATE(4080), 2, sym_line_comment, sym_block_comment, - [138535] = 5, + [140275] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7121), 1, - sym_identifier, - STATE(2087), 1, - sym_type_reference_expression, - STATE(4010), 2, + ACTIONS(5074), 1, + anon_sym_LBRACE, + STATE(1867), 1, + sym_block, + STATE(4081), 2, sym_line_comment, sym_block_comment, - [138552] = 5, + [140292] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7115), 1, - anon_sym_LBRACE, - STATE(1226), 1, - sym_type_initializer_body, - STATE(4011), 2, + ACTIONS(7191), 1, + anon_sym_LPAREN, + STATE(1783), 1, + sym_special_argument_list, + STATE(4082), 2, sym_line_comment, sym_block_comment, - [138569] = 5, + [140309] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7123), 1, + ACTIONS(7193), 1, anon_sym_LBRACE, - STATE(2185), 1, + STATE(2364), 1, sym__struct_body, - STATE(4012), 2, + STATE(4083), 2, sym_line_comment, sym_block_comment, - [138586] = 4, + [140326] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6612), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4013), 2, + ACTIONS(7017), 1, + anon_sym_LBRACE, + STATE(2789), 1, + sym_type_initializer_body, + STATE(4084), 2, sym_line_comment, sym_block_comment, - [138601] = 5, + [140343] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2207), 1, + ACTIONS(5086), 1, anon_sym_LBRACE, - STATE(1226), 1, - sym_type_initializer_body, - STATE(4014), 2, + STATE(1338), 1, + sym_block, + STATE(4085), 2, sym_line_comment, sym_block_comment, - [138618] = 5, + [140360] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5036), 1, + ACTIONS(5058), 1, anon_sym_LBRACE, - STATE(1821), 1, + STATE(2082), 1, sym_block, - STATE(4015), 2, + STATE(4086), 2, sym_line_comment, sym_block_comment, - [138635] = 5, + [140377] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5004), 1, + ACTIONS(4737), 1, anon_sym_LBRACE, - STATE(1173), 1, + STATE(1759), 1, sym_block, - STATE(4016), 2, + STATE(4087), 2, sym_line_comment, sym_block_comment, - [138652] = 5, + [140394] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5004), 1, + ACTIONS(7195), 1, anon_sym_LBRACE, - STATE(1174), 1, - sym_block, - STATE(4017), 2, + STATE(2364), 1, + sym__struct_body, + STATE(4088), 2, sym_line_comment, sym_block_comment, - [138669] = 5, + [140411] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5036), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - STATE(2060), 1, + STATE(1974), 1, sym_block, - STATE(4018), 2, + STATE(4089), 2, sym_line_comment, sym_block_comment, - [138686] = 5, + [140428] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7125), 1, + ACTIONS(7197), 1, anon_sym_LBRACE, - STATE(2357), 1, + STATE(2364), 1, sym__struct_body, - STATE(4019), 2, + STATE(4090), 2, sym_line_comment, sym_block_comment, - [138703] = 5, + [140445] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6696), 1, + ACTIONS(3040), 1, anon_sym_LBRACE, - STATE(2070), 1, - sym__content_block, - STATE(4020), 2, + STATE(1984), 1, + sym_type_initializer_body, + STATE(4091), 2, sym_line_comment, sym_block_comment, - [138720] = 4, + [140462] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7127), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(4021), 2, + ACTIONS(5074), 1, + anon_sym_LBRACE, + STATE(1913), 1, + sym_block, + STATE(4092), 2, sym_line_comment, sym_block_comment, - [138735] = 5, + [140479] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7129), 1, - sym_identifier, - STATE(2245), 1, - sym_type_reference_expression, - STATE(4022), 2, + ACTIONS(7199), 1, + anon_sym_LPAREN, + STATE(472), 1, + sym_special_argument_list, + STATE(4093), 2, sym_line_comment, sym_block_comment, - [138752] = 5, + [140496] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5066), 1, + ACTIONS(5084), 1, anon_sym_LBRACE, - STATE(1307), 1, + STATE(473), 1, sym_block, - STATE(4023), 2, + STATE(4094), 2, sym_line_comment, sym_block_comment, - [138769] = 5, + [140513] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, + ACTIONS(7201), 1, anon_sym_LBRACE, - STATE(2631), 1, - sym_block, - STATE(4024), 2, + STATE(2364), 1, + sym__struct_body, + STATE(4095), 2, sym_line_comment, sym_block_comment, - [138786] = 5, + [140530] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7131), 1, - anon_sym_LBRACE, - STATE(2357), 1, - sym__struct_body, - STATE(4025), 2, + ACTIONS(7203), 1, + anon_sym_COMMA, + ACTIONS(7205), 1, + anon_sym_RPAREN, + STATE(4096), 2, sym_line_comment, sym_block_comment, - [138803] = 5, + [140547] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, + ACTIONS(7207), 1, sym_identifier, - STATE(4130), 1, - sym_reference_expression, - STATE(4026), 2, + STATE(1343), 1, + sym_type_reference_expression, + STATE(4097), 2, sym_line_comment, sym_block_comment, - [138820] = 5, - ACTIONS(497), 1, + [140564] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7133), 1, - anon_sym_DQUOTE, - ACTIONS(7135), 1, - aux_sym_raw_string_literal_token2, - STATE(4027), 2, + ACTIONS(7209), 1, + anon_sym_LBRACE, + STATE(3414), 1, + sym__struct_body, + STATE(4098), 2, sym_line_comment, sym_block_comment, - [138837] = 5, + [140581] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7137), 1, - anon_sym_LBRACE, - STATE(2357), 1, - sym__struct_body, - STATE(4028), 2, + ACTIONS(7135), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, + STATE(4099), 2, sym_line_comment, sym_block_comment, - [138854] = 5, + [140596] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, + ACTIONS(7211), 1, anon_sym_LBRACE, - STATE(314), 1, - sym_block, - STATE(4029), 2, + STATE(2364), 1, + sym__struct_body, + STATE(4100), 2, sym_line_comment, sym_block_comment, - [138871] = 5, + [140613] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, + ACTIONS(4737), 1, anon_sym_LBRACE, - STATE(342), 1, + STATE(3772), 1, sym_block, - STATE(4030), 2, + STATE(4101), 2, sym_line_comment, sym_block_comment, - [138888] = 5, + [140630] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7139), 1, + ACTIONS(7213), 1, anon_sym_LBRACE, - STATE(2357), 1, + STATE(2364), 1, sym__struct_body, - STATE(4031), 2, + STATE(4102), 2, sym_line_comment, sym_block_comment, - [138905] = 5, + [140647] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7141), 1, - anon_sym_LBRACE, - STATE(2357), 1, - sym__struct_body, - STATE(4032), 2, + ACTIONS(7215), 1, + sym_identifier, + STATE(3768), 1, + sym_label_reference, + STATE(4103), 2, sym_line_comment, sym_block_comment, - [138922] = 5, + [140664] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5046), 1, + ACTIONS(7217), 1, anon_sym_LBRACE, - STATE(1005), 1, - sym_block, - STATE(4033), 2, + STATE(2364), 1, + sym__struct_body, + STATE(4104), 2, sym_line_comment, sym_block_comment, - [138939] = 5, + [140681] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4846), 1, - anon_sym_COLON, - ACTIONS(7143), 1, - anon_sym_mut, - STATE(4034), 2, + ACTIONS(7219), 1, + anon_sym_LPAREN, + STATE(1915), 1, + sym_special_argument_list, + STATE(4105), 2, sym_line_comment, sym_block_comment, - [138956] = 5, + [140698] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7145), 1, - anon_sym_LBRACE, - STATE(2357), 1, - sym__struct_body, - STATE(4035), 2, + ACTIONS(7221), 1, + anon_sym_LPAREN, + STATE(2601), 1, + sym_argument_list, + STATE(4106), 2, sym_line_comment, sym_block_comment, - [138973] = 5, + [140715] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6346), 1, - anon_sym_LBRACE, - STATE(1494), 1, - sym__struct_body, - STATE(4036), 2, + ACTIONS(7223), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(4107), 2, sym_line_comment, sym_block_comment, - [138990] = 5, + [140730] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7147), 1, - anon_sym_LBRACE, - STATE(2357), 1, - sym__struct_body, - STATE(4037), 2, + ACTIONS(7225), 1, + anon_sym_LPAREN, + STATE(2011), 1, + sym_special_argument_list, + STATE(4108), 2, sym_line_comment, sym_block_comment, - [139007] = 5, + [140747] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5004), 1, + ACTIONS(7227), 1, anon_sym_LBRACE, - STATE(1118), 1, - sym_block, - STATE(4038), 2, + STATE(2364), 1, + sym__struct_body, + STATE(4109), 2, sym_line_comment, sym_block_comment, - [139024] = 5, + [140764] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2215), 1, + ACTIONS(7229), 1, anon_sym_LBRACE, - STATE(997), 1, + STATE(1714), 1, sym_type_initializer_body, - STATE(4039), 2, + STATE(4110), 2, sym_line_comment, sym_block_comment, - [139041] = 5, + [140781] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6414), 1, + ACTIONS(7179), 1, anon_sym_LBRACE, - STATE(1479), 1, - sym__enum_body, - STATE(4040), 2, + STATE(1984), 1, + sym_type_initializer_body, + STATE(4111), 2, sym_line_comment, sym_block_comment, - [139058] = 5, + [140798] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7149), 1, + ACTIONS(7231), 1, anon_sym_LBRACE, - STATE(2357), 1, + STATE(2364), 1, sym__struct_body, - STATE(4041), 2, + STATE(4112), 2, sym_line_comment, sym_block_comment, - [139075] = 5, + [140815] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6344), 1, - anon_sym_LBRACE, - STATE(1529), 1, - sym__interface_body, - STATE(4042), 2, + ACTIONS(7010), 2, + anon_sym_COMMA, + anon_sym_PIPE, + STATE(4113), 2, sym_line_comment, sym_block_comment, - [139092] = 5, + [140830] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7151), 1, - anon_sym_COMMA, - ACTIONS(7153), 1, - anon_sym_RPAREN, - STATE(4043), 2, + ACTIONS(4737), 1, + anon_sym_LBRACE, + STATE(1717), 1, + sym_block, + STATE(4114), 2, sym_line_comment, sym_block_comment, - [139109] = 5, + [140847] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7155), 1, - anon_sym_COMMA, - ACTIONS(7157), 1, - anon_sym_RPAREN, - STATE(4044), 2, + ACTIONS(3068), 1, + anon_sym_LBRACE, + STATE(1984), 1, + sym_type_initializer_body, + STATE(4115), 2, sym_line_comment, sym_block_comment, - [139126] = 5, + [140864] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7159), 1, + ACTIONS(4699), 1, anon_sym_LBRACE, - STATE(2357), 1, - sym__struct_body, - STATE(4045), 2, + STATE(1564), 1, + sym_block, + STATE(4116), 2, sym_line_comment, sym_block_comment, - [139143] = 5, + [140881] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7161), 1, - anon_sym_COMMA, - ACTIONS(7163), 1, - anon_sym_RPAREN, - STATE(4046), 2, + ACTIONS(5098), 1, + anon_sym_LBRACE, + STATE(1011), 1, + sym_block, + STATE(4117), 2, sym_line_comment, sym_block_comment, - [139160] = 5, + [140898] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7165), 1, + ACTIONS(7233), 1, anon_sym_LBRACE, - STATE(3350), 1, + STATE(2364), 1, sym__struct_body, - STATE(4047), 2, + STATE(4118), 2, sym_line_comment, sym_block_comment, - [139177] = 5, + [140915] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7167), 1, + ACTIONS(7235), 1, anon_sym_LBRACE, - STATE(2357), 1, + STATE(2195), 1, sym__struct_body, - STATE(4048), 2, + STATE(4119), 2, sym_line_comment, sym_block_comment, - [139194] = 5, + [140932] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6545), 1, - sym_identifier, - STATE(3480), 1, - sym_import_name, - STATE(4049), 2, + ACTIONS(5092), 1, + anon_sym_LBRACE, + STATE(1937), 1, + sym_block, + STATE(4120), 2, sym_line_comment, sym_block_comment, - [139211] = 5, + [140949] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5004), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - STATE(1196), 1, + STATE(1969), 1, sym_block, - STATE(4050), 2, + STATE(4121), 2, sym_line_comment, sym_block_comment, - [139228] = 5, + [140966] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6566), 1, - sym_identifier, - STATE(3534), 1, - sym_reference_expression, - STATE(4051), 2, + ACTIONS(7237), 1, + anon_sym_LBRACE, + STATE(2179), 1, + sym_block, + STATE(4122), 2, sym_line_comment, sym_block_comment, - [139245] = 5, + [140983] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7117), 1, - anon_sym_LBRACE, - STATE(997), 1, - sym_type_initializer_body, - STATE(4052), 2, + ACTIONS(7239), 1, + sym_identifier, + STATE(1572), 1, + sym_label_reference, + STATE(4123), 2, sym_line_comment, sym_block_comment, - [139262] = 5, + [141000] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7169), 1, - anon_sym_COMMA, - ACTIONS(7171), 1, - anon_sym_RPAREN, - STATE(4053), 2, + ACTIONS(7241), 1, + sym_identifier, + STATE(2255), 1, + sym_type_reference_expression, + STATE(4124), 2, sym_line_comment, sym_block_comment, - [139279] = 5, + [141017] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6834), 1, + ACTIONS(6683), 1, anon_sym_LBRACE, - STATE(2357), 1, + STATE(2364), 1, sym__struct_body, - STATE(4054), 2, + STATE(4125), 2, sym_line_comment, sym_block_comment, - [139296] = 5, + [141034] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7113), 1, + ACTIONS(6484), 1, + sym_identifier, + STATE(2014), 1, + sym_reference_expression, + STATE(4126), 2, + sym_line_comment, + sym_block_comment, + [141051] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3040), 1, anon_sym_LBRACE, - STATE(384), 1, + STATE(1714), 1, sym_type_initializer_body, - STATE(4055), 2, + STATE(4127), 2, sym_line_comment, sym_block_comment, - [139313] = 5, + [141068] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5054), 1, + ACTIONS(6364), 1, anon_sym_LBRACE, - STATE(4497), 1, - sym_block, - STATE(4056), 2, + STATE(1557), 1, + sym__struct_body, + STATE(4128), 2, sym_line_comment, sym_block_comment, - [139330] = 5, + [141085] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5066), 1, + ACTIONS(7229), 1, anon_sym_LBRACE, - STATE(1373), 1, - sym_block, - STATE(4057), 2, + STATE(1714), 1, + sym_type_initializer_body, + STATE(4129), 2, sym_line_comment, sym_block_comment, - [139347] = 5, + [141102] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5066), 1, + ACTIONS(5096), 1, anon_sym_LBRACE, - STATE(1374), 1, + STATE(2604), 1, sym_block, - STATE(4058), 2, + STATE(4130), 2, sym_line_comment, sym_block_comment, - [139364] = 5, + [141119] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2207), 1, + ACTIONS(3068), 1, anon_sym_LBRACE, - STATE(997), 1, + STATE(1714), 1, sym_type_initializer_body, - STATE(4059), 2, + STATE(4131), 2, sym_line_comment, sym_block_comment, - [139381] = 5, + [141136] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5046), 1, + ACTIONS(4737), 1, anon_sym_LBRACE, - STATE(967), 1, + STATE(1664), 1, sym_block, - STATE(4060), 2, + STATE(4132), 2, sym_line_comment, sym_block_comment, - [139398] = 5, + [141153] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7173), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - STATE(2136), 1, + STATE(1892), 1, sym_block, - STATE(4061), 2, + STATE(4133), 2, sym_line_comment, sym_block_comment, - [139415] = 5, + [141170] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7175), 1, - sym_identifier, - STATE(322), 1, - sym_type_reference_expression, - STATE(4062), 2, + ACTIONS(7243), 1, + anon_sym_LBRACE, + STATE(331), 1, + sym_type_initializer_body, + STATE(4134), 2, sym_line_comment, sym_block_comment, - [139432] = 5, + [141187] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3827), 1, - anon_sym_LPAREN, - STATE(1376), 1, - sym_argument_list, - STATE(4063), 2, + ACTIONS(6434), 1, + sym_identifier, + STATE(1918), 1, + sym_reference_expression, + STATE(4135), 2, sym_line_comment, sym_block_comment, - [139449] = 5, + [141204] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6545), 1, - sym_identifier, - STATE(3581), 1, - sym_import_name, - STATE(4064), 2, + ACTIONS(3040), 1, + anon_sym_LBRACE, + STATE(1898), 1, + sym_type_initializer_body, + STATE(4136), 2, sym_line_comment, sym_block_comment, - [139466] = 5, + [141221] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5066), 1, + ACTIONS(5076), 1, anon_sym_LBRACE, - STATE(1382), 1, + STATE(2748), 1, sym_block, - STATE(4065), 2, + STATE(4137), 2, sym_line_comment, sym_block_comment, - [139483] = 5, + [141238] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6812), 1, + ACTIONS(7159), 1, anon_sym_LBRACE, - STATE(1190), 1, + STATE(1967), 1, sym__content_block, - STATE(4066), 2, + STATE(4138), 2, sym_line_comment, sym_block_comment, - [139500] = 5, + [141255] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7177), 1, + ACTIONS(4737), 1, anon_sym_LBRACE, - STATE(2698), 1, - sym__struct_body, - STATE(4067), 2, + STATE(1722), 1, + sym_block, + STATE(4139), 2, sym_line_comment, sym_block_comment, - [139517] = 5, + [141272] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5004), 1, + ACTIONS(6687), 1, anon_sym_LBRACE, - STATE(1214), 1, - sym_block, - STATE(4068), 2, + STATE(1723), 1, + sym__content_block, + STATE(4140), 2, sym_line_comment, sym_block_comment, - [139534] = 5, + [141289] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, + ACTIONS(5090), 1, anon_sym_LBRACE, - STATE(2653), 1, + STATE(1145), 1, sym_block, - STATE(4069), 2, + STATE(4141), 2, sym_line_comment, sym_block_comment, - [139551] = 5, + [141306] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, + ACTIONS(7237), 1, anon_sym_LBRACE, - STATE(2654), 1, + STATE(2178), 1, sym_block, - STATE(4070), 2, + STATE(4142), 2, sym_line_comment, sym_block_comment, - [139568] = 5, + [141323] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2215), 1, + ACTIONS(5096), 1, anon_sym_LBRACE, - STATE(1226), 1, - sym_type_initializer_body, - STATE(4071), 2, + STATE(2515), 1, + sym_block, + STATE(4143), 2, sym_line_comment, sym_block_comment, - [139585] = 5, + [141340] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7179), 1, - sym_identifier, - STATE(2729), 1, - sym_type_reference_expression, - STATE(4072), 2, + ACTIONS(5074), 1, + anon_sym_LBRACE, + STATE(1847), 1, + sym_block, + STATE(4144), 2, sym_line_comment, sym_block_comment, - [139602] = 5, + [141357] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6987), 1, + ACTIONS(5090), 1, anon_sym_LBRACE, - STATE(1385), 1, - sym__content_block, - STATE(4073), 2, + STATE(1142), 1, + sym_block, + STATE(4145), 2, + sym_line_comment, + sym_block_comment, + [141374] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7245), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(4146), 2, sym_line_comment, sym_block_comment, - [139619] = 5, + [141389] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5066), 1, + ACTIONS(4737), 1, anon_sym_LBRACE, - STATE(1383), 1, + STATE(3649), 1, sym_block, - STATE(4074), 2, + STATE(4147), 2, sym_line_comment, sym_block_comment, - [139636] = 5, + [141406] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5046), 1, + ACTIONS(4737), 1, anon_sym_LBRACE, - STATE(1017), 1, + STATE(3730), 1, sym_block, - STATE(4075), 2, + STATE(4148), 2, sym_line_comment, sym_block_comment, - [139653] = 5, - ACTIONS(497), 1, + [141423] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7181), 1, - anon_sym_SQUOTE, - ACTIONS(7183), 1, - aux_sym_raw_string_literal_token1, - STATE(4076), 2, + ACTIONS(7247), 1, + anon_sym_LBRACE, + STATE(2364), 1, + sym__struct_body, + STATE(4149), 2, sym_line_comment, sym_block_comment, - [139670] = 5, + [141440] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7185), 1, - sym_identifier, - STATE(1788), 1, - sym_type_reference_expression, - STATE(4077), 2, + ACTIONS(6687), 1, + anon_sym_LBRACE, + STATE(3725), 1, + sym__content_block, + STATE(4150), 2, sym_line_comment, sym_block_comment, - [139687] = 5, + [141457] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5066), 1, + ACTIONS(7249), 1, anon_sym_LBRACE, - STATE(1260), 1, - sym_block, - STATE(4078), 2, + STATE(2757), 1, + sym__struct_body, + STATE(4151), 2, sym_line_comment, sym_block_comment, - [139704] = 5, + [141474] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5004), 1, + ACTIONS(4737), 1, anon_sym_LBRACE, - STATE(1222), 1, + STATE(1737), 1, sym_block, - STATE(4079), 2, + STATE(4152), 2, sym_line_comment, sym_block_comment, - [139721] = 5, + [141491] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, + ACTIONS(7090), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(4153), 2, + sym_line_comment, + sym_block_comment, + [141506] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7251), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(4154), 2, + sym_line_comment, + sym_block_comment, + [141521] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7253), 1, anon_sym_LPAREN, - STATE(2656), 1, + STATE(1740), 1, sym_argument_list, - STATE(4080), 2, + STATE(4155), 2, sym_line_comment, sym_block_comment, - [139738] = 5, + [141538] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2207), 1, - anon_sym_LBRACE, - STATE(1358), 1, - sym_type_initializer_body, - STATE(4081), 2, + ACTIONS(7255), 1, + sym_identifier, + STATE(2787), 1, + sym_type_reference_expression, + STATE(4156), 2, sym_line_comment, sym_block_comment, - [139755] = 5, + [141555] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7187), 1, - anon_sym_LBRACE, - STATE(1358), 1, - sym_type_initializer_body, - STATE(4082), 2, + ACTIONS(7257), 1, + sym_identifier, + STATE(1459), 1, + sym_type_reference_expression, + STATE(4157), 2, sym_line_comment, sym_block_comment, - [139772] = 5, + [141572] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6995), 1, + ACTIONS(6855), 1, anon_sym_LBRACE, - STATE(1018), 1, + STATE(2600), 1, sym__content_block, - STATE(4083), 2, + STATE(4158), 2, sym_line_comment, sym_block_comment, - [139789] = 5, + [141589] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, - anon_sym_LBRACE, - STATE(2661), 1, - sym_block, - STATE(4084), 2, + ACTIONS(6577), 1, + sym_identifier, + STATE(2197), 1, + sym_reference_expression, + STATE(4159), 2, sym_line_comment, sym_block_comment, - [139806] = 5, + [141606] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5004), 1, - anon_sym_LBRACE, - STATE(1202), 1, - sym_block, - STATE(4085), 2, + ACTIONS(7259), 1, + anon_sym_COMMA, + ACTIONS(7261), 1, + anon_sym_RPAREN, + STATE(4160), 2, sym_line_comment, sym_block_comment, - [139823] = 5, + [141623] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7189), 1, + ACTIONS(4737), 1, anon_sym_LBRACE, - STATE(1655), 1, - sym__struct_body, - STATE(4086), 2, + STATE(1724), 1, + sym_block, + STATE(4161), 2, sym_line_comment, sym_block_comment, - [139840] = 5, + [141640] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7191), 1, - anon_sym_LPAREN, - STATE(1181), 1, - sym_special_argument_list, - STATE(4087), 2, + ACTIONS(5098), 1, + anon_sym_LBRACE, + STATE(1047), 1, + sym_block, + STATE(4162), 2, sym_line_comment, sym_block_comment, - [139857] = 5, + [141657] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2215), 1, + ACTIONS(6364), 1, anon_sym_LBRACE, - STATE(1358), 1, - sym_type_initializer_body, - STATE(4088), 2, + STATE(1506), 1, + sym__struct_body, + STATE(4163), 2, sym_line_comment, sym_block_comment, - [139874] = 5, + [141674] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5066), 1, + ACTIONS(6494), 1, anon_sym_LBRACE, - STATE(1366), 1, - sym_block, - STATE(4089), 2, + STATE(1509), 1, + sym__enum_body, + STATE(4164), 2, sym_line_comment, sym_block_comment, - [139891] = 5, + [141691] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6591), 1, - sym_identifier, - STATE(1168), 1, - sym_reference_expression, - STATE(4090), 2, + ACTIONS(6710), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(4165), 2, sym_line_comment, sym_block_comment, - [139908] = 5, + [141706] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6296), 1, + ACTIONS(6360), 1, anon_sym_LBRACE, - STATE(2302), 1, - sym_type_initializer_body, - STATE(4091), 2, + STATE(1532), 1, + sym__interface_body, + STATE(4166), 2, sym_line_comment, sym_block_comment, - [139925] = 5, + [141723] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5046), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - STATE(1050), 1, + STATE(1957), 1, sym_block, - STATE(4092), 2, + STATE(4167), 2, sym_line_comment, sym_block_comment, - [139942] = 5, + [141740] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7193), 1, - sym_identifier, - STATE(1722), 1, - sym_type_reference_expression, - STATE(4093), 2, + ACTIONS(7263), 1, + anon_sym_COMMA, + ACTIONS(7265), 1, + anon_sym_RPAREN, + STATE(4168), 2, sym_line_comment, sym_block_comment, - [139959] = 5, + [141757] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6424), 1, + ACTIONS(6547), 1, sym_identifier, - STATE(2035), 1, - sym_reference_expression, - STATE(4094), 2, + STATE(3678), 1, + sym_generic_parameter, + STATE(4169), 2, sym_line_comment, sym_block_comment, - [139976] = 5, + [141774] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7195), 1, + ACTIONS(4737), 1, anon_sym_LBRACE, - STATE(2357), 1, - sym__struct_body, - STATE(4095), 2, + STATE(1749), 1, + sym_block, + STATE(4170), 2, sym_line_comment, sym_block_comment, - [139993] = 5, + [141791] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, - anon_sym_LBRACE, - STATE(2644), 1, - sym_block, - STATE(4096), 2, + ACTIONS(7267), 1, + anon_sym_LPAREN, + STATE(2208), 1, + sym_special_argument_list, + STATE(4171), 2, sym_line_comment, sym_block_comment, - [140010] = 5, + [141808] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5046), 1, + ACTIONS(5058), 1, anon_sym_LBRACE, - STATE(1044), 1, + STATE(2155), 1, sym_block, - STATE(4097), 2, + STATE(4172), 2, sym_line_comment, sym_block_comment, - [140027] = 5, + [141825] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7197), 1, + ACTIONS(4703), 1, anon_sym_LPAREN, - STATE(2048), 1, - sym_special_argument_list, - STATE(4098), 2, + STATE(2090), 1, + sym_argument_list, + STATE(4173), 2, sym_line_comment, sym_block_comment, - [140044] = 5, + [141842] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7199), 1, - anon_sym_LPAREN, - STATE(1329), 1, - sym_special_argument_list, - STATE(4099), 2, + ACTIONS(2753), 1, + anon_sym_COMMA, + ACTIONS(7269), 1, + anon_sym_RPAREN, + STATE(4174), 2, sym_line_comment, sym_block_comment, - [140061] = 5, + [141859] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5070), 1, + ACTIONS(5084), 1, anon_sym_LBRACE, - STATE(2842), 1, + STATE(350), 1, sym_block, - STATE(4100), 2, + STATE(4175), 2, sym_line_comment, sym_block_comment, - [140078] = 4, + [141876] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4822), 2, - anon_sym_COMMA, - anon_sym_in, - STATE(4101), 2, + ACTIONS(6901), 1, + anon_sym_LBRACE, + STATE(1206), 1, + sym__content_block, + STATE(4176), 2, sym_line_comment, sym_block_comment, - [140093] = 5, + [141893] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6499), 1, - sym_identifier, - STATE(1320), 1, - sym_reference_expression, - STATE(4102), 2, + ACTIONS(7271), 1, + anon_sym_COMMA, + ACTIONS(7273), 1, + anon_sym_RPAREN, + STATE(4177), 2, sym_line_comment, sym_block_comment, - [140110] = 5, + [141910] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, - anon_sym_LBRACE, - STATE(2454), 1, - sym_block, - STATE(4103), 2, + ACTIONS(7275), 1, + sym_identifier, + STATE(1409), 1, + sym_type_reference_expression, + STATE(4178), 2, sym_line_comment, sym_block_comment, - [140127] = 5, + [141927] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5046), 1, + ACTIONS(3040), 1, anon_sym_LBRACE, - STATE(1080), 1, - sym_block, - STATE(4104), 2, + STATE(331), 1, + sym_type_initializer_body, + STATE(4179), 2, sym_line_comment, sym_block_comment, - [140144] = 5, + [141944] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, + ACTIONS(5090), 1, anon_sym_LBRACE, - STATE(2473), 1, + STATE(1208), 1, sym_block, - STATE(4105), 2, + STATE(4180), 2, sym_line_comment, sym_block_comment, - [140161] = 5, + [141961] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5046), 1, + ACTIONS(7277), 1, anon_sym_LBRACE, - STATE(1082), 1, - sym_block, - STATE(4106), 2, + STATE(2364), 1, + sym__struct_body, + STATE(4181), 2, sym_line_comment, sym_block_comment, - [140178] = 5, + [141978] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7201), 1, - anon_sym_LBRACE, - STATE(2836), 1, - sym_type_initializer_body, - STATE(4107), 2, + ACTIONS(7279), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4182), 2, sym_line_comment, sym_block_comment, - [140195] = 4, + [141993] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6457), 2, + ACTIONS(7281), 1, + anon_sym_COMMA, + ACTIONS(7283), 1, anon_sym_RPAREN, - sym_identifier, - STATE(4108), 2, + STATE(4183), 2, sym_line_comment, sym_block_comment, - [140210] = 5, + [142010] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5036), 1, + ACTIONS(7243), 1, anon_sym_LBRACE, - STATE(2084), 1, - sym_block, - STATE(4109), 2, + STATE(331), 1, + sym_type_initializer_body, + STATE(4184), 2, sym_line_comment, sym_block_comment, - [140227] = 5, + [142027] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2215), 1, + ACTIONS(5096), 1, anon_sym_LBRACE, - STATE(2018), 1, - sym_type_initializer_body, - STATE(4110), 2, + STATE(2547), 1, + sym_block, + STATE(4185), 2, sym_line_comment, sym_block_comment, - [140244] = 5, + [142044] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7203), 1, - anon_sym_LBRACE, - STATE(1826), 1, - sym__struct_body, - STATE(4111), 2, + ACTIONS(7285), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4186), 2, sym_line_comment, sym_block_comment, - [140261] = 5, + [142059] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7205), 1, + ACTIONS(5028), 1, anon_sym_LBRACE, - STATE(2576), 1, - sym__struct_body, - STATE(4112), 2, + STATE(2215), 1, + sym_block, + STATE(4187), 2, sym_line_comment, sym_block_comment, - [140278] = 4, + [142076] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6471), 2, - anon_sym_RPAREN, - sym_identifier, - STATE(4113), 2, + ACTIONS(7287), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(4188), 2, sym_line_comment, sym_block_comment, - [140293] = 4, + [142091] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7207), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4114), 2, + ACTIONS(6766), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(4189), 2, sym_line_comment, sym_block_comment, - [140308] = 4, + [142106] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7209), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4115), 2, + ACTIONS(5076), 1, + anon_sym_LBRACE, + STATE(2663), 1, + sym_block, + STATE(4190), 2, sym_line_comment, sym_block_comment, - [140323] = 5, + [142123] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7211), 1, - anon_sym_COMMA, - ACTIONS(7213), 1, - anon_sym_RPAREN, - STATE(4116), 2, + ACTIONS(5084), 1, + anon_sym_LBRACE, + STATE(433), 1, + sym_block, + STATE(4191), 2, sym_line_comment, sym_block_comment, - [140340] = 5, + [142140] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5054), 1, + ACTIONS(5096), 1, anon_sym_LBRACE, - STATE(2342), 1, + STATE(2413), 1, sym_block, - STATE(4117), 2, + STATE(4192), 2, sym_line_comment, sym_block_comment, - [140357] = 5, + [142157] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7215), 1, + ACTIONS(3068), 1, anon_sym_LBRACE, - STATE(2357), 1, - sym__struct_body, - STATE(4118), 2, + STATE(331), 1, + sym_type_initializer_body, + STATE(4193), 2, sym_line_comment, sym_block_comment, - [140374] = 5, + [142174] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2425), 1, - anon_sym_COMMA, - ACTIONS(7217), 1, - anon_sym_RPAREN, - STATE(4119), 2, + ACTIONS(5098), 1, + anon_sym_LBRACE, + STATE(1010), 1, + sym_block, + STATE(4194), 2, sym_line_comment, sym_block_comment, - [140391] = 5, + [142191] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7219), 1, - anon_sym_LBRACE, - STATE(2018), 1, - sym_type_initializer_body, - STATE(4120), 2, + ACTIONS(7289), 1, + anon_sym_COMMA, + ACTIONS(7291), 1, + anon_sym_RPAREN, + STATE(4195), 2, sym_line_comment, sym_block_comment, - [140408] = 5, + [142208] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2207), 1, + ACTIONS(5084), 1, anon_sym_LBRACE, - STATE(2018), 1, - sym_type_initializer_body, - STATE(4121), 2, + STATE(229), 1, + sym_block, + STATE(4196), 2, sym_line_comment, sym_block_comment, - [140425] = 4, + [142225] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7221), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4122), 2, + ACTIONS(7293), 1, + sym_identifier, + STATE(2143), 1, + sym_type_reference_expression, + STATE(4197), 2, sym_line_comment, sym_block_comment, - [140440] = 5, + [142242] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5054), 1, - anon_sym_LBRACE, - STATE(2329), 1, - sym_block, - STATE(4123), 2, + ACTIONS(5102), 1, + anon_sym_LPAREN, + STATE(2665), 1, + sym_argument_list, + STATE(4198), 2, sym_line_comment, sym_block_comment, - [140457] = 5, + [142259] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5070), 1, + ACTIONS(3068), 1, anon_sym_LBRACE, - STATE(2705), 1, - sym_block, - STATE(4124), 2, + STATE(2557), 1, + sym_type_initializer_body, + STATE(4199), 2, sym_line_comment, sym_block_comment, - [140474] = 5, + [142276] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5064), 1, + ACTIONS(5076), 1, anon_sym_LBRACE, - STATE(2208), 1, + STATE(2667), 1, sym_block, - STATE(4125), 2, + STATE(4200), 2, sym_line_comment, sym_block_comment, - [140491] = 5, + [142293] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5070), 1, + ACTIONS(5088), 1, anon_sym_LBRACE, - STATE(2849), 1, + STATE(2826), 1, sym_block, - STATE(4126), 2, + STATE(4201), 2, sym_line_comment, sym_block_comment, - [140508] = 5, + [142310] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6964), 1, + ACTIONS(7295), 1, anon_sym_LBRACE, - STATE(2850), 1, - sym__content_block, - STATE(4127), 2, + STATE(2506), 1, + sym__struct_body, + STATE(4202), 2, sym_line_comment, sym_block_comment, - [140525] = 5, + [142327] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4677), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - STATE(1485), 1, + STATE(2096), 1, sym_block, - STATE(4128), 2, + STATE(4203), 2, sym_line_comment, sym_block_comment, - [140542] = 4, + [142344] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7223), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - STATE(4129), 2, + ACTIONS(6691), 1, + anon_sym_LBRACE, + STATE(428), 1, + sym__content_block, + STATE(4204), 2, sym_line_comment, sym_block_comment, - [140557] = 4, + [142361] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7225), 2, + ACTIONS(7297), 2, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(4130), 2, + anon_sym_RPAREN, + STATE(4205), 2, sym_line_comment, sym_block_comment, - [140572] = 4, + [142376] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5512), 2, - anon_sym_COMMA, - anon_sym_in, - STATE(4131), 2, + ACTIONS(7299), 1, + sym_identifier, + STATE(1779), 1, + sym_type_reference_expression, + STATE(4206), 2, sym_line_comment, sym_block_comment, - [140587] = 5, + [142393] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, + ACTIONS(7301), 1, anon_sym_LBRACE, - STATE(460), 1, - sym_block, - STATE(4132), 2, + STATE(2557), 1, + sym_type_initializer_body, + STATE(4207), 2, sym_line_comment, sym_block_comment, - [140604] = 4, + [142410] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6767), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - STATE(4133), 2, + ACTIONS(7303), 1, + anon_sym_LPAREN, + STATE(1005), 1, + sym_argument_list, + STATE(4208), 2, sym_line_comment, sym_block_comment, - [140619] = 5, + [142427] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7227), 1, - anon_sym_COMMA, - ACTIONS(7229), 1, - anon_sym_RPAREN, - STATE(4134), 2, + ACTIONS(7305), 1, + sym_identifier, + STATE(2588), 1, + sym_type_reference_expression, + STATE(4209), 2, sym_line_comment, sym_block_comment, - [140636] = 5, + [142444] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7231), 1, - anon_sym_COMMA, - ACTIONS(7233), 1, - anon_sym_RPAREN, - STATE(4135), 2, + ACTIONS(5098), 1, + anon_sym_LBRACE, + STATE(1001), 1, + sym_block, + STATE(4210), 2, sym_line_comment, sym_block_comment, - [140653] = 4, + [142461] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7235), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - STATE(4136), 2, + ACTIONS(6589), 1, + sym_identifier, + STATE(1742), 1, + sym_reference_expression, + STATE(4211), 2, sym_line_comment, sym_block_comment, - [140668] = 4, + [142478] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6725), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - STATE(4137), 2, + ACTIONS(5090), 1, + anon_sym_LBRACE, + STATE(1127), 1, + sym_block, + STATE(4212), 2, sym_line_comment, sym_block_comment, - [140683] = 5, - ACTIONS(3), 1, + [142495] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5036), 1, - anon_sym_LBRACE, - STATE(2111), 1, - sym_block, - STATE(4138), 2, + ACTIONS(7307), 1, + anon_sym_SQUOTE, + ACTIONS(7309), 1, + aux_sym_raw_string_literal_token1, + STATE(4213), 2, sym_line_comment, sym_block_comment, - [140700] = 5, + [142512] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - STATE(2501), 1, + STATE(2128), 1, sym_block, - STATE(4139), 2, + STATE(4214), 2, sym_line_comment, sym_block_comment, - [140717] = 5, + [142529] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5054), 1, - anon_sym_LBRACE, - STATE(2372), 1, - sym_block, - STATE(4140), 2, + ACTIONS(7311), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4215), 2, sym_line_comment, sym_block_comment, - [140734] = 5, - ACTIONS(3), 1, + [142544] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5054), 1, - anon_sym_LBRACE, - STATE(2381), 1, - sym_block, - STATE(4141), 2, + ACTIONS(7313), 1, + anon_sym_DQUOTE, + ACTIONS(7315), 1, + aux_sym_raw_string_literal_token2, + STATE(4216), 2, sym_line_comment, sym_block_comment, - [140751] = 5, + [142561] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7173), 1, - anon_sym_LBRACE, - STATE(2140), 1, - sym_block, - STATE(4142), 2, + ACTIONS(7317), 1, + anon_sym_COMMA, + ACTIONS(7319), 1, + anon_sym_RPAREN, + STATE(4217), 2, sym_line_comment, sym_block_comment, - [140768] = 5, + [142578] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7219), 1, + ACTIONS(7003), 1, anon_sym_LBRACE, - STATE(2018), 1, - sym_type_initializer_body, - STATE(4143), 2, + STATE(1012), 1, + sym__content_block, + STATE(4218), 2, sym_line_comment, sym_block_comment, - [140785] = 5, + [142595] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7237), 1, - sym_identifier, - STATE(1540), 1, - sym_label_reference, - STATE(4144), 2, + ACTIONS(2753), 1, + anon_sym_COMMA, + ACTIONS(7321), 1, + anon_sym_RPAREN, + STATE(4219), 2, sym_line_comment, sym_block_comment, - [140802] = 5, + [142612] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7173), 1, - anon_sym_LBRACE, - STATE(2138), 1, - sym_block, - STATE(4145), 2, + ACTIONS(7323), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4220), 2, sym_line_comment, sym_block_comment, - [140819] = 5, + [142627] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4677), 1, + ACTIONS(5098), 1, anon_sym_LBRACE, - STATE(1491), 1, + STATE(1014), 1, sym_block, - STATE(4146), 2, + STATE(4221), 2, sym_line_comment, sym_block_comment, - [140836] = 5, + [142644] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4725), 1, - anon_sym_LPAREN, - STATE(2113), 1, - sym_argument_list, - STATE(4147), 2, + ACTIONS(4848), 2, + anon_sym_COMMA, + anon_sym_in, + STATE(4222), 2, sym_line_comment, sym_block_comment, - [140853] = 5, + [142659] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7239), 1, - sym_identifier, - STATE(3299), 1, - sym_type_reference_expression, - STATE(4148), 2, + ACTIONS(7325), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4223), 2, sym_line_comment, sym_block_comment, - [140870] = 5, + [142674] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - STATE(2401), 1, - sym_argument_list, - STATE(4149), 2, + ACTIONS(5098), 1, + anon_sym_LBRACE, + STATE(971), 1, + sym_block, + STATE(4224), 2, sym_line_comment, sym_block_comment, - [140887] = 5, + [142691] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5054), 1, + ACTIONS(7327), 1, anon_sym_LBRACE, - STATE(2414), 1, - sym_block, - STATE(4150), 2, + STATE(1346), 1, + sym__struct_body, + STATE(4225), 2, sym_line_comment, sym_block_comment, - [140904] = 5, + [142708] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7241), 1, - sym_identifier, - STATE(2507), 1, - sym_type_reference_expression, - STATE(4151), 2, + ACTIONS(6977), 1, + anon_sym_LBRACE, + STATE(2759), 1, + sym__content_block, + STATE(4226), 2, sym_line_comment, sym_block_comment, - [140921] = 5, + [142725] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, - anon_sym_LBRACE, - STATE(2620), 1, - sym_block, - STATE(4152), 2, + ACTIONS(6545), 2, + anon_sym_RPAREN, + sym_identifier, + STATE(4227), 2, sym_line_comment, sym_block_comment, - [140938] = 5, + [142740] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, + ACTIONS(7329), 1, anon_sym_LBRACE, - STATE(2503), 1, - sym_block, - STATE(4153), 2, + STATE(2364), 1, + sym__struct_body, + STATE(4228), 2, sym_line_comment, sym_block_comment, - [140955] = 5, + [142757] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6791), 1, + ACTIONS(3068), 1, anon_sym_LBRACE, - STATE(2392), 1, - sym__content_block, - STATE(4154), 2, + STATE(1038), 1, + sym_type_initializer_body, + STATE(4229), 2, sym_line_comment, sym_block_comment, - [140972] = 5, + [142774] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5054), 1, + ACTIONS(4699), 1, anon_sym_LBRACE, - STATE(2415), 1, + STATE(1490), 1, sym_block, - STATE(4155), 2, + STATE(4230), 2, sym_line_comment, sym_block_comment, - [140989] = 5, + [142791] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5036), 1, + ACTIONS(4699), 1, anon_sym_LBRACE, - STATE(2019), 1, + STATE(1561), 1, sym_block, - STATE(4156), 2, + STATE(4231), 2, sym_line_comment, sym_block_comment, - [141006] = 5, + [142808] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5036), 1, - anon_sym_LBRACE, - STATE(1995), 1, - sym_block, - STATE(4157), 2, + ACTIONS(6535), 2, + anon_sym_RPAREN, + sym_identifier, + STATE(4232), 2, sym_line_comment, sym_block_comment, - [141023] = 5, + [142823] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7243), 1, - anon_sym_LPAREN, - STATE(2759), 1, - sym_special_argument_list, - STATE(4158), 2, + ACTIONS(7331), 1, + anon_sym_LBRACE, + STATE(1493), 1, + sym__content_block, + STATE(4233), 2, sym_line_comment, sym_block_comment, - [141040] = 5, + [142840] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5054), 1, - anon_sym_LBRACE, - STATE(2276), 1, - sym_block, - STATE(4159), 2, + ACTIONS(6971), 1, + sym_identifier, + STATE(3958), 1, + sym_reference_expression, + STATE(4234), 2, sym_line_comment, sym_block_comment, - [141057] = 5, + [142857] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5046), 1, + ACTIONS(5028), 1, anon_sym_LBRACE, - STATE(1027), 1, + STATE(2283), 1, sym_block, - STATE(4160), 2, + STATE(4235), 2, sym_line_comment, sym_block_comment, - [141074] = 5, + [142874] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7245), 1, + ACTIONS(7333), 1, anon_sym_LBRACE, - STATE(2357), 1, - sym__struct_body, - STATE(4161), 2, + STATE(1038), 1, + sym_type_initializer_body, + STATE(4236), 2, sym_line_comment, sym_block_comment, - [141091] = 5, + [142891] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7247), 1, + ACTIONS(7335), 1, anon_sym_LBRACE, - STATE(357), 1, + STATE(1442), 1, sym__struct_body, - STATE(4162), 2, + STATE(4237), 2, sym_line_comment, sym_block_comment, - [141108] = 4, + [142908] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6796), 2, - anon_sym_COMMA, - anon_sym_in, - STATE(4163), 2, + ACTIONS(3040), 1, + anon_sym_LBRACE, + STATE(2289), 1, + sym_type_initializer_body, + STATE(4238), 2, sym_line_comment, sym_block_comment, - [141123] = 5, + [142925] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6547), 1, - sym_identifier, - STATE(2763), 1, - sym_reference_expression, - STATE(4164), 2, + ACTIONS(3952), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(4239), 2, sym_line_comment, sym_block_comment, - [141140] = 5, + [142940] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7249), 1, + ACTIONS(7337), 1, anon_sym_COMMA, - ACTIONS(7251), 1, + ACTIONS(7339), 1, anon_sym_RPAREN, - STATE(4165), 2, + STATE(4240), 2, sym_line_comment, sym_block_comment, - [141157] = 5, + [142957] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7253), 1, - sym_identifier, - STATE(1006), 1, - sym_type_reference_expression, - STATE(4166), 2, + ACTIONS(5076), 1, + anon_sym_LBRACE, + STATE(2784), 1, + sym_block, + STATE(4241), 2, sym_line_comment, sym_block_comment, - [141174] = 5, + [142974] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7255), 1, - anon_sym_LPAREN, - STATE(2509), 1, - sym_argument_list, - STATE(4167), 2, + ACTIONS(5096), 1, + anon_sym_LBRACE, + STATE(2569), 1, + sym_block, + STATE(4242), 2, sym_line_comment, sym_block_comment, - [141191] = 5, + [142991] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2215), 1, + ACTIONS(3040), 1, anon_sym_LBRACE, - STATE(384), 1, + STATE(1038), 1, sym_type_initializer_body, - STATE(4168), 2, + STATE(4243), 2, sym_line_comment, sym_block_comment, - [141208] = 5, + [143008] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6346), 1, + ACTIONS(4737), 1, anon_sym_LBRACE, - STATE(1559), 1, - sym__struct_body, - STATE(4169), 2, + STATE(1781), 1, + sym_block, + STATE(4244), 2, sym_line_comment, sym_block_comment, - [141225] = 5, + [143025] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4677), 1, + ACTIONS(7189), 1, anon_sym_LBRACE, - STATE(1515), 1, - sym_block, - STATE(4170), 2, + STATE(1898), 1, + sym_type_initializer_body, + STATE(4245), 2, sym_line_comment, sym_block_comment, - [141242] = 5, + [143042] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6414), 1, + ACTIONS(5098), 1, anon_sym_LBRACE, - STATE(1542), 1, - sym__enum_body, - STATE(4171), 2, + STATE(1028), 1, + sym_block, + STATE(4246), 2, sym_line_comment, sym_block_comment, - [141259] = 5, + [143059] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6344), 1, + ACTIONS(5084), 1, anon_sym_LBRACE, - STATE(1572), 1, - sym__interface_body, - STATE(4172), 2, + STATE(425), 1, + sym_block, + STATE(4247), 2, sym_line_comment, sym_block_comment, - [141276] = 5, + [143076] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7187), 1, - anon_sym_LBRACE, - STATE(1358), 1, - sym_type_initializer_body, - STATE(4173), 2, + ACTIONS(6547), 1, + sym_identifier, + STATE(3857), 1, + sym_generic_parameter, + STATE(4248), 2, sym_line_comment, sym_block_comment, - [141293] = 4, + [143093] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7257), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - STATE(4174), 2, + ACTIONS(5074), 1, + anon_sym_LBRACE, + STATE(1875), 1, + sym_block, + STATE(4249), 2, sym_line_comment, sym_block_comment, - [141308] = 5, + [143110] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6346), 1, + ACTIONS(7341), 1, anon_sym_LBRACE, - STATE(1566), 1, + STATE(1246), 1, sym__struct_body, - STATE(4175), 2, + STATE(4250), 2, sym_line_comment, sym_block_comment, - [141325] = 5, + [143127] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(1565), 1, - sym__enum_body, - STATE(4176), 2, + ACTIONS(7343), 1, + anon_sym_LPAREN, + STATE(483), 1, + sym_argument_list, + STATE(4251), 2, sym_line_comment, sym_block_comment, - [141342] = 5, + [143144] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6344), 1, + ACTIONS(5058), 1, anon_sym_LBRACE, - STATE(1564), 1, - sym__interface_body, - STATE(4177), 2, + STATE(2130), 1, + sym_block, + STATE(4252), 2, sym_line_comment, sym_block_comment, - [141359] = 5, + [143161] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5064), 1, + ACTIONS(3068), 1, anon_sym_LBRACE, - STATE(2156), 1, - sym_block, - STATE(4178), 2, + STATE(1898), 1, + sym_type_initializer_body, + STATE(4253), 2, sym_line_comment, sym_block_comment, - [141376] = 5, + [143178] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, + ACTIONS(3040), 1, anon_sym_LBRACE, - STATE(2512), 1, - sym_block, - STATE(4179), 2, + STATE(2557), 1, + sym_type_initializer_body, + STATE(4254), 2, sym_line_comment, sym_block_comment, - [141393] = 5, + [143195] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5036), 1, + ACTIONS(5058), 1, anon_sym_LBRACE, - STATE(2098), 1, + STATE(2129), 1, sym_block, - STATE(4180), 2, + STATE(4255), 2, sym_line_comment, sym_block_comment, - [141410] = 5, + [143212] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7259), 1, - anon_sym_LPAREN, - STATE(2348), 1, - sym_special_argument_list, - STATE(4181), 2, + ACTIONS(7333), 1, + anon_sym_LBRACE, + STATE(1038), 1, + sym_type_initializer_body, + STATE(4256), 2, sym_line_comment, sym_block_comment, - [141427] = 5, + [143229] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - sym_identifier, - STATE(2371), 1, - sym_reference_expression, - STATE(4182), 2, + ACTIONS(5076), 1, + anon_sym_LBRACE, + STATE(2608), 1, + sym_block, + STATE(4257), 2, sym_line_comment, sym_block_comment, - [141444] = 4, + [143246] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7261), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4183), 2, + ACTIONS(7345), 1, + sym_identifier, + STATE(2450), 1, + sym_type_reference_expression, + STATE(4258), 2, sym_line_comment, sym_block_comment, - [141459] = 4, + [143263] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6716), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4184), 2, + ACTIONS(6364), 1, + anon_sym_LBRACE, + STATE(1592), 1, + sym__struct_body, + STATE(4259), 2, sym_line_comment, sym_block_comment, - [141474] = 5, + [143280] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6650), 1, + ACTIONS(6494), 1, anon_sym_LBRACE, - STATE(2526), 1, - sym__content_block, - STATE(4185), 2, + STATE(1593), 1, + sym__enum_body, + STATE(4260), 2, sym_line_comment, sym_block_comment, - [141491] = 4, + [143297] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6709), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4186), 2, + ACTIONS(7347), 1, + anon_sym_LBRACE, + STATE(2076), 1, + sym__struct_body, + STATE(4261), 2, sym_line_comment, sym_block_comment, - [141506] = 5, + [143314] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2207), 1, + ACTIONS(7349), 1, anon_sym_LBRACE, - STATE(384), 1, + STATE(2289), 1, sym_type_initializer_body, - STATE(4187), 2, + STATE(4262), 2, sym_line_comment, sym_block_comment, - [141523] = 4, + [143331] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7263), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4188), 2, + ACTIONS(5092), 1, + anon_sym_LBRACE, + STATE(2003), 1, + sym_block, + STATE(4263), 2, sym_line_comment, sym_block_comment, - [141538] = 4, + [143348] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7265), 2, + ACTIONS(6791), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(4189), 2, + STATE(4264), 2, sym_line_comment, sym_block_comment, - [141553] = 5, + [143363] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2425), 1, - anon_sym_COMMA, - ACTIONS(7267), 1, - anon_sym_RPAREN, - STATE(4190), 2, + ACTIONS(3068), 1, + anon_sym_LBRACE, + STATE(2289), 1, + sym_type_initializer_body, + STATE(4265), 2, sym_line_comment, sym_block_comment, - [141570] = 5, + [143380] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6513), 1, - sym_identifier, - STATE(455), 1, - sym_reference_expression, - STATE(4191), 2, + ACTIONS(5028), 1, + anon_sym_LBRACE, + STATE(2167), 1, + sym_block, + STATE(4266), 2, sym_line_comment, sym_block_comment, - [141587] = 5, + [143397] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, - anon_sym_LBRACE, - STATE(2527), 1, - sym_block, - STATE(4192), 2, + ACTIONS(6476), 1, + sym_identifier, + STATE(2357), 1, + sym_reference_expression, + STATE(4267), 2, sym_line_comment, sym_block_comment, - [141604] = 5, + [143414] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6416), 1, - sym_identifier, - STATE(1824), 1, - sym_reference_expression, - STATE(4193), 2, + ACTIONS(5096), 1, + anon_sym_LBRACE, + STATE(2598), 1, + sym_block, + STATE(4268), 2, sym_line_comment, sym_block_comment, - [141621] = 5, + [143431] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7049), 1, - sym_identifier, - STATE(3981), 1, - sym_reference_expression, - STATE(4194), 2, + ACTIONS(7351), 1, + anon_sym_LPAREN, + STATE(2356), 1, + sym_special_argument_list, + STATE(4269), 2, sym_line_comment, sym_block_comment, - [141638] = 5, + [143448] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, + ACTIONS(5078), 1, anon_sym_LBRACE, - STATE(2318), 1, + STATE(2353), 1, sym_block, - STATE(4195), 2, + STATE(4270), 2, sym_line_comment, sym_block_comment, - [141655] = 5, + [143465] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2207), 1, - anon_sym_LBRACE, - STATE(2551), 1, - sym_type_initializer_body, - STATE(4196), 2, + ACTIONS(7353), 1, + sym_identifier, + STATE(2044), 1, + sym_type_reference_expression, + STATE(4271), 2, sym_line_comment, sym_block_comment, - [141672] = 5, + [143482] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7269), 1, + ACTIONS(4749), 1, anon_sym_LPAREN, - STATE(1053), 1, + STATE(2122), 1, sym_argument_list, - STATE(4197), 2, + STATE(4272), 2, sym_line_comment, sym_block_comment, - [141689] = 5, + [143499] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7271), 1, + ACTIONS(6360), 1, anon_sym_LBRACE, - STATE(2551), 1, - sym_type_initializer_body, - STATE(4198), 2, + STATE(1602), 1, + sym__interface_body, + STATE(4273), 2, sym_line_comment, sym_block_comment, - [141706] = 5, + [143516] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7273), 1, - anon_sym_COMMA, - ACTIONS(7275), 1, - anon_sym_RPAREN, - STATE(4199), 2, + ACTIONS(7355), 1, + anon_sym_LPAREN, + STATE(1075), 1, + sym_special_argument_list, + STATE(4274), 2, sym_line_comment, sym_block_comment, - [141723] = 5, + [143533] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7277), 1, - anon_sym_LPAREN, - STATE(2063), 1, - sym_special_argument_list, - STATE(4200), 2, + ACTIONS(1689), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(4275), 2, sym_line_comment, sym_block_comment, - [141740] = 5, + [143548] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4715), 1, + ACTIONS(5090), 1, anon_sym_LBRACE, - STATE(1743), 1, + STATE(1244), 1, sym_block, - STATE(4201), 2, + STATE(4276), 2, sym_line_comment, sym_block_comment, - [141757] = 5, + [143565] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5066), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - STATE(1335), 1, + STATE(1778), 1, sym_block, - STATE(4202), 2, + STATE(4277), 2, sym_line_comment, sym_block_comment, - [141774] = 4, + [143582] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6686), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(4203), 2, + ACTIONS(5058), 1, + anon_sym_LBRACE, + STATE(2119), 1, + sym_block, + STATE(4278), 2, sym_line_comment, sym_block_comment, - [141789] = 5, + [143599] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7279), 1, - anon_sym_LBRACE, - STATE(1078), 1, - sym__struct_body, - STATE(4204), 2, + ACTIONS(7357), 1, + anon_sym_RBRACE, + ACTIONS(7359), 1, + aux_sym_format_specifier_token1, + STATE(4279), 2, sym_line_comment, sym_block_comment, - [141806] = 5, + [143616] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7281), 1, - anon_sym_LPAREN, - STATE(1827), 1, - sym_special_argument_list, - STATE(4205), 2, + ACTIONS(5028), 1, + anon_sym_LBRACE, + STATE(2272), 1, + sym_block, + STATE(4280), 2, sym_line_comment, sym_block_comment, - [141823] = 5, + [143633] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2215), 1, + ACTIONS(6772), 1, anon_sym_LBRACE, - STATE(2551), 1, - sym_type_initializer_body, - STATE(4206), 2, + STATE(2270), 1, + sym__content_block, + STATE(4281), 2, sym_line_comment, sym_block_comment, - [141840] = 5, + [143650] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5064), 1, - anon_sym_LBRACE, - STATE(2175), 1, - sym_block, - STATE(4207), 2, + ACTIONS(6634), 1, + sym_identifier, + STATE(1241), 1, + sym_reference_expression, + STATE(4282), 2, sym_line_comment, sym_block_comment, - [141857] = 5, + [143667] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, + ACTIONS(7361), 1, anon_sym_LBRACE, - STATE(2545), 1, - sym_block, - STATE(4208), 2, + STATE(1361), 1, + sym_type_initializer_body, + STATE(4283), 2, sym_line_comment, sym_block_comment, - [141874] = 5, + [143684] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5064), 1, + ACTIONS(6360), 1, anon_sym_LBRACE, - STATE(2176), 1, - sym_block, - STATE(4209), 2, + STATE(1589), 1, + sym__interface_body, + STATE(4284), 2, sym_line_comment, sym_block_comment, - [141891] = 4, + [143701] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6573), 2, - anon_sym_RBRACE, + ACTIONS(4930), 1, sym_identifier, - STATE(4210), 2, + ACTIONS(7363), 1, + anon_sym_volatile, + STATE(4285), 2, sym_line_comment, sym_block_comment, - [141906] = 5, + [143718] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5072), 1, - anon_sym_LBRACE, - STATE(1834), 1, - sym_block, - STATE(4211), 2, + ACTIONS(6464), 1, + sym_identifier, + STATE(1083), 1, + sym_reference_expression, + STATE(4286), 2, sym_line_comment, sym_block_comment, - [141923] = 5, + [143735] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7283), 1, - sym_identifier, - STATE(2085), 1, - sym_type_reference_expression, - STATE(4212), 2, + ACTIONS(3068), 1, + anon_sym_LBRACE, + STATE(1174), 1, + sym_type_initializer_body, + STATE(4287), 2, sym_line_comment, sym_block_comment, - [141940] = 5, + [143752] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7285), 1, - anon_sym_LPAREN, - STATE(2183), 1, - sym_argument_list, - STATE(4213), 2, + ACTIONS(7365), 1, + anon_sym_LBRACE, + STATE(448), 1, + sym__struct_body, + STATE(4288), 2, sym_line_comment, sym_block_comment, - [141957] = 5, + [143769] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, + ACTIONS(7301), 1, anon_sym_LBRACE, - STATE(434), 1, - sym_block, - STATE(4214), 2, + STATE(2557), 1, + sym_type_initializer_body, + STATE(4289), 2, sym_line_comment, sym_block_comment, - [141974] = 5, + [143786] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7287), 1, - anon_sym_LBRACE, - STATE(1970), 1, - sym_type_initializer_body, - STATE(4215), 2, + ACTIONS(6624), 2, + anon_sym_RBRACE, + sym_identifier, + STATE(4290), 2, sym_line_comment, sym_block_comment, - [141991] = 4, + [143801] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3920), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - STATE(4216), 2, + ACTIONS(7367), 1, + anon_sym_LBRACE, + STATE(2121), 1, + sym_type_initializer_body, + STATE(4291), 2, sym_line_comment, sym_block_comment, - [142006] = 5, + [143818] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7271), 1, + ACTIONS(7369), 1, anon_sym_LBRACE, - STATE(2551), 1, + STATE(1174), 1, sym_type_initializer_body, - STATE(4217), 2, + STATE(4292), 2, sym_line_comment, sym_block_comment, - [142023] = 5, + [143835] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7289), 1, - anon_sym_COMMA, - ACTIONS(7291), 1, - anon_sym_RPAREN, - STATE(4218), 2, + ACTIONS(6644), 1, + sym_identifier, + STATE(3634), 1, + sym_import_name, + STATE(4293), 2, sym_line_comment, sym_block_comment, - [142040] = 5, + [143852] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(1845), 1, - sym_type_initializer_body, - STATE(4219), 2, + ACTIONS(6722), 1, + anon_sym_RBRACE, + ACTIONS(6724), 1, + aux_sym_format_specifier_token1, + STATE(4294), 2, sym_line_comment, sym_block_comment, - [142057] = 5, + [143869] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, - anon_sym_LBRACE, - STATE(350), 1, - sym_block, - STATE(4220), 2, + ACTIONS(5512), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, + STATE(4295), 2, sym_line_comment, sym_block_comment, - [142074] = 5, + [143884] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4715), 1, + ACTIONS(5078), 1, anon_sym_LBRACE, - STATE(1705), 1, + STATE(2317), 1, sym_block, - STATE(4221), 2, + STATE(4296), 2, sym_line_comment, sym_block_comment, - [142091] = 5, + [143901] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4715), 1, + ACTIONS(7371), 1, + anon_sym_LPAREN, + STATE(1873), 1, + sym_argument_list, + STATE(4297), 2, + sym_line_comment, + sym_block_comment, + [143918] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5076), 1, anon_sym_LBRACE, - STATE(1710), 1, + STATE(2815), 1, sym_block, - STATE(4222), 2, + STATE(4298), 2, sym_line_comment, sym_block_comment, - [142108] = 5, + [143935] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5064), 1, + ACTIONS(5078), 1, anon_sym_LBRACE, - STATE(2188), 1, + STATE(2338), 1, sym_block, - STATE(4223), 2, + STATE(4299), 2, sym_line_comment, sym_block_comment, - [142125] = 4, + [143952] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6657), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, - STATE(4224), 2, + ACTIONS(6869), 1, + anon_sym_LBRACE, + STATE(2901), 1, + sym__content_block, + STATE(4300), 2, sym_line_comment, sym_block_comment, - [142140] = 5, + [143969] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7295), 1, - sym_identifier, - STATE(3722), 1, - sym_label_reference, - STATE(4225), 2, + ACTIONS(5092), 1, + anon_sym_LBRACE, + STATE(2029), 1, + sym_block, + STATE(4301), 2, sym_line_comment, sym_block_comment, - [142157] = 5, + [143986] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7297), 1, - sym_identifier, - STATE(1412), 1, - sym_type_reference_expression, - STATE(4226), 2, + ACTIONS(6823), 1, + anon_sym_LBRACE, + STATE(2339), 1, + sym__content_block, + STATE(4302), 2, sym_line_comment, sym_block_comment, - [142174] = 5, + [144003] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7299), 1, + ACTIONS(7373), 1, anon_sym_LPAREN, - STATE(1741), 1, - sym_argument_list, - STATE(4227), 2, + STATE(2719), 1, + sym_special_argument_list, + STATE(4303), 2, sym_line_comment, sym_block_comment, - [142191] = 5, + [144020] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4715), 1, - anon_sym_LBRACE, - STATE(1677), 1, - sym_block, - STATE(4228), 2, + ACTIONS(5540), 2, + anon_sym_COMMA, + anon_sym_in, + STATE(4304), 2, sym_line_comment, sym_block_comment, - [142208] = 5, + [144035] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, - anon_sym_LBRACE, - STATE(2569), 1, - sym_block, - STATE(4229), 2, + ACTIONS(6815), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4305), 2, sym_line_comment, sym_block_comment, - [142225] = 5, + [144050] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6802), 1, + ACTIONS(5028), 1, anon_sym_LBRACE, - STATE(3687), 1, - sym__content_block, - STATE(4230), 2, + STATE(2261), 1, + sym_block, + STATE(4306), 2, sym_line_comment, sym_block_comment, - [142242] = 5, + [144067] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4715), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - STATE(3692), 1, + STATE(1883), 1, sym_block, - STATE(4231), 2, + STATE(4307), 2, sym_line_comment, sym_block_comment, - [142259] = 5, + [144084] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4715), 1, - anon_sym_LBRACE, - STATE(3696), 1, - sym_block, - STATE(4232), 2, + ACTIONS(6508), 1, + sym_identifier, + STATE(2040), 1, + sym_reference_expression, + STATE(4308), 2, sym_line_comment, sym_block_comment, - [142276] = 5, + [144101] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5072), 1, + ACTIONS(5078), 1, anon_sym_LBRACE, - STATE(1850), 1, + STATE(2399), 1, sym_block, - STATE(4233), 2, + STATE(4309), 2, sym_line_comment, sym_block_comment, - [142293] = 5, + [144118] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, + ACTIONS(7153), 1, anon_sym_LBRACE, - STATE(1973), 1, - sym_block, - STATE(4234), 2, + STATE(1882), 1, + sym__content_block, + STATE(4310), 2, sym_line_comment, sym_block_comment, - [142310] = 5, + [144135] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2215), 1, - anon_sym_LBRACE, - STATE(1970), 1, - sym_type_initializer_body, - STATE(4235), 2, + ACTIONS(6644), 1, + sym_identifier, + STATE(3563), 1, + sym_import_name, + STATE(4311), 2, sym_line_comment, sym_block_comment, - [142327] = 5, + [144152] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6802), 1, - anon_sym_LBRACE, - STATE(1688), 1, - sym__content_block, - STATE(4236), 2, + ACTIONS(4964), 1, + anon_sym_LPAREN, + STATE(2449), 1, + sym_argument_list, + STATE(4312), 2, sym_line_comment, sym_block_comment, - [142344] = 5, + [144169] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4715), 1, - anon_sym_LBRACE, - STATE(1690), 1, - sym_block, - STATE(4237), 2, + ACTIONS(7375), 1, + sym_identifier, + STATE(3366), 1, + sym_type_reference_expression, + STATE(4313), 2, sym_line_comment, sym_block_comment, - [142361] = 5, + [144186] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4715), 1, + ACTIONS(5088), 1, anon_sym_LBRACE, - STATE(1623), 1, + STATE(2904), 1, sym_block, - STATE(4238), 2, + STATE(4314), 2, sym_line_comment, sym_block_comment, - [142378] = 5, + [144203] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2207), 1, - anon_sym_LBRACE, - STATE(1720), 1, - sym_type_initializer_body, - STATE(4239), 2, + ACTIONS(6971), 1, + sym_identifier, + STATE(4113), 1, + sym_reference_expression, + STATE(4315), 2, sym_line_comment, sym_block_comment, - [142395] = 5, + [144220] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7301), 1, + ACTIONS(5086), 1, anon_sym_LBRACE, - STATE(1301), 1, - sym__struct_body, - STATE(4240), 2, + STATE(1387), 1, + sym_block, + STATE(4316), 2, sym_line_comment, sym_block_comment, - [142412] = 5, + [144237] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7303), 1, - anon_sym_LBRACE, - STATE(1720), 1, - sym_type_initializer_body, - STATE(4241), 2, + ACTIONS(7377), 1, + anon_sym_LPAREN, + STATE(1180), 1, + sym_special_argument_list, + STATE(4317), 2, sym_line_comment, sym_block_comment, - [142429] = 5, + [144254] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6346), 1, + ACTIONS(6494), 1, anon_sym_LBRACE, - STATE(1443), 1, - sym__struct_body, - STATE(4242), 2, + STATE(1590), 1, + sym__enum_body, + STATE(4318), 2, sym_line_comment, sym_block_comment, - [142446] = 5, + [144271] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6743), 1, - anon_sym_LBRACE, - STATE(2205), 1, - sym__content_block, - STATE(4243), 2, + ACTIONS(7379), 1, + anon_sym_LPAREN, + STATE(2259), 1, + sym_argument_list, + STATE(4319), 2, sym_line_comment, sym_block_comment, - [142463] = 5, + [144288] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2215), 1, + ACTIONS(6364), 1, anon_sym_LBRACE, - STATE(1720), 1, - sym_type_initializer_body, - STATE(4244), 2, + STATE(1591), 1, + sym__struct_body, + STATE(4320), 2, sym_line_comment, sym_block_comment, - [142480] = 5, + [144305] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4715), 1, + ACTIONS(7381), 1, anon_sym_LBRACE, - STATE(1749), 1, - sym_block, - STATE(4245), 2, + STATE(1009), 1, + sym__struct_body, + STATE(4321), 2, sym_line_comment, sym_block_comment, - [142497] = 5, + [144322] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2215), 1, - anon_sym_LBRACE, - STATE(1845), 1, - sym_type_initializer_body, - STATE(4246), 2, + ACTIONS(7383), 1, + sym_identifier, + STATE(1252), 1, + sym_type_reference_expression, + STATE(4322), 2, sym_line_comment, sym_block_comment, - [142514] = 5, + [144339] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7287), 1, - anon_sym_LBRACE, - STATE(1970), 1, - sym_type_initializer_body, - STATE(4247), 2, + ACTIONS(7385), 1, + anon_sym_LPAREN, + STATE(2053), 1, + sym_special_argument_list, + STATE(4323), 2, sym_line_comment, sym_block_comment, - [142531] = 5, + [144356] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7303), 1, + ACTIONS(5096), 1, anon_sym_LBRACE, - STATE(1720), 1, - sym_type_initializer_body, - STATE(4248), 2, + STATE(2567), 1, + sym_block, + STATE(4324), 2, sym_line_comment, sym_block_comment, - [142548] = 5, + [144373] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, + ACTIONS(5078), 1, anon_sym_LBRACE, - STATE(230), 1, + STATE(2454), 1, sym_block, - STATE(4249), 2, + STATE(4325), 2, sym_line_comment, sym_block_comment, - [142565] = 5, + [144390] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7305), 1, + ACTIONS(5078), 1, anon_sym_LBRACE, - STATE(1162), 1, - sym__struct_body, - STATE(4250), 2, - sym_line_comment, - sym_block_comment, - [142582] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6566), 1, - sym_identifier, - STATE(1686), 1, - sym_reference_expression, - STATE(4251), 2, + STATE(2455), 1, + sym_block, + STATE(4326), 2, sym_line_comment, sym_block_comment, - [142599] = 5, + [144407] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4715), 1, + ACTIONS(5084), 1, anon_sym_LBRACE, - STATE(3724), 1, + STATE(480), 1, sym_block, - STATE(4252), 2, + STATE(4327), 2, sym_line_comment, sym_block_comment, - [142616] = 5, + [144424] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7307), 1, - anon_sym_LPAREN, - STATE(2572), 1, - sym_special_argument_list, - STATE(4253), 2, + ACTIONS(7387), 1, + anon_sym_COMMA, + ACTIONS(7389), 1, + anon_sym_RPAREN, + STATE(4328), 2, sym_line_comment, sym_block_comment, - [142633] = 5, + [144441] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7049), 1, + ACTIONS(6646), 1, sym_identifier, - STATE(4304), 1, + STATE(2723), 1, sym_reference_expression, - STATE(4254), 2, + STATE(4329), 2, sym_line_comment, sym_block_comment, - [142650] = 5, + [144458] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7293), 1, + ACTIONS(7237), 1, anon_sym_LBRACE, - STATE(1845), 1, - sym_type_initializer_body, - STATE(4255), 2, + STATE(2174), 1, + sym_block, + STATE(4330), 2, sym_line_comment, sym_block_comment, - [142667] = 5, + [144475] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5064), 1, + ACTIONS(5058), 1, anon_sym_LBRACE, - STATE(2251), 1, + STATE(1823), 1, sym_block, - STATE(4256), 2, + STATE(4331), 2, sym_line_comment, sym_block_comment, - [142684] = 5, + [144492] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2207), 1, + ACTIONS(3040), 1, anon_sym_LBRACE, - STATE(1970), 1, + STATE(1174), 1, sym_type_initializer_body, - STATE(4257), 2, + STATE(4332), 2, sym_line_comment, sym_block_comment, - [142701] = 5, + [144509] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, - anon_sym_LBRACE, - STATE(1792), 1, - sym_block, - STATE(4258), 2, + ACTIONS(6476), 1, + sym_identifier, + STATE(4107), 1, + sym_reference_expression, + STATE(4333), 2, sym_line_comment, sym_block_comment, - [142718] = 5, + [144526] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5064), 1, + ACTIONS(5078), 1, anon_sym_LBRACE, - STATE(2126), 1, + STATE(4670), 1, sym_block, - STATE(4259), 2, + STATE(4334), 2, sym_line_comment, sym_block_comment, - [142735] = 5, + [144543] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4715), 1, + ACTIONS(5098), 1, anon_sym_LBRACE, - STATE(1697), 1, + STATE(1068), 1, sym_block, - STATE(4260), 2, + STATE(4335), 2, sym_line_comment, sym_block_comment, - [142752] = 5, + [144560] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7309), 1, - anon_sym_LPAREN, - STATE(1694), 1, - sym_special_argument_list, - STATE(4261), 2, + ACTIONS(3040), 1, + anon_sym_LBRACE, + STATE(2121), 1, + sym_type_initializer_body, + STATE(4336), 2, sym_line_comment, sym_block_comment, - [142769] = 5, + [144577] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6830), 1, - anon_sym_LBRACE, - STATE(306), 1, - sym__content_block, - STATE(4262), 2, + ACTIONS(7391), 1, + anon_sym_COMMA, + ACTIONS(7393), 1, + anon_sym_RPAREN, + STATE(4337), 2, sym_line_comment, sym_block_comment, - [142786] = 5, + [144594] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7311), 1, - anon_sym_LBRACE, - STATE(1508), 1, - sym__content_block, - STATE(4263), 2, + ACTIONS(7395), 1, + anon_sym_LPAREN, + STATE(1332), 1, + sym_special_argument_list, + STATE(4338), 2, sym_line_comment, sym_block_comment, - [142803] = 5, + [144611] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2207), 1, - anon_sym_LBRACE, - STATE(2226), 1, - sym_type_initializer_body, - STATE(4264), 2, + ACTIONS(6419), 1, + sym_identifier, + STATE(1319), 1, + sym_reference_expression, + STATE(4339), 2, sym_line_comment, sym_block_comment, - [142820] = 5, + [144628] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, - anon_sym_LBRACE, - STATE(2064), 1, - sym_block, - STATE(4265), 2, + ACTIONS(6879), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4340), 2, sym_line_comment, sym_block_comment, - [142837] = 5, + [144643] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7313), 1, - anon_sym_LPAREN, - STATE(310), 1, - sym_special_argument_list, - STATE(4266), 2, + ACTIONS(5086), 1, + anon_sym_LBRACE, + STATE(1308), 1, + sym_block, + STATE(4341), 2, sym_line_comment, sym_block_comment, - [142854] = 5, + [144660] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7107), 1, + ACTIONS(5086), 1, anon_sym_LBRACE, - STATE(2226), 1, - sym_type_initializer_body, - STATE(4267), 2, + STATE(1309), 1, + sym_block, + STATE(4342), 2, sym_line_comment, sym_block_comment, - [142871] = 5, + [144677] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2207), 1, + ACTIONS(5090), 1, anon_sym_LBRACE, - STATE(1845), 1, - sym_type_initializer_body, - STATE(4268), 2, + STATE(1224), 1, + sym_block, + STATE(4343), 2, sym_line_comment, sym_block_comment, - [142888] = 5, + [144694] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7315), 1, + ACTIONS(5028), 1, anon_sym_LBRACE, - STATE(1989), 1, - sym__struct_body, - STATE(4269), 2, + STATE(2251), 1, + sym_block, + STATE(4344), 2, sym_line_comment, sym_block_comment, - [142905] = 5, + [144711] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6840), 1, + ACTIONS(4222), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(2052), 1, - sym__content_block, - STATE(4270), 2, + STATE(4345), 2, sym_line_comment, sym_block_comment, - [142922] = 5, + [144726] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5072), 1, + ACTIONS(7349), 1, anon_sym_LBRACE, - STATE(1703), 1, - sym_block, - STATE(4271), 2, + STATE(2289), 1, + sym_type_initializer_body, + STATE(4346), 2, sym_line_comment, sym_block_comment, - [142939] = 5, + [144743] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2215), 1, - anon_sym_LBRACE, - STATE(2226), 1, - sym_type_initializer_body, - STATE(4272), 2, + ACTIONS(7397), 1, + sym_identifier, + STATE(419), 1, + sym_type_reference_expression, + STATE(4347), 2, sym_line_comment, sym_block_comment, - [142956] = 5, + [144760] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5064), 1, + ACTIONS(5078), 1, anon_sym_LBRACE, - STATE(2215), 1, + STATE(2365), 1, sym_block, - STATE(4273), 2, + STATE(4348), 2, sym_line_comment, sym_block_comment, - [142973] = 4, + [144777] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4184), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(4274), 2, + ACTIONS(3859), 1, + anon_sym_LPAREN, + STATE(1326), 1, + sym_argument_list, + STATE(4349), 2, sym_line_comment, sym_block_comment, - [142988] = 5, + [144794] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5072), 1, + ACTIONS(5086), 1, anon_sym_LBRACE, - STATE(1852), 1, + STATE(1328), 1, sym_block, - STATE(4275), 2, + STATE(4350), 2, sym_line_comment, sym_block_comment, - [143005] = 4, + [144811] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4188), 2, - anon_sym_SEMI, + ACTIONS(5088), 1, anon_sym_LBRACE, - STATE(4276), 2, + STATE(2919), 1, + sym_block, + STATE(4351), 2, sym_line_comment, sym_block_comment, - [143020] = 5, + [144828] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6346), 1, - anon_sym_LBRACE, - STATE(1539), 1, - sym__struct_body, - STATE(4277), 2, + ACTIONS(4874), 1, + anon_sym_COLON, + ACTIONS(7399), 1, + anon_sym_mut, + STATE(4352), 2, sym_line_comment, sym_block_comment, - [143037] = 5, + [144845] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(1538), 1, - sym__enum_body, - STATE(4278), 2, + ACTIONS(7401), 1, + anon_sym_COMMA, + ACTIONS(7403), 1, + anon_sym_RPAREN, + STATE(4353), 2, sym_line_comment, sym_block_comment, - [143054] = 5, + [144862] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, - anon_sym_LBRACE, - STATE(2039), 1, - sym_block, - STATE(4279), 2, + ACTIONS(7405), 1, + anon_sym_COMMA, + ACTIONS(7407), 1, + anon_sym_RPAREN, + STATE(4354), 2, sym_line_comment, sym_block_comment, - [143071] = 5, + [144879] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, + ACTIONS(3068), 1, anon_sym_LBRACE, - STATE(480), 1, - sym_block, - STATE(4280), 2, + STATE(2121), 1, + sym_type_initializer_body, + STATE(4355), 2, sym_line_comment, sym_block_comment, - [143088] = 5, + [144896] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6344), 1, + ACTIONS(4226), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(1537), 1, - sym__interface_body, - STATE(4281), 2, + STATE(4356), 2, sym_line_comment, sym_block_comment, - [143105] = 5, + [144911] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6677), 1, + ACTIONS(5058), 1, anon_sym_LBRACE, - STATE(1853), 1, - sym__content_block, - STATE(4282), 2, + STATE(2088), 1, + sym_block, + STATE(4357), 2, sym_line_comment, sym_block_comment, - [143122] = 4, + [144928] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7317), 2, + ACTIONS(7409), 2, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4283), 2, + STATE(4358), 2, sym_line_comment, sym_block_comment, - [143137] = 5, + [144943] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4681), 1, - anon_sym_LPAREN, - STATE(2021), 1, - sym_argument_list, - STATE(4284), 2, + ACTIONS(7411), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(4359), 2, sym_line_comment, sym_block_comment, - [143154] = 5, + [144958] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6477), 1, - sym_identifier, - STATE(3794), 1, - sym_generic_parameter, - STATE(4285), 2, + ACTIONS(6360), 1, + anon_sym_LBRACE, + STATE(1531), 1, + sym__interface_body, + STATE(4360), 2, sym_line_comment, sym_block_comment, - [143171] = 5, + [144975] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4910), 1, - sym_identifier, - ACTIONS(7319), 1, - anon_sym_volatile, - STATE(4286), 2, + ACTIONS(7413), 1, + anon_sym_LPAREN, + STATE(2593), 1, + sym_special_argument_list, + STATE(4361), 2, sym_line_comment, sym_block_comment, - [143188] = 5, + [144992] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7321), 1, - anon_sym_LPAREN, - STATE(483), 1, - sym_argument_list, - STATE(4287), 2, + ACTIONS(6494), 1, + anon_sym_LBRACE, + STATE(1528), 1, + sym__enum_body, + STATE(4362), 2, sym_line_comment, sym_block_comment, - [143205] = 5, + [145009] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7323), 1, - sym_identifier, - STATE(1352), 1, - sym_type_reference_expression, - STATE(4288), 2, + ACTIONS(7367), 1, + anon_sym_LBRACE, + STATE(2121), 1, + sym_type_initializer_body, + STATE(4363), 2, sym_line_comment, sym_block_comment, - [143222] = 4, + [145026] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1709), 2, - anon_sym_SEMI, + ACTIONS(6911), 1, anon_sym_LBRACE, - STATE(4289), 2, + STATE(1298), 1, + sym__content_block, + STATE(4364), 2, sym_line_comment, sym_block_comment, - [143237] = 5, + [145043] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6495), 1, - sym_identifier, - STATE(2578), 1, - sym_reference_expression, - STATE(4290), 2, + ACTIONS(6364), 1, + anon_sym_LBRACE, + STATE(1521), 1, + sym__struct_body, + STATE(4365), 2, sym_line_comment, sym_block_comment, - [143254] = 5, + [145060] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7325), 1, - anon_sym_LPAREN, - STATE(2254), 1, - sym_special_argument_list, - STATE(4291), 2, + ACTIONS(5086), 1, + anon_sym_LBRACE, + STATE(1386), 1, + sym_block, + STATE(4366), 2, sym_line_comment, sym_block_comment, - [143271] = 5, + [145077] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, + ACTIONS(5086), 1, anon_sym_LBRACE, - STATE(2009), 1, + STATE(1266), 1, sym_block, - STATE(4292), 2, + STATE(4367), 2, sym_line_comment, sym_block_comment, - [143288] = 4, + [145094] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5422), 2, + ACTIONS(5350), 2, anon_sym_LBRACE, anon_sym_COMMA, - STATE(4293), 2, + STATE(4368), 2, sym_line_comment, sym_block_comment, - [143303] = 5, + [145109] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, + ACTIONS(3068), 1, anon_sym_LBRACE, - STATE(2008), 1, - sym_block, - STATE(4294), 2, + STATE(1361), 1, + sym_type_initializer_body, + STATE(4369), 2, sym_line_comment, sym_block_comment, - [143320] = 4, + [145126] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7327), 2, + ACTIONS(5084), 1, anon_sym_LBRACE, - anon_sym_COMMA, - STATE(4295), 2, + STATE(338), 1, + sym_block, + STATE(4370), 2, sym_line_comment, sym_block_comment, - [143335] = 5, + [145143] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5072), 1, + ACTIONS(5084), 1, anon_sym_LBRACE, - STATE(1861), 1, + STATE(339), 1, sym_block, - STATE(4296), 2, + STATE(4371), 2, sym_line_comment, sym_block_comment, - [143352] = 5, + [145160] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7329), 1, - anon_sym_COMMA, - ACTIONS(7331), 1, - anon_sym_RPAREN, - STATE(4297), 2, + ACTIONS(7361), 1, + anon_sym_LBRACE, + STATE(1361), 1, + sym_type_initializer_body, + STATE(4372), 2, sym_line_comment, sym_block_comment, - [143369] = 5, + [145177] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, + ACTIONS(5028), 1, anon_sym_LBRACE, - STATE(425), 1, + STATE(2230), 1, sym_block, - STATE(4298), 2, + STATE(4373), 2, sym_line_comment, sym_block_comment, - [143386] = 5, + [145194] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6555), 1, - sym_identifier, - STATE(2214), 1, - sym_reference_expression, - STATE(4299), 2, + ACTIONS(7415), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4374), 2, sym_line_comment, sym_block_comment, - [143403] = 4, + [145209] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5464), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, - STATE(4300), 2, + ACTIONS(5096), 1, + anon_sym_LBRACE, + STATE(2568), 1, + sym_block, + STATE(4375), 2, sym_line_comment, sym_block_comment, - [143418] = 5, + [145226] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6868), 1, + ACTIONS(7417), 1, anon_sym_RBRACE, - ACTIONS(6870), 1, + ACTIONS(7419), 1, aux_sym_format_specifier_token1, - STATE(4301), 2, + STATE(4376), 2, sym_line_comment, sym_block_comment, - [143435] = 5, + [145243] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7333), 1, - anon_sym_LPAREN, - STATE(1863), 1, - sym_argument_list, - STATE(4302), 2, + ACTIONS(7421), 1, + anon_sym_LBRACE, + STATE(1673), 1, + sym__struct_body, + STATE(4377), 2, sym_line_comment, sym_block_comment, - [143452] = 5, + [145260] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7335), 1, - sym_identifier, - STATE(1155), 1, - sym_type_reference_expression, - STATE(4303), 2, + ACTIONS(7423), 1, + anon_sym_LBRACE, + STATE(1982), 1, + sym__struct_body, + STATE(4378), 2, sym_line_comment, sym_block_comment, - [143469] = 4, + [145277] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6880), 2, - anon_sym_COMMA, - anon_sym_PIPE, - STATE(4304), 2, + ACTIONS(3040), 1, + anon_sym_LBRACE, + STATE(1361), 1, + sym_type_initializer_body, + STATE(4379), 2, sym_line_comment, sym_block_comment, - [143484] = 5, + [145294] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, + ACTIONS(5086), 1, anon_sym_LBRACE, - STATE(1915), 1, + STATE(1369), 1, sym_block, - STATE(4305), 2, + STATE(4380), 2, sym_line_comment, sym_block_comment, - [143501] = 5, + [145311] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5072), 1, + ACTIONS(5090), 1, anon_sym_LBRACE, - STATE(1867), 1, + STATE(1221), 1, sym_block, - STATE(4306), 2, + STATE(4381), 2, sym_line_comment, sym_block_comment, - [143518] = 5, + [145328] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5072), 1, + ACTIONS(5028), 1, anon_sym_LBRACE, - STATE(1869), 1, + STATE(2252), 1, sym_block, - STATE(4307), 2, - sym_line_comment, - sym_block_comment, - [143535] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7337), 1, - anon_sym_COMMA, - ACTIONS(7339), 1, - anon_sym_RPAREN, - STATE(4308), 2, - sym_line_comment, - sym_block_comment, - [143552] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7341), 1, - anon_sym_RBRACE, - ACTIONS(7343), 1, - aux_sym_format_specifier_token1, - STATE(4309), 2, + STATE(4382), 2, sym_line_comment, sym_block_comment, - [143569] = 5, + [145345] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6485), 1, - sym_identifier, - STATE(2090), 1, - sym_reference_expression, - STATE(4310), 2, + ACTIONS(6350), 1, + anon_sym_LBRACE, + STATE(2391), 1, + sym_type_initializer_body, + STATE(4383), 2, sym_line_comment, sym_block_comment, - [143586] = 5, + [145362] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7345), 1, - anon_sym_RBRACE, - ACTIONS(7347), 1, - aux_sym_format_specifier_token1, - STATE(4311), 2, + ACTIONS(7369), 1, + anon_sym_LBRACE, + STATE(1174), 1, + sym_type_initializer_body, + STATE(4384), 2, sym_line_comment, sym_block_comment, - [143603] = 5, + [145379] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5072), 1, + ACTIONS(7425), 1, anon_sym_LBRACE, - STATE(1893), 1, - sym_block, - STATE(4312), 2, + STATE(2913), 1, + sym_type_initializer_body, + STATE(4385), 2, sym_line_comment, sym_block_comment, - [143620] = 5, + [145396] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7349), 1, - sym_identifier, - STATE(2346), 1, - sym_type_reference_expression, - STATE(4313), 2, + ACTIONS(7427), 1, + anon_sym_RBRACE, + STATE(4386), 2, sym_line_comment, sym_block_comment, - [143637] = 5, + [145410] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6477), 1, - sym_identifier, - STATE(3668), 1, - sym_generic_parameter, - STATE(4314), 2, + ACTIONS(7429), 1, + anon_sym_RBRACE, + STATE(4387), 2, sym_line_comment, sym_block_comment, - [143654] = 4, + [145424] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5404), 1, - anon_sym_LBRACE, - STATE(4315), 2, + ACTIONS(1516), 1, + anon_sym_RPAREN, + STATE(4388), 2, sym_line_comment, sym_block_comment, - [143668] = 4, + [145438] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7351), 1, - anon_sym_DOT, - STATE(4316), 2, + ACTIONS(7431), 1, + anon_sym_RBRACE, + STATE(4389), 2, sym_line_comment, sym_block_comment, - [143682] = 4, + [145452] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7353), 1, - anon_sym_RBRACK, - STATE(4317), 2, + ACTIONS(901), 1, + anon_sym_RBRACE, + STATE(4390), 2, sym_line_comment, sym_block_comment, - [143696] = 4, + [145466] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7355), 1, - anon_sym_RBRACK, - STATE(4318), 2, + ACTIONS(7433), 1, + anon_sym_RBRACE, + STATE(4391), 2, sym_line_comment, sym_block_comment, - [143710] = 4, + [145480] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1635), 1, - anon_sym_RPAREN, - STATE(4319), 2, + ACTIONS(7435), 1, + anon_sym_RBRACE, + STATE(4392), 2, sym_line_comment, sym_block_comment, - [143724] = 4, + [145494] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7357), 1, + ACTIONS(7437), 1, anon_sym_RBRACE, - STATE(4320), 2, - sym_line_comment, - sym_block_comment, - [143738] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(7359), 1, - aux_sym__content_block_token1, - STATE(4321), 2, + STATE(4393), 2, sym_line_comment, sym_block_comment, - [143752] = 4, + [145508] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(909), 1, + ACTIONS(7439), 1, anon_sym_RBRACE, - STATE(4322), 2, + STATE(4394), 2, sym_line_comment, sym_block_comment, - [143766] = 4, + [145522] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7361), 1, - anon_sym_DOT, - STATE(4323), 2, + ACTIONS(927), 1, + anon_sym_RBRACE, + STATE(4395), 2, sym_line_comment, sym_block_comment, - [143780] = 4, + [145536] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7363), 1, + ACTIONS(7441), 1, anon_sym_RBRACE, - STATE(4324), 2, + STATE(4396), 2, sym_line_comment, sym_block_comment, - [143794] = 4, + [145550] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7365), 1, - anon_sym_RBRACE, - STATE(4325), 2, + ACTIONS(7443), 1, + anon_sym_DOT, + STATE(4397), 2, sym_line_comment, sym_block_comment, - [143808] = 4, + [145564] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5448), 1, + ACTIONS(5428), 1, anon_sym_LBRACE, - STATE(4326), 2, + STATE(4398), 2, sym_line_comment, sym_block_comment, - [143822] = 4, + [145578] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7367), 1, + ACTIONS(7445), 1, anon_sym_LBRACE, - STATE(4327), 2, + STATE(4399), 2, sym_line_comment, sym_block_comment, - [143836] = 4, + [145592] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7369), 1, + ACTIONS(7447), 1, aux_sym__content_block_token1, - STATE(4328), 2, + STATE(4400), 2, sym_line_comment, sym_block_comment, - [143850] = 4, + [145606] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1627), 1, - anon_sym_RPAREN, - STATE(4329), 2, + ACTIONS(7449), 1, + anon_sym_RBRACK, + STATE(4401), 2, sym_line_comment, sym_block_comment, - [143864] = 4, + [145620] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7345), 1, + ACTIONS(895), 1, anon_sym_RBRACE, - STATE(4330), 2, + STATE(4402), 2, sym_line_comment, sym_block_comment, - [143878] = 4, + [145634] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7371), 1, + ACTIONS(7451), 1, anon_sym_RBRACE, - STATE(4331), 2, + STATE(4403), 2, sym_line_comment, sym_block_comment, - [143892] = 4, + [145648] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7373), 1, + ACTIONS(7453), 1, anon_sym_RBRACE, - STATE(4332), 2, + STATE(4404), 2, sym_line_comment, sym_block_comment, - [143906] = 4, + [145662] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7375), 1, - sym_int_literal, - STATE(4333), 2, + ACTIONS(4980), 1, + sym_identifier, + STATE(4405), 2, sym_line_comment, sym_block_comment, - [143920] = 4, + [145676] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7377), 1, - anon_sym_RBRACE, - STATE(4334), 2, + ACTIONS(7455), 1, + anon_sym_DOT, + STATE(4406), 2, sym_line_comment, sym_block_comment, - [143934] = 4, + [145690] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7341), 1, - anon_sym_RBRACE, - STATE(4335), 2, + ACTIONS(5464), 1, + anon_sym_LBRACE, + STATE(4407), 2, sym_line_comment, sym_block_comment, - [143948] = 4, + [145704] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6832), 1, - sym_identifier, - STATE(4336), 2, + ACTIONS(7457), 1, + anon_sym_LBRACE, + STATE(4408), 2, sym_line_comment, sym_block_comment, - [143962] = 4, - ACTIONS(3), 1, + [145718] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(903), 1, - anon_sym_RBRACE, - STATE(4337), 2, + ACTIONS(7459), 1, + aux_sym__content_block_token1, + STATE(4409), 2, sym_line_comment, sym_block_comment, - [143976] = 4, + [145732] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7379), 1, + ACTIONS(7461), 1, anon_sym_RBRACE, - STATE(4338), 2, + STATE(4410), 2, sym_line_comment, sym_block_comment, - [143990] = 4, + [145746] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7381), 1, + ACTIONS(7463), 1, anon_sym_RBRACE, - STATE(4339), 2, + STATE(4411), 2, sym_line_comment, sym_block_comment, - [144004] = 4, + [145760] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7383), 1, + ACTIONS(7465), 1, anon_sym_RBRACE, - STATE(4340), 2, + STATE(4412), 2, sym_line_comment, sym_block_comment, - [144018] = 4, + [145774] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7385), 1, - anon_sym_LBRACE, - STATE(4341), 2, + ACTIONS(7467), 1, + anon_sym_RBRACK, + STATE(4413), 2, sym_line_comment, sym_block_comment, - [144032] = 4, + [145788] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7267), 1, - anon_sym_RPAREN, - STATE(4342), 2, - sym_line_comment, - sym_block_comment, - [144046] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(7387), 1, - aux_sym_shebang_token1, - STATE(4343), 2, + ACTIONS(7469), 1, + anon_sym_RBRACE, + STATE(4414), 2, sym_line_comment, sym_block_comment, - [144060] = 4, + [145802] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7389), 1, + ACTIONS(7471), 1, anon_sym_DOT, - STATE(4344), 2, - sym_line_comment, - sym_block_comment, - [144074] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(7391), 1, - aux_sym__content_block_token1, - STATE(4345), 2, + STATE(4415), 2, sym_line_comment, sym_block_comment, - [144088] = 4, + [145816] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7393), 1, - anon_sym_LBRACE, - STATE(4346), 2, + ACTIONS(7473), 1, + anon_sym_RBRACE, + STATE(4416), 2, sym_line_comment, sym_block_comment, - [144102] = 4, + [145830] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5424), 1, + ACTIONS(5442), 1, anon_sym_LBRACE, - STATE(4347), 2, + STATE(4417), 2, sym_line_comment, sym_block_comment, - [144116] = 4, + [145844] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7395), 1, + ACTIONS(7475), 1, anon_sym_LBRACE, - STATE(4348), 2, + STATE(4418), 2, sym_line_comment, sym_block_comment, - [144130] = 4, + [145858] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7397), 1, + ACTIONS(7477), 1, aux_sym__content_block_token1, - STATE(4349), 2, + STATE(4419), 2, sym_line_comment, sym_block_comment, - [144144] = 4, + [145872] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7399), 1, - anon_sym_LBRACE, - STATE(4350), 2, + ACTIONS(4874), 1, + anon_sym_COLON, + STATE(4420), 2, sym_line_comment, sym_block_comment, - [144158] = 4, + [145886] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5402), 1, - anon_sym_LBRACE, - STATE(4351), 2, + ACTIONS(7479), 1, + anon_sym_RBRACK, + STATE(4421), 2, sym_line_comment, sym_block_comment, - [144172] = 4, + [145900] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6868), 1, - anon_sym_RBRACE, - STATE(4352), 2, + ACTIONS(7321), 1, + anon_sym_RPAREN, + STATE(4422), 2, sym_line_comment, sym_block_comment, - [144186] = 4, + [145914] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(939), 1, + ACTIONS(7481), 1, anon_sym_RBRACE, - STATE(4353), 2, + STATE(4423), 2, sym_line_comment, sym_block_comment, - [144200] = 4, + [145928] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7401), 1, - sym_int_literal, - STATE(4354), 2, + ACTIONS(7483), 1, + anon_sym_RBRACE, + STATE(4424), 2, sym_line_comment, sym_block_comment, - [144214] = 4, + [145942] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7403), 1, - anon_sym_RBRACE, - STATE(4355), 2, + ACTIONS(7485), 1, + anon_sym_PIPE2, + STATE(4425), 2, sym_line_comment, sym_block_comment, - [144228] = 4, + [145956] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7405), 1, - anon_sym_DOT, - STATE(4356), 2, + ACTIONS(1520), 1, + anon_sym_RPAREN, + STATE(4426), 2, sym_line_comment, sym_block_comment, - [144242] = 4, + [145970] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7407), 1, - sym_identifier, - STATE(4357), 2, + ACTIONS(947), 1, + anon_sym_RBRACE, + STATE(4427), 2, sym_line_comment, sym_block_comment, - [144256] = 4, + [145984] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7409), 1, - anon_sym_RBRACE, - STATE(4358), 2, + ACTIONS(7487), 1, + anon_sym_DOT, + STATE(4428), 2, sym_line_comment, sym_block_comment, - [144270] = 4, + [145998] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7411), 1, + ACTIONS(7489), 1, anon_sym_RBRACE, - STATE(4359), 2, + STATE(4429), 2, sym_line_comment, sym_block_comment, - [144284] = 4, + [146012] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7413), 1, - anon_sym_DOT, - STATE(4360), 2, + ACTIONS(7491), 1, + anon_sym_RBRACE, + STATE(4430), 2, sym_line_comment, sym_block_comment, - [144298] = 4, + [146026] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7415), 1, - anon_sym_RBRACE, - STATE(4361), 2, + ACTIONS(5426), 1, + anon_sym_LBRACE, + STATE(4431), 2, sym_line_comment, sym_block_comment, - [144312] = 4, + [146040] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7417), 1, - anon_sym_RBRACK, - STATE(4362), 2, + ACTIONS(7493), 1, + anon_sym_LBRACE, + STATE(4432), 2, sym_line_comment, sym_block_comment, - [144326] = 4, - ACTIONS(3), 1, + [146054] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7419), 1, - sym_identifier, - STATE(4363), 2, + ACTIONS(7495), 1, + aux_sym__content_block_token1, + STATE(4433), 2, sym_line_comment, sym_block_comment, - [144340] = 4, + [146068] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7421), 1, + ACTIONS(7497), 1, anon_sym_RBRACE, - STATE(4364), 2, + STATE(4434), 2, sym_line_comment, sym_block_comment, - [144354] = 4, + [146082] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7423), 1, - anon_sym_DOT, - STATE(4365), 2, + ACTIONS(899), 1, + anon_sym_RBRACE, + STATE(4435), 2, sym_line_comment, sym_block_comment, - [144368] = 4, + [146096] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4912), 1, + ACTIONS(4593), 1, sym_identifier, - STATE(4366), 2, + STATE(4436), 2, sym_line_comment, sym_block_comment, - [144382] = 4, + [146110] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(911), 1, + ACTIONS(7499), 1, anon_sym_RBRACE, - STATE(4367), 2, + STATE(4437), 2, sym_line_comment, sym_block_comment, - [144396] = 4, + [146124] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5392), 1, - anon_sym_LBRACE, - STATE(4368), 2, + ACTIONS(7501), 1, + anon_sym_RBRACE, + STATE(4438), 2, sym_line_comment, sym_block_comment, - [144410] = 4, + [146138] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7425), 1, - anon_sym_LBRACE, - STATE(4369), 2, + ACTIONS(7503), 1, + anon_sym_RBRACK, + STATE(4439), 2, sym_line_comment, sym_block_comment, - [144424] = 4, - ACTIONS(497), 1, + [146152] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7427), 1, - aux_sym__content_block_token1, - STATE(4370), 2, + ACTIONS(7505), 1, + anon_sym_DOT, + STATE(4440), 2, sym_line_comment, sym_block_comment, - [144438] = 4, - ACTIONS(497), 1, + [146166] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7429), 1, - aux_sym__content_block_token1, - STATE(4371), 2, + ACTIONS(7507), 1, + anon_sym_RBRACE, + STATE(4441), 2, sym_line_comment, sym_block_comment, - [144452] = 4, + [146180] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7431), 1, - anon_sym_LBRACE, - STATE(4372), 2, + ACTIONS(7509), 1, + anon_sym_RBRACE, + STATE(4442), 2, sym_line_comment, sym_block_comment, - [144466] = 4, + [146194] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5420), 1, + ACTIONS(5422), 1, anon_sym_LBRACE, - STATE(4373), 2, + STATE(4443), 2, sym_line_comment, sym_block_comment, - [144480] = 4, + [146208] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7433), 1, - anon_sym_RBRACE, - STATE(4374), 2, + ACTIONS(7511), 1, + anon_sym_LBRACE, + STATE(4444), 2, + sym_line_comment, + sym_block_comment, + [146222] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7513), 1, + aux_sym__content_block_token1, + STATE(4445), 2, sym_line_comment, sym_block_comment, - [144494] = 4, + [146236] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7435), 1, - anon_sym_DOT, - STATE(4375), 2, + ACTIONS(7515), 1, + anon_sym_RBRACE, + STATE(4446), 2, sym_line_comment, sym_block_comment, - [144508] = 4, + [146250] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7437), 1, + ACTIONS(7517), 1, anon_sym_RBRACK, - STATE(4376), 2, + STATE(4447), 2, sym_line_comment, sym_block_comment, - [144522] = 4, + [146264] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7439), 1, - anon_sym_RBRACE, - STATE(4377), 2, + ACTIONS(1514), 1, + anon_sym_RPAREN, + STATE(4448), 2, sym_line_comment, sym_block_comment, - [144536] = 4, + [146278] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4954), 1, - sym_identifier, - STATE(4378), 2, + ACTIONS(7519), 1, + anon_sym_RBRACE, + STATE(4449), 2, sym_line_comment, sym_block_comment, - [144550] = 4, + [146292] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7441), 1, - anon_sym_RBRACK, - STATE(4379), 2, + ACTIONS(7521), 1, + anon_sym_EQ, + STATE(4450), 2, sym_line_comment, sym_block_comment, - [144564] = 4, + [146306] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7217), 1, - anon_sym_RPAREN, - STATE(4380), 2, + ACTIONS(879), 1, + anon_sym_RBRACE, + STATE(4451), 2, sym_line_comment, sym_block_comment, - [144578] = 4, + [146320] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7443), 1, - aux_sym_hash_statement_token1, - STATE(4381), 2, + ACTIONS(7523), 1, + aux_sym__content_block_token1, + STATE(4452), 2, sym_line_comment, sym_block_comment, - [144592] = 4, - ACTIONS(497), 1, + [146334] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7445), 1, - aux_sym__content_block_token1, - STATE(4382), 2, + ACTIONS(7525), 1, + anon_sym_RBRACE, + STATE(4453), 2, sym_line_comment, sym_block_comment, - [144606] = 4, + [146348] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7447), 1, - anon_sym_LBRACE, - STATE(4383), 2, + ACTIONS(7417), 1, + anon_sym_RBRACE, + STATE(4454), 2, sym_line_comment, sym_block_comment, - [144620] = 4, + [146362] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7449), 1, - anon_sym_LBRACE, - STATE(4384), 2, + ACTIONS(7527), 1, + anon_sym_RBRACE, + STATE(4455), 2, sym_line_comment, sym_block_comment, - [144634] = 4, + [146376] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7451), 1, - sym_identifier, - STATE(4385), 2, + ACTIONS(7529), 1, + anon_sym_RBRACE, + STATE(4456), 2, sym_line_comment, sym_block_comment, - [144648] = 4, + [146390] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7453), 1, + ACTIONS(7531), 1, anon_sym_DOT, - STATE(4386), 2, + STATE(4457), 2, sym_line_comment, sym_block_comment, - [144662] = 4, + [146404] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7455), 1, + ACTIONS(5926), 1, anon_sym_LBRACE, - STATE(4387), 2, + STATE(4458), 2, sym_line_comment, sym_block_comment, - [144676] = 4, + [146418] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5406), 1, - anon_sym_LBRACE, - STATE(4388), 2, + ACTIONS(7533), 1, + anon_sym_RBRACE, + STATE(4459), 2, sym_line_comment, sym_block_comment, - [144690] = 4, + [146432] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5348), 1, + ACTIONS(5406), 1, anon_sym_LBRACE, - STATE(4389), 2, + STATE(4460), 2, sym_line_comment, sym_block_comment, - [144704] = 4, + [146446] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7457), 1, + ACTIONS(7535), 1, anon_sym_LBRACE, - STATE(4390), 2, + STATE(4461), 2, sym_line_comment, sym_block_comment, - [144718] = 4, + [146460] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7459), 1, + ACTIONS(7537), 1, aux_sym__content_block_token1, - STATE(4391), 2, + STATE(4462), 2, sym_line_comment, sym_block_comment, - [144732] = 4, + [146474] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7461), 1, - anon_sym_DOT, - STATE(4392), 2, + ACTIONS(7539), 1, + anon_sym_RBRACE, + STATE(4463), 2, sym_line_comment, sym_block_comment, - [144746] = 4, + [146488] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6579), 1, - anon_sym_RBRACE, - STATE(4393), 2, + ACTIONS(7541), 1, + anon_sym_LBRACE, + STATE(4464), 2, sym_line_comment, sym_block_comment, - [144760] = 4, - ACTIONS(497), 1, + [146502] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7463), 1, - aux_sym_hash_statement_token1, - STATE(4394), 2, + ACTIONS(5420), 1, + anon_sym_LBRACE, + STATE(4465), 2, sym_line_comment, sym_block_comment, - [144774] = 4, + [146516] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7465), 1, + ACTIONS(7543), 1, anon_sym_RBRACE, - STATE(4395), 2, + STATE(4466), 2, sym_line_comment, sym_block_comment, - [144788] = 4, + [146530] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7467), 1, - sym_int_literal, - STATE(4396), 2, + ACTIONS(7545), 1, + anon_sym_RBRACE, + STATE(4467), 2, sym_line_comment, sym_block_comment, - [144802] = 4, + [146544] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7469), 1, - anon_sym_RBRACE, - STATE(4397), 2, + ACTIONS(7547), 1, + anon_sym_DOT, + STATE(4468), 2, sym_line_comment, sym_block_comment, - [144816] = 4, + [146558] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7471), 1, - anon_sym_LBRACE, - STATE(4398), 2, + ACTIONS(7549), 1, + anon_sym_RBRACE, + STATE(4469), 2, sym_line_comment, sym_block_comment, - [144830] = 4, + [146572] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7473), 1, - anon_sym_LBRACE, - STATE(4399), 2, + ACTIONS(7551), 1, + anon_sym_RBRACK, + STATE(4470), 2, sym_line_comment, sym_block_comment, - [144844] = 4, + [146586] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7475), 1, - anon_sym_RBRACK, - STATE(4400), 2, + ACTIONS(7553), 1, + anon_sym_COLON_EQ, + STATE(4471), 2, sym_line_comment, sym_block_comment, - [144858] = 4, + [146600] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7477), 1, - sym_identifier, - STATE(4401), 2, + ACTIONS(7555), 1, + anon_sym_RBRACE, + STATE(4472), 2, sym_line_comment, sym_block_comment, - [144872] = 4, + [146614] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7479), 1, - anon_sym_RBRACK, - STATE(4402), 2, + ACTIONS(7557), 1, + anon_sym_RBRACE, + STATE(4473), 2, sym_line_comment, sym_block_comment, - [144886] = 4, + [146628] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7481), 1, - anon_sym_RBRACE, - STATE(4403), 2, + ACTIONS(7559), 1, + anon_sym_RBRACK, + STATE(4474), 2, sym_line_comment, sym_block_comment, - [144900] = 4, + [146642] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7483), 1, + ACTIONS(7561), 1, anon_sym_RBRACE, - STATE(4404), 2, + STATE(4475), 2, sym_line_comment, sym_block_comment, - [144914] = 4, + [146656] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7485), 1, + ACTIONS(875), 1, anon_sym_RBRACE, - STATE(4405), 2, + STATE(4476), 2, sym_line_comment, sym_block_comment, - [144928] = 4, + [146670] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7487), 1, + ACTIONS(941), 1, anon_sym_RBRACE, - STATE(4406), 2, + STATE(4477), 2, sym_line_comment, sym_block_comment, - [144942] = 4, + [146684] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7489), 1, + ACTIONS(7563), 1, anon_sym_DOT, - STATE(4407), 2, + STATE(4478), 2, sym_line_comment, sym_block_comment, - [144956] = 4, + [146698] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7491), 1, - anon_sym_RBRACE, - STATE(4408), 2, + ACTIONS(7565), 1, + anon_sym_RBRACK, + STATE(4479), 2, sym_line_comment, sym_block_comment, - [144970] = 4, + [146712] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5938), 1, - anon_sym_COLON_EQ, - STATE(4409), 2, + ACTIONS(4932), 1, + sym_identifier, + STATE(4480), 2, sym_line_comment, sym_block_comment, - [144984] = 4, + [146726] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5352), 1, + ACTIONS(5380), 1, anon_sym_LBRACE, - STATE(4410), 2, + STATE(4481), 2, sym_line_comment, sym_block_comment, - [144998] = 4, + [146740] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7493), 1, + ACTIONS(7567), 1, anon_sym_LBRACE, - STATE(4411), 2, + STATE(4482), 2, sym_line_comment, sym_block_comment, - [145012] = 4, + [146754] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7495), 1, + ACTIONS(7569), 1, aux_sym__content_block_token1, - STATE(4412), 2, + STATE(4483), 2, sym_line_comment, sym_block_comment, - [145026] = 4, + [146768] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(941), 1, - anon_sym_RBRACE, - STATE(4413), 2, + ACTIONS(7269), 1, + anon_sym_RPAREN, + STATE(4484), 2, sym_line_comment, sym_block_comment, - [145040] = 4, + [146782] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7497), 1, + ACTIONS(7571), 1, anon_sym_RBRACE, - STATE(4414), 2, + STATE(4485), 2, sym_line_comment, sym_block_comment, - [145054] = 4, + [146796] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1621), 1, - anon_sym_RPAREN, - STATE(4415), 2, + ACTIONS(7573), 1, + anon_sym_RBRACE, + STATE(4486), 2, sym_line_comment, sym_block_comment, - [145068] = 4, + [146810] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7499), 1, - anon_sym_RBRACK, - STATE(4416), 2, + ACTIONS(7575), 1, + anon_sym_RBRACE, + STATE(4487), 2, sym_line_comment, sym_block_comment, - [145082] = 4, + [146824] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7501), 1, - anon_sym_RBRACE, - STATE(4417), 2, + ACTIONS(1498), 1, + anon_sym_RPAREN, + STATE(4488), 2, sym_line_comment, sym_block_comment, - [145096] = 4, + [146838] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7503), 1, - anon_sym_RBRACE, - STATE(4418), 2, + ACTIONS(7577), 1, + anon_sym_RBRACK, + STATE(4489), 2, sym_line_comment, sym_block_comment, - [145110] = 4, + [146852] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7505), 1, - anon_sym_RBRACE, - STATE(4419), 2, + ACTIONS(7579), 1, + anon_sym_RBRACK, + STATE(4490), 2, sym_line_comment, sym_block_comment, - [145124] = 4, + [146866] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7507), 1, + ACTIONS(7581), 1, anon_sym_RBRACE, - STATE(4420), 2, + STATE(4491), 2, sym_line_comment, sym_block_comment, - [145138] = 4, + [146880] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7509), 1, - anon_sym_RBRACE, - STATE(4421), 2, + ACTIONS(7583), 1, + sym_int_literal, + STATE(4492), 2, sym_line_comment, sym_block_comment, - [145152] = 4, + [146894] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7511), 1, + ACTIONS(7585), 1, anon_sym_RBRACE, - STATE(4422), 2, + STATE(4493), 2, sym_line_comment, sym_block_comment, - [145166] = 4, + [146908] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7513), 1, - anon_sym_DOT, - STATE(4423), 2, + ACTIONS(6722), 1, + anon_sym_RBRACE, + STATE(4494), 2, sym_line_comment, sym_block_comment, - [145180] = 4, + [146922] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, - anon_sym_RBRACE, - STATE(4424), 2, + ACTIONS(7587), 1, + anon_sym_DOT, + STATE(4495), 2, sym_line_comment, sym_block_comment, - [145194] = 4, + [146936] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7515), 1, - anon_sym_RBRACE, - STATE(4425), 2, + ACTIONS(7589), 1, + anon_sym_DOT, + STATE(4496), 2, sym_line_comment, sym_block_comment, - [145208] = 4, + [146950] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7517), 1, + ACTIONS(933), 1, anon_sym_RBRACE, - STATE(4426), 2, + STATE(4497), 2, sym_line_comment, sym_block_comment, - [145222] = 4, + [146964] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7519), 1, - anon_sym_EQ, - STATE(4427), 2, + ACTIONS(7591), 1, + sym_identifier, + STATE(4498), 2, sym_line_comment, sym_block_comment, - [145236] = 4, + [146978] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7521), 1, + ACTIONS(7593), 1, anon_sym_DOT, - STATE(4428), 2, + STATE(4499), 2, sym_line_comment, sym_block_comment, - [145250] = 4, + [146992] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(885), 1, + ACTIONS(7595), 1, anon_sym_RBRACE, - STATE(4429), 2, + STATE(4500), 2, sym_line_comment, sym_block_comment, - [145264] = 4, + [147006] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7523), 1, - anon_sym_RBRACE, - STATE(4430), 2, + ACTIONS(7597), 1, + sym_int_literal, + STATE(4501), 2, sym_line_comment, sym_block_comment, - [145278] = 4, + [147020] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5382), 1, + ACTIONS(5354), 1, anon_sym_LBRACE, - STATE(4431), 2, + STATE(4502), 2, sym_line_comment, sym_block_comment, - [145292] = 4, + [147034] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7525), 1, + ACTIONS(7599), 1, anon_sym_LBRACE, - STATE(4432), 2, + STATE(4503), 2, sym_line_comment, sym_block_comment, - [145306] = 4, + [147048] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7527), 1, + ACTIONS(7601), 1, aux_sym__content_block_token1, - STATE(4433), 2, + STATE(4504), 2, sym_line_comment, sym_block_comment, - [145320] = 4, + [147062] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7529), 1, - anon_sym_RBRACE, - STATE(4434), 2, + ACTIONS(7603), 1, + sym_identifier, + STATE(4505), 2, sym_line_comment, sym_block_comment, - [145334] = 4, + [147076] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7531), 1, - anon_sym_RBRACE, - STATE(4435), 2, + ACTIONS(7605), 1, + sym_identifier, + STATE(4506), 2, sym_line_comment, sym_block_comment, - [145348] = 4, + [147090] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1633), 1, - anon_sym_RPAREN, - STATE(4436), 2, + ACTIONS(7607), 1, + anon_sym_RBRACE, + STATE(4507), 2, sym_line_comment, sym_block_comment, - [145362] = 4, + [147104] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7533), 1, - anon_sym_RBRACK, - STATE(4437), 2, + ACTIONS(7609), 1, + anon_sym_RBRACE, + STATE(4508), 2, sym_line_comment, sym_block_comment, - [145376] = 4, + [147118] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(925), 1, + ACTIONS(7611), 1, anon_sym_RBRACE, - STATE(4438), 2, + STATE(4509), 2, sym_line_comment, sym_block_comment, - [145390] = 4, + [147132] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7535), 1, - sym_identifier, - STATE(4439), 2, + ACTIONS(7613), 1, + anon_sym_RBRACK, + STATE(4510), 2, sym_line_comment, sym_block_comment, - [145404] = 4, + [147146] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7537), 1, - anon_sym_RBRACE, - STATE(4440), 2, + ACTIONS(7615), 1, + sym_identifier, + STATE(4511), 2, sym_line_comment, sym_block_comment, - [145418] = 4, + [147160] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7539), 1, - anon_sym_RBRACE, - STATE(4441), 2, + ACTIONS(7617), 1, + sym_identifier, + STATE(4512), 2, sym_line_comment, sym_block_comment, - [145432] = 4, + [147174] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7541), 1, - anon_sym_RBRACE, - STATE(4442), 2, + ACTIONS(7619), 1, + sym_identifier, + STATE(4513), 2, sym_line_comment, sym_block_comment, - [145446] = 4, + [147188] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7543), 1, - anon_sym_PIPE, - STATE(4443), 2, + ACTIONS(7621), 1, + sym_identifier, + STATE(4514), 2, sym_line_comment, sym_block_comment, - [145460] = 4, + [147202] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7545), 1, - sym_identifier, - STATE(4444), 2, + ACTIONS(7623), 1, + anon_sym_LBRACE, + STATE(4515), 2, sym_line_comment, sym_block_comment, - [145474] = 4, + [147216] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7547), 1, + ACTIONS(7625), 1, anon_sym_RBRACE, - STATE(4445), 2, + STATE(4516), 2, sym_line_comment, sym_block_comment, - [145488] = 4, + [147230] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7549), 1, + ACTIONS(7627), 1, anon_sym_RBRACE, - STATE(4446), 2, + STATE(4517), 2, sym_line_comment, sym_block_comment, - [145502] = 4, + [147244] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7551), 1, - anon_sym_RBRACE, - STATE(4447), 2, + ACTIONS(7629), 1, + anon_sym_DOT, + STATE(4518), 2, sym_line_comment, sym_block_comment, - [145516] = 4, + [147258] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7553), 1, + ACTIONS(7631), 1, sym_identifier, - STATE(4448), 2, + STATE(4519), 2, sym_line_comment, sym_block_comment, - [145530] = 4, + [147272] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7555), 1, + ACTIONS(7633), 1, anon_sym_DOT, - STATE(4449), 2, + STATE(4520), 2, sym_line_comment, sym_block_comment, - [145544] = 4, + [147286] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7557), 1, - anon_sym_RBRACE, - STATE(4450), 2, + ACTIONS(7635), 1, + anon_sym_LBRACE, + STATE(4521), 2, sym_line_comment, sym_block_comment, - [145558] = 4, + [147300] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7559), 1, + ACTIONS(907), 1, anon_sym_RBRACE, - STATE(4451), 2, + STATE(4522), 2, sym_line_comment, sym_block_comment, - [145572] = 4, + [147314] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5396), 1, + ACTIONS(5448), 1, anon_sym_LBRACE, - STATE(4452), 2, + STATE(4523), 2, sym_line_comment, sym_block_comment, - [145586] = 4, + [147328] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7561), 1, + ACTIONS(7637), 1, anon_sym_LBRACE, - STATE(4453), 2, + STATE(4524), 2, sym_line_comment, sym_block_comment, - [145600] = 4, + [147342] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7563), 1, + ACTIONS(7639), 1, aux_sym__content_block_token1, - STATE(4454), 2, + STATE(4525), 2, sym_line_comment, sym_block_comment, - [145614] = 4, + [147356] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7565), 1, - anon_sym_RBRACK, - STATE(4455), 2, + ACTIONS(7641), 1, + anon_sym_RBRACE, + STATE(4526), 2, sym_line_comment, sym_block_comment, - [145628] = 4, + [147370] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7567), 1, - anon_sym_DOT, - STATE(4456), 2, + ACTIONS(7643), 1, + sym_identifier, + STATE(4527), 2, sym_line_comment, sym_block_comment, - [145642] = 4, + [147384] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7569), 1, - anon_sym_RBRACE, - STATE(4457), 2, + ACTIONS(7645), 1, + sym_identifier, + STATE(4528), 2, sym_line_comment, sym_block_comment, - [145656] = 4, - ACTIONS(497), 1, + [147398] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7571), 1, - aux_sym__content_block_token1, - STATE(4458), 2, + ACTIONS(7647), 1, + sym_identifier, + STATE(4529), 2, sym_line_comment, sym_block_comment, - [145670] = 4, + [147412] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7573), 1, - anon_sym_LBRACE, - STATE(4459), 2, + ACTIONS(7649), 1, + sym_identifier, + STATE(4530), 2, sym_line_comment, sym_block_comment, - [145684] = 4, + [147426] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5340), 1, - anon_sym_LBRACE, - STATE(4460), 2, + ACTIONS(7651), 1, + anon_sym_RBRACK, + STATE(4531), 2, sym_line_comment, sym_block_comment, - [145698] = 4, - ACTIONS(497), 1, + [147440] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7575), 1, - aux_sym_shebang_token1, - STATE(4461), 2, + ACTIONS(1508), 1, + anon_sym_RPAREN, + STATE(4532), 2, sym_line_comment, sym_block_comment, - [145712] = 4, + [147454] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7577), 1, + ACTIONS(7653), 1, anon_sym_RBRACE, - STATE(4462), 2, + STATE(4533), 2, sym_line_comment, sym_block_comment, - [145726] = 4, + [147468] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7579), 1, - anon_sym_DOT, - STATE(4463), 2, + ACTIONS(7655), 1, + anon_sym_RBRACE, + STATE(4534), 2, sym_line_comment, sym_block_comment, - [145740] = 4, + [147482] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1623), 1, - anon_sym_RPAREN, - STATE(4464), 2, + ACTIONS(7657), 1, + anon_sym_RBRACE, + STATE(4535), 2, sym_line_comment, sym_block_comment, - [145754] = 4, + [147496] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7581), 1, + ACTIONS(7659), 1, anon_sym_RBRACE, - STATE(4465), 2, + STATE(4536), 2, sym_line_comment, sym_block_comment, - [145768] = 4, + [147510] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7583), 1, + ACTIONS(7661), 1, anon_sym_DOT, - STATE(4466), 2, + STATE(4537), 2, sym_line_comment, sym_block_comment, - [145782] = 4, - ACTIONS(3), 1, + [147524] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7585), 1, - anon_sym_RBRACE, - STATE(4467), 2, + ACTIONS(7663), 1, + aux_sym__content_block_token1, + STATE(4538), 2, sym_line_comment, sym_block_comment, - [145796] = 4, + [147538] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5418), 1, + ACTIONS(5382), 1, anon_sym_LBRACE, - STATE(4468), 2, + STATE(4539), 2, sym_line_comment, sym_block_comment, - [145810] = 4, + [147552] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7587), 1, + ACTIONS(7665), 1, anon_sym_LBRACE, - STATE(4469), 2, + STATE(4540), 2, sym_line_comment, sym_block_comment, - [145824] = 4, + [147566] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7589), 1, + ACTIONS(7667), 1, aux_sym__content_block_token1, - STATE(4470), 2, + STATE(4541), 2, sym_line_comment, sym_block_comment, - [145838] = 4, + [147580] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(879), 1, - anon_sym_RBRACE, - STATE(4471), 2, + ACTIONS(7669), 1, + anon_sym_LBRACE, + STATE(4542), 2, sym_line_comment, sym_block_comment, - [145852] = 4, + [147594] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7591), 1, - anon_sym_DOT, - STATE(4472), 2, + ACTIONS(7671), 1, + anon_sym_RBRACE, + STATE(4543), 2, sym_line_comment, sym_block_comment, - [145866] = 4, + [147608] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7593), 1, - anon_sym_RBRACE, - STATE(4473), 2, + ACTIONS(5438), 1, + anon_sym_LBRACE, + STATE(4544), 2, sym_line_comment, sym_block_comment, - [145880] = 4, + [147622] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7595), 1, - anon_sym_RBRACE, - STATE(4474), 2, + ACTIONS(7673), 1, + anon_sym_DOT, + STATE(4545), 2, sym_line_comment, sym_block_comment, - [145894] = 4, + [147636] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7597), 1, + ACTIONS(7675), 1, aux_sym__content_block_token1, - STATE(4475), 2, + STATE(4546), 2, sym_line_comment, sym_block_comment, - [145908] = 4, + [147650] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7599), 1, + ACTIONS(7677), 1, anon_sym_RBRACE, - STATE(4476), 2, + STATE(4547), 2, sym_line_comment, sym_block_comment, - [145922] = 4, + [147664] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7601), 1, - sym_identifier, - STATE(4477), 2, + ACTIONS(909), 1, + anon_sym_RBRACE, + STATE(4548), 2, sym_line_comment, sym_block_comment, - [145936] = 4, + [147678] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7603), 1, - anon_sym_EQ, - STATE(4478), 2, + ACTIONS(7679), 1, + anon_sym_DOT, + STATE(4549), 2, sym_line_comment, sym_block_comment, - [145950] = 4, + [147692] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(933), 1, + ACTIONS(7681), 1, anon_sym_RBRACE, - STATE(4479), 2, - sym_line_comment, - sym_block_comment, - [145964] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7605), 1, - anon_sym_EQ, - STATE(4480), 2, + STATE(4550), 2, sym_line_comment, sym_block_comment, - [145978] = 4, + [147706] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(947), 1, + ACTIONS(7683), 1, anon_sym_RBRACE, - STATE(4481), 2, + STATE(4551), 2, sym_line_comment, sym_block_comment, - [145992] = 4, + [147720] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7607), 1, - sym_identifier, - STATE(4482), 2, + ACTIONS(479), 1, + anon_sym_RBRACE, + STATE(4552), 2, sym_line_comment, sym_block_comment, - [146006] = 4, + [147734] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7609), 1, - sym_identifier, - STATE(4483), 2, + ACTIONS(7685), 1, + anon_sym_RBRACE, + STATE(4553), 2, sym_line_comment, sym_block_comment, - [146020] = 4, + [147748] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7611), 1, - sym_identifier, - STATE(4484), 2, + ACTIONS(7687), 1, + anon_sym_DOT, + STATE(4554), 2, sym_line_comment, sym_block_comment, - [146034] = 4, + [147762] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7613), 1, + ACTIONS(7689), 1, anon_sym_LBRACE, - STATE(4485), 2, + STATE(4555), 2, sym_line_comment, sym_block_comment, - [146048] = 4, + [147776] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7615), 1, - anon_sym_RBRACE, - STATE(4486), 2, + ACTIONS(7691), 1, + anon_sym_EQ, + STATE(4556), 2, sym_line_comment, sym_block_comment, - [146062] = 4, + [147790] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7617), 1, + ACTIONS(7693), 1, sym_identifier, - STATE(4487), 2, + STATE(4557), 2, sym_line_comment, sym_block_comment, - [146076] = 4, + [147804] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7619), 1, - anon_sym_LBRACE, - STATE(4488), 2, + ACTIONS(925), 1, + anon_sym_RBRACE, + STATE(4558), 2, sym_line_comment, sym_block_comment, - [146090] = 4, + [147818] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7621), 1, + ACTIONS(6526), 1, anon_sym_RBRACE, - STATE(4489), 2, + STATE(4559), 2, sym_line_comment, sym_block_comment, - [146104] = 4, + [147832] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7623), 1, - anon_sym_RBRACE, - STATE(4490), 2, + ACTIONS(7695), 1, + anon_sym_SEMI, + STATE(4560), 2, sym_line_comment, sym_block_comment, - [146118] = 4, + [147846] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7625), 1, + ACTIONS(7697), 1, anon_sym_RBRACE, - STATE(4491), 2, + STATE(4561), 2, sym_line_comment, sym_block_comment, - [146132] = 4, + [147860] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(931), 1, + ACTIONS(939), 1, anon_sym_RBRACE, - STATE(4492), 2, + STATE(4562), 2, sym_line_comment, sym_block_comment, - [146146] = 4, + [147874] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7627), 1, - anon_sym_RBRACE, - STATE(4493), 2, + ACTIONS(1500), 1, + anon_sym_RPAREN, + STATE(4563), 2, sym_line_comment, sym_block_comment, - [146160] = 4, + [147888] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7629), 1, - anon_sym_LBRACE, - STATE(4494), 2, + ACTIONS(7699), 1, + anon_sym_in, + STATE(4564), 2, sym_line_comment, sym_block_comment, - [146174] = 4, + [147902] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7631), 1, + ACTIONS(943), 1, anon_sym_RBRACE, - STATE(4495), 2, + STATE(4565), 2, sym_line_comment, sym_block_comment, - [146188] = 4, + [147916] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7633), 1, - anon_sym_RBRACE, - STATE(4496), 2, + ACTIONS(7701), 1, + sym_identifier, + STATE(4566), 2, sym_line_comment, sym_block_comment, - [146202] = 4, + [147930] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7635), 1, - anon_sym_RBRACE, - STATE(4497), 2, + ACTIONS(7703), 1, + anon_sym_RBRACK, + STATE(4567), 2, sym_line_comment, sym_block_comment, - [146216] = 4, + [147944] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7637), 1, + ACTIONS(7705), 1, anon_sym_RBRACE, - STATE(4498), 2, + STATE(4568), 2, sym_line_comment, sym_block_comment, - [146230] = 4, + [147958] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7639), 1, - anon_sym_SEMI, - STATE(4499), 2, + ACTIONS(7707), 1, + anon_sym_RBRACK, + STATE(4569), 2, sym_line_comment, sym_block_comment, - [146244] = 4, + [147972] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7641), 1, + ACTIONS(7709), 1, anon_sym_RBRACE, - STATE(4500), 2, + STATE(4570), 2, sym_line_comment, sym_block_comment, - [146258] = 4, + [147986] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7643), 1, - anon_sym_RBRACK, - STATE(4501), 2, + ACTIONS(7711), 1, + anon_sym_RBRACE, + STATE(4571), 2, sym_line_comment, sym_block_comment, - [146272] = 4, + [148000] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7645), 1, - anon_sym_RBRACK, - STATE(4502), 2, + ACTIONS(7713), 1, + anon_sym_RBRACE, + STATE(4572), 2, sym_line_comment, sym_block_comment, - [146286] = 4, + [148014] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7647), 1, - anon_sym_RBRACE, - STATE(4503), 2, + ACTIONS(7715), 1, + anon_sym_RBRACK, + STATE(4573), 2, sym_line_comment, sym_block_comment, - [146300] = 4, + [148028] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1498), 1, - anon_sym_RPAREN, - STATE(4504), 2, + ACTIONS(7717), 1, + anon_sym_RBRACE, + STATE(4574), 2, sym_line_comment, sym_block_comment, - [146314] = 4, + [148042] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7649), 1, + ACTIONS(7719), 1, anon_sym_RBRACE, - STATE(4505), 2, + STATE(4575), 2, sym_line_comment, sym_block_comment, - [146328] = 4, + [148056] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7651), 1, - anon_sym_RBRACE, - STATE(4506), 2, + ACTIONS(7721), 1, + anon_sym_RBRACK, + STATE(4576), 2, sym_line_comment, sym_block_comment, - [146342] = 4, + [148070] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7653), 1, + ACTIONS(7723), 1, anon_sym_RBRACK, - STATE(4507), 2, + STATE(4577), 2, sym_line_comment, sym_block_comment, - [146356] = 4, + [148084] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7655), 1, + ACTIONS(7725), 1, anon_sym_RBRACE, - STATE(4508), 2, + STATE(4578), 2, + sym_line_comment, + sym_block_comment, + [148098] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7727), 1, + aux_sym__content_block_token1, + STATE(4579), 2, sym_line_comment, sym_block_comment, - [146370] = 4, + [148112] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7657), 1, + ACTIONS(7729), 1, anon_sym_RBRACE, - STATE(4509), 2, + STATE(4580), 2, sym_line_comment, sym_block_comment, - [146384] = 4, + [148126] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7659), 1, - anon_sym_RBRACE, - STATE(4510), 2, + ACTIONS(7731), 1, + anon_sym_LBRACE, + STATE(4581), 2, sym_line_comment, sym_block_comment, - [146398] = 4, + [148140] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7661), 1, - anon_sym_RBRACK, - STATE(4511), 2, + ACTIONS(5326), 1, + anon_sym_LBRACE, + STATE(4582), 2, sym_line_comment, sym_block_comment, - [146412] = 4, + [148154] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7663), 1, + ACTIONS(7733), 1, anon_sym_RBRACE, - STATE(4512), 2, + STATE(4583), 2, sym_line_comment, sym_block_comment, - [146426] = 4, + [148168] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7665), 1, - anon_sym_LBRACE, - STATE(4513), 2, + ACTIONS(7735), 1, + anon_sym_RBRACE, + STATE(4584), 2, sym_line_comment, sym_block_comment, - [146440] = 4, + [148182] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7667), 1, + ACTIONS(7737), 1, anon_sym_RBRACE, - STATE(4514), 2, + STATE(4585), 2, sym_line_comment, sym_block_comment, - [146454] = 4, + [148196] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(889), 1, - anon_sym_RBRACE, - STATE(4515), 2, + ACTIONS(6026), 1, + anon_sym_COLON_EQ, + STATE(4586), 2, sym_line_comment, sym_block_comment, - [146468] = 4, + [148210] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7669), 1, - anon_sym_COLON, - STATE(4516), 2, + ACTIONS(7739), 1, + anon_sym_RBRACE, + STATE(4587), 2, sym_line_comment, sym_block_comment, - [146482] = 4, + [148224] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7671), 1, - sym_identifier, - STATE(4517), 2, + ACTIONS(7741), 1, + anon_sym_RBRACE, + STATE(4588), 2, sym_line_comment, sym_block_comment, - [146496] = 4, + [148238] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7673), 1, + ACTIONS(7743), 1, anon_sym_RBRACK, - STATE(4518), 2, + STATE(4589), 2, sym_line_comment, sym_block_comment, - [146510] = 4, + [148252] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(919), 1, + ACTIONS(7745), 1, anon_sym_RBRACE, - STATE(4519), 2, + STATE(4590), 2, sym_line_comment, sym_block_comment, - [146524] = 4, + [148266] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7675), 1, - ts_builtin_sym_end, - STATE(4520), 2, + ACTIONS(7747), 1, + anon_sym_RBRACE, + STATE(4591), 2, sym_line_comment, sym_block_comment, - [146538] = 4, + [148280] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7677), 1, + ACTIONS(7749), 1, anon_sym_RBRACE, - STATE(4521), 2, + STATE(4592), 2, sym_line_comment, sym_block_comment, - [146552] = 4, + [148294] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7679), 1, - anon_sym_RBRACE, - STATE(4522), 2, + ACTIONS(7751), 1, + anon_sym_COLON, + STATE(4593), 2, sym_line_comment, sym_block_comment, - [146566] = 4, + [148308] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1625), 1, - anon_sym_RPAREN, - STATE(4523), 2, + ACTIONS(7753), 1, + anon_sym_RBRACE, + STATE(4594), 2, sym_line_comment, sym_block_comment, - [146580] = 4, + [148322] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7681), 1, + ACTIONS(7755), 1, anon_sym_RBRACE, - STATE(4524), 2, + STATE(4595), 2, sym_line_comment, sym_block_comment, - [146594] = 4, + [148336] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7683), 1, - anon_sym_RBRACK, - STATE(4525), 2, + ACTIONS(7757), 1, + anon_sym_DOT, + STATE(4596), 2, sym_line_comment, sym_block_comment, - [146608] = 4, + [148350] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7685), 1, + ACTIONS(7759), 1, anon_sym_RBRACE, - STATE(4526), 2, + STATE(4597), 2, sym_line_comment, sym_block_comment, - [146622] = 4, + [148364] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1639), 1, - anon_sym_RPAREN, - STATE(4527), 2, + ACTIONS(7761), 1, + anon_sym_RBRACK, + STATE(4598), 2, sym_line_comment, sym_block_comment, - [146636] = 4, + [148378] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7687), 1, - anon_sym_RBRACE, - STATE(4528), 2, + ACTIONS(1510), 1, + anon_sym_RPAREN, + STATE(4599), 2, sym_line_comment, sym_block_comment, - [146650] = 4, + [148392] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7689), 1, - anon_sym_RBRACE, - STATE(4529), 2, + ACTIONS(7763), 1, + anon_sym_RBRACK, + STATE(4600), 2, sym_line_comment, sym_block_comment, - [146664] = 4, + [148406] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(943), 1, + ACTIONS(7765), 1, anon_sym_RBRACE, - STATE(4530), 2, + STATE(4601), 2, sym_line_comment, sym_block_comment, - [146678] = 4, + [148420] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7691), 1, - anon_sym_RBRACK, - STATE(4531), 2, + ACTIONS(1504), 1, + anon_sym_RPAREN, + STATE(4602), 2, sym_line_comment, sym_block_comment, - [146692] = 4, + [148434] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7693), 1, - anon_sym_RBRACK, - STATE(4532), 2, + ACTIONS(929), 1, + anon_sym_RBRACE, + STATE(4603), 2, sym_line_comment, sym_block_comment, - [146706] = 4, + [148448] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7695), 1, + ACTIONS(7767), 1, anon_sym_RBRACE, - STATE(4533), 2, + STATE(4604), 2, sym_line_comment, sym_block_comment, - [146720] = 4, + [148462] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7697), 1, + ACTIONS(889), 1, anon_sym_RBRACE, - STATE(4534), 2, + STATE(4605), 2, sym_line_comment, sym_block_comment, - [146734] = 4, + [148476] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7699), 1, + ACTIONS(937), 1, anon_sym_RBRACE, - STATE(4535), 2, + STATE(4606), 2, sym_line_comment, sym_block_comment, - [146748] = 4, + [148490] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7701), 1, + ACTIONS(7769), 1, anon_sym_RBRACE, - STATE(4536), 2, + STATE(4607), 2, sym_line_comment, sym_block_comment, - [146762] = 4, + [148504] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(881), 1, - anon_sym_RBRACE, - STATE(4537), 2, + ACTIONS(7771), 1, + anon_sym_DOT, + STATE(4608), 2, sym_line_comment, sym_block_comment, - [146776] = 4, + [148518] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7703), 1, + ACTIONS(7773), 1, anon_sym_RBRACE, - STATE(4538), 2, + STATE(4609), 2, sym_line_comment, sym_block_comment, - [146790] = 4, + [148532] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(479), 1, + ACTIONS(7775), 1, anon_sym_RBRACE, - STATE(4539), 2, + STATE(4610), 2, sym_line_comment, sym_block_comment, - [146804] = 4, + [148546] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7705), 1, + ACTIONS(7777), 1, anon_sym_RBRACE, - STATE(4540), 2, + STATE(4611), 2, sym_line_comment, sym_block_comment, - [146818] = 4, + [148560] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7707), 1, - anon_sym_RBRACE, - STATE(4541), 2, + ACTIONS(1502), 1, + anon_sym_RPAREN, + STATE(4612), 2, sym_line_comment, sym_block_comment, - [146832] = 4, + [148574] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7709), 1, - anon_sym_in, - STATE(4542), 2, + ACTIONS(7779), 1, + anon_sym_RBRACE, + STATE(4613), 2, sym_line_comment, sym_block_comment, - [146846] = 4, + [148588] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7711), 1, - sym_identifier, - STATE(4543), 2, + ACTIONS(7781), 1, + anon_sym_RBRACK, + STATE(4614), 2, + sym_line_comment, + sym_block_comment, + [148602] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7783), 1, + aux_sym_shebang_token1, + STATE(4615), 2, sym_line_comment, sym_block_comment, - [146860] = 4, + [148616] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7713), 1, - sym_identifier, - STATE(4544), 2, + ACTIONS(7785), 1, + anon_sym_DOT, + STATE(4616), 2, sym_line_comment, sym_block_comment, - [146874] = 4, + [148630] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7715), 1, - sym_identifier, - STATE(4545), 2, + ACTIONS(7787), 1, + anon_sym_LBRACE, + STATE(4617), 2, sym_line_comment, sym_block_comment, - [146888] = 4, + [148644] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7717), 1, + ACTIONS(7789), 1, anon_sym_RBRACE, - STATE(4546), 2, + STATE(4618), 2, sym_line_comment, sym_block_comment, - [146902] = 4, + [148658] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7719), 1, + ACTIONS(7791), 1, anon_sym_RBRACE, - STATE(4547), 2, + STATE(4619), 2, sym_line_comment, sym_block_comment, - [146916] = 4, + [148672] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7721), 1, + ACTIONS(7793), 1, anon_sym_RBRACE, - STATE(4548), 2, + STATE(4620), 2, sym_line_comment, sym_block_comment, - [146930] = 4, + [148686] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7723), 1, + ACTIONS(885), 1, anon_sym_RBRACE, - STATE(4549), 2, + STATE(4621), 2, sym_line_comment, sym_block_comment, - [146944] = 4, + [148700] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7725), 1, + ACTIONS(7795), 1, anon_sym_RBRACE, - STATE(4550), 2, + STATE(4622), 2, sym_line_comment, sym_block_comment, - [146958] = 4, + [148714] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7727), 1, - anon_sym_DOT, - STATE(4551), 2, + ACTIONS(1512), 1, + anon_sym_RPAREN, + STATE(4623), 2, sym_line_comment, sym_block_comment, - [146972] = 4, + [148728] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7729), 1, - anon_sym_RBRACK, - STATE(4552), 2, + ACTIONS(7797), 1, + anon_sym_RBRACE, + STATE(4624), 2, sym_line_comment, sym_block_comment, - [146986] = 4, + [148742] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7731), 1, - anon_sym_RBRACE, - STATE(4553), 2, + ACTIONS(7799), 1, + anon_sym_RBRACK, + STATE(4625), 2, sym_line_comment, sym_block_comment, - [147000] = 4, + [148756] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7733), 1, + ACTIONS(877), 1, anon_sym_RBRACE, - STATE(4554), 2, + STATE(4626), 2, sym_line_comment, sym_block_comment, - [147014] = 4, + [148770] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7735), 1, + ACTIONS(7801), 1, anon_sym_RBRACE, - STATE(4555), 2, + STATE(4627), 2, sym_line_comment, sym_block_comment, - [147028] = 4, + [148784] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7737), 1, - sym_identifier, - STATE(4556), 2, + ACTIONS(7803), 1, + anon_sym_EQ, + STATE(4628), 2, sym_line_comment, sym_block_comment, - [147042] = 4, + [148798] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7739), 1, + ACTIONS(7805), 1, anon_sym_RBRACE, - STATE(4557), 2, + STATE(4629), 2, sym_line_comment, sym_block_comment, - [147056] = 4, + [148812] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7741), 1, + ACTIONS(7807), 1, anon_sym_RBRACE, - STATE(4558), 2, + STATE(4630), 2, sym_line_comment, sym_block_comment, - [147070] = 4, + [148826] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7743), 1, - anon_sym_DOT, - STATE(4559), 2, + ACTIONS(7809), 1, + anon_sym_RBRACE, + STATE(4631), 2, sym_line_comment, sym_block_comment, - [147084] = 4, + [148840] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7745), 1, + ACTIONS(921), 1, anon_sym_RBRACE, - STATE(4560), 2, + STATE(4632), 2, sym_line_comment, sym_block_comment, - [147098] = 4, + [148854] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7747), 1, - anon_sym_RBRACE, - STATE(4561), 2, + ACTIONS(7811), 1, + anon_sym_RBRACK, + STATE(4633), 2, sym_line_comment, sym_block_comment, - [147112] = 4, + [148868] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(893), 1, + ACTIONS(7813), 1, anon_sym_RBRACE, - STATE(4562), 2, + STATE(4634), 2, sym_line_comment, sym_block_comment, - [147126] = 4, + [148882] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7749), 1, - anon_sym_RBRACK, - STATE(4563), 2, + ACTIONS(7815), 1, + anon_sym_RBRACE, + STATE(4635), 2, sym_line_comment, sym_block_comment, - [147140] = 4, + [148896] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7751), 1, - sym_identifier, - STATE(4564), 2, + ACTIONS(7817), 1, + anon_sym_RBRACE, + STATE(4636), 2, sym_line_comment, sym_block_comment, - [147154] = 4, + [148910] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, + ACTIONS(7819), 1, anon_sym_RBRACE, - STATE(4565), 2, + STATE(4637), 2, sym_line_comment, sym_block_comment, - [147168] = 4, + [148924] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7753), 1, - anon_sym_RBRACK, - STATE(4566), 2, + ACTIONS(7821), 1, + sym_int_literal, + STATE(4638), 2, sym_line_comment, sym_block_comment, - [147182] = 4, + [148938] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7755), 1, - sym_identifier, - STATE(4567), 2, + ACTIONS(7823), 1, + anon_sym_RBRACE, + STATE(4639), 2, sym_line_comment, sym_block_comment, - [147196] = 4, + [148952] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7757), 1, - sym_identifier, - STATE(4568), 2, + ACTIONS(7825), 1, + anon_sym_RBRACE, + STATE(4640), 2, sym_line_comment, sym_block_comment, - [147210] = 4, + [148966] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7759), 1, - sym_identifier, - STATE(4569), 2, + ACTIONS(7827), 1, + anon_sym_RBRACK, + STATE(4641), 2, sym_line_comment, sym_block_comment, - [147224] = 4, + [148980] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1629), 1, - anon_sym_RPAREN, - STATE(4570), 2, + ACTIONS(7829), 1, + anon_sym_RBRACK, + STATE(4642), 2, sym_line_comment, sym_block_comment, - [147238] = 4, + [148994] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7761), 1, + ACTIONS(919), 1, anon_sym_RBRACE, - STATE(4571), 2, + STATE(4643), 2, sym_line_comment, sym_block_comment, - [147252] = 4, + [149008] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7763), 1, + ACTIONS(7831), 1, anon_sym_RBRACE, - STATE(4572), 2, + STATE(4644), 2, sym_line_comment, sym_block_comment, - [147266] = 4, - ACTIONS(3), 1, + [149022] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7765), 1, - anon_sym_RBRACE, - STATE(4573), 2, + ACTIONS(7833), 1, + aux_sym_shebang_token1, + STATE(4645), 2, sym_line_comment, sym_block_comment, - [147280] = 4, + [149036] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7767), 1, + ACTIONS(7835), 1, anon_sym_RBRACK, - STATE(4574), 2, + STATE(4646), 2, sym_line_comment, sym_block_comment, - [147294] = 4, + [149050] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7769), 1, - anon_sym_RBRACE, - STATE(4575), 2, + ACTIONS(7837), 1, + sym_identifier, + STATE(4647), 2, sym_line_comment, sym_block_comment, - [147308] = 4, + [149064] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7771), 1, + ACTIONS(7839), 1, anon_sym_RBRACE, - STATE(4576), 2, + STATE(4648), 2, sym_line_comment, sym_block_comment, - [147322] = 4, + [149078] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7773), 1, + ACTIONS(7841), 1, anon_sym_RBRACE, - STATE(4577), 2, + STATE(4649), 2, sym_line_comment, sym_block_comment, - [147336] = 4, + [149092] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7775), 1, - anon_sym_RBRACK, - STATE(4578), 2, + ACTIONS(7843), 1, + anon_sym_RBRACE, + STATE(4650), 2, sym_line_comment, sym_block_comment, - [147350] = 4, + [149106] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7777), 1, - anon_sym_RBRACK, - STATE(4579), 2, + ACTIONS(7845), 1, + anon_sym_RBRACE, + STATE(4651), 2, sym_line_comment, sym_block_comment, - [147364] = 4, + [149120] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7779), 1, + ACTIONS(7847), 1, anon_sym_RBRACE, - STATE(4580), 2, + STATE(4652), 2, sym_line_comment, sym_block_comment, - [147378] = 4, + [149134] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7781), 1, - anon_sym_RBRACK, - STATE(4581), 2, + ACTIONS(7849), 1, + anon_sym_RBRACE, + STATE(4653), 2, sym_line_comment, sym_block_comment, - [147392] = 4, + [149148] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7783), 1, + ACTIONS(7851), 1, anon_sym_RBRACE, - STATE(4582), 2, + STATE(4654), 2, sym_line_comment, sym_block_comment, - [147406] = 4, + [149162] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7785), 1, - anon_sym_COLON_EQ, - STATE(4583), 2, + ACTIONS(7853), 1, + anon_sym_RBRACK, + STATE(4655), 2, sym_line_comment, sym_block_comment, - [147420] = 4, + [149176] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1500), 1, - anon_sym_RPAREN, - STATE(4584), 2, + ACTIONS(7855), 1, + ts_builtin_sym_end, + STATE(4656), 2, sym_line_comment, sym_block_comment, - [147434] = 4, + [149190] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7787), 1, + ACTIONS(7857), 1, anon_sym_RBRACE, - STATE(4585), 2, + STATE(4657), 2, sym_line_comment, sym_block_comment, - [147448] = 4, + [149204] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(895), 1, + ACTIONS(7859), 1, anon_sym_RBRACE, - STATE(4586), 2, + STATE(4658), 2, sym_line_comment, sym_block_comment, - [147462] = 4, + [149218] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5872), 1, - anon_sym_LBRACE, - STATE(4587), 2, + ACTIONS(7861), 1, + anon_sym_RBRACE, + STATE(4659), 2, sym_line_comment, sym_block_comment, - [147476] = 4, + [149232] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7789), 1, - anon_sym_RBRACE, - STATE(4588), 2, + ACTIONS(1518), 1, + anon_sym_RPAREN, + STATE(4660), 2, sym_line_comment, sym_block_comment, - [147490] = 4, + [149246] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7791), 1, + ACTIONS(881), 1, anon_sym_RBRACE, - STATE(4589), 2, + STATE(4661), 2, sym_line_comment, sym_block_comment, - [147504] = 4, + [149260] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7793), 1, - anon_sym_RBRACE, - STATE(4590), 2, + ACTIONS(7863), 1, + sym_identifier, + STATE(4662), 2, sym_line_comment, sym_block_comment, - [147518] = 4, + [149274] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7795), 1, - anon_sym_RBRACE, - STATE(4591), 2, + ACTIONS(1506), 1, + anon_sym_RPAREN, + STATE(4663), 2, sym_line_comment, sym_block_comment, - [147532] = 4, - ACTIONS(3), 1, + [149288] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7797), 1, - anon_sym_RBRACE, - STATE(4592), 2, + ACTIONS(7865), 1, + aux_sym_hash_statement_token1, + STATE(4664), 2, sym_line_comment, sym_block_comment, - [147546] = 4, + [149302] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(927), 1, + ACTIONS(7867), 1, anon_sym_RBRACE, - STATE(4593), 2, + STATE(4665), 2, sym_line_comment, sym_block_comment, - [147560] = 4, + [149316] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7799), 1, - anon_sym_RBRACE, - STATE(4594), 2, + ACTIONS(7869), 1, + anon_sym_LBRACE, + STATE(4666), 2, sym_line_comment, sym_block_comment, - [147574] = 4, + [149330] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(875), 1, - anon_sym_RBRACE, - STATE(4595), 2, + ACTIONS(7871), 1, + anon_sym_RBRACK, + STATE(4667), 2, sym_line_comment, sym_block_comment, - [147588] = 4, + [149344] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7801), 1, - anon_sym_RBRACE, - STATE(4596), 2, + ACTIONS(7873), 1, + anon_sym_LBRACE, + STATE(4668), 2, sym_line_comment, sym_block_comment, - [147602] = 4, + [149358] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, + ACTIONS(7875), 1, anon_sym_RBRACE, - STATE(4597), 2, + STATE(4669), 2, sym_line_comment, sym_block_comment, - [147616] = 4, + [149372] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7803), 1, + ACTIONS(7877), 1, anon_sym_RBRACE, - STATE(4598), 2, + STATE(4670), 2, sym_line_comment, sym_block_comment, - [147630] = 4, + [149386] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1637), 1, - anon_sym_RPAREN, - STATE(4599), 2, + ACTIONS(7879), 1, + anon_sym_RBRACE, + STATE(4671), 2, sym_line_comment, sym_block_comment, - [147644] = 4, + [149400] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7805), 1, + ACTIONS(7881), 1, anon_sym_RBRACE, - STATE(4600), 2, + STATE(4672), 2, sym_line_comment, sym_block_comment, - [147658] = 4, + [149414] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7807), 1, - anon_sym_RBRACE, - STATE(4601), 2, + ACTIONS(7883), 1, + sym_identifier, + STATE(4673), 2, + sym_line_comment, + sym_block_comment, + [149428] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7885), 1, + aux_sym_hash_statement_token1, + STATE(4674), 2, sym_line_comment, sym_block_comment, - [147672] = 4, + [149442] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(901), 1, - anon_sym_RBRACE, - STATE(4602), 2, + ACTIONS(7887), 1, + anon_sym_LBRACE, + STATE(4675), 2, sym_line_comment, sym_block_comment, - [147686] = 4, + [149456] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7809), 1, + ACTIONS(7889), 1, anon_sym_RBRACE, - STATE(4603), 2, + STATE(4676), 2, sym_line_comment, sym_block_comment, - [147700] = 4, + [149470] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7811), 1, + ACTIONS(917), 1, anon_sym_RBRACE, - STATE(4604), 2, + STATE(4677), 2, sym_line_comment, sym_block_comment, - [147714] = 4, + [149484] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7813), 1, - anon_sym_RBRACE, - STATE(4605), 2, + ACTIONS(7891), 1, + sym_identifier, + STATE(4678), 2, sym_line_comment, sym_block_comment, - [147728] = 4, + [149498] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1631), 1, - anon_sym_RPAREN, - STATE(4606), 2, + ACTIONS(887), 1, + anon_sym_RBRACE, + STATE(4679), 2, sym_line_comment, sym_block_comment, - [147742] = 4, + [149512] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7815), 1, + ACTIONS(931), 1, anon_sym_RBRACE, - STATE(4607), 2, + STATE(4680), 2, sym_line_comment, sym_block_comment, - [147756] = 4, + [149526] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(949), 1, + ACTIONS(7893), 1, anon_sym_RBRACE, - STATE(4608), 2, + STATE(4681), 2, sym_line_comment, sym_block_comment, - [147770] = 4, + [149540] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7817), 1, - anon_sym_RBRACK, - STATE(4609), 2, + ACTIONS(7895), 1, + anon_sym_RBRACE, + STATE(4682), 2, sym_line_comment, sym_block_comment, - [147784] = 4, + [149554] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4846), 1, - anon_sym_COLON, - STATE(4610), 2, + ACTIONS(7897), 1, + anon_sym_RBRACE, + STATE(4683), 2, sym_line_comment, sym_block_comment, - [147798] = 4, + [149568] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7819), 1, - anon_sym_RBRACE, - STATE(4611), 2, + ACTIONS(7899), 1, + anon_sym_EQ, + STATE(4684), 2, sym_line_comment, sym_block_comment, - [147812] = 4, + [149582] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7821), 1, - anon_sym_RBRACE, - STATE(4612), 2, + ACTIONS(7901), 1, + anon_sym_RBRACK, + STATE(4685), 2, sym_line_comment, sym_block_comment, - [147826] = 4, + [149596] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7823), 1, + ACTIONS(7903), 1, anon_sym_RBRACE, - STATE(4613), 2, + STATE(4686), 2, sym_line_comment, sym_block_comment, - [147840] = 4, + [149610] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7825), 1, + ACTIONS(7905), 1, anon_sym_RBRACE, - STATE(4614), 2, + STATE(4687), 2, sym_line_comment, sym_block_comment, - [147854] = 4, + [149624] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7827), 1, + ACTIONS(7907), 1, anon_sym_RBRACE, - STATE(4615), 2, + STATE(4688), 2, sym_line_comment, sym_block_comment, - [147868] = 4, + [149638] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7829), 1, + ACTIONS(7909), 1, anon_sym_RBRACE, - STATE(4616), 2, + STATE(4689), 2, sym_line_comment, sym_block_comment, - [147882] = 4, + [149652] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7831), 1, - anon_sym_RBRACK, - STATE(4617), 2, + ACTIONS(7911), 1, + sym_identifier, + STATE(4690), 2, sym_line_comment, sym_block_comment, - [147896] = 4, + [149666] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7833), 1, + ACTIONS(7913), 1, anon_sym_RBRACE, - STATE(4618), 2, + STATE(4691), 2, sym_line_comment, sym_block_comment, - [147910] = 4, + [149680] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7835), 1, - anon_sym_RBRACE, - STATE(4619), 2, + ACTIONS(7915), 1, + sym_identifier, + STATE(4692), 2, sym_line_comment, sym_block_comment, - [147924] = 4, + [149694] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7837), 1, + ACTIONS(7917), 1, anon_sym_RBRACE, - STATE(4620), 2, + STATE(4693), 2, sym_line_comment, sym_block_comment, - [147938] = 4, + [149708] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7839), 1, - anon_sym_RBRACK, - STATE(4621), 2, + ACTIONS(891), 1, + anon_sym_RBRACE, + STATE(4694), 2, sym_line_comment, sym_block_comment, - [147952] = 4, + [149722] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4577), 1, + ACTIONS(6681), 1, sym_identifier, - STATE(4622), 2, + STATE(4695), 2, sym_line_comment, sym_block_comment, - [147966] = 4, + [149736] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7841), 1, + ACTIONS(7919), 1, anon_sym_RBRACE, - STATE(4623), 2, + STATE(4696), 2, sym_line_comment, sym_block_comment, - [147980] = 4, + [149750] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7843), 1, + ACTIONS(7921), 1, anon_sym_RBRACE, - STATE(4624), 2, + STATE(4697), 2, sym_line_comment, sym_block_comment, - [147994] = 4, + [149764] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7845), 1, + ACTIONS(7923), 1, anon_sym_RBRACE, - STATE(4625), 2, + STATE(4698), 2, sym_line_comment, sym_block_comment, - [148008] = 4, + [149778] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7847), 1, + ACTIONS(7925), 1, anon_sym_RBRACE, - STATE(4626), 2, + STATE(4699), 2, sym_line_comment, sym_block_comment, - [148022] = 4, + [149792] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(877), 1, - anon_sym_RBRACE, - STATE(4627), 2, + ACTIONS(7927), 1, + sym_identifier, + STATE(4700), 2, sym_line_comment, sym_block_comment, - [148036] = 4, + [149806] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(887), 1, + ACTIONS(7929), 1, anon_sym_RBRACE, - STATE(4628), 2, + STATE(4701), 2, sym_line_comment, sym_block_comment, - [148050] = 4, + [149820] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7849), 1, - anon_sym_EQ, - STATE(4629), 2, + ACTIONS(7357), 1, + anon_sym_RBRACE, + STATE(4702), 2, sym_line_comment, sym_block_comment, - [148064] = 4, + [149834] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7851), 1, - anon_sym_RBRACE, - STATE(4630), 2, + ACTIONS(7931), 1, + anon_sym_LBRACE, + STATE(4703), 2, sym_line_comment, sym_block_comment, - [148078] = 4, + [149848] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7853), 1, - anon_sym_RBRACE, - STATE(4631), 2, + ACTIONS(7933), 1, + anon_sym_LBRACE, + STATE(4704), 2, sym_line_comment, sym_block_comment, - [148092] = 1, - ACTIONS(7855), 1, + [149862] = 1, + ACTIONS(7935), 1, ts_builtin_sym_end, - [148096] = 1, - ACTIONS(7857), 1, + [149866] = 1, + ACTIONS(7937), 1, ts_builtin_sym_end, - [148100] = 1, - ACTIONS(7859), 1, + [149870] = 1, + ACTIONS(7939), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1610)] = 0, - [SMALL_STATE(1611)] = 93, - [SMALL_STATE(1612)] = 184, - [SMALL_STATE(1613)] = 279, - [SMALL_STATE(1614)] = 372, - [SMALL_STATE(1615)] = 471, - [SMALL_STATE(1616)] = 572, - [SMALL_STATE(1617)] = 663, - [SMALL_STATE(1618)] = 776, - [SMALL_STATE(1619)] = 867, - [SMALL_STATE(1620)] = 980, - [SMALL_STATE(1621)] = 1075, - [SMALL_STATE(1622)] = 1198, - [SMALL_STATE(1623)] = 1314, - [SMALL_STATE(1624)] = 1392, - [SMALL_STATE(1625)] = 1466, - [SMALL_STATE(1626)] = 1544, - [SMALL_STATE(1627)] = 1618, - [SMALL_STATE(1628)] = 1691, - [SMALL_STATE(1629)] = 1764, - [SMALL_STATE(1630)] = 1839, - [SMALL_STATE(1631)] = 1912, - [SMALL_STATE(1632)] = 2023, - [SMALL_STATE(1633)] = 2096, - [SMALL_STATE(1634)] = 2171, - [SMALL_STATE(1635)] = 2244, - [SMALL_STATE(1636)] = 2317, - [SMALL_STATE(1637)] = 2428, - [SMALL_STATE(1638)] = 2501, - [SMALL_STATE(1639)] = 2574, - [SMALL_STATE(1640)] = 2647, - [SMALL_STATE(1641)] = 2720, - [SMALL_STATE(1642)] = 2793, - [SMALL_STATE(1643)] = 2866, - [SMALL_STATE(1644)] = 2959, - [SMALL_STATE(1645)] = 3058, - [SMALL_STATE(1646)] = 3131, - [SMALL_STATE(1647)] = 3204, - [SMALL_STATE(1648)] = 3277, - [SMALL_STATE(1649)] = 3350, - [SMALL_STATE(1650)] = 3447, - [SMALL_STATE(1651)] = 3540, - [SMALL_STATE(1652)] = 3617, - [SMALL_STATE(1653)] = 3708, - [SMALL_STATE(1654)] = 3781, - [SMALL_STATE(1655)] = 3854, - [SMALL_STATE(1656)] = 3927, - [SMALL_STATE(1657)] = 4002, - [SMALL_STATE(1658)] = 4075, - [SMALL_STATE(1659)] = 4148, - [SMALL_STATE(1660)] = 4223, - [SMALL_STATE(1661)] = 4312, - [SMALL_STATE(1662)] = 4401, - [SMALL_STATE(1663)] = 4474, - [SMALL_STATE(1664)] = 4549, - [SMALL_STATE(1665)] = 4624, - [SMALL_STATE(1666)] = 4751, - [SMALL_STATE(1667)] = 4878, - [SMALL_STATE(1668)] = 4953, - [SMALL_STATE(1669)] = 5042, - [SMALL_STATE(1670)] = 5153, - [SMALL_STATE(1671)] = 5225, - [SMALL_STATE(1672)] = 5297, - [SMALL_STATE(1673)] = 5369, - [SMALL_STATE(1674)] = 5441, - [SMALL_STATE(1675)] = 5513, - [SMALL_STATE(1676)] = 5585, - [SMALL_STATE(1677)] = 5657, - [SMALL_STATE(1678)] = 5729, - [SMALL_STATE(1679)] = 5801, - [SMALL_STATE(1680)] = 5873, - [SMALL_STATE(1681)] = 5945, - [SMALL_STATE(1682)] = 6017, - [SMALL_STATE(1683)] = 6089, - [SMALL_STATE(1684)] = 6161, - [SMALL_STATE(1685)] = 6235, - [SMALL_STATE(1686)] = 6307, - [SMALL_STATE(1687)] = 6379, - [SMALL_STATE(1688)] = 6451, - [SMALL_STATE(1689)] = 6523, - [SMALL_STATE(1690)] = 6595, - [SMALL_STATE(1691)] = 6667, - [SMALL_STATE(1692)] = 6739, - [SMALL_STATE(1693)] = 6813, - [SMALL_STATE(1694)] = 6887, - [SMALL_STATE(1695)] = 6959, - [SMALL_STATE(1696)] = 7031, - [SMALL_STATE(1697)] = 7103, - [SMALL_STATE(1698)] = 7175, - [SMALL_STATE(1699)] = 7247, - [SMALL_STATE(1700)] = 7319, - [SMALL_STATE(1701)] = 7391, - [SMALL_STATE(1702)] = 7463, - [SMALL_STATE(1703)] = 7539, - [SMALL_STATE(1704)] = 7615, - [SMALL_STATE(1705)] = 7687, - [SMALL_STATE(1706)] = 7759, - [SMALL_STATE(1707)] = 7831, - [SMALL_STATE(1708)] = 7905, - [SMALL_STATE(1709)] = 7977, - [SMALL_STATE(1710)] = 8049, - [SMALL_STATE(1711)] = 8121, - [SMALL_STATE(1712)] = 8195, - [SMALL_STATE(1713)] = 8269, - [SMALL_STATE(1714)] = 8341, - [SMALL_STATE(1715)] = 8413, - [SMALL_STATE(1716)] = 8485, - [SMALL_STATE(1717)] = 8557, - [SMALL_STATE(1718)] = 8629, - [SMALL_STATE(1719)] = 8701, - [SMALL_STATE(1720)] = 8773, - [SMALL_STATE(1721)] = 8845, - [SMALL_STATE(1722)] = 8917, - [SMALL_STATE(1723)] = 8989, - [SMALL_STATE(1724)] = 9061, - [SMALL_STATE(1725)] = 9133, - [SMALL_STATE(1726)] = 9205, - [SMALL_STATE(1727)] = 9277, - [SMALL_STATE(1728)] = 9349, - [SMALL_STATE(1729)] = 9421, - [SMALL_STATE(1730)] = 9493, - [SMALL_STATE(1731)] = 9565, - [SMALL_STATE(1732)] = 9637, - [SMALL_STATE(1733)] = 9709, - [SMALL_STATE(1734)] = 9781, - [SMALL_STATE(1735)] = 9853, - [SMALL_STATE(1736)] = 9925, - [SMALL_STATE(1737)] = 9997, - [SMALL_STATE(1738)] = 10069, - [SMALL_STATE(1739)] = 10141, - [SMALL_STATE(1740)] = 10213, - [SMALL_STATE(1741)] = 10285, - [SMALL_STATE(1742)] = 10357, - [SMALL_STATE(1743)] = 10429, - [SMALL_STATE(1744)] = 10501, - [SMALL_STATE(1745)] = 10573, - [SMALL_STATE(1746)] = 10645, - [SMALL_STATE(1747)] = 10719, - [SMALL_STATE(1748)] = 10791, - [SMALL_STATE(1749)] = 10863, - [SMALL_STATE(1750)] = 10935, - [SMALL_STATE(1751)] = 11007, - [SMALL_STATE(1752)] = 11098, - [SMALL_STATE(1753)] = 11171, - [SMALL_STATE(1754)] = 11244, - [SMALL_STATE(1755)] = 11317, - [SMALL_STATE(1756)] = 11412, - [SMALL_STATE(1757)] = 11485, - [SMALL_STATE(1758)] = 11588, - [SMALL_STATE(1759)] = 11689, - [SMALL_STATE(1760)] = 11784, - [SMALL_STATE(1761)] = 11857, - [SMALL_STATE(1762)] = 11950, - [SMALL_STATE(1763)] = 12023, - [SMALL_STATE(1764)] = 12118, - [SMALL_STATE(1765)] = 12221, - [SMALL_STATE(1766)] = 12322, - [SMALL_STATE(1767)] = 12437, - [SMALL_STATE(1768)] = 12532, - [SMALL_STATE(1769)] = 12623, - [SMALL_STATE(1770)] = 12716, - [SMALL_STATE(1771)] = 12807, - [SMALL_STATE(1772)] = 12928, - [SMALL_STATE(1773)] = 13043, - [SMALL_STATE(1774)] = 13158, - [SMALL_STATE(1775)] = 13249, - [SMALL_STATE(1776)] = 13364, - [SMALL_STATE(1777)] = 13483, - [SMALL_STATE(1778)] = 13574, - [SMALL_STATE(1779)] = 13693, - [SMALL_STATE(1780)] = 13784, - [SMALL_STATE(1781)] = 13854, - [SMALL_STATE(1782)] = 13924, - [SMALL_STATE(1783)] = 13994, - [SMALL_STATE(1784)] = 14064, - [SMALL_STATE(1785)] = 14178, - [SMALL_STATE(1786)] = 14248, - [SMALL_STATE(1787)] = 14318, - [SMALL_STATE(1788)] = 14388, - [SMALL_STATE(1789)] = 14458, - [SMALL_STATE(1790)] = 14528, - [SMALL_STATE(1791)] = 14600, - [SMALL_STATE(1792)] = 14674, - [SMALL_STATE(1793)] = 14748, - [SMALL_STATE(1794)] = 14818, - [SMALL_STATE(1795)] = 14932, - [SMALL_STATE(1796)] = 15002, - [SMALL_STATE(1797)] = 15072, - [SMALL_STATE(1798)] = 15164, - [SMALL_STATE(1799)] = 15234, - [SMALL_STATE(1800)] = 15328, - [SMALL_STATE(1801)] = 15398, - [SMALL_STATE(1802)] = 15468, - [SMALL_STATE(1803)] = 15538, - [SMALL_STATE(1804)] = 15608, - [SMALL_STATE(1805)] = 15678, - [SMALL_STATE(1806)] = 15748, - [SMALL_STATE(1807)] = 15848, - [SMALL_STATE(1808)] = 15950, - [SMALL_STATE(1809)] = 16044, - [SMALL_STATE(1810)] = 16158, - [SMALL_STATE(1811)] = 16228, - [SMALL_STATE(1812)] = 16298, - [SMALL_STATE(1813)] = 16368, - [SMALL_STATE(1814)] = 16440, - [SMALL_STATE(1815)] = 16510, - [SMALL_STATE(1816)] = 16580, - [SMALL_STATE(1817)] = 16650, - [SMALL_STATE(1818)] = 16720, - [SMALL_STATE(1819)] = 16790, - [SMALL_STATE(1820)] = 16860, - [SMALL_STATE(1821)] = 16930, - [SMALL_STATE(1822)] = 17004, - [SMALL_STATE(1823)] = 17078, - [SMALL_STATE(1824)] = 17148, - [SMALL_STATE(1825)] = 17218, - [SMALL_STATE(1826)] = 17288, - [SMALL_STATE(1827)] = 17358, - [SMALL_STATE(1828)] = 17428, - [SMALL_STATE(1829)] = 17498, - [SMALL_STATE(1830)] = 17568, - [SMALL_STATE(1831)] = 17638, - [SMALL_STATE(1832)] = 17708, - [SMALL_STATE(1833)] = 17778, - [SMALL_STATE(1834)] = 17850, - [SMALL_STATE(1835)] = 17920, - [SMALL_STATE(1836)] = 17990, - [SMALL_STATE(1837)] = 18060, - [SMALL_STATE(1838)] = 18130, - [SMALL_STATE(1839)] = 18200, - [SMALL_STATE(1840)] = 18270, - [SMALL_STATE(1841)] = 18340, - [SMALL_STATE(1842)] = 18410, - [SMALL_STATE(1843)] = 18480, - [SMALL_STATE(1844)] = 18550, - [SMALL_STATE(1845)] = 18620, - [SMALL_STATE(1846)] = 18690, - [SMALL_STATE(1847)] = 18760, - [SMALL_STATE(1848)] = 18830, - [SMALL_STATE(1849)] = 18900, - [SMALL_STATE(1850)] = 18970, - [SMALL_STATE(1851)] = 19040, - [SMALL_STATE(1852)] = 19112, - [SMALL_STATE(1853)] = 19182, - [SMALL_STATE(1854)] = 19252, - [SMALL_STATE(1855)] = 19322, - [SMALL_STATE(1856)] = 19392, - [SMALL_STATE(1857)] = 19462, - [SMALL_STATE(1858)] = 19532, - [SMALL_STATE(1859)] = 19602, - [SMALL_STATE(1860)] = 19672, - [SMALL_STATE(1861)] = 19742, - [SMALL_STATE(1862)] = 19812, - [SMALL_STATE(1863)] = 19882, - [SMALL_STATE(1864)] = 19952, - [SMALL_STATE(1865)] = 20022, - [SMALL_STATE(1866)] = 20092, - [SMALL_STATE(1867)] = 20162, - [SMALL_STATE(1868)] = 20232, - [SMALL_STATE(1869)] = 20302, - [SMALL_STATE(1870)] = 20372, - [SMALL_STATE(1871)] = 20442, - [SMALL_STATE(1872)] = 20512, - [SMALL_STATE(1873)] = 20582, - [SMALL_STATE(1874)] = 20652, - [SMALL_STATE(1875)] = 20722, - [SMALL_STATE(1876)] = 20792, - [SMALL_STATE(1877)] = 20862, - [SMALL_STATE(1878)] = 20932, - [SMALL_STATE(1879)] = 21002, - [SMALL_STATE(1880)] = 21072, - [SMALL_STATE(1881)] = 21142, - [SMALL_STATE(1882)] = 21256, - [SMALL_STATE(1883)] = 21326, - [SMALL_STATE(1884)] = 21396, - [SMALL_STATE(1885)] = 21466, - [SMALL_STATE(1886)] = 21536, - [SMALL_STATE(1887)] = 21606, - [SMALL_STATE(1888)] = 21676, - [SMALL_STATE(1889)] = 21746, - [SMALL_STATE(1890)] = 21816, - [SMALL_STATE(1891)] = 21886, - [SMALL_STATE(1892)] = 21956, - [SMALL_STATE(1893)] = 22026, - [SMALL_STATE(1894)] = 22096, - [SMALL_STATE(1895)] = 22166, - [SMALL_STATE(1896)] = 22244, - [SMALL_STATE(1897)] = 22314, - [SMALL_STATE(1898)] = 22384, - [SMALL_STATE(1899)] = 22454, - [SMALL_STATE(1900)] = 22525, - [SMALL_STATE(1901)] = 22596, - [SMALL_STATE(1902)] = 22663, - [SMALL_STATE(1903)] = 22740, - [SMALL_STATE(1904)] = 22853, - [SMALL_STATE(1905)] = 22924, - [SMALL_STATE(1906)] = 23037, - [SMALL_STATE(1907)] = 23150, - [SMALL_STATE(1908)] = 23221, - [SMALL_STATE(1909)] = 23292, - [SMALL_STATE(1910)] = 23363, - [SMALL_STATE(1911)] = 23476, - [SMALL_STATE(1912)] = 23545, - [SMALL_STATE(1913)] = 23617, - [SMALL_STATE(1914)] = 23685, - [SMALL_STATE(1915)] = 23753, - [SMALL_STATE(1916)] = 23821, - [SMALL_STATE(1917)] = 23889, - [SMALL_STATE(1918)] = 23957, - [SMALL_STATE(1919)] = 24025, - [SMALL_STATE(1920)] = 24093, - [SMALL_STATE(1921)] = 24163, - [SMALL_STATE(1922)] = 24233, - [SMALL_STATE(1923)] = 24301, - [SMALL_STATE(1924)] = 24369, - [SMALL_STATE(1925)] = 24439, - [SMALL_STATE(1926)] = 24507, - [SMALL_STATE(1927)] = 24575, - [SMALL_STATE(1928)] = 24643, - [SMALL_STATE(1929)] = 24711, - [SMALL_STATE(1930)] = 24779, - [SMALL_STATE(1931)] = 24847, - [SMALL_STATE(1932)] = 24915, - [SMALL_STATE(1933)] = 24983, - [SMALL_STATE(1934)] = 25051, - [SMALL_STATE(1935)] = 25119, - [SMALL_STATE(1936)] = 25187, - [SMALL_STATE(1937)] = 25255, - [SMALL_STATE(1938)] = 25323, - [SMALL_STATE(1939)] = 25391, - [SMALL_STATE(1940)] = 25459, - [SMALL_STATE(1941)] = 25527, - [SMALL_STATE(1942)] = 25595, - [SMALL_STATE(1943)] = 25663, - [SMALL_STATE(1944)] = 25731, - [SMALL_STATE(1945)] = 25799, - [SMALL_STATE(1946)] = 25867, - [SMALL_STATE(1947)] = 25935, - [SMALL_STATE(1948)] = 26003, - [SMALL_STATE(1949)] = 26071, - [SMALL_STATE(1950)] = 26139, - [SMALL_STATE(1951)] = 26207, - [SMALL_STATE(1952)] = 26275, - [SMALL_STATE(1953)] = 26343, - [SMALL_STATE(1954)] = 26411, - [SMALL_STATE(1955)] = 26481, - [SMALL_STATE(1956)] = 26549, - [SMALL_STATE(1957)] = 26617, - [SMALL_STATE(1958)] = 26685, - [SMALL_STATE(1959)] = 26753, - [SMALL_STATE(1960)] = 26821, - [SMALL_STATE(1961)] = 26891, - [SMALL_STATE(1962)] = 26959, - [SMALL_STATE(1963)] = 27027, - [SMALL_STATE(1964)] = 27095, - [SMALL_STATE(1965)] = 27163, - [SMALL_STATE(1966)] = 27231, - [SMALL_STATE(1967)] = 27299, - [SMALL_STATE(1968)] = 27367, - [SMALL_STATE(1969)] = 27435, - [SMALL_STATE(1970)] = 27503, - [SMALL_STATE(1971)] = 27571, - [SMALL_STATE(1972)] = 27639, - [SMALL_STATE(1973)] = 27707, - [SMALL_STATE(1974)] = 27775, - [SMALL_STATE(1975)] = 27843, - [SMALL_STATE(1976)] = 27911, - [SMALL_STATE(1977)] = 27979, - [SMALL_STATE(1978)] = 28047, - [SMALL_STATE(1979)] = 28115, - [SMALL_STATE(1980)] = 28183, - [SMALL_STATE(1981)] = 28251, - [SMALL_STATE(1982)] = 28321, - [SMALL_STATE(1983)] = 28389, - [SMALL_STATE(1984)] = 28459, - [SMALL_STATE(1985)] = 28527, - [SMALL_STATE(1986)] = 28595, - [SMALL_STATE(1987)] = 28663, - [SMALL_STATE(1988)] = 28731, - [SMALL_STATE(1989)] = 28799, - [SMALL_STATE(1990)] = 28867, - [SMALL_STATE(1991)] = 28935, - [SMALL_STATE(1992)] = 29003, - [SMALL_STATE(1993)] = 29071, - [SMALL_STATE(1994)] = 29139, - [SMALL_STATE(1995)] = 29207, - [SMALL_STATE(1996)] = 29275, - [SMALL_STATE(1997)] = 29343, - [SMALL_STATE(1998)] = 29411, - [SMALL_STATE(1999)] = 29479, - [SMALL_STATE(2000)] = 29547, - [SMALL_STATE(2001)] = 29615, - [SMALL_STATE(2002)] = 29683, - [SMALL_STATE(2003)] = 29751, - [SMALL_STATE(2004)] = 29821, - [SMALL_STATE(2005)] = 29889, - [SMALL_STATE(2006)] = 29957, - [SMALL_STATE(2007)] = 30025, - [SMALL_STATE(2008)] = 30097, - [SMALL_STATE(2009)] = 30165, - [SMALL_STATE(2010)] = 30233, - [SMALL_STATE(2011)] = 30301, - [SMALL_STATE(2012)] = 30369, - [SMALL_STATE(2013)] = 30437, - [SMALL_STATE(2014)] = 30505, - [SMALL_STATE(2015)] = 30573, - [SMALL_STATE(2016)] = 30641, - [SMALL_STATE(2017)] = 30709, - [SMALL_STATE(2018)] = 30777, - [SMALL_STATE(2019)] = 30845, - [SMALL_STATE(2020)] = 30913, - [SMALL_STATE(2021)] = 30981, - [SMALL_STATE(2022)] = 31049, - [SMALL_STATE(2023)] = 31117, - [SMALL_STATE(2024)] = 31185, - [SMALL_STATE(2025)] = 31253, - [SMALL_STATE(2026)] = 31321, - [SMALL_STATE(2027)] = 31389, - [SMALL_STATE(2028)] = 31457, - [SMALL_STATE(2029)] = 31525, - [SMALL_STATE(2030)] = 31593, - [SMALL_STATE(2031)] = 31661, - [SMALL_STATE(2032)] = 31729, - [SMALL_STATE(2033)] = 31797, - [SMALL_STATE(2034)] = 31865, - [SMALL_STATE(2035)] = 31933, - [SMALL_STATE(2036)] = 32001, - [SMALL_STATE(2037)] = 32069, - [SMALL_STATE(2038)] = 32137, - [SMALL_STATE(2039)] = 32205, - [SMALL_STATE(2040)] = 32273, - [SMALL_STATE(2041)] = 32341, - [SMALL_STATE(2042)] = 32409, - [SMALL_STATE(2043)] = 32477, - [SMALL_STATE(2044)] = 32545, - [SMALL_STATE(2045)] = 32613, - [SMALL_STATE(2046)] = 32681, - [SMALL_STATE(2047)] = 32749, - [SMALL_STATE(2048)] = 32817, - [SMALL_STATE(2049)] = 32885, - [SMALL_STATE(2050)] = 32953, - [SMALL_STATE(2051)] = 33021, - [SMALL_STATE(2052)] = 33089, - [SMALL_STATE(2053)] = 33157, - [SMALL_STATE(2054)] = 33229, - [SMALL_STATE(2055)] = 33299, - [SMALL_STATE(2056)] = 33367, - [SMALL_STATE(2057)] = 33435, - [SMALL_STATE(2058)] = 33503, - [SMALL_STATE(2059)] = 33571, - [SMALL_STATE(2060)] = 33639, - [SMALL_STATE(2061)] = 33707, - [SMALL_STATE(2062)] = 33775, - [SMALL_STATE(2063)] = 33843, - [SMALL_STATE(2064)] = 33911, - [SMALL_STATE(2065)] = 33979, - [SMALL_STATE(2066)] = 34047, - [SMALL_STATE(2067)] = 34115, - [SMALL_STATE(2068)] = 34183, - [SMALL_STATE(2069)] = 34251, - [SMALL_STATE(2070)] = 34319, - [SMALL_STATE(2071)] = 34387, - [SMALL_STATE(2072)] = 34455, - [SMALL_STATE(2073)] = 34523, - [SMALL_STATE(2074)] = 34591, - [SMALL_STATE(2075)] = 34659, - [SMALL_STATE(2076)] = 34727, - [SMALL_STATE(2077)] = 34795, - [SMALL_STATE(2078)] = 34863, - [SMALL_STATE(2079)] = 34931, - [SMALL_STATE(2080)] = 34999, - [SMALL_STATE(2081)] = 35067, - [SMALL_STATE(2082)] = 35135, - [SMALL_STATE(2083)] = 35203, - [SMALL_STATE(2084)] = 35271, - [SMALL_STATE(2085)] = 35339, - [SMALL_STATE(2086)] = 35407, - [SMALL_STATE(2087)] = 35475, - [SMALL_STATE(2088)] = 35543, - [SMALL_STATE(2089)] = 35611, - [SMALL_STATE(2090)] = 35679, - [SMALL_STATE(2091)] = 35747, - [SMALL_STATE(2092)] = 35815, - [SMALL_STATE(2093)] = 35883, - [SMALL_STATE(2094)] = 35951, - [SMALL_STATE(2095)] = 36019, - [SMALL_STATE(2096)] = 36089, - [SMALL_STATE(2097)] = 36157, - [SMALL_STATE(2098)] = 36225, - [SMALL_STATE(2099)] = 36293, - [SMALL_STATE(2100)] = 36363, - [SMALL_STATE(2101)] = 36431, - [SMALL_STATE(2102)] = 36499, - [SMALL_STATE(2103)] = 36571, - [SMALL_STATE(2104)] = 36639, - [SMALL_STATE(2105)] = 36707, - [SMALL_STATE(2106)] = 36775, - [SMALL_STATE(2107)] = 36843, - [SMALL_STATE(2108)] = 36911, - [SMALL_STATE(2109)] = 36979, - [SMALL_STATE(2110)] = 37047, - [SMALL_STATE(2111)] = 37117, - [SMALL_STATE(2112)] = 37185, - [SMALL_STATE(2113)] = 37253, - [SMALL_STATE(2114)] = 37321, - [SMALL_STATE(2115)] = 37389, - [SMALL_STATE(2116)] = 37457, - [SMALL_STATE(2117)] = 37524, - [SMALL_STATE(2118)] = 37591, - [SMALL_STATE(2119)] = 37658, - [SMALL_STATE(2120)] = 37725, - [SMALL_STATE(2121)] = 37792, - [SMALL_STATE(2122)] = 37862, - [SMALL_STATE(2123)] = 37944, - [SMALL_STATE(2124)] = 38026, - [SMALL_STATE(2125)] = 38108, - [SMALL_STATE(2126)] = 38179, - [SMALL_STATE(2127)] = 38248, - [SMALL_STATE(2128)] = 38317, - [SMALL_STATE(2129)] = 38383, - [SMALL_STATE(2130)] = 38447, - [SMALL_STATE(2131)] = 38513, - [SMALL_STATE(2132)] = 38581, - [SMALL_STATE(2133)] = 38645, - [SMALL_STATE(2134)] = 38709, - [SMALL_STATE(2135)] = 38773, - [SMALL_STATE(2136)] = 38837, - [SMALL_STATE(2137)] = 38901, - [SMALL_STATE(2138)] = 39009, - [SMALL_STATE(2139)] = 39073, - [SMALL_STATE(2140)] = 39137, - [SMALL_STATE(2141)] = 39201, - [SMALL_STATE(2142)] = 39267, - [SMALL_STATE(2143)] = 39331, - [SMALL_STATE(2144)] = 39395, - [SMALL_STATE(2145)] = 39461, - [SMALL_STATE(2146)] = 39525, - [SMALL_STATE(2147)] = 39588, - [SMALL_STATE(2148)] = 39651, - [SMALL_STATE(2149)] = 39714, - [SMALL_STATE(2150)] = 39777, - [SMALL_STATE(2151)] = 39840, - [SMALL_STATE(2152)] = 39903, - [SMALL_STATE(2153)] = 39966, - [SMALL_STATE(2154)] = 40029, - [SMALL_STATE(2155)] = 40092, - [SMALL_STATE(2156)] = 40155, - [SMALL_STATE(2157)] = 40218, - [SMALL_STATE(2158)] = 40281, - [SMALL_STATE(2159)] = 40344, - [SMALL_STATE(2160)] = 40407, - [SMALL_STATE(2161)] = 40470, - [SMALL_STATE(2162)] = 40533, - [SMALL_STATE(2163)] = 40596, - [SMALL_STATE(2164)] = 40659, - [SMALL_STATE(2165)] = 40722, - [SMALL_STATE(2166)] = 40785, - [SMALL_STATE(2167)] = 40848, - [SMALL_STATE(2168)] = 40911, - [SMALL_STATE(2169)] = 40974, - [SMALL_STATE(2170)] = 41061, - [SMALL_STATE(2171)] = 41124, - [SMALL_STATE(2172)] = 41187, - [SMALL_STATE(2173)] = 41250, - [SMALL_STATE(2174)] = 41333, - [SMALL_STATE(2175)] = 41396, - [SMALL_STATE(2176)] = 41459, - [SMALL_STATE(2177)] = 41522, - [SMALL_STATE(2178)] = 41585, - [SMALL_STATE(2179)] = 41648, - [SMALL_STATE(2180)] = 41711, - [SMALL_STATE(2181)] = 41774, - [SMALL_STATE(2182)] = 41837, - [SMALL_STATE(2183)] = 41900, - [SMALL_STATE(2184)] = 41963, - [SMALL_STATE(2185)] = 42026, - [SMALL_STATE(2186)] = 42089, - [SMALL_STATE(2187)] = 42170, - [SMALL_STATE(2188)] = 42233, - [SMALL_STATE(2189)] = 42296, - [SMALL_STATE(2190)] = 42359, - [SMALL_STATE(2191)] = 42422, - [SMALL_STATE(2192)] = 42485, - [SMALL_STATE(2193)] = 42548, - [SMALL_STATE(2194)] = 42611, - [SMALL_STATE(2195)] = 42674, - [SMALL_STATE(2196)] = 42737, - [SMALL_STATE(2197)] = 42800, - [SMALL_STATE(2198)] = 42863, - [SMALL_STATE(2199)] = 42926, - [SMALL_STATE(2200)] = 42989, - [SMALL_STATE(2201)] = 43052, - [SMALL_STATE(2202)] = 43115, - [SMALL_STATE(2203)] = 43178, - [SMALL_STATE(2204)] = 43241, - [SMALL_STATE(2205)] = 43304, - [SMALL_STATE(2206)] = 43367, - [SMALL_STATE(2207)] = 43468, - [SMALL_STATE(2208)] = 43531, - [SMALL_STATE(2209)] = 43594, - [SMALL_STATE(2210)] = 43657, - [SMALL_STATE(2211)] = 43720, - [SMALL_STATE(2212)] = 43785, - [SMALL_STATE(2213)] = 43848, - [SMALL_STATE(2214)] = 43911, - [SMALL_STATE(2215)] = 43974, - [SMALL_STATE(2216)] = 44037, - [SMALL_STATE(2217)] = 44100, - [SMALL_STATE(2218)] = 44163, - [SMALL_STATE(2219)] = 44228, - [SMALL_STATE(2220)] = 44293, - [SMALL_STATE(2221)] = 44356, - [SMALL_STATE(2222)] = 44419, - [SMALL_STATE(2223)] = 44482, - [SMALL_STATE(2224)] = 44545, - [SMALL_STATE(2225)] = 44608, - [SMALL_STATE(2226)] = 44709, - [SMALL_STATE(2227)] = 44772, - [SMALL_STATE(2228)] = 44835, - [SMALL_STATE(2229)] = 44898, - [SMALL_STATE(2230)] = 44961, - [SMALL_STATE(2231)] = 45024, - [SMALL_STATE(2232)] = 45087, - [SMALL_STATE(2233)] = 45170, - [SMALL_STATE(2234)] = 45233, - [SMALL_STATE(2235)] = 45296, - [SMALL_STATE(2236)] = 45359, - [SMALL_STATE(2237)] = 45422, - [SMALL_STATE(2238)] = 45485, - [SMALL_STATE(2239)] = 45548, - [SMALL_STATE(2240)] = 45611, - [SMALL_STATE(2241)] = 45674, - [SMALL_STATE(2242)] = 45737, - [SMALL_STATE(2243)] = 45800, - [SMALL_STATE(2244)] = 45863, - [SMALL_STATE(2245)] = 45926, - [SMALL_STATE(2246)] = 45989, - [SMALL_STATE(2247)] = 46052, - [SMALL_STATE(2248)] = 46115, - [SMALL_STATE(2249)] = 46180, - [SMALL_STATE(2250)] = 46243, - [SMALL_STATE(2251)] = 46306, - [SMALL_STATE(2252)] = 46369, - [SMALL_STATE(2253)] = 46432, - [SMALL_STATE(2254)] = 46497, - [SMALL_STATE(2255)] = 46560, - [SMALL_STATE(2256)] = 46623, - [SMALL_STATE(2257)] = 46712, - [SMALL_STATE(2258)] = 46823, - [SMALL_STATE(2259)] = 46885, - [SMALL_STATE(2260)] = 46949, - [SMALL_STATE(2261)] = 47049, - [SMALL_STATE(2262)] = 47149, - [SMALL_STATE(2263)] = 47211, - [SMALL_STATE(2264)] = 47295, - [SMALL_STATE(2265)] = 47383, - [SMALL_STATE(2266)] = 47465, - [SMALL_STATE(2267)] = 47527, - [SMALL_STATE(2268)] = 47627, - [SMALL_STATE(2269)] = 47711, - [SMALL_STATE(2270)] = 47793, - [SMALL_STATE(2271)] = 47877, - [SMALL_STATE(2272)] = 47977, - [SMALL_STATE(2273)] = 48039, - [SMALL_STATE(2274)] = 48119, - [SMALL_STATE(2275)] = 48205, - [SMALL_STATE(2276)] = 48269, - [SMALL_STATE(2277)] = 48334, - [SMALL_STATE(2278)] = 48399, - [SMALL_STATE(2279)] = 48504, - [SMALL_STATE(2280)] = 48566, - [SMALL_STATE(2281)] = 48642, - [SMALL_STATE(2282)] = 48704, - [SMALL_STATE(2283)] = 48780, - [SMALL_STATE(2284)] = 48842, - [SMALL_STATE(2285)] = 48904, - [SMALL_STATE(2286)] = 48980, - [SMALL_STATE(2287)] = 49042, - [SMALL_STATE(2288)] = 49144, - [SMALL_STATE(2289)] = 49221, - [SMALL_STATE(2290)] = 49280, - [SMALL_STATE(2291)] = 49339, - [SMALL_STATE(2292)] = 49398, - [SMALL_STATE(2293)] = 49457, - [SMALL_STATE(2294)] = 49516, - [SMALL_STATE(2295)] = 49575, - [SMALL_STATE(2296)] = 49688, - [SMALL_STATE(2297)] = 49747, - [SMALL_STATE(2298)] = 49806, - [SMALL_STATE(2299)] = 49865, - [SMALL_STATE(2300)] = 49924, - [SMALL_STATE(2301)] = 49983, - [SMALL_STATE(2302)] = 50080, - [SMALL_STATE(2303)] = 50139, - [SMALL_STATE(2304)] = 50252, - [SMALL_STATE(2305)] = 50311, - [SMALL_STATE(2306)] = 50408, - [SMALL_STATE(2307)] = 50487, - [SMALL_STATE(2308)] = 50546, - [SMALL_STATE(2309)] = 50629, - [SMALL_STATE(2310)] = 50714, - [SMALL_STATE(2311)] = 50793, - [SMALL_STATE(2312)] = 50852, - [SMALL_STATE(2313)] = 50911, - [SMALL_STATE(2314)] = 50970, - [SMALL_STATE(2315)] = 51083, - [SMALL_STATE(2316)] = 51146, - [SMALL_STATE(2317)] = 51205, - [SMALL_STATE(2318)] = 51264, - [SMALL_STATE(2319)] = 51327, - [SMALL_STATE(2320)] = 51440, - [SMALL_STATE(2321)] = 51499, - [SMALL_STATE(2322)] = 51558, - [SMALL_STATE(2323)] = 51617, - [SMALL_STATE(2324)] = 51730, - [SMALL_STATE(2325)] = 51789, - [SMALL_STATE(2326)] = 51848, - [SMALL_STATE(2327)] = 51907, - [SMALL_STATE(2328)] = 51984, - [SMALL_STATE(2329)] = 52043, - [SMALL_STATE(2330)] = 52102, - [SMALL_STATE(2331)] = 52161, - [SMALL_STATE(2332)] = 52220, - [SMALL_STATE(2333)] = 52279, - [SMALL_STATE(2334)] = 52338, - [SMALL_STATE(2335)] = 52397, - [SMALL_STATE(2336)] = 52510, - [SMALL_STATE(2337)] = 52589, - [SMALL_STATE(2338)] = 52648, - [SMALL_STATE(2339)] = 52707, - [SMALL_STATE(2340)] = 52766, - [SMALL_STATE(2341)] = 52825, - [SMALL_STATE(2342)] = 52884, - [SMALL_STATE(2343)] = 52943, - [SMALL_STATE(2344)] = 53002, - [SMALL_STATE(2345)] = 53085, - [SMALL_STATE(2346)] = 53144, - [SMALL_STATE(2347)] = 53203, - [SMALL_STATE(2348)] = 53288, - [SMALL_STATE(2349)] = 53347, - [SMALL_STATE(2350)] = 53406, - [SMALL_STATE(2351)] = 53469, - [SMALL_STATE(2352)] = 53528, - [SMALL_STATE(2353)] = 53587, - [SMALL_STATE(2354)] = 53646, - [SMALL_STATE(2355)] = 53725, - [SMALL_STATE(2356)] = 53838, - [SMALL_STATE(2357)] = 53897, - [SMALL_STATE(2358)] = 53956, - [SMALL_STATE(2359)] = 54055, - [SMALL_STATE(2360)] = 54114, - [SMALL_STATE(2361)] = 54173, - [SMALL_STATE(2362)] = 54232, - [SMALL_STATE(2363)] = 54291, - [SMALL_STATE(2364)] = 54350, - [SMALL_STATE(2365)] = 54409, - [SMALL_STATE(2366)] = 54468, - [SMALL_STATE(2367)] = 54527, - [SMALL_STATE(2368)] = 54586, - [SMALL_STATE(2369)] = 54645, - [SMALL_STATE(2370)] = 54704, - [SMALL_STATE(2371)] = 54763, - [SMALL_STATE(2372)] = 54822, - [SMALL_STATE(2373)] = 54881, - [SMALL_STATE(2374)] = 54942, - [SMALL_STATE(2375)] = 55001, - [SMALL_STATE(2376)] = 55060, - [SMALL_STATE(2377)] = 55119, - [SMALL_STATE(2378)] = 55216, - [SMALL_STATE(2379)] = 55329, - [SMALL_STATE(2380)] = 55388, - [SMALL_STATE(2381)] = 55501, - [SMALL_STATE(2382)] = 55560, - [SMALL_STATE(2383)] = 55619, - [SMALL_STATE(2384)] = 55678, - [SMALL_STATE(2385)] = 55737, - [SMALL_STATE(2386)] = 55796, - [SMALL_STATE(2387)] = 55855, - [SMALL_STATE(2388)] = 55914, - [SMALL_STATE(2389)] = 56027, - [SMALL_STATE(2390)] = 56086, - [SMALL_STATE(2391)] = 56145, - [SMALL_STATE(2392)] = 56258, - [SMALL_STATE(2393)] = 56317, - [SMALL_STATE(2394)] = 56376, - [SMALL_STATE(2395)] = 56435, - [SMALL_STATE(2396)] = 56532, - [SMALL_STATE(2397)] = 56591, - [SMALL_STATE(2398)] = 56650, - [SMALL_STATE(2399)] = 56709, - [SMALL_STATE(2400)] = 56768, - [SMALL_STATE(2401)] = 56827, - [SMALL_STATE(2402)] = 56886, - [SMALL_STATE(2403)] = 56947, - [SMALL_STATE(2404)] = 57008, - [SMALL_STATE(2405)] = 57067, - [SMALL_STATE(2406)] = 57180, - [SMALL_STATE(2407)] = 57239, - [SMALL_STATE(2408)] = 57298, - [SMALL_STATE(2409)] = 57411, - [SMALL_STATE(2410)] = 57470, - [SMALL_STATE(2411)] = 57529, - [SMALL_STATE(2412)] = 57626, - [SMALL_STATE(2413)] = 57685, - [SMALL_STATE(2414)] = 57744, - [SMALL_STATE(2415)] = 57803, - [SMALL_STATE(2416)] = 57862, - [SMALL_STATE(2417)] = 57959, - [SMALL_STATE(2418)] = 58019, - [SMALL_STATE(2419)] = 58115, - [SMALL_STATE(2420)] = 58175, - [SMALL_STATE(2421)] = 58273, - [SMALL_STATE(2422)] = 58367, - [SMALL_STATE(2423)] = 58461, - [SMALL_STATE(2424)] = 58569, - [SMALL_STATE(2425)] = 58665, - [SMALL_STATE(2426)] = 58761, - [SMALL_STATE(2427)] = 58845, - [SMALL_STATE(2428)] = 58941, - [SMALL_STATE(2429)] = 59035, - [SMALL_STATE(2430)] = 59095, - [SMALL_STATE(2431)] = 59183, - [SMALL_STATE(2432)] = 59243, - [SMALL_STATE(2433)] = 59337, - [SMALL_STATE(2434)] = 59397, - [SMALL_STATE(2435)] = 59505, - [SMALL_STATE(2436)] = 59593, - [SMALL_STATE(2437)] = 59653, - [SMALL_STATE(2438)] = 59749, - [SMALL_STATE(2439)] = 59811, - [SMALL_STATE(2440)] = 59917, - [SMALL_STATE(2441)] = 60023, - [SMALL_STATE(2442)] = 60083, - [SMALL_STATE(2443)] = 60143, - [SMALL_STATE(2444)] = 60223, - [SMALL_STATE(2445)] = 60303, - [SMALL_STATE(2446)] = 60387, - [SMALL_STATE(2447)] = 60475, - [SMALL_STATE(2448)] = 60535, - [SMALL_STATE(2449)] = 60627, - [SMALL_STATE(2450)] = 60721, - [SMALL_STATE(2451)] = 60801, - [SMALL_STATE(2452)] = 60889, - [SMALL_STATE(2453)] = 60946, - [SMALL_STATE(2454)] = 61003, - [SMALL_STATE(2455)] = 61064, - [SMALL_STATE(2456)] = 61125, - [SMALL_STATE(2457)] = 61210, - [SMALL_STATE(2458)] = 61299, - [SMALL_STATE(2459)] = 61358, - [SMALL_STATE(2460)] = 61465, - [SMALL_STATE(2461)] = 61546, - [SMALL_STATE(2462)] = 61605, - [SMALL_STATE(2463)] = 61662, - [SMALL_STATE(2464)] = 61719, - [SMALL_STATE(2465)] = 61776, - [SMALL_STATE(2466)] = 61833, - [SMALL_STATE(2467)] = 61890, - [SMALL_STATE(2468)] = 61947, - [SMALL_STATE(2469)] = 62004, - [SMALL_STATE(2470)] = 62061, - [SMALL_STATE(2471)] = 62118, - [SMALL_STATE(2472)] = 62175, - [SMALL_STATE(2473)] = 62232, - [SMALL_STATE(2474)] = 62289, - [SMALL_STATE(2475)] = 62396, - [SMALL_STATE(2476)] = 62453, - [SMALL_STATE(2477)] = 62510, - [SMALL_STATE(2478)] = 62567, - [SMALL_STATE(2479)] = 62624, - [SMALL_STATE(2480)] = 62681, - [SMALL_STATE(2481)] = 62738, - [SMALL_STATE(2482)] = 62795, - [SMALL_STATE(2483)] = 62852, - [SMALL_STATE(2484)] = 62909, - [SMALL_STATE(2485)] = 62966, - [SMALL_STATE(2486)] = 63023, - [SMALL_STATE(2487)] = 63080, - [SMALL_STATE(2488)] = 63137, - [SMALL_STATE(2489)] = 63240, - [SMALL_STATE(2490)] = 63297, - [SMALL_STATE(2491)] = 63354, - [SMALL_STATE(2492)] = 63457, - [SMALL_STATE(2493)] = 63514, - [SMALL_STATE(2494)] = 63621, - [SMALL_STATE(2495)] = 63706, - [SMALL_STATE(2496)] = 63763, - [SMALL_STATE(2497)] = 63820, - [SMALL_STATE(2498)] = 63877, - [SMALL_STATE(2499)] = 63934, - [SMALL_STATE(2500)] = 64015, - [SMALL_STATE(2501)] = 64072, - [SMALL_STATE(2502)] = 64129, - [SMALL_STATE(2503)] = 64186, - [SMALL_STATE(2504)] = 64243, - [SMALL_STATE(2505)] = 64300, - [SMALL_STATE(2506)] = 64357, - [SMALL_STATE(2507)] = 64414, - [SMALL_STATE(2508)] = 64471, - [SMALL_STATE(2509)] = 64528, - [SMALL_STATE(2510)] = 64585, - [SMALL_STATE(2511)] = 64670, - [SMALL_STATE(2512)] = 64727, - [SMALL_STATE(2513)] = 64784, - [SMALL_STATE(2514)] = 64845, - [SMALL_STATE(2515)] = 64904, - [SMALL_STATE(2516)] = 64995, - [SMALL_STATE(2517)] = 65082, - [SMALL_STATE(2518)] = 65139, - [SMALL_STATE(2519)] = 65196, - [SMALL_STATE(2520)] = 65291, - [SMALL_STATE(2521)] = 65348, - [SMALL_STATE(2522)] = 65405, - [SMALL_STATE(2523)] = 65498, - [SMALL_STATE(2524)] = 65555, - [SMALL_STATE(2525)] = 65612, - [SMALL_STATE(2526)] = 65669, - [SMALL_STATE(2527)] = 65726, - [SMALL_STATE(2528)] = 65783, - [SMALL_STATE(2529)] = 65870, - [SMALL_STATE(2530)] = 65953, - [SMALL_STATE(2531)] = 66010, - [SMALL_STATE(2532)] = 66069, - [SMALL_STATE(2533)] = 66158, - [SMALL_STATE(2534)] = 66215, - [SMALL_STATE(2535)] = 66272, - [SMALL_STATE(2536)] = 66329, - [SMALL_STATE(2537)] = 66386, - [SMALL_STATE(2538)] = 66477, - [SMALL_STATE(2539)] = 66534, - [SMALL_STATE(2540)] = 66591, - [SMALL_STATE(2541)] = 66650, - [SMALL_STATE(2542)] = 66707, - [SMALL_STATE(2543)] = 66764, - [SMALL_STATE(2544)] = 66821, - [SMALL_STATE(2545)] = 66878, - [SMALL_STATE(2546)] = 66935, - [SMALL_STATE(2547)] = 67038, - [SMALL_STATE(2548)] = 67095, - [SMALL_STATE(2549)] = 67152, - [SMALL_STATE(2550)] = 67209, - [SMALL_STATE(2551)] = 67266, - [SMALL_STATE(2552)] = 67323, - [SMALL_STATE(2553)] = 67380, - [SMALL_STATE(2554)] = 67437, - [SMALL_STATE(2555)] = 67494, - [SMALL_STATE(2556)] = 67551, - [SMALL_STATE(2557)] = 67654, - [SMALL_STATE(2558)] = 67711, - [SMALL_STATE(2559)] = 67814, - [SMALL_STATE(2560)] = 67871, - [SMALL_STATE(2561)] = 67928, - [SMALL_STATE(2562)] = 67985, - [SMALL_STATE(2563)] = 68042, - [SMALL_STATE(2564)] = 68099, - [SMALL_STATE(2565)] = 68156, - [SMALL_STATE(2566)] = 68213, - [SMALL_STATE(2567)] = 68270, - [SMALL_STATE(2568)] = 68327, - [SMALL_STATE(2569)] = 68384, - [SMALL_STATE(2570)] = 68441, - [SMALL_STATE(2571)] = 68498, - [SMALL_STATE(2572)] = 68607, - [SMALL_STATE(2573)] = 68664, - [SMALL_STATE(2574)] = 68721, - [SMALL_STATE(2575)] = 68780, - [SMALL_STATE(2576)] = 68887, - [SMALL_STATE(2577)] = 68944, - [SMALL_STATE(2578)] = 69029, - [SMALL_STATE(2579)] = 69086, - [SMALL_STATE(2580)] = 69190, - [SMALL_STATE(2581)] = 69296, - [SMALL_STATE(2582)] = 69400, - [SMALL_STATE(2583)] = 69504, - [SMALL_STATE(2584)] = 69610, - [SMALL_STATE(2585)] = 69716, - [SMALL_STATE(2586)] = 69776, - [SMALL_STATE(2587)] = 69880, - [SMALL_STATE(2588)] = 69986, - [SMALL_STATE(2589)] = 70092, - [SMALL_STATE(2590)] = 70198, - [SMALL_STATE(2591)] = 70260, - [SMALL_STATE(2592)] = 70362, - [SMALL_STATE(2593)] = 70466, - [SMALL_STATE(2594)] = 70570, - [SMALL_STATE(2595)] = 70676, - [SMALL_STATE(2596)] = 70782, - [SMALL_STATE(2597)] = 70838, - [SMALL_STATE(2598)] = 70944, - [SMALL_STATE(2599)] = 71048, - [SMALL_STATE(2600)] = 71152, - [SMALL_STATE(2601)] = 71210, - [SMALL_STATE(2602)] = 71314, - [SMALL_STATE(2603)] = 71416, - [SMALL_STATE(2604)] = 71522, - [SMALL_STATE(2605)] = 71628, - [SMALL_STATE(2606)] = 71684, - [SMALL_STATE(2607)] = 71788, - [SMALL_STATE(2608)] = 71894, - [SMALL_STATE(2609)] = 71998, - [SMALL_STATE(2610)] = 72100, - [SMALL_STATE(2611)] = 72202, - [SMALL_STATE(2612)] = 72260, - [SMALL_STATE(2613)] = 72362, - [SMALL_STATE(2614)] = 72466, - [SMALL_STATE(2615)] = 72528, - [SMALL_STATE(2616)] = 72632, - [SMALL_STATE(2617)] = 72736, - [SMALL_STATE(2618)] = 72792, - [SMALL_STATE(2619)] = 72898, - [SMALL_STATE(2620)] = 72956, - [SMALL_STATE(2621)] = 73011, - [SMALL_STATE(2622)] = 73112, - [SMALL_STATE(2623)] = 73167, - [SMALL_STATE(2624)] = 73222, - [SMALL_STATE(2625)] = 73323, - [SMALL_STATE(2626)] = 73424, - [SMALL_STATE(2627)] = 73479, - [SMALL_STATE(2628)] = 73534, - [SMALL_STATE(2629)] = 73635, - [SMALL_STATE(2630)] = 73718, - [SMALL_STATE(2631)] = 73773, - [SMALL_STATE(2632)] = 73828, - [SMALL_STATE(2633)] = 73883, - [SMALL_STATE(2634)] = 73938, - [SMALL_STATE(2635)] = 73993, - [SMALL_STATE(2636)] = 74080, - [SMALL_STATE(2637)] = 74163, - [SMALL_STATE(2638)] = 74242, - [SMALL_STATE(2639)] = 74343, - [SMALL_STATE(2640)] = 74444, - [SMALL_STATE(2641)] = 74499, - [SMALL_STATE(2642)] = 74600, - [SMALL_STATE(2643)] = 74655, - [SMALL_STATE(2644)] = 74712, - [SMALL_STATE(2645)] = 74767, - [SMALL_STATE(2646)] = 74868, - [SMALL_STATE(2647)] = 74923, - [SMALL_STATE(2648)] = 75024, - [SMALL_STATE(2649)] = 75079, - [SMALL_STATE(2650)] = 75134, - [SMALL_STATE(2651)] = 75189, - [SMALL_STATE(2652)] = 75244, - [SMALL_STATE(2653)] = 75299, - [SMALL_STATE(2654)] = 75354, - [SMALL_STATE(2655)] = 75409, - [SMALL_STATE(2656)] = 75464, - [SMALL_STATE(2657)] = 75519, - [SMALL_STATE(2658)] = 75574, - [SMALL_STATE(2659)] = 75675, - [SMALL_STATE(2660)] = 75730, - [SMALL_STATE(2661)] = 75785, - [SMALL_STATE(2662)] = 75840, - [SMALL_STATE(2663)] = 75895, - [SMALL_STATE(2664)] = 75950, - [SMALL_STATE(2665)] = 76005, - [SMALL_STATE(2666)] = 76060, - [SMALL_STATE(2667)] = 76115, - [SMALL_STATE(2668)] = 76170, - [SMALL_STATE(2669)] = 76225, - [SMALL_STATE(2670)] = 76280, - [SMALL_STATE(2671)] = 76381, - [SMALL_STATE(2672)] = 76436, - [SMALL_STATE(2673)] = 76537, - [SMALL_STATE(2674)] = 76592, - [SMALL_STATE(2675)] = 76647, - [SMALL_STATE(2676)] = 76702, - [SMALL_STATE(2677)] = 76789, - [SMALL_STATE(2678)] = 76844, - [SMALL_STATE(2679)] = 76899, - [SMALL_STATE(2680)] = 76954, - [SMALL_STATE(2681)] = 77009, - [SMALL_STATE(2682)] = 77064, - [SMALL_STATE(2683)] = 77119, - [SMALL_STATE(2684)] = 77174, - [SMALL_STATE(2685)] = 77229, - [SMALL_STATE(2686)] = 77284, - [SMALL_STATE(2687)] = 77339, - [SMALL_STATE(2688)] = 77396, - [SMALL_STATE(2689)] = 77485, - [SMALL_STATE(2690)] = 77586, - [SMALL_STATE(2691)] = 77687, - [SMALL_STATE(2692)] = 77744, - [SMALL_STATE(2693)] = 77799, - [SMALL_STATE(2694)] = 77854, - [SMALL_STATE(2695)] = 77909, - [SMALL_STATE(2696)] = 78010, - [SMALL_STATE(2697)] = 78089, - [SMALL_STATE(2698)] = 78148, - [SMALL_STATE(2699)] = 78203, - [SMALL_STATE(2700)] = 78292, - [SMALL_STATE(2701)] = 78347, - [SMALL_STATE(2702)] = 78448, - [SMALL_STATE(2703)] = 78549, - [SMALL_STATE(2704)] = 78604, - [SMALL_STATE(2705)] = 78705, - [SMALL_STATE(2706)] = 78764, - [SMALL_STATE(2707)] = 78819, - [SMALL_STATE(2708)] = 78874, - [SMALL_STATE(2709)] = 78929, - [SMALL_STATE(2710)] = 78984, - [SMALL_STATE(2711)] = 79039, - [SMALL_STATE(2712)] = 79140, - [SMALL_STATE(2713)] = 79195, - [SMALL_STATE(2714)] = 79250, - [SMALL_STATE(2715)] = 79351, - [SMALL_STATE(2716)] = 79406, - [SMALL_STATE(2717)] = 79461, - [SMALL_STATE(2718)] = 79516, - [SMALL_STATE(2719)] = 79571, - [SMALL_STATE(2720)] = 79626, - [SMALL_STATE(2721)] = 79709, - [SMALL_STATE(2722)] = 79764, - [SMALL_STATE(2723)] = 79865, - [SMALL_STATE(2724)] = 79920, - [SMALL_STATE(2725)] = 80021, - [SMALL_STATE(2726)] = 80076, - [SMALL_STATE(2727)] = 80177, - [SMALL_STATE(2728)] = 80278, - [SMALL_STATE(2729)] = 80333, - [SMALL_STATE(2730)] = 80388, - [SMALL_STATE(2731)] = 80443, - [SMALL_STATE(2732)] = 80498, - [SMALL_STATE(2733)] = 80553, - [SMALL_STATE(2734)] = 80608, - [SMALL_STATE(2735)] = 80663, - [SMALL_STATE(2736)] = 80718, - [SMALL_STATE(2737)] = 80773, - [SMALL_STATE(2738)] = 80828, - [SMALL_STATE(2739)] = 80883, - [SMALL_STATE(2740)] = 80938, - [SMALL_STATE(2741)] = 80993, - [SMALL_STATE(2742)] = 81048, - [SMALL_STATE(2743)] = 81103, - [SMALL_STATE(2744)] = 81204, - [SMALL_STATE(2745)] = 81261, - [SMALL_STATE(2746)] = 81362, - [SMALL_STATE(2747)] = 81463, - [SMALL_STATE(2748)] = 81518, - [SMALL_STATE(2749)] = 81575, - [SMALL_STATE(2750)] = 81676, - [SMALL_STATE(2751)] = 81777, - [SMALL_STATE(2752)] = 81832, - [SMALL_STATE(2753)] = 81933, - [SMALL_STATE(2754)] = 81990, - [SMALL_STATE(2755)] = 82045, - [SMALL_STATE(2756)] = 82100, - [SMALL_STATE(2757)] = 82201, - [SMALL_STATE(2758)] = 82302, - [SMALL_STATE(2759)] = 82359, - [SMALL_STATE(2760)] = 82414, - [SMALL_STATE(2761)] = 82515, - [SMALL_STATE(2762)] = 82616, - [SMALL_STATE(2763)] = 82717, - [SMALL_STATE(2764)] = 82772, - [SMALL_STATE(2765)] = 82829, - [SMALL_STATE(2766)] = 82930, - [SMALL_STATE(2767)] = 83031, - [SMALL_STATE(2768)] = 83086, - [SMALL_STATE(2769)] = 83187, - [SMALL_STATE(2770)] = 83288, - [SMALL_STATE(2771)] = 83389, - [SMALL_STATE(2772)] = 83444, - [SMALL_STATE(2773)] = 83545, - [SMALL_STATE(2774)] = 83646, - [SMALL_STATE(2775)] = 83747, - [SMALL_STATE(2776)] = 83848, - [SMALL_STATE(2777)] = 83949, - [SMALL_STATE(2778)] = 84032, - [SMALL_STATE(2779)] = 84133, - [SMALL_STATE(2780)] = 84234, - [SMALL_STATE(2781)] = 84291, - [SMALL_STATE(2782)] = 84392, - [SMALL_STATE(2783)] = 84493, - [SMALL_STATE(2784)] = 84594, - [SMALL_STATE(2785)] = 84651, - [SMALL_STATE(2786)] = 84708, - [SMALL_STATE(2787)] = 84809, - [SMALL_STATE(2788)] = 84910, - [SMALL_STATE(2789)] = 85011, - [SMALL_STATE(2790)] = 85112, - [SMALL_STATE(2791)] = 85213, - [SMALL_STATE(2792)] = 85314, - [SMALL_STATE(2793)] = 85371, - [SMALL_STATE(2794)] = 85472, - [SMALL_STATE(2795)] = 85573, - [SMALL_STATE(2796)] = 85674, - [SMALL_STATE(2797)] = 85775, - [SMALL_STATE(2798)] = 85876, - [SMALL_STATE(2799)] = 85977, - [SMALL_STATE(2800)] = 86036, - [SMALL_STATE(2801)] = 86093, - [SMALL_STATE(2802)] = 86194, - [SMALL_STATE(2803)] = 86295, - [SMALL_STATE(2804)] = 86396, - [SMALL_STATE(2805)] = 86455, - [SMALL_STATE(2806)] = 86556, - [SMALL_STATE(2807)] = 86612, - [SMALL_STATE(2808)] = 86710, - [SMALL_STATE(2809)] = 86808, - [SMALL_STATE(2810)] = 86904, - [SMALL_STATE(2811)] = 87002, - [SMALL_STATE(2812)] = 87100, - [SMALL_STATE(2813)] = 87160, - [SMALL_STATE(2814)] = 87258, - [SMALL_STATE(2815)] = 87312, - [SMALL_STATE(2816)] = 87368, - [SMALL_STATE(2817)] = 87466, - [SMALL_STATE(2818)] = 87560, - [SMALL_STATE(2819)] = 87658, - [SMALL_STATE(2820)] = 87754, - [SMALL_STATE(2821)] = 87852, - [SMALL_STATE(2822)] = 87950, - [SMALL_STATE(2823)] = 88048, - [SMALL_STATE(2824)] = 88142, - [SMALL_STATE(2825)] = 88240, - [SMALL_STATE(2826)] = 88338, - [SMALL_STATE(2827)] = 88394, - [SMALL_STATE(2828)] = 88454, - [SMALL_STATE(2829)] = 88552, - [SMALL_STATE(2830)] = 88650, - [SMALL_STATE(2831)] = 88748, - [SMALL_STATE(2832)] = 88846, - [SMALL_STATE(2833)] = 88944, - [SMALL_STATE(2834)] = 88997, - [SMALL_STATE(2835)] = 89050, - [SMALL_STATE(2836)] = 89103, - [SMALL_STATE(2837)] = 89156, - [SMALL_STATE(2838)] = 89245, - [SMALL_STATE(2839)] = 89300, - [SMALL_STATE(2840)] = 89355, - [SMALL_STATE(2841)] = 89410, - [SMALL_STATE(2842)] = 89465, - [SMALL_STATE(2843)] = 89518, - [SMALL_STATE(2844)] = 89573, - [SMALL_STATE(2845)] = 89626, - [SMALL_STATE(2846)] = 89679, - [SMALL_STATE(2847)] = 89734, - [SMALL_STATE(2848)] = 89787, - [SMALL_STATE(2849)] = 89876, - [SMALL_STATE(2850)] = 89929, - [SMALL_STATE(2851)] = 89982, - [SMALL_STATE(2852)] = 90037, - [SMALL_STATE(2853)] = 90090, - [SMALL_STATE(2854)] = 90145, - [SMALL_STATE(2855)] = 90198, - [SMALL_STATE(2856)] = 90251, - [SMALL_STATE(2857)] = 90340, - [SMALL_STATE(2858)] = 90393, - [SMALL_STATE(2859)] = 90446, - [SMALL_STATE(2860)] = 90535, - [SMALL_STATE(2861)] = 90588, - [SMALL_STATE(2862)] = 90647, - [SMALL_STATE(2863)] = 90736, - [SMALL_STATE(2864)] = 90789, - [SMALL_STATE(2865)] = 90844, - [SMALL_STATE(2866)] = 90897, - [SMALL_STATE(2867)] = 90952, - [SMALL_STATE(2868)] = 91005, - [SMALL_STATE(2869)] = 91058, - [SMALL_STATE(2870)] = 91111, - [SMALL_STATE(2871)] = 91200, - [SMALL_STATE(2872)] = 91255, - [SMALL_STATE(2873)] = 91308, - [SMALL_STATE(2874)] = 91361, - [SMALL_STATE(2875)] = 91414, - [SMALL_STATE(2876)] = 91467, - [SMALL_STATE(2877)] = 91520, - [SMALL_STATE(2878)] = 91573, - [SMALL_STATE(2879)] = 91668, - [SMALL_STATE(2880)] = 91723, - [SMALL_STATE(2881)] = 91778, - [SMALL_STATE(2882)] = 91831, - [SMALL_STATE(2883)] = 91884, - [SMALL_STATE(2884)] = 91939, - [SMALL_STATE(2885)] = 91995, - [SMALL_STATE(2886)] = 92049, - [SMALL_STATE(2887)] = 92103, - [SMALL_STATE(2888)] = 92159, - [SMALL_STATE(2889)] = 92213, - [SMALL_STATE(2890)] = 92267, - [SMALL_STATE(2891)] = 92323, - [SMALL_STATE(2892)] = 92377, - [SMALL_STATE(2893)] = 92431, - [SMALL_STATE(2894)] = 92487, - [SMALL_STATE(2895)] = 92541, - [SMALL_STATE(2896)] = 92595, - [SMALL_STATE(2897)] = 92651, - [SMALL_STATE(2898)] = 92705, - [SMALL_STATE(2899)] = 92759, - [SMALL_STATE(2900)] = 92813, - [SMALL_STATE(2901)] = 92867, - [SMALL_STATE(2902)] = 92921, - [SMALL_STATE(2903)] = 92975, - [SMALL_STATE(2904)] = 93029, - [SMALL_STATE(2905)] = 93085, - [SMALL_STATE(2906)] = 93141, - [SMALL_STATE(2907)] = 93197, - [SMALL_STATE(2908)] = 93251, - [SMALL_STATE(2909)] = 93305, - [SMALL_STATE(2910)] = 93361, - [SMALL_STATE(2911)] = 93415, - [SMALL_STATE(2912)] = 93469, - [SMALL_STATE(2913)] = 93523, - [SMALL_STATE(2914)] = 93577, - [SMALL_STATE(2915)] = 93631, - [SMALL_STATE(2916)] = 93687, - [SMALL_STATE(2917)] = 93743, - [SMALL_STATE(2918)] = 93799, - [SMALL_STATE(2919)] = 93855, - [SMALL_STATE(2920)] = 93911, - [SMALL_STATE(2921)] = 93967, - [SMALL_STATE(2922)] = 94021, - [SMALL_STATE(2923)] = 94077, - [SMALL_STATE(2924)] = 94131, - [SMALL_STATE(2925)] = 94185, - [SMALL_STATE(2926)] = 94241, - [SMALL_STATE(2927)] = 94295, - [SMALL_STATE(2928)] = 94349, - [SMALL_STATE(2929)] = 94403, - [SMALL_STATE(2930)] = 94459, - [SMALL_STATE(2931)] = 94513, - [SMALL_STATE(2932)] = 94569, - [SMALL_STATE(2933)] = 94623, - [SMALL_STATE(2934)] = 94677, - [SMALL_STATE(2935)] = 94731, - [SMALL_STATE(2936)] = 94785, - [SMALL_STATE(2937)] = 94841, - [SMALL_STATE(2938)] = 94895, - [SMALL_STATE(2939)] = 94949, - [SMALL_STATE(2940)] = 95005, - [SMALL_STATE(2941)] = 95059, - [SMALL_STATE(2942)] = 95113, - [SMALL_STATE(2943)] = 95169, - [SMALL_STATE(2944)] = 95223, - [SMALL_STATE(2945)] = 95279, - [SMALL_STATE(2946)] = 95333, - [SMALL_STATE(2947)] = 95389, - [SMALL_STATE(2948)] = 95443, - [SMALL_STATE(2949)] = 95499, - [SMALL_STATE(2950)] = 95553, - [SMALL_STATE(2951)] = 95607, - [SMALL_STATE(2952)] = 95661, - [SMALL_STATE(2953)] = 95715, - [SMALL_STATE(2954)] = 95771, - [SMALL_STATE(2955)] = 95825, - [SMALL_STATE(2956)] = 95879, - [SMALL_STATE(2957)] = 95935, - [SMALL_STATE(2958)] = 95989, - [SMALL_STATE(2959)] = 96045, - [SMALL_STATE(2960)] = 96099, - [SMALL_STATE(2961)] = 96188, - [SMALL_STATE(2962)] = 96277, - [SMALL_STATE(2963)] = 96363, - [SMALL_STATE(2964)] = 96449, - [SMALL_STATE(2965)] = 96535, - [SMALL_STATE(2966)] = 96621, - [SMALL_STATE(2967)] = 96707, - [SMALL_STATE(2968)] = 96793, - [SMALL_STATE(2969)] = 96879, - [SMALL_STATE(2970)] = 96965, - [SMALL_STATE(2971)] = 97051, - [SMALL_STATE(2972)] = 97137, - [SMALL_STATE(2973)] = 97223, - [SMALL_STATE(2974)] = 97309, - [SMALL_STATE(2975)] = 97395, - [SMALL_STATE(2976)] = 97481, - [SMALL_STATE(2977)] = 97567, - [SMALL_STATE(2978)] = 97653, - [SMALL_STATE(2979)] = 97739, - [SMALL_STATE(2980)] = 97825, - [SMALL_STATE(2981)] = 97911, - [SMALL_STATE(2982)] = 97997, - [SMALL_STATE(2983)] = 98083, - [SMALL_STATE(2984)] = 98169, - [SMALL_STATE(2985)] = 98229, - [SMALL_STATE(2986)] = 98315, - [SMALL_STATE(2987)] = 98401, - [SMALL_STATE(2988)] = 98487, - [SMALL_STATE(2989)] = 98573, - [SMALL_STATE(2990)] = 98659, - [SMALL_STATE(2991)] = 98745, - [SMALL_STATE(2992)] = 98831, - [SMALL_STATE(2993)] = 98917, - [SMALL_STATE(2994)] = 99003, - [SMALL_STATE(2995)] = 99089, - [SMALL_STATE(2996)] = 99175, - [SMALL_STATE(2997)] = 99261, - [SMALL_STATE(2998)] = 99347, - [SMALL_STATE(2999)] = 99433, - [SMALL_STATE(3000)] = 99519, - [SMALL_STATE(3001)] = 99602, - [SMALL_STATE(3002)] = 99685, - [SMALL_STATE(3003)] = 99768, - [SMALL_STATE(3004)] = 99851, - [SMALL_STATE(3005)] = 99934, - [SMALL_STATE(3006)] = 100017, - [SMALL_STATE(3007)] = 100100, - [SMALL_STATE(3008)] = 100183, - [SMALL_STATE(3009)] = 100266, - [SMALL_STATE(3010)] = 100349, - [SMALL_STATE(3011)] = 100432, - [SMALL_STATE(3012)] = 100515, - [SMALL_STATE(3013)] = 100598, - [SMALL_STATE(3014)] = 100681, - [SMALL_STATE(3015)] = 100764, - [SMALL_STATE(3016)] = 100847, - [SMALL_STATE(3017)] = 100930, - [SMALL_STATE(3018)] = 101013, - [SMALL_STATE(3019)] = 101096, - [SMALL_STATE(3020)] = 101179, - [SMALL_STATE(3021)] = 101262, - [SMALL_STATE(3022)] = 101345, - [SMALL_STATE(3023)] = 101428, - [SMALL_STATE(3024)] = 101511, - [SMALL_STATE(3025)] = 101594, - [SMALL_STATE(3026)] = 101677, - [SMALL_STATE(3027)] = 101760, - [SMALL_STATE(3028)] = 101843, - [SMALL_STATE(3029)] = 101926, - [SMALL_STATE(3030)] = 102009, - [SMALL_STATE(3031)] = 102092, - [SMALL_STATE(3032)] = 102175, - [SMALL_STATE(3033)] = 102258, - [SMALL_STATE(3034)] = 102341, - [SMALL_STATE(3035)] = 102424, - [SMALL_STATE(3036)] = 102507, - [SMALL_STATE(3037)] = 102590, - [SMALL_STATE(3038)] = 102673, - [SMALL_STATE(3039)] = 102756, - [SMALL_STATE(3040)] = 102839, - [SMALL_STATE(3041)] = 102922, - [SMALL_STATE(3042)] = 103005, - [SMALL_STATE(3043)] = 103088, - [SMALL_STATE(3044)] = 103171, - [SMALL_STATE(3045)] = 103254, - [SMALL_STATE(3046)] = 103337, - [SMALL_STATE(3047)] = 103420, - [SMALL_STATE(3048)] = 103503, - [SMALL_STATE(3049)] = 103586, - [SMALL_STATE(3050)] = 103669, - [SMALL_STATE(3051)] = 103752, - [SMALL_STATE(3052)] = 103835, - [SMALL_STATE(3053)] = 103918, - [SMALL_STATE(3054)] = 104001, - [SMALL_STATE(3055)] = 104084, - [SMALL_STATE(3056)] = 104167, - [SMALL_STATE(3057)] = 104250, - [SMALL_STATE(3058)] = 104333, - [SMALL_STATE(3059)] = 104416, - [SMALL_STATE(3060)] = 104499, - [SMALL_STATE(3061)] = 104582, - [SMALL_STATE(3062)] = 104665, - [SMALL_STATE(3063)] = 104748, - [SMALL_STATE(3064)] = 104831, - [SMALL_STATE(3065)] = 104914, - [SMALL_STATE(3066)] = 104997, - [SMALL_STATE(3067)] = 105080, - [SMALL_STATE(3068)] = 105163, - [SMALL_STATE(3069)] = 105246, - [SMALL_STATE(3070)] = 105329, - [SMALL_STATE(3071)] = 105412, - [SMALL_STATE(3072)] = 105495, - [SMALL_STATE(3073)] = 105578, - [SMALL_STATE(3074)] = 105661, - [SMALL_STATE(3075)] = 105744, - [SMALL_STATE(3076)] = 105827, - [SMALL_STATE(3077)] = 105910, - [SMALL_STATE(3078)] = 105993, - [SMALL_STATE(3079)] = 106076, - [SMALL_STATE(3080)] = 106159, - [SMALL_STATE(3081)] = 106242, - [SMALL_STATE(3082)] = 106325, - [SMALL_STATE(3083)] = 106408, - [SMALL_STATE(3084)] = 106491, - [SMALL_STATE(3085)] = 106574, - [SMALL_STATE(3086)] = 106657, - [SMALL_STATE(3087)] = 106740, - [SMALL_STATE(3088)] = 106823, - [SMALL_STATE(3089)] = 106906, - [SMALL_STATE(3090)] = 106989, - [SMALL_STATE(3091)] = 107072, - [SMALL_STATE(3092)] = 107155, - [SMALL_STATE(3093)] = 107238, - [SMALL_STATE(3094)] = 107321, - [SMALL_STATE(3095)] = 107404, - [SMALL_STATE(3096)] = 107487, - [SMALL_STATE(3097)] = 107570, - [SMALL_STATE(3098)] = 107653, - [SMALL_STATE(3099)] = 107736, - [SMALL_STATE(3100)] = 107819, - [SMALL_STATE(3101)] = 107902, - [SMALL_STATE(3102)] = 107985, - [SMALL_STATE(3103)] = 108068, - [SMALL_STATE(3104)] = 108151, - [SMALL_STATE(3105)] = 108234, - [SMALL_STATE(3106)] = 108317, - [SMALL_STATE(3107)] = 108400, - [SMALL_STATE(3108)] = 108483, - [SMALL_STATE(3109)] = 108566, - [SMALL_STATE(3110)] = 108649, - [SMALL_STATE(3111)] = 108732, - [SMALL_STATE(3112)] = 108815, - [SMALL_STATE(3113)] = 108898, - [SMALL_STATE(3114)] = 108981, - [SMALL_STATE(3115)] = 109064, - [SMALL_STATE(3116)] = 109147, - [SMALL_STATE(3117)] = 109230, - [SMALL_STATE(3118)] = 109313, - [SMALL_STATE(3119)] = 109396, - [SMALL_STATE(3120)] = 109479, - [SMALL_STATE(3121)] = 109562, - [SMALL_STATE(3122)] = 109645, - [SMALL_STATE(3123)] = 109728, - [SMALL_STATE(3124)] = 109811, - [SMALL_STATE(3125)] = 109894, - [SMALL_STATE(3126)] = 109977, - [SMALL_STATE(3127)] = 110060, - [SMALL_STATE(3128)] = 110143, - [SMALL_STATE(3129)] = 110226, - [SMALL_STATE(3130)] = 110309, - [SMALL_STATE(3131)] = 110392, - [SMALL_STATE(3132)] = 110475, - [SMALL_STATE(3133)] = 110558, - [SMALL_STATE(3134)] = 110641, - [SMALL_STATE(3135)] = 110724, - [SMALL_STATE(3136)] = 110807, - [SMALL_STATE(3137)] = 110890, - [SMALL_STATE(3138)] = 110973, - [SMALL_STATE(3139)] = 111056, - [SMALL_STATE(3140)] = 111139, - [SMALL_STATE(3141)] = 111222, - [SMALL_STATE(3142)] = 111305, - [SMALL_STATE(3143)] = 111388, - [SMALL_STATE(3144)] = 111471, - [SMALL_STATE(3145)] = 111554, - [SMALL_STATE(3146)] = 111637, - [SMALL_STATE(3147)] = 111720, - [SMALL_STATE(3148)] = 111803, - [SMALL_STATE(3149)] = 111886, - [SMALL_STATE(3150)] = 111969, - [SMALL_STATE(3151)] = 112052, - [SMALL_STATE(3152)] = 112135, - [SMALL_STATE(3153)] = 112218, - [SMALL_STATE(3154)] = 112301, - [SMALL_STATE(3155)] = 112384, - [SMALL_STATE(3156)] = 112467, - [SMALL_STATE(3157)] = 112550, - [SMALL_STATE(3158)] = 112633, - [SMALL_STATE(3159)] = 112716, - [SMALL_STATE(3160)] = 112799, - [SMALL_STATE(3161)] = 112882, - [SMALL_STATE(3162)] = 112965, - [SMALL_STATE(3163)] = 113048, - [SMALL_STATE(3164)] = 113131, - [SMALL_STATE(3165)] = 113214, - [SMALL_STATE(3166)] = 113297, - [SMALL_STATE(3167)] = 113380, - [SMALL_STATE(3168)] = 113463, - [SMALL_STATE(3169)] = 113546, - [SMALL_STATE(3170)] = 113629, - [SMALL_STATE(3171)] = 113712, - [SMALL_STATE(3172)] = 113795, - [SMALL_STATE(3173)] = 113878, - [SMALL_STATE(3174)] = 113961, - [SMALL_STATE(3175)] = 114044, - [SMALL_STATE(3176)] = 114127, - [SMALL_STATE(3177)] = 114210, - [SMALL_STATE(3178)] = 114293, - [SMALL_STATE(3179)] = 114376, - [SMALL_STATE(3180)] = 114459, - [SMALL_STATE(3181)] = 114542, - [SMALL_STATE(3182)] = 114625, - [SMALL_STATE(3183)] = 114708, - [SMALL_STATE(3184)] = 114791, - [SMALL_STATE(3185)] = 114874, - [SMALL_STATE(3186)] = 114957, - [SMALL_STATE(3187)] = 115040, - [SMALL_STATE(3188)] = 115123, - [SMALL_STATE(3189)] = 115206, - [SMALL_STATE(3190)] = 115289, - [SMALL_STATE(3191)] = 115372, - [SMALL_STATE(3192)] = 115455, - [SMALL_STATE(3193)] = 115538, - [SMALL_STATE(3194)] = 115621, - [SMALL_STATE(3195)] = 115704, - [SMALL_STATE(3196)] = 115787, - [SMALL_STATE(3197)] = 115870, - [SMALL_STATE(3198)] = 115953, - [SMALL_STATE(3199)] = 116036, - [SMALL_STATE(3200)] = 116119, - [SMALL_STATE(3201)] = 116202, - [SMALL_STATE(3202)] = 116285, - [SMALL_STATE(3203)] = 116368, - [SMALL_STATE(3204)] = 116451, - [SMALL_STATE(3205)] = 116534, - [SMALL_STATE(3206)] = 116617, - [SMALL_STATE(3207)] = 116700, - [SMALL_STATE(3208)] = 116783, - [SMALL_STATE(3209)] = 116866, - [SMALL_STATE(3210)] = 116949, - [SMALL_STATE(3211)] = 117032, - [SMALL_STATE(3212)] = 117115, - [SMALL_STATE(3213)] = 117198, - [SMALL_STATE(3214)] = 117281, - [SMALL_STATE(3215)] = 117364, - [SMALL_STATE(3216)] = 117447, - [SMALL_STATE(3217)] = 117530, - [SMALL_STATE(3218)] = 117613, - [SMALL_STATE(3219)] = 117696, - [SMALL_STATE(3220)] = 117779, - [SMALL_STATE(3221)] = 117862, - [SMALL_STATE(3222)] = 117945, - [SMALL_STATE(3223)] = 118028, - [SMALL_STATE(3224)] = 118111, - [SMALL_STATE(3225)] = 118194, - [SMALL_STATE(3226)] = 118277, - [SMALL_STATE(3227)] = 118360, - [SMALL_STATE(3228)] = 118443, - [SMALL_STATE(3229)] = 118526, - [SMALL_STATE(3230)] = 118609, - [SMALL_STATE(3231)] = 118692, - [SMALL_STATE(3232)] = 118775, - [SMALL_STATE(3233)] = 118843, - [SMALL_STATE(3234)] = 118911, - [SMALL_STATE(3235)] = 118979, - [SMALL_STATE(3236)] = 119047, - [SMALL_STATE(3237)] = 119115, - [SMALL_STATE(3238)] = 119183, - [SMALL_STATE(3239)] = 119251, - [SMALL_STATE(3240)] = 119319, - [SMALL_STATE(3241)] = 119387, - [SMALL_STATE(3242)] = 119455, - [SMALL_STATE(3243)] = 119529, - [SMALL_STATE(3244)] = 119597, - [SMALL_STATE(3245)] = 119665, - [SMALL_STATE(3246)] = 119733, - [SMALL_STATE(3247)] = 119801, - [SMALL_STATE(3248)] = 119875, - [SMALL_STATE(3249)] = 119944, - [SMALL_STATE(3250)] = 119981, - [SMALL_STATE(3251)] = 120018, - [SMALL_STATE(3252)] = 120055, - [SMALL_STATE(3253)] = 120092, - [SMALL_STATE(3254)] = 120129, - [SMALL_STATE(3255)] = 120166, - [SMALL_STATE(3256)] = 120213, - [SMALL_STATE(3257)] = 120260, - [SMALL_STATE(3258)] = 120311, - [SMALL_STATE(3259)] = 120344, - [SMALL_STATE(3260)] = 120377, - [SMALL_STATE(3261)] = 120410, - [SMALL_STATE(3262)] = 120443, - [SMALL_STATE(3263)] = 120476, - [SMALL_STATE(3264)] = 120523, - [SMALL_STATE(3265)] = 120553, - [SMALL_STATE(3266)] = 120587, - [SMALL_STATE(3267)] = 120623, - [SMALL_STATE(3268)] = 120657, - [SMALL_STATE(3269)] = 120687, - [SMALL_STATE(3270)] = 120717, - [SMALL_STATE(3271)] = 120750, - [SMALL_STATE(3272)] = 120781, - [SMALL_STATE(3273)] = 120814, - [SMALL_STATE(3274)] = 120847, - [SMALL_STATE(3275)] = 120880, - [SMALL_STATE(3276)] = 120913, - [SMALL_STATE(3277)] = 120946, - [SMALL_STATE(3278)] = 120979, - [SMALL_STATE(3279)] = 121010, - [SMALL_STATE(3280)] = 121042, - [SMALL_STATE(3281)] = 121090, - [SMALL_STATE(3282)] = 121138, - [SMALL_STATE(3283)] = 121168, - [SMALL_STATE(3284)] = 121198, - [SMALL_STATE(3285)] = 121244, - [SMALL_STATE(3286)] = 121279, - [SMALL_STATE(3287)] = 121326, - [SMALL_STATE(3288)] = 121373, - [SMALL_STATE(3289)] = 121404, - [SMALL_STATE(3290)] = 121451, - [SMALL_STATE(3291)] = 121498, - [SMALL_STATE(3292)] = 121533, - [SMALL_STATE(3293)] = 121562, - [SMALL_STATE(3294)] = 121609, - [SMALL_STATE(3295)] = 121638, - [SMALL_STATE(3296)] = 121667, - [SMALL_STATE(3297)] = 121702, - [SMALL_STATE(3298)] = 121749, - [SMALL_STATE(3299)] = 121796, - [SMALL_STATE(3300)] = 121825, - [SMALL_STATE(3301)] = 121872, - [SMALL_STATE(3302)] = 121919, - [SMALL_STATE(3303)] = 121950, - [SMALL_STATE(3304)] = 121995, - [SMALL_STATE(3305)] = 122042, - [SMALL_STATE(3306)] = 122071, - [SMALL_STATE(3307)] = 122118, - [SMALL_STATE(3308)] = 122165, - [SMALL_STATE(3309)] = 122212, - [SMALL_STATE(3310)] = 122259, - [SMALL_STATE(3311)] = 122294, - [SMALL_STATE(3312)] = 122341, - [SMALL_STATE(3313)] = 122388, - [SMALL_STATE(3314)] = 122417, - [SMALL_STATE(3315)] = 122452, - [SMALL_STATE(3316)] = 122499, - [SMALL_STATE(3317)] = 122546, - [SMALL_STATE(3318)] = 122593, - [SMALL_STATE(3319)] = 122640, - [SMALL_STATE(3320)] = 122669, - [SMALL_STATE(3321)] = 122716, - [SMALL_STATE(3322)] = 122763, - [SMALL_STATE(3323)] = 122810, - [SMALL_STATE(3324)] = 122857, - [SMALL_STATE(3325)] = 122892, - [SMALL_STATE(3326)] = 122927, - [SMALL_STATE(3327)] = 122974, - [SMALL_STATE(3328)] = 123021, - [SMALL_STATE(3329)] = 123068, - [SMALL_STATE(3330)] = 123115, - [SMALL_STATE(3331)] = 123150, - [SMALL_STATE(3332)] = 123176, - [SMALL_STATE(3333)] = 123208, - [SMALL_STATE(3334)] = 123234, - [SMALL_STATE(3335)] = 123260, - [SMALL_STATE(3336)] = 123290, - [SMALL_STATE(3337)] = 123317, - [SMALL_STATE(3338)] = 123348, - [SMALL_STATE(3339)] = 123375, - [SMALL_STATE(3340)] = 123399, - [SMALL_STATE(3341)] = 123423, - [SMALL_STATE(3342)] = 123447, - [SMALL_STATE(3343)] = 123471, - [SMALL_STATE(3344)] = 123495, - [SMALL_STATE(3345)] = 123525, - [SMALL_STATE(3346)] = 123549, - [SMALL_STATE(3347)] = 123573, - [SMALL_STATE(3348)] = 123597, - [SMALL_STATE(3349)] = 123621, - [SMALL_STATE(3350)] = 123649, - [SMALL_STATE(3351)] = 123673, - [SMALL_STATE(3352)] = 123697, - [SMALL_STATE(3353)] = 123721, - [SMALL_STATE(3354)] = 123745, - [SMALL_STATE(3355)] = 123769, - [SMALL_STATE(3356)] = 123793, - [SMALL_STATE(3357)] = 123817, - [SMALL_STATE(3358)] = 123841, - [SMALL_STATE(3359)] = 123865, - [SMALL_STATE(3360)] = 123893, - [SMALL_STATE(3361)] = 123917, - [SMALL_STATE(3362)] = 123941, - [SMALL_STATE(3363)] = 123965, - [SMALL_STATE(3364)] = 123989, - [SMALL_STATE(3365)] = 124016, - [SMALL_STATE(3366)] = 124055, - [SMALL_STATE(3367)] = 124084, - [SMALL_STATE(3368)] = 124118, - [SMALL_STATE(3369)] = 124152, - [SMALL_STATE(3370)] = 124178, - [SMALL_STATE(3371)] = 124212, - [SMALL_STATE(3372)] = 124246, - [SMALL_STATE(3373)] = 124280, - [SMALL_STATE(3374)] = 124314, - [SMALL_STATE(3375)] = 124348, - [SMALL_STATE(3376)] = 124382, - [SMALL_STATE(3377)] = 124416, - [SMALL_STATE(3378)] = 124438, - [SMALL_STATE(3379)] = 124466, - [SMALL_STATE(3380)] = 124500, - [SMALL_STATE(3381)] = 124528, - [SMALL_STATE(3382)] = 124564, - [SMALL_STATE(3383)] = 124588, - [SMALL_STATE(3384)] = 124622, - [SMALL_STATE(3385)] = 124656, - [SMALL_STATE(3386)] = 124677, - [SMALL_STATE(3387)] = 124698, - [SMALL_STATE(3388)] = 124721, - [SMALL_STATE(3389)] = 124742, - [SMALL_STATE(3390)] = 124765, - [SMALL_STATE(3391)] = 124786, - [SMALL_STATE(3392)] = 124807, - [SMALL_STATE(3393)] = 124836, - [SMALL_STATE(3394)] = 124857, - [SMALL_STATE(3395)] = 124878, - [SMALL_STATE(3396)] = 124901, - [SMALL_STATE(3397)] = 124922, - [SMALL_STATE(3398)] = 124947, - [SMALL_STATE(3399)] = 124972, - [SMALL_STATE(3400)] = 124995, - [SMALL_STATE(3401)] = 125016, - [SMALL_STATE(3402)] = 125046, - [SMALL_STATE(3403)] = 125076, - [SMALL_STATE(3404)] = 125104, - [SMALL_STATE(3405)] = 125134, - [SMALL_STATE(3406)] = 125164, - [SMALL_STATE(3407)] = 125194, - [SMALL_STATE(3408)] = 125224, - [SMALL_STATE(3409)] = 125254, - [SMALL_STATE(3410)] = 125284, - [SMALL_STATE(3411)] = 125314, - [SMALL_STATE(3412)] = 125344, - [SMALL_STATE(3413)] = 125372, - [SMALL_STATE(3414)] = 125402, - [SMALL_STATE(3415)] = 125432, - [SMALL_STATE(3416)] = 125462, - [SMALL_STATE(3417)] = 125492, - [SMALL_STATE(3418)] = 125522, - [SMALL_STATE(3419)] = 125552, - [SMALL_STATE(3420)] = 125582, - [SMALL_STATE(3421)] = 125610, - [SMALL_STATE(3422)] = 125640, - [SMALL_STATE(3423)] = 125670, - [SMALL_STATE(3424)] = 125700, - [SMALL_STATE(3425)] = 125730, - [SMALL_STATE(3426)] = 125760, - [SMALL_STATE(3427)] = 125790, - [SMALL_STATE(3428)] = 125820, - [SMALL_STATE(3429)] = 125850, - [SMALL_STATE(3430)] = 125880, - [SMALL_STATE(3431)] = 125910, - [SMALL_STATE(3432)] = 125940, - [SMALL_STATE(3433)] = 125970, - [SMALL_STATE(3434)] = 125998, - [SMALL_STATE(3435)] = 126026, - [SMALL_STATE(3436)] = 126054, - [SMALL_STATE(3437)] = 126078, - [SMALL_STATE(3438)] = 126108, - [SMALL_STATE(3439)] = 126138, - [SMALL_STATE(3440)] = 126168, - [SMALL_STATE(3441)] = 126198, - [SMALL_STATE(3442)] = 126228, - [SMALL_STATE(3443)] = 126258, - [SMALL_STATE(3444)] = 126288, - [SMALL_STATE(3445)] = 126316, - [SMALL_STATE(3446)] = 126346, - [SMALL_STATE(3447)] = 126374, - [SMALL_STATE(3448)] = 126404, - [SMALL_STATE(3449)] = 126432, - [SMALL_STATE(3450)] = 126462, - [SMALL_STATE(3451)] = 126492, - [SMALL_STATE(3452)] = 126522, - [SMALL_STATE(3453)] = 126552, - [SMALL_STATE(3454)] = 126582, - [SMALL_STATE(3455)] = 126612, - [SMALL_STATE(3456)] = 126642, - [SMALL_STATE(3457)] = 126672, - [SMALL_STATE(3458)] = 126702, - [SMALL_STATE(3459)] = 126732, - [SMALL_STATE(3460)] = 126762, - [SMALL_STATE(3461)] = 126792, - [SMALL_STATE(3462)] = 126812, - [SMALL_STATE(3463)] = 126840, - [SMALL_STATE(3464)] = 126870, - [SMALL_STATE(3465)] = 126900, - [SMALL_STATE(3466)] = 126930, - [SMALL_STATE(3467)] = 126960, - [SMALL_STATE(3468)] = 126990, - [SMALL_STATE(3469)] = 127020, - [SMALL_STATE(3470)] = 127050, - [SMALL_STATE(3471)] = 127080, - [SMALL_STATE(3472)] = 127110, - [SMALL_STATE(3473)] = 127140, - [SMALL_STATE(3474)] = 127170, - [SMALL_STATE(3475)] = 127198, - [SMALL_STATE(3476)] = 127226, - [SMALL_STATE(3477)] = 127256, - [SMALL_STATE(3478)] = 127286, - [SMALL_STATE(3479)] = 127314, - [SMALL_STATE(3480)] = 127342, - [SMALL_STATE(3481)] = 127362, - [SMALL_STATE(3482)] = 127390, - [SMALL_STATE(3483)] = 127420, - [SMALL_STATE(3484)] = 127448, - [SMALL_STATE(3485)] = 127480, - [SMALL_STATE(3486)] = 127508, - [SMALL_STATE(3487)] = 127536, - [SMALL_STATE(3488)] = 127566, - [SMALL_STATE(3489)] = 127596, - [SMALL_STATE(3490)] = 127626, - [SMALL_STATE(3491)] = 127656, - [SMALL_STATE(3492)] = 127686, - [SMALL_STATE(3493)] = 127718, - [SMALL_STATE(3494)] = 127746, - [SMALL_STATE(3495)] = 127776, - [SMALL_STATE(3496)] = 127806, - [SMALL_STATE(3497)] = 127834, - [SMALL_STATE(3498)] = 127862, - [SMALL_STATE(3499)] = 127890, - [SMALL_STATE(3500)] = 127920, - [SMALL_STATE(3501)] = 127950, - [SMALL_STATE(3502)] = 127980, - [SMALL_STATE(3503)] = 128010, - [SMALL_STATE(3504)] = 128038, - [SMALL_STATE(3505)] = 128068, - [SMALL_STATE(3506)] = 128098, - [SMALL_STATE(3507)] = 128128, - [SMALL_STATE(3508)] = 128156, - [SMALL_STATE(3509)] = 128186, - [SMALL_STATE(3510)] = 128216, - [SMALL_STATE(3511)] = 128246, - [SMALL_STATE(3512)] = 128276, - [SMALL_STATE(3513)] = 128306, - [SMALL_STATE(3514)] = 128326, - [SMALL_STATE(3515)] = 128354, - [SMALL_STATE(3516)] = 128384, - [SMALL_STATE(3517)] = 128414, - [SMALL_STATE(3518)] = 128444, - [SMALL_STATE(3519)] = 128474, - [SMALL_STATE(3520)] = 128504, - [SMALL_STATE(3521)] = 128534, - [SMALL_STATE(3522)] = 128564, - [SMALL_STATE(3523)] = 128594, - [SMALL_STATE(3524)] = 128624, - [SMALL_STATE(3525)] = 128652, - [SMALL_STATE(3526)] = 128682, - [SMALL_STATE(3527)] = 128712, - [SMALL_STATE(3528)] = 128742, - [SMALL_STATE(3529)] = 128772, - [SMALL_STATE(3530)] = 128800, - [SMALL_STATE(3531)] = 128830, - [SMALL_STATE(3532)] = 128860, - [SMALL_STATE(3533)] = 128883, - [SMALL_STATE(3534)] = 128906, - [SMALL_STATE(3535)] = 128929, - [SMALL_STATE(3536)] = 128958, - [SMALL_STATE(3537)] = 128987, - [SMALL_STATE(3538)] = 129014, - [SMALL_STATE(3539)] = 129037, - [SMALL_STATE(3540)] = 129058, - [SMALL_STATE(3541)] = 129081, - [SMALL_STATE(3542)] = 129102, - [SMALL_STATE(3543)] = 129125, - [SMALL_STATE(3544)] = 129148, - [SMALL_STATE(3545)] = 129169, - [SMALL_STATE(3546)] = 129198, - [SMALL_STATE(3547)] = 129221, - [SMALL_STATE(3548)] = 129244, - [SMALL_STATE(3549)] = 129270, - [SMALL_STATE(3550)] = 129296, - [SMALL_STATE(3551)] = 129322, - [SMALL_STATE(3552)] = 129342, - [SMALL_STATE(3553)] = 129362, - [SMALL_STATE(3554)] = 129384, - [SMALL_STATE(3555)] = 129410, - [SMALL_STATE(3556)] = 129430, - [SMALL_STATE(3557)] = 129452, - [SMALL_STATE(3558)] = 129474, - [SMALL_STATE(3559)] = 129494, - [SMALL_STATE(3560)] = 129516, - [SMALL_STATE(3561)] = 129534, - [SMALL_STATE(3562)] = 129560, - [SMALL_STATE(3563)] = 129578, - [SMALL_STATE(3564)] = 129598, - [SMALL_STATE(3565)] = 129618, - [SMALL_STATE(3566)] = 129638, - [SMALL_STATE(3567)] = 129656, - [SMALL_STATE(3568)] = 129674, - [SMALL_STATE(3569)] = 129694, - [SMALL_STATE(3570)] = 129714, - [SMALL_STATE(3571)] = 129732, - [SMALL_STATE(3572)] = 129756, - [SMALL_STATE(3573)] = 129780, - [SMALL_STATE(3574)] = 129804, - [SMALL_STATE(3575)] = 129824, - [SMALL_STATE(3576)] = 129846, - [SMALL_STATE(3577)] = 129870, - [SMALL_STATE(3578)] = 129894, - [SMALL_STATE(3579)] = 129920, - [SMALL_STATE(3580)] = 129940, - [SMALL_STATE(3581)] = 129960, - [SMALL_STATE(3582)] = 129978, - [SMALL_STATE(3583)] = 130002, - [SMALL_STATE(3584)] = 130022, - [SMALL_STATE(3585)] = 130044, - [SMALL_STATE(3586)] = 130064, - [SMALL_STATE(3587)] = 130088, - [SMALL_STATE(3588)] = 130112, - [SMALL_STATE(3589)] = 130133, - [SMALL_STATE(3590)] = 130154, - [SMALL_STATE(3591)] = 130171, - [SMALL_STATE(3592)] = 130192, - [SMALL_STATE(3593)] = 130213, - [SMALL_STATE(3594)] = 130232, - [SMALL_STATE(3595)] = 130253, - [SMALL_STATE(3596)] = 130270, - [SMALL_STATE(3597)] = 130291, - [SMALL_STATE(3598)] = 130312, - [SMALL_STATE(3599)] = 130333, - [SMALL_STATE(3600)] = 130354, - [SMALL_STATE(3601)] = 130375, - [SMALL_STATE(3602)] = 130398, - [SMALL_STATE(3603)] = 130421, - [SMALL_STATE(3604)] = 130444, - [SMALL_STATE(3605)] = 130465, - [SMALL_STATE(3606)] = 130486, - [SMALL_STATE(3607)] = 130503, - [SMALL_STATE(3608)] = 130526, - [SMALL_STATE(3609)] = 130549, - [SMALL_STATE(3610)] = 130570, - [SMALL_STATE(3611)] = 130593, - [SMALL_STATE(3612)] = 130614, - [SMALL_STATE(3613)] = 130635, - [SMALL_STATE(3614)] = 130658, - [SMALL_STATE(3615)] = 130679, - [SMALL_STATE(3616)] = 130700, - [SMALL_STATE(3617)] = 130723, - [SMALL_STATE(3618)] = 130744, - [SMALL_STATE(3619)] = 130765, - [SMALL_STATE(3620)] = 130788, - [SMALL_STATE(3621)] = 130809, - [SMALL_STATE(3622)] = 130830, - [SMALL_STATE(3623)] = 130851, - [SMALL_STATE(3624)] = 130874, - [SMALL_STATE(3625)] = 130895, - [SMALL_STATE(3626)] = 130916, - [SMALL_STATE(3627)] = 130937, - [SMALL_STATE(3628)] = 130960, - [SMALL_STATE(3629)] = 130981, - [SMALL_STATE(3630)] = 131002, - [SMALL_STATE(3631)] = 131025, - [SMALL_STATE(3632)] = 131042, - [SMALL_STATE(3633)] = 131065, - [SMALL_STATE(3634)] = 131082, - [SMALL_STATE(3635)] = 131103, - [SMALL_STATE(3636)] = 131124, - [SMALL_STATE(3637)] = 131145, - [SMALL_STATE(3638)] = 131164, - [SMALL_STATE(3639)] = 131187, - [SMALL_STATE(3640)] = 131208, - [SMALL_STATE(3641)] = 131229, - [SMALL_STATE(3642)] = 131250, - [SMALL_STATE(3643)] = 131267, - [SMALL_STATE(3644)] = 131288, - [SMALL_STATE(3645)] = 131309, - [SMALL_STATE(3646)] = 131330, - [SMALL_STATE(3647)] = 131353, - [SMALL_STATE(3648)] = 131374, - [SMALL_STATE(3649)] = 131397, - [SMALL_STATE(3650)] = 131418, - [SMALL_STATE(3651)] = 131439, - [SMALL_STATE(3652)] = 131462, - [SMALL_STATE(3653)] = 131485, - [SMALL_STATE(3654)] = 131506, - [SMALL_STATE(3655)] = 131527, - [SMALL_STATE(3656)] = 131548, - [SMALL_STATE(3657)] = 131571, - [SMALL_STATE(3658)] = 131592, - [SMALL_STATE(3659)] = 131613, - [SMALL_STATE(3660)] = 131636, - [SMALL_STATE(3661)] = 131657, - [SMALL_STATE(3662)] = 131678, - [SMALL_STATE(3663)] = 131701, - [SMALL_STATE(3664)] = 131722, - [SMALL_STATE(3665)] = 131743, - [SMALL_STATE(3666)] = 131764, - [SMALL_STATE(3667)] = 131785, - [SMALL_STATE(3668)] = 131806, - [SMALL_STATE(3669)] = 131827, - [SMALL_STATE(3670)] = 131848, - [SMALL_STATE(3671)] = 131871, - [SMALL_STATE(3672)] = 131892, - [SMALL_STATE(3673)] = 131913, - [SMALL_STATE(3674)] = 131936, - [SMALL_STATE(3675)] = 131957, - [SMALL_STATE(3676)] = 131978, - [SMALL_STATE(3677)] = 132001, - [SMALL_STATE(3678)] = 132022, - [SMALL_STATE(3679)] = 132043, - [SMALL_STATE(3680)] = 132066, - [SMALL_STATE(3681)] = 132083, - [SMALL_STATE(3682)] = 132104, - [SMALL_STATE(3683)] = 132127, - [SMALL_STATE(3684)] = 132148, - [SMALL_STATE(3685)] = 132165, - [SMALL_STATE(3686)] = 132182, - [SMALL_STATE(3687)] = 132199, - [SMALL_STATE(3688)] = 132216, - [SMALL_STATE(3689)] = 132237, - [SMALL_STATE(3690)] = 132260, - [SMALL_STATE(3691)] = 132281, - [SMALL_STATE(3692)] = 132304, - [SMALL_STATE(3693)] = 132321, - [SMALL_STATE(3694)] = 132342, - [SMALL_STATE(3695)] = 132363, - [SMALL_STATE(3696)] = 132384, - [SMALL_STATE(3697)] = 132401, - [SMALL_STATE(3698)] = 132422, - [SMALL_STATE(3699)] = 132443, - [SMALL_STATE(3700)] = 132464, - [SMALL_STATE(3701)] = 132481, - [SMALL_STATE(3702)] = 132502, - [SMALL_STATE(3703)] = 132523, - [SMALL_STATE(3704)] = 132542, - [SMALL_STATE(3705)] = 132559, - [SMALL_STATE(3706)] = 132576, - [SMALL_STATE(3707)] = 132597, - [SMALL_STATE(3708)] = 132618, - [SMALL_STATE(3709)] = 132639, - [SMALL_STATE(3710)] = 132660, - [SMALL_STATE(3711)] = 132681, - [SMALL_STATE(3712)] = 132702, - [SMALL_STATE(3713)] = 132725, - [SMALL_STATE(3714)] = 132746, - [SMALL_STATE(3715)] = 132767, - [SMALL_STATE(3716)] = 132784, - [SMALL_STATE(3717)] = 132805, - [SMALL_STATE(3718)] = 132822, - [SMALL_STATE(3719)] = 132839, - [SMALL_STATE(3720)] = 132856, - [SMALL_STATE(3721)] = 132873, - [SMALL_STATE(3722)] = 132894, - [SMALL_STATE(3723)] = 132911, - [SMALL_STATE(3724)] = 132928, - [SMALL_STATE(3725)] = 132945, - [SMALL_STATE(3726)] = 132966, - [SMALL_STATE(3727)] = 132987, - [SMALL_STATE(3728)] = 133008, - [SMALL_STATE(3729)] = 133031, - [SMALL_STATE(3730)] = 133054, - [SMALL_STATE(3731)] = 133075, - [SMALL_STATE(3732)] = 133096, - [SMALL_STATE(3733)] = 133113, - [SMALL_STATE(3734)] = 133136, - [SMALL_STATE(3735)] = 133157, - [SMALL_STATE(3736)] = 133180, - [SMALL_STATE(3737)] = 133201, - [SMALL_STATE(3738)] = 133222, - [SMALL_STATE(3739)] = 133243, - [SMALL_STATE(3740)] = 133264, - [SMALL_STATE(3741)] = 133285, - [SMALL_STATE(3742)] = 133306, - [SMALL_STATE(3743)] = 133323, - [SMALL_STATE(3744)] = 133344, - [SMALL_STATE(3745)] = 133365, - [SMALL_STATE(3746)] = 133386, - [SMALL_STATE(3747)] = 133407, - [SMALL_STATE(3748)] = 133428, - [SMALL_STATE(3749)] = 133449, - [SMALL_STATE(3750)] = 133470, - [SMALL_STATE(3751)] = 133493, - [SMALL_STATE(3752)] = 133512, - [SMALL_STATE(3753)] = 133533, - [SMALL_STATE(3754)] = 133554, - [SMALL_STATE(3755)] = 133570, - [SMALL_STATE(3756)] = 133590, - [SMALL_STATE(3757)] = 133608, - [SMALL_STATE(3758)] = 133626, - [SMALL_STATE(3759)] = 133642, - [SMALL_STATE(3760)] = 133662, - [SMALL_STATE(3761)] = 133682, - [SMALL_STATE(3762)] = 133702, - [SMALL_STATE(3763)] = 133722, - [SMALL_STATE(3764)] = 133742, - [SMALL_STATE(3765)] = 133762, - [SMALL_STATE(3766)] = 133782, - [SMALL_STATE(3767)] = 133802, - [SMALL_STATE(3768)] = 133822, - [SMALL_STATE(3769)] = 133838, - [SMALL_STATE(3770)] = 133858, - [SMALL_STATE(3771)] = 133878, - [SMALL_STATE(3772)] = 133898, - [SMALL_STATE(3773)] = 133918, - [SMALL_STATE(3774)] = 133934, - [SMALL_STATE(3775)] = 133952, - [SMALL_STATE(3776)] = 133972, - [SMALL_STATE(3777)] = 133992, - [SMALL_STATE(3778)] = 134012, - [SMALL_STATE(3779)] = 134032, - [SMALL_STATE(3780)] = 134052, - [SMALL_STATE(3781)] = 134072, - [SMALL_STATE(3782)] = 134092, - [SMALL_STATE(3783)] = 134112, - [SMALL_STATE(3784)] = 134132, - [SMALL_STATE(3785)] = 134152, - [SMALL_STATE(3786)] = 134172, - [SMALL_STATE(3787)] = 134192, - [SMALL_STATE(3788)] = 134212, - [SMALL_STATE(3789)] = 134232, - [SMALL_STATE(3790)] = 134250, - [SMALL_STATE(3791)] = 134270, - [SMALL_STATE(3792)] = 134286, - [SMALL_STATE(3793)] = 134306, - [SMALL_STATE(3794)] = 134326, - [SMALL_STATE(3795)] = 134342, - [SMALL_STATE(3796)] = 134362, - [SMALL_STATE(3797)] = 134382, - [SMALL_STATE(3798)] = 134402, - [SMALL_STATE(3799)] = 134418, - [SMALL_STATE(3800)] = 134436, - [SMALL_STATE(3801)] = 134456, - [SMALL_STATE(3802)] = 134474, - [SMALL_STATE(3803)] = 134494, - [SMALL_STATE(3804)] = 134514, - [SMALL_STATE(3805)] = 134532, - [SMALL_STATE(3806)] = 134552, - [SMALL_STATE(3807)] = 134572, - [SMALL_STATE(3808)] = 134592, - [SMALL_STATE(3809)] = 134612, - [SMALL_STATE(3810)] = 134632, - [SMALL_STATE(3811)] = 134652, - [SMALL_STATE(3812)] = 134672, - [SMALL_STATE(3813)] = 134692, - [SMALL_STATE(3814)] = 134712, - [SMALL_STATE(3815)] = 134732, - [SMALL_STATE(3816)] = 134752, - [SMALL_STATE(3817)] = 134772, - [SMALL_STATE(3818)] = 134792, - [SMALL_STATE(3819)] = 134812, - [SMALL_STATE(3820)] = 134832, - [SMALL_STATE(3821)] = 134852, - [SMALL_STATE(3822)] = 134872, - [SMALL_STATE(3823)] = 134890, - [SMALL_STATE(3824)] = 134910, - [SMALL_STATE(3825)] = 134930, - [SMALL_STATE(3826)] = 134950, - [SMALL_STATE(3827)] = 134970, - [SMALL_STATE(3828)] = 134990, - [SMALL_STATE(3829)] = 135010, - [SMALL_STATE(3830)] = 135030, - [SMALL_STATE(3831)] = 135050, - [SMALL_STATE(3832)] = 135070, - [SMALL_STATE(3833)] = 135088, - [SMALL_STATE(3834)] = 135108, - [SMALL_STATE(3835)] = 135128, - [SMALL_STATE(3836)] = 135148, - [SMALL_STATE(3837)] = 135168, - [SMALL_STATE(3838)] = 135188, - [SMALL_STATE(3839)] = 135208, - [SMALL_STATE(3840)] = 135228, - [SMALL_STATE(3841)] = 135248, - [SMALL_STATE(3842)] = 135268, - [SMALL_STATE(3843)] = 135288, - [SMALL_STATE(3844)] = 135308, - [SMALL_STATE(3845)] = 135328, - [SMALL_STATE(3846)] = 135348, - [SMALL_STATE(3847)] = 135368, - [SMALL_STATE(3848)] = 135388, - [SMALL_STATE(3849)] = 135404, - [SMALL_STATE(3850)] = 135424, - [SMALL_STATE(3851)] = 135440, - [SMALL_STATE(3852)] = 135460, - [SMALL_STATE(3853)] = 135480, - [SMALL_STATE(3854)] = 135496, - [SMALL_STATE(3855)] = 135516, - [SMALL_STATE(3856)] = 135536, - [SMALL_STATE(3857)] = 135556, - [SMALL_STATE(3858)] = 135576, - [SMALL_STATE(3859)] = 135596, - [SMALL_STATE(3860)] = 135616, - [SMALL_STATE(3861)] = 135634, - [SMALL_STATE(3862)] = 135654, - [SMALL_STATE(3863)] = 135674, - [SMALL_STATE(3864)] = 135694, - [SMALL_STATE(3865)] = 135714, - [SMALL_STATE(3866)] = 135734, - [SMALL_STATE(3867)] = 135754, - [SMALL_STATE(3868)] = 135774, - [SMALL_STATE(3869)] = 135794, - [SMALL_STATE(3870)] = 135812, - [SMALL_STATE(3871)] = 135832, - [SMALL_STATE(3872)] = 135850, - [SMALL_STATE(3873)] = 135870, - [SMALL_STATE(3874)] = 135890, - [SMALL_STATE(3875)] = 135908, - [SMALL_STATE(3876)] = 135926, - [SMALL_STATE(3877)] = 135946, - [SMALL_STATE(3878)] = 135966, - [SMALL_STATE(3879)] = 135986, - [SMALL_STATE(3880)] = 136006, - [SMALL_STATE(3881)] = 136026, - [SMALL_STATE(3882)] = 136046, - [SMALL_STATE(3883)] = 136066, - [SMALL_STATE(3884)] = 136086, - [SMALL_STATE(3885)] = 136106, - [SMALL_STATE(3886)] = 136126, - [SMALL_STATE(3887)] = 136142, - [SMALL_STATE(3888)] = 136162, - [SMALL_STATE(3889)] = 136182, - [SMALL_STATE(3890)] = 136202, - [SMALL_STATE(3891)] = 136222, - [SMALL_STATE(3892)] = 136238, - [SMALL_STATE(3893)] = 136258, - [SMALL_STATE(3894)] = 136278, - [SMALL_STATE(3895)] = 136298, - [SMALL_STATE(3896)] = 136314, - [SMALL_STATE(3897)] = 136334, - [SMALL_STATE(3898)] = 136354, - [SMALL_STATE(3899)] = 136374, - [SMALL_STATE(3900)] = 136394, - [SMALL_STATE(3901)] = 136410, - [SMALL_STATE(3902)] = 136430, - [SMALL_STATE(3903)] = 136450, - [SMALL_STATE(3904)] = 136470, - [SMALL_STATE(3905)] = 136490, - [SMALL_STATE(3906)] = 136510, - [SMALL_STATE(3907)] = 136530, - [SMALL_STATE(3908)] = 136550, - [SMALL_STATE(3909)] = 136570, - [SMALL_STATE(3910)] = 136590, - [SMALL_STATE(3911)] = 136610, - [SMALL_STATE(3912)] = 136630, - [SMALL_STATE(3913)] = 136650, - [SMALL_STATE(3914)] = 136670, - [SMALL_STATE(3915)] = 136690, - [SMALL_STATE(3916)] = 136710, - [SMALL_STATE(3917)] = 136730, - [SMALL_STATE(3918)] = 136750, - [SMALL_STATE(3919)] = 136770, - [SMALL_STATE(3920)] = 136790, - [SMALL_STATE(3921)] = 136810, - [SMALL_STATE(3922)] = 136830, - [SMALL_STATE(3923)] = 136850, - [SMALL_STATE(3924)] = 136868, - [SMALL_STATE(3925)] = 136888, - [SMALL_STATE(3926)] = 136908, - [SMALL_STATE(3927)] = 136928, - [SMALL_STATE(3928)] = 136948, - [SMALL_STATE(3929)] = 136968, - [SMALL_STATE(3930)] = 136986, - [SMALL_STATE(3931)] = 137004, - [SMALL_STATE(3932)] = 137024, - [SMALL_STATE(3933)] = 137044, - [SMALL_STATE(3934)] = 137064, - [SMALL_STATE(3935)] = 137084, - [SMALL_STATE(3936)] = 137104, - [SMALL_STATE(3937)] = 137124, - [SMALL_STATE(3938)] = 137144, - [SMALL_STATE(3939)] = 137164, - [SMALL_STATE(3940)] = 137184, - [SMALL_STATE(3941)] = 137204, - [SMALL_STATE(3942)] = 137224, - [SMALL_STATE(3943)] = 137244, - [SMALL_STATE(3944)] = 137264, - [SMALL_STATE(3945)] = 137284, - [SMALL_STATE(3946)] = 137304, - [SMALL_STATE(3947)] = 137324, - [SMALL_STATE(3948)] = 137344, - [SMALL_STATE(3949)] = 137364, - [SMALL_STATE(3950)] = 137384, - [SMALL_STATE(3951)] = 137404, - [SMALL_STATE(3952)] = 137424, - [SMALL_STATE(3953)] = 137444, - [SMALL_STATE(3954)] = 137464, - [SMALL_STATE(3955)] = 137484, - [SMALL_STATE(3956)] = 137504, - [SMALL_STATE(3957)] = 137524, - [SMALL_STATE(3958)] = 137544, - [SMALL_STATE(3959)] = 137564, - [SMALL_STATE(3960)] = 137584, - [SMALL_STATE(3961)] = 137604, - [SMALL_STATE(3962)] = 137624, - [SMALL_STATE(3963)] = 137644, - [SMALL_STATE(3964)] = 137664, - [SMALL_STATE(3965)] = 137684, - [SMALL_STATE(3966)] = 137704, - [SMALL_STATE(3967)] = 137724, - [SMALL_STATE(3968)] = 137744, - [SMALL_STATE(3969)] = 137764, - [SMALL_STATE(3970)] = 137784, - [SMALL_STATE(3971)] = 137804, - [SMALL_STATE(3972)] = 137824, - [SMALL_STATE(3973)] = 137844, - [SMALL_STATE(3974)] = 137864, - [SMALL_STATE(3975)] = 137884, - [SMALL_STATE(3976)] = 137904, - [SMALL_STATE(3977)] = 137924, - [SMALL_STATE(3978)] = 137944, - [SMALL_STATE(3979)] = 137964, - [SMALL_STATE(3980)] = 137984, - [SMALL_STATE(3981)] = 138004, - [SMALL_STATE(3982)] = 138022, - [SMALL_STATE(3983)] = 138042, - [SMALL_STATE(3984)] = 138062, - [SMALL_STATE(3985)] = 138082, - [SMALL_STATE(3986)] = 138102, - [SMALL_STATE(3987)] = 138122, - [SMALL_STATE(3988)] = 138138, - [SMALL_STATE(3989)] = 138156, - [SMALL_STATE(3990)] = 138176, - [SMALL_STATE(3991)] = 138196, - [SMALL_STATE(3992)] = 138216, - [SMALL_STATE(3993)] = 138236, - [SMALL_STATE(3994)] = 138254, - [SMALL_STATE(3995)] = 138274, - [SMALL_STATE(3996)] = 138294, - [SMALL_STATE(3997)] = 138314, - [SMALL_STATE(3998)] = 138331, - [SMALL_STATE(3999)] = 138348, - [SMALL_STATE(4000)] = 138365, - [SMALL_STATE(4001)] = 138382, - [SMALL_STATE(4002)] = 138399, - [SMALL_STATE(4003)] = 138416, - [SMALL_STATE(4004)] = 138433, - [SMALL_STATE(4005)] = 138450, - [SMALL_STATE(4006)] = 138467, - [SMALL_STATE(4007)] = 138484, - [SMALL_STATE(4008)] = 138501, - [SMALL_STATE(4009)] = 138518, - [SMALL_STATE(4010)] = 138535, - [SMALL_STATE(4011)] = 138552, - [SMALL_STATE(4012)] = 138569, - [SMALL_STATE(4013)] = 138586, - [SMALL_STATE(4014)] = 138601, - [SMALL_STATE(4015)] = 138618, - [SMALL_STATE(4016)] = 138635, - [SMALL_STATE(4017)] = 138652, - [SMALL_STATE(4018)] = 138669, - [SMALL_STATE(4019)] = 138686, - [SMALL_STATE(4020)] = 138703, - [SMALL_STATE(4021)] = 138720, - [SMALL_STATE(4022)] = 138735, - [SMALL_STATE(4023)] = 138752, - [SMALL_STATE(4024)] = 138769, - [SMALL_STATE(4025)] = 138786, - [SMALL_STATE(4026)] = 138803, - [SMALL_STATE(4027)] = 138820, - [SMALL_STATE(4028)] = 138837, - [SMALL_STATE(4029)] = 138854, - [SMALL_STATE(4030)] = 138871, - [SMALL_STATE(4031)] = 138888, - [SMALL_STATE(4032)] = 138905, - [SMALL_STATE(4033)] = 138922, - [SMALL_STATE(4034)] = 138939, - [SMALL_STATE(4035)] = 138956, - [SMALL_STATE(4036)] = 138973, - [SMALL_STATE(4037)] = 138990, - [SMALL_STATE(4038)] = 139007, - [SMALL_STATE(4039)] = 139024, - [SMALL_STATE(4040)] = 139041, - [SMALL_STATE(4041)] = 139058, - [SMALL_STATE(4042)] = 139075, - [SMALL_STATE(4043)] = 139092, - [SMALL_STATE(4044)] = 139109, - [SMALL_STATE(4045)] = 139126, - [SMALL_STATE(4046)] = 139143, - [SMALL_STATE(4047)] = 139160, - [SMALL_STATE(4048)] = 139177, - [SMALL_STATE(4049)] = 139194, - [SMALL_STATE(4050)] = 139211, - [SMALL_STATE(4051)] = 139228, - [SMALL_STATE(4052)] = 139245, - [SMALL_STATE(4053)] = 139262, - [SMALL_STATE(4054)] = 139279, - [SMALL_STATE(4055)] = 139296, - [SMALL_STATE(4056)] = 139313, - [SMALL_STATE(4057)] = 139330, - [SMALL_STATE(4058)] = 139347, - [SMALL_STATE(4059)] = 139364, - [SMALL_STATE(4060)] = 139381, - [SMALL_STATE(4061)] = 139398, - [SMALL_STATE(4062)] = 139415, - [SMALL_STATE(4063)] = 139432, - [SMALL_STATE(4064)] = 139449, - [SMALL_STATE(4065)] = 139466, - [SMALL_STATE(4066)] = 139483, - [SMALL_STATE(4067)] = 139500, - [SMALL_STATE(4068)] = 139517, - [SMALL_STATE(4069)] = 139534, - [SMALL_STATE(4070)] = 139551, - [SMALL_STATE(4071)] = 139568, - [SMALL_STATE(4072)] = 139585, - [SMALL_STATE(4073)] = 139602, - [SMALL_STATE(4074)] = 139619, - [SMALL_STATE(4075)] = 139636, - [SMALL_STATE(4076)] = 139653, - [SMALL_STATE(4077)] = 139670, - [SMALL_STATE(4078)] = 139687, - [SMALL_STATE(4079)] = 139704, - [SMALL_STATE(4080)] = 139721, - [SMALL_STATE(4081)] = 139738, - [SMALL_STATE(4082)] = 139755, - [SMALL_STATE(4083)] = 139772, - [SMALL_STATE(4084)] = 139789, - [SMALL_STATE(4085)] = 139806, - [SMALL_STATE(4086)] = 139823, - [SMALL_STATE(4087)] = 139840, - [SMALL_STATE(4088)] = 139857, - [SMALL_STATE(4089)] = 139874, - [SMALL_STATE(4090)] = 139891, - [SMALL_STATE(4091)] = 139908, - [SMALL_STATE(4092)] = 139925, - [SMALL_STATE(4093)] = 139942, - [SMALL_STATE(4094)] = 139959, - [SMALL_STATE(4095)] = 139976, - [SMALL_STATE(4096)] = 139993, - [SMALL_STATE(4097)] = 140010, - [SMALL_STATE(4098)] = 140027, - [SMALL_STATE(4099)] = 140044, - [SMALL_STATE(4100)] = 140061, - [SMALL_STATE(4101)] = 140078, - [SMALL_STATE(4102)] = 140093, - [SMALL_STATE(4103)] = 140110, - [SMALL_STATE(4104)] = 140127, - [SMALL_STATE(4105)] = 140144, - [SMALL_STATE(4106)] = 140161, - [SMALL_STATE(4107)] = 140178, - [SMALL_STATE(4108)] = 140195, - [SMALL_STATE(4109)] = 140210, - [SMALL_STATE(4110)] = 140227, - [SMALL_STATE(4111)] = 140244, - [SMALL_STATE(4112)] = 140261, - [SMALL_STATE(4113)] = 140278, - [SMALL_STATE(4114)] = 140293, - [SMALL_STATE(4115)] = 140308, - [SMALL_STATE(4116)] = 140323, - [SMALL_STATE(4117)] = 140340, - [SMALL_STATE(4118)] = 140357, - [SMALL_STATE(4119)] = 140374, - [SMALL_STATE(4120)] = 140391, - [SMALL_STATE(4121)] = 140408, - [SMALL_STATE(4122)] = 140425, - [SMALL_STATE(4123)] = 140440, - [SMALL_STATE(4124)] = 140457, - [SMALL_STATE(4125)] = 140474, - [SMALL_STATE(4126)] = 140491, - [SMALL_STATE(4127)] = 140508, - [SMALL_STATE(4128)] = 140525, - [SMALL_STATE(4129)] = 140542, - [SMALL_STATE(4130)] = 140557, - [SMALL_STATE(4131)] = 140572, - [SMALL_STATE(4132)] = 140587, - [SMALL_STATE(4133)] = 140604, - [SMALL_STATE(4134)] = 140619, - [SMALL_STATE(4135)] = 140636, - [SMALL_STATE(4136)] = 140653, - [SMALL_STATE(4137)] = 140668, - [SMALL_STATE(4138)] = 140683, - [SMALL_STATE(4139)] = 140700, - [SMALL_STATE(4140)] = 140717, - [SMALL_STATE(4141)] = 140734, - [SMALL_STATE(4142)] = 140751, - [SMALL_STATE(4143)] = 140768, - [SMALL_STATE(4144)] = 140785, - [SMALL_STATE(4145)] = 140802, - [SMALL_STATE(4146)] = 140819, - [SMALL_STATE(4147)] = 140836, - [SMALL_STATE(4148)] = 140853, - [SMALL_STATE(4149)] = 140870, - [SMALL_STATE(4150)] = 140887, - [SMALL_STATE(4151)] = 140904, - [SMALL_STATE(4152)] = 140921, - [SMALL_STATE(4153)] = 140938, - [SMALL_STATE(4154)] = 140955, - [SMALL_STATE(4155)] = 140972, - [SMALL_STATE(4156)] = 140989, - [SMALL_STATE(4157)] = 141006, - [SMALL_STATE(4158)] = 141023, - [SMALL_STATE(4159)] = 141040, - [SMALL_STATE(4160)] = 141057, - [SMALL_STATE(4161)] = 141074, - [SMALL_STATE(4162)] = 141091, - [SMALL_STATE(4163)] = 141108, - [SMALL_STATE(4164)] = 141123, - [SMALL_STATE(4165)] = 141140, - [SMALL_STATE(4166)] = 141157, - [SMALL_STATE(4167)] = 141174, - [SMALL_STATE(4168)] = 141191, - [SMALL_STATE(4169)] = 141208, - [SMALL_STATE(4170)] = 141225, - [SMALL_STATE(4171)] = 141242, - [SMALL_STATE(4172)] = 141259, - [SMALL_STATE(4173)] = 141276, - [SMALL_STATE(4174)] = 141293, - [SMALL_STATE(4175)] = 141308, - [SMALL_STATE(4176)] = 141325, - [SMALL_STATE(4177)] = 141342, - [SMALL_STATE(4178)] = 141359, - [SMALL_STATE(4179)] = 141376, - [SMALL_STATE(4180)] = 141393, - [SMALL_STATE(4181)] = 141410, - [SMALL_STATE(4182)] = 141427, - [SMALL_STATE(4183)] = 141444, - [SMALL_STATE(4184)] = 141459, - [SMALL_STATE(4185)] = 141474, - [SMALL_STATE(4186)] = 141491, - [SMALL_STATE(4187)] = 141506, - [SMALL_STATE(4188)] = 141523, - [SMALL_STATE(4189)] = 141538, - [SMALL_STATE(4190)] = 141553, - [SMALL_STATE(4191)] = 141570, - [SMALL_STATE(4192)] = 141587, - [SMALL_STATE(4193)] = 141604, - [SMALL_STATE(4194)] = 141621, - [SMALL_STATE(4195)] = 141638, - [SMALL_STATE(4196)] = 141655, - [SMALL_STATE(4197)] = 141672, - [SMALL_STATE(4198)] = 141689, - [SMALL_STATE(4199)] = 141706, - [SMALL_STATE(4200)] = 141723, - [SMALL_STATE(4201)] = 141740, - [SMALL_STATE(4202)] = 141757, - [SMALL_STATE(4203)] = 141774, - [SMALL_STATE(4204)] = 141789, - [SMALL_STATE(4205)] = 141806, - [SMALL_STATE(4206)] = 141823, - [SMALL_STATE(4207)] = 141840, - [SMALL_STATE(4208)] = 141857, - [SMALL_STATE(4209)] = 141874, - [SMALL_STATE(4210)] = 141891, - [SMALL_STATE(4211)] = 141906, - [SMALL_STATE(4212)] = 141923, - [SMALL_STATE(4213)] = 141940, - [SMALL_STATE(4214)] = 141957, - [SMALL_STATE(4215)] = 141974, - [SMALL_STATE(4216)] = 141991, - [SMALL_STATE(4217)] = 142006, - [SMALL_STATE(4218)] = 142023, - [SMALL_STATE(4219)] = 142040, - [SMALL_STATE(4220)] = 142057, - [SMALL_STATE(4221)] = 142074, - [SMALL_STATE(4222)] = 142091, - [SMALL_STATE(4223)] = 142108, - [SMALL_STATE(4224)] = 142125, - [SMALL_STATE(4225)] = 142140, - [SMALL_STATE(4226)] = 142157, - [SMALL_STATE(4227)] = 142174, - [SMALL_STATE(4228)] = 142191, - [SMALL_STATE(4229)] = 142208, - [SMALL_STATE(4230)] = 142225, - [SMALL_STATE(4231)] = 142242, - [SMALL_STATE(4232)] = 142259, - [SMALL_STATE(4233)] = 142276, - [SMALL_STATE(4234)] = 142293, - [SMALL_STATE(4235)] = 142310, - [SMALL_STATE(4236)] = 142327, - [SMALL_STATE(4237)] = 142344, - [SMALL_STATE(4238)] = 142361, - [SMALL_STATE(4239)] = 142378, - [SMALL_STATE(4240)] = 142395, - [SMALL_STATE(4241)] = 142412, - [SMALL_STATE(4242)] = 142429, - [SMALL_STATE(4243)] = 142446, - [SMALL_STATE(4244)] = 142463, - [SMALL_STATE(4245)] = 142480, - [SMALL_STATE(4246)] = 142497, - [SMALL_STATE(4247)] = 142514, - [SMALL_STATE(4248)] = 142531, - [SMALL_STATE(4249)] = 142548, - [SMALL_STATE(4250)] = 142565, - [SMALL_STATE(4251)] = 142582, - [SMALL_STATE(4252)] = 142599, - [SMALL_STATE(4253)] = 142616, - [SMALL_STATE(4254)] = 142633, - [SMALL_STATE(4255)] = 142650, - [SMALL_STATE(4256)] = 142667, - [SMALL_STATE(4257)] = 142684, - [SMALL_STATE(4258)] = 142701, - [SMALL_STATE(4259)] = 142718, - [SMALL_STATE(4260)] = 142735, - [SMALL_STATE(4261)] = 142752, - [SMALL_STATE(4262)] = 142769, - [SMALL_STATE(4263)] = 142786, - [SMALL_STATE(4264)] = 142803, - [SMALL_STATE(4265)] = 142820, - [SMALL_STATE(4266)] = 142837, - [SMALL_STATE(4267)] = 142854, - [SMALL_STATE(4268)] = 142871, - [SMALL_STATE(4269)] = 142888, - [SMALL_STATE(4270)] = 142905, - [SMALL_STATE(4271)] = 142922, - [SMALL_STATE(4272)] = 142939, - [SMALL_STATE(4273)] = 142956, - [SMALL_STATE(4274)] = 142973, - [SMALL_STATE(4275)] = 142988, - [SMALL_STATE(4276)] = 143005, - [SMALL_STATE(4277)] = 143020, - [SMALL_STATE(4278)] = 143037, - [SMALL_STATE(4279)] = 143054, - [SMALL_STATE(4280)] = 143071, - [SMALL_STATE(4281)] = 143088, - [SMALL_STATE(4282)] = 143105, - [SMALL_STATE(4283)] = 143122, - [SMALL_STATE(4284)] = 143137, - [SMALL_STATE(4285)] = 143154, - [SMALL_STATE(4286)] = 143171, - [SMALL_STATE(4287)] = 143188, - [SMALL_STATE(4288)] = 143205, - [SMALL_STATE(4289)] = 143222, - [SMALL_STATE(4290)] = 143237, - [SMALL_STATE(4291)] = 143254, - [SMALL_STATE(4292)] = 143271, - [SMALL_STATE(4293)] = 143288, - [SMALL_STATE(4294)] = 143303, - [SMALL_STATE(4295)] = 143320, - [SMALL_STATE(4296)] = 143335, - [SMALL_STATE(4297)] = 143352, - [SMALL_STATE(4298)] = 143369, - [SMALL_STATE(4299)] = 143386, - [SMALL_STATE(4300)] = 143403, - [SMALL_STATE(4301)] = 143418, - [SMALL_STATE(4302)] = 143435, - [SMALL_STATE(4303)] = 143452, - [SMALL_STATE(4304)] = 143469, - [SMALL_STATE(4305)] = 143484, - [SMALL_STATE(4306)] = 143501, - [SMALL_STATE(4307)] = 143518, - [SMALL_STATE(4308)] = 143535, - [SMALL_STATE(4309)] = 143552, - [SMALL_STATE(4310)] = 143569, - [SMALL_STATE(4311)] = 143586, - [SMALL_STATE(4312)] = 143603, - [SMALL_STATE(4313)] = 143620, - [SMALL_STATE(4314)] = 143637, - [SMALL_STATE(4315)] = 143654, - [SMALL_STATE(4316)] = 143668, - [SMALL_STATE(4317)] = 143682, - [SMALL_STATE(4318)] = 143696, - [SMALL_STATE(4319)] = 143710, - [SMALL_STATE(4320)] = 143724, - [SMALL_STATE(4321)] = 143738, - [SMALL_STATE(4322)] = 143752, - [SMALL_STATE(4323)] = 143766, - [SMALL_STATE(4324)] = 143780, - [SMALL_STATE(4325)] = 143794, - [SMALL_STATE(4326)] = 143808, - [SMALL_STATE(4327)] = 143822, - [SMALL_STATE(4328)] = 143836, - [SMALL_STATE(4329)] = 143850, - [SMALL_STATE(4330)] = 143864, - [SMALL_STATE(4331)] = 143878, - [SMALL_STATE(4332)] = 143892, - [SMALL_STATE(4333)] = 143906, - [SMALL_STATE(4334)] = 143920, - [SMALL_STATE(4335)] = 143934, - [SMALL_STATE(4336)] = 143948, - [SMALL_STATE(4337)] = 143962, - [SMALL_STATE(4338)] = 143976, - [SMALL_STATE(4339)] = 143990, - [SMALL_STATE(4340)] = 144004, - [SMALL_STATE(4341)] = 144018, - [SMALL_STATE(4342)] = 144032, - [SMALL_STATE(4343)] = 144046, - [SMALL_STATE(4344)] = 144060, - [SMALL_STATE(4345)] = 144074, - [SMALL_STATE(4346)] = 144088, - [SMALL_STATE(4347)] = 144102, - [SMALL_STATE(4348)] = 144116, - [SMALL_STATE(4349)] = 144130, - [SMALL_STATE(4350)] = 144144, - [SMALL_STATE(4351)] = 144158, - [SMALL_STATE(4352)] = 144172, - [SMALL_STATE(4353)] = 144186, - [SMALL_STATE(4354)] = 144200, - [SMALL_STATE(4355)] = 144214, - [SMALL_STATE(4356)] = 144228, - [SMALL_STATE(4357)] = 144242, - [SMALL_STATE(4358)] = 144256, - [SMALL_STATE(4359)] = 144270, - [SMALL_STATE(4360)] = 144284, - [SMALL_STATE(4361)] = 144298, - [SMALL_STATE(4362)] = 144312, - [SMALL_STATE(4363)] = 144326, - [SMALL_STATE(4364)] = 144340, - [SMALL_STATE(4365)] = 144354, - [SMALL_STATE(4366)] = 144368, - [SMALL_STATE(4367)] = 144382, - [SMALL_STATE(4368)] = 144396, - [SMALL_STATE(4369)] = 144410, - [SMALL_STATE(4370)] = 144424, - [SMALL_STATE(4371)] = 144438, - [SMALL_STATE(4372)] = 144452, - [SMALL_STATE(4373)] = 144466, - [SMALL_STATE(4374)] = 144480, - [SMALL_STATE(4375)] = 144494, - [SMALL_STATE(4376)] = 144508, - [SMALL_STATE(4377)] = 144522, - [SMALL_STATE(4378)] = 144536, - [SMALL_STATE(4379)] = 144550, - [SMALL_STATE(4380)] = 144564, - [SMALL_STATE(4381)] = 144578, - [SMALL_STATE(4382)] = 144592, - [SMALL_STATE(4383)] = 144606, - [SMALL_STATE(4384)] = 144620, - [SMALL_STATE(4385)] = 144634, - [SMALL_STATE(4386)] = 144648, - [SMALL_STATE(4387)] = 144662, - [SMALL_STATE(4388)] = 144676, - [SMALL_STATE(4389)] = 144690, - [SMALL_STATE(4390)] = 144704, - [SMALL_STATE(4391)] = 144718, - [SMALL_STATE(4392)] = 144732, - [SMALL_STATE(4393)] = 144746, - [SMALL_STATE(4394)] = 144760, - [SMALL_STATE(4395)] = 144774, - [SMALL_STATE(4396)] = 144788, - [SMALL_STATE(4397)] = 144802, - [SMALL_STATE(4398)] = 144816, - [SMALL_STATE(4399)] = 144830, - [SMALL_STATE(4400)] = 144844, - [SMALL_STATE(4401)] = 144858, - [SMALL_STATE(4402)] = 144872, - [SMALL_STATE(4403)] = 144886, - [SMALL_STATE(4404)] = 144900, - [SMALL_STATE(4405)] = 144914, - [SMALL_STATE(4406)] = 144928, - [SMALL_STATE(4407)] = 144942, - [SMALL_STATE(4408)] = 144956, - [SMALL_STATE(4409)] = 144970, - [SMALL_STATE(4410)] = 144984, - [SMALL_STATE(4411)] = 144998, - [SMALL_STATE(4412)] = 145012, - [SMALL_STATE(4413)] = 145026, - [SMALL_STATE(4414)] = 145040, - [SMALL_STATE(4415)] = 145054, - [SMALL_STATE(4416)] = 145068, - [SMALL_STATE(4417)] = 145082, - [SMALL_STATE(4418)] = 145096, - [SMALL_STATE(4419)] = 145110, - [SMALL_STATE(4420)] = 145124, - [SMALL_STATE(4421)] = 145138, - [SMALL_STATE(4422)] = 145152, - [SMALL_STATE(4423)] = 145166, - [SMALL_STATE(4424)] = 145180, - [SMALL_STATE(4425)] = 145194, - [SMALL_STATE(4426)] = 145208, - [SMALL_STATE(4427)] = 145222, - [SMALL_STATE(4428)] = 145236, - [SMALL_STATE(4429)] = 145250, - [SMALL_STATE(4430)] = 145264, - [SMALL_STATE(4431)] = 145278, - [SMALL_STATE(4432)] = 145292, - [SMALL_STATE(4433)] = 145306, - [SMALL_STATE(4434)] = 145320, - [SMALL_STATE(4435)] = 145334, - [SMALL_STATE(4436)] = 145348, - [SMALL_STATE(4437)] = 145362, - [SMALL_STATE(4438)] = 145376, - [SMALL_STATE(4439)] = 145390, - [SMALL_STATE(4440)] = 145404, - [SMALL_STATE(4441)] = 145418, - [SMALL_STATE(4442)] = 145432, - [SMALL_STATE(4443)] = 145446, - [SMALL_STATE(4444)] = 145460, - [SMALL_STATE(4445)] = 145474, - [SMALL_STATE(4446)] = 145488, - [SMALL_STATE(4447)] = 145502, - [SMALL_STATE(4448)] = 145516, - [SMALL_STATE(4449)] = 145530, - [SMALL_STATE(4450)] = 145544, - [SMALL_STATE(4451)] = 145558, - [SMALL_STATE(4452)] = 145572, - [SMALL_STATE(4453)] = 145586, - [SMALL_STATE(4454)] = 145600, - [SMALL_STATE(4455)] = 145614, - [SMALL_STATE(4456)] = 145628, - [SMALL_STATE(4457)] = 145642, - [SMALL_STATE(4458)] = 145656, - [SMALL_STATE(4459)] = 145670, - [SMALL_STATE(4460)] = 145684, - [SMALL_STATE(4461)] = 145698, - [SMALL_STATE(4462)] = 145712, - [SMALL_STATE(4463)] = 145726, - [SMALL_STATE(4464)] = 145740, - [SMALL_STATE(4465)] = 145754, - [SMALL_STATE(4466)] = 145768, - [SMALL_STATE(4467)] = 145782, - [SMALL_STATE(4468)] = 145796, - [SMALL_STATE(4469)] = 145810, - [SMALL_STATE(4470)] = 145824, - [SMALL_STATE(4471)] = 145838, - [SMALL_STATE(4472)] = 145852, - [SMALL_STATE(4473)] = 145866, - [SMALL_STATE(4474)] = 145880, - [SMALL_STATE(4475)] = 145894, - [SMALL_STATE(4476)] = 145908, - [SMALL_STATE(4477)] = 145922, - [SMALL_STATE(4478)] = 145936, - [SMALL_STATE(4479)] = 145950, - [SMALL_STATE(4480)] = 145964, - [SMALL_STATE(4481)] = 145978, - [SMALL_STATE(4482)] = 145992, - [SMALL_STATE(4483)] = 146006, - [SMALL_STATE(4484)] = 146020, - [SMALL_STATE(4485)] = 146034, - [SMALL_STATE(4486)] = 146048, - [SMALL_STATE(4487)] = 146062, - [SMALL_STATE(4488)] = 146076, - [SMALL_STATE(4489)] = 146090, - [SMALL_STATE(4490)] = 146104, - [SMALL_STATE(4491)] = 146118, - [SMALL_STATE(4492)] = 146132, - [SMALL_STATE(4493)] = 146146, - [SMALL_STATE(4494)] = 146160, - [SMALL_STATE(4495)] = 146174, - [SMALL_STATE(4496)] = 146188, - [SMALL_STATE(4497)] = 146202, - [SMALL_STATE(4498)] = 146216, - [SMALL_STATE(4499)] = 146230, - [SMALL_STATE(4500)] = 146244, - [SMALL_STATE(4501)] = 146258, - [SMALL_STATE(4502)] = 146272, - [SMALL_STATE(4503)] = 146286, - [SMALL_STATE(4504)] = 146300, - [SMALL_STATE(4505)] = 146314, - [SMALL_STATE(4506)] = 146328, - [SMALL_STATE(4507)] = 146342, - [SMALL_STATE(4508)] = 146356, - [SMALL_STATE(4509)] = 146370, - [SMALL_STATE(4510)] = 146384, - [SMALL_STATE(4511)] = 146398, - [SMALL_STATE(4512)] = 146412, - [SMALL_STATE(4513)] = 146426, - [SMALL_STATE(4514)] = 146440, - [SMALL_STATE(4515)] = 146454, - [SMALL_STATE(4516)] = 146468, - [SMALL_STATE(4517)] = 146482, - [SMALL_STATE(4518)] = 146496, - [SMALL_STATE(4519)] = 146510, - [SMALL_STATE(4520)] = 146524, - [SMALL_STATE(4521)] = 146538, - [SMALL_STATE(4522)] = 146552, - [SMALL_STATE(4523)] = 146566, - [SMALL_STATE(4524)] = 146580, - [SMALL_STATE(4525)] = 146594, - [SMALL_STATE(4526)] = 146608, - [SMALL_STATE(4527)] = 146622, - [SMALL_STATE(4528)] = 146636, - [SMALL_STATE(4529)] = 146650, - [SMALL_STATE(4530)] = 146664, - [SMALL_STATE(4531)] = 146678, - [SMALL_STATE(4532)] = 146692, - [SMALL_STATE(4533)] = 146706, - [SMALL_STATE(4534)] = 146720, - [SMALL_STATE(4535)] = 146734, - [SMALL_STATE(4536)] = 146748, - [SMALL_STATE(4537)] = 146762, - [SMALL_STATE(4538)] = 146776, - [SMALL_STATE(4539)] = 146790, - [SMALL_STATE(4540)] = 146804, - [SMALL_STATE(4541)] = 146818, - [SMALL_STATE(4542)] = 146832, - [SMALL_STATE(4543)] = 146846, - [SMALL_STATE(4544)] = 146860, - [SMALL_STATE(4545)] = 146874, - [SMALL_STATE(4546)] = 146888, - [SMALL_STATE(4547)] = 146902, - [SMALL_STATE(4548)] = 146916, - [SMALL_STATE(4549)] = 146930, - [SMALL_STATE(4550)] = 146944, - [SMALL_STATE(4551)] = 146958, - [SMALL_STATE(4552)] = 146972, - [SMALL_STATE(4553)] = 146986, - [SMALL_STATE(4554)] = 147000, - [SMALL_STATE(4555)] = 147014, - [SMALL_STATE(4556)] = 147028, - [SMALL_STATE(4557)] = 147042, - [SMALL_STATE(4558)] = 147056, - [SMALL_STATE(4559)] = 147070, - [SMALL_STATE(4560)] = 147084, - [SMALL_STATE(4561)] = 147098, - [SMALL_STATE(4562)] = 147112, - [SMALL_STATE(4563)] = 147126, - [SMALL_STATE(4564)] = 147140, - [SMALL_STATE(4565)] = 147154, - [SMALL_STATE(4566)] = 147168, - [SMALL_STATE(4567)] = 147182, - [SMALL_STATE(4568)] = 147196, - [SMALL_STATE(4569)] = 147210, - [SMALL_STATE(4570)] = 147224, - [SMALL_STATE(4571)] = 147238, - [SMALL_STATE(4572)] = 147252, - [SMALL_STATE(4573)] = 147266, - [SMALL_STATE(4574)] = 147280, - [SMALL_STATE(4575)] = 147294, - [SMALL_STATE(4576)] = 147308, - [SMALL_STATE(4577)] = 147322, - [SMALL_STATE(4578)] = 147336, - [SMALL_STATE(4579)] = 147350, - [SMALL_STATE(4580)] = 147364, - [SMALL_STATE(4581)] = 147378, - [SMALL_STATE(4582)] = 147392, - [SMALL_STATE(4583)] = 147406, - [SMALL_STATE(4584)] = 147420, - [SMALL_STATE(4585)] = 147434, - [SMALL_STATE(4586)] = 147448, - [SMALL_STATE(4587)] = 147462, - [SMALL_STATE(4588)] = 147476, - [SMALL_STATE(4589)] = 147490, - [SMALL_STATE(4590)] = 147504, - [SMALL_STATE(4591)] = 147518, - [SMALL_STATE(4592)] = 147532, - [SMALL_STATE(4593)] = 147546, - [SMALL_STATE(4594)] = 147560, - [SMALL_STATE(4595)] = 147574, - [SMALL_STATE(4596)] = 147588, - [SMALL_STATE(4597)] = 147602, - [SMALL_STATE(4598)] = 147616, - [SMALL_STATE(4599)] = 147630, - [SMALL_STATE(4600)] = 147644, - [SMALL_STATE(4601)] = 147658, - [SMALL_STATE(4602)] = 147672, - [SMALL_STATE(4603)] = 147686, - [SMALL_STATE(4604)] = 147700, - [SMALL_STATE(4605)] = 147714, - [SMALL_STATE(4606)] = 147728, - [SMALL_STATE(4607)] = 147742, - [SMALL_STATE(4608)] = 147756, - [SMALL_STATE(4609)] = 147770, - [SMALL_STATE(4610)] = 147784, - [SMALL_STATE(4611)] = 147798, - [SMALL_STATE(4612)] = 147812, - [SMALL_STATE(4613)] = 147826, - [SMALL_STATE(4614)] = 147840, - [SMALL_STATE(4615)] = 147854, - [SMALL_STATE(4616)] = 147868, - [SMALL_STATE(4617)] = 147882, - [SMALL_STATE(4618)] = 147896, - [SMALL_STATE(4619)] = 147910, - [SMALL_STATE(4620)] = 147924, - [SMALL_STATE(4621)] = 147938, - [SMALL_STATE(4622)] = 147952, - [SMALL_STATE(4623)] = 147966, - [SMALL_STATE(4624)] = 147980, - [SMALL_STATE(4625)] = 147994, - [SMALL_STATE(4626)] = 148008, - [SMALL_STATE(4627)] = 148022, - [SMALL_STATE(4628)] = 148036, - [SMALL_STATE(4629)] = 148050, - [SMALL_STATE(4630)] = 148064, - [SMALL_STATE(4631)] = 148078, - [SMALL_STATE(4632)] = 148092, - [SMALL_STATE(4633)] = 148096, - [SMALL_STATE(4634)] = 148100, + [SMALL_STATE(1650)] = 0, + [SMALL_STATE(1651)] = 91, + [SMALL_STATE(1652)] = 182, + [SMALL_STATE(1653)] = 277, + [SMALL_STATE(1654)] = 378, + [SMALL_STATE(1655)] = 477, + [SMALL_STATE(1656)] = 570, + [SMALL_STATE(1657)] = 665, + [SMALL_STATE(1658)] = 756, + [SMALL_STATE(1659)] = 849, + [SMALL_STATE(1660)] = 972, + [SMALL_STATE(1661)] = 1085, + [SMALL_STATE(1662)] = 1198, + [SMALL_STATE(1663)] = 1272, + [SMALL_STATE(1664)] = 1388, + [SMALL_STATE(1665)] = 1466, + [SMALL_STATE(1666)] = 1544, + [SMALL_STATE(1667)] = 1618, + [SMALL_STATE(1668)] = 1691, + [SMALL_STATE(1669)] = 1784, + [SMALL_STATE(1670)] = 1859, + [SMALL_STATE(1671)] = 1932, + [SMALL_STATE(1672)] = 2005, + [SMALL_STATE(1673)] = 2080, + [SMALL_STATE(1674)] = 2153, + [SMALL_STATE(1675)] = 2228, + [SMALL_STATE(1676)] = 2317, + [SMALL_STATE(1677)] = 2390, + [SMALL_STATE(1678)] = 2501, + [SMALL_STATE(1679)] = 2612, + [SMALL_STATE(1680)] = 2701, + [SMALL_STATE(1681)] = 2778, + [SMALL_STATE(1682)] = 2851, + [SMALL_STATE(1683)] = 2924, + [SMALL_STATE(1684)] = 2997, + [SMALL_STATE(1685)] = 3108, + [SMALL_STATE(1686)] = 3181, + [SMALL_STATE(1687)] = 3254, + [SMALL_STATE(1688)] = 3327, + [SMALL_STATE(1689)] = 3400, + [SMALL_STATE(1690)] = 3473, + [SMALL_STATE(1691)] = 3546, + [SMALL_STATE(1692)] = 3619, + [SMALL_STATE(1693)] = 3692, + [SMALL_STATE(1694)] = 3765, + [SMALL_STATE(1695)] = 3892, + [SMALL_STATE(1696)] = 4019, + [SMALL_STATE(1697)] = 4094, + [SMALL_STATE(1698)] = 4167, + [SMALL_STATE(1699)] = 4242, + [SMALL_STATE(1700)] = 4315, + [SMALL_STATE(1701)] = 4388, + [SMALL_STATE(1702)] = 4479, + [SMALL_STATE(1703)] = 4552, + [SMALL_STATE(1704)] = 4625, + [SMALL_STATE(1705)] = 4724, + [SMALL_STATE(1706)] = 4813, + [SMALL_STATE(1707)] = 4906, + [SMALL_STATE(1708)] = 5003, + [SMALL_STATE(1709)] = 5078, + [SMALL_STATE(1710)] = 5153, + [SMALL_STATE(1711)] = 5227, + [SMALL_STATE(1712)] = 5299, + [SMALL_STATE(1713)] = 5371, + [SMALL_STATE(1714)] = 5443, + [SMALL_STATE(1715)] = 5515, + [SMALL_STATE(1716)] = 5587, + [SMALL_STATE(1717)] = 5659, + [SMALL_STATE(1718)] = 5731, + [SMALL_STATE(1719)] = 5803, + [SMALL_STATE(1720)] = 5877, + [SMALL_STATE(1721)] = 5949, + [SMALL_STATE(1722)] = 6021, + [SMALL_STATE(1723)] = 6093, + [SMALL_STATE(1724)] = 6165, + [SMALL_STATE(1725)] = 6237, + [SMALL_STATE(1726)] = 6309, + [SMALL_STATE(1727)] = 6381, + [SMALL_STATE(1728)] = 6453, + [SMALL_STATE(1729)] = 6525, + [SMALL_STATE(1730)] = 6597, + [SMALL_STATE(1731)] = 6669, + [SMALL_STATE(1732)] = 6741, + [SMALL_STATE(1733)] = 6813, + [SMALL_STATE(1734)] = 6885, + [SMALL_STATE(1735)] = 6957, + [SMALL_STATE(1736)] = 7029, + [SMALL_STATE(1737)] = 7101, + [SMALL_STATE(1738)] = 7173, + [SMALL_STATE(1739)] = 7245, + [SMALL_STATE(1740)] = 7317, + [SMALL_STATE(1741)] = 7389, + [SMALL_STATE(1742)] = 7463, + [SMALL_STATE(1743)] = 7535, + [SMALL_STATE(1744)] = 7609, + [SMALL_STATE(1745)] = 7681, + [SMALL_STATE(1746)] = 7753, + [SMALL_STATE(1747)] = 7827, + [SMALL_STATE(1748)] = 7899, + [SMALL_STATE(1749)] = 7971, + [SMALL_STATE(1750)] = 8043, + [SMALL_STATE(1751)] = 8115, + [SMALL_STATE(1752)] = 8187, + [SMALL_STATE(1753)] = 8261, + [SMALL_STATE(1754)] = 8333, + [SMALL_STATE(1755)] = 8409, + [SMALL_STATE(1756)] = 8481, + [SMALL_STATE(1757)] = 8553, + [SMALL_STATE(1758)] = 8625, + [SMALL_STATE(1759)] = 8697, + [SMALL_STATE(1760)] = 8769, + [SMALL_STATE(1761)] = 8841, + [SMALL_STATE(1762)] = 8913, + [SMALL_STATE(1763)] = 8985, + [SMALL_STATE(1764)] = 9057, + [SMALL_STATE(1765)] = 9129, + [SMALL_STATE(1766)] = 9201, + [SMALL_STATE(1767)] = 9273, + [SMALL_STATE(1768)] = 9345, + [SMALL_STATE(1769)] = 9417, + [SMALL_STATE(1770)] = 9491, + [SMALL_STATE(1771)] = 9563, + [SMALL_STATE(1772)] = 9635, + [SMALL_STATE(1773)] = 9707, + [SMALL_STATE(1774)] = 9779, + [SMALL_STATE(1775)] = 9851, + [SMALL_STATE(1776)] = 9923, + [SMALL_STATE(1777)] = 9995, + [SMALL_STATE(1778)] = 10067, + [SMALL_STATE(1779)] = 10143, + [SMALL_STATE(1780)] = 10215, + [SMALL_STATE(1781)] = 10287, + [SMALL_STATE(1782)] = 10359, + [SMALL_STATE(1783)] = 10431, + [SMALL_STATE(1784)] = 10503, + [SMALL_STATE(1785)] = 10575, + [SMALL_STATE(1786)] = 10647, + [SMALL_STATE(1787)] = 10719, + [SMALL_STATE(1788)] = 10791, + [SMALL_STATE(1789)] = 10863, + [SMALL_STATE(1790)] = 10935, + [SMALL_STATE(1791)] = 11007, + [SMALL_STATE(1792)] = 11108, + [SMALL_STATE(1793)] = 11201, + [SMALL_STATE(1794)] = 11316, + [SMALL_STATE(1795)] = 11407, + [SMALL_STATE(1796)] = 11502, + [SMALL_STATE(1797)] = 11603, + [SMALL_STATE(1798)] = 11706, + [SMALL_STATE(1799)] = 11801, + [SMALL_STATE(1800)] = 11922, + [SMALL_STATE(1801)] = 11995, + [SMALL_STATE(1802)] = 12068, + [SMALL_STATE(1803)] = 12183, + [SMALL_STATE(1804)] = 12274, + [SMALL_STATE(1805)] = 12347, + [SMALL_STATE(1806)] = 12440, + [SMALL_STATE(1807)] = 12535, + [SMALL_STATE(1808)] = 12650, + [SMALL_STATE(1809)] = 12765, + [SMALL_STATE(1810)] = 12838, + [SMALL_STATE(1811)] = 12941, + [SMALL_STATE(1812)] = 13032, + [SMALL_STATE(1813)] = 13127, + [SMALL_STATE(1814)] = 13200, + [SMALL_STATE(1815)] = 13291, + [SMALL_STATE(1816)] = 13364, + [SMALL_STATE(1817)] = 13483, + [SMALL_STATE(1818)] = 13602, + [SMALL_STATE(1819)] = 13693, + [SMALL_STATE(1820)] = 13784, + [SMALL_STATE(1821)] = 13854, + [SMALL_STATE(1822)] = 13924, + [SMALL_STATE(1823)] = 13994, + [SMALL_STATE(1824)] = 14068, + [SMALL_STATE(1825)] = 14142, + [SMALL_STATE(1826)] = 14256, + [SMALL_STATE(1827)] = 14370, + [SMALL_STATE(1828)] = 14448, + [SMALL_STATE(1829)] = 14562, + [SMALL_STATE(1830)] = 14676, + [SMALL_STATE(1831)] = 14746, + [SMALL_STATE(1832)] = 14816, + [SMALL_STATE(1833)] = 14886, + [SMALL_STATE(1834)] = 14956, + [SMALL_STATE(1835)] = 15026, + [SMALL_STATE(1836)] = 15096, + [SMALL_STATE(1837)] = 15166, + [SMALL_STATE(1838)] = 15236, + [SMALL_STATE(1839)] = 15306, + [SMALL_STATE(1840)] = 15376, + [SMALL_STATE(1841)] = 15446, + [SMALL_STATE(1842)] = 15516, + [SMALL_STATE(1843)] = 15586, + [SMALL_STATE(1844)] = 15656, + [SMALL_STATE(1845)] = 15726, + [SMALL_STATE(1846)] = 15796, + [SMALL_STATE(1847)] = 15866, + [SMALL_STATE(1848)] = 15936, + [SMALL_STATE(1849)] = 16006, + [SMALL_STATE(1850)] = 16076, + [SMALL_STATE(1851)] = 16146, + [SMALL_STATE(1852)] = 16216, + [SMALL_STATE(1853)] = 16286, + [SMALL_STATE(1854)] = 16356, + [SMALL_STATE(1855)] = 16426, + [SMALL_STATE(1856)] = 16496, + [SMALL_STATE(1857)] = 16566, + [SMALL_STATE(1858)] = 16636, + [SMALL_STATE(1859)] = 16706, + [SMALL_STATE(1860)] = 16776, + [SMALL_STATE(1861)] = 16846, + [SMALL_STATE(1862)] = 16916, + [SMALL_STATE(1863)] = 16986, + [SMALL_STATE(1864)] = 17056, + [SMALL_STATE(1865)] = 17126, + [SMALL_STATE(1866)] = 17196, + [SMALL_STATE(1867)] = 17266, + [SMALL_STATE(1868)] = 17336, + [SMALL_STATE(1869)] = 17406, + [SMALL_STATE(1870)] = 17476, + [SMALL_STATE(1871)] = 17546, + [SMALL_STATE(1872)] = 17616, + [SMALL_STATE(1873)] = 17686, + [SMALL_STATE(1874)] = 17756, + [SMALL_STATE(1875)] = 17826, + [SMALL_STATE(1876)] = 17896, + [SMALL_STATE(1877)] = 17966, + [SMALL_STATE(1878)] = 18036, + [SMALL_STATE(1879)] = 18106, + [SMALL_STATE(1880)] = 18176, + [SMALL_STATE(1881)] = 18246, + [SMALL_STATE(1882)] = 18316, + [SMALL_STATE(1883)] = 18386, + [SMALL_STATE(1884)] = 18456, + [SMALL_STATE(1885)] = 18528, + [SMALL_STATE(1886)] = 18598, + [SMALL_STATE(1887)] = 18668, + [SMALL_STATE(1888)] = 18738, + [SMALL_STATE(1889)] = 18808, + [SMALL_STATE(1890)] = 18878, + [SMALL_STATE(1891)] = 18948, + [SMALL_STATE(1892)] = 19018, + [SMALL_STATE(1893)] = 19088, + [SMALL_STATE(1894)] = 19158, + [SMALL_STATE(1895)] = 19228, + [SMALL_STATE(1896)] = 19298, + [SMALL_STATE(1897)] = 19368, + [SMALL_STATE(1898)] = 19438, + [SMALL_STATE(1899)] = 19508, + [SMALL_STATE(1900)] = 19578, + [SMALL_STATE(1901)] = 19648, + [SMALL_STATE(1902)] = 19718, + [SMALL_STATE(1903)] = 19788, + [SMALL_STATE(1904)] = 19858, + [SMALL_STATE(1905)] = 19928, + [SMALL_STATE(1906)] = 19998, + [SMALL_STATE(1907)] = 20068, + [SMALL_STATE(1908)] = 20138, + [SMALL_STATE(1909)] = 20208, + [SMALL_STATE(1910)] = 20278, + [SMALL_STATE(1911)] = 20348, + [SMALL_STATE(1912)] = 20418, + [SMALL_STATE(1913)] = 20488, + [SMALL_STATE(1914)] = 20558, + [SMALL_STATE(1915)] = 20628, + [SMALL_STATE(1916)] = 20698, + [SMALL_STATE(1917)] = 20768, + [SMALL_STATE(1918)] = 20838, + [SMALL_STATE(1919)] = 20908, + [SMALL_STATE(1920)] = 20978, + [SMALL_STATE(1921)] = 21048, + [SMALL_STATE(1922)] = 21118, + [SMALL_STATE(1923)] = 21188, + [SMALL_STATE(1924)] = 21258, + [SMALL_STATE(1925)] = 21328, + [SMALL_STATE(1926)] = 21398, + [SMALL_STATE(1927)] = 21468, + [SMALL_STATE(1928)] = 21538, + [SMALL_STATE(1929)] = 21610, + [SMALL_STATE(1930)] = 21682, + [SMALL_STATE(1931)] = 21754, + [SMALL_STATE(1932)] = 21848, + [SMALL_STATE(1933)] = 21950, + [SMALL_STATE(1934)] = 22050, + [SMALL_STATE(1935)] = 22144, + [SMALL_STATE(1936)] = 22236, + [SMALL_STATE(1937)] = 22310, + [SMALL_STATE(1938)] = 22384, + [SMALL_STATE(1939)] = 22454, + [SMALL_STATE(1940)] = 22525, + [SMALL_STATE(1941)] = 22596, + [SMALL_STATE(1942)] = 22709, + [SMALL_STATE(1943)] = 22776, + [SMALL_STATE(1944)] = 22845, + [SMALL_STATE(1945)] = 22922, + [SMALL_STATE(1946)] = 23035, + [SMALL_STATE(1947)] = 23148, + [SMALL_STATE(1948)] = 23261, + [SMALL_STATE(1949)] = 23332, + [SMALL_STATE(1950)] = 23403, + [SMALL_STATE(1951)] = 23474, + [SMALL_STATE(1952)] = 23545, + [SMALL_STATE(1953)] = 23613, + [SMALL_STATE(1954)] = 23681, + [SMALL_STATE(1955)] = 23749, + [SMALL_STATE(1956)] = 23817, + [SMALL_STATE(1957)] = 23885, + [SMALL_STATE(1958)] = 23953, + [SMALL_STATE(1959)] = 24021, + [SMALL_STATE(1960)] = 24089, + [SMALL_STATE(1961)] = 24157, + [SMALL_STATE(1962)] = 24225, + [SMALL_STATE(1963)] = 24293, + [SMALL_STATE(1964)] = 24361, + [SMALL_STATE(1965)] = 24429, + [SMALL_STATE(1966)] = 24497, + [SMALL_STATE(1967)] = 24565, + [SMALL_STATE(1968)] = 24633, + [SMALL_STATE(1969)] = 24701, + [SMALL_STATE(1970)] = 24769, + [SMALL_STATE(1971)] = 24837, + [SMALL_STATE(1972)] = 24905, + [SMALL_STATE(1973)] = 24973, + [SMALL_STATE(1974)] = 25041, + [SMALL_STATE(1975)] = 25109, + [SMALL_STATE(1976)] = 25177, + [SMALL_STATE(1977)] = 25245, + [SMALL_STATE(1978)] = 25313, + [SMALL_STATE(1979)] = 25381, + [SMALL_STATE(1980)] = 25449, + [SMALL_STATE(1981)] = 25517, + [SMALL_STATE(1982)] = 25585, + [SMALL_STATE(1983)] = 25653, + [SMALL_STATE(1984)] = 25721, + [SMALL_STATE(1985)] = 25789, + [SMALL_STATE(1986)] = 25857, + [SMALL_STATE(1987)] = 25925, + [SMALL_STATE(1988)] = 25993, + [SMALL_STATE(1989)] = 26061, + [SMALL_STATE(1990)] = 26129, + [SMALL_STATE(1991)] = 26197, + [SMALL_STATE(1992)] = 26265, + [SMALL_STATE(1993)] = 26333, + [SMALL_STATE(1994)] = 26401, + [SMALL_STATE(1995)] = 26469, + [SMALL_STATE(1996)] = 26537, + [SMALL_STATE(1997)] = 26605, + [SMALL_STATE(1998)] = 26673, + [SMALL_STATE(1999)] = 26741, + [SMALL_STATE(2000)] = 26809, + [SMALL_STATE(2001)] = 26877, + [SMALL_STATE(2002)] = 26945, + [SMALL_STATE(2003)] = 27013, + [SMALL_STATE(2004)] = 27081, + [SMALL_STATE(2005)] = 27149, + [SMALL_STATE(2006)] = 27217, + [SMALL_STATE(2007)] = 27285, + [SMALL_STATE(2008)] = 27353, + [SMALL_STATE(2009)] = 27421, + [SMALL_STATE(2010)] = 27489, + [SMALL_STATE(2011)] = 27559, + [SMALL_STATE(2012)] = 27627, + [SMALL_STATE(2013)] = 27695, + [SMALL_STATE(2014)] = 27763, + [SMALL_STATE(2015)] = 27831, + [SMALL_STATE(2016)] = 27899, + [SMALL_STATE(2017)] = 27967, + [SMALL_STATE(2018)] = 28035, + [SMALL_STATE(2019)] = 28103, + [SMALL_STATE(2020)] = 28171, + [SMALL_STATE(2021)] = 28239, + [SMALL_STATE(2022)] = 28307, + [SMALL_STATE(2023)] = 28375, + [SMALL_STATE(2024)] = 28443, + [SMALL_STATE(2025)] = 28511, + [SMALL_STATE(2026)] = 28579, + [SMALL_STATE(2027)] = 28647, + [SMALL_STATE(2028)] = 28715, + [SMALL_STATE(2029)] = 28783, + [SMALL_STATE(2030)] = 28851, + [SMALL_STATE(2031)] = 28919, + [SMALL_STATE(2032)] = 28989, + [SMALL_STATE(2033)] = 29057, + [SMALL_STATE(2034)] = 29125, + [SMALL_STATE(2035)] = 29193, + [SMALL_STATE(2036)] = 29261, + [SMALL_STATE(2037)] = 29329, + [SMALL_STATE(2038)] = 29397, + [SMALL_STATE(2039)] = 29465, + [SMALL_STATE(2040)] = 29533, + [SMALL_STATE(2041)] = 29601, + [SMALL_STATE(2042)] = 29671, + [SMALL_STATE(2043)] = 29739, + [SMALL_STATE(2044)] = 29807, + [SMALL_STATE(2045)] = 29875, + [SMALL_STATE(2046)] = 29943, + [SMALL_STATE(2047)] = 30011, + [SMALL_STATE(2048)] = 30081, + [SMALL_STATE(2049)] = 30151, + [SMALL_STATE(2050)] = 30219, + [SMALL_STATE(2051)] = 30287, + [SMALL_STATE(2052)] = 30355, + [SMALL_STATE(2053)] = 30423, + [SMALL_STATE(2054)] = 30491, + [SMALL_STATE(2055)] = 30559, + [SMALL_STATE(2056)] = 30627, + [SMALL_STATE(2057)] = 30695, + [SMALL_STATE(2058)] = 30763, + [SMALL_STATE(2059)] = 30835, + [SMALL_STATE(2060)] = 30903, + [SMALL_STATE(2061)] = 30971, + [SMALL_STATE(2062)] = 31039, + [SMALL_STATE(2063)] = 31107, + [SMALL_STATE(2064)] = 31177, + [SMALL_STATE(2065)] = 31245, + [SMALL_STATE(2066)] = 31313, + [SMALL_STATE(2067)] = 31381, + [SMALL_STATE(2068)] = 31449, + [SMALL_STATE(2069)] = 31517, + [SMALL_STATE(2070)] = 31585, + [SMALL_STATE(2071)] = 31653, + [SMALL_STATE(2072)] = 31721, + [SMALL_STATE(2073)] = 31789, + [SMALL_STATE(2074)] = 31857, + [SMALL_STATE(2075)] = 31925, + [SMALL_STATE(2076)] = 31993, + [SMALL_STATE(2077)] = 32061, + [SMALL_STATE(2078)] = 32129, + [SMALL_STATE(2079)] = 32197, + [SMALL_STATE(2080)] = 32265, + [SMALL_STATE(2081)] = 32333, + [SMALL_STATE(2082)] = 32401, + [SMALL_STATE(2083)] = 32469, + [SMALL_STATE(2084)] = 32537, + [SMALL_STATE(2085)] = 32605, + [SMALL_STATE(2086)] = 32673, + [SMALL_STATE(2087)] = 32741, + [SMALL_STATE(2088)] = 32809, + [SMALL_STATE(2089)] = 32877, + [SMALL_STATE(2090)] = 32945, + [SMALL_STATE(2091)] = 33013, + [SMALL_STATE(2092)] = 33081, + [SMALL_STATE(2093)] = 33149, + [SMALL_STATE(2094)] = 33217, + [SMALL_STATE(2095)] = 33285, + [SMALL_STATE(2096)] = 33353, + [SMALL_STATE(2097)] = 33421, + [SMALL_STATE(2098)] = 33491, + [SMALL_STATE(2099)] = 33559, + [SMALL_STATE(2100)] = 33629, + [SMALL_STATE(2101)] = 33697, + [SMALL_STATE(2102)] = 33765, + [SMALL_STATE(2103)] = 33833, + [SMALL_STATE(2104)] = 33903, + [SMALL_STATE(2105)] = 33973, + [SMALL_STATE(2106)] = 34041, + [SMALL_STATE(2107)] = 34109, + [SMALL_STATE(2108)] = 34177, + [SMALL_STATE(2109)] = 34245, + [SMALL_STATE(2110)] = 34313, + [SMALL_STATE(2111)] = 34381, + [SMALL_STATE(2112)] = 34449, + [SMALL_STATE(2113)] = 34517, + [SMALL_STATE(2114)] = 34585, + [SMALL_STATE(2115)] = 34653, + [SMALL_STATE(2116)] = 34721, + [SMALL_STATE(2117)] = 34789, + [SMALL_STATE(2118)] = 34857, + [SMALL_STATE(2119)] = 34925, + [SMALL_STATE(2120)] = 34993, + [SMALL_STATE(2121)] = 35061, + [SMALL_STATE(2122)] = 35129, + [SMALL_STATE(2123)] = 35197, + [SMALL_STATE(2124)] = 35265, + [SMALL_STATE(2125)] = 35337, + [SMALL_STATE(2126)] = 35405, + [SMALL_STATE(2127)] = 35473, + [SMALL_STATE(2128)] = 35541, + [SMALL_STATE(2129)] = 35609, + [SMALL_STATE(2130)] = 35677, + [SMALL_STATE(2131)] = 35745, + [SMALL_STATE(2132)] = 35815, + [SMALL_STATE(2133)] = 35883, + [SMALL_STATE(2134)] = 35951, + [SMALL_STATE(2135)] = 36019, + [SMALL_STATE(2136)] = 36087, + [SMALL_STATE(2137)] = 36155, + [SMALL_STATE(2138)] = 36223, + [SMALL_STATE(2139)] = 36291, + [SMALL_STATE(2140)] = 36359, + [SMALL_STATE(2141)] = 36427, + [SMALL_STATE(2142)] = 36497, + [SMALL_STATE(2143)] = 36569, + [SMALL_STATE(2144)] = 36637, + [SMALL_STATE(2145)] = 36705, + [SMALL_STATE(2146)] = 36773, + [SMALL_STATE(2147)] = 36841, + [SMALL_STATE(2148)] = 36909, + [SMALL_STATE(2149)] = 36977, + [SMALL_STATE(2150)] = 37049, + [SMALL_STATE(2151)] = 37117, + [SMALL_STATE(2152)] = 37185, + [SMALL_STATE(2153)] = 37253, + [SMALL_STATE(2154)] = 37321, + [SMALL_STATE(2155)] = 37389, + [SMALL_STATE(2156)] = 37457, + [SMALL_STATE(2157)] = 37524, + [SMALL_STATE(2158)] = 37591, + [SMALL_STATE(2159)] = 37658, + [SMALL_STATE(2160)] = 37725, + [SMALL_STATE(2161)] = 37792, + [SMALL_STATE(2162)] = 37874, + [SMALL_STATE(2163)] = 37944, + [SMALL_STATE(2164)] = 38026, + [SMALL_STATE(2165)] = 38108, + [SMALL_STATE(2166)] = 38177, + [SMALL_STATE(2167)] = 38248, + [SMALL_STATE(2168)] = 38317, + [SMALL_STATE(2169)] = 38381, + [SMALL_STATE(2170)] = 38445, + [SMALL_STATE(2171)] = 38509, + [SMALL_STATE(2172)] = 38573, + [SMALL_STATE(2173)] = 38639, + [SMALL_STATE(2174)] = 38705, + [SMALL_STATE(2175)] = 38769, + [SMALL_STATE(2176)] = 38833, + [SMALL_STATE(2177)] = 38899, + [SMALL_STATE(2178)] = 38963, + [SMALL_STATE(2179)] = 39027, + [SMALL_STATE(2180)] = 39091, + [SMALL_STATE(2181)] = 39155, + [SMALL_STATE(2182)] = 39219, + [SMALL_STATE(2183)] = 39327, + [SMALL_STATE(2184)] = 39393, + [SMALL_STATE(2185)] = 39457, + [SMALL_STATE(2186)] = 39525, + [SMALL_STATE(2187)] = 39588, + [SMALL_STATE(2188)] = 39651, + [SMALL_STATE(2189)] = 39752, + [SMALL_STATE(2190)] = 39853, + [SMALL_STATE(2191)] = 39942, + [SMALL_STATE(2192)] = 40029, + [SMALL_STATE(2193)] = 40092, + [SMALL_STATE(2194)] = 40157, + [SMALL_STATE(2195)] = 40220, + [SMALL_STATE(2196)] = 40283, + [SMALL_STATE(2197)] = 40366, + [SMALL_STATE(2198)] = 40429, + [SMALL_STATE(2199)] = 40510, + [SMALL_STATE(2200)] = 40573, + [SMALL_STATE(2201)] = 40636, + [SMALL_STATE(2202)] = 40701, + [SMALL_STATE(2203)] = 40764, + [SMALL_STATE(2204)] = 40827, + [SMALL_STATE(2205)] = 40892, + [SMALL_STATE(2206)] = 40955, + [SMALL_STATE(2207)] = 41018, + [SMALL_STATE(2208)] = 41081, + [SMALL_STATE(2209)] = 41144, + [SMALL_STATE(2210)] = 41207, + [SMALL_STATE(2211)] = 41270, + [SMALL_STATE(2212)] = 41333, + [SMALL_STATE(2213)] = 41396, + [SMALL_STATE(2214)] = 41479, + [SMALL_STATE(2215)] = 41542, + [SMALL_STATE(2216)] = 41605, + [SMALL_STATE(2217)] = 41668, + [SMALL_STATE(2218)] = 41731, + [SMALL_STATE(2219)] = 41796, + [SMALL_STATE(2220)] = 41859, + [SMALL_STATE(2221)] = 41922, + [SMALL_STATE(2222)] = 41985, + [SMALL_STATE(2223)] = 42048, + [SMALL_STATE(2224)] = 42111, + [SMALL_STATE(2225)] = 42174, + [SMALL_STATE(2226)] = 42237, + [SMALL_STATE(2227)] = 42300, + [SMALL_STATE(2228)] = 42363, + [SMALL_STATE(2229)] = 42426, + [SMALL_STATE(2230)] = 42489, + [SMALL_STATE(2231)] = 42552, + [SMALL_STATE(2232)] = 42615, + [SMALL_STATE(2233)] = 42678, + [SMALL_STATE(2234)] = 42741, + [SMALL_STATE(2235)] = 42804, + [SMALL_STATE(2236)] = 42867, + [SMALL_STATE(2237)] = 42930, + [SMALL_STATE(2238)] = 42993, + [SMALL_STATE(2239)] = 43056, + [SMALL_STATE(2240)] = 43119, + [SMALL_STATE(2241)] = 43182, + [SMALL_STATE(2242)] = 43245, + [SMALL_STATE(2243)] = 43308, + [SMALL_STATE(2244)] = 43371, + [SMALL_STATE(2245)] = 43434, + [SMALL_STATE(2246)] = 43497, + [SMALL_STATE(2247)] = 43560, + [SMALL_STATE(2248)] = 43623, + [SMALL_STATE(2249)] = 43686, + [SMALL_STATE(2250)] = 43749, + [SMALL_STATE(2251)] = 43812, + [SMALL_STATE(2252)] = 43875, + [SMALL_STATE(2253)] = 43938, + [SMALL_STATE(2254)] = 44001, + [SMALL_STATE(2255)] = 44064, + [SMALL_STATE(2256)] = 44127, + [SMALL_STATE(2257)] = 44190, + [SMALL_STATE(2258)] = 44253, + [SMALL_STATE(2259)] = 44316, + [SMALL_STATE(2260)] = 44379, + [SMALL_STATE(2261)] = 44442, + [SMALL_STATE(2262)] = 44505, + [SMALL_STATE(2263)] = 44568, + [SMALL_STATE(2264)] = 44631, + [SMALL_STATE(2265)] = 44694, + [SMALL_STATE(2266)] = 44757, + [SMALL_STATE(2267)] = 44820, + [SMALL_STATE(2268)] = 44883, + [SMALL_STATE(2269)] = 44946, + [SMALL_STATE(2270)] = 45009, + [SMALL_STATE(2271)] = 45072, + [SMALL_STATE(2272)] = 45135, + [SMALL_STATE(2273)] = 45198, + [SMALL_STATE(2274)] = 45263, + [SMALL_STATE(2275)] = 45326, + [SMALL_STATE(2276)] = 45389, + [SMALL_STATE(2277)] = 45452, + [SMALL_STATE(2278)] = 45515, + [SMALL_STATE(2279)] = 45578, + [SMALL_STATE(2280)] = 45641, + [SMALL_STATE(2281)] = 45704, + [SMALL_STATE(2282)] = 45767, + [SMALL_STATE(2283)] = 45830, + [SMALL_STATE(2284)] = 45893, + [SMALL_STATE(2285)] = 45956, + [SMALL_STATE(2286)] = 46019, + [SMALL_STATE(2287)] = 46082, + [SMALL_STATE(2288)] = 46145, + [SMALL_STATE(2289)] = 46208, + [SMALL_STATE(2290)] = 46271, + [SMALL_STATE(2291)] = 46334, + [SMALL_STATE(2292)] = 46397, + [SMALL_STATE(2293)] = 46460, + [SMALL_STATE(2294)] = 46571, + [SMALL_STATE(2295)] = 46634, + [SMALL_STATE(2296)] = 46697, + [SMALL_STATE(2297)] = 46760, + [SMALL_STATE(2298)] = 46823, + [SMALL_STATE(2299)] = 46905, + [SMALL_STATE(2300)] = 47005, + [SMALL_STATE(2301)] = 47105, + [SMALL_STATE(2302)] = 47189, + [SMALL_STATE(2303)] = 47289, + [SMALL_STATE(2304)] = 47373, + [SMALL_STATE(2305)] = 47435, + [SMALL_STATE(2306)] = 47499, + [SMALL_STATE(2307)] = 47561, + [SMALL_STATE(2308)] = 47645, + [SMALL_STATE(2309)] = 47707, + [SMALL_STATE(2310)] = 47807, + [SMALL_STATE(2311)] = 47895, + [SMALL_STATE(2312)] = 47957, + [SMALL_STATE(2313)] = 48037, + [SMALL_STATE(2314)] = 48119, + [SMALL_STATE(2315)] = 48205, + [SMALL_STATE(2316)] = 48269, + [SMALL_STATE(2317)] = 48374, + [SMALL_STATE(2318)] = 48439, + [SMALL_STATE(2319)] = 48504, + [SMALL_STATE(2320)] = 48566, + [SMALL_STATE(2321)] = 48628, + [SMALL_STATE(2322)] = 48690, + [SMALL_STATE(2323)] = 48752, + [SMALL_STATE(2324)] = 48828, + [SMALL_STATE(2325)] = 48904, + [SMALL_STATE(2326)] = 48966, + [SMALL_STATE(2327)] = 49068, + [SMALL_STATE(2328)] = 49144, + [SMALL_STATE(2329)] = 49257, + [SMALL_STATE(2330)] = 49316, + [SMALL_STATE(2331)] = 49375, + [SMALL_STATE(2332)] = 49488, + [SMALL_STATE(2333)] = 49601, + [SMALL_STATE(2334)] = 49660, + [SMALL_STATE(2335)] = 49719, + [SMALL_STATE(2336)] = 49780, + [SMALL_STATE(2337)] = 49877, + [SMALL_STATE(2338)] = 49936, + [SMALL_STATE(2339)] = 49995, + [SMALL_STATE(2340)] = 50054, + [SMALL_STATE(2341)] = 50113, + [SMALL_STATE(2342)] = 50172, + [SMALL_STATE(2343)] = 50231, + [SMALL_STATE(2344)] = 50290, + [SMALL_STATE(2345)] = 50369, + [SMALL_STATE(2346)] = 50452, + [SMALL_STATE(2347)] = 50537, + [SMALL_STATE(2348)] = 50634, + [SMALL_STATE(2349)] = 50693, + [SMALL_STATE(2350)] = 50772, + [SMALL_STATE(2351)] = 50831, + [SMALL_STATE(2352)] = 50892, + [SMALL_STATE(2353)] = 50951, + [SMALL_STATE(2354)] = 51010, + [SMALL_STATE(2355)] = 51069, + [SMALL_STATE(2356)] = 51128, + [SMALL_STATE(2357)] = 51187, + [SMALL_STATE(2358)] = 51246, + [SMALL_STATE(2359)] = 51305, + [SMALL_STATE(2360)] = 51364, + [SMALL_STATE(2361)] = 51423, + [SMALL_STATE(2362)] = 51520, + [SMALL_STATE(2363)] = 51579, + [SMALL_STATE(2364)] = 51692, + [SMALL_STATE(2365)] = 51751, + [SMALL_STATE(2366)] = 51810, + [SMALL_STATE(2367)] = 51869, + [SMALL_STATE(2368)] = 51928, + [SMALL_STATE(2369)] = 52007, + [SMALL_STATE(2370)] = 52092, + [SMALL_STATE(2371)] = 52205, + [SMALL_STATE(2372)] = 52282, + [SMALL_STATE(2373)] = 52365, + [SMALL_STATE(2374)] = 52444, + [SMALL_STATE(2375)] = 52503, + [SMALL_STATE(2376)] = 52562, + [SMALL_STATE(2377)] = 52621, + [SMALL_STATE(2378)] = 52680, + [SMALL_STATE(2379)] = 52793, + [SMALL_STATE(2380)] = 52890, + [SMALL_STATE(2381)] = 52949, + [SMALL_STATE(2382)] = 53012, + [SMALL_STATE(2383)] = 53071, + [SMALL_STATE(2384)] = 53148, + [SMALL_STATE(2385)] = 53207, + [SMALL_STATE(2386)] = 53266, + [SMALL_STATE(2387)] = 53325, + [SMALL_STATE(2388)] = 53384, + [SMALL_STATE(2389)] = 53497, + [SMALL_STATE(2390)] = 53556, + [SMALL_STATE(2391)] = 53615, + [SMALL_STATE(2392)] = 53674, + [SMALL_STATE(2393)] = 53787, + [SMALL_STATE(2394)] = 53846, + [SMALL_STATE(2395)] = 53905, + [SMALL_STATE(2396)] = 53964, + [SMALL_STATE(2397)] = 54023, + [SMALL_STATE(2398)] = 54082, + [SMALL_STATE(2399)] = 54141, + [SMALL_STATE(2400)] = 54200, + [SMALL_STATE(2401)] = 54313, + [SMALL_STATE(2402)] = 54372, + [SMALL_STATE(2403)] = 54431, + [SMALL_STATE(2404)] = 54490, + [SMALL_STATE(2405)] = 54549, + [SMALL_STATE(2406)] = 54608, + [SMALL_STATE(2407)] = 54667, + [SMALL_STATE(2408)] = 54780, + [SMALL_STATE(2409)] = 54839, + [SMALL_STATE(2410)] = 54898, + [SMALL_STATE(2411)] = 54957, + [SMALL_STATE(2412)] = 55016, + [SMALL_STATE(2413)] = 55075, + [SMALL_STATE(2414)] = 55138, + [SMALL_STATE(2415)] = 55197, + [SMALL_STATE(2416)] = 55256, + [SMALL_STATE(2417)] = 55315, + [SMALL_STATE(2418)] = 55374, + [SMALL_STATE(2419)] = 55433, + [SMALL_STATE(2420)] = 55492, + [SMALL_STATE(2421)] = 55551, + [SMALL_STATE(2422)] = 55610, + [SMALL_STATE(2423)] = 55723, + [SMALL_STATE(2424)] = 55782, + [SMALL_STATE(2425)] = 55881, + [SMALL_STATE(2426)] = 55994, + [SMALL_STATE(2427)] = 56053, + [SMALL_STATE(2428)] = 56112, + [SMALL_STATE(2429)] = 56225, + [SMALL_STATE(2430)] = 56284, + [SMALL_STATE(2431)] = 56343, + [SMALL_STATE(2432)] = 56406, + [SMALL_STATE(2433)] = 56465, + [SMALL_STATE(2434)] = 56524, + [SMALL_STATE(2435)] = 56583, + [SMALL_STATE(2436)] = 56642, + [SMALL_STATE(2437)] = 56701, + [SMALL_STATE(2438)] = 56760, + [SMALL_STATE(2439)] = 56819, + [SMALL_STATE(2440)] = 56878, + [SMALL_STATE(2441)] = 56937, + [SMALL_STATE(2442)] = 56996, + [SMALL_STATE(2443)] = 57055, + [SMALL_STATE(2444)] = 57114, + [SMALL_STATE(2445)] = 57211, + [SMALL_STATE(2446)] = 57308, + [SMALL_STATE(2447)] = 57367, + [SMALL_STATE(2448)] = 57428, + [SMALL_STATE(2449)] = 57487, + [SMALL_STATE(2450)] = 57546, + [SMALL_STATE(2451)] = 57605, + [SMALL_STATE(2452)] = 57664, + [SMALL_STATE(2453)] = 57723, + [SMALL_STATE(2454)] = 57782, + [SMALL_STATE(2455)] = 57841, + [SMALL_STATE(2456)] = 57900, + [SMALL_STATE(2457)] = 57959, + [SMALL_STATE(2458)] = 58047, + [SMALL_STATE(2459)] = 58107, + [SMALL_STATE(2460)] = 58167, + [SMALL_STATE(2461)] = 58273, + [SMALL_STATE(2462)] = 58333, + [SMALL_STATE(2463)] = 58439, + [SMALL_STATE(2464)] = 58523, + [SMALL_STATE(2465)] = 58611, + [SMALL_STATE(2466)] = 58703, + [SMALL_STATE(2467)] = 58799, + [SMALL_STATE(2468)] = 58893, + [SMALL_STATE(2469)] = 58981, + [SMALL_STATE(2470)] = 59061, + [SMALL_STATE(2471)] = 59157, + [SMALL_STATE(2472)] = 59219, + [SMALL_STATE(2473)] = 59313, + [SMALL_STATE(2474)] = 59373, + [SMALL_STATE(2475)] = 59467, + [SMALL_STATE(2476)] = 59561, + [SMALL_STATE(2477)] = 59669, + [SMALL_STATE(2478)] = 59777, + [SMALL_STATE(2479)] = 59837, + [SMALL_STATE(2480)] = 59921, + [SMALL_STATE(2481)] = 60009, + [SMALL_STATE(2482)] = 60089, + [SMALL_STATE(2483)] = 60149, + [SMALL_STATE(2484)] = 60243, + [SMALL_STATE(2485)] = 60303, + [SMALL_STATE(2486)] = 60399, + [SMALL_STATE(2487)] = 60459, + [SMALL_STATE(2488)] = 60555, + [SMALL_STATE(2489)] = 60615, + [SMALL_STATE(2490)] = 60695, + [SMALL_STATE(2491)] = 60793, + [SMALL_STATE(2492)] = 60889, + [SMALL_STATE(2493)] = 60946, + [SMALL_STATE(2494)] = 61003, + [SMALL_STATE(2495)] = 61060, + [SMALL_STATE(2496)] = 61117, + [SMALL_STATE(2497)] = 61174, + [SMALL_STATE(2498)] = 61231, + [SMALL_STATE(2499)] = 61288, + [SMALL_STATE(2500)] = 61345, + [SMALL_STATE(2501)] = 61402, + [SMALL_STATE(2502)] = 61459, + [SMALL_STATE(2503)] = 61516, + [SMALL_STATE(2504)] = 61573, + [SMALL_STATE(2505)] = 61662, + [SMALL_STATE(2506)] = 61719, + [SMALL_STATE(2507)] = 61776, + [SMALL_STATE(2508)] = 61833, + [SMALL_STATE(2509)] = 61918, + [SMALL_STATE(2510)] = 61999, + [SMALL_STATE(2511)] = 62102, + [SMALL_STATE(2512)] = 62159, + [SMALL_STATE(2513)] = 62216, + [SMALL_STATE(2514)] = 62273, + [SMALL_STATE(2515)] = 62330, + [SMALL_STATE(2516)] = 62387, + [SMALL_STATE(2517)] = 62444, + [SMALL_STATE(2518)] = 62547, + [SMALL_STATE(2519)] = 62604, + [SMALL_STATE(2520)] = 62707, + [SMALL_STATE(2521)] = 62814, + [SMALL_STATE(2522)] = 62871, + [SMALL_STATE(2523)] = 62928, + [SMALL_STATE(2524)] = 62985, + [SMALL_STATE(2525)] = 63092, + [SMALL_STATE(2526)] = 63149, + [SMALL_STATE(2527)] = 63208, + [SMALL_STATE(2528)] = 63265, + [SMALL_STATE(2529)] = 63322, + [SMALL_STATE(2530)] = 63383, + [SMALL_STATE(2531)] = 63440, + [SMALL_STATE(2532)] = 63497, + [SMALL_STATE(2533)] = 63600, + [SMALL_STATE(2534)] = 63657, + [SMALL_STATE(2535)] = 63714, + [SMALL_STATE(2536)] = 63771, + [SMALL_STATE(2537)] = 63828, + [SMALL_STATE(2538)] = 63913, + [SMALL_STATE(2539)] = 63972, + [SMALL_STATE(2540)] = 64029, + [SMALL_STATE(2541)] = 64086, + [SMALL_STATE(2542)] = 64143, + [SMALL_STATE(2543)] = 64200, + [SMALL_STATE(2544)] = 64257, + [SMALL_STATE(2545)] = 64314, + [SMALL_STATE(2546)] = 64371, + [SMALL_STATE(2547)] = 64428, + [SMALL_STATE(2548)] = 64485, + [SMALL_STATE(2549)] = 64542, + [SMALL_STATE(2550)] = 64599, + [SMALL_STATE(2551)] = 64656, + [SMALL_STATE(2552)] = 64713, + [SMALL_STATE(2553)] = 64770, + [SMALL_STATE(2554)] = 64827, + [SMALL_STATE(2555)] = 64884, + [SMALL_STATE(2556)] = 64941, + [SMALL_STATE(2557)] = 64998, + [SMALL_STATE(2558)] = 65055, + [SMALL_STATE(2559)] = 65112, + [SMALL_STATE(2560)] = 65171, + [SMALL_STATE(2561)] = 65228, + [SMALL_STATE(2562)] = 65287, + [SMALL_STATE(2563)] = 65344, + [SMALL_STATE(2564)] = 65401, + [SMALL_STATE(2565)] = 65460, + [SMALL_STATE(2566)] = 65517, + [SMALL_STATE(2567)] = 65574, + [SMALL_STATE(2568)] = 65631, + [SMALL_STATE(2569)] = 65688, + [SMALL_STATE(2570)] = 65745, + [SMALL_STATE(2571)] = 65848, + [SMALL_STATE(2572)] = 65905, + [SMALL_STATE(2573)] = 65962, + [SMALL_STATE(2574)] = 66069, + [SMALL_STATE(2575)] = 66152, + [SMALL_STATE(2576)] = 66239, + [SMALL_STATE(2577)] = 66296, + [SMALL_STATE(2578)] = 66353, + [SMALL_STATE(2579)] = 66410, + [SMALL_STATE(2580)] = 66495, + [SMALL_STATE(2581)] = 66586, + [SMALL_STATE(2582)] = 66643, + [SMALL_STATE(2583)] = 66736, + [SMALL_STATE(2584)] = 66825, + [SMALL_STATE(2585)] = 66882, + [SMALL_STATE(2586)] = 66977, + [SMALL_STATE(2587)] = 67062, + [SMALL_STATE(2588)] = 67119, + [SMALL_STATE(2589)] = 67176, + [SMALL_STATE(2590)] = 67233, + [SMALL_STATE(2591)] = 67292, + [SMALL_STATE(2592)] = 67379, + [SMALL_STATE(2593)] = 67436, + [SMALL_STATE(2594)] = 67493, + [SMALL_STATE(2595)] = 67574, + [SMALL_STATE(2596)] = 67631, + [SMALL_STATE(2597)] = 67688, + [SMALL_STATE(2598)] = 67745, + [SMALL_STATE(2599)] = 67802, + [SMALL_STATE(2600)] = 67893, + [SMALL_STATE(2601)] = 67950, + [SMALL_STATE(2602)] = 68007, + [SMALL_STATE(2603)] = 68064, + [SMALL_STATE(2604)] = 68121, + [SMALL_STATE(2605)] = 68178, + [SMALL_STATE(2606)] = 68235, + [SMALL_STATE(2607)] = 68292, + [SMALL_STATE(2608)] = 68349, + [SMALL_STATE(2609)] = 68410, + [SMALL_STATE(2610)] = 68519, + [SMALL_STATE(2611)] = 68576, + [SMALL_STATE(2612)] = 68633, + [SMALL_STATE(2613)] = 68690, + [SMALL_STATE(2614)] = 68747, + [SMALL_STATE(2615)] = 68804, + [SMALL_STATE(2616)] = 68861, + [SMALL_STATE(2617)] = 68968, + [SMALL_STATE(2618)] = 69025, + [SMALL_STATE(2619)] = 69086, + [SMALL_STATE(2620)] = 69192, + [SMALL_STATE(2621)] = 69250, + [SMALL_STATE(2622)] = 69312, + [SMALL_STATE(2623)] = 69368, + [SMALL_STATE(2624)] = 69470, + [SMALL_STATE(2625)] = 69574, + [SMALL_STATE(2626)] = 69680, + [SMALL_STATE(2627)] = 69786, + [SMALL_STATE(2628)] = 69888, + [SMALL_STATE(2629)] = 69992, + [SMALL_STATE(2630)] = 70096, + [SMALL_STATE(2631)] = 70200, + [SMALL_STATE(2632)] = 70302, + [SMALL_STATE(2633)] = 70408, + [SMALL_STATE(2634)] = 70464, + [SMALL_STATE(2635)] = 70570, + [SMALL_STATE(2636)] = 70676, + [SMALL_STATE(2637)] = 70738, + [SMALL_STATE(2638)] = 70794, + [SMALL_STATE(2639)] = 70896, + [SMALL_STATE(2640)] = 71000, + [SMALL_STATE(2641)] = 71104, + [SMALL_STATE(2642)] = 71208, + [SMALL_STATE(2643)] = 71314, + [SMALL_STATE(2644)] = 71420, + [SMALL_STATE(2645)] = 71478, + [SMALL_STATE(2646)] = 71582, + [SMALL_STATE(2647)] = 71640, + [SMALL_STATE(2648)] = 71746, + [SMALL_STATE(2649)] = 71850, + [SMALL_STATE(2650)] = 71956, + [SMALL_STATE(2651)] = 72062, + [SMALL_STATE(2652)] = 72164, + [SMALL_STATE(2653)] = 72268, + [SMALL_STATE(2654)] = 72328, + [SMALL_STATE(2655)] = 72434, + [SMALL_STATE(2656)] = 72538, + [SMALL_STATE(2657)] = 72644, + [SMALL_STATE(2658)] = 72748, + [SMALL_STATE(2659)] = 72852, + [SMALL_STATE(2660)] = 72956, + [SMALL_STATE(2661)] = 73057, + [SMALL_STATE(2662)] = 73112, + [SMALL_STATE(2663)] = 73167, + [SMALL_STATE(2664)] = 73222, + [SMALL_STATE(2665)] = 73277, + [SMALL_STATE(2666)] = 73332, + [SMALL_STATE(2667)] = 73387, + [SMALL_STATE(2668)] = 73442, + [SMALL_STATE(2669)] = 73497, + [SMALL_STATE(2670)] = 73552, + [SMALL_STATE(2671)] = 73607, + [SMALL_STATE(2672)] = 73662, + [SMALL_STATE(2673)] = 73717, + [SMALL_STATE(2674)] = 73772, + [SMALL_STATE(2675)] = 73873, + [SMALL_STATE(2676)] = 73928, + [SMALL_STATE(2677)] = 73983, + [SMALL_STATE(2678)] = 74038, + [SMALL_STATE(2679)] = 74093, + [SMALL_STATE(2680)] = 74148, + [SMALL_STATE(2681)] = 74203, + [SMALL_STATE(2682)] = 74258, + [SMALL_STATE(2683)] = 74313, + [SMALL_STATE(2684)] = 74368, + [SMALL_STATE(2685)] = 74425, + [SMALL_STATE(2686)] = 74480, + [SMALL_STATE(2687)] = 74535, + [SMALL_STATE(2688)] = 74592, + [SMALL_STATE(2689)] = 74649, + [SMALL_STATE(2690)] = 74750, + [SMALL_STATE(2691)] = 74805, + [SMALL_STATE(2692)] = 74860, + [SMALL_STATE(2693)] = 74915, + [SMALL_STATE(2694)] = 74970, + [SMALL_STATE(2695)] = 75025, + [SMALL_STATE(2696)] = 75080, + [SMALL_STATE(2697)] = 75135, + [SMALL_STATE(2698)] = 75190, + [SMALL_STATE(2699)] = 75245, + [SMALL_STATE(2700)] = 75300, + [SMALL_STATE(2701)] = 75401, + [SMALL_STATE(2702)] = 75502, + [SMALL_STATE(2703)] = 75603, + [SMALL_STATE(2704)] = 75658, + [SMALL_STATE(2705)] = 75713, + [SMALL_STATE(2706)] = 75768, + [SMALL_STATE(2707)] = 75823, + [SMALL_STATE(2708)] = 75878, + [SMALL_STATE(2709)] = 75933, + [SMALL_STATE(2710)] = 75988, + [SMALL_STATE(2711)] = 76089, + [SMALL_STATE(2712)] = 76144, + [SMALL_STATE(2713)] = 76199, + [SMALL_STATE(2714)] = 76254, + [SMALL_STATE(2715)] = 76355, + [SMALL_STATE(2716)] = 76456, + [SMALL_STATE(2717)] = 76511, + [SMALL_STATE(2718)] = 76612, + [SMALL_STATE(2719)] = 76713, + [SMALL_STATE(2720)] = 76768, + [SMALL_STATE(2721)] = 76869, + [SMALL_STATE(2722)] = 76970, + [SMALL_STATE(2723)] = 77071, + [SMALL_STATE(2724)] = 77126, + [SMALL_STATE(2725)] = 77227, + [SMALL_STATE(2726)] = 77284, + [SMALL_STATE(2727)] = 77339, + [SMALL_STATE(2728)] = 77440, + [SMALL_STATE(2729)] = 77541, + [SMALL_STATE(2730)] = 77642, + [SMALL_STATE(2731)] = 77743, + [SMALL_STATE(2732)] = 77798, + [SMALL_STATE(2733)] = 77899, + [SMALL_STATE(2734)] = 78000, + [SMALL_STATE(2735)] = 78101, + [SMALL_STATE(2736)] = 78202, + [SMALL_STATE(2737)] = 78281, + [SMALL_STATE(2738)] = 78382, + [SMALL_STATE(2739)] = 78465, + [SMALL_STATE(2740)] = 78566, + [SMALL_STATE(2741)] = 78667, + [SMALL_STATE(2742)] = 78724, + [SMALL_STATE(2743)] = 78779, + [SMALL_STATE(2744)] = 78880, + [SMALL_STATE(2745)] = 78967, + [SMALL_STATE(2746)] = 79068, + [SMALL_STATE(2747)] = 79169, + [SMALL_STATE(2748)] = 79224, + [SMALL_STATE(2749)] = 79279, + [SMALL_STATE(2750)] = 79338, + [SMALL_STATE(2751)] = 79439, + [SMALL_STATE(2752)] = 79540, + [SMALL_STATE(2753)] = 79595, + [SMALL_STATE(2754)] = 79650, + [SMALL_STATE(2755)] = 79707, + [SMALL_STATE(2756)] = 79796, + [SMALL_STATE(2757)] = 79851, + [SMALL_STATE(2758)] = 79906, + [SMALL_STATE(2759)] = 79989, + [SMALL_STATE(2760)] = 80044, + [SMALL_STATE(2761)] = 80145, + [SMALL_STATE(2762)] = 80246, + [SMALL_STATE(2763)] = 80301, + [SMALL_STATE(2764)] = 80402, + [SMALL_STATE(2765)] = 80503, + [SMALL_STATE(2766)] = 80558, + [SMALL_STATE(2767)] = 80613, + [SMALL_STATE(2768)] = 80668, + [SMALL_STATE(2769)] = 80723, + [SMALL_STATE(2770)] = 80778, + [SMALL_STATE(2771)] = 80879, + [SMALL_STATE(2772)] = 80980, + [SMALL_STATE(2773)] = 81035, + [SMALL_STATE(2774)] = 81090, + [SMALL_STATE(2775)] = 81145, + [SMALL_STATE(2776)] = 81200, + [SMALL_STATE(2777)] = 81255, + [SMALL_STATE(2778)] = 81310, + [SMALL_STATE(2779)] = 81365, + [SMALL_STATE(2780)] = 81466, + [SMALL_STATE(2781)] = 81521, + [SMALL_STATE(2782)] = 81576, + [SMALL_STATE(2783)] = 81677, + [SMALL_STATE(2784)] = 81778, + [SMALL_STATE(2785)] = 81833, + [SMALL_STATE(2786)] = 81934, + [SMALL_STATE(2787)] = 81989, + [SMALL_STATE(2788)] = 82044, + [SMALL_STATE(2789)] = 82099, + [SMALL_STATE(2790)] = 82154, + [SMALL_STATE(2791)] = 82211, + [SMALL_STATE(2792)] = 82266, + [SMALL_STATE(2793)] = 82321, + [SMALL_STATE(2794)] = 82376, + [SMALL_STATE(2795)] = 82431, + [SMALL_STATE(2796)] = 82532, + [SMALL_STATE(2797)] = 82587, + [SMALL_STATE(2798)] = 82642, + [SMALL_STATE(2799)] = 82743, + [SMALL_STATE(2800)] = 82798, + [SMALL_STATE(2801)] = 82853, + [SMALL_STATE(2802)] = 82910, + [SMALL_STATE(2803)] = 83011, + [SMALL_STATE(2804)] = 83066, + [SMALL_STATE(2805)] = 83167, + [SMALL_STATE(2806)] = 83250, + [SMALL_STATE(2807)] = 83305, + [SMALL_STATE(2808)] = 83406, + [SMALL_STATE(2809)] = 83507, + [SMALL_STATE(2810)] = 83608, + [SMALL_STATE(2811)] = 83709, + [SMALL_STATE(2812)] = 83764, + [SMALL_STATE(2813)] = 83865, + [SMALL_STATE(2814)] = 83966, + [SMALL_STATE(2815)] = 84021, + [SMALL_STATE(2816)] = 84076, + [SMALL_STATE(2817)] = 84177, + [SMALL_STATE(2818)] = 84278, + [SMALL_STATE(2819)] = 84379, + [SMALL_STATE(2820)] = 84480, + [SMALL_STATE(2821)] = 84581, + [SMALL_STATE(2822)] = 84636, + [SMALL_STATE(2823)] = 84737, + [SMALL_STATE(2824)] = 84838, + [SMALL_STATE(2825)] = 84893, + [SMALL_STATE(2826)] = 84994, + [SMALL_STATE(2827)] = 85053, + [SMALL_STATE(2828)] = 85112, + [SMALL_STATE(2829)] = 85213, + [SMALL_STATE(2830)] = 85314, + [SMALL_STATE(2831)] = 85415, + [SMALL_STATE(2832)] = 85516, + [SMALL_STATE(2833)] = 85605, + [SMALL_STATE(2834)] = 85706, + [SMALL_STATE(2835)] = 85807, + [SMALL_STATE(2836)] = 85864, + [SMALL_STATE(2837)] = 85921, + [SMALL_STATE(2838)] = 85980, + [SMALL_STATE(2839)] = 86059, + [SMALL_STATE(2840)] = 86116, + [SMALL_STATE(2841)] = 86203, + [SMALL_STATE(2842)] = 86286, + [SMALL_STATE(2843)] = 86387, + [SMALL_STATE(2844)] = 86444, + [SMALL_STATE(2845)] = 86499, + [SMALL_STATE(2846)] = 86600, + [SMALL_STATE(2847)] = 86657, + [SMALL_STATE(2848)] = 86713, + [SMALL_STATE(2849)] = 86811, + [SMALL_STATE(2850)] = 86909, + [SMALL_STATE(2851)] = 87007, + [SMALL_STATE(2852)] = 87061, + [SMALL_STATE(2853)] = 87159, + [SMALL_STATE(2854)] = 87215, + [SMALL_STATE(2855)] = 87313, + [SMALL_STATE(2856)] = 87411, + [SMALL_STATE(2857)] = 87509, + [SMALL_STATE(2858)] = 87607, + [SMALL_STATE(2859)] = 87705, + [SMALL_STATE(2860)] = 87801, + [SMALL_STATE(2861)] = 87899, + [SMALL_STATE(2862)] = 87955, + [SMALL_STATE(2863)] = 88053, + [SMALL_STATE(2864)] = 88147, + [SMALL_STATE(2865)] = 88245, + [SMALL_STATE(2866)] = 88343, + [SMALL_STATE(2867)] = 88437, + [SMALL_STATE(2868)] = 88533, + [SMALL_STATE(2869)] = 88631, + [SMALL_STATE(2870)] = 88691, + [SMALL_STATE(2871)] = 88751, + [SMALL_STATE(2872)] = 88849, + [SMALL_STATE(2873)] = 88947, + [SMALL_STATE(2874)] = 89045, + [SMALL_STATE(2875)] = 89098, + [SMALL_STATE(2876)] = 89153, + [SMALL_STATE(2877)] = 89208, + [SMALL_STATE(2878)] = 89261, + [SMALL_STATE(2879)] = 89350, + [SMALL_STATE(2880)] = 89403, + [SMALL_STATE(2881)] = 89456, + [SMALL_STATE(2882)] = 89509, + [SMALL_STATE(2883)] = 89564, + [SMALL_STATE(2884)] = 89617, + [SMALL_STATE(2885)] = 89670, + [SMALL_STATE(2886)] = 89723, + [SMALL_STATE(2887)] = 89776, + [SMALL_STATE(2888)] = 89829, + [SMALL_STATE(2889)] = 89882, + [SMALL_STATE(2890)] = 89935, + [SMALL_STATE(2891)] = 89990, + [SMALL_STATE(2892)] = 90085, + [SMALL_STATE(2893)] = 90138, + [SMALL_STATE(2894)] = 90191, + [SMALL_STATE(2895)] = 90244, + [SMALL_STATE(2896)] = 90297, + [SMALL_STATE(2897)] = 90350, + [SMALL_STATE(2898)] = 90403, + [SMALL_STATE(2899)] = 90492, + [SMALL_STATE(2900)] = 90545, + [SMALL_STATE(2901)] = 90598, + [SMALL_STATE(2902)] = 90651, + [SMALL_STATE(2903)] = 90740, + [SMALL_STATE(2904)] = 90799, + [SMALL_STATE(2905)] = 90852, + [SMALL_STATE(2906)] = 90907, + [SMALL_STATE(2907)] = 90962, + [SMALL_STATE(2908)] = 91017, + [SMALL_STATE(2909)] = 91072, + [SMALL_STATE(2910)] = 91125, + [SMALL_STATE(2911)] = 91180, + [SMALL_STATE(2912)] = 91233, + [SMALL_STATE(2913)] = 91286, + [SMALL_STATE(2914)] = 91339, + [SMALL_STATE(2915)] = 91392, + [SMALL_STATE(2916)] = 91447, + [SMALL_STATE(2917)] = 91502, + [SMALL_STATE(2918)] = 91557, + [SMALL_STATE(2919)] = 91612, + [SMALL_STATE(2920)] = 91665, + [SMALL_STATE(2921)] = 91718, + [SMALL_STATE(2922)] = 91807, + [SMALL_STATE(2923)] = 91862, + [SMALL_STATE(2924)] = 91951, + [SMALL_STATE(2925)] = 92040, + [SMALL_STATE(2926)] = 92096, + [SMALL_STATE(2927)] = 92150, + [SMALL_STATE(2928)] = 92204, + [SMALL_STATE(2929)] = 92258, + [SMALL_STATE(2930)] = 92312, + [SMALL_STATE(2931)] = 92366, + [SMALL_STATE(2932)] = 92420, + [SMALL_STATE(2933)] = 92474, + [SMALL_STATE(2934)] = 92530, + [SMALL_STATE(2935)] = 92584, + [SMALL_STATE(2936)] = 92638, + [SMALL_STATE(2937)] = 92694, + [SMALL_STATE(2938)] = 92748, + [SMALL_STATE(2939)] = 92804, + [SMALL_STATE(2940)] = 92860, + [SMALL_STATE(2941)] = 92916, + [SMALL_STATE(2942)] = 92970, + [SMALL_STATE(2943)] = 93024, + [SMALL_STATE(2944)] = 93078, + [SMALL_STATE(2945)] = 93134, + [SMALL_STATE(2946)] = 93188, + [SMALL_STATE(2947)] = 93242, + [SMALL_STATE(2948)] = 93296, + [SMALL_STATE(2949)] = 93352, + [SMALL_STATE(2950)] = 93408, + [SMALL_STATE(2951)] = 93462, + [SMALL_STATE(2952)] = 93518, + [SMALL_STATE(2953)] = 93574, + [SMALL_STATE(2954)] = 93628, + [SMALL_STATE(2955)] = 93682, + [SMALL_STATE(2956)] = 93736, + [SMALL_STATE(2957)] = 93790, + [SMALL_STATE(2958)] = 93844, + [SMALL_STATE(2959)] = 93900, + [SMALL_STATE(2960)] = 93956, + [SMALL_STATE(2961)] = 94012, + [SMALL_STATE(2962)] = 94068, + [SMALL_STATE(2963)] = 94122, + [SMALL_STATE(2964)] = 94176, + [SMALL_STATE(2965)] = 94230, + [SMALL_STATE(2966)] = 94286, + [SMALL_STATE(2967)] = 94342, + [SMALL_STATE(2968)] = 94398, + [SMALL_STATE(2969)] = 94452, + [SMALL_STATE(2970)] = 94506, + [SMALL_STATE(2971)] = 94562, + [SMALL_STATE(2972)] = 94616, + [SMALL_STATE(2973)] = 94670, + [SMALL_STATE(2974)] = 94726, + [SMALL_STATE(2975)] = 94782, + [SMALL_STATE(2976)] = 94836, + [SMALL_STATE(2977)] = 94890, + [SMALL_STATE(2978)] = 94944, + [SMALL_STATE(2979)] = 95000, + [SMALL_STATE(2980)] = 95054, + [SMALL_STATE(2981)] = 95108, + [SMALL_STATE(2982)] = 95162, + [SMALL_STATE(2983)] = 95216, + [SMALL_STATE(2984)] = 95270, + [SMALL_STATE(2985)] = 95326, + [SMALL_STATE(2986)] = 95380, + [SMALL_STATE(2987)] = 95436, + [SMALL_STATE(2988)] = 95490, + [SMALL_STATE(2989)] = 95546, + [SMALL_STATE(2990)] = 95600, + [SMALL_STATE(2991)] = 95654, + [SMALL_STATE(2992)] = 95708, + [SMALL_STATE(2993)] = 95764, + [SMALL_STATE(2994)] = 95820, + [SMALL_STATE(2995)] = 95874, + [SMALL_STATE(2996)] = 95930, + [SMALL_STATE(2997)] = 95984, + [SMALL_STATE(2998)] = 96038, + [SMALL_STATE(2999)] = 96092, + [SMALL_STATE(3000)] = 96146, + [SMALL_STATE(3001)] = 96202, + [SMALL_STATE(3002)] = 96256, + [SMALL_STATE(3003)] = 96310, + [SMALL_STATE(3004)] = 96364, + [SMALL_STATE(3005)] = 96453, + [SMALL_STATE(3006)] = 96542, + [SMALL_STATE(3007)] = 96628, + [SMALL_STATE(3008)] = 96714, + [SMALL_STATE(3009)] = 96800, + [SMALL_STATE(3010)] = 96886, + [SMALL_STATE(3011)] = 96972, + [SMALL_STATE(3012)] = 97058, + [SMALL_STATE(3013)] = 97144, + [SMALL_STATE(3014)] = 97230, + [SMALL_STATE(3015)] = 97316, + [SMALL_STATE(3016)] = 97402, + [SMALL_STATE(3017)] = 97488, + [SMALL_STATE(3018)] = 97574, + [SMALL_STATE(3019)] = 97660, + [SMALL_STATE(3020)] = 97746, + [SMALL_STATE(3021)] = 97832, + [SMALL_STATE(3022)] = 97892, + [SMALL_STATE(3023)] = 97978, + [SMALL_STATE(3024)] = 98064, + [SMALL_STATE(3025)] = 98150, + [SMALL_STATE(3026)] = 98236, + [SMALL_STATE(3027)] = 98322, + [SMALL_STATE(3028)] = 98408, + [SMALL_STATE(3029)] = 98494, + [SMALL_STATE(3030)] = 98580, + [SMALL_STATE(3031)] = 98666, + [SMALL_STATE(3032)] = 98752, + [SMALL_STATE(3033)] = 98838, + [SMALL_STATE(3034)] = 98924, + [SMALL_STATE(3035)] = 99010, + [SMALL_STATE(3036)] = 99096, + [SMALL_STATE(3037)] = 99182, + [SMALL_STATE(3038)] = 99268, + [SMALL_STATE(3039)] = 99354, + [SMALL_STATE(3040)] = 99440, + [SMALL_STATE(3041)] = 99526, + [SMALL_STATE(3042)] = 99612, + [SMALL_STATE(3043)] = 99698, + [SMALL_STATE(3044)] = 99784, + [SMALL_STATE(3045)] = 99870, + [SMALL_STATE(3046)] = 99956, + [SMALL_STATE(3047)] = 100039, + [SMALL_STATE(3048)] = 100122, + [SMALL_STATE(3049)] = 100205, + [SMALL_STATE(3050)] = 100288, + [SMALL_STATE(3051)] = 100371, + [SMALL_STATE(3052)] = 100454, + [SMALL_STATE(3053)] = 100537, + [SMALL_STATE(3054)] = 100620, + [SMALL_STATE(3055)] = 100703, + [SMALL_STATE(3056)] = 100786, + [SMALL_STATE(3057)] = 100869, + [SMALL_STATE(3058)] = 100952, + [SMALL_STATE(3059)] = 101035, + [SMALL_STATE(3060)] = 101118, + [SMALL_STATE(3061)] = 101201, + [SMALL_STATE(3062)] = 101284, + [SMALL_STATE(3063)] = 101367, + [SMALL_STATE(3064)] = 101450, + [SMALL_STATE(3065)] = 101533, + [SMALL_STATE(3066)] = 101616, + [SMALL_STATE(3067)] = 101699, + [SMALL_STATE(3068)] = 101782, + [SMALL_STATE(3069)] = 101865, + [SMALL_STATE(3070)] = 101948, + [SMALL_STATE(3071)] = 102031, + [SMALL_STATE(3072)] = 102114, + [SMALL_STATE(3073)] = 102197, + [SMALL_STATE(3074)] = 102280, + [SMALL_STATE(3075)] = 102363, + [SMALL_STATE(3076)] = 102446, + [SMALL_STATE(3077)] = 102529, + [SMALL_STATE(3078)] = 102612, + [SMALL_STATE(3079)] = 102695, + [SMALL_STATE(3080)] = 102778, + [SMALL_STATE(3081)] = 102861, + [SMALL_STATE(3082)] = 102944, + [SMALL_STATE(3083)] = 103027, + [SMALL_STATE(3084)] = 103110, + [SMALL_STATE(3085)] = 103193, + [SMALL_STATE(3086)] = 103276, + [SMALL_STATE(3087)] = 103359, + [SMALL_STATE(3088)] = 103442, + [SMALL_STATE(3089)] = 103525, + [SMALL_STATE(3090)] = 103608, + [SMALL_STATE(3091)] = 103691, + [SMALL_STATE(3092)] = 103774, + [SMALL_STATE(3093)] = 103857, + [SMALL_STATE(3094)] = 103940, + [SMALL_STATE(3095)] = 104023, + [SMALL_STATE(3096)] = 104106, + [SMALL_STATE(3097)] = 104189, + [SMALL_STATE(3098)] = 104272, + [SMALL_STATE(3099)] = 104355, + [SMALL_STATE(3100)] = 104438, + [SMALL_STATE(3101)] = 104521, + [SMALL_STATE(3102)] = 104604, + [SMALL_STATE(3103)] = 104687, + [SMALL_STATE(3104)] = 104770, + [SMALL_STATE(3105)] = 104853, + [SMALL_STATE(3106)] = 104936, + [SMALL_STATE(3107)] = 105019, + [SMALL_STATE(3108)] = 105102, + [SMALL_STATE(3109)] = 105185, + [SMALL_STATE(3110)] = 105268, + [SMALL_STATE(3111)] = 105351, + [SMALL_STATE(3112)] = 105434, + [SMALL_STATE(3113)] = 105517, + [SMALL_STATE(3114)] = 105600, + [SMALL_STATE(3115)] = 105683, + [SMALL_STATE(3116)] = 105766, + [SMALL_STATE(3117)] = 105849, + [SMALL_STATE(3118)] = 105932, + [SMALL_STATE(3119)] = 106015, + [SMALL_STATE(3120)] = 106098, + [SMALL_STATE(3121)] = 106181, + [SMALL_STATE(3122)] = 106264, + [SMALL_STATE(3123)] = 106347, + [SMALL_STATE(3124)] = 106430, + [SMALL_STATE(3125)] = 106513, + [SMALL_STATE(3126)] = 106596, + [SMALL_STATE(3127)] = 106679, + [SMALL_STATE(3128)] = 106762, + [SMALL_STATE(3129)] = 106845, + [SMALL_STATE(3130)] = 106928, + [SMALL_STATE(3131)] = 107011, + [SMALL_STATE(3132)] = 107094, + [SMALL_STATE(3133)] = 107177, + [SMALL_STATE(3134)] = 107260, + [SMALL_STATE(3135)] = 107343, + [SMALL_STATE(3136)] = 107426, + [SMALL_STATE(3137)] = 107509, + [SMALL_STATE(3138)] = 107592, + [SMALL_STATE(3139)] = 107675, + [SMALL_STATE(3140)] = 107758, + [SMALL_STATE(3141)] = 107841, + [SMALL_STATE(3142)] = 107924, + [SMALL_STATE(3143)] = 108007, + [SMALL_STATE(3144)] = 108090, + [SMALL_STATE(3145)] = 108173, + [SMALL_STATE(3146)] = 108256, + [SMALL_STATE(3147)] = 108339, + [SMALL_STATE(3148)] = 108422, + [SMALL_STATE(3149)] = 108505, + [SMALL_STATE(3150)] = 108588, + [SMALL_STATE(3151)] = 108671, + [SMALL_STATE(3152)] = 108754, + [SMALL_STATE(3153)] = 108837, + [SMALL_STATE(3154)] = 108920, + [SMALL_STATE(3155)] = 109003, + [SMALL_STATE(3156)] = 109086, + [SMALL_STATE(3157)] = 109169, + [SMALL_STATE(3158)] = 109252, + [SMALL_STATE(3159)] = 109335, + [SMALL_STATE(3160)] = 109418, + [SMALL_STATE(3161)] = 109501, + [SMALL_STATE(3162)] = 109584, + [SMALL_STATE(3163)] = 109667, + [SMALL_STATE(3164)] = 109750, + [SMALL_STATE(3165)] = 109833, + [SMALL_STATE(3166)] = 109916, + [SMALL_STATE(3167)] = 109999, + [SMALL_STATE(3168)] = 110082, + [SMALL_STATE(3169)] = 110165, + [SMALL_STATE(3170)] = 110248, + [SMALL_STATE(3171)] = 110331, + [SMALL_STATE(3172)] = 110414, + [SMALL_STATE(3173)] = 110497, + [SMALL_STATE(3174)] = 110580, + [SMALL_STATE(3175)] = 110663, + [SMALL_STATE(3176)] = 110746, + [SMALL_STATE(3177)] = 110829, + [SMALL_STATE(3178)] = 110912, + [SMALL_STATE(3179)] = 110995, + [SMALL_STATE(3180)] = 111078, + [SMALL_STATE(3181)] = 111161, + [SMALL_STATE(3182)] = 111244, + [SMALL_STATE(3183)] = 111327, + [SMALL_STATE(3184)] = 111410, + [SMALL_STATE(3185)] = 111493, + [SMALL_STATE(3186)] = 111576, + [SMALL_STATE(3187)] = 111659, + [SMALL_STATE(3188)] = 111742, + [SMALL_STATE(3189)] = 111825, + [SMALL_STATE(3190)] = 111908, + [SMALL_STATE(3191)] = 111991, + [SMALL_STATE(3192)] = 112074, + [SMALL_STATE(3193)] = 112157, + [SMALL_STATE(3194)] = 112240, + [SMALL_STATE(3195)] = 112323, + [SMALL_STATE(3196)] = 112406, + [SMALL_STATE(3197)] = 112489, + [SMALL_STATE(3198)] = 112572, + [SMALL_STATE(3199)] = 112655, + [SMALL_STATE(3200)] = 112738, + [SMALL_STATE(3201)] = 112821, + [SMALL_STATE(3202)] = 112904, + [SMALL_STATE(3203)] = 112987, + [SMALL_STATE(3204)] = 113070, + [SMALL_STATE(3205)] = 113153, + [SMALL_STATE(3206)] = 113236, + [SMALL_STATE(3207)] = 113319, + [SMALL_STATE(3208)] = 113402, + [SMALL_STATE(3209)] = 113485, + [SMALL_STATE(3210)] = 113568, + [SMALL_STATE(3211)] = 113651, + [SMALL_STATE(3212)] = 113734, + [SMALL_STATE(3213)] = 113817, + [SMALL_STATE(3214)] = 113900, + [SMALL_STATE(3215)] = 113983, + [SMALL_STATE(3216)] = 114066, + [SMALL_STATE(3217)] = 114149, + [SMALL_STATE(3218)] = 114232, + [SMALL_STATE(3219)] = 114315, + [SMALL_STATE(3220)] = 114398, + [SMALL_STATE(3221)] = 114481, + [SMALL_STATE(3222)] = 114564, + [SMALL_STATE(3223)] = 114647, + [SMALL_STATE(3224)] = 114730, + [SMALL_STATE(3225)] = 114813, + [SMALL_STATE(3226)] = 114896, + [SMALL_STATE(3227)] = 114979, + [SMALL_STATE(3228)] = 115062, + [SMALL_STATE(3229)] = 115145, + [SMALL_STATE(3230)] = 115228, + [SMALL_STATE(3231)] = 115311, + [SMALL_STATE(3232)] = 115394, + [SMALL_STATE(3233)] = 115477, + [SMALL_STATE(3234)] = 115560, + [SMALL_STATE(3235)] = 115643, + [SMALL_STATE(3236)] = 115726, + [SMALL_STATE(3237)] = 115809, + [SMALL_STATE(3238)] = 115892, + [SMALL_STATE(3239)] = 115975, + [SMALL_STATE(3240)] = 116058, + [SMALL_STATE(3241)] = 116141, + [SMALL_STATE(3242)] = 116224, + [SMALL_STATE(3243)] = 116307, + [SMALL_STATE(3244)] = 116390, + [SMALL_STATE(3245)] = 116473, + [SMALL_STATE(3246)] = 116556, + [SMALL_STATE(3247)] = 116639, + [SMALL_STATE(3248)] = 116722, + [SMALL_STATE(3249)] = 116805, + [SMALL_STATE(3250)] = 116888, + [SMALL_STATE(3251)] = 116971, + [SMALL_STATE(3252)] = 117054, + [SMALL_STATE(3253)] = 117137, + [SMALL_STATE(3254)] = 117220, + [SMALL_STATE(3255)] = 117303, + [SMALL_STATE(3256)] = 117386, + [SMALL_STATE(3257)] = 117469, + [SMALL_STATE(3258)] = 117552, + [SMALL_STATE(3259)] = 117635, + [SMALL_STATE(3260)] = 117718, + [SMALL_STATE(3261)] = 117801, + [SMALL_STATE(3262)] = 117884, + [SMALL_STATE(3263)] = 117967, + [SMALL_STATE(3264)] = 118050, + [SMALL_STATE(3265)] = 118133, + [SMALL_STATE(3266)] = 118216, + [SMALL_STATE(3267)] = 118299, + [SMALL_STATE(3268)] = 118382, + [SMALL_STATE(3269)] = 118465, + [SMALL_STATE(3270)] = 118548, + [SMALL_STATE(3271)] = 118631, + [SMALL_STATE(3272)] = 118714, + [SMALL_STATE(3273)] = 118797, + [SMALL_STATE(3274)] = 118880, + [SMALL_STATE(3275)] = 118963, + [SMALL_STATE(3276)] = 119046, + [SMALL_STATE(3277)] = 119129, + [SMALL_STATE(3278)] = 119212, + [SMALL_STATE(3279)] = 119295, + [SMALL_STATE(3280)] = 119378, + [SMALL_STATE(3281)] = 119461, + [SMALL_STATE(3282)] = 119544, + [SMALL_STATE(3283)] = 119627, + [SMALL_STATE(3284)] = 119710, + [SMALL_STATE(3285)] = 119793, + [SMALL_STATE(3286)] = 119876, + [SMALL_STATE(3287)] = 119959, + [SMALL_STATE(3288)] = 120042, + [SMALL_STATE(3289)] = 120125, + [SMALL_STATE(3290)] = 120208, + [SMALL_STATE(3291)] = 120276, + [SMALL_STATE(3292)] = 120344, + [SMALL_STATE(3293)] = 120412, + [SMALL_STATE(3294)] = 120480, + [SMALL_STATE(3295)] = 120548, + [SMALL_STATE(3296)] = 120616, + [SMALL_STATE(3297)] = 120690, + [SMALL_STATE(3298)] = 120758, + [SMALL_STATE(3299)] = 120826, + [SMALL_STATE(3300)] = 120894, + [SMALL_STATE(3301)] = 120962, + [SMALL_STATE(3302)] = 121030, + [SMALL_STATE(3303)] = 121104, + [SMALL_STATE(3304)] = 121172, + [SMALL_STATE(3305)] = 121240, + [SMALL_STATE(3306)] = 121308, + [SMALL_STATE(3307)] = 121377, + [SMALL_STATE(3308)] = 121414, + [SMALL_STATE(3309)] = 121451, + [SMALL_STATE(3310)] = 121488, + [SMALL_STATE(3311)] = 121525, + [SMALL_STATE(3312)] = 121562, + [SMALL_STATE(3313)] = 121599, + [SMALL_STATE(3314)] = 121646, + [SMALL_STATE(3315)] = 121697, + [SMALL_STATE(3316)] = 121730, + [SMALL_STATE(3317)] = 121763, + [SMALL_STATE(3318)] = 121810, + [SMALL_STATE(3319)] = 121843, + [SMALL_STATE(3320)] = 121876, + [SMALL_STATE(3321)] = 121923, + [SMALL_STATE(3322)] = 121956, + [SMALL_STATE(3323)] = 121990, + [SMALL_STATE(3324)] = 122026, + [SMALL_STATE(3325)] = 122056, + [SMALL_STATE(3326)] = 122090, + [SMALL_STATE(3327)] = 122120, + [SMALL_STATE(3328)] = 122150, + [SMALL_STATE(3329)] = 122181, + [SMALL_STATE(3330)] = 122214, + [SMALL_STATE(3331)] = 122247, + [SMALL_STATE(3332)] = 122280, + [SMALL_STATE(3333)] = 122311, + [SMALL_STATE(3334)] = 122344, + [SMALL_STATE(3335)] = 122377, + [SMALL_STATE(3336)] = 122410, + [SMALL_STATE(3337)] = 122443, + [SMALL_STATE(3338)] = 122491, + [SMALL_STATE(3339)] = 122521, + [SMALL_STATE(3340)] = 122551, + [SMALL_STATE(3341)] = 122599, + [SMALL_STATE(3342)] = 122631, + [SMALL_STATE(3343)] = 122677, + [SMALL_STATE(3344)] = 122724, + [SMALL_STATE(3345)] = 122771, + [SMALL_STATE(3346)] = 122818, + [SMALL_STATE(3347)] = 122865, + [SMALL_STATE(3348)] = 122912, + [SMALL_STATE(3349)] = 122947, + [SMALL_STATE(3350)] = 122994, + [SMALL_STATE(3351)] = 123041, + [SMALL_STATE(3352)] = 123088, + [SMALL_STATE(3353)] = 123135, + [SMALL_STATE(3354)] = 123182, + [SMALL_STATE(3355)] = 123229, + [SMALL_STATE(3356)] = 123260, + [SMALL_STATE(3357)] = 123289, + [SMALL_STATE(3358)] = 123318, + [SMALL_STATE(3359)] = 123365, + [SMALL_STATE(3360)] = 123412, + [SMALL_STATE(3361)] = 123443, + [SMALL_STATE(3362)] = 123478, + [SMALL_STATE(3363)] = 123525, + [SMALL_STATE(3364)] = 123570, + [SMALL_STATE(3365)] = 123617, + [SMALL_STATE(3366)] = 123646, + [SMALL_STATE(3367)] = 123675, + [SMALL_STATE(3368)] = 123704, + [SMALL_STATE(3369)] = 123751, + [SMALL_STATE(3370)] = 123798, + [SMALL_STATE(3371)] = 123845, + [SMALL_STATE(3372)] = 123892, + [SMALL_STATE(3373)] = 123939, + [SMALL_STATE(3374)] = 123986, + [SMALL_STATE(3375)] = 124033, + [SMALL_STATE(3376)] = 124080, + [SMALL_STATE(3377)] = 124127, + [SMALL_STATE(3378)] = 124174, + [SMALL_STATE(3379)] = 124209, + [SMALL_STATE(3380)] = 124256, + [SMALL_STATE(3381)] = 124303, + [SMALL_STATE(3382)] = 124338, + [SMALL_STATE(3383)] = 124373, + [SMALL_STATE(3384)] = 124420, + [SMALL_STATE(3385)] = 124449, + [SMALL_STATE(3386)] = 124484, + [SMALL_STATE(3387)] = 124519, + [SMALL_STATE(3388)] = 124548, + [SMALL_STATE(3389)] = 124595, + [SMALL_STATE(3390)] = 124642, + [SMALL_STATE(3391)] = 124677, + [SMALL_STATE(3392)] = 124703, + [SMALL_STATE(3393)] = 124733, + [SMALL_STATE(3394)] = 124765, + [SMALL_STATE(3395)] = 124791, + [SMALL_STATE(3396)] = 124817, + [SMALL_STATE(3397)] = 124844, + [SMALL_STATE(3398)] = 124871, + [SMALL_STATE(3399)] = 124902, + [SMALL_STATE(3400)] = 124926, + [SMALL_STATE(3401)] = 124956, + [SMALL_STATE(3402)] = 124980, + [SMALL_STATE(3403)] = 125004, + [SMALL_STATE(3404)] = 125028, + [SMALL_STATE(3405)] = 125052, + [SMALL_STATE(3406)] = 125076, + [SMALL_STATE(3407)] = 125100, + [SMALL_STATE(3408)] = 125124, + [SMALL_STATE(3409)] = 125152, + [SMALL_STATE(3410)] = 125176, + [SMALL_STATE(3411)] = 125200, + [SMALL_STATE(3412)] = 125228, + [SMALL_STATE(3413)] = 125252, + [SMALL_STATE(3414)] = 125276, + [SMALL_STATE(3415)] = 125300, + [SMALL_STATE(3416)] = 125324, + [SMALL_STATE(3417)] = 125348, + [SMALL_STATE(3418)] = 125372, + [SMALL_STATE(3419)] = 125396, + [SMALL_STATE(3420)] = 125420, + [SMALL_STATE(3421)] = 125444, + [SMALL_STATE(3422)] = 125468, + [SMALL_STATE(3423)] = 125492, + [SMALL_STATE(3424)] = 125516, + [SMALL_STATE(3425)] = 125543, + [SMALL_STATE(3426)] = 125572, + [SMALL_STATE(3427)] = 125611, + [SMALL_STATE(3428)] = 125645, + [SMALL_STATE(3429)] = 125667, + [SMALL_STATE(3430)] = 125701, + [SMALL_STATE(3431)] = 125735, + [SMALL_STATE(3432)] = 125759, + [SMALL_STATE(3433)] = 125795, + [SMALL_STATE(3434)] = 125829, + [SMALL_STATE(3435)] = 125863, + [SMALL_STATE(3436)] = 125897, + [SMALL_STATE(3437)] = 125925, + [SMALL_STATE(3438)] = 125951, + [SMALL_STATE(3439)] = 125985, + [SMALL_STATE(3440)] = 126019, + [SMALL_STATE(3441)] = 126053, + [SMALL_STATE(3442)] = 126087, + [SMALL_STATE(3443)] = 126115, + [SMALL_STATE(3444)] = 126149, + [SMALL_STATE(3445)] = 126183, + [SMALL_STATE(3446)] = 126204, + [SMALL_STATE(3447)] = 126227, + [SMALL_STATE(3448)] = 126250, + [SMALL_STATE(3449)] = 126271, + [SMALL_STATE(3450)] = 126292, + [SMALL_STATE(3451)] = 126315, + [SMALL_STATE(3452)] = 126336, + [SMALL_STATE(3453)] = 126359, + [SMALL_STATE(3454)] = 126388, + [SMALL_STATE(3455)] = 126413, + [SMALL_STATE(3456)] = 126438, + [SMALL_STATE(3457)] = 126459, + [SMALL_STATE(3458)] = 126480, + [SMALL_STATE(3459)] = 126501, + [SMALL_STATE(3460)] = 126522, + [SMALL_STATE(3461)] = 126543, + [SMALL_STATE(3462)] = 126573, + [SMALL_STATE(3463)] = 126603, + [SMALL_STATE(3464)] = 126631, + [SMALL_STATE(3465)] = 126659, + [SMALL_STATE(3466)] = 126687, + [SMALL_STATE(3467)] = 126711, + [SMALL_STATE(3468)] = 126741, + [SMALL_STATE(3469)] = 126771, + [SMALL_STATE(3470)] = 126799, + [SMALL_STATE(3471)] = 126829, + [SMALL_STATE(3472)] = 126859, + [SMALL_STATE(3473)] = 126889, + [SMALL_STATE(3474)] = 126919, + [SMALL_STATE(3475)] = 126949, + [SMALL_STATE(3476)] = 126979, + [SMALL_STATE(3477)] = 127009, + [SMALL_STATE(3478)] = 127039, + [SMALL_STATE(3479)] = 127069, + [SMALL_STATE(3480)] = 127099, + [SMALL_STATE(3481)] = 127129, + [SMALL_STATE(3482)] = 127159, + [SMALL_STATE(3483)] = 127189, + [SMALL_STATE(3484)] = 127219, + [SMALL_STATE(3485)] = 127247, + [SMALL_STATE(3486)] = 127275, + [SMALL_STATE(3487)] = 127305, + [SMALL_STATE(3488)] = 127333, + [SMALL_STATE(3489)] = 127363, + [SMALL_STATE(3490)] = 127393, + [SMALL_STATE(3491)] = 127423, + [SMALL_STATE(3492)] = 127453, + [SMALL_STATE(3493)] = 127483, + [SMALL_STATE(3494)] = 127513, + [SMALL_STATE(3495)] = 127543, + [SMALL_STATE(3496)] = 127571, + [SMALL_STATE(3497)] = 127601, + [SMALL_STATE(3498)] = 127629, + [SMALL_STATE(3499)] = 127657, + [SMALL_STATE(3500)] = 127687, + [SMALL_STATE(3501)] = 127717, + [SMALL_STATE(3502)] = 127747, + [SMALL_STATE(3503)] = 127777, + [SMALL_STATE(3504)] = 127809, + [SMALL_STATE(3505)] = 127839, + [SMALL_STATE(3506)] = 127869, + [SMALL_STATE(3507)] = 127899, + [SMALL_STATE(3508)] = 127929, + [SMALL_STATE(3509)] = 127959, + [SMALL_STATE(3510)] = 127987, + [SMALL_STATE(3511)] = 128017, + [SMALL_STATE(3512)] = 128045, + [SMALL_STATE(3513)] = 128073, + [SMALL_STATE(3514)] = 128103, + [SMALL_STATE(3515)] = 128133, + [SMALL_STATE(3516)] = 128163, + [SMALL_STATE(3517)] = 128193, + [SMALL_STATE(3518)] = 128213, + [SMALL_STATE(3519)] = 128243, + [SMALL_STATE(3520)] = 128273, + [SMALL_STATE(3521)] = 128303, + [SMALL_STATE(3522)] = 128333, + [SMALL_STATE(3523)] = 128363, + [SMALL_STATE(3524)] = 128393, + [SMALL_STATE(3525)] = 128423, + [SMALL_STATE(3526)] = 128453, + [SMALL_STATE(3527)] = 128483, + [SMALL_STATE(3528)] = 128513, + [SMALL_STATE(3529)] = 128543, + [SMALL_STATE(3530)] = 128573, + [SMALL_STATE(3531)] = 128603, + [SMALL_STATE(3532)] = 128633, + [SMALL_STATE(3533)] = 128661, + [SMALL_STATE(3534)] = 128691, + [SMALL_STATE(3535)] = 128721, + [SMALL_STATE(3536)] = 128751, + [SMALL_STATE(3537)] = 128781, + [SMALL_STATE(3538)] = 128811, + [SMALL_STATE(3539)] = 128841, + [SMALL_STATE(3540)] = 128871, + [SMALL_STATE(3541)] = 128901, + [SMALL_STATE(3542)] = 128931, + [SMALL_STATE(3543)] = 128959, + [SMALL_STATE(3544)] = 128987, + [SMALL_STATE(3545)] = 129017, + [SMALL_STATE(3546)] = 129047, + [SMALL_STATE(3547)] = 129077, + [SMALL_STATE(3548)] = 129105, + [SMALL_STATE(3549)] = 129135, + [SMALL_STATE(3550)] = 129163, + [SMALL_STATE(3551)] = 129193, + [SMALL_STATE(3552)] = 129223, + [SMALL_STATE(3553)] = 129243, + [SMALL_STATE(3554)] = 129273, + [SMALL_STATE(3555)] = 129303, + [SMALL_STATE(3556)] = 129333, + [SMALL_STATE(3557)] = 129363, + [SMALL_STATE(3558)] = 129393, + [SMALL_STATE(3559)] = 129423, + [SMALL_STATE(3560)] = 129453, + [SMALL_STATE(3561)] = 129483, + [SMALL_STATE(3562)] = 129513, + [SMALL_STATE(3563)] = 129543, + [SMALL_STATE(3564)] = 129563, + [SMALL_STATE(3565)] = 129591, + [SMALL_STATE(3566)] = 129619, + [SMALL_STATE(3567)] = 129647, + [SMALL_STATE(3568)] = 129675, + [SMALL_STATE(3569)] = 129705, + [SMALL_STATE(3570)] = 129735, + [SMALL_STATE(3571)] = 129765, + [SMALL_STATE(3572)] = 129795, + [SMALL_STATE(3573)] = 129825, + [SMALL_STATE(3574)] = 129853, + [SMALL_STATE(3575)] = 129883, + [SMALL_STATE(3576)] = 129911, + [SMALL_STATE(3577)] = 129941, + [SMALL_STATE(3578)] = 129969, + [SMALL_STATE(3579)] = 129999, + [SMALL_STATE(3580)] = 130029, + [SMALL_STATE(3581)] = 130059, + [SMALL_STATE(3582)] = 130091, + [SMALL_STATE(3583)] = 130119, + [SMALL_STATE(3584)] = 130149, + [SMALL_STATE(3585)] = 130179, + [SMALL_STATE(3586)] = 130207, + [SMALL_STATE(3587)] = 130237, + [SMALL_STATE(3588)] = 130267, + [SMALL_STATE(3589)] = 130297, + [SMALL_STATE(3590)] = 130327, + [SMALL_STATE(3591)] = 130357, + [SMALL_STATE(3592)] = 130387, + [SMALL_STATE(3593)] = 130416, + [SMALL_STATE(3594)] = 130439, + [SMALL_STATE(3595)] = 130460, + [SMALL_STATE(3596)] = 130483, + [SMALL_STATE(3597)] = 130510, + [SMALL_STATE(3598)] = 130533, + [SMALL_STATE(3599)] = 130556, + [SMALL_STATE(3600)] = 130585, + [SMALL_STATE(3601)] = 130608, + [SMALL_STATE(3602)] = 130631, + [SMALL_STATE(3603)] = 130654, + [SMALL_STATE(3604)] = 130683, + [SMALL_STATE(3605)] = 130704, + [SMALL_STATE(3606)] = 130725, + [SMALL_STATE(3607)] = 130748, + [SMALL_STATE(3608)] = 130771, + [SMALL_STATE(3609)] = 130791, + [SMALL_STATE(3610)] = 130813, + [SMALL_STATE(3611)] = 130831, + [SMALL_STATE(3612)] = 130849, + [SMALL_STATE(3613)] = 130867, + [SMALL_STATE(3614)] = 130893, + [SMALL_STATE(3615)] = 130917, + [SMALL_STATE(3616)] = 130939, + [SMALL_STATE(3617)] = 130963, + [SMALL_STATE(3618)] = 130983, + [SMALL_STATE(3619)] = 131005, + [SMALL_STATE(3620)] = 131025, + [SMALL_STATE(3621)] = 131051, + [SMALL_STATE(3622)] = 131077, + [SMALL_STATE(3623)] = 131097, + [SMALL_STATE(3624)] = 131123, + [SMALL_STATE(3625)] = 131143, + [SMALL_STATE(3626)] = 131167, + [SMALL_STATE(3627)] = 131193, + [SMALL_STATE(3628)] = 131217, + [SMALL_STATE(3629)] = 131237, + [SMALL_STATE(3630)] = 131257, + [SMALL_STATE(3631)] = 131279, + [SMALL_STATE(3632)] = 131297, + [SMALL_STATE(3633)] = 131317, + [SMALL_STATE(3634)] = 131337, + [SMALL_STATE(3635)] = 131355, + [SMALL_STATE(3636)] = 131375, + [SMALL_STATE(3637)] = 131399, + [SMALL_STATE(3638)] = 131419, + [SMALL_STATE(3639)] = 131445, + [SMALL_STATE(3640)] = 131469, + [SMALL_STATE(3641)] = 131493, + [SMALL_STATE(3642)] = 131511, + [SMALL_STATE(3643)] = 131531, + [SMALL_STATE(3644)] = 131551, + [SMALL_STATE(3645)] = 131573, + [SMALL_STATE(3646)] = 131593, + [SMALL_STATE(3647)] = 131615, + [SMALL_STATE(3648)] = 131639, + [SMALL_STATE(3649)] = 131660, + [SMALL_STATE(3650)] = 131677, + [SMALL_STATE(3651)] = 131698, + [SMALL_STATE(3652)] = 131719, + [SMALL_STATE(3653)] = 131740, + [SMALL_STATE(3654)] = 131761, + [SMALL_STATE(3655)] = 131784, + [SMALL_STATE(3656)] = 131805, + [SMALL_STATE(3657)] = 131826, + [SMALL_STATE(3658)] = 131847, + [SMALL_STATE(3659)] = 131866, + [SMALL_STATE(3660)] = 131887, + [SMALL_STATE(3661)] = 131908, + [SMALL_STATE(3662)] = 131925, + [SMALL_STATE(3663)] = 131946, + [SMALL_STATE(3664)] = 131967, + [SMALL_STATE(3665)] = 131984, + [SMALL_STATE(3666)] = 132005, + [SMALL_STATE(3667)] = 132028, + [SMALL_STATE(3668)] = 132051, + [SMALL_STATE(3669)] = 132072, + [SMALL_STATE(3670)] = 132095, + [SMALL_STATE(3671)] = 132116, + [SMALL_STATE(3672)] = 132137, + [SMALL_STATE(3673)] = 132154, + [SMALL_STATE(3674)] = 132175, + [SMALL_STATE(3675)] = 132198, + [SMALL_STATE(3676)] = 132219, + [SMALL_STATE(3677)] = 132240, + [SMALL_STATE(3678)] = 132263, + [SMALL_STATE(3679)] = 132284, + [SMALL_STATE(3680)] = 132305, + [SMALL_STATE(3681)] = 132326, + [SMALL_STATE(3682)] = 132347, + [SMALL_STATE(3683)] = 132368, + [SMALL_STATE(3684)] = 132389, + [SMALL_STATE(3685)] = 132410, + [SMALL_STATE(3686)] = 132431, + [SMALL_STATE(3687)] = 132452, + [SMALL_STATE(3688)] = 132473, + [SMALL_STATE(3689)] = 132494, + [SMALL_STATE(3690)] = 132515, + [SMALL_STATE(3691)] = 132536, + [SMALL_STATE(3692)] = 132557, + [SMALL_STATE(3693)] = 132580, + [SMALL_STATE(3694)] = 132601, + [SMALL_STATE(3695)] = 132622, + [SMALL_STATE(3696)] = 132643, + [SMALL_STATE(3697)] = 132664, + [SMALL_STATE(3698)] = 132685, + [SMALL_STATE(3699)] = 132708, + [SMALL_STATE(3700)] = 132729, + [SMALL_STATE(3701)] = 132750, + [SMALL_STATE(3702)] = 132771, + [SMALL_STATE(3703)] = 132794, + [SMALL_STATE(3704)] = 132815, + [SMALL_STATE(3705)] = 132838, + [SMALL_STATE(3706)] = 132861, + [SMALL_STATE(3707)] = 132884, + [SMALL_STATE(3708)] = 132907, + [SMALL_STATE(3709)] = 132930, + [SMALL_STATE(3710)] = 132951, + [SMALL_STATE(3711)] = 132972, + [SMALL_STATE(3712)] = 132993, + [SMALL_STATE(3713)] = 133014, + [SMALL_STATE(3714)] = 133031, + [SMALL_STATE(3715)] = 133052, + [SMALL_STATE(3716)] = 133075, + [SMALL_STATE(3717)] = 133092, + [SMALL_STATE(3718)] = 133109, + [SMALL_STATE(3719)] = 133126, + [SMALL_STATE(3720)] = 133147, + [SMALL_STATE(3721)] = 133168, + [SMALL_STATE(3722)] = 133189, + [SMALL_STATE(3723)] = 133210, + [SMALL_STATE(3724)] = 133227, + [SMALL_STATE(3725)] = 133250, + [SMALL_STATE(3726)] = 133267, + [SMALL_STATE(3727)] = 133290, + [SMALL_STATE(3728)] = 133311, + [SMALL_STATE(3729)] = 133330, + [SMALL_STATE(3730)] = 133351, + [SMALL_STATE(3731)] = 133368, + [SMALL_STATE(3732)] = 133389, + [SMALL_STATE(3733)] = 133410, + [SMALL_STATE(3734)] = 133427, + [SMALL_STATE(3735)] = 133448, + [SMALL_STATE(3736)] = 133469, + [SMALL_STATE(3737)] = 133490, + [SMALL_STATE(3738)] = 133511, + [SMALL_STATE(3739)] = 133532, + [SMALL_STATE(3740)] = 133551, + [SMALL_STATE(3741)] = 133574, + [SMALL_STATE(3742)] = 133597, + [SMALL_STATE(3743)] = 133618, + [SMALL_STATE(3744)] = 133641, + [SMALL_STATE(3745)] = 133662, + [SMALL_STATE(3746)] = 133683, + [SMALL_STATE(3747)] = 133706, + [SMALL_STATE(3748)] = 133727, + [SMALL_STATE(3749)] = 133750, + [SMALL_STATE(3750)] = 133771, + [SMALL_STATE(3751)] = 133788, + [SMALL_STATE(3752)] = 133809, + [SMALL_STATE(3753)] = 133830, + [SMALL_STATE(3754)] = 133851, + [SMALL_STATE(3755)] = 133872, + [SMALL_STATE(3756)] = 133889, + [SMALL_STATE(3757)] = 133910, + [SMALL_STATE(3758)] = 133931, + [SMALL_STATE(3759)] = 133952, + [SMALL_STATE(3760)] = 133969, + [SMALL_STATE(3761)] = 133990, + [SMALL_STATE(3762)] = 134011, + [SMALL_STATE(3763)] = 134034, + [SMALL_STATE(3764)] = 134051, + [SMALL_STATE(3765)] = 134068, + [SMALL_STATE(3766)] = 134085, + [SMALL_STATE(3767)] = 134108, + [SMALL_STATE(3768)] = 134125, + [SMALL_STATE(3769)] = 134142, + [SMALL_STATE(3770)] = 134163, + [SMALL_STATE(3771)] = 134180, + [SMALL_STATE(3772)] = 134197, + [SMALL_STATE(3773)] = 134214, + [SMALL_STATE(3774)] = 134237, + [SMALL_STATE(3775)] = 134258, + [SMALL_STATE(3776)] = 134279, + [SMALL_STATE(3777)] = 134300, + [SMALL_STATE(3778)] = 134321, + [SMALL_STATE(3779)] = 134342, + [SMALL_STATE(3780)] = 134365, + [SMALL_STATE(3781)] = 134388, + [SMALL_STATE(3782)] = 134411, + [SMALL_STATE(3783)] = 134432, + [SMALL_STATE(3784)] = 134453, + [SMALL_STATE(3785)] = 134476, + [SMALL_STATE(3786)] = 134493, + [SMALL_STATE(3787)] = 134514, + [SMALL_STATE(3788)] = 134535, + [SMALL_STATE(3789)] = 134558, + [SMALL_STATE(3790)] = 134575, + [SMALL_STATE(3791)] = 134598, + [SMALL_STATE(3792)] = 134619, + [SMALL_STATE(3793)] = 134642, + [SMALL_STATE(3794)] = 134663, + [SMALL_STATE(3795)] = 134680, + [SMALL_STATE(3796)] = 134701, + [SMALL_STATE(3797)] = 134722, + [SMALL_STATE(3798)] = 134743, + [SMALL_STATE(3799)] = 134764, + [SMALL_STATE(3800)] = 134787, + [SMALL_STATE(3801)] = 134808, + [SMALL_STATE(3802)] = 134829, + [SMALL_STATE(3803)] = 134850, + [SMALL_STATE(3804)] = 134871, + [SMALL_STATE(3805)] = 134892, + [SMALL_STATE(3806)] = 134913, + [SMALL_STATE(3807)] = 134934, + [SMALL_STATE(3808)] = 134955, + [SMALL_STATE(3809)] = 134978, + [SMALL_STATE(3810)] = 134999, + [SMALL_STATE(3811)] = 135020, + [SMALL_STATE(3812)] = 135041, + [SMALL_STATE(3813)] = 135062, + [SMALL_STATE(3814)] = 135083, + [SMALL_STATE(3815)] = 135102, + [SMALL_STATE(3816)] = 135122, + [SMALL_STATE(3817)] = 135142, + [SMALL_STATE(3818)] = 135162, + [SMALL_STATE(3819)] = 135182, + [SMALL_STATE(3820)] = 135202, + [SMALL_STATE(3821)] = 135222, + [SMALL_STATE(3822)] = 135242, + [SMALL_STATE(3823)] = 135262, + [SMALL_STATE(3824)] = 135282, + [SMALL_STATE(3825)] = 135302, + [SMALL_STATE(3826)] = 135322, + [SMALL_STATE(3827)] = 135342, + [SMALL_STATE(3828)] = 135362, + [SMALL_STATE(3829)] = 135382, + [SMALL_STATE(3830)] = 135402, + [SMALL_STATE(3831)] = 135422, + [SMALL_STATE(3832)] = 135442, + [SMALL_STATE(3833)] = 135462, + [SMALL_STATE(3834)] = 135482, + [SMALL_STATE(3835)] = 135502, + [SMALL_STATE(3836)] = 135520, + [SMALL_STATE(3837)] = 135540, + [SMALL_STATE(3838)] = 135560, + [SMALL_STATE(3839)] = 135580, + [SMALL_STATE(3840)] = 135600, + [SMALL_STATE(3841)] = 135620, + [SMALL_STATE(3842)] = 135636, + [SMALL_STATE(3843)] = 135656, + [SMALL_STATE(3844)] = 135676, + [SMALL_STATE(3845)] = 135696, + [SMALL_STATE(3846)] = 135716, + [SMALL_STATE(3847)] = 135736, + [SMALL_STATE(3848)] = 135756, + [SMALL_STATE(3849)] = 135776, + [SMALL_STATE(3850)] = 135796, + [SMALL_STATE(3851)] = 135816, + [SMALL_STATE(3852)] = 135836, + [SMALL_STATE(3853)] = 135856, + [SMALL_STATE(3854)] = 135874, + [SMALL_STATE(3855)] = 135890, + [SMALL_STATE(3856)] = 135910, + [SMALL_STATE(3857)] = 135926, + [SMALL_STATE(3858)] = 135942, + [SMALL_STATE(3859)] = 135958, + [SMALL_STATE(3860)] = 135974, + [SMALL_STATE(3861)] = 135992, + [SMALL_STATE(3862)] = 136012, + [SMALL_STATE(3863)] = 136032, + [SMALL_STATE(3864)] = 136050, + [SMALL_STATE(3865)] = 136070, + [SMALL_STATE(3866)] = 136090, + [SMALL_STATE(3867)] = 136110, + [SMALL_STATE(3868)] = 136130, + [SMALL_STATE(3869)] = 136150, + [SMALL_STATE(3870)] = 136170, + [SMALL_STATE(3871)] = 136190, + [SMALL_STATE(3872)] = 136210, + [SMALL_STATE(3873)] = 136230, + [SMALL_STATE(3874)] = 136250, + [SMALL_STATE(3875)] = 136268, + [SMALL_STATE(3876)] = 136288, + [SMALL_STATE(3877)] = 136304, + [SMALL_STATE(3878)] = 136320, + [SMALL_STATE(3879)] = 136340, + [SMALL_STATE(3880)] = 136358, + [SMALL_STATE(3881)] = 136378, + [SMALL_STATE(3882)] = 136398, + [SMALL_STATE(3883)] = 136418, + [SMALL_STATE(3884)] = 136438, + [SMALL_STATE(3885)] = 136458, + [SMALL_STATE(3886)] = 136478, + [SMALL_STATE(3887)] = 136496, + [SMALL_STATE(3888)] = 136516, + [SMALL_STATE(3889)] = 136536, + [SMALL_STATE(3890)] = 136556, + [SMALL_STATE(3891)] = 136576, + [SMALL_STATE(3892)] = 136596, + [SMALL_STATE(3893)] = 136616, + [SMALL_STATE(3894)] = 136632, + [SMALL_STATE(3895)] = 136652, + [SMALL_STATE(3896)] = 136672, + [SMALL_STATE(3897)] = 136692, + [SMALL_STATE(3898)] = 136712, + [SMALL_STATE(3899)] = 136732, + [SMALL_STATE(3900)] = 136752, + [SMALL_STATE(3901)] = 136772, + [SMALL_STATE(3902)] = 136792, + [SMALL_STATE(3903)] = 136812, + [SMALL_STATE(3904)] = 136832, + [SMALL_STATE(3905)] = 136852, + [SMALL_STATE(3906)] = 136872, + [SMALL_STATE(3907)] = 136892, + [SMALL_STATE(3908)] = 136908, + [SMALL_STATE(3909)] = 136928, + [SMALL_STATE(3910)] = 136948, + [SMALL_STATE(3911)] = 136968, + [SMALL_STATE(3912)] = 136988, + [SMALL_STATE(3913)] = 137008, + [SMALL_STATE(3914)] = 137028, + [SMALL_STATE(3915)] = 137048, + [SMALL_STATE(3916)] = 137068, + [SMALL_STATE(3917)] = 137088, + [SMALL_STATE(3918)] = 137106, + [SMALL_STATE(3919)] = 137126, + [SMALL_STATE(3920)] = 137142, + [SMALL_STATE(3921)] = 137162, + [SMALL_STATE(3922)] = 137182, + [SMALL_STATE(3923)] = 137202, + [SMALL_STATE(3924)] = 137222, + [SMALL_STATE(3925)] = 137242, + [SMALL_STATE(3926)] = 137262, + [SMALL_STATE(3927)] = 137282, + [SMALL_STATE(3928)] = 137302, + [SMALL_STATE(3929)] = 137322, + [SMALL_STATE(3930)] = 137342, + [SMALL_STATE(3931)] = 137362, + [SMALL_STATE(3932)] = 137382, + [SMALL_STATE(3933)] = 137402, + [SMALL_STATE(3934)] = 137422, + [SMALL_STATE(3935)] = 137442, + [SMALL_STATE(3936)] = 137462, + [SMALL_STATE(3937)] = 137482, + [SMALL_STATE(3938)] = 137502, + [SMALL_STATE(3939)] = 137522, + [SMALL_STATE(3940)] = 137542, + [SMALL_STATE(3941)] = 137562, + [SMALL_STATE(3942)] = 137582, + [SMALL_STATE(3943)] = 137600, + [SMALL_STATE(3944)] = 137620, + [SMALL_STATE(3945)] = 137640, + [SMALL_STATE(3946)] = 137660, + [SMALL_STATE(3947)] = 137680, + [SMALL_STATE(3948)] = 137700, + [SMALL_STATE(3949)] = 137720, + [SMALL_STATE(3950)] = 137740, + [SMALL_STATE(3951)] = 137760, + [SMALL_STATE(3952)] = 137780, + [SMALL_STATE(3953)] = 137798, + [SMALL_STATE(3954)] = 137816, + [SMALL_STATE(3955)] = 137834, + [SMALL_STATE(3956)] = 137854, + [SMALL_STATE(3957)] = 137874, + [SMALL_STATE(3958)] = 137894, + [SMALL_STATE(3959)] = 137912, + [SMALL_STATE(3960)] = 137932, + [SMALL_STATE(3961)] = 137952, + [SMALL_STATE(3962)] = 137972, + [SMALL_STATE(3963)] = 137992, + [SMALL_STATE(3964)] = 138012, + [SMALL_STATE(3965)] = 138032, + [SMALL_STATE(3966)] = 138052, + [SMALL_STATE(3967)] = 138072, + [SMALL_STATE(3968)] = 138092, + [SMALL_STATE(3969)] = 138112, + [SMALL_STATE(3970)] = 138132, + [SMALL_STATE(3971)] = 138152, + [SMALL_STATE(3972)] = 138172, + [SMALL_STATE(3973)] = 138192, + [SMALL_STATE(3974)] = 138212, + [SMALL_STATE(3975)] = 138232, + [SMALL_STATE(3976)] = 138250, + [SMALL_STATE(3977)] = 138270, + [SMALL_STATE(3978)] = 138288, + [SMALL_STATE(3979)] = 138306, + [SMALL_STATE(3980)] = 138326, + [SMALL_STATE(3981)] = 138346, + [SMALL_STATE(3982)] = 138366, + [SMALL_STATE(3983)] = 138384, + [SMALL_STATE(3984)] = 138404, + [SMALL_STATE(3985)] = 138424, + [SMALL_STATE(3986)] = 138444, + [SMALL_STATE(3987)] = 138464, + [SMALL_STATE(3988)] = 138480, + [SMALL_STATE(3989)] = 138500, + [SMALL_STATE(3990)] = 138520, + [SMALL_STATE(3991)] = 138540, + [SMALL_STATE(3992)] = 138560, + [SMALL_STATE(3993)] = 138580, + [SMALL_STATE(3994)] = 138600, + [SMALL_STATE(3995)] = 138620, + [SMALL_STATE(3996)] = 138640, + [SMALL_STATE(3997)] = 138656, + [SMALL_STATE(3998)] = 138676, + [SMALL_STATE(3999)] = 138696, + [SMALL_STATE(4000)] = 138712, + [SMALL_STATE(4001)] = 138732, + [SMALL_STATE(4002)] = 138752, + [SMALL_STATE(4003)] = 138772, + [SMALL_STATE(4004)] = 138792, + [SMALL_STATE(4005)] = 138812, + [SMALL_STATE(4006)] = 138832, + [SMALL_STATE(4007)] = 138852, + [SMALL_STATE(4008)] = 138872, + [SMALL_STATE(4009)] = 138892, + [SMALL_STATE(4010)] = 138912, + [SMALL_STATE(4011)] = 138928, + [SMALL_STATE(4012)] = 138948, + [SMALL_STATE(4013)] = 138968, + [SMALL_STATE(4014)] = 138988, + [SMALL_STATE(4015)] = 139008, + [SMALL_STATE(4016)] = 139028, + [SMALL_STATE(4017)] = 139048, + [SMALL_STATE(4018)] = 139068, + [SMALL_STATE(4019)] = 139088, + [SMALL_STATE(4020)] = 139108, + [SMALL_STATE(4021)] = 139128, + [SMALL_STATE(4022)] = 139148, + [SMALL_STATE(4023)] = 139168, + [SMALL_STATE(4024)] = 139186, + [SMALL_STATE(4025)] = 139206, + [SMALL_STATE(4026)] = 139226, + [SMALL_STATE(4027)] = 139246, + [SMALL_STATE(4028)] = 139266, + [SMALL_STATE(4029)] = 139286, + [SMALL_STATE(4030)] = 139306, + [SMALL_STATE(4031)] = 139326, + [SMALL_STATE(4032)] = 139346, + [SMALL_STATE(4033)] = 139366, + [SMALL_STATE(4034)] = 139386, + [SMALL_STATE(4035)] = 139406, + [SMALL_STATE(4036)] = 139426, + [SMALL_STATE(4037)] = 139446, + [SMALL_STATE(4038)] = 139466, + [SMALL_STATE(4039)] = 139486, + [SMALL_STATE(4040)] = 139506, + [SMALL_STATE(4041)] = 139524, + [SMALL_STATE(4042)] = 139544, + [SMALL_STATE(4043)] = 139564, + [SMALL_STATE(4044)] = 139584, + [SMALL_STATE(4045)] = 139604, + [SMALL_STATE(4046)] = 139622, + [SMALL_STATE(4047)] = 139642, + [SMALL_STATE(4048)] = 139662, + [SMALL_STATE(4049)] = 139682, + [SMALL_STATE(4050)] = 139702, + [SMALL_STATE(4051)] = 139722, + [SMALL_STATE(4052)] = 139742, + [SMALL_STATE(4053)] = 139762, + [SMALL_STATE(4054)] = 139782, + [SMALL_STATE(4055)] = 139802, + [SMALL_STATE(4056)] = 139822, + [SMALL_STATE(4057)] = 139842, + [SMALL_STATE(4058)] = 139862, + [SMALL_STATE(4059)] = 139882, + [SMALL_STATE(4060)] = 139902, + [SMALL_STATE(4061)] = 139922, + [SMALL_STATE(4062)] = 139942, + [SMALL_STATE(4063)] = 139962, + [SMALL_STATE(4064)] = 139982, + [SMALL_STATE(4065)] = 140002, + [SMALL_STATE(4066)] = 140022, + [SMALL_STATE(4067)] = 140039, + [SMALL_STATE(4068)] = 140056, + [SMALL_STATE(4069)] = 140073, + [SMALL_STATE(4070)] = 140090, + [SMALL_STATE(4071)] = 140107, + [SMALL_STATE(4072)] = 140122, + [SMALL_STATE(4073)] = 140139, + [SMALL_STATE(4074)] = 140156, + [SMALL_STATE(4075)] = 140173, + [SMALL_STATE(4076)] = 140190, + [SMALL_STATE(4077)] = 140207, + [SMALL_STATE(4078)] = 140224, + [SMALL_STATE(4079)] = 140241, + [SMALL_STATE(4080)] = 140258, + [SMALL_STATE(4081)] = 140275, + [SMALL_STATE(4082)] = 140292, + [SMALL_STATE(4083)] = 140309, + [SMALL_STATE(4084)] = 140326, + [SMALL_STATE(4085)] = 140343, + [SMALL_STATE(4086)] = 140360, + [SMALL_STATE(4087)] = 140377, + [SMALL_STATE(4088)] = 140394, + [SMALL_STATE(4089)] = 140411, + [SMALL_STATE(4090)] = 140428, + [SMALL_STATE(4091)] = 140445, + [SMALL_STATE(4092)] = 140462, + [SMALL_STATE(4093)] = 140479, + [SMALL_STATE(4094)] = 140496, + [SMALL_STATE(4095)] = 140513, + [SMALL_STATE(4096)] = 140530, + [SMALL_STATE(4097)] = 140547, + [SMALL_STATE(4098)] = 140564, + [SMALL_STATE(4099)] = 140581, + [SMALL_STATE(4100)] = 140596, + [SMALL_STATE(4101)] = 140613, + [SMALL_STATE(4102)] = 140630, + [SMALL_STATE(4103)] = 140647, + [SMALL_STATE(4104)] = 140664, + [SMALL_STATE(4105)] = 140681, + [SMALL_STATE(4106)] = 140698, + [SMALL_STATE(4107)] = 140715, + [SMALL_STATE(4108)] = 140730, + [SMALL_STATE(4109)] = 140747, + [SMALL_STATE(4110)] = 140764, + [SMALL_STATE(4111)] = 140781, + [SMALL_STATE(4112)] = 140798, + [SMALL_STATE(4113)] = 140815, + [SMALL_STATE(4114)] = 140830, + [SMALL_STATE(4115)] = 140847, + [SMALL_STATE(4116)] = 140864, + [SMALL_STATE(4117)] = 140881, + [SMALL_STATE(4118)] = 140898, + [SMALL_STATE(4119)] = 140915, + [SMALL_STATE(4120)] = 140932, + [SMALL_STATE(4121)] = 140949, + [SMALL_STATE(4122)] = 140966, + [SMALL_STATE(4123)] = 140983, + [SMALL_STATE(4124)] = 141000, + [SMALL_STATE(4125)] = 141017, + [SMALL_STATE(4126)] = 141034, + [SMALL_STATE(4127)] = 141051, + [SMALL_STATE(4128)] = 141068, + [SMALL_STATE(4129)] = 141085, + [SMALL_STATE(4130)] = 141102, + [SMALL_STATE(4131)] = 141119, + [SMALL_STATE(4132)] = 141136, + [SMALL_STATE(4133)] = 141153, + [SMALL_STATE(4134)] = 141170, + [SMALL_STATE(4135)] = 141187, + [SMALL_STATE(4136)] = 141204, + [SMALL_STATE(4137)] = 141221, + [SMALL_STATE(4138)] = 141238, + [SMALL_STATE(4139)] = 141255, + [SMALL_STATE(4140)] = 141272, + [SMALL_STATE(4141)] = 141289, + [SMALL_STATE(4142)] = 141306, + [SMALL_STATE(4143)] = 141323, + [SMALL_STATE(4144)] = 141340, + [SMALL_STATE(4145)] = 141357, + [SMALL_STATE(4146)] = 141374, + [SMALL_STATE(4147)] = 141389, + [SMALL_STATE(4148)] = 141406, + [SMALL_STATE(4149)] = 141423, + [SMALL_STATE(4150)] = 141440, + [SMALL_STATE(4151)] = 141457, + [SMALL_STATE(4152)] = 141474, + [SMALL_STATE(4153)] = 141491, + [SMALL_STATE(4154)] = 141506, + [SMALL_STATE(4155)] = 141521, + [SMALL_STATE(4156)] = 141538, + [SMALL_STATE(4157)] = 141555, + [SMALL_STATE(4158)] = 141572, + [SMALL_STATE(4159)] = 141589, + [SMALL_STATE(4160)] = 141606, + [SMALL_STATE(4161)] = 141623, + [SMALL_STATE(4162)] = 141640, + [SMALL_STATE(4163)] = 141657, + [SMALL_STATE(4164)] = 141674, + [SMALL_STATE(4165)] = 141691, + [SMALL_STATE(4166)] = 141706, + [SMALL_STATE(4167)] = 141723, + [SMALL_STATE(4168)] = 141740, + [SMALL_STATE(4169)] = 141757, + [SMALL_STATE(4170)] = 141774, + [SMALL_STATE(4171)] = 141791, + [SMALL_STATE(4172)] = 141808, + [SMALL_STATE(4173)] = 141825, + [SMALL_STATE(4174)] = 141842, + [SMALL_STATE(4175)] = 141859, + [SMALL_STATE(4176)] = 141876, + [SMALL_STATE(4177)] = 141893, + [SMALL_STATE(4178)] = 141910, + [SMALL_STATE(4179)] = 141927, + [SMALL_STATE(4180)] = 141944, + [SMALL_STATE(4181)] = 141961, + [SMALL_STATE(4182)] = 141978, + [SMALL_STATE(4183)] = 141993, + [SMALL_STATE(4184)] = 142010, + [SMALL_STATE(4185)] = 142027, + [SMALL_STATE(4186)] = 142044, + [SMALL_STATE(4187)] = 142059, + [SMALL_STATE(4188)] = 142076, + [SMALL_STATE(4189)] = 142091, + [SMALL_STATE(4190)] = 142106, + [SMALL_STATE(4191)] = 142123, + [SMALL_STATE(4192)] = 142140, + [SMALL_STATE(4193)] = 142157, + [SMALL_STATE(4194)] = 142174, + [SMALL_STATE(4195)] = 142191, + [SMALL_STATE(4196)] = 142208, + [SMALL_STATE(4197)] = 142225, + [SMALL_STATE(4198)] = 142242, + [SMALL_STATE(4199)] = 142259, + [SMALL_STATE(4200)] = 142276, + [SMALL_STATE(4201)] = 142293, + [SMALL_STATE(4202)] = 142310, + [SMALL_STATE(4203)] = 142327, + [SMALL_STATE(4204)] = 142344, + [SMALL_STATE(4205)] = 142361, + [SMALL_STATE(4206)] = 142376, + [SMALL_STATE(4207)] = 142393, + [SMALL_STATE(4208)] = 142410, + [SMALL_STATE(4209)] = 142427, + [SMALL_STATE(4210)] = 142444, + [SMALL_STATE(4211)] = 142461, + [SMALL_STATE(4212)] = 142478, + [SMALL_STATE(4213)] = 142495, + [SMALL_STATE(4214)] = 142512, + [SMALL_STATE(4215)] = 142529, + [SMALL_STATE(4216)] = 142544, + [SMALL_STATE(4217)] = 142561, + [SMALL_STATE(4218)] = 142578, + [SMALL_STATE(4219)] = 142595, + [SMALL_STATE(4220)] = 142612, + [SMALL_STATE(4221)] = 142627, + [SMALL_STATE(4222)] = 142644, + [SMALL_STATE(4223)] = 142659, + [SMALL_STATE(4224)] = 142674, + [SMALL_STATE(4225)] = 142691, + [SMALL_STATE(4226)] = 142708, + [SMALL_STATE(4227)] = 142725, + [SMALL_STATE(4228)] = 142740, + [SMALL_STATE(4229)] = 142757, + [SMALL_STATE(4230)] = 142774, + [SMALL_STATE(4231)] = 142791, + [SMALL_STATE(4232)] = 142808, + [SMALL_STATE(4233)] = 142823, + [SMALL_STATE(4234)] = 142840, + [SMALL_STATE(4235)] = 142857, + [SMALL_STATE(4236)] = 142874, + [SMALL_STATE(4237)] = 142891, + [SMALL_STATE(4238)] = 142908, + [SMALL_STATE(4239)] = 142925, + [SMALL_STATE(4240)] = 142940, + [SMALL_STATE(4241)] = 142957, + [SMALL_STATE(4242)] = 142974, + [SMALL_STATE(4243)] = 142991, + [SMALL_STATE(4244)] = 143008, + [SMALL_STATE(4245)] = 143025, + [SMALL_STATE(4246)] = 143042, + [SMALL_STATE(4247)] = 143059, + [SMALL_STATE(4248)] = 143076, + [SMALL_STATE(4249)] = 143093, + [SMALL_STATE(4250)] = 143110, + [SMALL_STATE(4251)] = 143127, + [SMALL_STATE(4252)] = 143144, + [SMALL_STATE(4253)] = 143161, + [SMALL_STATE(4254)] = 143178, + [SMALL_STATE(4255)] = 143195, + [SMALL_STATE(4256)] = 143212, + [SMALL_STATE(4257)] = 143229, + [SMALL_STATE(4258)] = 143246, + [SMALL_STATE(4259)] = 143263, + [SMALL_STATE(4260)] = 143280, + [SMALL_STATE(4261)] = 143297, + [SMALL_STATE(4262)] = 143314, + [SMALL_STATE(4263)] = 143331, + [SMALL_STATE(4264)] = 143348, + [SMALL_STATE(4265)] = 143363, + [SMALL_STATE(4266)] = 143380, + [SMALL_STATE(4267)] = 143397, + [SMALL_STATE(4268)] = 143414, + [SMALL_STATE(4269)] = 143431, + [SMALL_STATE(4270)] = 143448, + [SMALL_STATE(4271)] = 143465, + [SMALL_STATE(4272)] = 143482, + [SMALL_STATE(4273)] = 143499, + [SMALL_STATE(4274)] = 143516, + [SMALL_STATE(4275)] = 143533, + [SMALL_STATE(4276)] = 143548, + [SMALL_STATE(4277)] = 143565, + [SMALL_STATE(4278)] = 143582, + [SMALL_STATE(4279)] = 143599, + [SMALL_STATE(4280)] = 143616, + [SMALL_STATE(4281)] = 143633, + [SMALL_STATE(4282)] = 143650, + [SMALL_STATE(4283)] = 143667, + [SMALL_STATE(4284)] = 143684, + [SMALL_STATE(4285)] = 143701, + [SMALL_STATE(4286)] = 143718, + [SMALL_STATE(4287)] = 143735, + [SMALL_STATE(4288)] = 143752, + [SMALL_STATE(4289)] = 143769, + [SMALL_STATE(4290)] = 143786, + [SMALL_STATE(4291)] = 143801, + [SMALL_STATE(4292)] = 143818, + [SMALL_STATE(4293)] = 143835, + [SMALL_STATE(4294)] = 143852, + [SMALL_STATE(4295)] = 143869, + [SMALL_STATE(4296)] = 143884, + [SMALL_STATE(4297)] = 143901, + [SMALL_STATE(4298)] = 143918, + [SMALL_STATE(4299)] = 143935, + [SMALL_STATE(4300)] = 143952, + [SMALL_STATE(4301)] = 143969, + [SMALL_STATE(4302)] = 143986, + [SMALL_STATE(4303)] = 144003, + [SMALL_STATE(4304)] = 144020, + [SMALL_STATE(4305)] = 144035, + [SMALL_STATE(4306)] = 144050, + [SMALL_STATE(4307)] = 144067, + [SMALL_STATE(4308)] = 144084, + [SMALL_STATE(4309)] = 144101, + [SMALL_STATE(4310)] = 144118, + [SMALL_STATE(4311)] = 144135, + [SMALL_STATE(4312)] = 144152, + [SMALL_STATE(4313)] = 144169, + [SMALL_STATE(4314)] = 144186, + [SMALL_STATE(4315)] = 144203, + [SMALL_STATE(4316)] = 144220, + [SMALL_STATE(4317)] = 144237, + [SMALL_STATE(4318)] = 144254, + [SMALL_STATE(4319)] = 144271, + [SMALL_STATE(4320)] = 144288, + [SMALL_STATE(4321)] = 144305, + [SMALL_STATE(4322)] = 144322, + [SMALL_STATE(4323)] = 144339, + [SMALL_STATE(4324)] = 144356, + [SMALL_STATE(4325)] = 144373, + [SMALL_STATE(4326)] = 144390, + [SMALL_STATE(4327)] = 144407, + [SMALL_STATE(4328)] = 144424, + [SMALL_STATE(4329)] = 144441, + [SMALL_STATE(4330)] = 144458, + [SMALL_STATE(4331)] = 144475, + [SMALL_STATE(4332)] = 144492, + [SMALL_STATE(4333)] = 144509, + [SMALL_STATE(4334)] = 144526, + [SMALL_STATE(4335)] = 144543, + [SMALL_STATE(4336)] = 144560, + [SMALL_STATE(4337)] = 144577, + [SMALL_STATE(4338)] = 144594, + [SMALL_STATE(4339)] = 144611, + [SMALL_STATE(4340)] = 144628, + [SMALL_STATE(4341)] = 144643, + [SMALL_STATE(4342)] = 144660, + [SMALL_STATE(4343)] = 144677, + [SMALL_STATE(4344)] = 144694, + [SMALL_STATE(4345)] = 144711, + [SMALL_STATE(4346)] = 144726, + [SMALL_STATE(4347)] = 144743, + [SMALL_STATE(4348)] = 144760, + [SMALL_STATE(4349)] = 144777, + [SMALL_STATE(4350)] = 144794, + [SMALL_STATE(4351)] = 144811, + [SMALL_STATE(4352)] = 144828, + [SMALL_STATE(4353)] = 144845, + [SMALL_STATE(4354)] = 144862, + [SMALL_STATE(4355)] = 144879, + [SMALL_STATE(4356)] = 144896, + [SMALL_STATE(4357)] = 144911, + [SMALL_STATE(4358)] = 144928, + [SMALL_STATE(4359)] = 144943, + [SMALL_STATE(4360)] = 144958, + [SMALL_STATE(4361)] = 144975, + [SMALL_STATE(4362)] = 144992, + [SMALL_STATE(4363)] = 145009, + [SMALL_STATE(4364)] = 145026, + [SMALL_STATE(4365)] = 145043, + [SMALL_STATE(4366)] = 145060, + [SMALL_STATE(4367)] = 145077, + [SMALL_STATE(4368)] = 145094, + [SMALL_STATE(4369)] = 145109, + [SMALL_STATE(4370)] = 145126, + [SMALL_STATE(4371)] = 145143, + [SMALL_STATE(4372)] = 145160, + [SMALL_STATE(4373)] = 145177, + [SMALL_STATE(4374)] = 145194, + [SMALL_STATE(4375)] = 145209, + [SMALL_STATE(4376)] = 145226, + [SMALL_STATE(4377)] = 145243, + [SMALL_STATE(4378)] = 145260, + [SMALL_STATE(4379)] = 145277, + [SMALL_STATE(4380)] = 145294, + [SMALL_STATE(4381)] = 145311, + [SMALL_STATE(4382)] = 145328, + [SMALL_STATE(4383)] = 145345, + [SMALL_STATE(4384)] = 145362, + [SMALL_STATE(4385)] = 145379, + [SMALL_STATE(4386)] = 145396, + [SMALL_STATE(4387)] = 145410, + [SMALL_STATE(4388)] = 145424, + [SMALL_STATE(4389)] = 145438, + [SMALL_STATE(4390)] = 145452, + [SMALL_STATE(4391)] = 145466, + [SMALL_STATE(4392)] = 145480, + [SMALL_STATE(4393)] = 145494, + [SMALL_STATE(4394)] = 145508, + [SMALL_STATE(4395)] = 145522, + [SMALL_STATE(4396)] = 145536, + [SMALL_STATE(4397)] = 145550, + [SMALL_STATE(4398)] = 145564, + [SMALL_STATE(4399)] = 145578, + [SMALL_STATE(4400)] = 145592, + [SMALL_STATE(4401)] = 145606, + [SMALL_STATE(4402)] = 145620, + [SMALL_STATE(4403)] = 145634, + [SMALL_STATE(4404)] = 145648, + [SMALL_STATE(4405)] = 145662, + [SMALL_STATE(4406)] = 145676, + [SMALL_STATE(4407)] = 145690, + [SMALL_STATE(4408)] = 145704, + [SMALL_STATE(4409)] = 145718, + [SMALL_STATE(4410)] = 145732, + [SMALL_STATE(4411)] = 145746, + [SMALL_STATE(4412)] = 145760, + [SMALL_STATE(4413)] = 145774, + [SMALL_STATE(4414)] = 145788, + [SMALL_STATE(4415)] = 145802, + [SMALL_STATE(4416)] = 145816, + [SMALL_STATE(4417)] = 145830, + [SMALL_STATE(4418)] = 145844, + [SMALL_STATE(4419)] = 145858, + [SMALL_STATE(4420)] = 145872, + [SMALL_STATE(4421)] = 145886, + [SMALL_STATE(4422)] = 145900, + [SMALL_STATE(4423)] = 145914, + [SMALL_STATE(4424)] = 145928, + [SMALL_STATE(4425)] = 145942, + [SMALL_STATE(4426)] = 145956, + [SMALL_STATE(4427)] = 145970, + [SMALL_STATE(4428)] = 145984, + [SMALL_STATE(4429)] = 145998, + [SMALL_STATE(4430)] = 146012, + [SMALL_STATE(4431)] = 146026, + [SMALL_STATE(4432)] = 146040, + [SMALL_STATE(4433)] = 146054, + [SMALL_STATE(4434)] = 146068, + [SMALL_STATE(4435)] = 146082, + [SMALL_STATE(4436)] = 146096, + [SMALL_STATE(4437)] = 146110, + [SMALL_STATE(4438)] = 146124, + [SMALL_STATE(4439)] = 146138, + [SMALL_STATE(4440)] = 146152, + [SMALL_STATE(4441)] = 146166, + [SMALL_STATE(4442)] = 146180, + [SMALL_STATE(4443)] = 146194, + [SMALL_STATE(4444)] = 146208, + [SMALL_STATE(4445)] = 146222, + [SMALL_STATE(4446)] = 146236, + [SMALL_STATE(4447)] = 146250, + [SMALL_STATE(4448)] = 146264, + [SMALL_STATE(4449)] = 146278, + [SMALL_STATE(4450)] = 146292, + [SMALL_STATE(4451)] = 146306, + [SMALL_STATE(4452)] = 146320, + [SMALL_STATE(4453)] = 146334, + [SMALL_STATE(4454)] = 146348, + [SMALL_STATE(4455)] = 146362, + [SMALL_STATE(4456)] = 146376, + [SMALL_STATE(4457)] = 146390, + [SMALL_STATE(4458)] = 146404, + [SMALL_STATE(4459)] = 146418, + [SMALL_STATE(4460)] = 146432, + [SMALL_STATE(4461)] = 146446, + [SMALL_STATE(4462)] = 146460, + [SMALL_STATE(4463)] = 146474, + [SMALL_STATE(4464)] = 146488, + [SMALL_STATE(4465)] = 146502, + [SMALL_STATE(4466)] = 146516, + [SMALL_STATE(4467)] = 146530, + [SMALL_STATE(4468)] = 146544, + [SMALL_STATE(4469)] = 146558, + [SMALL_STATE(4470)] = 146572, + [SMALL_STATE(4471)] = 146586, + [SMALL_STATE(4472)] = 146600, + [SMALL_STATE(4473)] = 146614, + [SMALL_STATE(4474)] = 146628, + [SMALL_STATE(4475)] = 146642, + [SMALL_STATE(4476)] = 146656, + [SMALL_STATE(4477)] = 146670, + [SMALL_STATE(4478)] = 146684, + [SMALL_STATE(4479)] = 146698, + [SMALL_STATE(4480)] = 146712, + [SMALL_STATE(4481)] = 146726, + [SMALL_STATE(4482)] = 146740, + [SMALL_STATE(4483)] = 146754, + [SMALL_STATE(4484)] = 146768, + [SMALL_STATE(4485)] = 146782, + [SMALL_STATE(4486)] = 146796, + [SMALL_STATE(4487)] = 146810, + [SMALL_STATE(4488)] = 146824, + [SMALL_STATE(4489)] = 146838, + [SMALL_STATE(4490)] = 146852, + [SMALL_STATE(4491)] = 146866, + [SMALL_STATE(4492)] = 146880, + [SMALL_STATE(4493)] = 146894, + [SMALL_STATE(4494)] = 146908, + [SMALL_STATE(4495)] = 146922, + [SMALL_STATE(4496)] = 146936, + [SMALL_STATE(4497)] = 146950, + [SMALL_STATE(4498)] = 146964, + [SMALL_STATE(4499)] = 146978, + [SMALL_STATE(4500)] = 146992, + [SMALL_STATE(4501)] = 147006, + [SMALL_STATE(4502)] = 147020, + [SMALL_STATE(4503)] = 147034, + [SMALL_STATE(4504)] = 147048, + [SMALL_STATE(4505)] = 147062, + [SMALL_STATE(4506)] = 147076, + [SMALL_STATE(4507)] = 147090, + [SMALL_STATE(4508)] = 147104, + [SMALL_STATE(4509)] = 147118, + [SMALL_STATE(4510)] = 147132, + [SMALL_STATE(4511)] = 147146, + [SMALL_STATE(4512)] = 147160, + [SMALL_STATE(4513)] = 147174, + [SMALL_STATE(4514)] = 147188, + [SMALL_STATE(4515)] = 147202, + [SMALL_STATE(4516)] = 147216, + [SMALL_STATE(4517)] = 147230, + [SMALL_STATE(4518)] = 147244, + [SMALL_STATE(4519)] = 147258, + [SMALL_STATE(4520)] = 147272, + [SMALL_STATE(4521)] = 147286, + [SMALL_STATE(4522)] = 147300, + [SMALL_STATE(4523)] = 147314, + [SMALL_STATE(4524)] = 147328, + [SMALL_STATE(4525)] = 147342, + [SMALL_STATE(4526)] = 147356, + [SMALL_STATE(4527)] = 147370, + [SMALL_STATE(4528)] = 147384, + [SMALL_STATE(4529)] = 147398, + [SMALL_STATE(4530)] = 147412, + [SMALL_STATE(4531)] = 147426, + [SMALL_STATE(4532)] = 147440, + [SMALL_STATE(4533)] = 147454, + [SMALL_STATE(4534)] = 147468, + [SMALL_STATE(4535)] = 147482, + [SMALL_STATE(4536)] = 147496, + [SMALL_STATE(4537)] = 147510, + [SMALL_STATE(4538)] = 147524, + [SMALL_STATE(4539)] = 147538, + [SMALL_STATE(4540)] = 147552, + [SMALL_STATE(4541)] = 147566, + [SMALL_STATE(4542)] = 147580, + [SMALL_STATE(4543)] = 147594, + [SMALL_STATE(4544)] = 147608, + [SMALL_STATE(4545)] = 147622, + [SMALL_STATE(4546)] = 147636, + [SMALL_STATE(4547)] = 147650, + [SMALL_STATE(4548)] = 147664, + [SMALL_STATE(4549)] = 147678, + [SMALL_STATE(4550)] = 147692, + [SMALL_STATE(4551)] = 147706, + [SMALL_STATE(4552)] = 147720, + [SMALL_STATE(4553)] = 147734, + [SMALL_STATE(4554)] = 147748, + [SMALL_STATE(4555)] = 147762, + [SMALL_STATE(4556)] = 147776, + [SMALL_STATE(4557)] = 147790, + [SMALL_STATE(4558)] = 147804, + [SMALL_STATE(4559)] = 147818, + [SMALL_STATE(4560)] = 147832, + [SMALL_STATE(4561)] = 147846, + [SMALL_STATE(4562)] = 147860, + [SMALL_STATE(4563)] = 147874, + [SMALL_STATE(4564)] = 147888, + [SMALL_STATE(4565)] = 147902, + [SMALL_STATE(4566)] = 147916, + [SMALL_STATE(4567)] = 147930, + [SMALL_STATE(4568)] = 147944, + [SMALL_STATE(4569)] = 147958, + [SMALL_STATE(4570)] = 147972, + [SMALL_STATE(4571)] = 147986, + [SMALL_STATE(4572)] = 148000, + [SMALL_STATE(4573)] = 148014, + [SMALL_STATE(4574)] = 148028, + [SMALL_STATE(4575)] = 148042, + [SMALL_STATE(4576)] = 148056, + [SMALL_STATE(4577)] = 148070, + [SMALL_STATE(4578)] = 148084, + [SMALL_STATE(4579)] = 148098, + [SMALL_STATE(4580)] = 148112, + [SMALL_STATE(4581)] = 148126, + [SMALL_STATE(4582)] = 148140, + [SMALL_STATE(4583)] = 148154, + [SMALL_STATE(4584)] = 148168, + [SMALL_STATE(4585)] = 148182, + [SMALL_STATE(4586)] = 148196, + [SMALL_STATE(4587)] = 148210, + [SMALL_STATE(4588)] = 148224, + [SMALL_STATE(4589)] = 148238, + [SMALL_STATE(4590)] = 148252, + [SMALL_STATE(4591)] = 148266, + [SMALL_STATE(4592)] = 148280, + [SMALL_STATE(4593)] = 148294, + [SMALL_STATE(4594)] = 148308, + [SMALL_STATE(4595)] = 148322, + [SMALL_STATE(4596)] = 148336, + [SMALL_STATE(4597)] = 148350, + [SMALL_STATE(4598)] = 148364, + [SMALL_STATE(4599)] = 148378, + [SMALL_STATE(4600)] = 148392, + [SMALL_STATE(4601)] = 148406, + [SMALL_STATE(4602)] = 148420, + [SMALL_STATE(4603)] = 148434, + [SMALL_STATE(4604)] = 148448, + [SMALL_STATE(4605)] = 148462, + [SMALL_STATE(4606)] = 148476, + [SMALL_STATE(4607)] = 148490, + [SMALL_STATE(4608)] = 148504, + [SMALL_STATE(4609)] = 148518, + [SMALL_STATE(4610)] = 148532, + [SMALL_STATE(4611)] = 148546, + [SMALL_STATE(4612)] = 148560, + [SMALL_STATE(4613)] = 148574, + [SMALL_STATE(4614)] = 148588, + [SMALL_STATE(4615)] = 148602, + [SMALL_STATE(4616)] = 148616, + [SMALL_STATE(4617)] = 148630, + [SMALL_STATE(4618)] = 148644, + [SMALL_STATE(4619)] = 148658, + [SMALL_STATE(4620)] = 148672, + [SMALL_STATE(4621)] = 148686, + [SMALL_STATE(4622)] = 148700, + [SMALL_STATE(4623)] = 148714, + [SMALL_STATE(4624)] = 148728, + [SMALL_STATE(4625)] = 148742, + [SMALL_STATE(4626)] = 148756, + [SMALL_STATE(4627)] = 148770, + [SMALL_STATE(4628)] = 148784, + [SMALL_STATE(4629)] = 148798, + [SMALL_STATE(4630)] = 148812, + [SMALL_STATE(4631)] = 148826, + [SMALL_STATE(4632)] = 148840, + [SMALL_STATE(4633)] = 148854, + [SMALL_STATE(4634)] = 148868, + [SMALL_STATE(4635)] = 148882, + [SMALL_STATE(4636)] = 148896, + [SMALL_STATE(4637)] = 148910, + [SMALL_STATE(4638)] = 148924, + [SMALL_STATE(4639)] = 148938, + [SMALL_STATE(4640)] = 148952, + [SMALL_STATE(4641)] = 148966, + [SMALL_STATE(4642)] = 148980, + [SMALL_STATE(4643)] = 148994, + [SMALL_STATE(4644)] = 149008, + [SMALL_STATE(4645)] = 149022, + [SMALL_STATE(4646)] = 149036, + [SMALL_STATE(4647)] = 149050, + [SMALL_STATE(4648)] = 149064, + [SMALL_STATE(4649)] = 149078, + [SMALL_STATE(4650)] = 149092, + [SMALL_STATE(4651)] = 149106, + [SMALL_STATE(4652)] = 149120, + [SMALL_STATE(4653)] = 149134, + [SMALL_STATE(4654)] = 149148, + [SMALL_STATE(4655)] = 149162, + [SMALL_STATE(4656)] = 149176, + [SMALL_STATE(4657)] = 149190, + [SMALL_STATE(4658)] = 149204, + [SMALL_STATE(4659)] = 149218, + [SMALL_STATE(4660)] = 149232, + [SMALL_STATE(4661)] = 149246, + [SMALL_STATE(4662)] = 149260, + [SMALL_STATE(4663)] = 149274, + [SMALL_STATE(4664)] = 149288, + [SMALL_STATE(4665)] = 149302, + [SMALL_STATE(4666)] = 149316, + [SMALL_STATE(4667)] = 149330, + [SMALL_STATE(4668)] = 149344, + [SMALL_STATE(4669)] = 149358, + [SMALL_STATE(4670)] = 149372, + [SMALL_STATE(4671)] = 149386, + [SMALL_STATE(4672)] = 149400, + [SMALL_STATE(4673)] = 149414, + [SMALL_STATE(4674)] = 149428, + [SMALL_STATE(4675)] = 149442, + [SMALL_STATE(4676)] = 149456, + [SMALL_STATE(4677)] = 149470, + [SMALL_STATE(4678)] = 149484, + [SMALL_STATE(4679)] = 149498, + [SMALL_STATE(4680)] = 149512, + [SMALL_STATE(4681)] = 149526, + [SMALL_STATE(4682)] = 149540, + [SMALL_STATE(4683)] = 149554, + [SMALL_STATE(4684)] = 149568, + [SMALL_STATE(4685)] = 149582, + [SMALL_STATE(4686)] = 149596, + [SMALL_STATE(4687)] = 149610, + [SMALL_STATE(4688)] = 149624, + [SMALL_STATE(4689)] = 149638, + [SMALL_STATE(4690)] = 149652, + [SMALL_STATE(4691)] = 149666, + [SMALL_STATE(4692)] = 149680, + [SMALL_STATE(4693)] = 149694, + [SMALL_STATE(4694)] = 149708, + [SMALL_STATE(4695)] = 149722, + [SMALL_STATE(4696)] = 149736, + [SMALL_STATE(4697)] = 149750, + [SMALL_STATE(4698)] = 149764, + [SMALL_STATE(4699)] = 149778, + [SMALL_STATE(4700)] = 149792, + [SMALL_STATE(4701)] = 149806, + [SMALL_STATE(4702)] = 149820, + [SMALL_STATE(4703)] = 149834, + [SMALL_STATE(4704)] = 149848, + [SMALL_STATE(4705)] = 149862, + [SMALL_STATE(4706)] = 149866, + [SMALL_STATE(4707)] = 149870, }; 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(4343), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), [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(288), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4191), - [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(31), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3790), - [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(771), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3366), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4385), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3248), - [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(853), - [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(872), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3852), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4336), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3513), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2131), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4357), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4363), - [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2848), - [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(612), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(941), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(700), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4266), - [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(188), - [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(578), - [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(654), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(392), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(251), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(903), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(530), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(398), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(240), - [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4214), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3851), - [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(392), - [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3413), - [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3464), - [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3463), - [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3456), - [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3902), - [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3904), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(462), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1586), - [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3032), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3037), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3039), - [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3043), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(744), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4146), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4144), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1474), - [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1467), - [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(66), - [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3550), - [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(87), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4381), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4517), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3242), + [133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(257), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4075), + [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(36), + [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3817), + [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(779), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3425), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4700), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3306), + [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(799), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(807), + [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3823), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4695), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3517), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2185), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4692), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4690), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2902), + [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(722), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(920), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(552), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4093), + [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(187), + [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(813), + [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(906), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(309), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(304), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(947), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(530), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(328), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(279), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4094), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3826), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(309), + [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3521), + [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3538), + [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3539), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3541), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3830), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3831), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(365), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1622), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3238), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3248), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3244), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3221), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(646), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4116), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4123), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1466), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1472), + [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(66), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3613), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(98), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4664), + [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4662), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3302), + [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3), [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 3), [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 2), [483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_labeled_statement, 1), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 1), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 1), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), - [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 1, .production_id = 2), - [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 1, .production_id = 2), - [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 1), - [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 1), - [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 2), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 2), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 3), - [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 3), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 1), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 1), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 3), + [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 3), + [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 1), + [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 1), + [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 1, .production_id = 2), + [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 1, .production_id = 2), + [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 2), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 2), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1895), - [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4094), - [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(275), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1827), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4308), + [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(254), [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(831), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3367), - [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(617), - [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(586), - [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4032), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2131), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2848), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(587), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(557), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(558), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4098), - [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(471), - [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(601), - [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(560), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2022), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(293), + [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(913), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3427), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(683), + [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(637), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4100), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2185), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2902), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(634), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(680), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(678), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4323), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(463), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(630), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(673), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2027), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(288), [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(815), - [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(542), - [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(482), - [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(272), - [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4100), - [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3925), - [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2022), - [1035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3490), - [1038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3489), - [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3488), - [1044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3487), - [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3921), - [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3920), - [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2023), - [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1586), - [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3032), - [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3037), - [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3039), - [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3043), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arms, 1), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [1377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2784), - [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4164), - [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(278), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), - [1388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(730), - [1391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3376), - [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(687), - [1397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(723), - [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4025), - [1403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2131), - [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2848), - [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(510), - [1412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(693), - [1415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(699), - [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4158), - [1421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(499), - [1424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(731), - [1427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(705), - [1430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2650), - [1433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(304), - [1436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4142), - [1439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(726), - [1442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(546), - [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(502), - [1448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(270), - [1451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4152), - [1454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3909), - [1457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2650), - [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3414), - [1463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3429), - [1466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3482), - [1469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3437), - [1472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3914), - [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3915), - [1478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2771), - [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(1586), - [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3032), - [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3037), - [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3039), - [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3043), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1131), - [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4090), - [1508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(263), - [1511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(873), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3383), - [1519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(875), - [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(685), - [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(898), - [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4035), - [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2131), - [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2848), - [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(684), - [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(867), - [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(864), - [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4087), - [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(390), - [1552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(679), - [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(805), - [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1193), - [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(292), - [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(871), - [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(540), - [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(463), - [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(259), - [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4085), - [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3840), - [1582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1193), - [1585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3515), - [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3516), - [1591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3517), - [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3518), - [1597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3811), - [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3994), - [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1187), - [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1586), - [1609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3032), - [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3037), - [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3039), - [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3043), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 97), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 65), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 58), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_statement, 1), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_statement, 1), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 1), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 3), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 3), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 2), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_go_expression, 2), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_go_expression, 2), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receive_expression, 2, .production_id = 3), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receive_expression, 2, .production_id = 3), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_expression, 2), - [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutable_expression, 2), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(915), + [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(543), + [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(364), + [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(256), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4351), + [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3912), + [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2027), + [1035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3580), + [1038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3578), + [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3576), + [1044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3574), + [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3920), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3921), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2028), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1622), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3238), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3248), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3244), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3221), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2839), + [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4329), + [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(247), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), + [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(939), + [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3435), + [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(596), + [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(564), + [1214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4088), + [1217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2185), + [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2902), + [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(540), + [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(592), + [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(589), + [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4303), + [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(376), + [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(562), + [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(587), + [1244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2669), + [1247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(277), + [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4142), + [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(934), + [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(541), + [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(400), + [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(244), + [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4298), + [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3961), + [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2669), + [1274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3534), + [1277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3550), + [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3482), + [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3525), + [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3966), + [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3967), + [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2731), + [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(1622), + [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3238), + [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3248), + [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3244), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3221), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arms, 1), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1137), + [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4282), + [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(267), + [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(883), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3440), + [1539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(749), + [1542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(719), + [1545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(666), + [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4102), + [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2185), + [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2902), + [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(718), + [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(746), + [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(745), + [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4317), + [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(415), + [1572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(715), + [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(743), + [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1156), + [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(275), + [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(884), + [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(538), + [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(323), + [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(274), + [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4381), + [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3927), + [1602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1156), + [1605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3569), + [1608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3570), + [1611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3571), + [1614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3572), + [1617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3847), + [1620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3924), + [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1155), + [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1622), + [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3238), + [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3248), + [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3244), + [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3221), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 58), + [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 65), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 97), + [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 3), + [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 3), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_statement, 1), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_statement, 1), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 1), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 2), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement, 3, .production_id = 33), + [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement, 3, .production_id = 33), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 30), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 3), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 3), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_go_expression, 2), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_go_expression, 2), [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spawn_expression, 2), [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spawn_expression, 2), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 3), - [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 3), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_expression, 3, .production_id = 33), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_expression, 3, .production_id = 33), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 30), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 30), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement, 3, .production_id = 33), - [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement, 3, .production_id = 33), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 21), - [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 21), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 22), - [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 22), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_expression, 2), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutable_expression, 2), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receive_expression, 2, .production_id = 3), + [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receive_expression, 2, .production_id = 3), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_expression, 3, .production_id = 33), + [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_expression, 3, .production_id = 33), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 30), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 22), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 22), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 21), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 21), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_type_without_special, 1), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plain_type_without_special, 1), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2438), - [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4182), - [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(299), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), - [1918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(715), - [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3368), - [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(905), - [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(908), - [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4161), - [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2131), - [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2848), - [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(897), - [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(622), - [1945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(797), - [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4181), - [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(382), - [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(711), - [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(754), - [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2398), - [1963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(258), - [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(638), - [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(522), - [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(383), - [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(239), - [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4123), - [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3831), - [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2398), - [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3472), - [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3467), - [1993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3466), - [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3465), - [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3884), - [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3888), - [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2397), - [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(1586), - [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3032), - [2014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3037), - [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3039), - [2020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3043), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 2), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 2), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 57), - [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 57), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 1), - [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 1), - [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), - [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 21), - [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 21), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 3), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 3), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 2), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 2), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_propagation_expression, 2), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_propagation_expression, 2), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 4), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 4), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inc_expression, 2), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inc_expression, 2), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 3), - [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 3), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 49), - [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 49), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_propagation_expression, 2), - [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_propagation_expression, 2), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dec_expression, 2), - [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dec_expression, 2), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 72), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 72), - [2139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 33), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 72), - [2142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 33), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 72), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), - [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), - [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), - [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 36), - [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type, 3, .production_id = 36), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_reference_expression, 1), - [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_reference_expression, 1), - [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), - [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4), - [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 4), - [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 5), - [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 5), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 4, .production_id = 62), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_type, 4, .production_id = 62), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_type, 4, .production_id = 55), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_type, 4, .production_id = 55), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 3), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 3), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 3), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 4), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 4), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 20), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 20), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 2), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 2), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wrong_pointer_type, 2), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wrong_pointer_type, 2), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 1), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 1), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 2), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 2), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2, .production_id = 16), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2, .production_id = 16), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 50), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 50), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 51), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 51), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 3), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 3), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 2), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 2), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thread_type, 2), - [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thread_type, 2), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 52), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 52), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_type, 2), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_type, 2), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 3, .production_id = 15), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 3, .production_id = 15), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shared_type, 2), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shared_type, 2), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 2), - [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 2), - [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1131), - [2278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4090), - [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(263), - [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), - [2286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(873), - [2289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3383), - [2292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(875), - [2295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(685), - [2298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4035), - [2301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2131), - [2304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2848), - [2307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(684), - [2310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(867), - [2313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(864), - [2316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4087), - [2319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(390), - [2322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(679), - [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(805), - [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1193), - [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(292), - [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(871), - [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(540), - [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(463), - [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(259), - [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4085), - [2349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3840), - [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1193), - [2355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3515), - [2358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3516), - [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3517), - [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3518), - [2367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3811), - [2370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3994), - [2373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1187), - [2376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1586), - [2379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3032), - [2382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3037), - [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3039), - [2388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3043), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_type, 2), - [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_type, 2), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plain_type, 1), - [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plain_type, 1), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 3, .production_id = 54), - [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 3, .production_id = 54), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_element_list, 1), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 4), - [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 4), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 21), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 21), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 22), - [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 22), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer, 2, .production_id = 10), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer, 2, .production_id = 10), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4, .production_id = 58), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4, .production_id = 58), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block_expression, 2), - [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block_expression, 2), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 3), - [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 3), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [2589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1288), - [2592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4102), - [2595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(237), - [2598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(598), - [2601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3371), - [2604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(681), - [2607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(678), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), - [2612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4048), - [2615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2131), - [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2848), - [2621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(677), - [2624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(676), - [2627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(673), - [2630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4099), - [2633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(451), - [2636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(672), - [2639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(671), - [2642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1290), - [2645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(276), - [2648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(822), - [2651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(525), - [2654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(328), - [2657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(301), - [2660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4202), - [2663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3935), - [2666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1290), - [2669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3419), - [2672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3418), - [2675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3417), - [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3416), - [2681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3937), - [2684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3938), - [2687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1309), - [2690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1586), - [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3032), - [2696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3037), - [2699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3039), - [2702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3043), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4), - [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 3), - [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 3), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 6, .production_id = 60), - [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 6, .production_id = 60), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 119), - [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 119), - [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 5, .production_id = 54), - [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 5, .production_id = 54), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_selector_expression, 3, .production_id = 98), - [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_selector_expression, 3, .production_id = 98), - [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 3, .production_id = 23), - [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 3, .production_id = 23), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5, .production_id = 60), - [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5, .production_id = 60), - [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5), - [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 3), - [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 3), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 2, .production_id = 7), - [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 2, .production_id = 7), - [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_expression, 2), - [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_expression, 2), - [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 3), - [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 3), - [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3), - [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5, .production_id = 58), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5, .production_id = 58), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 2), - [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 2), - [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 92), - [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 92), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 34), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 34), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 91), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 91), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4, .production_id = 60), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4, .production_id = 60), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__content_block, 3), - [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__content_block, 3), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), - [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 29), - [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 29), - [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_type_cast_expression, 3), - [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_type_cast_expression, 3), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 2), - [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 2), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, .production_id = 86), - [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, .production_id = 86), - [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__max_group, 1), - [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__max_group, 1), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 2), - [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 2), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), - [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_with_blocks, 1), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_with_blocks, 1), - [2893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1288), - [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4102), - [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(237), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), - [2904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(598), - [2907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3371), - [2910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(710), - [2913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(712), - [2916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4048), - [2919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2131), - [2922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2848), - [2925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(720), - [2928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(727), - [2931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(732), - [2934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4099), - [2937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(451), - [2940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(737), - [2943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(747), - [2946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1290), - [2949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(276), - [2952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(822), - [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(525), - [2958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(487), - [2961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(236), - [2964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4202), - [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3935), - [2970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1290), - [2973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3419), - [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3418), - [2979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3417), - [2982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3416), - [2985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3937), - [2988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3938), - [2991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1309), - [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1586), - [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3032), - [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3037), - [3003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3039), - [3006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3043), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block, 2, .production_id = 34), - [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block, 2, .production_id = 34), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 33), - [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 33), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 35), - [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 35), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 74), - [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 74), - [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 73), - [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 73), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4313), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 2), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 2), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 21), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 21), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 1), + [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 1), + [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), + [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_type_without_special, 1), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plain_type_without_special, 1), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2471), + [1958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4267), + [1961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(302), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), + [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(766), + [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3443), + [1972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(793), + [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(792), + [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4228), + [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2185), + [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2902), + [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(790), + [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(789), + [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(788), + [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4269), + [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(439), + [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(786), + [2005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(783), + [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2440), + [2011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(234), + [2014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(772), + [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(519), + [2020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(420), + [2023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(250), + [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4270), + [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3888), + [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2440), + [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3587), + [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3591), + [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3590), + [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3589), + [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3889), + [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3891), + [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2354), + [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(1622), + [2059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3238), + [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3248), + [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3244), + [2068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3221), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 57), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 57), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_reference_expression, 1), + [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_reference_expression, 1), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 3), + [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 3), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), + [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), + [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1137), + [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4282), + [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(267), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), + [2204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(883), + [2207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3440), + [2210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(749), + [2213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(719), + [2216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4102), + [2219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2185), + [2222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2902), + [2225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(718), + [2228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(746), + [2231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(745), + [2234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4317), + [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(415), + [2240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(715), + [2243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(743), + [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1156), + [2249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(275), + [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(884), + [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(538), + [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(323), + [2261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(274), + [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4381), + [2267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3927), + [2270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1156), + [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3569), + [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3570), + [2279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3571), + [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3572), + [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3847), + [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3924), + [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1155), + [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1622), + [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3238), + [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3248), + [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3244), + [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3221), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 52), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 52), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer, 2, .production_id = 10), + [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer, 2, .production_id = 10), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 51), + [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 51), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 50), + [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 50), + [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 49), + [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 49), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 6, .production_id = 60), + [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 6, .production_id = 60), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 119), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 119), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 5, .production_id = 54), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 5, .production_id = 54), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 3, .production_id = 15), + [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 3, .production_id = 15), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 5), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 5), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 4, .production_id = 62), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_type, 4, .production_id = 62), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block_expression, 2), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block_expression, 2), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_type, 4, .production_id = 55), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_type, 4, .production_id = 55), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__max_group, 1), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__max_group, 1), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_propagation_expression, 2), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_propagation_expression, 2), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_propagation_expression, 2), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_propagation_expression, 2), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_element_list, 1), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dec_expression, 2), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dec_expression, 2), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inc_expression, 2), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inc_expression, 2), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_selector_expression, 3, .production_id = 98), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_selector_expression, 3, .production_id = 98), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 3, .production_id = 54), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 3, .production_id = 54), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 3), + [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 3), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 4), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 4), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 21), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 21), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5, .production_id = 60), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5, .production_id = 60), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5, .production_id = 58), + [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5, .production_id = 58), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 3), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 3), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [2503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1274), + [2506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4339), + [2509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(265), + [2512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(787), + [2515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3441), + [2518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(626), + [2521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(627), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), + [2526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4118), + [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2185), + [2532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2902), + [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(635), + [2538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(638), + [2541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(648), + [2544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4338), + [2547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(492), + [2550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(651), + [2553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(653), + [2556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1284), + [2559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(263), + [2562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(795), + [2565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(527), + [2568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(395), + [2571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(285), + [2574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4085), + [2577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3930), + [2580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1284), + [2583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3540), + [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3551), + [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3562), + [2592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3568), + [2595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3931), + [2598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3932), + [2601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1307), + [2604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1622), + [2607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3238), + [2610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3248), + [2613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3244), + [2616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3221), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 22), + [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 22), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 72), + [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 72), + [2629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 33), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 72), + [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 33), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 72), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 3), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 3), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 92), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 92), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 34), + [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 34), + [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 91), + [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 91), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 36), + [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type, 3, .production_id = 36), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3), + [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 3), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 3, .production_id = 23), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 3, .production_id = 23), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 4), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 3), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 3), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 3), + [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 3), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, .production_id = 86), + [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, .production_id = 86), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4, .production_id = 58), + [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4, .production_id = 58), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 3), + [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 3), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3), + [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), + [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4), + [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plain_type, 1), + [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plain_type, 1), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_type, 2), + [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_type, 2), + [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4, .production_id = 60), + [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4, .production_id = 60), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__content_block, 3), + [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__content_block, 3), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 4), + [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 4), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 2), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 2), + [2781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1274), + [2784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4339), + [2787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(265), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), + [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(787), + [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3441), + [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(554), + [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(561), + [2804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4118), + [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2185), + [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2902), + [2813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(565), + [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(582), + [2819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(585), + [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4338), + [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(492), + [2828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(597), + [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(600), + [2834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1284), + [2837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(263), + [2840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(795), + [2843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(527), + [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(386), + [2849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(271), + [2852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4085), + [2855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3930), + [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1284), + [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3540), + [2864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3551), + [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3562), + [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3568), + [2873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3931), + [2876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3932), + [2879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1307), + [2882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1622), + [2885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3238), + [2888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3248), + [2891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3244), + [2894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3221), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 2), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 2), + [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 29), + [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 29), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_type_cast_expression, 3), + [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_type_cast_expression, 3), + [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 2), + [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 2), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), + [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), + [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 2), + [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 2), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 2), + [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 2), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shared_type, 2), + [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shared_type, 2), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_type, 2), + [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_type, 2), + [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 4), + [2969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 4), + [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_expression, 2), + [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_expression, 2), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 2, .production_id = 7), + [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 2, .production_id = 7), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thread_type, 2), + [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thread_type, 2), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_with_blocks, 1), + [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_with_blocks, 1), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 2), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 2), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block, 2, .production_id = 34), + [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block, 2, .production_id = 34), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 33), + [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 33), + [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 35), + [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 35), + [3005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4258), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 3), + [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 3), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 74), + [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 74), + [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 73), + [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 73), + [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2, .production_id = 16), + [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2, .production_id = 16), + [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 2), + [3030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 2), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 1), + [3038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 1), + [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wrong_pointer_type, 2), + [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wrong_pointer_type, 2), [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, .production_id = 69), [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, .production_id = 69), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 67), - [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 67), - [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 2), - [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 2), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 68), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), - [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 1, .production_id = 31), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), - [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), - [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 1), - [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), - [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), - [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 2), - [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__global_var_value, 2, .production_id = 41), - [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__global_var_value, 2, .production_id = 41), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_statement, 3, .production_id = 32), - [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_statement, 3, .production_id = 32), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), - [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 4), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_definition, 3, .production_id = 40), - [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_definition, 3, .production_id = 40), - [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), - [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), - [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyed_element, 3, .production_id = 88), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_keyed_element, 3, .production_id = 39), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 1, .production_id = 18), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [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(3886), - [3784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_element_list_repeat1, 1), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [3792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4148), - [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), - [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, .production_id = 25), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, .production_id = 25), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 1), - [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 1), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 6), - [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [3917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_literal, 1), SHIFT(3112), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_attribute, 1), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3112), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 2), - [3983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 2), - [3985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 2), SHIFT(4443), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 2), - [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), - [3994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(4443), - [3997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(3068), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 1), - [4002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 1), - [4004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 1), SHIFT(4443), - [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), - [4009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), - [4011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(514), - [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 4), - [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 4), - [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 109), - [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 109), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 106), - [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 106), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 114), - [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 114), - [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 123), - [4034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 123), - [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 126), - [4038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 126), - [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 127), - [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 127), - [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 130), - [4046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 130), - [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 132), - [4050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 132), - [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 133), - [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 133), - [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 3), - [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 3), - [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 140), - [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 140), - [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 143), - [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 143), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 145), - [4098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 145), - [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 75), - [4102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 75), - [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 148), - [4106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 148), - [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 152), - [4110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 152), - [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 14), - [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 14), - [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 85), - [4118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 85), - [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 47), - [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 47), - [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 107), - [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 107), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 48), - [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 48), - [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 103), - [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 103), - [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), - [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 70), - [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 70), - [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), - [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1), - [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), - [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1), - [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 5, .production_id = 82), - [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 5, .production_id = 82), - [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 19), - [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 19), - [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 139), - [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 139), - [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3), - [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3), - [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 2), - [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 2), - [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_statement, 2), - [4178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_statement, 2), - [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 27), - [4182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 27), - [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3, .production_id = 37), - [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 3, .production_id = 37), - [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 30), - [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 30), - [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 83), - [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 83), - [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 84), - [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 84), - [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2), - [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2), - [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, .production_id = 19), - [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, .production_id = 19), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 53), - [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 53), - [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), - [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), - [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5), - [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 2), - [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 2), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), - [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), - [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 2), - [4236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 2), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), - [4240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), - [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), - [4246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), SHIFT_REPEAT(3691), - [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 3), - [4251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 3), - [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 1), - [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 1), - [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), - [4259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), - [4263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), - [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_statement, 3), - [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_statement, 3), - [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 76), - [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 76), - [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 2), - [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 2), - [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 100), - [4279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 100), - [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 131), - [4283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 131), - [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 2, .production_id = 7), - [4289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 2, .production_id = 7), - [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, .production_id = 27), - [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, .production_id = 27), - [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 101), - [4297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 101), - [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 9, .production_id = 154), - [4301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 9, .production_id = 154), - [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, .production_id = 153), - [4305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, .production_id = 153), - [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, .production_id = 42), - [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, .production_id = 42), - [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 151), - [4313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 151), - [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 150), - [4317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 150), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 149), - [4321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 149), - [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 76), - [4325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 76), - [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 147), - [4329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 147), - [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 146), - [4333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 146), - [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 76), - [4337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 76), - [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 144), - [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 144), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 53), - [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 53), - [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4), - [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4), - [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 142), - [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 142), - [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 141), - [4357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 141), - [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 1), - [4361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 1), - [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 77), - [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 77), - [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), - [4369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), - [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 71), - [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 71), - [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 134), - [4377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 134), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 110), - [4381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 110), - [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, .production_id = 134), - [4385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 6, .production_id = 134), - [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2), - [4389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2), - [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [4393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 71), - [4397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 71), - [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 6, .production_id = 38), - [4401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 6, .production_id = 38), - [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4, .production_id = 38), - [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4, .production_id = 38), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 129), - [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 129), - [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 128), - [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 128), - [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4), - [4417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4), - [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 3), - [4421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 3), - [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 125), - [4425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 125), - [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 124), - [4429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 124), - [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, .production_id = 38), - [4433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, .production_id = 38), - [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 6, .production_id = 122), - [4437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 6, .production_id = 122), - [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 2), - [4441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 2), - [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 115), - [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 115), - [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3), - [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3), - [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 113), - [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 113), - [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [4457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3, .production_id = 38), - [4461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3, .production_id = 38), - [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 104), - [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 104), - [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 110), - [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 110), - [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 110), - [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 110), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 110), - [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 110), - [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 46), - [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 46), - [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 108), - [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 108), - [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 76), - [4489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 76), - [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 108), - [4493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 108), - [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, .production_id = 8), - [4497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, .production_id = 8), - [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 71), - [4501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 71), - [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 105), - [4505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 105), - [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, .production_id = 38), - [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 5, .production_id = 38), - [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, .production_id = 38), - [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, .production_id = 38), - [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), - [4517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 71), - [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 71), - [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, .production_id = 38), - [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, .production_id = 38), - [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2), - [4529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2), - [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 2), - [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 2), - [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 1), - [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 1), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 3), - [4573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 3), - [4575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 1), - [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 1), - [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), - [4581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), - [4583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), - [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [4667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 2), - [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 2), - [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 1), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 1), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [4797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_without_blocks_list, 1), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [4811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 1), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [4815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 1), - [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [4819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4313), - [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 1, .production_id = 6), - [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_clause, 1), - [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [4830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), - [4832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), - [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [4852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [4854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 1), - [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 1), - [4858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_arm, 2), - [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm, 2), - [4862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 4, .production_id = 116), - [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), - [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [4890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 2, .production_id = 93), - [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 2, .production_id = 93), - [4894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 34), - [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 34), - [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [4900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 1), - [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 1), - [4904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), - [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), - [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 2), - [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 2), - [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, .production_id = 18), - [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, .production_id = 18), - [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 3), - [4954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 3), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [4958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 3, .production_id = 40), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), - [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [5182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 33), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [5232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [5236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definite_range, 3, .production_id = 99), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [5252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [5254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [5286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 2), - [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [5366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, .production_id = 99), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [5444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 66), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [5464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_identifier, 2), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), - [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [5512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 2, .production_id = 26), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [5526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 5), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [5538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 4), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [5558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_clause, 2, .production_id = 28), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [5574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 3), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 20), + [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 20), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 67), + [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 67), + [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 2), + [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 2), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 2), + [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 2), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2), + [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 1, .production_id = 31), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 68), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 1), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), + [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 2), + [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), + [3554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 4), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__global_var_value, 2, .production_id = 41), + [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__global_var_value, 2, .production_id = 41), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_statement, 3, .production_id = 32), + [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_statement, 3, .production_id = 32), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_definition, 3, .production_id = 40), + [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_definition, 3, .production_id = 40), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyed_element, 3, .production_id = 88), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 1, .production_id = 18), + [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_keyed_element, 3, .production_id = 39), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [3808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), REDUCE(aux_sym_element_list_repeat1, 1), + [3811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4010), + [3814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4313), + [3817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_element_list_repeat1, 1), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, .production_id = 25), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, .production_id = 25), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [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(2262), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 6), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [3949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_literal, 1), SHIFT(3214), + [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_attribute, 1), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [3956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3214), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, .production_id = 42), + [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, .production_id = 42), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 6, .production_id = 122), + [4023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 6, .production_id = 122), + [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sum_type_repeat1, 2), + [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sum_type_repeat1, 2), + [4029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sum_type_repeat1, 2), SHIFT_REPEAT(4425), + [4032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sum_type_repeat1, 2), SHIFT_REPEAT(3164), + [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 100), + [4037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 100), + [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 77), + [4041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 77), + [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sum_type, 2), + [4045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sum_type, 2), + [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sum_type_repeat1, 3), + [4049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sum_type_repeat1, 3), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), + [4055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), + [4057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(506), + [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 4), + [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 4), + [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 14), + [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 14), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 102), + [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 102), + [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 70), + [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 70), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 75), + [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 75), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1), + [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 130), + [4118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 130), + [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 152), + [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 152), + [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 148), + [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 148), + [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 145), + [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 145), + [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 5, .production_id = 82), + [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 5, .production_id = 82), + [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), + [4138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 143), + [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 143), + [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 140), + [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 140), + [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 48), + [4152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 48), + [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 85), + [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 85), + [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 133), + [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 133), + [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 132), + [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 132), + [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 127), + [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 127), + [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 126), + [4172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 126), + [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 123), + [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 123), + [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 114), + [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 114), + [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 47), + [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 47), + [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 109), + [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 109), + [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 107), + [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 107), + [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 106), + [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 106), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 103), + [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 103), + [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 27), + [4204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 27), + [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 76), + [4208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 76), + [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 83), + [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 83), + [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_statement, 3), + [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_statement, 3), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 84), + [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 84), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 30), + [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 30), + [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3, .production_id = 37), + [4228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 3, .production_id = 37), + [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 101), + [4232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 101), + [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, .production_id = 38), + [4236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, .production_id = 38), + [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3, .production_id = 38), + [4240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3, .production_id = 38), + [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3), + [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4), + [4250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4), + [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 104), + [4254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 104), + [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4), + [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4), + [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 71), + [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 71), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 46), + [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 46), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 3), + [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 3), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 53), + [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 53), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 2), + [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 2), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, .production_id = 8), + [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, .production_id = 8), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3), + [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 19), + [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 19), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 2), + [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 2), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 2), + [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 2), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 53), + [4302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 53), + [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), + [4306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), + [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, .production_id = 38), + [4310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, .production_id = 38), + [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5), + [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5), + [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 2), + [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 2), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, .production_id = 38), + [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 5, .production_id = 38), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 105), + [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 105), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 1), + [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 1), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 2), + [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 2), + [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), + [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), + [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 71), + [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 71), + [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 71), + [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 71), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 71), + [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 71), + [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, .production_id = 38), + [4354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, .production_id = 38), + [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4, .production_id = 38), + [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4, .production_id = 38), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), + [4362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 76), + [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 76), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), + [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, .production_id = 27), + [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, .production_id = 27), + [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 76), + [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 76), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2), + [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 1), + [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 1), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 9, .production_id = 154), + [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 9, .production_id = 154), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, .production_id = 19), + [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, .production_id = 19), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, .production_id = 153), + [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, .production_id = 153), + [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2), + [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2), + [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 151), + [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 151), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 150), + [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 150), + [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 149), + [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 149), + [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 147), + [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 147), + [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 146), + [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 146), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 144), + [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 144), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 142), + [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 142), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 141), + [4446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 141), + [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 139), + [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 139), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), + [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), + [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 2, .production_id = 7), + [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 2, .production_id = 7), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 134), + [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 134), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 110), + [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 110), + [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, .production_id = 134), + [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 6, .production_id = 134), + [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 108), + [4474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 108), + [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 76), + [4478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 76), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 131), + [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 131), + [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), + [4486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 6, .production_id = 38), + [4492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 6, .production_id = 38), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 3), + [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 3), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_statement, 2), + [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_statement, 2), + [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 129), + [4504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 129), + [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 128), + [4508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 128), + [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 108), + [4512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 108), + [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 125), + [4516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 125), + [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 124), + [4520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 124), + [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), + [4524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), + [4526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), SHIFT_REPEAT(3808), + [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 115), + [4531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 115), + [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), + [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), + [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 113), + [4539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 113), + [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 110), + [4543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 110), + [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 110), + [4547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 110), + [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 110), + [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 110), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2), + [4583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), + [4589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), + [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 1), + [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 1), + [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 2), + [4597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 2), + [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 1), + [4601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 1), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [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}}, REDUCE(aux_sym_source_file_repeat1, 2), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [4691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 2), + [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 2), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 1), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [4819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 1), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [4823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 1), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [4827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_without_blocks_list, 1), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [4841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 1), + [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [4845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4258), + [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 1, .production_id = 6), + [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_clause, 1), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [4868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), + [4870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), + [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [4880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_arm, 2), + [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm, 2), + [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 1), + [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 1), + [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 1), + [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 1), + [4892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 34), + [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 34), + [4896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 2, .production_id = 93), + [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 2, .production_id = 93), + [4900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 4, .production_id = 116), + [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [4928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [4930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 2), + [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 2), + [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [4936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, .production_id = 18), + [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, .production_id = 18), + [4940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), + [4942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), + [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 3), + [4980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 3), + [4982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 3, .production_id = 40), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 33), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [5222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 2), + [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [5276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [5308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definite_range, 3, .production_id = 99), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), + [5352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, .production_id = 99), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 66), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_identifier, 2), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 2, .production_id = 26), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [5546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_clause, 2, .production_id = 28), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 5), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 4), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 3), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), - [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), - [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), - [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [5848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3), - [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [5854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 4), - [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), - [5858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(544), - [5861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 2), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [5869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(633), - [5872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 1), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [5882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(2257), - [5885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_body_repeat1, 2), - [5887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4610), - [5890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4034), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [5905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [5923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(2420), - [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__struct_body_repeat1, 2), - [5928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4610), - [5931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4034), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [5984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1), - [5986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), - [5988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(3242), - [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 5, .production_id = 112), - [5993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 5, .production_id = 112), - [5995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 2, .production_id = 44), - [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [5999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 4, .production_id = 79), - [6001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 4, .production_id = 79), - [6003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_embedded_definition, 1), - [6005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 2, .production_id = 90), - [6007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 118), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [6027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifiers, 1), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), - [6035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 1, .production_id = 6), - [6037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [6041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 4, .production_id = 138), - [6043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1), - [6045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 2), - [6047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 1), - [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [6051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1, .production_id = 17), - [6053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 1), - [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), - [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), - [6059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 3, .production_id = 87), - [6061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 117), - [6063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 1), - [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [6067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 5, .production_id = 136), - [6069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 2), - [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), - [6073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 1), - [6075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), - [6077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), SHIFT_REPEAT(4049), - [6080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 3), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [6102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(3377), - [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), - [6107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(552), - [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [6150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 1), - [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [6160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_list, 1), - [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [6178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_name, 1), - [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), - [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), - [6196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 2), SHIFT_REPEAT(3558), - [6199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 2), - [6201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 2), SHIFT_REPEAT(3558), - [6204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 2), SHIFT_REPEAT(488), - [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [6215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 2), SHIFT_REPEAT(3551), - [6218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 2), - [6220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 2), SHIFT_REPEAT(3551), - [6223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 2), SHIFT_REPEAT(391), - [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifiers, 1), - [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [6270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), SHIFT_REPEAT(3436), - [6273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), - [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [6279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(511), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [6284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 1), - [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [6294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 2), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), - [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), - [6308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 1), - [6310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 1), - [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [6314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 1), - [6316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 1), - [6318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 1), - [6320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 5), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [6326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 4, .production_id = 94), - [6328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 4, .production_id = 94), - [6330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 3, .production_id = 61), - [6332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 3, .production_id = 61), - [6334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 2, .production_id = 24), - [6336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 2, .production_id = 24), - [6338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 4, .production_id = 137), - [6340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), - [6342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 2, .production_id = 89), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), + [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), + [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), + [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [5900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 4), + [5902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3), + [5904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(633), + [5907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [5909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(510), + [5912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 2), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 1), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [5930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(2293), + [5933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_body_repeat1, 2), + [5935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4420), + [5938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4352), + [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(2490), + [5986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__struct_body_repeat1, 2), + [5988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4420), + [5991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4352), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [6030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [6036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), + [6038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(3302), + [6041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1), + [6043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 4, .production_id = 79), + [6045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 4, .production_id = 79), + [6047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 5, .production_id = 112), + [6049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 5, .production_id = 112), + [6051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 2, .production_id = 44), + [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [6055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_embedded_definition, 1), + [6057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 118), + [6059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 2, .production_id = 90), + [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [6063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifiers, 1), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [6089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 1, .production_id = 6), + [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [6093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 1), + [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [6097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), + [6099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), SHIFT_REPEAT(4311), + [6102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1), + [6104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 117), + [6106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 2), + [6108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 1), + [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [6112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 1), + [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), + [6118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 1), + [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), + [6122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 2), + [6124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 3, .production_id = 87), + [6126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 3), + [6128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1, .production_id = 17), + [6130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 4, .production_id = 138), + [6132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 5, .production_id = 136), + [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [6154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 1), + [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), + [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [6216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifiers, 1), + [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [6242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 2), SHIFT_REPEAT(3632), + [6245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 2), + [6247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 2), SHIFT_REPEAT(3632), + [6250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 2), SHIFT_REPEAT(464), + [6253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 2), SHIFT_REPEAT(3633), + [6256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 2), + [6258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 2), SHIFT_REPEAT(3633), + [6261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 2), SHIFT_REPEAT(418), + [6264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_name, 1), + [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [6276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(3428), + [6279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), + [6281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(858), + [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [6294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_list, 1), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [6308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), SHIFT_REPEAT(3466), + [6311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), + [6313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [6327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 2), + [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 1), + [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [6343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(542), + [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), [6348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), - [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), - [6352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), SHIFT_REPEAT(64), - [6355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), - [6357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 2), - [6359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__enum_body_repeat1, 1), - [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), - [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [6365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 2), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [6373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 2), SHIFT_REPEAT(3987), - [6376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 2), - [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), - [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [6450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 3), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [6454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), SHIFT_REPEAT(4480), - [6457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [6461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3104), - [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [6468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), SHIFT_REPEAT(2960), - [6471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [6539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 3), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [6561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), SHIFT_REPEAT(4285), - [6564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [6570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), SHIFT_REPEAT(3378), - [6573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [6579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [6595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 4), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [6601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_name, 1), - [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 5), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [6609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), SHIFT_REPEAT(441), - [6612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, .production_id = 13), - [6614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 5), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [6652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overridable_operator, 1), - [6654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(3549), - [6657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), - [6659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2, .production_id = 59), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [6669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [6683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), SHIFT_REPEAT(3535), - [6686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [6704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 4), - [6706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), SHIFT_REPEAT(2878), - [6709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), - [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [6713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(3578), - [6716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [6722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), SHIFT_REPEAT(3247), - [6725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [6767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_attribute, 1), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [6773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [6793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), SHIFT_REPEAT(3985), - [6796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), - [6798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [6824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameter, 1), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [6848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(528), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [6861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1, .production_id = 59), - [6863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(523), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [6868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [6872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(855), - [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm_type, 1), - [6877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_lambda_repeat1, 2), SHIFT_REPEAT(4254), - [6880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_lambda_repeat1, 2), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [6904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [6912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 3), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [6952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 1), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [6972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(518), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [6991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [7081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 2), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [7085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 1), - [7087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), - [7089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), SHIFT_REPEAT(4027), - [7092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [7098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), - [7100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), SHIFT_REPEAT(4076), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [7127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 1), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [7133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 1), - [7135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 1), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [7181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 1), - [7183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 1), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [7207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 43), - [7209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 44), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [7221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 45), - [7223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_expression, 1), - [7225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 2), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [7235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 3), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [7257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_attribute, 3, .production_id = 56), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [7261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 78), - [7263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 3, .production_id = 80), - [7265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 81), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [7317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, .production_id = 111), - [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [7327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2, .production_id = 120), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [7341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [7345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 5), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [7365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 6), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [7399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 121), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [7449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 96), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [7455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 95), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [7471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_arm_assignment_statement, 2), - [7473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_var_declaration, 3, .production_id = 37), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [7523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 1), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [7547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 4), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [7575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [7579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_receiver, 1), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [7613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 64), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [7619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 63), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [7629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 2), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [7635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_else_arn_clause, 2), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [7665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_backed_type, 2), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [7675] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [7855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2), - [7857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3), - [7859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [6352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 2, .production_id = 89), + [6354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 4, .production_id = 137), + [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), + [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [6362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 5), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [6366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), + [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [6370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 1), + [6372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 3, .production_id = 61), + [6374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 3, .production_id = 61), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [6382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__enum_body_repeat1, 1), + [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), + [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [6388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 4, .production_id = 94), + [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 4, .production_id = 94), + [6392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), SHIFT_REPEAT(65), + [6395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), + [6397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 1), + [6399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 1), + [6401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 1), + [6403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 1), + [6405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 2), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [6411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 2, .production_id = 24), + [6413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 2, .production_id = 24), + [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [6417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 2), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [6429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 2), SHIFT_REPEAT(3841), + [6432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 2), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [6514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 3), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [6522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 4), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [6526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [6532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), SHIFT_REPEAT(4556), + [6535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), + [6537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3216), + [6540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [6542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), SHIFT_REPEAT(3005), + [6545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [6557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_name, 1), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [6621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), SHIFT_REPEAT(3442), + [6624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), + [6626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 3), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [6652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), SHIFT_REPEAT(4248), + [6655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [6707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), SHIFT_REPEAT(3592), + [6710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [6722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [6728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 1), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [6748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(523), + [6751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overridable_operator, 1), + [6753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4), + [6755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 4), + [6757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(529), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [6766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_attribute, 1), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [6786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 1), + [6788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), SHIFT_REPEAT(2891), + [6791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [6795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(730), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [6812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(3623), + [6815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [6829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 5), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [6857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 5), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [6879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, .production_id = 13), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [6883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameter, 1), + [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [6929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), SHIFT_REPEAT(3955), + [6932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [6950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), SHIFT_REPEAT(407), + [6953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), + [6955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), SHIFT_REPEAT(4213), + [6958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), + [6960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), SHIFT_REPEAT(4216), + [6963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 2), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [7007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_lambda_repeat1, 2), SHIFT_REPEAT(4315), + [7010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_lambda_repeat1, 2), + [7012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(525), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [7033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 3), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [7039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [7087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), SHIFT_REPEAT(3296), + [7090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), + [7092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [7122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm_type, 1), + [7124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1, .production_id = 59), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [7130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), + [7132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(3621), + [7135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [7139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2, .production_id = 59), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [7145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [7223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 2), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [7245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_attribute, 3, .production_id = 56), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [7251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 3), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [7279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 81), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [7285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, .production_id = 111), + [7287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_expression, 1), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [7297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 45), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [7307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 1), + [7309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 1), + [7311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 3, .production_id = 80), + [7313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 1), + [7315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 1), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [7323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 44), + [7325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 43), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [7357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [7409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2, .production_id = 120), + [7411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 1), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [7415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 78), + [7417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 5), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [7501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 6), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [7623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 96), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [7635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 95), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [7689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 121), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [7771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_receiver, 1), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [7783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [7787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_backed_type, 2), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [7815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 1), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [7833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [7855] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [7865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_arm_assignment_statement, 2), + [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [7873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_var_declaration, 3, .production_id = 37), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_else_arn_clause, 2), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [7885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), + [7887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 2), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [7893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 4), + [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [7931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 64), + [7933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 63), + [7935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2), + [7937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2), + [7939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3), }; #ifdef __cplusplus diff --git a/tree_sitter_v/test/corpus/type_declaration.txt b/tree_sitter_v/test/corpus/type_declaration.txt index 164b0bef..beb7b88f 100644 --- a/tree_sitter_v/test/corpus/type_declaration.txt +++ b/tree_sitter_v/test/corpus/type_declaration.txt @@ -75,12 +75,13 @@ type Height = string | int (source_file (type_declaration (identifier) - (plain_type - (type_reference_expression - (identifier))) - (plain_type - (type_reference_expression - (identifier))))) + (sum_type + (plain_type + (type_reference_expression + (identifier))) + (plain_type + (type_reference_expression + (identifier)))))) ================================================================================ Sum type declaration with several types @@ -91,15 +92,16 @@ type Height = string | int | float (source_file (type_declaration (identifier) - (plain_type - (type_reference_expression - (identifier))) - (plain_type - (type_reference_expression - (identifier))) - (plain_type - (type_reference_expression - (identifier))))) + (sum_type + (plain_type + (type_reference_expression + (identifier))) + (plain_type + (type_reference_expression + (identifier))) + (plain_type + (type_reference_expression + (identifier)))))) ================================================================================ Sum type declaration with same type @@ -110,17 +112,18 @@ type Height = string | int | []Height (source_file (type_declaration (identifier) - (plain_type - (type_reference_expression - (identifier))) - (plain_type - (type_reference_expression - (identifier))) - (plain_type - (array_type - (plain_type - (type_reference_expression - (identifier))))))) + (sum_type + (plain_type + (type_reference_expression + (identifier))) + (plain_type + (type_reference_expression + (identifier))) + (plain_type + (array_type + (plain_type + (type_reference_expression + (identifier)))))))) ================================================================================ Sum type declaration with several types on each line @@ -133,15 +136,16 @@ type Height = string | (source_file (type_declaration (identifier) - (plain_type - (type_reference_expression - (identifier))) - (plain_type - (type_reference_expression - (identifier))) - (plain_type - (type_reference_expression - (identifier))))) + (sum_type + (plain_type + (type_reference_expression + (identifier))) + (plain_type + (type_reference_expression + (identifier))) + (plain_type + (type_reference_expression + (identifier)))))) ================================================================================ Sum type declaration with several types on each line, first line is empty @@ -155,15 +159,16 @@ type Height = (source_file (type_declaration (identifier) - (plain_type - (type_reference_expression - (identifier))) - (plain_type - (type_reference_expression - (identifier))) - (plain_type - (type_reference_expression - (identifier))))) + (sum_type + (plain_type + (type_reference_expression + (identifier))) + (plain_type + (type_reference_expression + (identifier))) + (plain_type + (type_reference_expression + (identifier)))))) ================================================================================ Sum type declaration with several types on each line and trailing pipe @@ -171,22 +176,19 @@ Sum type declaration with several types on each line and trailing pipe type Height = string | int | - float | + float -------------------------------------------------------------------------------- (source_file (type_declaration (identifier) - (plain_type - (type_reference_expression - (identifier))) - (plain_type - (type_reference_expression - (identifier))) - (plain_type - (type_reference_expression - (identifier)))) - (ERROR - (plain_type - (type_reference_expression - (MISSING identifier))))) + (sum_type + (plain_type + (type_reference_expression + (identifier))) + (plain_type + (type_reference_expression + (identifier))) + (plain_type + (type_reference_expression + (identifier)))))) diff --git a/tree_sitter_v/test/corpus/types.txt b/tree_sitter_v/test/corpus/types.txt index 429cfd9f..ebb67efe 100644 --- a/tree_sitter_v/test/corpus/types.txt +++ b/tree_sitter_v/test/corpus/types.txt @@ -742,20 +742,21 @@ pub type Any = Null (type_declaration (visibility_modifiers) (identifier) - (plain_type - (type_reference_expression - (identifier))) - (plain_type - (array_type - (plain_type - (type_reference_expression - (identifier))))) - (plain_type - (type_reference_expression - (identifier))) - (plain_type - (type_reference_expression - (identifier))) - (plain_type - (type_reference_expression - (identifier))))) + (sum_type + (plain_type + (type_reference_expression + (identifier))) + (plain_type + (array_type + (plain_type + (type_reference_expression + (identifier))))) + (plain_type + (type_reference_expression + (identifier))) + (plain_type + (type_reference_expression + (identifier))) + (plain_type + (type_reference_expression + (identifier))))))